diff --git a/Content.Client/PDA/PdaMenu.xaml b/Content.Client/PDA/PdaMenu.xaml
index 8b26860332d..675d02c72f6 100644
--- a/Content.Client/PDA/PdaMenu.xaml
+++ b/Content.Client/PDA/PdaMenu.xaml
@@ -22,6 +22,7 @@
+
+
+
+
diff --git a/Content.Client/PDA/PdaMenu.xaml.cs b/Content.Client/PDA/PdaMenu.xaml.cs
index 630861d0840..3b25256c1d1 100644
--- a/Content.Client/PDA/PdaMenu.xaml.cs
+++ b/Content.Client/PDA/PdaMenu.xaml.cs
@@ -32,7 +32,12 @@ public sealed partial class PdaMenu : PdaWindow
private string _stationName = Loc.GetString("comp-pda-ui-unknown");
private string _alertLevel = Loc.GetString("comp-pda-ui-unknown");
private string _instructions = Loc.GetString("comp-pda-ui-unknown");
-
+
+ // A-13 PDA shift time start
+ private TimeSpan? _evacShuttleTime;
+ private EvacShuttleStatus _evacShuttleStatus;
+ // A-13 PDA shift time end
+
private int _currentView;
@@ -125,7 +130,7 @@ public PdaMenu()
_clipboard.SetText(_instructions);
};
-
+
HideAllViews();
@@ -136,6 +141,11 @@ public void UpdateState(PdaUpdateState state)
{
FlashLightToggleButton.IsActive = state.FlashlightEnabled;
+ // A-13 PDA shift time start
+ _evacShuttleTime = state.PdaOwnerInfo.EvacShuttleTime;
+ _evacShuttleStatus = state.PdaOwnerInfo.EvacShuttleStatus;
+ // A-13 PDA shift time end
+
if (state.PdaOwnerInfo.ActualOwnerName != null)
{
_pdaOwner = state.PdaOwnerInfo.ActualOwnerName;
@@ -160,13 +170,25 @@ public void UpdateState(PdaUpdateState state)
_stationName = state.StationName ?? Loc.GetString("comp-pda-ui-unknown");
StationNameLabel.SetMarkup(Loc.GetString("comp-pda-ui-station",
("station", _stationName)));
-
+
var stationTime = _gameTiming.CurTime.Subtract(_gameTicker.RoundStartTimeSpan);
StationTimeLabel.SetMarkup(Loc.GetString("comp-pda-ui-station-time",
("time", stationTime.ToString("hh\\:mm\\:ss"))));
+ // A-13 PDA shift time start
+ var remaining = TimeSpan.Zero;
+
+ if (state.PdaOwnerInfo.EvacShuttleTime != null)
+ remaining = TimeSpan.FromSeconds(Math.Max((state.PdaOwnerInfo.EvacShuttleTime.Value - _gameTiming.CurTime).TotalSeconds, 0));
+
+ var statusText = EvacShuttleTitle(_evacShuttleStatus);
+
+ ShuttleTimeLabel.SetMarkup(Loc.GetString(statusText,
+ ("time", remaining.ToString("hh\\:mm\\:ss"))));
+ // A-13 PDA shift time start
+
var alertLevel = state.PdaOwnerInfo.StationAlertLevel;
var alertColor = state.PdaOwnerInfo.StationAlertColor;
var alertLevelKey = alertLevel != null ? $"alert-level-{alertLevel}" : "alert-level-unknown";
@@ -332,6 +354,23 @@ private void HideAllViews()
}
}
+ // A-13 PDA shift time start
+ private string EvacShuttleTitle(EvacShuttleStatus status)
+ {
+ switch (status)
+ {
+ case EvacShuttleStatus.WaitingToLaunch:
+ return "comp-pda-ui-shuttle-launch-time";
+ case EvacShuttleStatus.WaitingToArrival:
+ return "comp-pda-ui-shuttle-arrival-time";
+ case EvacShuttleStatus.WaitingToCall:
+ return "comp-pda-ui-shuttle-call-time";
+ default:
+ return "comp-pda-ui-shuttle-call-time";
+ }
+ }
+ // A-13 PDA shift time end
+
protected override void Draw(DrawingHandleScreen handle)
{
base.Draw(handle);
@@ -340,6 +379,18 @@ protected override void Draw(DrawingHandleScreen handle)
StationTimeLabel.SetMarkup(Loc.GetString("comp-pda-ui-station-time",
("time", stationTime.ToString("hh\\:mm\\:ss"))));
+
+ // A-13 PDA shift time start
+ var remaining = TimeSpan.Zero;
+
+ if (_evacShuttleTime != null)
+ remaining = TimeSpan.FromSeconds(Math.Max((_evacShuttleTime.Value - _gameTiming.CurTime).TotalSeconds, 0));
+
+ var statusText = EvacShuttleTitle(_evacShuttleStatus);
+
+ ShuttleTimeLabel.SetMarkup(Loc.GetString(statusText,
+ ("time", remaining.ToString("hh\\:mm\\:ss"))));
+ // A-13 PDA shift time start
}
}
}
diff --git a/Content.Server/PDA/PdaSystem.cs b/Content.Server/PDA/PdaSystem.cs
index 43bf571eb45..407613c90a6 100644
--- a/Content.Server/PDA/PdaSystem.cs
+++ b/Content.Server/PDA/PdaSystem.cs
@@ -22,6 +22,12 @@
using Robust.Shared.Containers;
using Robust.Shared.Player;
using Robust.Shared.Utility;
+using Content.Server.RoundEnd; // A-13 PDA shift time
+using Content.Server.Shuttles.Components; // A-13 PDA shift time
+using Content.Server.Shuttles.Systems; // A-13 PDA shift time
+using Robust.Shared.Configuration; // A-13 PDA shift time
+using Content.Shared.CCVar; // A-13 PDA shift time
+using Robust.Shared.Timing; // A-13 PDA shift time
namespace Content.Server.PDA
{
@@ -36,6 +42,9 @@ public sealed class PdaSystem : SharedPdaSystem
[Dependency] private readonly UserInterfaceSystem _ui = default!;
[Dependency] private readonly UnpoweredFlashlightSystem _unpoweredFlashlight = default!;
[Dependency] private readonly ContainerSystem _containerSystem = default!;
+ [Dependency] private readonly RoundEndSystem _roundEndSystem = default!; // A-13 PDA shift time
+ [Dependency] private readonly EmergencyShuttleSystem _emergencyShuttleSystem = default!; // A-13 PDA shift time
+ [Dependency] private readonly IGameTiming _gameTiming = default!; // A-13 PDA shift time
public override void Initialize()
{
@@ -67,6 +76,7 @@ protected override void OnComponentInit(EntityUid uid, PdaComponent pda, Compone
UpdateAlertLevel(uid, pda);
UpdateStationName(uid, pda);
+ UpdateEvacShuttle(uid, pda); // A-13 PDA shift time
}
protected override void OnItemInserted(EntityUid uid, PdaComponent pda, EntInsertedIntoContainerMessage args)
@@ -158,6 +168,7 @@ public void UpdatePdaUi(EntityUid uid, PdaComponent? pda = null)
UpdateStationName(uid, pda);
UpdateAlertLevel(uid, pda);
+ UpdateEvacShuttle(uid, pda); // A-13 PDA shift time
// TODO: Update the level and name of the station with each call to UpdatePdaUi is only needed for latejoin players.
// TODO: If someone can implement changing the level and name of the station when changing the PDA grid, this can be removed.
@@ -179,7 +190,9 @@ public void UpdatePdaUi(EntityUid uid, PdaComponent? pda = null)
IdOwner = id?.FullName,
JobTitle = id?.JobTitle,
StationAlertLevel = pda.StationAlertLevel,
- StationAlertColor = pda.StationAlertColor
+ StationAlertColor = pda.StationAlertColor,
+ EvacShuttleStatus = pda.ShuttleStatus, // A-13 PDA shift time
+ EvacShuttleTime = pda.ShuttleTime // A-13 PDA shift time
},
pda.StationName,
showUplink,
@@ -266,6 +279,38 @@ private void UpdateStationName(EntityUid uid, PdaComponent pda)
pda.StationName = station is null ? null : Name(station.Value);
}
+ // A-13 PDA shift time start
+ private void UpdateEvacShuttle(EntityUid uid, PdaComponent pda)
+ {
+ TimeSpan? shuttleTime;
+ EvacShuttleStatus shuttleStatus;
+ if (_emergencyShuttleSystem.EmergencyShuttleArrived)
+ {
+ shuttleTime = _gameTiming.CurTime + TimeSpan.FromSeconds(_emergencyShuttleSystem.СonsoleAccumulator);
+ shuttleStatus = EvacShuttleStatus.WaitingToLaunch;
+ }
+ else
+ {
+ if (_roundEndSystem.ExpectedCountdownEnd != null)
+ {
+ shuttleTime = _roundEndSystem.ExpectedCountdownEnd;
+ shuttleStatus = EvacShuttleStatus.WaitingToArrival;
+ }
+ else
+ {
+ shuttleTime = _roundEndSystem.TimeToCallShuttle();
+ shuttleStatus = EvacShuttleStatus.WaitingToCall;
+ }
+ }
+ var station = _station.GetOwningStation(uid);
+ if (!TryComp(station, out var stationEmergencyShuttleComponent))
+ return;
+
+ pda.ShuttleStatus = shuttleStatus;
+ pda.ShuttleTime = shuttleTime;
+ }
+ // A-13 PDA shift time end
+
private void UpdateAlertLevel(EntityUid uid, PdaComponent pda)
{
var station = _station.GetOwningStation(uid);
diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs
index 3a7fd9baa2a..df6299fc9fe 100644
--- a/Content.Server/RoundEnd/RoundEndSystem.cs
+++ b/Content.Server/RoundEnd/RoundEndSystem.cs
@@ -368,6 +368,16 @@ public override void Update(float frameTime)
SetAutoCallTime();
}
}
+
+ // A-13 PDA shift time start
+ public TimeSpan TimeToCallShuttle()
+ {
+ var autoCalledBefore = _autoCalledBefore
+ ? _cfg.GetCVar(CCVars.EmergencyShuttleAutoCallExtensionTime)
+ : _cfg.GetCVar(CCVars.EmergencyShuttleAutoCallTime);
+ return AutoCallStartTime + TimeSpan.FromMinutes(autoCalledBefore);
+ }
+ // A-13 PDA shift time end
}
public sealed class RoundEndSystemChangedEvent : EntityEventArgs
diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs
index f8d76f4a8d2..797f31fcc37 100644
--- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs
+++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs
@@ -39,6 +39,10 @@ public sealed partial class EmergencyShuttleSystem
///
private float _consoleAccumulator = float.MinValue;
+ // A-13 PDA shift time start
+ public float СonsoleAccumulator => _consoleAccumulator;
+ // A-13 PDA shift time end
+
///
/// How long after the transit is over to end the round.
///
diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs
index 45397ede088..dffbba14a39 100644
--- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs
+++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs
@@ -37,6 +37,7 @@
using Robust.Shared.Random;
using Robust.Shared.Timing;
using Robust.Shared.Utility;
+using Content.Server.GameTicking; // A-13 PDA shift time
namespace Content.Server.Shuttles.Systems;
@@ -71,6 +72,8 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem
private const float ShuttleSpawnBuffer = 1f;
+ public TimeSpan? DockTime; // A-13 PDA shift time
+
private bool _emergencyShuttleEnabled;
[ValidatePrototypeId]
@@ -91,9 +94,17 @@ public override void Initialize()
SubscribeLocalEvent(OnEmergencyFTL);
SubscribeLocalEvent(OnEmergencyFTLComplete);
SubscribeNetworkEvent(OnShuttleRequestPosition);
+ SubscribeLocalEvent(OnRoundEnded); // A-13 PDA shift time
InitializeEmergencyConsole();
}
+ // SA-13 PDA shift time start
+ private void OnRoundEnded(RoundEndTextAppendEvent ev)
+ {
+ DockTime = null;
+ }
+ // A-13 PDA shift time end
+
private void OnRoundStart(RoundStartingEvent ev)
{
CleanupEmergencyConsole();
@@ -271,6 +282,8 @@ public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleCo
var targetGrid = _station.GetLargestGrid(Comp(stationUid));
+ DockTime = _timing.CurTime; // A-13 PDA shift time
+
// UHH GOOD LUCK
if (targetGrid == null)
{
diff --git a/Content.Shared/Inventory/SlotFlags.cs b/Content.Shared/Inventory/SlotFlags.cs
index b1f3871a309..fd6b4b3f970 100644
--- a/Content.Shared/Inventory/SlotFlags.cs
+++ b/Content.Shared/Inventory/SlotFlags.cs
@@ -26,9 +26,9 @@ public enum SlotFlags
LEGS = 1 << 13,
FEET = 1 << 14,
SUITSTORAGE = 1 << 15,
- UNDERWEART = 1 << 10, // Andromeda-Underwear
- UNDERWEARB = 1 << 10, // Andromeda-Underwear
- SOCKS = 1 << 10, // Andromeda-Underwear
+ UNDERWEART = 1 << 16, // Andromeda-Underwear
+ UNDERWEARB = 1 << 17, // Andromeda-Underwear
+ SOCKS = 1 << 18, // Andromeda-Underwear
All = ~NONE,
WITHOUT_POCKET = All & ~POCKET
diff --git a/Content.Shared/Nutrition/Components/HungerComponent.cs b/Content.Shared/Nutrition/Components/HungerComponent.cs
index 79d895ddae6..501f22f812e 100644
--- a/Content.Shared/Nutrition/Components/HungerComponent.cs
+++ b/Content.Shared/Nutrition/Components/HungerComponent.cs
@@ -24,7 +24,7 @@ public sealed partial class HungerComponent : Component
/// The base amount at which decays.
///
[DataField("baseDecayRate"), ViewVariables(VVAccess.ReadWrite)]
- public float BaseDecayRate = 0.01666666666f;
+ public float BaseDecayRate = 0.05f; // A-13 changed from 0.01666666666f
///
/// The actual amount at which decays.
diff --git a/Content.Shared/PDA/PdaComponent.cs b/Content.Shared/PDA/PdaComponent.cs
index d4cfc4fc0d8..1b856060a72 100644
--- a/Content.Shared/PDA/PdaComponent.cs
+++ b/Content.Shared/PDA/PdaComponent.cs
@@ -40,5 +40,7 @@ public sealed partial class PdaComponent : Component
[ViewVariables] public string? StationName;
[ViewVariables] public string? StationAlertLevel;
[ViewVariables] public Color StationAlertColor = Color.White;
+ [ViewVariables] public TimeSpan? ShuttleTime; // A-13 PDA shift time
+ [ViewVariables] public EvacShuttleStatus ShuttleStatus; // A-13 PDA shift time
}
}
diff --git a/Content.Shared/PDA/PdaUpdateState.cs b/Content.Shared/PDA/PdaUpdateState.cs
index cf217ed9b25..1d273f7b294 100644
--- a/Content.Shared/PDA/PdaUpdateState.cs
+++ b/Content.Shared/PDA/PdaUpdateState.cs
@@ -49,5 +49,16 @@ public struct PdaIdInfoText
public string? JobTitle;
public string? StationAlertLevel;
public Color StationAlertColor;
+ public TimeSpan? EvacShuttleTime; // A-13 PDA shift time
+ public EvacShuttleStatus EvacShuttleStatus; // A-13 PDA shift time
}
+
+ // A-13 PDA shift time start
+ public enum EvacShuttleStatus
+ {
+ WaitingToCall,
+ WaitingToArrival,
+ WaitingToLaunch
+ }
+ // A-13 PDA shift time end
}
diff --git a/Resources/Audio/Andromeda/Misc/ducky.ogg b/Resources/Audio/Andromeda/Misc/ducky.ogg
new file mode 100644
index 00000000000..a1dfcac8616
Binary files /dev/null and b/Resources/Audio/Andromeda/Misc/ducky.ogg differ
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/borgs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/borgs.ftl
deleted file mode 100644
index 8e102f58df5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/borgs.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionViewLaws = View Laws
- .desc = View the laws that you must follow.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/crit.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/crit.ftl
deleted file mode 100644
index bfdbbcd2a16..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/crit.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ActionCritSuccumb = Succumb
- .desc = Accept your fate.
-ent-ActionCritFakeDeath = Fake Death
- .desc = Pretend to take your final breath while staying alive.
-ent-ActionCritLastWords = Say Last Words
- .desc = Whisper your last words to anyone nearby, and then succumb to your fate. You only have 30 characters to work with.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/diona.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/diona.ftl
deleted file mode 100644
index 58dcfb8c8c2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/diona.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-DionaGibAction = Gib Yourself!
- .desc = Split apart into 3 nymphs.
-ent-DionaReformAction = Reform
- .desc = Reform back into a whole Diona.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/internals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/internals.ftl
deleted file mode 100644
index 3e141f718aa..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/internals.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionToggleInternals = Toggle Internals
- .desc = Breathe from the equipped gas tank. Also requires equipped breath mask.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/item_actions.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/item_actions.ftl
deleted file mode 100644
index 0215e8fb905..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/item_actions.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ItemActionExample = item action example
- .desc = for testing item actions
- .suffix = DEBUG
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/mech.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/mech.ftl
deleted file mode 100644
index 13245dd5186..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/mech.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ActionMechCycleEquipment = Cycle
- .desc = Cycles currently selected equipment
-ent-ActionMechOpenUI = Control Panel
- .desc = Opens the control panel for the mech
-ent-ActionMechEject = Eject
- .desc = Ejects the pilot from the mech
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/ninja.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/ninja.ftl
deleted file mode 100644
index 23565b0aff2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/ninja.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-ActionToggleNinjaGloves = Toggle ninja gloves
- .desc = Toggles all glove actions on left click. Includes your doorjack, draining power, stunning enemies, downloading research and calling in a threat.
-ent-ActionCreateThrowingStar = Create throwing star
- .desc = Channels suit power into creating a throwing star that deals extra stamina damage.
-ent-ActionRecallKatana = Recall katana
- .desc = Teleports the Energy Katana linked to this suit to its wearer, cost based on distance.
-ent-ActionNinjaEmp = EM Burst
- .desc = Disable any nearby technology with an electro-magnetic pulse.
-ent-ActionTogglePhaseCloak = Phase cloak
- .desc = Toggles your suit's phase cloak. Beware that if you are hit, all abilities are disabled for 5 seconds, including your cloak!
-ent-ActionEnergyKatanaDash = Katana dash
- .desc = Teleport to anywhere you can see, if your Energy Katana is in your hand.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/polymorph.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/polymorph.ftl
deleted file mode 100644
index 3f2931f4a31..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/polymorph.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-ActionRevertPolymorph = Revert
- .desc = Revert back into your original form.
-ent-ActionPolymorph = { "" }
- .desc = { "" }
-ent-ActionPolymorphWizardSpider = Spider Polymorph
- .desc = Polymorphs you into a Spider.
-ent-ActionPolymorphWizardRod = Rod Form
- .desc = CLANG!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/revenant.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/revenant.ftl
deleted file mode 100644
index 6526def39e7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/revenant.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-ActionRevenantShop = Shop
- .desc = Opens the ability shop.
-ent-ActionRevenantDefile = Defile
- .desc = Costs 30 Essence.
-ent-ActionRevenantOverloadLights = Overload Lights
- .desc = Costs 40 Essence.
-ent-ActionRevenantMalfunction = Malfunction
- .desc = Costs 60 Essence.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/speech.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/speech.ftl
deleted file mode 100644
index 261816c5bed..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/speech.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionConfigureMeleeSpeech = Set Battlecry
- .desc = Set a custom battlecry for when you attack!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/spider.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/spider.ftl
deleted file mode 100644
index f21ff4401a8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/spider.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ActionSpiderWeb = Spider Web
- .desc = Spawns a web that slows your prey down.
-ent-ActionSericulture = Weave silk
- .desc = Weave a bit of silk for use in arts and crafts.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl
deleted file mode 100644
index fafd87f7e85..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl
+++ /dev/null
@@ -1,56 +0,0 @@
-ent-BaseSuicideAction = { "" }
- .desc = { "" }
-ent-ActionScream = Scream
- .desc = AAAAAAAAAAAAAAAAAAAAAAAAA
-ent-ActionTurnUndead = Turn Undead
- .desc = Succumb to your infection and become a zombie.
-ent-ActionToggleLight = Toggle Light
- .desc = Turn the light on and off.
-ent-ActionOpenStorageImplant = Open Storage Implant
- .desc = Opens the storage implant embedded under your skin
-ent-ActionActivateMicroBomb = Activate Microbomb
- .desc = Activates your internal microbomb, completely destroying you and your equipment
-ent-ActionActivateDeathAcidifier = Activate Death-Acidifier
- .desc = Activates your death-acidifier, completely melting you and your equipment
-ent-ActionActivateFreedomImplant = Break Free
- .desc = Activating your freedom implant will free you from any hand restraints
-ent-ActionOpenUplinkImplant = Open Uplink
- .desc = Opens the syndicate uplink embedded under your skin
-ent-ActionActivateEmpImplant = Activate EMP
- .desc = Triggers a small EMP pulse around you
-ent-ActionActivateScramImplant = SCRAM!
- .desc = Randomly teleports you within a large distance.
-ent-ActionActivateDnaScramblerImplant = Scramble DNA
- .desc = Randomly changes your name and appearance.
-ent-ActionMorphGeras = Morph into Geras
- .desc = Morphs you into a Geras - a miniature version of you which allows you to move fast, at the cost of your inventory.
-ent-ActionToggleSuitPiece = Toggle Suit Piece
- .desc = Remember to equip the important pieces of your suit before going into action.
-ent-ActionCombatModeToggle = [color=red]Combat Mode[/color]
- .desc = Enter combat mode
-ent-ActionCombatModeToggleOff = [color=red]Combat Mode[/color]
- .desc = Enter combat mode
-ent-ActionChangeVoiceMask = Set name
- .desc = Change the name others hear to something else.
-ent-ActionVendingThrow = Dispense Item
- .desc = Randomly dispense an item from your stock.
-ent-ActionArtifactActivate = Activate Artifact
- .desc = Immediately activates your current artifact node.
-ent-ActionToggleBlock = Block
- .desc = Raise or lower your shield.
-ent-ActionClearNetworkLinkOverlays = Clear network link overlays
- .desc = Clear network link overlays.
-ent-ActionAnimalLayEgg = Lay egg
- .desc = Uses hunger to lay an egg.
-ent-ActionSleep = Sleep
- .desc = Go to sleep.
-ent-ActionWake = Wake up
- .desc = Stop sleeping.
-ent-ActionActivateHonkImplant = Honk
- .desc = Activates your honking implant, which will produce the signature sound of the clown.
-ent-ActionFireStarter = Ignite
- .desc = Ignites enemies in a radius around you.
-ent-ActionToggleEyes = Open/Close eyes
- .desc = Close your eyes to protect your peepers, or open your eyes to enjoy the pretty lights.
-ent-ActionToggleWagging = action-name-toggle-wagging
- .desc = action-description-toggle-wagging
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/alerts/alerts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/alerts/alerts.ftl
deleted file mode 100644
index 8ef83838d76..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/alerts/alerts.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-AlertSpriteView = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/alerts/revenant.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/alerts/revenant.ftl
deleted file mode 100644
index f510cdc0397..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/alerts/revenant.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-AlertEssenceSpriteView = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/human.ftl
deleted file mode 100644
index daafef35e27..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/human.ftl
+++ /dev/null
@@ -1,33 +0,0 @@
-ent-BaseHumanOrgan = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
- .suffix = { "" }
-ent-OrganHumanBrain = brain
- .desc = The source of incredible, unending intelligence. Honk.
- .suffix = { "" }
-ent-OrganHumanEyes = eyes
- .desc = I see you!
- .suffix = { "" }
-ent-OrganHumanTongue = tongue
- .desc = A fleshy muscle mostly used for lying.
- .suffix = { "" }
-ent-OrganHumanAppendix = appendix
- .desc = { ent-BaseHumanOrgan.desc }
- .suffix = { "" }
-ent-OrganHumanEars = ears
- .desc = There are three parts to the ear. Inner, middle and outer. Only one of these parts should normally be visible.
- .suffix = { "" }
-ent-OrganHumanLungs = lungs
- .desc = Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier.
- .suffix = { "" }
-ent-OrganHumanHeart = heart
- .desc = I feel bad for the heartless bastard who lost this.
- .suffix = { "" }
-ent-OrganHumanStomach = stomach
- .desc = Gross. This is hard to stomach.
- .suffix = { "" }
-ent-OrganHumanLiver = liver
- .desc = Pairing suggestion: chianti and fava beans.
- .suffix = { "" }
-ent-OrganHumanKidneys = kidneys
- .desc = Filters toxins from the bloodstream.
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/rat.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/rat.ftl
deleted file mode 100644
index ddf35dfc7bc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/rat.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-OrganRatLungs = { ent-OrganHumanLungs }
- .suffix = rat
- .desc = { ent-OrganHumanLungs.desc }
-ent-OrganRatStomach = { ent-OrganAnimalStomach }
- .suffix = rat
- .desc = { ent-OrganAnimalStomach.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/reptilian.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/reptilian.ftl
deleted file mode 100644
index 93e3ce09707..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/reptilian.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-OrganReptilianStomach = { ent-OrganAnimalStomach }
- .desc = { ent-OrganAnimalStomach.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/slime.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/slime.ftl
deleted file mode 100644
index f0060b6d3b7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/slime.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-SentientSlimeCore = sentient slime core
- .desc = The source of incredible, unending gooeyness.
- .suffix = { "" }
-ent-OrganSlimeLungs = slime gas sacs
- .desc = Collects nitrogen, which slime cells use for maintenance.
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/tests.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/tests.ftl
deleted file mode 100644
index d64efcaa7ae..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/tests.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-MechanismEMPStriker = EMP striker
- .desc = When activated, this arm implant will apply a small EMP on the target of a physical strike for 10 watts per use.
- .suffix = { "" }
-ent-MechanismHonkModule = HONK module 3000
- .desc = Mandatory implant for all clowns after the Genevo Convention of 2459.
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/vox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/vox.ftl
deleted file mode 100644
index e6bbd055ec9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/mechanisms/vox.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-OrganVoxLungs = { ent-OrganHumanLungs }
- .suffix = vox
- .desc = { ent-OrganHumanLungs.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal.ftl
deleted file mode 100644
index 8cd7df4a95f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseAnimalOrgan = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-OrganAnimalLungs = lungs
- .desc = { ent-BaseAnimalOrgan.desc }
-ent-OrganAnimalStomach = stomach
- .desc = { ent-BaseAnimalOrgan.desc }
-ent-OrganAnimalLiver = liver
- .desc = { ent-BaseAnimalOrgan.desc }
-ent-OrganAnimalHeart = heart
- .desc = { ent-BaseAnimalOrgan.desc }
-ent-OrganAnimalKidneys = kidneys
- .desc = { ent-BaseAnimalOrgan.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/animal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/animal.ftl
deleted file mode 100644
index 59a05cca9c1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/animal.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-BaseAnimalOrganUnGibbable = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-BaseAnimalOrgan = { ent-BaseAnimalOrganUnGibbable }
- .desc = { ent-BaseAnimalOrganUnGibbable.desc }
-ent-OrganAnimalLungs = lungs
- .desc = { ent-BaseAnimalOrgan.desc }
-ent-OrganAnimalStomach = stomach
- .desc = { ent-BaseAnimalOrgan.desc }
-ent-OrganMouseStomach = stomach
- .desc = { ent-OrganAnimalStomach.desc }
-ent-OrganAnimalLiver = liver
- .desc = { ent-BaseAnimalOrgan.desc }
-ent-OrganAnimalHeart = heart
- .desc = { ent-BaseAnimalOrgan.desc }
-ent-OrganAnimalKidneys = kidneys
- .desc = { ent-BaseAnimalOrgan.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/bloodsucker.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/bloodsucker.ftl
deleted file mode 100644
index ebade1790c3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/bloodsucker.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-OrganBloodsuckerStomach = stomach
- .desc = { ent-OrganAnimalStomach.desc }
-ent-OrganBloodsuckerLiver = liver
- .desc = { ent-OrganAnimalLiver.desc }
-ent-OrganBloodsuckerHeart = heart
- .desc = { ent-OrganAnimalHeart.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/ruminant.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/ruminant.ftl
deleted file mode 100644
index 6daae380152..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/ruminant.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-OrganAnimalRuminantStomach = ruminant stomach
- .desc = { ent-OrganAnimalStomach.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/slimes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/slimes.ftl
deleted file mode 100644
index 16a91bd0a47..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/animal/slimes.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-SentientSlimesCore = sentient slimes core
- .desc = The source of incredible, unending gooeyness.
-ent-OrganSlimesLungs = slimes gas sacs
- .desc = Collects nitrogen, which slime cells use for maintenance.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/arachnid.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/arachnid.ftl
deleted file mode 100644
index 4c63dd7fe19..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/arachnid.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-BaseArachnidOrgan = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-OrganArachnidStomach = stomach
- .desc = Gross. This is hard to stomach.
-ent-OrganArachnidLungs = lungs
- .desc = Filters oxygen from an atmosphere... just more greedily.
-ent-OrganArachnidHeart = heart
- .desc = A disgustingly persistent little biological pump made for spiders.
-ent-OrganArachnidLiver = liver
- .desc = Pairing suggestion: chianti and fava beans.
-ent-OrganArachnidKidneys = kidneys
- .desc = Filters toxins from the bloodstream.
-ent-OrganArachnidEyes = eyes
- .desc = Two was already too many.
-ent-OrganArachnidTongue = tongue
- .desc = A fleshy muscle mostly used for lying.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/diona.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/diona.ftl
deleted file mode 100644
index 3067adaf929..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/diona.ftl
+++ /dev/null
@@ -1,25 +0,0 @@
-ent-BaseDionaOrgan = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-OrganDionaBrain = brain
- .desc = The source of incredible, unending intelligence. Honk.
-ent-OrganDionaEyes = eyes
- .desc = I see you!
-ent-OrganDionaStomach = stomach
- .desc = Gross. This is hard to stomach.
-ent-OrganDionaLungs = lungs
- .desc = Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier.
-ent-OrganDionaBrainNymph = brain
- .desc = The source of incredible, unending intelligence. Honk.
-ent-OrganDionaStomachNymph = stomach
- .desc = Gross. This is hard to stomach.
-ent-OrganDionaLungsNymph = lungs
- .desc = Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier.
-ent-OrganDionaNymphBrain = diona nymph
- .desc = Contains the brain of a formerly fully-formed Diona. Killing this would kill the Diona forever. You monster.
- .suffix = Brain
-ent-OrganDionaNymphStomach = diona nymph
- .desc = Contains the stomach of a formerly fully-formed Diona. It doesn't taste any better for it.
- .suffix = Stomach
-ent-OrganDionaNymphLungs = diona nymph
- .desc = Contains the lungs of a formerly fully-formed Diona. Breathtaking.
- .suffix = Lungs
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/dwarf.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/dwarf.ftl
deleted file mode 100644
index 84962bacc31..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/dwarf.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-OrganDwarfHeart = dwarf heart
- .desc = { ent-OrganHumanHeart.desc }
-ent-OrganDwarfLiver = dwarf liver
- .desc = { ent-OrganHumanLiver.desc }
-ent-OrganDwarfStomach = dwarf stomach
- .desc = { ent-OrganHumanStomach.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/human.ftl
deleted file mode 100644
index 3fd9e92d250..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/human.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-BaseHumanOrganUnGibbable = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-BaseHumanOrgan = { ent-BaseHumanOrganUnGibbable }
- .desc = { ent-BaseHumanOrganUnGibbable.desc }
-ent-OrganHumanBrain = brain
- .desc = The source of incredible, unending intelligence. Honk.
-ent-OrganHumanEyes = eyes
- .desc = I see you!
-ent-OrganHumanTongue = tongue
- .desc = A fleshy muscle mostly used for lying.
-ent-OrganHumanAppendix = appendix
- .desc = { ent-BaseHumanOrgan.desc }
-ent-OrganHumanEars = ears
- .desc = There are three parts to the ear. Inner, middle and outer. Only one of these parts should normally be visible.
-ent-OrganHumanLungs = lungs
- .desc = Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier.
-ent-OrganHumanHeart = heart
- .desc = I feel bad for the heartless bastard who lost this.
-ent-OrganHumanStomach = stomach
- .desc = Gross. This is hard to stomach.
-ent-OrganHumanLiver = liver
- .desc = Pairing suggestion: chianti and fava beans.
-ent-OrganHumanKidneys = kidneys
- .desc = Filters toxins from the bloodstream.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/moth.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/moth.ftl
deleted file mode 100644
index 2c32e382d62..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/moth.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-OrganMothStomach = { ent-OrganAnimalStomach }
- .desc = { ent-OrganAnimalStomach.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/rat.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/rat.ftl
deleted file mode 100644
index ddf35dfc7bc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/rat.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-OrganRatLungs = { ent-OrganHumanLungs }
- .suffix = rat
- .desc = { ent-OrganHumanLungs.desc }
-ent-OrganRatStomach = { ent-OrganAnimalStomach }
- .suffix = rat
- .desc = { ent-OrganAnimalStomach.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/reptilian.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/reptilian.ftl
deleted file mode 100644
index c37375698d6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/reptilian.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-OrganReptilianStomach = { ent-OrganAnimalStomach }
- .desc = { ent-OrganAnimalStomach.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/slime.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/slime.ftl
deleted file mode 100644
index 38f7d18dda2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/slime.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-SentientSlimeCore = sentient slime core
- .desc = The source of incredible, unending gooeyness.
-ent-OrganSlimeLungs = slime gas sacs
- .desc = Collects nitrogen, which slime cells use for maintenance.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/vox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/vox.ftl
deleted file mode 100644
index e6bbd055ec9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/organs/vox.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-OrganVoxLungs = { ent-OrganHumanLungs }
- .suffix = vox
- .desc = { ent-OrganHumanLungs.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/animal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/animal.ftl
deleted file mode 100644
index d3bfa49cf04..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/animal.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-PartAnimal = animal body part
- .desc = { ent-BaseItem.desc }
-ent-HandsAnimal = animal hands
- .desc = { ent-PartAnimal.desc }
-ent-LegsAnimal = animal legs
- .desc = { ent-PartAnimal.desc }
-ent-FeetAnimal = animal feet
- .desc = { ent-PartAnimal.desc }
-ent-TorsoAnimal = animal torso
- .desc = { ent-PartAnimal.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/arachnid.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/arachnid.ftl
deleted file mode 100644
index 23928dc4dca..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/arachnid.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-PartArachnid = arachnid body part
- .desc = { ent-BasePart.desc }
-ent-TorsoArachnid = arachnid torso
- .desc = { ent-PartArachnid.desc }
-ent-HeadArachnid = arachnid head
- .desc = { ent-PartArachnid.desc }
-ent-LeftArmArachnid = left arachnid arm
- .desc = { ent-PartArachnid.desc }
-ent-RightArmArachnid = right arachnid arm
- .desc = { ent-PartArachnid.desc }
-ent-LeftHandArachnid = left arachnid hand
- .desc = { ent-PartArachnid.desc }
-ent-RightHandArachnid = right arachnid hand
- .desc = { ent-PartArachnid.desc }
-ent-LeftLegArachnid = left arachnid leg
- .desc = { ent-PartArachnid.desc }
-ent-RightLegArachnid = right arachnid leg
- .desc = { ent-PartArachnid.desc }
-ent-LeftFootArachnid = left arachnid foot
- .desc = { ent-PartArachnid.desc }
-ent-RightFootArachnid = right arachnid foot
- .desc = { ent-PartArachnid.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/base.ftl
deleted file mode 100644
index 59dbc3ee095..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/base.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-BasePart = body part
- .desc = { ent-BaseItem.desc }
-ent-BaseTorso = torso
- .desc = { ent-BasePart.desc }
-ent-BaseHead = head
- .desc = { ent-BasePart.desc }
-ent-BaseLeftArm = left arm
- .desc = { ent-BasePart.desc }
-ent-BaseRightArm = right arm
- .desc = { ent-BasePart.desc }
-ent-BaseLeftHand = left hand
- .desc = { ent-BasePart.desc }
-ent-BaseRightHand = right hand
- .desc = { ent-BasePart.desc }
-ent-BaseLeftLeg = left leg
- .desc = { ent-BasePart.desc }
-ent-BaseRightLeg = right leg
- .desc = { ent-BasePart.desc }
-ent-BaseLeftFoot = left foot
- .desc = { ent-BasePart.desc }
-ent-BaseRightFoot = right foot
- .desc = { ent-BasePart.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/diona.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/diona.ftl
deleted file mode 100644
index de0cc03a852..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/diona.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-PartDiona = diona body part
- .desc = { ent-BasePart.desc }
-ent-TorsoDiona = diona torso
- .desc = { ent-PartDiona.desc }
-ent-HeadDiona = diona head
- .desc = { ent-PartDiona.desc }
-ent-LeftArmDiona = left diona arm
- .desc = { ent-PartDiona.desc }
-ent-RightArmDiona = right diona arm
- .desc = { ent-PartDiona.desc }
-ent-LeftHandDiona = left diona hand
- .desc = { ent-PartDiona.desc }
-ent-RightHandDiona = right diona hand
- .desc = { ent-PartDiona.desc }
-ent-LeftLegDiona = left diona leg
- .desc = { ent-PartDiona.desc }
-ent-RightLegDiona = right diona leg
- .desc = { ent-PartDiona.desc }
-ent-LeftFootDiona = left diona foot
- .desc = { ent-PartDiona.desc }
-ent-RightFootDiona = right diona foot
- .desc = { ent-PartDiona.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/gingerbread.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/gingerbread.ftl
deleted file mode 100644
index a3c6c971562..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/gingerbread.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-PartGingerbread = gingerbead body part
- .desc = { ent-BaseItem.desc }
-ent-TorsoGingerbread = gingerbread torso
- .desc = { ent-PartGingerbread.desc }
-ent-HeadGingerbread = gingerbread head
- .desc = { ent-PartGingerbread.desc }
-ent-LeftArmGingerbread = left gingerbread arm
- .desc = { ent-PartGingerbread.desc }
-ent-RightArmGingerbread = right gingerbread arm
- .desc = { ent-PartGingerbread.desc }
-ent-LeftHandGingerbread = left gingerbread hand
- .desc = { ent-PartGingerbread.desc }
-ent-RightHandGingerbread = right gingerbread hand
- .desc = { ent-PartGingerbread.desc }
-ent-LeftLegGingerbread = left gingerbread leg
- .desc = { ent-PartGingerbread.desc }
-ent-RightLegGingerbread = right gingerbread leg
- .desc = { ent-PartGingerbread.desc }
-ent-LeftFootGingerbread = left gingerbread foot
- .desc = { ent-PartGingerbread.desc }
-ent-RightFootGingerbread = right gingerbread foot
- .desc = { ent-PartGingerbread.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/human.ftl
deleted file mode 100644
index 8adcb8645c3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/human.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-PartHuman = human body part
- .desc = { ent-BasePart.desc }
-ent-TorsoHuman = human torso
- .desc = { ent-PartHuman.desc }
-ent-HeadHuman = human head
- .desc = { ent-PartHuman.desc }
-ent-LeftArmHuman = left human arm
- .desc = { ent-PartHuman.desc }
-ent-RightArmHuman = right human arm
- .desc = { ent-PartHuman.desc }
-ent-LeftHandHuman = left human hand
- .desc = { ent-PartHuman.desc }
-ent-RightHandHuman = right human hand
- .desc = { ent-PartHuman.desc }
-ent-LeftLegHuman = left human leg
- .desc = { ent-PartHuman.desc }
-ent-RightLegHuman = right human leg
- .desc = { ent-PartHuman.desc }
-ent-LeftFootHuman = left human foot
- .desc = { ent-PartHuman.desc }
-ent-RightFootHuman = right human foot
- .desc = { ent-PartHuman.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/moth.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/moth.ftl
deleted file mode 100644
index e40b95a0bb7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/moth.ftl
+++ /dev/null
@@ -1,33 +0,0 @@
-ent-PartMoth = moth body part
-
- .desc = { ent-BasePart.desc }
-ent-TorsoMoth = moth torso
-
- .desc = { ent-PartMoth.desc }
-ent-HeadMoth = moth head
-
- .desc = { ent-PartMoth.desc }
-ent-LeftArmMoth = left moth arm
-
- .desc = { ent-PartMoth.desc }
-ent-RightArmMoth = right moth arm
-
- .desc = { ent-PartMoth.desc }
-ent-LeftHandMoth = left moth hand
-
- .desc = { ent-PartMoth.desc }
-ent-RightHandMoth = right moth hand
-
- .desc = { ent-PartMoth.desc }
-ent-LeftLegMoth = left moth leg
-
- .desc = { ent-PartMoth.desc }
-ent-RightLegMoth = right moth leg
-
- .desc = { ent-PartMoth.desc }
-ent-LeftFootMoth = left moth foot
-
- .desc = { ent-PartMoth.desc }
-ent-RightFootMoth = right moth foot
-
- .desc = { ent-PartMoth.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/rat.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/rat.ftl
deleted file mode 100644
index 75b76ffc853..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/rat.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-TorsoRat = animal torso
- .desc = { ent-PartAnimal.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/reptilian.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/reptilian.ftl
deleted file mode 100644
index 9fa555a8bc2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/reptilian.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-PartReptilian = reptilian body part
- .desc = { ent-BasePart.desc }
-ent-TorsoReptilian = reptilian torso
- .desc = {ent-PartReptilian.desc }
-ent-HeadReptilian = reptilian head
- .desc = { ent-PartReptilian.desc }
-ent-LeftArmReptilian = left reptilian arm
- .desc = { ent-PartReptilian.desc }
-ent-RightArmReptilian = right reptilian arm
- .desc = { ent-PartReptilian.desc }
-ent-LeftHandReptilian = left reptilian hand
- .desc = { ent-PartReptilian.desc }
-ent-RightHandReptilian = right reptilian hand
- .desc = { ent-PartReptilian.desc }
-ent-LeftLegReptilian = left reptilian leg
- .desc = { ent-PartReptilian.desc }
-ent-RightLegReptilian = right reptilian leg
- .desc = { ent-PartReptilian.desc }
-ent-LeftFootReptilian = left reptilian foot
- .desc = { ent-PartReptilian.desc }
-ent-RightFootReptilian = right reptilian foot
- .desc = { ent-PartReptilian.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/silicon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/silicon.ftl
deleted file mode 100644
index 51a756ee267..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/silicon.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-PartSilicon = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-BaseBorgArmLeft = left cyborg arm
- .desc = { ent-PartSilicon.desc }
-ent-BaseBorgArmRight = right cyborg arm
- .desc = { ent-PartSilicon.desc }
-ent-BaseBorgLegLeft = left cyborg leg
- .desc = { ent-PartSilicon.desc }
-ent-BaseBorgLegRight = right cyborg leg
- .desc = { ent-PartSilicon.desc }
-ent-BaseBorgHead = cyborg head
- .desc = { ent-PartSilicon.desc }
-ent-BaseBorgTorso = cyborg torso
- .desc = { ent-PartSilicon.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/skeleton.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/skeleton.ftl
deleted file mode 100644
index 6286e3d8fac..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/skeleton.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-PartSkeleton = skeleton body part
- .desc = { ent-BaseItem.desc }
-ent-TorsoSkeleton = skeleton torso
- .desc = { ent-PartSkeleton.desc }
-ent-HeadSkeleton = skull
- .desc = Alas poor Yorick...
-ent-LeftArmSkeleton = left skeleton arm
- .desc = { ent-PartSkeleton.desc }
-ent-RightArmSkeleton = right skeleton arm
- .desc = { ent-PartSkeleton.desc }
-ent-LeftHandSkeleton = left skeleton hand
- .desc = { ent-PartSkeleton.desc }
-ent-RightHandSkeleton = right skeleton hand
- .desc = { ent-PartSkeleton.desc }
-ent-LeftLegSkeleton = left skeleton leg
- .desc = { ent-PartSkeleton.desc }
-ent-RightLegSkeleton = right skeleton leg
- .desc = { ent-PartSkeleton.desc }
-ent-LeftFootSkeleton = left skeleton foot
- .desc = { ent-PartSkeleton.desc }
-ent-RightFootSkeleton = right skeleton foot
- .desc = { ent-PartSkeleton.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/slime.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/slime.ftl
deleted file mode 100644
index a2b0305302d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/slime.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-PartSlime = slime body part
- .desc = { ent-PartSlime.desc }
-ent-TorsoSlime = slime torso
- .desc = { ent-PartSlime.desc }
-ent-HeadSlime = slime head
- .desc = { ent-PartSlime.desc }
-ent-LeftArmSlime = left slime arm
- .desc = { ent-PartSlime.desc }
-ent-RightArmSlime = right slime arm
- .desc = { ent-PartSlime.desc }
-ent-LeftHandSlime = left slime hand
- .desc = { ent-PartSlime.desc }
-ent-RightHandSlime = right slime hand
- .desc = { ent-PartSlime.desc }
-ent-LeftLegSlime = left slime leg
- .desc = { ent-PartSlime.desc }
-ent-RightLegSlime = right slime leg
- .desc = { ent-PartSlime.desc }
-ent-LeftFootSlime = left slime foot
- .desc = { ent-PartSlime.desc }
-ent-RightFootSlime = right slime foot
- .desc = { ent-PartSlime.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/terminator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/terminator.ftl
deleted file mode 100644
index 0e26c85cbc7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/terminator.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-PartTerminator = nt-800 body part
- .desc = { ent-BaseItem.desc }
-ent-TorsoTerminator = nt-800 torso
- .desc = { ent-PartTerminator.desc }
-ent-HeadTerminator = nt-800 skull
- .desc = Its red eyes have powered down... for now.
-ent-LeftArmTerminator = left nt-800 arm
- .desc = { ent-PartTerminator.desc }
-ent-RightArmTerminator = right nt-800 arm
- .desc = { ent-PartTerminator.desc }
-ent-LeftHandTerminator = left nt-800 hand
- .desc = { ent-PartTerminator.desc }
-ent-RightHandTerminator = right nt-800 hand
- .desc = { ent-PartTerminator.desc }
-ent-LeftLegTerminator = left nt-800 leg
- .desc = { ent-PartTerminator.desc }
-ent-RightLegTerminator = right nt-800 leg
- .desc = { ent-PartTerminator.desc }
-ent-LeftFootTerminator = left nt-800 foot
- .desc = { ent-PartTerminator.desc }
-ent-RightFootTerminator = right nt-800 foot
- .desc = { ent-PartTerminator.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/vox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/vox.ftl
deleted file mode 100644
index bb2f77e1622..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/vox.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-PartVox = vox body part
- .desc = { ent-BaseItem.desc }
-ent-TorsoVox = vox torso
- .desc = { ent-PartVox.desc }
-ent-HeadVox = vox head
- .desc = { ent-PartVox.desc }
-ent-LeftArmVox = left vox arm
- .desc = { ent-PartVox.desc }
-ent-RightArmVox = right vox arm
- .desc = { ent-PartVox.desc }
-ent-LeftHandVox = left vox hand
- .desc = { ent-PartVox.desc }
-ent-RightHandVox = right vox hand
- .desc = { ent-PartVox.desc }
-ent-LeftLegVox = left vox leg
- .desc = { ent-PartVox.desc }
-ent-RightLegVox = right vox leg
- .desc = { ent-PartVox.desc }
-ent-LeftFootVox = left vox foot
- .desc = { ent-PartVox.desc }
-ent-RightFootVox = right vox foot
- .desc = { ent-PartVox.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl
deleted file mode 100644
index dda9d4bf12d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl
+++ /dev/null
@@ -1,54 +0,0 @@
-ent-ClothingBackpackDuffelSurgeryFilled = surgical duffel bag
- .desc = A large duffel bag for holding extra medical supplies - this one seems to be designed for holding surgical tools.
-ent-ClothingBackpackDuffelCBURNFilled = { ent-ClothingBackpackDuffelCBURN }
- .suffix = Filled
- .desc = { ent-ClothingBackpackDuffelCBURN.desc }
-ent-ClothingBackpackDuffelSyndicateFilledMedical = syndicate surgical duffel bag
- .desc = A large duffel bag containing a full suite of surgical tools.
-ent-ClothingBackpackDuffelSyndicateFilledShotgun = Bulldog bundle
- .desc = Lean and mean: Contains the popular Bulldog Shotgun, a 12g beanbag drum and 3 12g buckshot drums.
-ent-ClothingBackpackDuffelSyndicateFilledSMG = C-20r bundle
- .desc = Old faithful: The classic C-20r Submachine Gun, bundled with three magazines.
-ent-ClothingBackpackDuffelSyndicateFilledRevolver = Python bundle
- .desc = Go loud and proud with a fully loaded Magnum Python, bundled with two speed loaders.
-ent-ClothingBackpackDuffelSyndicateFilledLMG = L6 Saw bundle
- .desc = More dakka: The iconic L6 lightmachinegun, bundled with 2 box magazines.
-ent-ClothingBackpackDuffelSyndicateFilledGrenadeLauncher = China-Lake bundle
- .desc = An old China-Lake grenade launcher bundled with 11 rounds of various destruction capability.
-ent-ClothingBackpackDuffelSyndicateFilledCarbine = M-90gl bundle
- .desc = A versatile battle rifle with an attached grenade launcher, bundled with 3 magazines and 6 grenades of various capabilities.
-ent-ClothingBackpackDuffelSyndicateAmmoFilled = ammo bundle
- .desc = Reloading! Contains 4 magazines for the C-20r, 4 drums for the Bulldog, and 2 ammo boxes for the L6 SAW.
-ent-ClothingBackpackDuffelSyndicateCostumeCentcom = CentCom official costume duffel bag
- .desc = Contains a full CentCom Official uniform set, headset and clipboard included. Encryption keys and ID access are not included.
- .suffix = DO NOT MAP
-ent-ClothingBackpackDuffelSyndicateCostumeClown = { ent-ClothingBackpackDuffelClown }
- .suffix = syndicate
- .desc = { ent-ClothingBackpackDuffelClown.desc }
-ent-ClothingBackpackDuffelSyndicateCarpSuit = carp suit duffel bag
- .desc = Contains a carp suit and some friends to play with.
-ent-ClothingBackpackDuffelSyndicatePyjamaBundle = syndicate pyjama duffel bag
- .desc = Contains 3 pairs of syndicate pyjamas and 3 plushies for the ultimate sleepover.
-ent-ClothingBackpackDuffelSyndicateC4tBundle = syndicate C-4 bundle
- .desc = Contains a lot of C-4 charges.
-ent-ClothingBackpackChameleonFill = { ent-ClothingBackpackChameleon }
- .suffix = Fill, Chameleon
- .desc = { ent-ClothingBackpackChameleon.desc }
-ent-ClothingBackpackDuffelSyndicateEVABundle = syndicate EVA bundle
- .desc = Contains the Syndicate approved EVA suit.
-ent-ClothingBackpackDuffelSyndicateHardsuitBundle = syndicate hardsuit bundle
- .desc = Contains the Syndicate's signature blood red hardsuit.
-ent-ClothingBackpackDuffelSyndicateEliteHardsuitBundle = syndicate elite hardsuit bundle
- .desc = Contains the Syndicate's elite hardsuit, which comes with some more stuff in it.
-ent-ClothingBackpackDuffelSyndicateHardsuitExtrasBundle = syndicate hardsuit extras bundle
- .desc = Contains stuff that you will absolutely want to have when purchasing a hardsuit.
-ent-ClothingBackpackDuffelZombieBundle = syndicate zombie bundle
- .desc = An all-in-one kit for unleashing the undead upon a station.
-ent-ClothingBackpackDuffelSyndicateOperative = operative duffelbag
- .desc = { ent-ClothingBackpackDuffelSyndicateBundle.desc }
-ent-ClothingBackpackDuffelSyndicateOperativeMedic = operative medic duffelbag
- .desc = A large duffel bag for holding extra medical supplies.
-ent-ClothingBackpackDuffelSyndicateMedicalBundleFilled = medical bundle
- .desc = All you need to get your comrades back in the fight.
-ent-ClothingBackpackDuffelSyndicateDecoyKitFilled = decoy bundle
- .desc = Contains distractions, both auditory and visual. Smell coming soon.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/starter gear/backpack.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/starter gear/backpack.ftl
deleted file mode 100644
index 16563a2395f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/starter gear/backpack.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-ClothingBackpackFilled = { ent-ClothingBackpack }
- .desc = { ent-ClothingBackpack.desc }
-ent-ClothingBackpackClownFilled = { ent-ClothingBackpackClown }
- .desc = { ent-ClothingBackpackClown.desc }
-ent-ClothingBackpackSecurityFilled = { ent-ClothingBackpackSecurity }
- .desc = { ent-ClothingBackpackSecurity.desc }
-ent-ClothingBackpackMedicalFilled = { ent-ClothingBackpackMedical }
- .desc = { ent-ClothingBackpackMedical.desc }
-ent-ClothingBackpackCaptainFilled = { ent-ClothingBackpackCaptain }
- .desc = { ent-ClothingBackpackCaptain.desc }
-ent-ClothingBackpackEngineeringFilled = { ent-ClothingBackpackEngineering }
- .desc = { ent-ClothingBackpackEngineering.desc }
-ent-ClothingBackpackScienceFilled = { ent-ClothingBackpackScience }
- .desc = { ent-ClothingBackpackScience.desc }
-ent-ClothingBackpackHydroponicsFilled = { ent-ClothingBackpackHydroponics }
- .desc = { ent-ClothingBackpackHydroponics.desc }
-ent-ClothingBackpackMimeFilled = { ent-ClothingBackpackMime }
- .desc = { ent-ClothingBackpackMime.desc }
-ent-ClothingBackpackChemistryFilled = { ent-ClothingBackpackChemistry }
- .desc = { ent-ClothingBackpackChemistry.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/starter gear/duffelbag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/starter gear/duffelbag.ftl
deleted file mode 100644
index 54a3cc3655a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/starter gear/duffelbag.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-ClothingBackpackDuffelFilled = { ent-ClothingBackpackDuffel }
- .desc = { ent-ClothingBackpackDuffel.desc }
-ent-ClothingBackpackDuffelClownFilled = { ent-ClothingBackpackDuffelClown }
- .desc = { ent-ClothingBackpackDuffelClown.desc }
-ent-ClothingBackpackDuffelSecurityFilled = { ent-ClothingBackpackDuffelSecurity }
- .desc = { ent-ClothingBackpackDuffelSecurity.desc }
-ent-ClothingBackpackDuffelMedicalFilled = { ent-ClothingBackpackDuffelMedical }
- .desc = { ent-ClothingBackpackDuffelMedical.desc }
-ent-ClothingBackpackDuffelCaptainFilled = { ent-ClothingBackpackDuffelCaptain }
- .desc = { ent-ClothingBackpackDuffelCaptain.desc }
-ent-ClothingBackpackDuffelEngineeringFilled = { ent-ClothingBackpackDuffelEngineering }
- .desc = { ent-ClothingBackpackDuffelEngineering.desc }
-ent-ClothingBackpackDuffelScienceFilled = { ent-ClothingBackpackDuffelScience }
- .desc = { ent-ClothingBackpackDuffelScience.desc }
-ent-ClothingBackpackDuffelMimeFilled = { ent-ClothingBackpackDuffelMime }
- .desc = { ent-ClothingBackpackDuffelMime.desc }
-ent-ClothingBackpackDuffelChemistryFilled = { ent-ClothingBackpackDuffelChemistry }
- .desc = { ent-ClothingBackpackDuffelChemistry.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/starter gear/satchel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/starter gear/satchel.ftl
deleted file mode 100644
index 380253d7a3b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/starter gear/satchel.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-ClothingBackpackSatchelFilled = { ent-ClothingBackpackSatchel }
- .desc = { ent-ClothingBackpackSatchel.desc }
-ent-ClothingBackpackSatchelSecurityFilled = { ent-ClothingBackpackSatchelSecurity }
- .desc = { ent-ClothingBackpackSatchelSecurity.desc }
-ent-ClothingBackpackSatchelMedicalFilled = { ent-ClothingBackpackSatchelMedical }
- .desc = { ent-ClothingBackpackSatchelMedical.desc }
-ent-ClothingBackpackSatchelCaptainFilled = { ent-ClothingBackpackSatchelCaptain }
- .desc = { ent-ClothingBackpackSatchelCaptain.desc }
-ent-ClothingBackpackSatchelEngineeringFilled = { ent-ClothingBackpackSatchelEngineering }
- .desc = { ent-ClothingBackpackSatchelEngineering.desc }
-ent-ClothingBackpackSatchelScienceFilled = { ent-ClothingBackpackSatchelScience }
- .desc = { ent-ClothingBackpackSatchelScience.desc }
-ent-ClothingBackpackSatchelHydroponicsFilled = { ent-ClothingBackpackSatchelHydroponics }
- .desc = { ent-ClothingBackpackSatchelHydroponics.desc }
-ent-ClothingBackpackSatchelChemistryFilled = { ent-ClothingBackpackSatchelChemistry }
- .desc = { ent-ClothingBackpackSatchelChemistry.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/startergear/backpack.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/startergear/backpack.ftl
deleted file mode 100644
index a26672803d6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/startergear/backpack.ftl
+++ /dev/null
@@ -1,71 +0,0 @@
-ent-ClothingBackpackFilled = { ent-ClothingBackpack }
- .desc = { ent-ClothingBackpack.desc }
-ent-ClothingBackpackClownFilled = { ent-ClothingBackpackClown }
- .desc = { ent-ClothingBackpackClown.desc }
-ent-ClothingBackpackSecurityFilled = { ent-ClothingBackpackSecurity }
- .desc = { ent-ClothingBackpackSecurity.desc }
-ent-ClothingBackpackSecurityFilledDetective = { ent-ClothingBackpackSecurity }
- .desc = { ent-ClothingBackpackSecurity.desc }
-ent-ClothingBackpackMedicalFilled = { ent-ClothingBackpackMedical }
- .desc = { ent-ClothingBackpackMedical.desc }
-ent-ClothingBackpackParamedicFilled = { ent-ClothingBackpackMedical }
- .desc = { ent-ClothingBackpackMedical.desc }
-ent-ClothingBackpackCaptainFilled = { ent-ClothingBackpackCaptain }
- .desc = { ent-ClothingBackpackCaptain.desc }
-ent-ClothingBackpackChiefEngineerFilled = { ent-ClothingBackpackCE }
- .desc = { ent-ClothingBackpackCE.desc }
-ent-ClothingBackpackResearchDirectorFilled = { ent-ClothingBackpackScience }
- .desc = { ent-ClothingBackpackScience.desc }
-ent-ClothingBackpackHOPFilled = { ent-ClothingBackpack }
- .desc = { ent-ClothingBackpack.desc }
-ent-ClothingBackpackHOPIanFilled = { ent-ClothingBackpackIan }
- .desc = { ent-ClothingBackpackIan.desc }
-ent-ClothingBackpackCMOFilled = { ent-ClothingBackpackMedical }
- .desc = { ent-ClothingBackpackMedical.desc }
-ent-ClothingBackpackQuartermasterFilled = { ent-ClothingBackpackCargo }
- .desc = { ent-ClothingBackpackCargo.desc }
-ent-ClothingBackpackHOSFilled = { ent-ClothingBackpackSecurity }
- .desc = { ent-ClothingBackpackSecurity.desc }
-ent-ClothingBackpackEngineeringFilled = { ent-ClothingBackpackEngineering }
- .desc = { ent-ClothingBackpackEngineering.desc }
-ent-ClothingBackpackAtmosphericsFilled = { ent-ClothingBackpackAtmospherics }
- .desc = { ent-ClothingBackpackAtmospherics.desc }
-ent-ClothingBackpackScienceFilled = { ent-ClothingBackpackScience }
- .desc = { ent-ClothingBackpackScience.desc }
-ent-ClothingBackpackHydroponicsFilled = { ent-ClothingBackpackHydroponics }
- .desc = { ent-ClothingBackpackHydroponics.desc }
-ent-ClothingBackpackMimeFilled = { ent-ClothingBackpackMime }
- .desc = { ent-ClothingBackpackMime.desc }
-ent-ClothingBackpackChemistryFilled = { ent-ClothingBackpackChemistry }
- .desc = { ent-ClothingBackpackChemistry.desc }
-ent-ClothingBackpackChaplainFilled = { ent-ClothingBackpack }
- .desc = { ent-ClothingBackpack.desc }
-ent-ClothingBackpackLawyerFilled = { ent-ClothingBackpack }
- .desc = { ent-ClothingBackpack.desc }
-ent-ClothingBackpackMusicianFilled = { ent-ClothingBackpack }
- .desc = { ent-ClothingBackpack.desc }
-ent-ClothingBackpackLibrarianFilled = { ent-ClothingBackpack }
- .desc = { ent-ClothingBackpack.desc }
-ent-ClothingBackpackDetectiveFilled = { ent-ClothingBackpack }
- .desc = { ent-ClothingBackpack.desc }
-ent-ClothingBackpackERTLeaderFilled = { ent-ClothingBackpackERTLeader }
- .desc = { ent-ClothingBackpackERTLeader.desc }
-ent-ClothingBackpackERTSecurityFilled = { ent-ClothingBackpackERTSecurity }
- .desc = { ent-ClothingBackpackERTSecurity.desc }
-ent-ClothingBackpackERTMedicalFilled = { ent-ClothingBackpackERTMedical }
- .desc = { ent-ClothingBackpackERTMedical.desc }
-ent-ClothingBackpackERTEngineerFilled = { ent-ClothingBackpackERTEngineer }
- .desc = { ent-ClothingBackpackERTEngineer.desc }
-ent-ClothingBackpackERTJanitorFilled = { ent-ClothingBackpackERTJanitor }
- .desc = { ent-ClothingBackpackERTJanitor.desc }
-ent-ClothingBackpackERTChaplainFilled = { ent-ClothingBackpackERTChaplain }
- .desc = { ent-ClothingBackpackERTChaplain.desc }
-ent-ClothingBackpackDeathSquadFilled = death squad backpack
- .desc = Holds the kit of CentComm's most feared agents.
-ent-ClothingBackpackCargoFilled = { ent-ClothingBackpackCargo }
- .desc = { ent-ClothingBackpackCargo.desc }
-ent-ClothingBackpackSalvageFilled = { ent-ClothingBackpackSalvage }
- .desc = { ent-ClothingBackpackSalvage.desc }
-ent-ClothingBackpackPirateFilled = { ent-ClothingBackpackSatchelLeather }
- .suffix = Filled, Pirate
- .desc = { ent-ClothingBackpackSatchelLeather.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/startergear/duffelbag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/startergear/duffelbag.ftl
deleted file mode 100644
index 0830b699c16..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/startergear/duffelbag.ftl
+++ /dev/null
@@ -1,54 +0,0 @@
-ent-ClothingBackpackDuffelFilled = { ent-ClothingBackpackDuffel }
- .desc = { ent-ClothingBackpackDuffel.desc }
-ent-ClothingBackpackDuffelClownFilled = { ent-ClothingBackpackDuffelClown }
- .desc = { ent-ClothingBackpackDuffelClown.desc }
-ent-ClothingBackpackDuffelSecurityFilled = { ent-ClothingBackpackDuffelSecurity }
- .desc = { ent-ClothingBackpackDuffelSecurity.desc }
-ent-ClothingBackpackDuffelSecurityFilledDetective = { ent-ClothingBackpackDuffelSecurity }
- .desc = { ent-ClothingBackpackDuffelSecurity.desc }
-ent-ClothingBackpackDuffelBrigmedicFilled = { ent-ClothingBackpackDuffelBrigmedic }
- .desc = { ent-ClothingBackpackDuffelBrigmedic.desc }
-ent-ClothingBackpackDuffelMedicalFilled = { ent-ClothingBackpackDuffelMedical }
- .desc = { ent-ClothingBackpackDuffelMedical.desc }
-ent-ClothingBackpackDuffelParamedicFilled = { ent-ClothingBackpackDuffelMedical }
- .desc = { ent-ClothingBackpackDuffelMedical.desc }
-ent-ClothingBackpackDuffelCaptainFilled = { ent-ClothingBackpackDuffelCaptain }
- .desc = { ent-ClothingBackpackDuffelCaptain.desc }
-ent-ClothingBackpackDuffelChiefEngineerFilled = { ent-ClothingBackpackDuffelCE }
- .desc = { ent-ClothingBackpackDuffelCE.desc }
-ent-ClothingBackpackDuffelResearchDirectorFilled = { ent-ClothingBackpackDuffelScience }
- .desc = { ent-ClothingBackpackDuffelScience.desc }
-ent-ClothingBackpackDuffelHOPFilled = { ent-ClothingBackpackDuffel }
- .desc = { ent-ClothingBackpackDuffel.desc }
-ent-ClothingBackpackDuffelCMOFilled = { ent-ClothingBackpackDuffelMedical }
- .desc = { ent-ClothingBackpackDuffelMedical.desc }
-ent-ClothingBackpackDuffelQuartermasterFilled = { ent-ClothingBackpackDuffelCargo }
- .desc = { ent-ClothingBackpackDuffelCargo.desc }
-ent-ClothingBackpackDuffelHOSFilled = { ent-ClothingBackpackDuffelSecurity }
- .desc = { ent-ClothingBackpackDuffelSecurity.desc }
-ent-ClothingBackpackDuffelEngineeringFilled = { ent-ClothingBackpackDuffelEngineering }
- .desc = { ent-ClothingBackpackDuffelEngineering.desc }
-ent-ClothingBackpackDuffelAtmosphericsFilled = { ent-ClothingBackpackDuffelAtmospherics }
- .desc = { ent-ClothingBackpackDuffelAtmospherics.desc }
-ent-ClothingBackpackDuffelScienceFilled = { ent-ClothingBackpackDuffelScience }
- .desc = { ent-ClothingBackpackDuffelScience.desc }
-ent-ClothingBackpackDuffelHydroponicsFilled = { ent-ClothingBackpackDuffelHydroponics }
- .desc = { ent-ClothingBackpackDuffelHydroponics.desc }
-ent-ClothingBackpackDuffelMimeFilled = { ent-ClothingBackpackDuffelMime }
- .desc = { ent-ClothingBackpackDuffelMime.desc }
-ent-ClothingBackpackDuffelChemistryFilled = { ent-ClothingBackpackDuffelChemistry }
- .desc = { ent-ClothingBackpackDuffelChemistry.desc }
-ent-ClothingBackpackDuffelChaplainFilled = { ent-ClothingBackpackDuffel }
- .desc = { ent-ClothingBackpackDuffel.desc }
-ent-ClothingBackpackDuffelLawyerFilled = { ent-ClothingBackpackDuffel }
- .desc = { ent-ClothingBackpackDuffel.desc }
-ent-ClothingBackpackDuffelMusicianFilled = { ent-ClothingBackpackDuffel }
- .desc = { ent-ClothingBackpackDuffel.desc }
-ent-ClothingBackpackDuffelLibrarianFilled = { ent-ClothingBackpackDuffel }
- .desc = { ent-ClothingBackpackDuffel.desc }
-ent-ClothingBackpackDuffelDetectiveFilled = { ent-ClothingBackpackDuffel }
- .desc = { ent-ClothingBackpackDuffel.desc }
-ent-ClothingBackpackDuffelCargoFilled = { ent-ClothingBackpackDuffelCargo }
- .desc = { ent-ClothingBackpackDuffelCargo.desc }
-ent-ClothingBackpackDuffelSalvageFilled = { ent-ClothingBackpackDuffelSalvage }
- .desc = { ent-ClothingBackpackDuffelSalvage.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/startergear/satchel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/startergear/satchel.ftl
deleted file mode 100644
index c399dbb520b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/startergear/satchel.ftl
+++ /dev/null
@@ -1,58 +0,0 @@
-ent-ClothingBackpackSatchelFilled = { ent-ClothingBackpackSatchel }
- .desc = { ent-ClothingBackpackSatchel.desc }
-ent-ClothingBackpackSatchelTools = { ent-ClothingBackpackSatchel }
- .desc = { ent-ClothingBackpackSatchel.desc }
-ent-ClothingBackpackSatchelClownFilled = { ent-ClothingBackpackSatchelClown }
- .desc = { ent-ClothingBackpackSatchelClown.desc }
-ent-ClothingBackpackSatchelSecurityFilled = { ent-ClothingBackpackSatchelSecurity }
- .desc = { ent-ClothingBackpackSatchelSecurity.desc }
-ent-ClothingBackpackSatchelSecurityFilledDetective = { ent-ClothingBackpackSatchelSecurity }
- .desc = { ent-ClothingBackpackSatchelSecurity.desc }
-ent-ClothingBackpackSatchelBrigmedicFilled = { ent-ClothingBackpackSatchelBrigmedic }
- .desc = { ent-ClothingBackpackSatchelBrigmedic.desc }
-ent-ClothingBackpackSatchelMedicalFilled = { ent-ClothingBackpackSatchelMedical }
- .desc = { ent-ClothingBackpackSatchelMedical.desc }
-ent-ClothingBackpackSatchelParamedicFilled = { ent-ClothingBackpackSatchelMedical }
- .desc = { ent-ClothingBackpackSatchelMedical.desc }
-ent-ClothingBackpackSatchelCaptainFilled = { ent-ClothingBackpackSatchelCaptain }
- .desc = { ent-ClothingBackpackSatchelCaptain.desc }
-ent-ClothingBackpackSatchelChiefEngineerFilled = { ent-ClothingBackpackSatchelCE }
- .desc = { ent-ClothingBackpackSatchelCE.desc }
-ent-ClothingBackpackSatchelResearchDirectorFilled = { ent-ClothingBackpackSatchelScience }
- .desc = { ent-ClothingBackpackSatchelScience.desc }
-ent-ClothingBackpackSatchelHOPFilled = { ent-ClothingBackpackSatchel }
- .desc = { ent-ClothingBackpackSatchel.desc }
-ent-ClothingBackpackSatchelCMOFilled = { ent-ClothingBackpackSatchelMedical }
- .desc = { ent-ClothingBackpackSatchelMedical.desc }
-ent-ClothingBackpackSatchelQuartermasterFilled = { ent-ClothingBackpackSatchelCargo }
- .desc = { ent-ClothingBackpackSatchelCargo.desc }
-ent-ClothingBackpackSatchelHOSFilled = { ent-ClothingBackpackSatchelSecurity }
- .desc = { ent-ClothingBackpackSatchelSecurity.desc }
-ent-ClothingBackpackSatchelEngineeringFilled = { ent-ClothingBackpackSatchelEngineering }
- .desc = { ent-ClothingBackpackSatchelEngineering.desc }
-ent-ClothingBackpackSatchelAtmosphericsFilled = { ent-ClothingBackpackSatchelAtmospherics }
- .desc = { ent-ClothingBackpackSatchelAtmospherics.desc }
-ent-ClothingBackpackSatchelScienceFilled = { ent-ClothingBackpackSatchelScience }
- .desc = { ent-ClothingBackpackSatchelScience.desc }
-ent-ClothingBackpackSatchelHydroponicsFilled = { ent-ClothingBackpackSatchelHydroponics }
- .desc = { ent-ClothingBackpackSatchelHydroponics.desc }
-ent-ClothingBackpackSatchelChemistryFilled = { ent-ClothingBackpackSatchelChemistry }
- .desc = { ent-ClothingBackpackSatchelChemistry.desc }
-ent-ClothingBackpackSatchelChaplainFilled = { ent-ClothingBackpackSatchel }
- .desc = { ent-ClothingBackpackSatchel.desc }
-ent-ClothingBackpackSatchelLawyerFilled = { ent-ClothingBackpackSatchel }
- .desc = { ent-ClothingBackpackSatchel.desc }
-ent-ClothingBackpackSatchelMusicianFilled = { ent-ClothingBackpackSatchel }
- .desc = { ent-ClothingBackpackSatchel.desc }
-ent-ClothingBackpackSatchelLibrarianFilled = { ent-ClothingBackpackSatchel }
- .desc = { ent-ClothingBackpackSatchel.desc }
-ent-ClothingBackpackSatchelDetectiveFilled = { ent-ClothingBackpackSatchel }
- .desc = { ent-ClothingBackpackSatchel.desc }
-ent-ClothingBackpackSatchelCargoFilled = { ent-ClothingBackpackSatchelCargo }
- .desc = { ent-ClothingBackpackSatchelCargo.desc }
-ent-ClothingBackpackSatchelSalvageFilled = { ent-ClothingBackpackSatchelSalvage }
- .desc = { ent-ClothingBackpackSatchelSalvage.desc }
-ent-ClothingBackpackSatchelMimeFilled = { ent-ClothingBackpackSatchelMime }
- .desc = { ent-ClothingBackpackSatchelMime.desc }
-ent-ClothingBackpackSatchelHoldingAdmin = { ent-ClothingBackpackSatchelHolding }
- .desc = { ent-ClothingBackpackSatchelHolding.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/books/bookshelf.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/books/bookshelf.ftl
deleted file mode 100644
index c81fee0b3d0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/books/bookshelf.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-BookshelfFilled = { ent-Bookshelf }
- .suffix = random filled
- .desc = { ent-Bookshelf.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/books/lore.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/books/lore.ftl
deleted file mode 100644
index 6edfbe2e87f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/books/lore.ftl
+++ /dev/null
@@ -1,29 +0,0 @@
-ent-BookDemonomicon = demonomicon
- .desc = Who knows what dark spells may be contained in these horrid pages?
-ent-BookDemonomiconRandom = demonomicon
- .suffix = random
- .desc = { ent-BookDemonomicon.desc }
-ent-BookDemonomicon1 = { ent-BookDemonomicon }
- .suffix = 1
- .desc = { ent-BookDemonomicon.desc }
-ent-BookDemonomicon2 = { ent-BookDemonomicon }
- .suffix = 2
- .desc = { ent-BookDemonomicon.desc }
-ent-BookDemonomicon3 = { ent-BookDemonomicon }
- .suffix = 3
- .desc = { ent-BookDemonomicon.desc }
-ent-BookChemistryInsane = pharmaceutical manuscript
- .desc = You can tell whoever wrote this was off the desoxy HARD.
- .suffix = library salvage
-ent-BookBotanicalTextbook = botanical textbook
- .desc = Only a couple pages are left.
- .suffix = library salvage
-ent-BookGnominomicon = gnominomicon
- .desc = You don't like the look of this. Looks
- .suffix = library salvage
-ent-BookFishing = Tales from the Fishbowl
- .desc = This book sucks.
- .suffix = library salvage
-ent-BookDetective = Strokgraeth Holmes, Dwarf Detective
- .desc = Exciting! Invigorating! This author died after his book career failed.
- .suffix = library salvage
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/ammunition.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/ammunition.ftl
deleted file mode 100644
index 5c65aa1bb05..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/ammunition.ftl
+++ /dev/null
@@ -1,40 +0,0 @@
-ent-BoxMagazine = box of magazines
- .desc = A box full of magazines.
-ent-BoxMagazinePistolCaselessRifle = box of .25 caseless magazines
- .desc = A box full of .25 caseless magazines.
-ent-BoxMagazinePistolCaselessRiflePractice = box of .25 caseless (practice) magazines
- .desc = A box full of .25 caseless practice magazines.
-ent-BoxMagazineLightRifle = box of .30 rifle magazines
- .desc = A box full of .30 rifle magazines.
-ent-BoxMagazineLightRiflePractice = box of .30 rifle (practice) magazines
- .desc = A box full of .30 rifle (practice) magazines.
-ent-BoxMagazineMagnumSubMachineGun = box of Vector magazines
- .desc = A box full of Vector magazines.
-ent-BoxMagazineMagnumSubMachineGunPractice = box of Vector (practice) magazines
- .desc = A box full of Vector (practice) magazines.
-ent-BoxMagazinePistolSubMachineGunTopMounted = box of WT550 .35 auto magazines
- .desc = A box full of WT550 .35 auto magazines.
-ent-BoxMagazinePistol = box of pistol .35 auto magazines
- .desc = A box full of pistol .35 auto magazines.
-ent-BoxMagazinePistolPractice = box of pistol .35 auto (practice) magazines
- .desc = A box full of magazines.
-ent-BoxMagazinePistolHighCapacity = box of machine pistol .35 auto magazines
- .desc = A box full of machine pistol .35 auto magazines.
-ent-BoxMagazinePistolHighCapacityPractice = box of machine pistol .35 auto (practice) magazines
- .desc = A box full of machine pistol .35 auto (practice) magazines.
-ent-BoxMagazinePistolSubMachineGun = box of SMG .35 auto magazines
- .desc = A box full of SMG .35 auto magazines.
-ent-BoxMagazinePistolSubMachineGunPractice = box of SMG .35 auto (practice) magazines
- .desc = A box full of SMG .35 auto (practice) magazines.
-ent-BoxMagazineShotgun = box of (.50 pellet) ammo drums
- .desc = A box full of (.50 pellet) ammo drums.
-ent-BoxMagazineShotgunBeanbag = box of (.50 beanbag) ammo drums
- .desc = A box full of (.50 beanbag) ammo drums.
-ent-BoxMagazineShotgunSlug = box of (.50 slug) ammo drums
- .desc = A box full of (.50 slug) ammo drums.
-ent-BoxMagazineShotgunIncendiary = box of (.50 incendiary) ammo drums
- .desc = A box full of (.50 incendiary) ammo drums.
-ent-BoxMagazineRifle = box of .20 rifle magazines
- .desc = A box full of .20 rifle magazines.
-ent-BoxMagazineRiflePractice = box of .20 rifle (practice) magazines
- .desc = A box full of .20 rifle (practice) magazines.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/emergency.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/emergency.ftl
deleted file mode 100644
index 927a69525ce..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/emergency.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-BoxSurvival = survival box
- .desc = It's a box with basic internals inside.
-ent-BoxSurvivalEngineering = extended-capacity survival box
- .desc = It's a box with basic internals inside. This one is labelled to contain an extended-capacity tank.
-ent-BoxSurvivalSecurity = survival box
- .desc = It's a box with basic internals inside.
- .suffix = Security
-ent-BoxSurvivalMedical = survival box
- .desc = It's a box with basic internals inside.
- .suffix = Medical
-ent-BoxHug = box of hugs
- .desc = A special box for sensitive people.
- .suffix = Emergency
-ent-BoxSurvivalSyndicate = extended-capacity survival box
- .desc = It's a box with basic internals inside. This one is labelled to contain an extended-capacity tank.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl
deleted file mode 100644
index 1e4b064985e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl
+++ /dev/null
@@ -1,60 +0,0 @@
-ent-BoxCardboard = cardboard box
- .desc = A cardboard box for storing things.
-ent-BoxMousetrap = mousetrap box
- .desc = This box is filled with mousetraps. Try not to get your hand stuck in one.
-ent-BoxLightbulb = lightbulb box
- .desc = This box is shaped on the inside so that only light tubes and bulbs fit.
-ent-BoxLighttube = lighttube box
- .desc = { ent-BoxLightbulb.desc }
-ent-BoxLightMixed = mixed lights box
- .desc = { ent-BoxLightbulb.desc }
-ent-BoxPDA = PDA box
- .desc = A box of spare PDA microcomputers.
-ent-BoxID = ID card box
- .desc = A box of spare blank ID cards.
-ent-BoxHeadset = headset box
- .desc = A box of spare passenger headsets.
-ent-BoxMesonScanners = meson box
- .desc = A box of spare meson goggles.
-ent-BoxMRE = M.R.E.
- .desc = A box of decades old military surplus rations. It is surprisingly not rotten.
-ent-BoxHugHealing = { ent-BoxHug }
- .suffix = Medical
- .desc = { ent-BoxHug.desc }
-ent-BoxInflatable = inflatable wall box
- .desc = Inflatable walls are not to be used as floatation devices.
-ent-BoxPerformer = hatsune miku day bag
- .desc = Happy Hatsune Miku Day!
-ent-BoxFlare = flare box
- .desc = A box of flares. Party time.
-ent-BoxTrashbag = trashbag box
- .desc = A box of trashbags. Happy janitor noises.
-ent-BoxEncryptionKeyPassenger = passenger encryption key box
- .desc = A box of spare encryption keys.
-ent-BoxEncryptionKeyCargo = cargo encryption key box
- .desc = { ent-BoxEncryptionKeyPassenger.desc }
-ent-BoxEncryptionKeyEngineering = engineering encryption key box
- .desc = { ent-BoxEncryptionKeyPassenger.desc }
-ent-BoxEncryptionKeyMedicalScience = med-sci encryption key box
- .desc = { ent-BoxEncryptionKeyPassenger.desc }
-ent-BoxEncryptionKeyMedical = medical encryption key box
- .desc = { ent-BoxEncryptionKeyPassenger.desc }
-ent-BoxEncryptionKeyRobo = robotech encryption key box
- .desc = { ent-BoxEncryptionKeyPassenger.desc }
-ent-BoxEncryptionKeyScience = science encryption key box
- .desc = { ent-BoxEncryptionKeyPassenger.desc }
-ent-BoxEncryptionKeySecurity = security encryption key box
- .desc = { ent-BoxEncryptionKeyPassenger.desc }
-ent-BoxEncryptionKeyService = service encryption key box
- .desc = { ent-BoxEncryptionKeyPassenger.desc }
-ent-BoxEncryptionKeySyndie = syndicate encryption key box
- .desc = Two syndicate encryption keys for the price of one. Miniaturized for ease of use.
-ent-BoxLeadLined = lead-lined box
- .desc = This box stymies the transmission of harmful radiation.
- .suffix = DEBUG
-ent-BoxCandle = candle box
- .desc = This box is specifically moulded to only carry candles.
-ent-BoxCandleSmall = small candle box
- .desc = { ent-BoxCandle.desc }
-ent-BoxDarts = darts box
- .desc = A box filled with colorful darts.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/medical.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/medical.ftl
deleted file mode 100644
index fe300db1bc1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/medical.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-BoxSyringe = syringe box
- .desc = A box full of syringes.
-ent-BoxPillCanister = pill canister box
- .desc = A box full of pill canisters.
-ent-BoxBottle = bottle box
- .desc = A box full of bottles.
-ent-BoxSterileMask = sterile mask box
- .desc = This box contains sterile medical masks.
-ent-BoxLatexGloves = latex gloves box
- .desc = Contains sterile latex gloves.
-ent-BoxNitrileGloves = nitrile gloves box
- .desc = Contains sterile nitrile gloves. Better than latex.
-ent-BoxBodyBag = body bag box
- .desc = Contains body bags.
-ent-BoxVial = vial box
- .desc = A box full of vials.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/science.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/science.ftl
deleted file mode 100644
index daad4f15762..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/science.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BoxBeaker = beaker box
- .desc = A box full of beakers.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/security.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/security.ftl
deleted file mode 100644
index 90c7c7aa9c3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/security.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BoxHandcuff = handcuff box
- .desc = A box full of handcuffs.
-ent-BoxFlashbang = flashbang box
- .desc = WARNING: These devices are extremely dangerous and can cause blindness or deafness in repeated use.
-ent-BoxSechud = sechud box
- .desc = A box of security glasses.
-ent-BoxZiptie = ziptie box
- .desc = A box full of zipties.
-ent-BoxForensicPad = forensic pad box
- .desc = A box of forensic pads.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/service.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/service.ftl
deleted file mode 100644
index 0d90ab83eb9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/service.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BoxCleanerGrenades = cleanades box
- .desc = A box full of cleanades.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl
deleted file mode 100644
index 3153794aee3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-ElectricalDisruptionKit = electrical disruption kit
- .suffix = Filled
- .desc = { ent-BoxCardboard.desc }
-ent-ChemicalSynthesisKit = chemical synthesis kit
- .desc = A starter kit for the aspiring chemist, includes toxin and vestine for all your criminal needs!
-ent-ThrowingKnivesKit = throwing knives kit
- .desc = A set of 4 syndicate branded throwing knives, perfect for embedding into the body of your victims.
-ent-BoxDeathRattleImplants = deathrattle implant box
- .desc = Six deathrattle implants and handheld GPS devices for the whole squad.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/antag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/antag.ftl
deleted file mode 100644
index 949ab3e0e0c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/antag.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-CratePirateChestCaptain = captains pirate chest
- .suffix = Filled
- .desc = { ent-CratePirate.desc }
-ent-CratePirateChest = crews pirate chest
- .suffix = Filled
- .desc = { ent-CratePirate.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/armory.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/armory.ftl
deleted file mode 100644
index dc5de63034b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/armory.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-CrateArmorySMG = SMG crate
- .desc = Contains two high-powered, semiautomatic rifles with four mags. Requires Armory access to open.
-ent-CrateArmoryShotgun = shotgun crate
- .desc = For when the enemy absolutely needs to be replaced with lead. Contains two Enforcer Combat Shotguns, and some standard shotgun shells. Requires Armory access to open.
-ent-CrateTrackingImplants = tracking implants
- .desc = Contains a handful of tracking implanters. Good for prisoners you'd like to release but still keep track of.
-ent-CrateTrainingBombs = training bombs
- .desc = Contains three low-yield training bombs for security to learn defusal and safe ordnance disposal, EOD suit not included. Requires Armory access to open.
-ent-CrateArmoryLaser = lasers crate
- .desc = Contains three standard-issue laser rifles. Requires Armory access to open.
-ent-CrateArmoryPistols = pistols crate
- .desc = Contains two standard NT pistols with four mags. Requires Armory access to open.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/botany.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/botany.ftl
deleted file mode 100644
index c0697e8bf61..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/botany.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-CrateHydroponicsSeedsExotic = exotic seeds crate
- .desc = Any entrepreneuring botanist's dream. Contains many different exotic seeds. Requires Hydroponics access to open.
-ent-CrateHydroponicsSeedsMedicinal = medicinal seeds crate
- .desc = The wannabe chemist's dream. The power of medicine is at your fingertips! Requires Hydroponics access to open.
-ent-CrateHydroponicsTools = hydroponics equipment crate
- .desc = Supplies for growing a great garden! Contains some spray bottles of plant chemicals, a hatchet, a mini-hoe, scythe, as well as a pair of leather gloves and a botanist's apron.
-ent-CrateHydroponicsSeeds = seeds crate
- .desc = Big things have small beginnings. Contains twelve different seeds.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/cargo.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/cargo.ftl
deleted file mode 100644
index 34481544348..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/cargo.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-CrateCargoLuxuryHardsuit = luxury mining hardsuit crate
- .desc = Finally, a hardsuit Quartermasters could call their own. Centcomm has heard you, now stop asking.
-ent-CrateCargoGambling = the grand lottery $$$
- .desc = A box containing treasure beyond your greatest imaginations!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/chemistry.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/chemistry.ftl
deleted file mode 100644
index c5d620f3721..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/chemistry.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-CrateChemistryP = chemicals crate (P)
- .desc = Contains chemicals from the P-Block of elements. Requires Chemistry access to open.
-ent-CrateChemistryS = chemicals crate (S)
- .desc = Contains chemicals from the S-Block of elements. Requires Chemistry access to open.
-ent-CrateChemistryD = chemicals crate (D)
- .desc = Contains chemicals from the D-Block of elements. Requires Chemistry access to open.
-ent-CratePlantBGone = bulk Plant-B-Gone crate
- .desc = From Monstano. "Unwanted Weeds, Meet Your Celestial Roundup!"
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/circuitboards.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/circuitboards.ftl
deleted file mode 100644
index 5c368283f2b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/circuitboards.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CrateCrewMonitoringBoards = crew monitoring boards
- .desc = Has two crew monitoring console and server replacements. Requires engineering access to open.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/emergency.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/emergency.ftl
deleted file mode 100644
index 16dd1831254..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/emergency.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-CrateEmergencyExplosive = bomb suit crate
- .desc = Science gone bonkers? Beeping behind the airlock? Buy now and be the hero the station des... I mean needs! (time not included)
-ent-CrateEmergencyFire = firefighting crate
- .desc = Only you can prevent station fires. Partner up with two firefighter suits, gas masks, flashlights, large oxygen tanks, extinguishers, and hardhats!
-ent-CrateEmergencyInternals = internals crate
- .desc = Master your life energy and control your breathing with three breath masks, three emergency oxygen tanks and three large air tanks.
-ent-CrateEmergencyInternalsLarge = internals crate (large)
- .desc = Master your life energy and control your breathing with six breath masks, six emergency oxygen tanks and six large air tanks.
-ent-CrateSlimepersonLifeSupport = slimeperson life support crate
- .desc = Contains four breath masks and four large nitrogen tanks.
-ent-CrateEmergencyRadiation = radiation protection crate
- .desc = Survive the Nuclear Apocalypse and Supermatter Engine alike with two sets of Radiation suits. Each set contains a helmet, suit, and Geiger counter. We'll even throw in a bottle of vodka and some glasses too, considering the life-expectancy of people who order this.
-ent-CrateEmergencyInflatablewall = inflatable wall crate
- .desc = Three stacks of inflatable walls for when the stations metal walls don't want to hold atmosphere anymore.
-ent-CrateGenericBiosuit = emergency bio suit crate
- .desc = Contains 2 biohazard suits to ensure that no disease will distract you from what you're doing there.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl
deleted file mode 100644
index 4560a4ec97b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-CrateEngineeringGear = engineering gear crate
- .desc = Various engineering gear parts.
-ent-CrateEngineeringToolbox = toolbox crate
- .desc = Two mechanical and two electrical toolboxes.
-ent-CrateEngineeringCableLV = LV cable crate
- .desc = 3 coils of LV cables.
-ent-CrateEngineeringCableMV = MV cable crate
- .desc = 3 coils of LV cables.
-ent-CrateEngineeringCableHV = HV cable crate
- .desc = 3 coils of HV cables.
-ent-CrateEngineeringCableBulk = bulk cable crate
- .desc = 2 coils each for every cable type.
-ent-CrateEngineeringElectricalSupplies = electrical supplies crate
- .desc = NT is not responsible for any workplace infighting relating to the insulated gloves included within these crates.
-ent-CrateEngineeringStationBeaconBundle = station beacon bundle
- .desc = A crate containing 5 station beacon assemblies for modifying the station map.
-ent-CrateEngineeringJetpack = jetpack crate
- .desc = Two jetpacks for those who don't know how to use fire extinguishers.
-ent-CrateEngineeringMiniJetpack = mini jetpack crate
- .desc = Two mini jetpacks for those who want an extra challenge.
-ent-CrateAirlockKit = airlock kit
- .desc = A kit for building 6 airlocks, doesn't include tools.
-ent-CrateEvaKit = EVA kit
- .desc = A set consisting of two prestigious EVA suits and helmets.
-ent-CrateRCDAmmo = compressed matter crate
- .desc = Contains three compressed matter cartridges.
-ent-CrateRCD = RCD crate
- .desc = A crate containing a single rapid construction device.
-ent-CrateParticleDecelerators = particle decelerators crate
- .desc = A crate containing 3 Particle Decelerators.
-ent-CrateEngineeringSpaceHeater = space heater crate
- .desc = Contains a space heater for climate control.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engines.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engines.ftl
deleted file mode 100644
index fc213777970..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engines.ftl
+++ /dev/null
@@ -1,29 +0,0 @@
-ent-CrateEngineeringAMEShielding = packaged antimatter reactor crate
- .desc = 9 parts for the main body of an antimatter reactor, or for expanding an existing one.
-ent-CrateEngineeringAMEJar = antimatter containment jar crate
- .desc = 3 antimatter jars, for fuelling an antimatter reactor.
-ent-CrateEngineeringAMEControl = antimatter control unit crate
- .desc = The control unit of an antimatter reactor.
-ent-CrateEngineeringSingularityEmitter = emitter crate
- .desc = An emitter, best used for singularity engines.
-ent-CrateEngineeringSingularityCollector = radiation collector crate
- .desc = A radiation collector, best used for singularity engines. Plasma is included.
-ent-CrateEngineeringSingularityContainment = containment field generator crate
- .desc = A containment field generator, keeps the singulo in submission.
-ent-CrateEngineeringSingularityGenerator = singularity generator crate
- .desc = A singularity generator, the mother of the beast.
-ent-CrateEngineeringParticleAccelerator = PA crate
- .desc = Complex to setup, but rewarding as fuck.
-ent-CrateEngineeringGenerator = generator crate
- .suffix = DEBUG
- .desc = { ent-CrateEngineering.desc }
-ent-CrateEngineeringSolar = solar assembly crate
- .desc = Parts for constructing solar panels and trackers.
-ent-CrateEngineeringShuttle = shuttle powering crate
- .desc = A crate containing all needs for shuttle powering.
-ent-CrateEngineeringTeslaGenerator = tesla generator crate
- .desc = A tesla generator. God save you.
-ent-CrateEngineeringTeslaCoil = tesla coil crate
- .desc = Tesla coil. Attracts lightning and generates energy from it.
-ent-CrateEngineeringTeslaGroundingRod = tesla grounding rod crate
- .desc = Grounding rod, best for lightning protection.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/food.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/food.ftl
deleted file mode 100644
index bbf3e083f49..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/food.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-CrateFoodPizza = emergency pizza delivery
- .desc = Help do your part to end station hunger by distributing pizza to underfunded departments! Includes 4 pizzas.
-ent-CrateFoodPizzaLarge = disaster pizza delivery
- .desc = In the ultimate event that all else has failed, Find comfort in that more pizza solves everything. Includes 16 pizzas.
-ent-CrateFoodMRE = MRE crate
- .desc = A military style meal fit to feed a whole department.
-ent-CrateFoodCooking = kitchen supplies crate
- .desc = Extra kitchen supplies, in case the botanists are absent.
-ent-CrateFoodDinnerware = kitchen dinnerware crate
- .desc = Extra kitchen supplies, in case the clown was allowed in the cafeteria unsupervised.
-ent-CrateFoodBarSupply = bartending supplies crate
- .desc = Extra Bar supplies, in case the clown was allowed in the bar unsupervised.
-ent-CrateFoodSoftdrinks = softdrinks crate
- .desc = A variety of sodas to complement a small party, without having to empty the soda machines. Includes 14 sodas.
-ent-CrateFoodSoftdrinksLarge = softdrinks bulk crate
- .desc = Lots of sodas taken straight out of Centcomm's own vending machines, because you just can't leave your department. Includes 28 sodas.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/fun.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/fun.ftl
deleted file mode 100644
index 4a5a2183120..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/fun.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-CrateFunPlushie = plushie crate
- .desc = A buncha soft plushies. Throw them around and then wonder how you're gonna explain this purchase to NT.
-ent-CrateFunLizardPlushieBulk = bulk lizard plushie crate
- .desc = A buncha soft lizard plushies. Throw them around and then wonder how you're gonna explain this purchase to NT.
-ent-CrateFunInstrumentsVariety = variety instrument collection
- .desc = Get your sad station movin' and groovin' with this catch-all variety pack! Contains seven different instruments.
-ent-CrateFunInstrumentsBrass = brass instrument ensemble crate
- .desc = Bring some jazz to the station with the brass ensemble. Contains a variety of brass instruments for the whole station to play.
-ent-CrateFunInstrumentsString = string instrument ensemble crate
- .desc = Pluck or pick, slap or shred! Play a smooth melody or melt peoples' faces with this package of stringed instruments.
-ent-CrateFunInstrumentsWoodwind = woodwind instrument ensemble crate
- .desc = If atmos is good at their job, use air to play music with these woodwind instruments! Real wood not guaranteed with every item.
-ent-CrateFunInstrumentsKeyedPercussion = keyed/percussion instrument ensemble crate
- .desc = Hit some keys with some sticks or your hands, with this Keyed and Percussion instrument ensemble crate.
-ent-CrateFunInstrumentsSpecial = special instrument collector's crate
- .desc = Create some noise with this special collection of arguably-instruments! Centcomm is not responsible for any trauma caused by the contents.
-ent-CrateFunArtSupplies = art supplies
- .desc = Make some happy little accidents with lots of crayons!
-ent-CrateFunBoardGames = board game crate
- .desc = Game nights have been proven to either decrease boredom or increase murderous rage depending on the game.
-ent-CrateFunSadTromboneImplants = sad trombone implants
- .desc = Death's never been so fun before! Implant these to make dying a bit more happy.
-ent-CrateFunLightImplants = light implants
- .desc = Light up your skin with these implants!
-ent-CrateFunParty = party crate
- .desc = An entire party just waiting for you to open it. Includes party favors, party beverages, and even a cake.
-ent-CrateFunWaterGuns = water gun crate
- .desc = A summer special with a variety of brightly colored water guns. Water not included.
-ent-CrateFunBoxing = boxing crate
- .desc = Want to set up an underground fight club or host a tournament amongst station crew? This crate is for you!
-ent-CrateFunPirate = { ent-CratePirate }
- .suffix = Filled
- .desc = { ent-CratePirate.desc }
-ent-CrateFunToyBox = { ent-CrateToyBox }
- .suffix = Filled
- .desc = { ent-CrateToyBox.desc }
-ent-CrateFunBikeHornImplants = bike horn implants
- .desc = A thousand honks a day keeps security officers away!
-ent-CrateFunMysteryFigurines = mystery figure crate
- .desc = A collection of 10 Mystery Figurine boxes. Duplicates non refundable.
-ent-CrateFunDartsSet = dartboard box set
- .desc = A box with everything you need for a fun game of darts.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl
deleted file mode 100644
index f5a2280ff0a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-CrateMaterialGlass = glass sheet crate
- .desc = 90 sheets of glass, packed with care.
-ent-CrateMaterialSteel = steel sheet crate
- .desc = 90 sheets of steel.
-ent-CrateMaterialTextiles = textiles crate
- .desc = 60 pieces of cloth and 30 pieces of durathread.
-ent-CrateMaterialPlastic = plastic sheet crate
- .desc = 90 sheets of plastic.
-ent-CrateMaterialWood = wood crate
- .desc = Bunch of wood planks.
-ent-CrateMaterialBrass = brass crate
- .desc = 90 sheets of brass.
-ent-CrateMaterialPlasteel = plasteel crate
- .desc = 90 sheets of plasteel.
-ent-CrateMaterialPlasma = solid plasma crate
- .desc = 90 sheets of plasma.
-ent-CrateMaterialCardboard = cardboard crate
- .desc = 60 pieces of cardboard.
-ent-CrateMaterialPaper = paper crate
- .desc = 90 sheets of paper.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/medical.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/medical.ftl
deleted file mode 100644
index 3f03850d98c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/medical.ftl
+++ /dev/null
@@ -1,28 +0,0 @@
-ent-CrateMedicalSupplies = medical supplies crate
- .desc = Basic medical supplies.
-ent-CrateChemistrySupplies = chemistry supplies crate
- .desc = Basic chemistry supplies.
-ent-CrateChemistryVials = vial supply crate
- .desc = Crate filled with a box of vials.
-ent-CrateMindShieldImplants = MindShield implant crate
- .desc = Crate filled with 3 MindShield implants.
-ent-CrateMedicalSurgery = surgical supplies crate
- .desc = Surgical instruments.
-ent-CrateMedicalScrubs = medical scrubs crate
- .desc = Medical clothings.
-ent-CrateEmergencyBurnKit = emergency burn kit
- .desc = Crate filled with a burn treatment kit.
-ent-CrateEmergencyToxinKit = emergency toxin kit
- .desc = Crate filled with a toxin treatment kit.
-ent-CrateEmergencyO2Kit = emergency O2 kit
- .desc = Crate filled with an O2 treatment kit.
-ent-CrateEmergencyBruteKit = emergency brute kit
- .desc = Crate filled with a brute treatment kit.
-ent-CrateEmergencyAdvancedKit = emergency advanced kit
- .desc = Crate filled with an advanced treatment kit.
-ent-CrateEmergencyRadiationKit = emergency radiation kit
- .desc = Crate filled with a radiation treatment kit.
-ent-CrateBodyBags = body bags crate
- .desc = Contains ten body bags.
-ent-CrateVirologyBiosuit = virology bio suit crate
- .desc = Contains 2 biohazard suits to ensure that no disease will distract you from treating the crew. Requires Medical access to open.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/npc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/npc.ftl
deleted file mode 100644
index 88642f06bc6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/npc.ftl
+++ /dev/null
@@ -1,50 +0,0 @@
-ent-CrateNPCBee = crate of bees
- .desc = A crate containing a swarm of eight bees.
-ent-CrateNPCButterflies = crate of butterflies
- .desc = A crate containing five butterflies.
-ent-CrateNPCCat = cat crate
- .desc = A crate containing a single cat.
-ent-CrateNPCChicken = chicken crate
- .desc = A crate containing four fully grown chickens.
-ent-CrateNPCCrab = crab crate
- .desc = A crate containing three huge crabs.
-ent-CrateNPCDuck = duck crate
- .desc = A crate containing six fully grown ducks.
-ent-CrateNPCCorgi = corgi crate
- .desc = A crate containing a single corgi.
-ent-CrateNPCPuppyCorgi = puppy corgi crate
- .desc = A crate containing a single puppy corgi. Awww.
-ent-CrateNPCCow = cow crate
- .desc = A crate containing a single cow.
-ent-CrateNPCGoat = goat crate
- .desc = A crate containing a single goat.
-ent-CrateNPCGoose = goose crate
- .desc = A crate containing two geese.
-ent-CrateNPCGorilla = gorilla crate
- .desc = A crate containing a single gorilla.
-ent-CrateNPCMonkeyCube = monkey cube crate
- .desc = A crate containing single box of monkey cubes.
-ent-CrateNPCKoboldCube = kobold cube crate
- .desc = A crate containing single box of kobold cubes.
-ent-CrateNPCMouse = mice crate
- .desc = A crate containing five mice.
-ent-CrateNPCParrot = parrot crate
- .desc = A crate containing three parrots.
-ent-CrateNPCPenguin = penguin crate
- .desc = A crate containing two penguins.
-ent-CrateNPCPig = pig crate
- .desc = A crate containing a single pig.
-ent-CrateNPCSnake = snake crate
- .desc = A crate containing three snakes.
-ent-CrateNPCHamster = { ent-CrateRodentCage }
- .suffix = Filled
- .desc = { ent-CrateRodentCage.desc }
-ent-CrateNPCHamlet = { ent-CrateRodentCage }
- .suffix = Hamlet
- .desc = { ent-CrateRodentCage.desc }
-ent-CrateNPCLizard = lizard crate
- .desc = A crate containing a lizard.
-ent-CrateNPCKangaroo = kangaroo crate
- .desc = A crate containing a kangaroo.
-ent-CrateNPCMothroach = crate of mothroaches
- .desc = A crate containing four mothroaches.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/salvage.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/salvage.ftl
deleted file mode 100644
index 72a96bf300d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/salvage.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-CrateSalvageEquipment = salvage equipment crate
- .desc = For the daring.
- .suffix = Filled
-ent-CrateSalvageAssortedGoodies = { ent-CrateGenericSteel }
- .suffix = Filled, Salvage Random
- .desc = { ent-CrateGenericSteel.desc }
-ent-CratePartsT3 = tier 3 parts crate
- .desc = Contains 5 random tier 3 parts for upgrading machines.
-ent-CratePartsT3T4 = tier 3/4 parts crate
- .desc = Contains 5 random tier 3 or 4 parts for upgrading machines.
-ent-CratePartsT4 = tier 4 parts crate
- .desc = Contains 5 random tier 4 parts for upgrading machines.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/science.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/science.ftl
deleted file mode 100644
index 91fd4d6cab4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/science.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CrateScienceBiosuit = scientist bio suit crate
- .desc = Contains 2 biohazard suits to ensure that no disease will distract you from doing science. Requires Science access to open.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/security.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/security.ftl
deleted file mode 100644
index dbb6a4a9b38..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/security.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-CrateSecurityArmor = armor crate
- .desc = Three vests of well-rounded, decently-protective armor. Requires Security access to open.
-ent-CrateSecurityHelmet = helmet crate
- .desc = Contains three standard-issue brain buckets. Requires Security access to open.
-ent-CrateSecurityNonlethal = nonlethals crate
- .desc = Disabler weapons. Requires Security access to open.
-ent-CrateSecurityRiot = swat crate
- .desc = Contains two sets of riot armor, helmets, shields, and enforcers loaded with beanbags. Extra ammo is included. Requires Armory access to open.
-ent-CrateSecuritySupplies = security supplies crate
- .desc = Contains various supplies for the station's Security team. Requires Security access to open.
-ent-CrateRestraints = restraints crate
- .desc = Contains two boxes each of handcuffs and zipties. Requires Security access to open.
-ent-CrateSecurityBiosuit = security bio suit crate
- .desc = Contains 2 biohazard suits to ensure that no disease will distract you from your duties. Requires Security access to open.
-ent-CrateSecurityTrackingMindshieldImplants = implanter crate
- .desc = Contains 4 MindShield implants and 4 tracking implant. Requires Security access to open.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl
deleted file mode 100644
index f87806a07c5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl
+++ /dev/null
@@ -1,31 +0,0 @@
-ent-CrateServiceJanitorialSupplies = janitorial supplies crate
- .desc = Fight back against dirt and grime with Nanotrasen's Janitorial Essentials(tm)! Contains three buckets, caution signs, and cleaner grenades. Also has a single mop, broom, spray cleaner, rag, and trash bag.
-ent-CrateServiceReplacementLights = replacement lights crate
- .desc = May the light of Aether shine upon this station! Or at least, the light of forty two light tubes and twenty one light bulbs.
-ent-CrateMousetrapBoxes = mousetraps crate
- .desc = Mousetraps, for when all of service is being haunted by an entire horde of rats. Use sparingly... or not.
-ent-CrateServiceSmokeables = smokeables crate
- .desc = Tired of a quick death on the station? Order this crate and chain-smoke your way to a coughy demise!
-ent-CrateServiceTheatre = theatrical performances crate
- .desc = Contains a moth cloak, barber scissors, maid uniform, clown and mime attributes, and other performance charms.
-ent-CrateServiceCustomSmokable = DIY smokeables crate
- .desc = Want to get a little creative with what you use to destroy your lungs? Then this crate is for you! Has everything you need to roll your own cigarettes.
-ent-CrateServiceBureaucracy = bureaucracy crate
- .desc = Several stacks of paper, a few pens and an office toy. What more could you ask for?
-ent-CrateServicePersonnel = personnel crate
- .desc = Contains a box of blank ID cards and PDAs.
-ent-CrateServiceBooks = books crate
- .desc = Contains 10 empty books of random appearance.
-ent-CrateServiceGuidebooks = guidebooks crate
- .desc = Contains guidebooks.
-ent-CrateServiceSodaDispenser = soda dispenser refill crate
- .desc = Contains refills for soda dispensers.
-ent-CrateServiceBoozeDispenser = booze dispenser refill crate
- .desc = Contains refills for booze dispensers.
-ent-CrateServiceBox = boxes crate
- .desc = Contains 6 empty multipurpose boxes.
-ent-CrateJanitorBiosuit = janitor bio suit crate
- .desc = Contains 2 biohazard suits to ensure that no disease will distract you from cleaning.
-ent-CrateTrashCartFilled = { ent-CrateTrashCart }
- .suffix = Filled
- .desc = { ent-CrateTrashCart.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/shuttle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/shuttle.ftl
deleted file mode 100644
index 555d1d06472..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/shuttle.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-CrateEngineeringThruster = thruster crate
- .desc = Contains a thruster flatpack.
-ent-CrateEngineeringGyroscope = gyroscope crate
- .desc = Contains a gyroscope flatpack.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/syndicate.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/syndicate.ftl
deleted file mode 100644
index fef1057442e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/syndicate.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-CrateSyndicateSurplusBundle = Syndicate surplus crate
- .desc = Contains 50 telecrystals worth of completely random Syndicate items. It can be useless junk or really good.
-ent-CrateCybersunJuggernautBundle = Cybersun juggernaut bundle
- .desc = Contains everything except a big gun to go postal.
- .suffix = Filled
-ent-CrateSyndicateSuperSurplusBundle = Syndicate super surplus crate
- .desc = Contains 125 telecrystals worth of completely random Syndicate items.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/vending.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/vending.ftl
deleted file mode 100644
index 887bb193a75..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/vending.ftl
+++ /dev/null
@@ -1,52 +0,0 @@
-ent-CrateVendingMachineRestockBoozeFilled = Booze-O-Mat restock crate
- .desc = Contains a restock box for the Booze-O-Mat.
-ent-CrateVendingMachineRestockChefvendFilled = ChefVend restock crate
- .desc = Contains a restock box for the ChefVend.
-ent-CrateVendingMachineRestockClothesFilled = clothing restock crate
- .desc = Contains a restock box for the clothes vending machines.
-ent-CrateVendingMachineRestockAutoDrobeFilled = AutoDrobe restock crate
- .desc = Contains a restock box for the AutoDrobe.
-ent-CrateVendingMachineRestockCondimentStationFilled = condiment station restock crate
- .desc = Contains a restock box for the condiment station.
-ent-CrateVendingMachineRestockDinnerwareFilled = Plasteel Chef restock crate
- .desc = Contains a restock box for the Plasteel Chef vending machine.
-ent-CrateVendingMachineRestockEngineeringFilled = EngiVend restock crate
- .desc = Contains a restock box for the EngiVend. Also supports the YouTool.
-ent-CrateVendingMachineRestockGamesFilled = Good Clean Fun restock crate
- .desc = Contains a restock box for the Good Clean Fun vending machine.
-ent-CrateVendingMachineRestockHotDrinksFilled = Solar's Best restock crate
- .desc = Contains two restock boxes for Solar's Best Hot Drinks vending machine.
-ent-CrateVendingMachineRestockMedicalFilled = NanoMed restock crate
- .desc = Contains a restock box, compatible with the NanoMed and NanoMedPlus.
-ent-CrateVendingMachineRestockChemVendFilled = ChemVend restock crate
- .desc = Contains a restock box for the ChemVend.
-ent-CrateVendingMachineRestockNutriMaxFilled = NutriMax restock crate
- .desc = Contains a restock box for the NutriMax vending machine.
-ent-CrateVendingMachineRestockPTechFilled = PTech restock crate
- .desc = Contains a restock box for the PTech bureaucracy dispenser.
-ent-CrateVendingMachineRestockRobustSoftdrinksFilled = Robust Softdrinks restock crate
- .desc = Contains two restock boxes for the Robust Softdrinks LLC vending machine.
-ent-CrateVendingMachineRestockSalvageEquipmentFilled = Salvage restock crate
- .desc = Contains a restock box for the salvage vendor.
-ent-CrateVendingMachineRestockSecTechFilled = SecTech restock crate
- .desc = Contains a restock box for the SecTech vending machine.
-ent-CrateVendingMachineRestockSeedsFilled = MegaSeed restock crate
- .desc = Contains a restock box for the MegaSeed vending machine.
-ent-CrateVendingMachineRestockSmokesFilled = ShadyCigs restock crate
- .desc = Contains two restock boxes for the ShadyCigs vending machine.
-ent-CrateVendingMachineRestockVendomatFilled = Vendomat restock crate
- .desc = Contains a restock box for a Vendomat vending machine.
-ent-CrateVendingMachineRestockRoboticsFilled = Robotech Deluxe restock crate
- .desc = Contains a restock box for a Robotech Deluxe vending machine.
-ent-CrateVendingMachineRestockTankDispenserFilled = tank dispenser restock crate
- .desc = Contains a restock box for an Engineering or Atmospherics tank dispenser.
-ent-CrateVendingMachineRestockHappyHonkFilled = Happy Honk restock crate
- .desc = Contains a restock box for a happy honk dispenser.
-ent-CrateVendingMachineRestockGetmoreChocolateCorpFilled = Getmore Chocolate Corp restock crate
- .desc = Contains a restock box for a Getmore Chocolate Corp dispenser.
-ent-CrateVendingMachineRestockChangFilled = Chang restock crate
- .desc = Contains a restock box for a Mr. Chang dispenser.
-ent-CrateVendingMachineRestockDiscountDansFilled = Discount Dans restock crate
- .desc = Contains a restock box for a Discount Dan's dispenser.
-ent-CrateVendingMachineRestockDonutFilled = Donut restock crate
- .desc = Contains a restock box for a Monkin' Donuts dispenser.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/firstaidkits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/firstaidkits.ftl
deleted file mode 100644
index ac0ede1dcda..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/firstaidkits.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-MedkitFilled = { ent-Medkit }
- .suffix = Filled
- .desc = { ent-Medkit.desc }
-ent-MedkitBurnFilled = { ent-MedkitBurn }
- .suffix = Filled
- .desc = { ent-MedkitBurn.desc }
-ent-MedkitBruteFilled = { ent-MedkitBrute }
- .suffix = Filled
- .desc = { ent-MedkitBrute.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/belt.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/belt.ftl
deleted file mode 100644
index 6320b28618f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/belt.ftl
+++ /dev/null
@@ -1,45 +0,0 @@
-ent-ClothingBeltUtilityFilled = { ent-ClothingBeltUtility }
- .suffix = Filled
- .desc = { ent-ClothingBeltUtility.desc }
-ent-ClothingBeltUtilityEngineering = { ent-ClothingBeltUtility }
- .suffix = Engineering
- .desc = { ent-ClothingBeltUtility.desc }
-ent-ClothingBeltChiefEngineerFilled = { ent-ClothingBeltChiefEngineer }
- .suffix = Filled
- .desc = { ent-ClothingBeltChiefEngineer.desc }
-ent-ClothingBeltSecurityFilled = { ent-ClothingBeltSecurity }
- .suffix = Filled
- .desc = { ent-ClothingBeltSecurity.desc }
-ent-ClothingBeltSecurityWebbingFilled = { ent-ClothingBeltSecurityWebbing }
- .suffix = Filled
- .desc = { ent-ClothingBeltSecurityWebbing.desc }
-ent-ClothingBeltJanitorFilled = { ent-ClothingBeltJanitor }
- .suffix = Filled
- .desc = { ent-ClothingBeltJanitor.desc }
-ent-ClothingBeltMedicalFilled = { ent-ClothingBeltMedical }
- .suffix = Filled
- .desc = { ent-ClothingBeltMedical.desc }
-ent-ClothingBeltMedicalEMTFilled = { ent-ClothingBeltMedicalEMT }
- .suffix = Paramedic,Filled
- .desc = { ent-ClothingBeltMedicalEMT.desc }
-ent-ClothingBeltPlantFilled = { ent-ClothingBeltPlant }
- .suffix = Filled
- .desc = { ent-ClothingBeltPlant.desc }
-ent-ClothingBeltSheathFilled = { ent-ClothingBeltSheath }
- .suffix = Filled
- .desc = { ent-ClothingBeltSheath.desc }
-ent-ClothingBeltMilitaryWebbingGrenadeFilled = grenadier chest rig
- .suffix = Filled
- .desc = { ent-ClothingBeltMilitaryWebbing.desc }
-ent-ClothingBeltMilitaryWebbingMedFilled = { ent-ClothingBeltMilitaryWebbingMed }
- .suffix = Filled
- .desc = { ent-ClothingBeltMilitaryWebbingMed.desc }
-ent-ClothingBeltWandFilled = { ent-ClothingBeltWand }
- .suffix = Filled
- .desc = { ent-ClothingBeltWand.desc }
-ent-ClothingBeltHolsterFilled = { ent-ClothingBeltHolster }
- .suffix = Filled
- .desc = { ent-ClothingBeltHolster.desc }
-ent-ClothingBeltChefFilled = { ent-ClothingBeltChef }
- .suffix = Filled
- .desc = { ent-ClothingBeltChef.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/briefcases.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/briefcases.ftl
deleted file mode 100644
index 74f47ccc4ac..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/briefcases.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BriefcaseBrownFilled = { ent-BriefcaseBrown }
- .suffix = Filled, Paper
- .desc = { ent-BriefcaseBrown.desc }
-ent-BriefcaseSyndieSniperBundleFilled = { ent-BriefcaseSyndie }
- .suffix = Syndicate, Sniper Bundle
- .desc = { ent-BriefcaseSyndie.desc }
-ent-BriefcaseSyndieLobbyingBundleFilled = { ent-BriefcaseSyndie }
- .suffix = Syndicate, Spesos
- .desc = { ent-BriefcaseSyndie.desc }
-ent-BriefcaseThiefBribingBundleFilled = { ent-BriefcaseSyndie }
- .suffix = Thief, Spesos
- .desc = { ent-BriefcaseSyndie.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/firstaidkits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/firstaidkits.ftl
deleted file mode 100644
index 6a21836ddb1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/firstaidkits.ftl
+++ /dev/null
@@ -1,27 +0,0 @@
-ent-MedkitFilled = { ent-Medkit }
- .suffix = Filled
- .desc = { ent-Medkit.desc }
-ent-MedkitBurnFilled = { ent-MedkitBurn }
- .suffix = Filled
- .desc = { ent-MedkitBurn.desc }
-ent-MedkitBruteFilled = { ent-MedkitBrute }
- .suffix = Filled
- .desc = { ent-MedkitBrute.desc }
-ent-MedkitToxinFilled = { ent-MedkitToxin }
- .suffix = Filled
- .desc = { ent-MedkitToxin.desc }
-ent-MedkitOxygenFilled = { ent-MedkitO2 }
- .suffix = Filled
- .desc = { ent-MedkitO2.desc }
-ent-MedkitRadiationFilled = { ent-MedkitRadiation }
- .suffix = Filled
- .desc = { ent-MedkitRadiation.desc }
-ent-MedkitAdvancedFilled = { ent-MedkitAdvanced }
- .suffix = Filled
- .desc = { ent-MedkitAdvanced.desc }
-ent-MedkitCombatFilled = { ent-MedkitCombat }
- .suffix = Filled
- .desc = { ent-MedkitCombat.desc }
-ent-StimkitFilled = { ent-Medkit }
- .suffix = Stimkit, Filled
- .desc = { ent-Medkit.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/gas_tanks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/gas_tanks.ftl
deleted file mode 100644
index 9b4e059906b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/gas_tanks.ftl
+++ /dev/null
@@ -1,36 +0,0 @@
-ent-OxygenTankFilled = { ent-OxygenTank }
- .suffix = Filled
- .desc = { ent-OxygenTank.desc }
-ent-EmergencyOxygenTankFilled = { ent-EmergencyOxygenTank }
- .suffix = Filled
- .desc = { ent-EmergencyOxygenTank.desc }
-ent-EmergencyNitrogenTankFilled = { ent-EmergencyNitrogenTank }
- .suffix = Filled
- .desc = { ent-EmergencyNitrogenTank.desc }
-ent-ExtendedEmergencyOxygenTankFilled = { ent-ExtendedEmergencyOxygenTank }
- .suffix = Filled
- .desc = { ent-ExtendedEmergencyOxygenTank.desc }
-ent-ExtendedEmergencyNitrogenTankFilled = { ent-ExtendedEmergencyNitrogenTank }
- .suffix = Filled
- .desc = { ent-ExtendedEmergencyNitrogenTank.desc }
-ent-DoubleEmergencyOxygenTankFilled = { ent-DoubleEmergencyOxygenTank }
- .suffix = Filled
- .desc = { ent-DoubleEmergencyOxygenTank.desc }
-ent-DoubleEmergencyNitrogenTankFilled = { ent-DoubleEmergencyNitrogenTank }
- .suffix = Filled
- .desc = { ent-DoubleEmergencyNitrogenTank.desc }
-ent-EmergencyFunnyOxygenTankFilled = { ent-EmergencyFunnyOxygenTank }
- .suffix = Filled
- .desc = { ent-EmergencyFunnyOxygenTank.desc }
-ent-AirTankFilled = { ent-AirTank }
- .suffix = Filled
- .desc = { ent-AirTank.desc }
-ent-NitrogenTankFilled = nitrogen tank
- .suffix = Filled
- .desc = { ent-NitrogenTank.desc }
-ent-NitrousOxideTankFilled = nitrous oxide tank
- .suffix = Filled
- .desc = { ent-NitrousOxideTank.desc }
-ent-PlasmaTankFilled = plasma tank
- .suffix = Filled
- .desc = { ent-PlasmaTank.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/misc.ftl
deleted file mode 100644
index e7e3f33a99b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/misc.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ClothingShoesBootsCombatFilled = { ent-ClothingShoesBootsCombat }
- .suffix = Filled
- .desc = { ent-ClothingShoesBootsCombat.desc }
-ent-ClothingShoesBootsMercFilled = { ent-ClothingShoesBootsMerc }
- .suffix = Filled
- .desc = { ent-ClothingShoesBootsMerc.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/toolboxes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/toolboxes.ftl
deleted file mode 100644
index 4537bc88ee3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/toolboxes.ftl
+++ /dev/null
@@ -1,21 +0,0 @@
-ent-ToolboxEmergencyFilled = emergency toolbox
- .suffix = Filled
- .desc = { ent-ToolboxEmergency.desc }
-ent-ToolboxElectricalFilled = electrical toolbox
- .suffix = Filled
- .desc = { ent-ToolboxElectrical.desc }
-ent-ToolboxElectricalTurretFilled = electrical toolbox
- .suffix = Syndicate, Turret, Filled
- .desc = { ent-ToolboxElectricalTurret.desc }
-ent-ToolboxArtisticFilled = artistic toolbox
- .suffix = Filled
- .desc = { ent-ToolboxArtistic.desc }
-ent-ToolboxMechanicalFilled = mechanical toolbox
- .suffix = Filled
- .desc = { ent-ToolboxMechanical.desc }
-ent-ToolboxSyndicateFilled = { ent-ToolboxSyndicate }
- .suffix = Filled
- .desc = { ent-ToolboxSyndicate.desc }
-ent-ToolboxGoldFilled = golden toolbox
- .suffix = Filled
- .desc = { ent-ToolboxGolden.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/biohazard.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/biohazard.ftl
deleted file mode 100644
index 1d387668dd0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/biohazard.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-ClosetL3Filled = { ent-ClosetL3 }
- .suffix = Filled, Generic
- .desc = { ent-ClosetL3.desc }
-ent-ClosetL3VirologyFilled = { ent-ClosetL3Virology }
- .suffix = Filled, Virology
- .desc = { ent-ClosetL3Virology.desc }
-ent-ClosetL3SecurityFilled = { ent-ClosetL3Security }
- .suffix = Filled, Security
- .desc = { ent-ClosetL3Security.desc }
-ent-ClosetL3JanitorFilled = { ent-ClosetL3Janitor }
- .suffix = Filled, Janitor
- .desc = { ent-ClosetL3Janitor.desc }
-ent-ClosetL3ScienceFilled = { ent-ClosetL3Virology }
- .suffix = Filled, Science
- .desc = { ent-ClosetL3Virology.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/cargo.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/cargo.ftl
deleted file mode 100644
index cddf2953c2f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/cargo.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-LockerSalvageSpecialistFilledHardsuit = { ent-LockerSalvageSpecialist }
- .suffix = Filled, Hardsuit
- .desc = { ent-LockerSalvageSpecialist.desc }
-ent-LockerSalvageSpecialistFilled = { ent-LockerSalvageSpecialist }
- .suffix = Filled
- .desc = { ent-LockerSalvageSpecialist.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/dressers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/dressers.ftl
deleted file mode 100644
index 72c573e1e99..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/dressers.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-DresserCaptainFilled = { ent-Dresser }
- .suffix = Filled, Captain
- .desc = { ent-Dresser.desc }
-ent-DresserChiefEngineerFilled = { ent-Dresser }
- .suffix = Filled, Chief Engineer
- .desc = { ent-Dresser.desc }
-ent-DresserChiefMedicalOfficerFilled = { ent-Dresser }
- .suffix = Filled, Chief Medical Officer
- .desc = { ent-Dresser.desc }
-ent-DresserHeadOfPersonnelFilled = { ent-Dresser }
- .suffix = Filled, Head Of Personnel
- .desc = { ent-Dresser.desc }
-ent-DresserHeadOfSecurityFilled = { ent-Dresser }
- .suffix = Filled, Head Of Security
- .desc = { ent-Dresser.desc }
-ent-DresserQuarterMasterFilled = { ent-Dresser }
- .suffix = Filled, Quarter Master
- .desc = { ent-Dresser.desc }
-ent-DresserResearchDirectorFilled = { ent-Dresser }
- .suffix = Filled, Research Director
- .desc = { ent-Dresser.desc }
-ent-DresserWardenFilled = { ent-Dresser }
- .suffix = Filled, Warden
- .desc = { ent-Dresser.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/engineer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/engineer.ftl
deleted file mode 100644
index cdc2ceb7ea9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/engineer.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-ClosetToolFilled = { ent-ClosetTool }
- .suffix = Filled
- .desc = { ent-ClosetTool.desc }
-ent-LockerElectricalSuppliesFilled = { ent-LockerElectricalSupplies }
- .suffix = Filled
- .desc = { ent-LockerElectricalSupplies.desc }
-ent-LockerWeldingSuppliesFilled = { ent-LockerWeldingSupplies }
- .suffix = Filled
- .desc = { ent-LockerWeldingSupplies.desc }
-ent-LockerAtmosphericsFilledHardsuit = { ent-LockerAtmospherics }
- .suffix = Filled, Hardsuit
- .desc = { ent-LockerAtmospherics.desc }
-ent-LockerAtmosphericsFilled = { ent-LockerAtmospherics }
- .suffix = Filled
- .desc = { ent-LockerAtmospherics.desc }
-ent-LockerEngineerFilledHardsuit = { ent-LockerEngineer }
- .suffix = Filled, Hardsuit
- .desc = { ent-LockerEngineer.desc }
-ent-LockerEngineerFilled = { ent-LockerEngineer }
- .suffix = Filled
- .desc = { ent-LockerEngineer.desc }
-ent-ClosetRadiationSuitFilled = { ent-ClosetRadiationSuit }
- .suffix = Filled
- .desc = { ent-ClosetRadiationSuit.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/heads.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/heads.ftl
deleted file mode 100644
index 7a9cded267d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/heads.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-LockerQuarterMasterFilled = { ent-LockerQuarterMaster }
- .suffix = Filled
- .desc = { ent-LockerQuarterMaster.desc }
-ent-LockerCaptainFilledHardsuit = { ent-LockerCaptain }
- .suffix = Filled, Hardsuit
- .desc = { ent-LockerCaptain.desc }
-ent-LockerCaptainFilled = { ent-LockerCaptain }
- .suffix = Filled, AntiqueLaser
- .desc = { ent-LockerCaptain.desc }
-ent-LockerCaptainFilledNoLaser = { ent-LockerCaptain }
- .suffix = Filled
- .desc = { ent-LockerCaptain.desc }
-ent-LockerHeadOfPersonnelFilled = { ent-LockerHeadOfPersonnel }
- .suffix = Filled
- .desc = { ent-LockerHeadOfPersonnel.desc }
-ent-LockerChiefEngineerFilledHardsuit = { ent-LockerChiefEngineer }
- .suffix = Filled, Hardsuit
- .desc = { ent-LockerChiefEngineer.desc }
-ent-LockerChiefEngineerFilled = { ent-LockerChiefEngineer }
- .suffix = Filled
- .desc = { ent-LockerChiefEngineer.desc }
-ent-LockerChiefMedicalOfficerFilledHardsuit = { ent-LockerChiefMedicalOfficer }
- .suffix = Filled, Hardsuit
- .desc = { ent-LockerChiefMedicalOfficer.desc }
-ent-LockerChiefMedicalOfficerFilled = { ent-LockerChiefMedicalOfficer }
- .suffix = Filled
- .desc = { ent-LockerChiefMedicalOfficer.desc }
-ent-LockerResearchDirectorFilledHardsuit = { ent-LockerResearchDirector }
- .suffix = Filled, Hardsuit
- .desc = { ent-LockerResearchDirector.desc }
-ent-LockerResearchDirectorFilled = { ent-LockerResearchDirector }
- .suffix = Filled
- .desc = { ent-LockerResearchDirector.desc }
-ent-LockerHeadOfSecurityFilledHardsuit = { ent-LockerHeadOfSecurity }
- .suffix = Filled, Hardsuit
- .desc = { ent-LockerHeadOfSecurity.desc }
-ent-LockerHeadOfSecurityFilled = { ent-LockerHeadOfSecurity }
- .suffix = Filled
- .desc = { ent-LockerHeadOfSecurity.desc }
-ent-LockerFreezerVaultFilled = { ent-LockerFreezerBase }
- .suffix = Vault, Locked
- .desc = { ent-LockerFreezerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/medical.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/medical.ftl
deleted file mode 100644
index 465e1d93f8d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/medical.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-LockerMedicineFilled = { ent-LockerMedicine }
- .suffix = Filled
- .desc = { ent-LockerMedicine.desc }
-ent-LockerWallMedicalFilled = medicine wall locker
- .suffix = Filled
- .desc = { ent-LockerWallMedical.desc }
-ent-LockerMedicalFilled = { ent-LockerMedical }
- .suffix = Filled
- .desc = { ent-LockerMedical.desc }
-ent-LockerWallMedicalDoctorFilled = medical doctor's wall locker
- .suffix = Filled
- .desc = { ent-LockerWallMedical.desc }
-ent-LockerChemistryFilled = { ent-LockerChemistry }
- .suffix = Filled
- .desc = { ent-LockerChemistry.desc }
-ent-LockerParamedicFilled = { ent-LockerParamedic }
- .suffix = Filled
- .desc = { ent-LockerParamedic.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/misc.ftl
deleted file mode 100644
index 0de3e0cadbd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/misc.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-LockerSyndicatePersonalFilled = { ent-LockerSyndicatePersonal }
- .suffix = Filled
- .desc = { ent-LockerSyndicatePersonal.desc }
-ent-ClosetEmergencyFilledRandom = { ent-ClosetEmergency }
- .suffix = Filled, Random
- .desc = { ent-ClosetEmergency.desc }
-ent-ClosetWallEmergencyFilledRandom = { ent-ClosetWallEmergency }
- .suffix = Filled, Random
- .desc = { ent-ClosetWallEmergency.desc }
-ent-ClosetEmergencyN2FilledRandom = { ent-ClosetEmergencyN2 }
- .suffix = Filled, Random
- .desc = { ent-ClosetEmergencyN2.desc }
-ent-ClosetFireFilled = { ent-ClosetFire }
- .suffix = Filled
- .desc = { ent-ClosetFire.desc }
-ent-ClosetWallFireFilledRandom = { ent-ClosetWallFire }
- .suffix = Filled
- .desc = { ent-ClosetWallFire.desc }
-ent-ClosetMaintenanceFilledRandom = { ent-ClosetMaintenance }
- .suffix = Filled, Random
- .desc = { ent-ClosetMaintenance.desc }
-ent-ClosetWallMaintenanceFilledRandom = { ent-ClosetWall }
- .suffix = Filled, Random
- .desc = { ent-ClosetWall.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/science.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/science.ftl
deleted file mode 100644
index d13d36e48de..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/science.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-LockerScienceFilled = { ent-LockerScientist }
- .suffix = Filled
- .desc = { ent-LockerScientist.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/security.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/security.ftl
deleted file mode 100644
index ab24d8e629c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/security.ftl
+++ /dev/null
@@ -1,35 +0,0 @@
-ent-LockerWardenFilledHardsuit = { ent-LockerWarden }
- .suffix = Filled, Hardsuit
- .desc = { ent-LockerWarden.desc }
-ent-LockerWardenFilled = { ent-LockerWarden }
- .suffix = Filled
- .desc = { ent-LockerWarden.desc }
-ent-LockerSecurityFilled = { ent-LockerSecurity }
- .suffix = Filled
- .desc = { ent-LockerSecurity.desc }
-ent-LockerBrigmedicFilled = { ent-LockerBrigmedic }
- .suffix = Brigmedic, Filled
- .desc = { ent-LockerBrigmedic.desc }
-ent-LockerDetectiveFilled = { ent-LockerDetective }
- .suffix = Filled
- .desc = { ent-LockerDetective.desc }
-ent-ClosetBombFilled = { ent-ClosetBomb }
- .suffix = Filled
- .desc = { ent-ClosetBomb.desc }
-ent-GunSafeDisabler = disabler safe
- .desc = { ent-GunSafe.desc }
-ent-GunSafePistolMk58 = mk58 safe
- .desc = { ent-GunSafe.desc }
-ent-GunSafeRifleLecter = lecter safe
- .desc = { ent-GunSafe.desc }
-ent-GunSafeSubMachineGunDrozd = drozd safe
- .desc = { ent-GunSafe.desc }
-ent-GunSafeShotgunEnforcer = enforcer safe
- .desc = { ent-GunSafe.desc }
-ent-GunSafeShotgunKammerer = kammerer safe
- .desc = { ent-GunSafe.desc }
-ent-GunSafeSubMachineGunWt550 = wt550 safe
- .suffix = Wt550
- .desc = { ent-GunSafe.desc }
-ent-GunSafeLaserCarbine = laser safe
- .desc = { ent-GunSafe.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/service.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/service.ftl
deleted file mode 100644
index 50ed6588baa..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/service.ftl
+++ /dev/null
@@ -1,21 +0,0 @@
-ent-LockerBoozeFilled = { ent-LockerBooze }
- .suffix = Filled
- .desc = { ent-LockerBooze.desc }
-ent-ClosetChefFilled = { ent-ClosetChef }
- .suffix = Filled
- .desc = { ent-ClosetChef.desc }
-ent-ClosetJanitorFilled = { ent-ClosetJanitor }
- .suffix = Filled
- .desc = { ent-ClosetJanitor.desc }
-ent-ClosetLegalFilled = { ent-ClosetLegal }
- .suffix = Filled
- .desc = { ent-ClosetLegal.desc }
-ent-LockerBotanistFilled = { ent-LockerBotanist }
- .suffix = Filled
- .desc = { ent-LockerBotanist.desc }
-ent-LockerBotanistLoot = { ent-LockerBotanist }
- .suffix = Loot
- .desc = { ent-LockerBotanist.desc }
-ent-ClosetJanitorBombFilled = { ent-ClosetJanitorBomb }
- .suffix = DO NOT MAP, Filled
- .desc = { ent-ClosetJanitorBomb.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/space_ruin.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/space_ruin.ftl
deleted file mode 100644
index fde48669cbc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/space_ruin.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-LockerOldAISat = closet
- .suffix = NTSRA voidsuit locker
- .desc = { ent-LockerSyndicate.desc }
-ent-LockerSyndicateShipGearBasic = { ent-LockerSyndicate }
- .suffix = Basic ship gear, Random
- .desc = { ent-LockerSyndicate.desc }
-ent-LockerSyndicateShipGearBasicChameleonKit = { ent-LockerSyndicateShipGearBasic }
- .suffix = Basic ship gear, Random, Chameleon Kit
- .desc = { ent-LockerSyndicateShipGearBasic.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/suit_storage.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/suit_storage.ftl
deleted file mode 100644
index 33f6df8295c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/suit_storage.ftl
+++ /dev/null
@@ -1,63 +0,0 @@
-ent-SuitStorageEVA = { ent-SuitStorageBase }
- .suffix = EVA
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageEVAAlternate = { ent-SuitStorageBase }
- .suffix = EVA, Large Helmet
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageEVAEmergency = { ent-SuitStorageBase }
- .suffix = Emergency EVA
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageEVAPrisoner = { ent-SuitStorageBase }
- .suffix = Prisoner EVA
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageEVASyndicate = { ent-SuitStorageBase }
- .suffix = Syndicate EVA
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageEVAPirate = { ent-SuitStorageBase }
- .suffix = Pirate EVA
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageNTSRA = { ent-SuitStorageBase }
- .suffix = Ancient EVA
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageBasic = { ent-SuitStorageBase }
- .suffix = Basic Hardsuit
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageEngi = { ent-SuitStorageBase }
- .suffix = Station Engineer
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageAtmos = { ent-SuitStorageBase }
- .suffix = Atmospheric Technician
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageSec = { ent-SuitStorageBase }
- .suffix = Security
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageCE = { ent-SuitStorageBase }
- .suffix = Chief Engineer
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageCMO = { ent-SuitStorageBase }
- .suffix = Chief Medical Officer
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageRD = { ent-SuitStorageBase }
- .suffix = Research Director
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageHOS = { ent-SuitStorageBase }
- .suffix = Head of Security
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageWarden = { ent-SuitStorageBase }
- .suffix = Warden
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageCaptain = { ent-SuitStorageBase }
- .suffix = Captain
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageSalv = { ent-SuitStorageBase }
- .suffix = Salvage
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageSyndie = { ent-SuitStorageBase }
- .suffix = Syndicate Hardsuit
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStoragePirateCap = { ent-SuitStorageBase }
- .suffix = Pirate Captain
- .desc = { ent-SuitStorageBase.desc }
-ent-SuitStorageWizard = { ent-SuitStorageBase }
- .suffix = Wizard
- .desc = { ent-SuitStorageBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/wardrobe_colors.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/wardrobe_colors.ftl
deleted file mode 100644
index 004c0a2ebb9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/wardrobe_colors.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-WardrobeGreyFilled = { ent-WardrobeGrey }
- .suffix = Filled
- .desc = { ent-WardrobeGrey.desc }
-ent-WardrobeMixedFilled = { ent-WardrobeMixed }
- .suffix = Filled
- .desc = { ent-WardrobeMixed.desc }
-ent-WardrobeYellowFilled = { ent-WardrobeYellow }
- .suffix = Filled
- .desc = { ent-WardrobeYellow.desc }
-ent-WardrobeWhiteFilled = { ent-WardrobeWhite }
- .suffix = Filled
- .desc = { ent-WardrobeWhite.desc }
-ent-WardrobeBlueFilled = { ent-WardrobeBlue }
- .suffix = Filled
- .desc = { ent-WardrobeBlue.desc }
-ent-WardrobePinkFilled = { ent-WardrobePink }
- .suffix = Filled
- .desc = { ent-WardrobePink.desc }
-ent-WardrobeBlackFilled = { ent-WardrobeBlack }
- .suffix = Filled
- .desc = { ent-WardrobeBlack.desc }
-ent-WardrobeGreenFilled = { ent-WardrobeGreen }
- .suffix = Filled
- .desc = { ent-WardrobeGreen.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/wardrobe_job.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/wardrobe_job.ftl
deleted file mode 100644
index d420903cee2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/lockers/wardrobe_job.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-WardrobePrisonFilled = { ent-WardrobePrison }
- .desc = Contains a selection of nice orange clothes for people enjoying their stay in the brig.
- .suffix = Filled
-ent-WardrobeRoboticsFilled = { ent-WardrobeRobotics }
- .desc = You can build a robot out of this locker.
- .suffix = Filled
-ent-WardrobeChemistryFilled = { ent-WardrobeChemistry }
- .desc = The sleek orange threads contained within make you much less likely to be thrown out of the chemistry lab.
- .suffix = Filled
-ent-WardrobeGeneticsFilled = { ent-WardrobeGenetics }
- .desc = The sleek blue threads contained within make you much less likely to be thrown out of the genetics lab.
- .suffix = Filled
-ent-WardrobeVirologyFilled = { ent-WardrobeVirology }
- .desc = The sleek green threads contained within make you much less likely to be thrown out of the virology lab.
- .suffix = Filled
-ent-WardrobeScienceFilled = { ent-WardrobeScience }
- .desc = You've read a couple pop science articles, now it's time for the real deal.
- .suffix = Filled
-ent-WardrobeBotanistFilled = { ent-WardrobeBotanist }
- .desc = Plant yourself among the plant men with these 100% natural plant-derived clothes.
- .suffix = Filled
-ent-WardrobeMedicalDoctorFilled = { ent-WardrobeMedicalDoctor }
- .desc = We've all played doctor before, now practice medicine.
- .suffix = Filled
-ent-WardrobeChapelFilled = { ent-WardrobeChapel }
- .desc = You have to look presentable for your flock.
- .suffix = Filled
-ent-WardrobeSecurityFilled = { ent-WardrobeSecurity }
- .desc = Cross the thin red line.
- .suffix = Filled
-ent-WardrobeCargoFilled = { ent-WardrobeCargo }
- .desc = This locker? Maybe 500 spesos. Brotherhood? Priceless.
- .suffix = Filled
-ent-WardrobeSalvageFilled = { ent-WardrobeSalvage }
- .suffix = Filled
- .desc = { ent-WardrobeSalvage.desc }
-ent-WardrobeAtmosphericsFilled = { ent-WardrobeAtmospherics }
- .desc = This locker contains a uniform for atmospheric technicians.
- .suffix = Filled
-ent-WardrobeEngineeringFilled = { ent-WardrobeEngineering }
- .desc = This locker contains a uniform for engineering or social engineering.
- .suffix = Filled
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/paper/manuals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/paper/manuals.ftl
deleted file mode 100644
index 12ee0ed3ae4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/paper/manuals.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-PaperWrittenAMEScribbles = { ent-Paper }
- .suffix = AME scribbles
- .desc = { ent-Paper.desc }
-ent-HoloparasiteInfo = holoparasite terms and conditions
- .desc = A tiny volumetric display for documents, makes one wonder if Cybersun's legal budget is way too high.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/paper/salvage_lore.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/paper/salvage_lore.ftl
deleted file mode 100644
index 2f87d87c92a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/paper/salvage_lore.ftl
+++ /dev/null
@@ -1,17 +0,0 @@
-ent-PaperWrittenSalvageLoreMedium1PlasmaTrap = { ent-Paper }
- .suffix = Salvage: Lore: Medium 1: Plasma Trap
- .desc = { ent-Paper.desc }
-ent-SalvageLorePaperGamingSpawner = Salvage Lore Paper Gaming Spawner
- .desc = { ent-MarkerBase.desc }
-ent-PaperWrittenSalvageLoreGaming1 = { ent-Paper }
- .suffix = Salvage: Lore: Gaming 1
- .desc = { ent-Paper.desc }
-ent-PaperWrittenSalvageLoreGaming2 = { ent-Paper }
- .suffix = Salvage: Lore: Gaming 2
- .desc = { ent-Paper.desc }
-ent-PaperWrittenSalvageLoreGaming3 = { ent-Paper }
- .suffix = Salvage: Lore: Gaming 3
- .desc = { ent-Paper.desc }
-ent-PaperWrittenSalvageLoreGaming4 = { ent-Paper }
- .suffix = Salvage: Lore: Gaming 4
- .desc = { ent-Paper.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/backpacks/startergear/backpack.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/backpacks/startergear/backpack.ftl
deleted file mode 100644
index 35508073687..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/backpacks/startergear/backpack.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingBackpackIAAFilled = { ent-ClothingBackpack }
- .desc = { ent-ClothingBackpack.desc }
-ent-ClothingBackpackPsychologistFilled = { ent-ClothingBackpackMedical }
- .desc = { ent-ClothingBackpackMedical.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/backpacks/startergear/duffelbag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/backpacks/startergear/duffelbag.ftl
deleted file mode 100644
index bf39d8f1258..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/backpacks/startergear/duffelbag.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingBackpackDuffelIAAFilled = { ent-ClothingBackpackDuffel }
- .desc = { ent-ClothingBackpackDuffel.desc }
-ent-ClothingBackpackDuffelPsychologistFilled = { ent-ClothingBackpackDuffelMedical }
- .desc = { ent-ClothingBackpackDuffelMedical.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/backpacks/startergear/satchel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/backpacks/startergear/satchel.ftl
deleted file mode 100644
index b8728031901..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/backpacks/startergear/satchel.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingBackpackSatchelIAAFilled = { ent-ClothingBackpackSatchel }
- .desc = { ent-ClothingBackpackSatchel.desc }
-ent-ClothingBackpackSatchelPsychologistFilled = { ent-ClothingBackpackSatchelMedical }
- .desc = { ent-ClothingBackpackSatchelMedical.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/books/busido.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/books/busido.ftl
deleted file mode 100644
index d5afbfa420d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/books/busido.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BookBusido = Busido. Selected chapters
- .desc = Handbook for samurai, weaboos, and armchair generals.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/books/rulebook.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/books/rulebook.ftl
deleted file mode 100644
index 7a200c78824..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/books/rulebook.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BookStationsAndAgents = Stations and Syndicates 14th Edition Rulebook
- .desc = A book detailing the ruleset for the tabletop RPG, Stations and Syndicates. You don't know what happened to the previous 13 editions but maybe its probably not worth looking for them.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/items/briefcases.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/items/briefcases.ftl
deleted file mode 100644
index f96e0c9b433..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/items/briefcases.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-BriefcaseIAAFilled = { ent-BriefcaseBrown }
- .suffix = IAA
- .desc = { ent-BriefcaseBrown.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/items/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/items/misc.ftl
deleted file mode 100644
index 2e5683eab43..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/items/misc.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingShoesBootsJackSecFilled = { ent-ClothingShoesBootsJackSec }
- .suffix = Filled
- .desc = { ent-ClothingShoesBootsJackSec.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/paper/document.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/paper/document.ftl
deleted file mode 100644
index bae7ece90df..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/paper/document.ftl
+++ /dev/null
@@ -1,128 +0,0 @@
-ent-PrintedDocument = { ent-Paper }
- .desc = Bureaucratic unit. A document printed on a printer.
-ent-PrintedDocumentReportStation = Report on the situation at the station
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentReportOnEliminationOfViolations = Report on elimination of violations
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentReporDepartment = Report on the work of the department
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentReportEmployeePerformance = Report on employee performance
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentReportOnTheChaptersMeeting = Report on chapter meeting
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentInternalAffairsAgentsReport = Internal Investigation Report
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentConditionReport = Report on technical condition
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentReportStudyObject = Report on object Investigation
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentExperimentReport = Experiment report
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentDisposalReport = Disposal report
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentApplicationAppointmentInterim = Statement of Appointment to the Temporary Acting Authority
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentApplicationEmployment = Statement of Employment
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentLetterResignation = Statement of Dismissal
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentApplicationAccess = Statement of access
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentApplicationEquipment = Statement for equipment
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentAppeal = Appeal
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentEvacuationShuttleRequest = Evacuation Shuttle Request
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentShuttleRegistrationRequest = Shuttle registration request
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentRequestCallMembersCentralCommitteeDSO = Request to call members of CC, DSO
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentRequestRequestToEstablishThreatLevel = Request to establish threat level
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentRequestChangeSalary = Request for salary change
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentRequestForNonlistedEmployment = Request for non-listed employment
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentRequestForPromotion = Request for promotion
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentRequestDocuments = Request for the provision of documents
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentRequestEuthanasia = Request for euthanasia
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentRequestConstructionWork = Request for construction works
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentRequestModernization = Request for modernization
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentComplaintViolationLaborRules = Complaint for violation of labor order
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentComplaintOffense = Complaint about an offense
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentPermissionEquipment = Authorization to use equipment
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentPermissionToTravelInCaseOfThreat = Permission to travel in case of threat
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentSearchPermission = Authorization to search
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentPermissionToCarryWeapons = Permission to carry weapons
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentPrescriptionDrugAuthorization = Prescription Drug Authorization
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentPermissionDisposeBody = Authorization to dispose of the body
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentConstructionPermit = Building permit
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentPermissionToExtendMarriage = Permission to extend marriage
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentOrderDismissal = Dismissal order
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentOrderDeprivationAccess = Denial of access order
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentOrderEncouragement = Incentive order
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentOrderParolePrisoner = Prisoner parole order
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentOrderRecognizingSentienceCreature = An order recognizing the reasonableness of the substance
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentOrderMedicalIntervention = Order for medical intervention
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentProductManufacturingOrder = Order for the production of a product
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentOrderPurchaseResourcesEquipment = Purchase order for resources, equipment
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentOrderingSpecialEquipment = Ordering special equipment
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentOrderPurchaseWeapons = Purchase order for armaments
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentCertificate = Certificate
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentCertificateAdvancedTraining = Certificate of advanced training
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentCertificateOffense = Certificate of Offense
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentDeathCertificate = Death certificate
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentMarriageCertificate = Marriage certificate
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentDivorceCertificate = Certificate of divorce
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentClosingIndictment = Indictment
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentSentence = Sentence
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentJudgment = Judgment
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentStatementHealth = Health report
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentDecisionToStartTrial = Decision to start a trial
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentErrorLoadingFormHeader = ERROR loading form header
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentNoticeOfLiquidation = NOTICE OF LIQUIDIZATION
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentBusinessDeal = BUSINESS DEAL
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentNoteBeginningMilitaryActions = NOTE BEGINNING MILITARY ACTIONS
- .desc = { ent-PrintedDocument.desc }
-ent-PrintedDocumentReportAccomplishmentGoals = REPORT ACCOMPLISHMENT GOALS
- .desc = { ent-PrintedDocument.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/back/backpacks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/back/backpacks.ftl
deleted file mode 100644
index 518eb7e8747..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/back/backpacks.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ClothingMilitaryBackpack = army backpack
- .desc = A spacious backpack with lots of pockets, worn by military structures.
-ent-ClothingDeathSquadronBackpack = death squadron backpack
- .desc = A spacious backpack using bluespace technology.
-ent-ClothingBackpackCE = chief engineer backpack
- .desc = Technicially progressive backpack.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/back/duffel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/back/duffel.ftl
deleted file mode 100644
index 64d929ae77e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/back/duffel.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingBackpackDuffelMilitary = army duffel bag
- .desc = A large duffel bag for holding any army goods.
-ent-ClothingBackpackDuffelCE = chief engineer duffel bag
- .desc = A large duffel bag for all instruments you need to create singularity.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/back/satchel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/back/satchel.ftl
deleted file mode 100644
index e3339053b97..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/back/satchel.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingBackpackMilitarySatchel = army satchel
- .desc = A tactical satchel for army related needs.
-ent-ClothingBackpackSatchelCE = chief engineer satchel
- .desc = A white satchel for best engineers.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/ears/headsets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/ears/headsets.ftl
deleted file mode 100644
index f7514d77023..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/ears/headsets.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingHeadsetIAA = iaa headset
- .desc = A headset for internal affairs agent to hear the captain's last words.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/eyes/glasses.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/eyes/glasses.ftl
deleted file mode 100644
index f9ac5f13134..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/eyes/glasses.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingEyesSalesman = colored glasses
- .desc = A pair of glasses with uniquely colored lenses. The frame is inscribed with 'Best Salesman 1997'.
-ent-ClothingEyesBinoclardLenses = binoclard lenses
- .desc = Shows you know how to sew a lapel and center a back vent.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/hands/gloves.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/hands/gloves.ftl
deleted file mode 100644
index ab2d197aa83..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/hands/gloves.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingHandsGlovesAerostatic = aerostatic gloves
- .desc = Breathable red gloves for expert handling of a pen and notebook.
-ent-ClothingHandsGlovesCentcomNaval = nanotrasen naval gloves
- .desc = A high quality pair of thick gloves covered in gold stitching, given to Nanotrasen's Naval Commanders.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/head/hardsuit-helmets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/head/hardsuit-helmets.ftl
deleted file mode 100644
index bc1e8336269..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/head/hardsuit-helmets.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingHeadHelmetCBURNLeader = cburn commander helmet
- .desc = A pressure resistant and fireproof hood worn by special cleanup units.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/head/hats.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/head/hats.ftl
deleted file mode 100644
index 8219305d79f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/head/hats.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-ClothingHeadCapCentcomBlack = special operations officer cap
- .desc = The NanoTrasen gold-engraved special cap of the higher ranks, which has long gone through more than one blitzkrieg...
-ent-ClothingHeadCapCentcomNaval = naval cap
- .desc = A cap worn by those in the Nanotrasen Navy.
-ent-ClothingHeadHatBeretCentcomNaval = naval beret
- .desc = A beret worn by those in the Nanotrasen Navy.
-ent-ClothingHeadHatERTLeaderBeret = leader beret
- .desc = A blue beret made of durathread with a genuine golden badge, denoting its owner as a Leader of ERT.
-ent-ClothingHeadHatCapHoS = head of security cap
- .desc = The robust standard-issue cap of the Head of Security. For showing the officers who's in charge.
-ent-ClothingHeadHatCapWardenAlt = warden's police hat
- .desc = It's a special blue hat issued to the Warden of a security force.
-ent-ClothingHeadHatBeretSecurityMedic = security medic beret
- .desc = A robust beret with the medical insignia emblazoned on it. Uses reinforced fabric to offer sufficient protection.
-ent-ClothingHeadCaptainHat = captain's hat
- .desc = A special hat made to order for the captain.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/head/helmets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/head/helmets.ftl
deleted file mode 100644
index 393f4f009b0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/head/helmets.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingHeadHelmetSecurityMedic = security medic helmet
- .desc = A standard issue combat helmet for security medics. Has decent tensile strength and armor. Keep your head down.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/cloaks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/cloaks.ftl
deleted file mode 100644
index 60362da2fc7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/cloaks.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingNeckCloakCentcomBlack = special operations officer cloak
- .desc = The NanoTrasen logo embroidered in gold speaks for itself.
-ent-ClothingNeckCloakCentcomAdmiral = admiral's cape
- .desc = A vibrant green cape with gold stitching, worn by Nanotrasen Navy Admirals.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/mantles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/mantles.ftl
deleted file mode 100644
index b96532efdf2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/mantles.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingNeckMantleERTLeader = ERT leader's mantle
- .desc = Extraordinary decorative drape over the shoulders.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl
deleted file mode 100644
index bda84f5cada..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-ClothingNeckUSSPPin = USSP pin
- .desc = The pin of United Soviet Socialist Planet.
-ent-ClothingNeckDonkPin = Donk pin
- .desc = The pin of corporation Donk Pocket.
-ent-ClothingNeckEarthPin = Earth pin
- .desc = The pin of United Earth Government.
-ent-ClothingNeckLogistikaPin = logistika pin
- .desc = The pin of corporation Kosmologistika.
-ent-ClothingNeckDeForestPin = DeForest pin
- .desc = The pin of corporation DeForest.
-ent-ClothingNeckNakamuraPin = Nakamura pin
- .desc = The pin of corporation Nakamura engineering.
-ent-ClothingNeckNanoTrasenPin = NanoTrasen pin
- .desc = The pin of corporation NanoTrasen.
-ent-ClothingNeckSyndicakePin = Syndicake pin
- .desc = The pin of Syndicakes, on backside have a little numbers "2559".
-ent-ClothingNeckVitezstviPin = Vitezstvi pin
- .desc = The pin of corporation Vitezstvi.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/ties.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/ties.ftl
deleted file mode 100644
index 1e4026f19a2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/ties.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingNeckHorrific = horrific necktie
- .desc = The necktie is adorned with a garish pattern. It's disturbingly vivid. Somehow you feel as if it would be wrong to ever take it off. It's your friend now. You will betray it if you change it for some boring scarf.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/armor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/armor.ftl
deleted file mode 100644
index 88a8e94ee3d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/armor.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingOuterArmorCentcomCarapace = naval carapace
- .desc = A carapace worn by Naval Command members.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/coats.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/coats.ftl
deleted file mode 100644
index 34f524a90d4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/coats.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-ClothingOuterCoatHoSGreatcoat = armored greatcoat
- .desc = A greatcoat enhanced with a special alloy for some extra protection and style for those with a commanding presence.
-ent-ClothingOuterCoatDetectiveDark = noir trenchcoat
- .desc = A hard-boiled private investigator's dark trenchcoat.
-ent-ClothingOuterCoatWardenAlt = warden's jacket
- .desc = A navy-blue armored jacket with blue shoulder designations and '/Warden/' stitched into one of the chest pockets.
-ent-ClothingOuterCoatSecurityOvercoat = security overcoat
- .desc = Lightly armored leather overcoat meant as casual wear for high-ranking officers. Bears the crest of Nanotrasen Security.
-ent-ClothingOuterCoatLabSecurityMedic = security medic labcoat
- .desc = A suit that protects against minor chemical spills.
-ent-ClothingOuterCoatCaptain = captain's jacket
- .desc = Captain's formal jacket, inlaid with gold.
-ent-ClothingOuterCoatHOP = head of personnel's jacket
- .desc = Business jacket of the HOP for a professional look.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/hardsuits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/hardsuits.ftl
deleted file mode 100644
index e3c84495352..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/hardsuits.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingOuterHardsuitCBURNLeader = CBURN commander exosuit
- .desc = A lightweight yet strong exosuit used for special cleanup operations.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/suits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/suits.ftl
deleted file mode 100644
index 4af949c22e1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/suits.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingOuterAerostaticBomberJacket = aerostatic bomber jacket
- .desc = A jacket once worn by the revolutionary air brigades during the Antecentennial Revolution. There are quite a few pockets on the inside, mostly for storing notebooks and compasses.
-ent-ClothingOuterDiscoAssBlazer = disco ass blazer
- .desc = Looks like someone skinned this blazer off some long extinct disco-animal. It has an enigmatic white rectangle on the back and the right sleeve.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/vests.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/vests.ftl
deleted file mode 100644
index a991aecde45..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/outerclothing/vests.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ClothingOuterVestArmorSec = armor vest
- .desc = A slim Type I armored vest that provides decent protection against most types of damage.
-ent-ClothingOuterVestArmorMedSec = security medic armor vest
- .desc = A security medic's armor vest, with little pockets for little things.
-ent-ClothingOuterVestSecurityMedic = security medic vest
- .desc = A lightweight vest worn by the Security Medic.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/shoes/boots.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/shoes/boots.ftl
deleted file mode 100644
index 7df66b3be60..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/shoes/boots.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingShoesBootsJackSec = { ent-ClothingShoesBootsJack }
- .desc = { ent-ClothingShoesBootsJack.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/shoes/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/shoes/specific.ftl
deleted file mode 100644
index 22b6a98dba5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/shoes/specific.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-ClothingShoesGreenLizardskin = green lizardskin shoes
- .desc = They may have lost some of their lustre over the years, but these green lizardskin shoes fit you perfectly.
-ent-ClothingShoesAerostatic = aerostatic boots
- .desc = A crisp, clean set of boots for working long hours on the beat.
-ent-ClothingShoesCentcomBlack = special operations officer shoes
- .desc = Leather, black, high-quality shoes, you can hardly find similar ones on the black market...
-ent-ClothingShoesSchoolBlack = school black shoes
- .desc = Stylish and comfortable school shoes in dark color with stockings.
-ent-ClothingShoesSchoolWhite = school white shoes
- .desc = Stylish and comfortable school shoes in light color with stockings.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/uniforms/jumpskirts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/uniforms/jumpskirts.ftl
deleted file mode 100644
index c653258b2aa..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/uniforms/jumpskirts.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-ClothingUniformJumpskirtCentcomOfficial = CentCom officer's suitskirt
- .desc = It's a suitskirt worn by CentCom's highest-tier Commanders.
-ent-ClothingUniformJumpskirtCentcomOfficer = CentCom turtleneck skirt
- .desc = A skirt version of the CentCom turtleneck, rarer and more sought after than the original.
-ent-ClothingUniformJumpskirtElegantMaid = elegant maid uniform
- .desc = Call me master and bring me some beer.
-ent-ClothingUniformColorJumpskirtRainbow = rainbow jumpskirt
- .desc = A multi-colored jumpskirt!
-ent-ClothingUniformJumpskirtPsychologist = psychologist suitskirt
- .desc = I don't lose things. I place things in locations which later elude me.
-ent-ClothingUniformJumpskirtSchool = school skirt
- .desc = Stylish and comfortable school skirt.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/uniforms/jumpsuits.ftl
deleted file mode 100644
index 1e9c0ab5d20..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/uniforms/jumpsuits.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-ClothingUniformJumpsuitSuperstarCop = superstar cop uniform
- .desc = Flare cut trousers and a dirty shirt that might have been classy before someone took a piss in the armpits. It's the dress of a superstar.
-ent-ClothingUniformJumpsuitAerostatic = aerostatic suit
- .desc = A crisp and well-pressed suit; professional, comfortable and curiously authoritative.
-ent-ClothingUniformJumpsuitCentcomOfficerBlack = special operations officer uniform
- .desc = Special Operations Officer uniform, nothing like that. Although... If you have time to read this, it's too late...
-ent-ClothingUniformJumpsuitCentcomAdmiral = admiral's uniform
- .desc = A uniform worn by those with the rank Admiral in the Nanotrasen Navy.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/effects/portal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/effects/portal.ftl
deleted file mode 100644
index e065e70db91..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/effects/portal.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PortalGate = { ent-BasePortal }
- .desc = { ent-BasePortal.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/markers/spawners/jobs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/markers/spawners/jobs.ftl
deleted file mode 100644
index 2e3c02c9f6d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/markers/spawners/jobs.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SpawnPointPilot = pilot
- .desc = { ent-SpawnPointJobBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/markers/spawners/mobs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/markers/spawners/mobs.ftl
deleted file mode 100644
index 344282df8c3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/markers/spawners/mobs.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SpawnMobGorillaLargo = Gorilla Largo Spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/mobs/npcs/pets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/mobs/npcs/pets.ftl
deleted file mode 100644
index 0779a117551..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/mobs/npcs/pets.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MobGorillaLargo = Largo
- .desc = Cargo's pet, participated in the first revolution. He seems to have an 'I love Mom' tattoo.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/books/hyperlinkbooks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/books/hyperlinkbooks.ftl
deleted file mode 100644
index c5a274e288b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/books/hyperlinkbooks.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseHyperLinkBook = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-HyperLinkBookCorporateLaw = corporate law
- .desc = A book of complicated laws for shitsec on station.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/drinks/drinks.ftl
deleted file mode 100644
index 39e4ba3e9ec..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/drinks/drinks.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-DrinkAlexanderGlass = { ent-DrinkGlass }
- .suffix = alexander
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBadTouchGlass = { ent-DrinkGlass }
- .suffix = bad touch
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBoyarskyGlass = { ent-DrinkGlass }
- .suffix = boyarsky
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBrambleGlass = { ent-DrinkGlass }
- .suffix = bramble
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkDaiquiriGlass = { ent-DrinkGlass }
- .suffix = daiquiri
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkDarkAndStormyGlass = { ent-DrinkGlass }
- .suffix = dark and stormy
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkEspressoMartiniGlass = { ent-DrinkGlass }
- .suffix = espresso martini
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkKvassGlass = { ent-DrinkGlassBase }
- .suffix = kvass
- .desc = { ent-DrinkGlassBase.desc }
-ent-DrinkMaiTaiGlass = { ent-DrinkGlass }
- .suffix = mai tai
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkMoscowMuleGlass = { ent-DrinkGlass }
- .suffix = moscow mule
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkNegroniGlass = { ent-DrinkGlass }
- .suffix = negroni
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkOldFashionedGlass = { ent-DrinkGlass }
- .suffix = old fashioned
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkPalomaGlass = { ent-DrinkGlass }
- .suffix = paloma
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkYorshGlass = { ent-DrinkGlass }
- .suffix = yorsh
- .desc = { ent-DrinkGlass.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/drinks/drinks_bottles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/drinks/drinks_bottles.ftl
deleted file mode 100644
index 822c75e78e4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/drinks/drinks_bottles.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-DrinkCampariBottleFull = campari bottle
- .desc = Tincture based on aromatic herbs and citrus fruits. Non-GMO!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/food/baked/vulpkanin.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/food/baked/vulpkanin.ftl
deleted file mode 100644
index 6955802b335..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/food/baked/vulpkanin.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FoodBakedVulpkaninPlate = baked vulpkanin
- .desc = You can still see bits of fur on the surface of the dish..
\ No newline at end of file
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/food/soup.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/food/soup.ftl
deleted file mode 100644
index 1f64b86e88d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/consumable/food/soup.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FoodPelmeniBowl = pelmeni
- .desc = Lots of meat, little dough.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/devices/circuitboards/machine/production.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/devices/circuitboards/machine/production.ftl
deleted file mode 100644
index e94a195736a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/devices/circuitboards/machine/production.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PrinterDocMachineCircuitboard = document printer machine board
- .desc = A machine printed circuit board for an document printer
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/devices/encryption_keys.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/devices/encryption_keys.ftl
deleted file mode 100644
index ee8fce3b28c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/devices/encryption_keys.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-EncryptionKeyIAA = iaa encryption key
- .desc = An encryption key used by the most meticulous person.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/devices/pda.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/devices/pda.ftl
deleted file mode 100644
index c2a49ab3c1c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/devices/pda.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-IAAPDA = internal affairs agent PDA
- .desc = Corporation and profit are best friends.
-ent-PilotPDA = pilot PDA
- .desc = Нas protection from cosmic radiation.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/materials/sheets/other.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/materials/sheets/other.ftl
deleted file mode 100644
index 479c0028672..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/materials/sheets/other.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-SheetPrinter = { ent-Paper }
- .suffix = Full
- .desc = { ent-Paper.desc }
-ent-SheetPrinter1 = { ent-SheetPrinter }
- .suffix = Single
- .desc = { ent-SheetPrinter.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/flatpacks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/flatpacks.ftl
deleted file mode 100644
index e7498aae3e4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/flatpacks.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PrinterDocFlatpack = document printer flatpack
- .desc = A flatpack used for constructing a document printer.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/identification_cards.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/identification_cards.ftl
deleted file mode 100644
index ae63e9c1c6e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/identification_cards.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-IAAIDCard = internal affairs agent ID card
- .desc = { ent-IDCardStandard.desc }
-ent-PilotIDCard = pilot ID card
- .desc = { ent-IDCardStandard.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/paper.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/paper.ftl
deleted file mode 100644
index e07620b95fc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/paper.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-StationGoalPaper = station goal centcomm message
- .desc = It looks like you have a lot of work to do.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/rubber_stamp.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/rubber_stamp.ftl
deleted file mode 100644
index 61ffa9811a8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/rubber_stamp.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-RubberStampIAA = internal affairs agent's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampPsychologist = psychologist's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/stamps.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/stamps.ftl
deleted file mode 100644
index 61ffa9811a8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/stamps.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-RubberStampIAA = internal affairs agent's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampPsychologist = psychologist's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/stations/nanotrasen.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/stations/nanotrasen.ftl
deleted file mode 100644
index d8c955afd85..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/stations/nanotrasen.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-NanotrasenStationNoArrivals = { ent-BaseStation }
- .desc = { ent-BaseStation.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/furniture/chairs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/furniture/chairs.ftl
deleted file mode 100644
index 4a5ea13904a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/furniture/chairs.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ChairCarp = carp chair
- .desc = A luxurious chair, the many purple scales reflect the light in a most pleasing manner.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/furniture/potted_plants.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/furniture/potted_plants.ftl
deleted file mode 100644
index 62c79439945..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/furniture/potted_plants.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-PottedPlantAlt0 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlantAlt1 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlantAlt2 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlantAlt3 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlantAlt4 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlantAlt5 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlantAlt6 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlantAlt7 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlantAlt8 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/machines/computers/computers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/machines/computers/computers.ftl
deleted file mode 100644
index 870f94c9791..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/machines/computers/computers.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CentcomComputerComms = centcom communications computer
- .desc = { ent-ComputerComms.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/machines/printer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/machines/printer.ftl
deleted file mode 100644
index c3102510d14..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/machines/printer.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PrinterDoc = document printer
- .desc = Bureaucratic perfection. Stores a database of all Nanotrasen documents, and lets you print them as long as you have paper.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/storage/tanks/tanks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/storage/tanks/tanks.ftl
deleted file mode 100644
index 55ee372fc8e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/storage/tanks/tanks.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-KvassTank = { ent-StorageTank }
- .suffix = Empty
- .desc = { ent-StorageTank.desc }
-ent-KvassTankFull = { ent-KvassTank }
- .suffix = Full
- .desc = { ent-KvassTank.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/wallmounts/signs/bar_sign.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/wallmounts/signs/bar_sign.ftl
deleted file mode 100644
index 3f19813573a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/structures/wallmounts/signs/bar_sign.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BarSignAlcoholic = Pour and that's it
- .desc = Pour it on, that's all. Hard times have come...
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/markers/spawners/ert.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/markers/spawners/ert.ftl
deleted file mode 100644
index 7ef7305526b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/markers/spawners/ert.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-BaseERTSpawner = one-time signal ERT spawner
- .desc = { ent-MarkerBase.desc }
-ent-ERTSpawnerLeader = { ent-BaseERTSpawner }
- .suffix = Leader
- .desc = { ent-BaseERTSpawner.desc }
-ent-ERTSpawnerJanitor = { ent-BaseERTSpawner }
- .suffix = Janitor
- .desc = { ent-BaseERTSpawner.desc }
-ent-ERTSpawnerEngineering = { ent-BaseERTSpawner }
- .suffix = Engineering
- .desc = { ent-BaseERTSpawner.desc }
-ent-ERTSpawnerSrcurity = { ent-BaseERTSpawner }
- .suffix = Security
- .desc = { ent-BaseERTSpawner.desc }
-ent-ERTSpawnerMedical = { ent-BaseERTSpawner }
- .suffix = Medical
- .desc = { ent-BaseERTSpawner.desc }
-ent-ERTSpawnerCBURN = one-time signal CBURN spawner
- .desc = { ent-BaseERTSpawner.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/objectives/eviltwin.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/objectives/eviltwin.ftl
deleted file mode 100644
index 7971764cd75..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/objectives/eviltwin.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-EscapeShuttleTwinObjective = Escape to centcom alive and unrestrained.
- .desc = Continue your covert implementation already on Centcom.
-ent-KillTwinObjective = Kill original persona.
- .desc = Kill your original persona and take his place.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/objectives/traitorObjectives.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/objectives/traitorObjectives.ftl
deleted file mode 100644
index 8b713e17e82..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/objectives/traitorObjectives.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-HijackShuttleObjective = Hijack emergency shuttle
- .desc = Leave on the shuttle free and clear of the loyal Nanotrasen crew on board. Use ANY methods available to you. Syndicate agents, Nanotrasen enemies, and handcuffed hostages may remain alive on the shuttle. Ignore assistance from anyone other than a support agent.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/reagents/meta/consumable/drink/alcohol.ftl
deleted file mode 100644
index 87665c05867..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/reagents/meta/consumable/drink/alcohol.ftl
+++ /dev/null
@@ -1,41 +0,0 @@
-reagent-name-yorsh = yorsh
-reagent-desc-yorsh = Taste of childhood.
-
-reagent-name-alexander = alexander
-reagent-desc-alexander = No Alexander was harmed during production. Maybe...
-
-reagent-name-daiquiri = daiquiri
-reagent-desc-daiquiri = Do you want to feel like a 19th century miner? The miner did not want to, and tried to forget himself in alcohol.
-
-reagent-name-campari = campari
-reagent-desc-campari = Tincture based on aromatic herbs and citrus fruits. Non-GMO!
-
-reagent-name-negroni = negroni
-reagent-desc-negroni = Americano for alcoholics.
-
-reagent-name-espressoMartini = espresso martini
-reagent-desc-espressoMartini = Wake me up, then fu... Uh-h.. Okay, just wake me up.
-
-reagent-name-oldFashioned = old fashioned
-reagent-desc-oldFashioned = As the greatest classic said: “This is a classic”.
-
-reagent-name-badTouch = bad touch
-reagent-desc-badTouch = We're nothing but mammals after all.
-
-reagent-name-darkAndStormy = dark and stormy
-reagent-desc-darkAndStormy = Straight from Bermuda! The pirate on the left says that this is why the drink disappears.
-
-reagent-name-bramble = bramble
-reagent-desc-bramble = Berries, gin, and a rather creepy look.
-
-reagent-name-maiTai = mai tai
-reagent-desc-maiTai = The first person who tried this cocktail exclaimed: ”Mai tai — roa ae!”. What does it mean in Thai... I don't know. Sounds cool!
-
-reagent-name-moscowMule = moscow mule
-reagent-desc-moscowMule = Cocktail from the USA. Why Moscow? Because vodka. Moscow vodka? No. So why Moscow? VODKA!
-
-reagent-name-paloma = paloma
-reagent-desc-paloma = Cowboys on top. Maracas on bottom. Hard choice...
-
-reagent-name-boyarsky = boyarsky
-reagent-desc-boyarsky = What to do if you are tired of life? MIX VODKA!
\ No newline at end of file
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor.ftl
deleted file mode 100644
index 7ded3ecb02c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor.ftl
+++ /dev/null
@@ -1,53 +0,0 @@
-ent-ClothingOuterAtmosianBomberJacket = atmosian bomber jacket
- .desc = A thick, well-worn atmosian leather bomber jacket.
- .suffix = Sponsor
-ent-ClothingMaskGasAtmosian = atmosian gas mask
- .desc = Improved gas mask utilized by atmospheric technicians. It's flameproof!
- .suffix = Sponsor
-ent-ClothingCloakAtmosian = atmosian's cloak
- .desc = The cloak of a legendary Atmosian.
- .suffix = Sponsor
-ent-ClothingMaskSkull = skull mask
- .desc = Spooky skull mask.
- .suffix = Sponsor
-ent-ClothingCloakGamer = legendary gamer's cloak
- .desc = Worn by the most skilled professional gamers.
- .suffix = Sponsor
-ent-ClothingUniformJumpsuitSkeleton = skeleton jumpsuit
- .desc = A black jumpsuit with a white bone pattern printed on it. Spooky!
- .suffix = Sponsor
-ent-ClothingBackpackSatchelHoS = head of security's satchel
- .desc = Stylish, leather black satchel
- .suffix = Sponsor
-ent-ClothingBeltHoS = leather security belt
- .desc = Stylish, leather black belt
- .suffix = Sponsor
-ent-ClothingHandsGlovesLeatherHoS = leather gloves
- .desc = Stylish, black leather gloves
- .suffix = Sponsor
-ent-ClothingHeadHatCapLeatherHoS = leather head of security's cap
- .desc = Pretty old stuff for these times, bringing back old memories...
- .suffix = Sponsor
-ent-ClothingOuterCoatHoSOvercoat = armored overcoat
- .desc = Pretty old stuff for these times, bringing back old memories...
- .suffix = Sponsor
-ent-ClothingUniformJumpsuitHoSOld = old head of security's jumpsuit
- .desc = Pretty old stuff for these times, bringing back old memories...
- .suffix = Sponsor
-ent-ClothingHandsWatchDivine = divine watches
- .desc = This watch can only be worn by a divine person
-ent-ClothingHandsGlovesLeatherUSSPBlack = old ussp leather gloves
- .desc = Black leather gloves from USSP
- .suffix = Sponsor
-ent-ClothingHeadHatCapUSSPBlack = old ussp leather cap
- .desc = Pretty old stuff from USSP
- .suffix = Sponsor
-ent-ClothingOuterCoatUSSPOvercoatBlack = old ussp armored overcoat
- .desc = Pretty old stuff from USSP
- .suffix = Sponsor
-ent-ClothingUniformJumpsuitUSSPBlack = old ussp jumpsuit
- .desc = Pretty old stuff from USSP
- .suffix = Sponsor
-ent-ClothingShoesUSSPBlack = old ussp boots
- .desc = Pretty old stuff from USSP
- .suffix = Sponsor
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/back/satchel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/back/satchel.ftl
deleted file mode 100644
index 0561e6090a9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/back/satchel.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingBackpackSatchelHoS = head of security's satchel
- .desc = Stylish, leather black satchel
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/belt/belts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/belt/belts.ftl
deleted file mode 100644
index 25c75c99baf..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/belt/belts.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingBeltHoS = leather security belt
- .desc = Stylish, leather black belt
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/hands/gloves.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/hands/gloves.ftl
deleted file mode 100644
index ce046f8a4f6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/hands/gloves.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingHandsGlovesLeatherHoS = leather gloves
- .desc = Stylish, black leather gloves
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/head/hats.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/head/hats.ftl
deleted file mode 100644
index 836fcf520a4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/head/hats.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingHeadHatCapHoS = leather head of security's cap
- .desc = Pretty old stuff for these times, bringing back old memories...
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/outerclothing/coats.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/outerclothing/coats.ftl
deleted file mode 100644
index ac1cfe8fa3f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/outerclothing/coats.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingOuterCoatHoSOvercoat = armored overcoat
- .desc = Pretty old stuff for these times, bringing back old memories...
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/uniforms/jumpsuit/jumpsuits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/uniforms/jumpsuit/jumpsuits.ftl
deleted file mode 100644
index 35e16e8a604..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/sponsor/nekish/entities/clothing/uniforms/jumpsuit/jumpsuits.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingUniformJumpsuitHoSOld = old head of security's jumpsuit
- .desc = Pretty old stuff for these times, bringing back old memories...
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl
deleted file mode 100644
index 3f860796fc8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl
+++ /dev/null
@@ -1,69 +0,0 @@
-ent-ClothingBackpack = backpack
- .desc = You wear this on your back and put items into it.
-ent-ClothingBackpackClown = giggles von honkerton
- .desc = It's a backpack made by Honk! Co.
-ent-ClothingBackpackIan = Ian's backpack
- .desc = Sometimes he wears it.
-ent-ClothingBackpackSecurity = security backpack
- .desc = It's a very robust backpack.
-ent-ClothingBackpackBrigmedic = brigmedic backpack
- .desc = It's a very sterile backpack.
-ent-ClothingBackpackEngineering = engineering backpack
- .desc = It's a tough backpack for the daily grind of station life.
-ent-ClothingBackpackAtmospherics = atmospherics backpack
- .desc = It's a backpack made of fire resistant fibers. Smells like plasma.
-ent-ClothingBackpackMedical = medical backpack
- .desc = It's a backpack especially designed for use in a sterile environment.
-ent-ClothingBackpackCaptain = captain's backpack
- .desc = It's a special backpack made exclusively for Nanotrasen officers.
-ent-ClothingBackpackMime = mime backpack
- .desc = A silent backpack made for those silent workers. Silence Co.
-ent-ClothingBackpackChemistry = chemistry backpack
- .desc = A backpack specially designed to repel stains and hazardous liquids.
-ent-ClothingBackpackHydroponics = hydroponics backpack
- .desc = It's a backpack made of all-natural fibers.
-ent-ClothingBackpackScience = science backpack
- .desc = A backpack specially designed to repel stains and hazardous liquids.
-ent-ClothingBackpackVirology = virology backpack
- .desc = A backpack made of hypo-allergenic fibers. It's designed to help prevent the spread of disease. Smells like monkey.
-ent-ClothingBackpackGenetics = genetics backpack
- .desc = A backpack designed to be super tough, just in case someone hulks out on you.
-ent-ClothingBackpackCargo = cargo backpack
- .desc = A robust backpack for stealing cargo's loot.
-ent-ClothingBackpackSalvage = salvage bag
- .desc = A robust backpack for stashing your loot.
-ent-ClothingBackpackMerc = merc bag
- .desc = A backpack that has been in many dangerous places, a reliable combat backpack.
-ent-ClothingBackpackERTLeader = ERT leader backpack
- .desc = A spacious backpack with lots of pockets, worn by the Commander of an Emergency Response Team.
-ent-ClothingBackpackERTSecurity = ERT security backpack
- .desc = A spacious backpack with lots of pockets, worn by Security Officers of an Emergency Response Team.
-ent-ClothingBackpackERTMedical = ERT medical backpack
- .desc = A spacious backpack with lots of pockets, worn by Medical Officers of an Emergency Response Team.
-ent-ClothingBackpackERTEngineer = ERT engineer backpack
- .desc = A spacious backpack with lots of pockets, worn by Engineers of an Emergency Response Team.
-ent-ClothingBackpackERTJanitor = ERT janitor backpack
- .desc = A spacious backpack with lots of pockets, worn by Janitors of an Emergency Response Team.
-ent-ClothingBackpackERTClown = ERT clown backpack
- .desc = A spacious backpack with lots of pockets, worn by Clowns of an Emergency Response Team.
-ent-ClothingBackpackERTChaplain = ERT chaplain backpack
- .desc = A spacious backpack with lots of pockets, worn by Chaplains of an Emergency Response Team.
-ent-ClothingBackpackSyndicate = syndicate backpack
- .desc = { ent-ClothingBackpack.desc }
-ent-ClothingBackpackHolding = bag of holding
- .desc = A backpack that opens into a localized pocket of bluespace.
-ent-ClothingBackpackCluwne = jiggles von jonkerton
- .desc = It's a backpack made by Jonk! Co.
- .suffix = Unremoveable
-ent-ClothingBackpackDebug = wackpack
- .desc = What the fuck is this?
- .suffix = Debug
-ent-ClothingBackpackDebug2 = big wackpack
- .desc = What the fuck is this?
- .suffix = Debug
-ent-ClothingBackpackDebug3 = gay wackpack
- .desc = What the fuck is this?
- .suffix = Debug
-ent-ClothingBackpackDebug4 = offset wackpack
- .desc = What the fuck is this?
- .suffix = Debug
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/duffel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/duffel.ftl
deleted file mode 100644
index b8328cff320..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/duffel.ftl
+++ /dev/null
@@ -1,48 +0,0 @@
-ent-ClothingBackpackDuffel = duffel bag
- .desc = A large duffel bag for holding extra things.
-ent-ClothingBackpackDuffelEngineering = engineering duffel bag
- .desc = A large duffel bag for holding extra tools and supplies.
-ent-ClothingBackpackDuffelAtmospherics = atmospherics duffel bag
- .desc = A large duffel bag made of fire resistant fibers. Smells like plasma.
-ent-ClothingBackpackDuffelMedical = medical duffel bag
- .desc = A large duffel bag for holding extra medical supplies.
-ent-ClothingBackpackDuffelCaptain = captain's duffel bag
- .desc = A large duffel bag for holding extra captainly goods.
-ent-ClothingBackpackDuffelClown = clown duffel bag
- .desc = A large duffel bag for holding extra honk goods.
-ent-ClothingBackpackDuffelSecurity = security duffel bag
- .desc = A large duffel bag for holding extra security related goods.
-ent-ClothingBackpackDuffelBrigmedic = brigmedic duffel bag
- .desc = A large duffel bag for holding extra medical related goods.
-ent-ClothingBackpackDuffelChemistry = chemistry duffel bag
- .desc = A large duffel bag for holding extra beakers and test tubes.
-ent-ClothingBackpackDuffelVirology = virology duffel bag
- .desc = A large duffel bag made of hypo-allergenic fibers. It's designed to help prevent the spread of disease. Smells like monkey.
-ent-ClothingBackpackDuffelGenetics = genetics duffel bag
- .desc = A large duffel bag for holding extra genetic mutations.
-ent-ClothingBackpackDuffelMime = mime duffel bag
- .desc = A large duffel bag for holding... mime... stuff.
-ent-ClothingBackpackDuffelScience = science duffel bag
- .desc = A large duffel bag for holding extra science related goods.
-ent-ClothingBackpackDuffelHydroponics = hydroponics duffel bag
- .desc = A large duffel bag for holding extra gardening tools.
-ent-ClothingBackpackDuffelCargo = cargo duffel bag
- .desc = A large duffel bag for stealing cargo's precious loot.
-ent-ClothingBackpackDuffelSalvage = salvage duffel bag
- .desc = A large duffel bag for holding extra exotic treasures.
-ent-ClothingBackpackDuffelSyndicate = syndicate duffel bag
- .desc = A large duffel bag for holding various traitor goods.
-ent-ClothingBackpackDuffelSyndicateBundle = { ent-ClothingBackpackDuffelSyndicate }
- .desc = { ent-ClothingBackpackDuffelSyndicate.desc }
-ent-ClothingBackpackDuffelSyndicateAmmo = syndicate duffel bag
- .desc = { ent-ClothingBackpackDuffelSyndicate.desc }
-ent-ClothingBackpackDuffelSyndicateAmmoBundle = { ent-ClothingBackpackDuffelSyndicateAmmo }
- .desc = { ent-ClothingBackpackDuffelSyndicateAmmo.desc }
-ent-ClothingBackpackDuffelSyndicateMedical = syndicate duffel bag
- .desc = { ent-ClothingBackpackDuffelSyndicate.desc }
-ent-ClothingBackpackDuffelSyndicateMedicalBundle = { ent-ClothingBackpackDuffelSyndicateMedical }
- .desc = { ent-ClothingBackpackDuffelSyndicateMedical.desc }
-ent-ClothingBackpackDuffelHolding = duffelbag of holding
- .desc = A duffelbag that opens into a localized pocket of bluespace.
-ent-ClothingBackpackDuffelCBURN = CBURN duffel bag
- .desc = A duffel bag containing a variety of biological containment equipment.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/satchel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/satchel.ftl
deleted file mode 100644
index 66ffa14bf6d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/satchel.ftl
+++ /dev/null
@@ -1,36 +0,0 @@
-ent-ClothingBackpackSatchel = satchel
- .desc = A trendy looking satchel.
-ent-ClothingBackpackSatchelLeather = leather satchel
- .desc = A trend-setting satchel from a bygone era.
-ent-ClothingBackpackSatchelEngineering = engineering satchel
- .desc = A tough satchel with extra pockets.
-ent-ClothingBackpackSatchelAtmospherics = atmospherics satchel
- .desc = A tough satchel made of fire resistant fibers. Smells like plasma.
-ent-ClothingBackpackSatchelClown = clown satchel
- .desc = For fast running from security.
-ent-ClothingBackpackSatchelMime = mime satchel
- .desc = A satchel designed for the silent and expressive art of miming.
-ent-ClothingBackpackSatchelMedical = medical satchel
- .desc = A sterile satchel used in medical departments.
-ent-ClothingBackpackSatchelChemistry = chemistry satchel
- .desc = A sterile satchel with chemist colours.
-ent-ClothingBackpackSatchelVirology = virology satchel
- .desc = A satchel made of hypo-allergenic fibers. It's designed to help prevent the spread of disease. Smells like monkey.
-ent-ClothingBackpackSatchelGenetics = genetics satchel
- .desc = A sterile satchel with geneticist colours.
-ent-ClothingBackpackSatchelScience = science satchel
- .desc = Useful for holding research materials.
-ent-ClothingBackpackSatchelSecurity = security satchel
- .desc = A robust satchel for security related needs.
-ent-ClothingBackpackSatchelBrigmedic = brigmedic satchel
- .desc = A sterile satchel for medical related needs.
-ent-ClothingBackpackSatchelCaptain = captain's satchel
- .desc = An exclusive satchel for Nanotrasen officers.
-ent-ClothingBackpackSatchelHydroponics = hydroponics satchel
- .desc = A satchel made of all natural fibers.
-ent-ClothingBackpackSatchelCargo = cargo satchel
- .desc = A robust satchel for stealing cargo's loot.
-ent-ClothingBackpackSatchelSalvage = salvage satchel
- .desc = A robust satchel for stashing your loot.
-ent-ClothingBackpackSatchelHolding = satchel of holding
- .desc = A satchel that opens into a localized pocket of bluespace.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/specific.ftl
deleted file mode 100644
index ec1fcfa3805..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/back/specific.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-ClothingBackpackChameleon = backpack
- .desc = You wear this on your back and put items into it.
- .suffix = Chameleon
-ent-ClothingBackpackWaterTank = backpack water tank
- .desc = Holds a large amount of fluids. Supplies to spray nozzles in your hands.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/base_clothing.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/base_clothing.ftl
deleted file mode 100644
index 799e24a559f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/base_clothing.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-Clothing = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-GeigerCounterClothing = { "" }
- .desc = { "" }
-ent-AllowSuitStorageClothing = { "" }
- .desc = { "" }
-ent-ClothingSlotBase = { "" }
- .desc = { "" }
-ent-ContentsExplosionResistanceBase = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/base_clothingbelt.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/base_clothingbelt.ftl
deleted file mode 100644
index c1f1e91ae32..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/base_clothingbelt.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ClothingBeltBase = { ent-Clothing }
- .desc = { ent-Clothing.desc }
-ent-ClothingBeltStorageBase = { ent-ClothingBeltBase }
- .desc = { ent-ClothingBeltBase.desc }
-ent-ClothingBeltAmmoProviderBase = { ent-ClothingBeltBase }
- .desc = { ent-ClothingBeltBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/belts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/belts.ftl
deleted file mode 100644
index 890e2da94d0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/belts.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-ClothingBeltUtility = utility belt
- .desc = Can hold various things.
-ent-ClothingBeltChiefEngineer = chief engineer's toolbelt
- .desc = Holds tools, looks snazzy.
-ent-ClothingBeltAssault = assault belt
- .desc = A tactical assault belt.
-ent-ClothingBeltJanitor = janibelt
- .desc = A belt used to hold most janitorial supplies.
-ent-ClothingBeltMedical = medical belt
- .desc = Can hold various medical equipment.
-ent-ClothingBeltMedicalEMT = EMT belt
- .desc = Perfect for holding various equipment for medical emergencies.
-ent-ClothingBeltPlant = botanical belt
- .desc = A belt used to hold most hydroponics supplies. Suprisingly, not green.
-ent-ClothingBeltChef = chef belt
- .desc = A belt used to hold kitchen knives and condiments for quick access.
-ent-ClothingBeltSecurity = security belt
- .desc = Can hold security gear like handcuffs and flashes.
-ent-ClothingBeltSheath = sabre sheath
- .desc = An ornate sheath designed to hold an officer's blade.
-ent-ClothingBeltBandolier = bandolier
- .desc = A bandolier for holding shotgun ammunition.
-ent-ClothingBeltChampion = championship belt
- .desc = Proves to the world that you are the strongest!
-ent-ClothingBeltHolster = shoulder holster
- .desc = A holster to carry a handgun and ammo. WARNING: Badasses only.
-ent-ClothingBeltSyndieHolster = syndicate shoulder holster
- .desc = A deep shoulder holster capable of holding many types of ballistics.
-ent-ClothingBeltSecurityWebbing = security webbing
- .desc = Unique and versatile chest rig, can hold security gear.
-ent-ClothingBeltMercWebbing = mercenary webbing
- .desc = Ideal for storing everything from ammo to weapons and combat essentials.
-ent-ClothingBeltSalvageWebbing = salvage rig
- .desc = Universal unloading system for work in space.
-ent-ClothingBeltMilitaryWebbing = chest rig
- .desc = A set of tactical webbing worn by Syndicate boarding parties.
-ent-ClothingBeltMilitaryWebbingMed = medical chest rig
- .desc = A set of tactical webbing worn by Gorlex Marauder medic operatives.
-ent-ClothingBeltSuspenders = suspenders
- .desc = For holding your pants up.
-ent-ClothingBeltWand = wand belt
- .desc = A belt designed to hold various rods of power. A veritable fanny pack of exotic magic.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/quiver.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/quiver.ftl
deleted file mode 100644
index 291c12000ee..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/quiver.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingBeltQuiver = quiver
- .desc = Can hold up to 15 arrows, and fits snug around your waist.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/waist_bags.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/waist_bags.ftl
deleted file mode 100644
index 6cf01139e2f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/belt/waist_bags.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingBeltStorageWaistbag = leather waist bag
- .desc = A leather waist bag meant for carrying small items.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl
deleted file mode 100644
index 82b906fc48a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl
+++ /dev/null
@@ -1,38 +0,0 @@
-ent-ClothingHeadset = headset
- .desc = An updated, modular intercom that fits over the head. Takes encryption keys.
-ent-ClothingHeadsetGrey = passenger headset
- .desc = { ent-ClothingHeadset.desc }
-ent-ClothingHeadsetCargo = cargo headset
- .desc = A headset used by supply employees.
-ent-ClothingHeadsetMining = mining headset
- .desc = Headset used by shaft miners.
-ent-ClothingHeadsetQM = qm headset
- .desc = A headset used by the quartermaster.
-ent-ClothingHeadsetCentCom = CentCom headset
- .desc = A headset used by the upper echelons of Nanotrasen.
-ent-ClothingHeadsetCommand = command headset
- .desc = A headset with a commanding channel.
-ent-ClothingHeadsetEngineering = engineering headset
- .desc = A headset for engineers to chat while the station burns around them.
-ent-ClothingHeadsetCE = ce headset
- .desc = A headset for the chief engineer to ignore all emergency calls on.
-ent-ClothingHeadsetMedical = medical headset
- .desc = A headset for the trained staff of the medbay.
-ent-ClothingHeadsetCMO = cmo headset
- .desc = A headset used by the CMO.
-ent-ClothingHeadsetScience = science headset
- .desc = A sciency headset. Like usual.
-ent-ClothingHeadsetMedicalScience = medical research headset
- .desc = A headset that is a result of the mating between medical and science.
-ent-ClothingHeadsetRobotics = robotics headset
- .desc = Made specifically for the roboticists, who cannot decide between departments.
-ent-ClothingHeadsetRD = rd headset
- .desc = Lamarr used to love chewing on this...
-ent-ClothingHeadsetSecurity = security headset
- .desc = This is used by your elite security force.
-ent-ClothingHeadsetBrigmedic = brigmedic headset
- .desc = A headset that helps to hear the death cries.
-ent-ClothingHeadsetService = service headset
- .desc = Headset used by the service staff, tasked with keeping the station full, happy and clean.
-ent-ClothingHeadsetFreelance = freelancer headset
- .desc = This is used by a roaming group of freelancers
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl
deleted file mode 100644
index 15208f60eae..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl
+++ /dev/null
@@ -1,23 +0,0 @@
-ent-ClothingHeadsetAlt = headset
- .desc = An updated, modular intercom that fits over the head. Takes encryption keys.
-ent-ClothingHeadsetAltCargo = quartermaster's over-ear headset
- .desc = { ent-ClothingHeadsetAlt.desc }
-ent-ClothingHeadsetAltCentCom = CentCom over-ear headset
- .desc = { ent-ClothingHeadsetAlt.desc }
-ent-ClothingHeadsetAltCentComFake = { ent-ClothingHeadsetAltCentCom }
- .suffix = Fake
- .desc = { ent-ClothingHeadsetAltCentCom.desc }
-ent-ClothingHeadsetAltCommand = command over-ear headset
- .desc = { ent-ClothingHeadsetAlt.desc }
-ent-ClothingHeadsetAltEngineering = chief engineer's over-ear headset
- .desc = { ent-ClothingHeadsetAlt.desc }
-ent-ClothingHeadsetAltMedical = chief medical officer's over-ear headset
- .desc = { ent-ClothingHeadsetAlt.desc }
-ent-ClothingHeadsetAltSecurity = head of security's over-ear headset
- .desc = { ent-ClothingHeadsetAlt.desc }
-ent-ClothingHeadsetAltScience = research director's over-ear headset
- .desc = { ent-ClothingHeadsetAlt.desc }
-ent-ClothingHeadsetAltSyndicate = blood-red over-ear headset
- .desc = An updated, modular syndicate intercom that fits over the head and takes encryption keys (there are 5 key slots.).
-ent-ClothingHeadsetAltFreelancer = freelancer's over-ear headset
- .desc = { ent-ClothingHeadsetAlt.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/specific.ftl
deleted file mode 100644
index ce08fd9b702..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/specific.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingHeadsetChameleon = passenger headset
- .desc = An updated, modular intercom that fits over the head. Takes encryption keys.
- .suffix = Chameleon
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl
deleted file mode 100644
index 35521191276..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingEyesBase = { ent-Clothing }
- .desc = { ent-Clothing.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl
deleted file mode 100644
index 374604b7c70..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl
+++ /dev/null
@@ -1,30 +0,0 @@
-ent-ClothingEyesGlassesGar = gar glasses
- .desc = Go beyond impossible and kick reason to the curb!
-ent-ClothingEyesGlassesGarOrange = orange gar glasses
- .desc = Just who the hell do you think I am?!
-ent-ClothingEyesGlassesGarGiga = giga gar glasses
- .desc = We evolve past the person we were a minute before. Little by little we advance with each turn. That's how a drill works!
-ent-ClothingEyesGlassesMeson = engineering goggles
- .desc = Green-tinted goggles using a proprietary polymer that provides protection from eye damage of all types.
-ent-ClothingEyesGlasses = glasses
- .desc = A pair of spectacular spectacles with prescription lenses.
-ent-ClothingEyesGlassesJensen = jensen glasses
- .desc = A pair of yellow tinted folding glasses. You never asked for these.
-ent-ClothingEyesGlassesJamjar = jamjar glasses
- .desc = Also known as Virginity Protectors.
-ent-ClothingEyesGlassesOutlawGlasses = outlaw glasses
- .desc = A must for every self-respecting undercover agent.
-ent-ClothingEyesGlassesCheapSunglasses = cheap sunglasses
- .desc = A pair of black sunglasses. Doesn't block light well, more of an accessory than something useful.
-ent-ClothingEyesGlassesSunglasses = sun glasses
- .desc = A pair of black sunglasses.
-ent-ClothingEyesGlassesSecurity = security glasses
- .desc = Upgraded sunglasses that provide flash immunity and a security HUD.
-ent-ClothingEyesGlassesMercenary = mercenary glasses
- .desc = Glasses made for combat, to protect the eyes from bright blinding flashes.
-ent-ClothingEyesGlassesThermal = optical thermal scanner
- .desc = Thermals in the shape of glasses.
-ent-ClothingEyesGlassesChemical = chemical analysis goggles
- .desc = Goggles that can scan the chemical composition of a solution.
-ent-ClothingEyesVisorNinja = ninja visor
- .desc = An advanced visor protecting a ninja's eyes from flashing lights.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl
deleted file mode 100644
index d02771e980e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl
+++ /dev/null
@@ -1,41 +0,0 @@
-ent-ShowSecurityIcons = { "" }
- .desc = { "" }
-ent-ShowMedicalIcons = { "" }
- .desc = { "" }
-ent-ClothingEyesHudDiagnostic = diagnostic hud
- .desc = A heads-up display capable of analyzing the integrity and status of robotics and exosuits. Made out of see-borg-ium.
-ent-ClothingEyesHudMedical = medical hud
- .desc = A heads-up display that scans the humanoids in view and provides accurate data about their health status.
-ent-ClothingEyesHudSecurity = security hud
- .desc = A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records.
-ent-ClothingEyesHudBeer = beer goggles
- .desc = A pair of sunHud outfitted with apparatus to scan reagents, as well as providing an innate understanding of liquid viscosity while in motion.
-ent-ClothingEyesHudFriedOnion = fried onion goggles
- .desc = Filler
-ent-ClothingEyesHudOnionBeer = thungerst goggles
- .desc = Filler
-ent-ClothingEyesHudMedOnion = medonion hud
- .desc = Filler
-ent-ClothingEyesHudMedOnionBeer = medthungerst hud
- .desc = Filler
-ent-ClothingEyesHudMedSec = medsec hud
- .desc = An eye display that looks like a mixture of medical and security huds.
-ent-ClothingEyesHudMultiversal = multiversal hud
- .desc = Filler
-ent-ClothingEyesHudOmni = omni hud
- .desc = Filler
-ent-ClothingEyesHudSyndicate = syndicate visor
- .desc = The syndicate's professional head-up display, designed for better detection of humanoids and their subsequent elimination.
-ent-ClothingEyesHudSyndicateAgent = syndicate agent visor
- .desc = The Syndicate Agent's professional heads-up display, designed for quick diagnosis of their team's status.
-ent-ClothingEyesGlassesHiddenSecurity = { ent-ClothingEyesGlassesSunglasses }
- .suffix = Syndicate
- .desc = { ent-ClothingEyesGlassesSunglasses.desc }
-ent-ClothingEyesEyepatchHudMedical = medical hud eyepatch
- .desc = A heads-up display that scans the humanoids in view and provides accurate data about their health status. For true patriots.
-ent-ClothingEyesEyepatchHudSecurity = security hud eyepatch
- .desc = A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. For true patriots.
-ent-ClothingEyesEyepatchHudBeer = beer hud eyepatch
- .desc = A pair of sunHud outfitted with apparatus to scan reagents, as well as providing an innate understanding of liquid viscosity while in motion. For true patriots.
-ent-ClothingEyesEyepatchHudDiag = diagnostic hud eyepatch
- .desc = A heads-up display capable of analyzing the integrity and status of robotics and exosuits. Made out of see-borg-ium.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl
deleted file mode 100644
index 74e51836c24..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingEyesEyepatch = eyepatch
- .desc = Yarr.
-ent-ClothingEyesBlindfold = blindfold
- .desc = The bind leading the blind.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/specific.ftl
deleted file mode 100644
index fc361f00d3d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/specific.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingEyesChameleon = sun glasses
- .desc = Useful both for security and cargonia.
- .suffix = Chameleon
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/base_clothinghands.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/base_clothinghands.ftl
deleted file mode 100644
index 1b4b6767bb7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/base_clothinghands.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ClothingHandsBase = { ent-Clothing }
- .desc = { ent-Clothing.desc }
-ent-ClothingHandsButcherable = { ent-ClothingHandsBase }
- .desc = { ent-ClothingHandsBase.desc }
-ent-ClothingHandsGlovesSyntheticBase = { ent-ClothingHandsButcherable }
- .desc = { ent-ClothingHandsButcherable.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/colored.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/colored.ftl
deleted file mode 100644
index e75d8745ad7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/colored.ftl
+++ /dev/null
@@ -1,27 +0,0 @@
-ent-ClothingHandsGlovesColorPurple = purple gloves
- .desc = Regular purple gloves that do not keep you from frying.
-ent-ClothingHandsGlovesColorRed = red gloves
- .desc = Regular red gloves that do not keep you from frying.
-ent-ClothingHandsGlovesColorBlue = blue gloves
- .desc = Regular blue gloves that do not keep you from frying.
-ent-ClothingHandsGlovesColorBrown = brown gloves
- .desc = Regular brown gloves that do not keep you from frying.
-ent-ClothingHandsGlovesColorGray = grey gloves
- .desc = Regular grey gloves that do not keep you from frying.
-ent-ClothingHandsGlovesColorGreen = green gloves
- .desc = Regular green gloves that do not keep you from frying.
-ent-ClothingHandsGlovesColorLightBrown = light brown gloves
- .desc = Regular light brown gloves that do not keep you from frying.
-ent-ClothingHandsGlovesColorOrange = orange gloves
- .desc = Regular orange gloves that do not keep you from frying.
-ent-ClothingHandsGlovesColorWhite = white gloves
- .desc = Regular white gloves that do not keep you from frying.
-ent-ClothingHandsGlovesColorBlack = black gloves
- .desc = Regular black gloves that do not keep you from frying.
-ent-ClothingHandsGlovesColorYellow = insulated gloves
- .desc = These gloves will protect the wearer from electric shocks.
-ent-ClothingHandsGlovesColorYellowBudget = budget insulated gloves
- .desc = These gloves are cheap knockoffs of the coveted ones - no way this can end badly.
-ent-ClothingHandsGlovesConducting = { ent-ClothingHandsGlovesColorYellow }
- .suffix = Conducting
- .desc = { ent-ClothingHandsGlovesColorYellow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl
deleted file mode 100644
index 4ca1aa63670..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl
+++ /dev/null
@@ -1,51 +0,0 @@
-ent-ClothingHandsGlovesBoxingRed = red boxing gloves
- .desc = Red gloves for competitive boxing.
-ent-ClothingHandsGlovesBoxingBlue = blue boxing gloves
- .desc = Blue gloves for competitive boxing.
-ent-ClothingHandsGlovesBoxingGreen = green boxing gloves
- .desc = Green gloves for competitive boxing.
-ent-ClothingHandsGlovesBoxingYellow = yellow boxing gloves
- .desc = Yellow gloves for competitive boxing.
-ent-ClothingHandsGlovesBoxingRigged = { ent-ClothingHandsGlovesBoxingBlue }
- .suffix = Rigged
- .desc = { ent-ClothingHandsGlovesBoxingBlue.desc }
-ent-ClothingHandsGlovesCaptain = captain gloves
- .desc = Regal blue gloves, with a nice gold trim. Swanky.
-ent-ClothingHandsGlovesHop = papercut-proof gloves
- .desc = Perfect for dealing with paperwork and matters with bureaucracy.
-ent-ClothingHandsGlovesLatex = latex gloves
- .desc = Thin sterile latex gloves. Basic PPE for any doctor.
-ent-ClothingHandsGlovesNitrile = nitrile gloves
- .desc = High-quality nitrile gloves. Expensive medical PPE.
-ent-ClothingHandsGlovesLeather = botanist's leather gloves
- .desc = These leather gloves protect against thorns, barbs, prickles, spikes and other harmful objects of floral origin. They're also quite warm.
-ent-ClothingHandsGlovesPowerglove = power gloves
- .desc = Now I'm playin' with power! Wait... they're turned off.
-ent-ClothingHandsGlovesRobohands = robohands gloves
- .desc = Beep boop borp!
-ent-ClothingHandsGlovesSpaceNinja = space ninja gloves
- .desc = These black nano-enhanced gloves insulate from electricity and provide fire resistance.
-ent-ClothingHandsGlovesCombat = combat gloves
- .desc = These tactical gloves are fireproof and shock resistant.
-ent-ClothingHandsTacticalMaidGloves = tactical maid gloves
- .desc = Tactical maid gloves, every self-respecting maid should be able to discreetly eliminate her goals.
-ent-ClothingHandsMercGlovesCombat = mercenary combat gloves
- .desc = High-quality combat gloves to protect hands from mechanical damage during combat.
-ent-ClothingHandsGlovesFingerless = fingerless gloves
- .desc = Plain black gloves without fingertips for the hard working.
-ent-ClothingHandsGlovesFingerlessInsulated = fingerless insulated gloves
- .desc = Insulated gloves resistant to shocks, or at least they used to.
-ent-ClothingHandsGlovesMercFingerless = mercenary fingerless gloves
- .desc = Gloves that may not protect you from finger burns, but will make you cooler.
-ent-ThievingGloves = { ent-ClothingHandsGlovesColorBlack }
- .suffix = Thieving
- .desc = { ent-ClothingHandsGlovesColorBlack.desc }
-ent-ClothingHandsGlovesCluwne = cluwne hands
- .desc = A cursed pair of cluwne hands.
- .suffix = Unremoveable
-ent-ClothingHandsGlovesNorthStar = gloves of the north star
- .desc = These gloves allow you to punch incredibly fast.
-ent-ClothingHandsGlovesForensic = forensic gloves
- .desc = Do not leave fibers or fingerprints. If you work without them, you're A TERRIBLE DETECTIVE.
-ent-ClothingHandsGlovesJanitor = rubber gloves
- .desc = High-quality rubber gloves, squeaky to do some cleaning!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/specific.ftl
deleted file mode 100644
index 951ac5c9d7b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/specific.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ClothingHandsChameleon = black gloves
- .desc = Regular black gloves that do not keep you from frying.
- .suffix = Chameleon
-ent-ClothingHandsChameleonThief = { ent-ClothingHandsChameleon }
- .suffix = Chameleon, Thieving
- .desc = { ent-ClothingHandsChameleon.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/animals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/animals.ftl
deleted file mode 100644
index 0e778137cb2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/animals.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-ClothingHeadHatAnimalCat = grey cat hat
- .desc = A cute and fluffy head of a grey cat.
-ent-ClothingHeadHatAnimalCatBrown = brown cat hat
- .desc = A cute and fluffy head of a brown cat.
-ent-ClothingHeadHatAnimalCatBlack = black cat hat
- .desc = A cute and fluffy head of a black cat.
-ent-ClothingHeadHatAnimalHeadslime = headslime hat
- .desc = A green, sticky headslime, you put it on your head.
-ent-ClothingHeadHatAnimalMonkey = monkey hat
- .desc = That's a monkey head. It has a hole on a mouth to eat bananas.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl
deleted file mode 100644
index 4761ec38edc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-ClothingHeadBandBase = { ent-ClothingHeadBaseButcherable }
- .desc = { ent-ClothingHeadBaseButcherable.desc }
-ent-ClothingHeadBandBlack = black bandana
- .desc = A black bandana to make you look cool.
-ent-ClothingHeadBandBlue = blue bandana
- .desc = A blue bandana to make you look cool.
-ent-ClothingHeadBandBotany = botany bandana
- .desc = A botany bandana to make you look cool, made from natural fibers.
-ent-ClothingHeadBandGold = gold bandana
- .desc = A gold bandana to make you look cool.
-ent-ClothingHeadBandGreen = green bandana
- .desc = A green bandana to make you look cool.
-ent-ClothingHeadBandGrey = grey bandana
- .desc = A grey bandana to make you look cool.
-ent-ClothingHeadBandRed = red bandana
- .desc = A red bandana to make you look cool.
-ent-ClothingHeadBandSkull = skull bandana
- .desc = A bandana with a skull to make you look even cooler.
-ent-ClothingHeadBandMerc = mercenary bandana
- .desc = To protect the head from the sun, insects and other dangers of the higher path.
-ent-ClothingHeadBandBrown = brown bandana
- .desc = A brown bandana to make you look cool.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/base_clothinghead.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/base_clothinghead.ftl
deleted file mode 100644
index dee86a7c19f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/base_clothinghead.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-ClothingHeadBase = { ent-Clothing }
- .desc = { ent-Clothing.desc }
-ent-ClothingHeadBaseButcherable = { ent-ClothingHeadBase }
- .desc = { ent-ClothingHeadBase.desc }
-ent-HatBase = { ent-Clothing }
- .desc = { ent-Clothing.desc }
-ent-ClothingHeadLightBase = base helmet with light
- .desc = { ent-ClothingHeadBase.desc }
-ent-ClothingHeadEVAHelmetBase = base space helmet
- .desc = { ent-ClothingHeadBase.desc }
-ent-ClothingHeadHardsuitBase = base hardsuit helmet
- .desc = { "" }
-ent-ClothingHeadHardsuitWithLightBase = base hardsuit helmet with light
- .desc = { ent-ClothingHeadHardsuitBase.desc }
-ent-ClothingHeadHatHoodWinterBase = base winter coat hood
- .desc = A hood, made to keep your head warm.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl
deleted file mode 100644
index b318060aca8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-ClothingHeadHelmetEVA = EVA helmet
- .desc = An old-but-gold helmet designed for extravehicular activites. Infamous for making security officers paranoid.
-ent-ClothingHeadHelmetEVALarge = EVA helmet
- .desc = An old-but-gold helmet designed for extravehicular activites.
-ent-ClothingHeadHelmetSyndicate = syndicate EVA helmet
- .desc = A simple, stylish EVA helmet. Designed for maximum humble space-badassery.
-ent-ClothingHeadHelmetCosmonaut = cosmonaut helmet
- .desc = Ancient design, but advanced manufacturing.
-ent-ClothingHeadHelmetVoidParamed = paramedic void helmet
- .desc = A void helmet made for paramedics.
-ent-ClothingHeadHelmetAncient = NTSRA void helmet
- .desc = An ancient space helmet, designed by the NTSRA branch of CentCom.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hardhats.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hardhats.ftl
deleted file mode 100644
index f59020559e5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hardhats.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-ClothingHeadHatHardhatBase = { ent-ClothingHeadBase }
- .desc = { ent-ClothingHeadBase.desc }
-ent-ClothingHeadHatHardhatBlue = blue hard hat
- .desc = A hard hat, painted in blue, used in dangerous working conditions to protect the head. Comes with a built-in flashlight.
-ent-ClothingHeadHatHardhatOrange = orange hard hat
- .desc = A hard hat, painted in orange, used in dangerous working conditions to protect the head. Comes with a built-in flashlight.
-ent-ClothingHeadHatHardhatRed = red hard hat
- .desc = A hard hat, painted in red, used in dangerous working conditions to protect the head. Comes with a built-in flashlight.
-ent-ClothingHeadHatHardhatWhite = white hard hat
- .desc = A hard hat, painted in white, used in dangerous working conditions to protect the head. Comes with a built-in flashlight.
-ent-ClothingHeadHatHardhatYellow = yellow hard hat
- .desc = A hard hat, painted in yellow, used in dangerous working conditions to protect the head. Comes with a built-in flashlight.
-ent-ClothingHeadHatHardhatYellowDark = dark yellow hard hat
- .desc = A hard hat, painted in dark yellow, used in dangerous working conditions to protect the head. Comes with a built-in flashlight.
-ent-ClothingHeadHatHardhatArmored = armored hard hat
- .desc = An armored hard hat. Provides the best of both worlds in both protection & utility - perfect for the engineer on the frontlines.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hardsuit-helmets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hardsuit-helmets.ftl
deleted file mode 100644
index 2a0455ac9eb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hardsuit-helmets.ftl
+++ /dev/null
@@ -1,72 +0,0 @@
-ent-ClothingHeadHelmetHardsuitBasic = basic hardsuit helmet
- .desc = A basic-looking hardsuit helmet that provides minor protection against most sources of damage.
-ent-ClothingHeadHelmetHardsuitAtmos = atmos hardsuit helmet
- .desc = A special hardsuit helmet designed for working in low-pressure, high thermal environments.
-ent-ClothingHeadHelmetHardsuitEngineering = engineering hardsuit helmet
- .desc = An engineering hardsuit helmet designed for working in low-pressure, high radioactive environments.
-ent-ClothingHeadHelmetHardsuitSpatio = spationaut hardsuit helmet
- .desc = A sturdy helmet designed for complex industrial operations in space.
-ent-ClothingHeadHelmetHardsuitSalvage = salvage hardsuit helmet
- .desc = A special helmet designed for work in a hazardous, low pressure environment. Has reinforced plating for wildlife encounters and dual floodlights.
-ent-ClothingHeadHelmetHardsuitMaxim = salvager maxim helmet
- .desc = A predication of decay washes over your mind.
-ent-ClothingHeadHelmetHardsuitSecurity = security hardsuit helmet
- .desc = Armored hardsuit helmet for security needs.
-ent-ClothingHeadHelmetHardsuitBrigmedic = brigmedic hardsuit helmet
- .desc = The lightweight helmet of the brigmedic hardsuit. Protects against viruses, and clowns.
-ent-ClothingHeadHelmetHardsuitWarden = warden's hardsuit helmet
- .desc = A modified riot helmet. Oddly comfortable.
-ent-ClothingHeadHelmetHardsuitCap = captain's hardsuit helmet
- .desc = Special hardsuit helmet, made for the captain of the station.
-ent-ClothingHeadHelmetHardsuitEngineeringWhite = chief engineer's hardsuit helmet
- .desc = Special hardsuit helmet, made for the chief engineer of the station.
-ent-ClothingHeadHelmetHardsuitMedical = chief medical officer's hardsuit helmet
- .desc = Lightweight medical hardsuit helmet that doesn't restrict your head movements.
-ent-ClothingHeadHelmetHardsuitRd = experimental research hardsuit helmet
- .desc = Lightweight hardsuit helmet that doesn't restrict your head movements.
-ent-ClothingHeadHelmetHardsuitSecurityRed = head of security's hardsuit helmet
- .desc = Security hardsuit helmet with the latest top secret NT-HUD software. Belongs to the HoS.
-ent-ClothingHeadHelmetHardsuitLuxury = luxury mining hardsuit helmet
- .desc = A refurbished mining hardsuit helmet, fitted with satin cushioning and an extra (non-functioning) antenna, because you're that extra.
-ent-ClothingHeadHelmetHardsuitSyndie = blood-red hardsuit helmet
- .desc = A heavily armored helmet designed for work in special operations. Property of Gorlex Marauders.
-ent-ClothingHeadHelmetHardsuitSyndieMedic = blood-red medic hardsuit helmet
- .desc = An advanced red hardsuit helmet specifically designed for field medic operations.
-ent-ClothingHeadHelmetHardsuitSyndieElite = syndicate elite helmet
- .desc = An elite version of the blood-red hardsuit's helmet, with improved armor and fireproofing. Property of Gorlex Marauders.
-ent-ClothingHeadHelmetHardsuitSyndieCommander = syndicate commander helmet
- .desc = A bulked up version of the blood-red hardsuit's helmet, purpose-built for the commander of a syndicate operative squad. Has significantly improved armor for those deadly front-lines firefights.
-ent-ClothingHeadHelmetHardsuitCybersun = cybersun juggernaut helmet
- .desc = Made of compressed red matter, this helmet was designed in the Tau chromosphere facility.
-ent-ClothingHeadHelmetHardsuitWizard = wizard hardsuit helmet
- .desc = A bizarre gem-encrusted helmet that radiates magical energies.
-ent-ClothingHeadHelmetHardsuitLing = organic space helmet
- .desc = A spaceworthy biomass of pressure and temperature resistant tissue.
-ent-ClothingHeadHelmetHardsuitPirateEVA = deep space EVA helmet
- .desc = A deep space EVA helmet, very heavy but provides good protection.
- .suffix = Pirate
-ent-ClothingHeadHelmetHardsuitPirateCap = pirate captain's hardsuit helmet
- .desc = A special hardsuit helmet, made for the captain of a pirate ship.
- .suffix = Pirate
-ent-ClothingHeadHelmetHardsuitERTLeader = ERT leader hardsuit helmet
- .desc = A special hardsuit helmet worn by members of an emergency response team.
-ent-ClothingHeadHelmetHardsuitERTChaplain = ERT chaplain hardsuit helmet
- .desc = A special hardsuit helmet worn by members of an emergency response team.
-ent-ClothingHeadHelmetHardsuitERTEngineer = ERT engineer hardsuit helmet
- .desc = A special hardsuit helmet worn by members of an emergency response team.
-ent-ClothingHeadHelmetHardsuitERTMedical = ERT medic hardsuit helmet
- .desc = A special hardsuit helmet worn by members of an emergency response team.
-ent-ClothingHeadHelmetHardsuitERTSecurity = ERT security hardsuit helmet
- .desc = A special hardsuit helmet worn by members of an emergency response team.
-ent-ClothingHeadHelmetHardsuitERTJanitor = ERT janitor hardsuit helmet
- .desc = A special hardsuit helmet worn by members of an emergency response team.
-ent-ClothingHeadHelmetCBURN = CBURN exosuit helmet
- .desc = A pressure resistant and fireproof hood worn by special cleanup units.
-ent-ClothingHeadHelmetHardsuitDeathsquad = deathsquad hardsuit helmet
- .desc = A robust helmet for special operations.
-ent-ClothingHeadHelmetHardsuitClown = clown hardsuit helmet
- .desc = A clown hardsuit helmet.
-ent-ClothingHeadHelmetHardsuitMime = mime hardsuit helmet
- .desc = A mime hardsuit helmet.
-ent-ClothingHeadHelmetHardsuitSanta = Santa's hardsuit helmet
- .desc = A festive-looking hardsuit helmet that provides the jolly gift-giver protection from low-pressure environments.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl
deleted file mode 100644
index a52b400be1b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl
+++ /dev/null
@@ -1,162 +0,0 @@
-ent-ClothingHeadHatBeaverHat = beaver hat
- .desc = Gentlemen?
-ent-ClothingHeadHatBeret = beret
- .desc = A beret, an artists favorite headwear.
-ent-ClothingHeadHatBeretFrench = French beret
- .desc = A French beret, "vive la France".
-ent-ClothingHeadHatBeretSecurity = security beret
- .desc = A stylish clothing option for security officers.
-ent-ClothingHeadHatCasa = casa
- .desc = Cone-shaped hat
-ent-ClothingHeadHatBeretRND = scientific beret
- .desc = A beret for real scientists.
-ent-ClothingHeadHatBeretEngineering = engineering beret
- .desc = A beret with the engineering insignia emblazoned on it. For engineers that are more inclined towards style than safety.
-ent-ClothingHeadHatBeretQM = quartermaster's beret
- .desc = A beret with the cargo's insignia emblazoned on it. For quartermasters that are more inclined towards style.
-ent-ClothingHeadHatBeretHoS = head of security's beret
- .desc = A black beret with a commander's rank emblem. For officers that are more inclined towards style than safety.
-ent-ClothingHeadHatBeretWarden = warden's beret
- .desc = A corporate blue beret with a warden's rank emblem. For officers that are more inclined towards style than safety.
-ent-ClothingHeadHatBeretSeniorPhysician = physician beret
- .desc = Donning the colours of medical and chemistry, physicians are the pride of this department!
-ent-ClothingHeadHatBeretBrigmedic = brigmedical beret
- .desc = White beret, looks like a cream pie on the head.
-ent-ClothingHeadHatBeretMerc = mercenary beret
- .desc = Olive beret, the badge depicts a jackal on a rock.
-ent-ClothingHeadHatBowlerHat = bowler hat
- .desc = Stylish bowler hat.
-ent-ClothingHeadHatCaptain = captain's hardhat
- .desc = It's good being the king.
-ent-ClothingHeadHatCardborg = cardborg helmet
- .desc = A hat made out of a box.
-ent-ClothingHeadHatCentcom = CentCom brand hat
- .desc = It's good to be the emperor.
-ent-ClothingHeadHatChef = chef's hat
- .desc = It's a hat used by chefs to keep hair out of your food. Judging by the food in the mess, they don't work.
-ent-ClothingHeadHatFedoraBrown = brown fedora
- .desc = It's a brown fedora.
-ent-ClothingHeadHatFedoraGrey = grey fedora
- .desc = It's a grey fedora.
-ent-ClothingHeadHatFez = fez
- .desc = A red fez.
-ent-ClothingHeadHatHopcap = head of personnel's cap
- .desc = A grand, stylish head of personnel's cap.
-ent-ClothingHeadHatHoshat = head of security's hat
- .desc = There's a new sheriff in station.
-ent-ClothingHeadHatOutlawHat = outlaw's hat
- .desc = A hat that makes you look like you carry a notched pistol, numbered one and nineteen more.
-ent-ClothingHeadHatWitch1 = witch hat
- .desc = A witch hat.
-ent-ClothingHeadHatPaper = paper hat
- .desc = A hat made of paper.
-ent-ClothingHeadHatPirate = pirate hat
- .desc = Yo ho ho and a bottle of rum!
-ent-ClothingHeadHatPlaguedoctor = plague doctor hat
- .desc = These were once used by plague doctors.
-ent-ClothingHeadHatRedwizard = red wizard hat
- .desc = Strange-looking red hat-wear that most certainly belongs to a real magic user.
-ent-ClothingHeadHatSantahat = santa hat
- .desc = A festive hat worn by Santa Claus
-ent-ClothingHeadHatSombrero = sombrero
- .desc = Perfectly for Space Mexico, si?
-ent-ClothingHeadHatSurgcapBlue = surgical cap
- .desc = A blue cap surgeons wear during operations. Keeps their hair from tickling your internal organs.
-ent-ClothingHeadHatSurgcapGreen = surgical cap
- .desc = A green cap surgeons wear during operations. Keeps their hair from tickling your internal organs.
-ent-ClothingHeadHatSurgcapPurple = surgical cap
- .desc = A purple cap surgeons wear during operations. Keeps their hair from tickling your internal organs.
-ent-ClothingHeadHatTophat = tophat
- .desc = A stylish black tophat.
-ent-ClothingHeadHatUshanka = ushanka
- .desc = Perfect for winter in Siberia, da?
-ent-ClothingHeadHatVioletwizard = violet wizard hat
- .desc = Strange-looking violet hat-wear that most certainly belongs to a real magic user.
-ent-ClothingHeadHatWarden = warden's cap
- .desc = A police officer's Hat. This hat emphasizes that you are THE LAW
-ent-ClothingHeadHatWitch = witch hat
- .desc = A witch hat.
-ent-ClothingHeadHatWizardFake = fake wizard hat
- .desc = It has WIZZARD written across it in sequins. Comes with a cool beard.
-ent-ClothingHeadHatWizardBase = { ent-ClothingHeadBase }
- .desc = { ent-ClothingHeadBase.desc }
-ent-ClothingHeadHatWizard = wizard hat
- .desc = Strange-looking blue hat-wear that most certainly belongs to a powerful magic user.
-ent-ClothingHeadHatXmasCrown = xmas crown
- .desc = Happy Christmas!
-ent-ClothingHeadHatTrucker = trucker hat
- .desc = Formerly Chucks, this hat is yours now.
-ent-ClothingHeadPyjamaSyndicateBlack = syndicate black pyjama hat
- .desc = For keeping that traitor head of yours warm.
-ent-ClothingHeadPyjamaSyndicatePink = syndicate pink pyjama hat
- .desc = For keeping that traitor head of yours warm.
-ent-ClothingHeadPyjamaSyndicateRed = syndicate red pyjama hat
- .desc = For keeping that traitor head of yours warm.
-ent-ClothingHeadPaperSack = papersack hat
- .desc = A paper sack with crude holes cut out for eyes. Useful for hiding one's identity or ugliness.
-ent-ClothingHeadPaperSackSmile = smiling papersack hat
- .desc = A paper sack with crude holes cut out for eyes and a sketchy smile drawn on the front. Not creepy at all.
-ent-ClothingHeadFishCap = fishing cap
- .desc = Women fear me. Fish fear me. Men turn their eyes away from me. As I walk no beast dares make a sound in my presence. I am alone on this barren Earth.
-ent-ClothingHeadNurseHat = nurse hat
- .desc = Somehow I feel I'm not supposed to leave this place.
-ent-ClothingHeadRastaHat = rasta hat
- .desc = Right near da beach, boyee.
-ent-ClothingHeadSafari = safari hat
- .desc = Keeps the sun out of your eyes. Makes you a target for the locals.
-ent-ClothingHeadHatJester = jester hat
- .desc = A hat with bells, to add some merriness to the suit.
-ent-ClothingHeadHatJesterAlt = { ent-ClothingHeadHatJester }
- .desc = { ent-ClothingHeadHatJester.desc }
-ent-ClothingHeadHatBeretCmo = chief medical officer's beret
- .desc = Turquoise beret with a cross on the front. The sight of it calms you down and makes it clear that you will be cured.
-ent-ClothingHeadHatPirateTricord = pirate hat
- .desc = Yo ho ho and a bottle of rum!
-ent-ClothingHeadHatWatermelon = watermelon helmet
- .desc = A carelessly cut half of a watermelon, gutted from the inside, to be worn as a helmet. It can soften the blow to the head.
-ent-ClothingHeadHatSyndie = syndicate hat
- .desc = A souvenir hat from "Syndieland", their production has already been closed.
-ent-ClothingHeadHatSyndieMAA = master at arms hat
- .desc = Master at arms hat, looks intimidating, I doubt that you will like to communicate with its owner...
-ent-ClothingHeadHatTacticalMaidHeadband = tactical maid headband
- .desc = A red headband - don't imagine yourself a Rambo and don't pick up a few machine guns.
-ent-ClothingHeadHatHetmanHat = hetman hat
- .desc = From the Zaporozhian Sich with love.
-ent-ClothingHeadHatMagician = magician's tophat
- .desc = A magician's tophat.
-ent-ClothingHeadHatCapcap = cap cap
- .desc = A grand, stylish captain cap.
-ent-ClothingHeadHatCentcomcap = CentCom cap
- .desc = An extravagant, fancy Central Commander cap.
-ent-ClothingHeadHatGladiator = gladiator helmet
- .desc = Protects the head from harsh ash winds and toy spears.
-ent-ClothingHeadHatPartyRed = red party hat
- .desc = Spread a joy!
-ent-ClothingHeadHatPartyYellow = yellow party hat
- .desc = { ent-ClothingHeadHatPartyRed.desc }
-ent-ClothingHeadHatPartyGreen = green party hat
- .desc = { ent-ClothingHeadHatPartyRed.desc }
-ent-ClothingHeadHatPartyBlue = blue party hat
- .desc = { ent-ClothingHeadHatPartyRed.desc }
-ent-ClothingHeadHatPartyWaterCup = water cup party hat
- .desc = Not as fulfilling as you had hoped...
-ent-ClothingHeadHatGreyFlatcap = grey flatcap
- .desc = Fashionable for both the working class and old man Jenkins.
-ent-ClothingHeadHatBrownFlatcap = brown flatcap
- .desc = Stupid clown! You made me look bad!
-ent-ClothingHeadHatCowboyBrown = brown cowboy hat
- .desc = This hat ain't big enough for the both of us.
-ent-ClothingHeadHatCowboyBlack = black cowboy hat
- .desc = { ent-ClothingHeadHatCowboyBrown.desc }
-ent-ClothingHeadHatCowboyGrey = grey cowboy hat
- .desc = { ent-ClothingHeadHatCowboyBrown.desc }
-ent-ClothingHeadHatCowboyRed = red cowboy hat
- .desc = { ent-ClothingHeadHatCowboyBrown.desc }
-ent-ClothingHeadHatCowboyWhite = white cowboy hat
- .desc = { ent-ClothingHeadHatCowboyBrown.desc }
-ent-ClothingHeadHatCowboyBountyHunter = bounty hunter cowboy hat
- .desc = { ent-ClothingHeadHatCowboyBrown.desc }
-ent-ClothingHeadHatStrawHat = straw hat
- .desc = A fancy hat for hot days! Not recommended to wear near fires.
-ent-ClothingHeadHatBeretMedic = medical beret
- .desc = White beret that encourages you to be clean.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl
deleted file mode 100644
index 1fb5e78748d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl
+++ /dev/null
@@ -1,46 +0,0 @@
-ent-ClothingHeadHelmetBasic = helmet
- .desc = Standard security gear. Protects the head from impacts.
-ent-ClothingHeadHelmetMerc = mercenary helmet
- .desc = The combat helmet is commonly used by mercenaries, is strong, light and smells like gunpowder and the jungle.
-ent-ClothingHeadHelmetSwat = SWAT helmet
- .desc = An extremely robust helmet, commonly used by paramilitary forces. This one has the Nanotrasen logo emblazoned on the top.
-ent-ClothingHeadHelmetSwatSyndicate = SWAT helmet
- .desc = An extremely robust helmet, commonly used by paramilitary forces. It is adorned in a nefarious red and black stripe pattern.
- .suffix = Syndicate
-ent-ClothingHeadHelmetRiot = light riot helmet
- .desc = It's a helmet specifically designed to protect against close range attacks.
-ent-ClothingHeadHelmetBombSuit = bombsuit helmet
- .desc = A heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce.
-ent-ClothingHeadHelmetJanitorBombSuit = janitorial bombsuit helmet
- .desc = A heavy helmet designed to withstand explosions formed from reactions between chemicals.
- .suffix = DO NOT MAP
-ent-ClothingHeadHelmetCult = cult helmet
- .desc = A robust, evil-looking cult helmet.
-ent-ClothingHeadHelmetSpaceNinja = space ninja helmet
- .desc = What may appear to be a simple black garment is in fact a highly sophisticated nano-weave helmet. Standard issue ninja gear.
-ent-ClothingHeadHelmetTemplar = templar helmet
- .desc = DEUS VULT!
-ent-ClothingHeadHelmetThunderdome = thunderdome helmet
- .desc = Let the battle commence!
-ent-ClothingHeadHelmetWizardHelm = wizard helm
- .desc = Strange-looking helmet that most certainly belongs to a real magic user.
-ent-ClothingHeadHelmetFire = fire helmet
- .desc = An atmos tech's best friend. Provides some heat resistance and looks cool.
-ent-ClothingHeadHelmetAtmosFire = atmos fire helmet
- .desc = An atmos fire helmet, able to keep the user cool in any situation.
-ent-ClothingHeadHelmetLing = chitinous helmet
- .desc = An all-consuming chitinous mass of armor.
-ent-ClothingHeadHelmetERTLeader = ERT leader helmet
- .desc = An in-atmosphere helmet worn by the leader of a Nanotrasen Emergency Response Team. Has blue highlights.
-ent-ClothingHeadHelmetERTSecurity = ERT security helmet
- .desc = An in-atmosphere helmet worn by security members of the Nanotrasen Emergency Response Team. Has red highlights.
-ent-ClothingHeadHelmetERTMedic = ERT medic helmet
- .desc = An in-atmosphere helmet worn by medical members of the Nanotrasen Emergency Response Team. Has white highlights.
-ent-ClothingHeadHelmetERTEngineer = ERT engineer helmet
- .desc = An in-atmosphere helmet worn by engineering members of the Nanotrasen Emergency Response Team. Has orange highlights.
-ent-ClothingHeadHelmetERTJanitor = ERT janitor helmet
- .desc = An in-atmosphere helmet worn by janitorial members of the Nanotrasen Emergency Response Team. Has dark purple highlights.
-ent-ClothingHeadHelmetBone = bone helmet
- .desc = Cool-looking helmet made of skull of your enemies.
-ent-ClothingHeadHelmetPodWars = ironclad II helmet
- .desc = An ironclad II helmet, a relic of the pod wars.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hoods.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hoods.ftl
deleted file mode 100644
index 8cc29c9ff82..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hoods.ftl
+++ /dev/null
@@ -1,84 +0,0 @@
-ent-ClothingHeadHatHoodBioGeneral = bio hood
- .desc = A hood that protects the head and face from biological contaminants.
- .suffix = Generic
-ent-ClothingHeadHatHoodBioCmo = bio hood
- .desc = An advanced hood for chief medical officers that protects the head and face from biological contaminants.
- .suffix = CMO
-ent-ClothingHeadHatHoodBioJanitor = bio hood
- .desc = A hood that protects the head and face from biological contaminants.
- .suffix = Janitor
-ent-ClothingHeadHatHoodBioScientist = bio hood
- .desc = A hood that protects the head and face from biological contaminants.
- .suffix = Science
-ent-ClothingHeadHatHoodBioSecurity = bio hood
- .desc = A hood that protects the head and face from biological contaminants.
- .suffix = Security
-ent-ClothingHeadHatHoodBioVirology = bio hood
- .desc = A hood that protects the head and face from biological contaminants.
- .suffix = Virology
-ent-ClothingHeadHatHoodChaplainHood = chaplain's hood
- .desc = Maximum piety in this star system.
-ent-ClothingHeadHatHoodCulthood = cult hood
- .desc = There's no cult without cult hoods.
-ent-ClothingHeadHatHoodNunHood = nun hood
- .desc = Maximum piety in this star system.
-ent-ClothingHeadHatHoodRad = radiation hood
- .desc = A hood of the hazmat suit, designed for protection from high radioactivity.
-ent-ClothingHeadHatHoodGoliathCloak = goliath cloak hood
- .desc = A hood of a goliath cloak, it is made from the hide of resilient fauna from a distant planet.
-ent-ClothingHeadHatHoodIan = ian hood
- .desc = A hood to complete the 'Good boy' look.
-ent-ClothingHeadHatHoodCarp = carp hood
- .desc = A gnarly hood adorned with plastic space carp teeth.
-ent-ClothingHeadHatHoodMoth = moth mask
- .desc = A mask in the form of a moths head is usually made of lightweight materials. It mimics the shape of a moths head with large eyes and long antennae. Such masks are often used in cosplay, or when shooting movies and videos.
-ent-ClothingHeadHatHoodWinterDefault = default winter coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterBartender = bartender winter coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterCaptain = captain's winter coat hood
- .desc = An expensive hood, to keep the captain's head warm.
-ent-ClothingHeadHatHoodWinterCargo = cargo winter coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterCE = chief engineer's winter coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterCentcom = Centcom winter coat hood
- .desc = A hood for keeping the central comander's head warm.
-ent-ClothingHeadHatHoodWinterChem = chemist winter coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterCMO = chief medical officer's winter coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterEngineer = engineer winter coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterHOP = head of personel's winter coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterHOS = head of security's winter coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterHydro = hydroponics coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterJani = janitor coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterMed = medic coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterMime = mime coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterMiner = miner coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterPara = paramedic coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterQM = quartermaster's coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterRD = research director's coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterRobo = robotics coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterSci = scientist coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterSec = security coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterSyndie = syndicate coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterWarden = warden's coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
-ent-ClothingHeadHatHoodWinterWeb = web coat hood
- .desc = { ent-ClothingHeadHatHoodWinterBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/misc.ftl
deleted file mode 100644
index c2fbfa0ba72..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/misc.ftl
+++ /dev/null
@@ -1,36 +0,0 @@
-ent-ClothingHeadHatBunny = bunny ears
- .desc = Cute bunny ears.
-ent-ClothingHeadHatCake = cake hat
- .desc = You put the cake on your head. Brilliant.
-ent-ClothingHeadHatChickenhead = chicken head
- .desc = It's a chicken head. Bok bok bok!
-ent-ClothingHeadHatFlowerWreath = flower wreath
- .desc = A wreath of colourful flowers. Can be worn both on head and neck.
-ent-ClothingHeadHatPumpkin = pumpkin hat
- .desc = A jack o' lantern! Believed to ward off evil spirits.
-ent-ClothingHeadHatPwig = pwig
- .desc = To be honest, those look ridiculous.
-ent-ClothingHeadMirror = head mirror
- .desc = I doubt even the CMO knows how to use this thing.
-ent-ClothingHeadHatRichard = richard
- .desc = Do you like hurting people?
-ent-ClothingHeadHatSkub = skub hat
- .desc = Best paired with the Skub Suit.
-ent-ClothingHeadHatShrineMaidenWig = shrine maiden's wig
- .desc = The tag reads "All proceeds go to the Hakurei Shrine."
-ent-ClothingHeadHatCone = warning cone
- .desc = This cone is trying to warn you of something!
-ent-ClothingHeadHatFancyCrown = fancy crown
- .desc = It smells like dead rat. Lets you speak like one!
-ent-ClothingHeadHatCatEars = cat ears
- .desc = NYAH!
- .suffix = DO NOT MAP
-ent-ClothingHeadHatDogEars = doggy ears
- .desc = Only for good boys.
- .suffix = DO NOT MAP
-ent-ClothingHeadHatSquid = squiddy
- .desc = Scare your friends with this eldritch mask.
-ent-ClothingHeadHatRedRacoon = red racoon hat
- .desc = Fluffy hat of red racoon!
-ent-WaterDropletHat = water droplet
- .desc = Makes 8-eyed friends 8 times more adorable!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/soft.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/soft.ftl
deleted file mode 100644
index c5874424664..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/soft.ftl
+++ /dev/null
@@ -1,65 +0,0 @@
-ent-ClothingHeadHeadHatBaseFlippable = { ent-ClothingHeadBaseButcherable }
- .desc = { ent-ClothingHeadBaseButcherable.desc }
-ent-ClothingHeadHeadHatBaseFlipped = { ent-ClothingHeadHeadHatBaseFlippable }
- .suffix = flipped
- .desc = { ent-ClothingHeadHeadHatBaseFlippable.desc }
-ent-ClothingHeadHatBluesoft = blue cap
- .desc = It's a baseball hat in a tasteless blue colour.
-ent-ClothingHeadHatBluesoftFlipped = blue cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatCargosoft = cargo cap
- .desc = It's a baseball hat painted in Cargo colours.
-ent-ClothingHeadHatCargosoftFlipped = cargo cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatQMsoft = quartermaster's cap
- .desc = It's a baseball hat painted in the Quartermaster's colors.
-ent-ClothingHeadHatQMsoftFlipped = quartermaster's cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatCorpsoft = corporate cap
- .desc = A baseball bat in corporation colors.
-ent-ClothingHeadHatCorpsoftFlipped = corporate cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatGreensoft = green cap
- .desc = It's a baseball hat in a tasteless green colour.
-ent-ClothingHeadHatGreensoftFlipped = green cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatBlacksoft = black cap
- .desc = It's a baseball hat in a tasteless black colour.
-ent-ClothingHeadHatBlacksoftFlipped = black cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatGreysoft = grey cap
- .desc = It's a baseball hat in a tasteless grey colour.
-ent-ClothingHeadHatGreysoftFlipped = grey cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatMimesoft = mime cap
- .desc = It's a baseball hat in a tasteless white colour.
-ent-ClothingHeadHatMimesoftFlipped = mime cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatOrangesoft = orange cap
- .desc = It's a baseball hat in a good-looking orange colour.
-ent-ClothingHeadHatOrangesoftFlipped = orange cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatPurplesoft = purple cap
- .desc = It's a baseball hat in a tasteless purple colour.
-ent-ClothingHeadHatPurplesoftFlipped = purple cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatRedsoft = red cap
- .desc = It's a baseball hat in a tasteless red colour.
-ent-ClothingHeadHatRedsoftFlipped = red cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatSecsoft = security cap
- .desc = It's a robust baseball hat in tasteful red colour.
-ent-ClothingHeadHatSecsoftFlipped = security cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatYellowsoft = yellow cap
- .desc = A yellow baseball hat.
-ent-ClothingHeadHatYellowsoftFlipped = yellow cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatBizarreSoft = troublemaker's cap
- .desc = A truly.. bizarre accessory.
-ent-ClothingHeadHatBizarreSoftFlipped = troublemaker's cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
-ent-ClothingHeadHatParamedicsoft = paramedic cap
- .desc = It's a paramedic's baseball hat with a medical logo.
-ent-ClothingHeadHatParamedicsoftFlipped = paramedic cap
- .desc = { ent-ClothingHeadHeadHatBaseFlipped.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/specific.ftl
deleted file mode 100644
index 77c276d936d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/specific.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingHeadHatChameleon = beret
- .desc = A beret, an artists favorite headwear.
- .suffix = Chameleon
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/welding.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/welding.ftl
deleted file mode 100644
index a43f1bd69e8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/welding.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-WeldingMaskBase = welding mask
- .desc = { ent-ClothingHeadBase.desc }
-ent-ClothingHeadHatWelding = welding mask
- .desc = A head-mounted face cover designed to protect the wearer completely from space-arc eye.
-ent-ClothingHeadHatWeldingMaskFlame = flame welding mask
- .desc = A painted welding helmet, this one has flames on it.
-ent-ClothingHeadHatWeldingMaskFlameBlue = blue-flame welding mask
- .desc = A painted welding helmet, this one has blue flames on it.
-ent-ClothingHeadHatWeldingMaskPainted = painted welding mask
- .desc = A welding helmet, painted in crimson.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/bandanas.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/bandanas.ftl
deleted file mode 100644
index 2cfa21964a3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/bandanas.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-ClothingMaskBandanaBase = { ent-ClothingMaskBaseButcherable }
- .desc = { ent-ClothingMaskBaseButcherable.desc }
-ent-ClothingMaskBandBlack = black bandana
- .desc = A black bandana to make you look cool.
-ent-ClothingMaskBandBlue = blue bandana
- .desc = A blue bandana to make you look cool.
-ent-ClothingMaskBandBotany = botany bandana
- .desc = A botany bandana to make you look cool, made from natural fibers.
-ent-ClothingMaskBandGold = gold bandana
- .desc = A gold bandana to make you look cool.
-ent-ClothingMaskBandGreen = green bandana
- .desc = A green bandana to make you look cool.
-ent-ClothingMaskBandGrey = grey bandana
- .desc = A grey bandana to make you look cool.
-ent-ClothingMaskBandRed = red bandana
- .desc = A red bandana to make you look cool.
-ent-ClothingMaskBandSkull = skull bandana
- .desc = A bandana with a skull to make you look even cooler.
-ent-ClothingMaskBandMerc = mercenary bandana
- .desc = To protect the head from the sun, insects and other dangers of the higher path.
-ent-ClothingMaskBandBrown = brown bandana
- .desc = A brown bandana to make you look cool.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/base_clothingmask.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/base_clothingmask.ftl
deleted file mode 100644
index b180586cf4f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/base_clothingmask.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-ClothingMaskBase = { ent-Clothing }
- .desc = { ent-Clothing.desc }
-ent-ClothingMaskPullableBase = { ent-ClothingMaskBase }
- .desc = { ent-ClothingMaskBase.desc }
-ent-ActionToggleMask = Toggle Mask
- .desc = Handy, but prevents insertion of pie into your pie hole.
-ent-ClothingMaskBaseButcherable = { ent-ClothingMaskBase }
- .desc = { ent-ClothingMaskBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/masks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/masks.ftl
deleted file mode 100644
index 441cc2fab4a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/masks.ftl
+++ /dev/null
@@ -1,77 +0,0 @@
-ent-ClothingMaskGas = gas mask
- .desc = A face-covering mask that can be connected to an air supply.
-ent-ClothingMaskGasSecurity = security gas mask
- .desc = A standard issue Security gas mask.
-ent-ClothingMaskGasSyndicate = syndicate gas mask
- .desc = A close-fitting tactical mask that can be connected to an air supply.
-ent-ClothingMaskGasAtmos = atmospheric gas mask
- .desc = Improved gas mask utilized by atmospheric technicians. It's flameproof!
-ent-ClothingMaskGasCaptain = captain's gas mask
- .desc = Nanotrasen cut corners and repainted a spare atmospheric gas mask, but don't tell anyone.
-ent-ClothingMaskGasCentcom = CentCom gas mask
- .desc = Oooh, gold and green. Fancy! This should help as you sit in your office.
-ent-ClothingMaskGasExplorer = explorer gas mask
- .desc = A military-grade gas mask that can be connected to an air supply.
-ent-ClothingMaskBreathMedical = medical mask
- .desc = A close-fitting sterile mask that can be connected to an air supply.
-ent-ClothingMaskBreathMedicalSecurity = military-style medical mask
- .desc = A medical mask with a small layer of protection against damage and viruses, similar to the one used in the medical units of the first corporate war.
-ent-ClothingMaskBreath = breath mask
- .desc = Might as well keep this on 24/7.
-ent-ClothingMaskClownBase = clown wig and mask
- .desc = A true prankster's facial attire. A clown is incomplete without his wig and mask.
-ent-ClothingMaskClown = { ent-ClothingMaskClownBase }
- .desc = { ent-ClothingMaskClownBase.desc }
-ent-ClothingMaskClownBanana = banana clown wig and mask
- .desc = { ent-ClothingMaskClown.desc }
-ent-ClothingMaskJoy = joy mask
- .desc = Express your happiness or hide your sorrows with this laughing face with crying tears of joy cutout.
-ent-ClothingMaskMime = mime mask
- .desc = The traditional mime's mask. It has an eerie facial posture.
-ent-ClothingMaskSterile = sterile mask
- .desc = A sterile mask designed to help prevent the spread of diseases.
-ent-ClothingMaskMuzzle = muzzle
- .desc = To stop that awful noise.
-ent-ClothingMaskPlague = plague doctor mask
- .desc = A bad omen.
-ent-ClothingMaskCluwne = cluwne face and hair
- .desc = Cursed cluwne face and hair.
- .suffix = Unremoveable
-ent-ClothingMaskGasSwat = swat gas mask
- .desc = A elite issue Security gas mask.
-ent-ClothingMaskGasMerc = mercenary gas mask
- .desc = Slightly outdated, but reliable military-style gas mask.
-ent-ClothingMaskGasERT = ert gas mask
- .desc = The gas mask of the elite squad of the ERT.
-ent-ClothingMaskGasDeathSquad = death squad gas mask
- .desc = A unique gas mask for the NT's most elite squad.
-ent-ClothingMaskRat = rat mask
- .desc = A mask of a rat that looks like a rat. Perhaps they will take you for a fellow rat.
-ent-ClothingMaskFox = fox mask
- .desc = What does the fox say?
-ent-ClothingMaskBee = bee mask
- .desc = For the queen!
-ent-ClothingMaskBear = bear mask
- .desc = I'm a cloudy, cloudy, cloudy, I'm not a bear at all.
-ent-ClothingMaskRaven = raven mask
- .desc = Where I am, death... or glitter.
-ent-ClothingMaskJackal = jackal mask
- .desc = It is better not to turn your back to the owner of the mask, it may bite.
-ent-ClothingMaskBat = bat mask
- .desc = A bloodsucker by night, and a cute, blinded beast by day.
-ent-ClothingMaskNeckGaiter = neck gaiter
- .desc = Stylish neck gaiter for your neck, can protect from the cosmic wind?...
-ent-ClothingMaskNeckGaiterRed = red neck gaiter
- .desc = { ent-ClothingMaskNeckGaiter.desc }
-ent-ClothingMaskSexyClown = sexy clown mask
- .desc = Some naughty clowns think this is what the Honkmother looks like.
-ent-ClothingMaskSexyMime = sexy mime mask
- .desc = Those ruddy cheeks just want to be rubbed.
-ent-ClothingMaskSadMime = sad mime mask
- .desc = Many people think this is what a real mime mask looks like.
-ent-ClothingMaskScaredMime = scared mime mask
- .desc = Looks like it would scream if it wasn't a mask
-ent-ClothingMaskItalianMoustache = italian moustache
- .desc = Made from authentic Italian moustache hairs. Gives the wearer an irresistable urge to gesticulate wildly.
-ent-ClothingMaskNinja = ninja mask
- .desc = A close-fitting nano-enhanced mask that acts both as an air filter and a post-modern fashion statement.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/specific.ftl
deleted file mode 100644
index 9181c886d49..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/specific.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-ClothingMaskGasChameleon = gas mask
- .desc = A face-covering mask that can be connected to an air supply.
- .suffix = Chameleon
-ent-ClothingMaskGasVoiceChameleon = { ent-ClothingMaskGasChameleon }
- .suffix = Voice Mask, Chameleon
- .desc = { ent-ClothingMaskGasChameleon.desc }
-ent-ClothingMaskWeldingGas = welding gas mask
- .desc = A gas mask with built in welding goggles and face shield. Looks like a skull, clearly designed by a nerd.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/base_clothingneck.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/base_clothingneck.ftl
deleted file mode 100644
index c46ba456285..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/base_clothingneck.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingNeckBase = { ent-Clothing }
- .desc = { ent-Clothing.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/cloaks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/cloaks.ftl
deleted file mode 100644
index d6cd68ba56d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/cloaks.ftl
+++ /dev/null
@@ -1,52 +0,0 @@
-ent-ClothingNeckCloakCentcom = central commander's cloak
- .desc = A pompous and elite green cloak with a nice gold trim, tailored specifically to the Central Commander. It's so heavy, the gold trim might be real.
-ent-ClothingNeckCloakCap = captain's cloak
- .desc = A pompous and comfy blue cloak with a nice gold trim, while not particularly valuable as your other possessions, it sure is fancy.
-ent-ClothingNeckCloakHos = head of security's cloak
- .desc = An exquisite dark and red cloak fitting for those who can assert dominance over wrongdoers. Take a stab at being civil in prosecution!
-ent-ClothingNeckCloakCe = chief engineer's cloak
- .desc = A dark green cloak with light blue ornaments, given to those who proved themselves to master the precise art of engineering.
-ent-ClothingCloakCmo = chief medical officer's cloak
- .desc = A sterile blue cloak with a green cross, radiating with a sense of duty and willingness to help others.
-ent-ClothingNeckCloakRd = research director's cloak
- .desc = A white cloak with violet stripes, showing your status as the arbiter of cutting-edge technology.
-ent-ClothingNeckCloakQm = quartermaster's cloak
- .desc = A strong brown cloak with a reflective stripe, while not as fancy as others, it does show your managing skills.
-ent-ClothingNeckCloakHop = head of personnel's cloak
- .desc = A blue cloak with red shoulders and gold buttons, proving you are the gatekeeper to any airlock on the station.
-ent-ClothingNeckCloakHerald = herald's cloak
- .desc = An evil-looking red cloak with spikes on its shoulders.
-ent-ClothingNeckCloakNanotrasen = nanotrasen cloak
- .desc = A stately blue cloak to represent NanoTrasen.
-ent-ClothingNeckCloakCapFormal = captain's formal cloak
- .desc = A lavish and decorated cloak for special occasions.
-ent-ClothingNeckCloakAdmin = admin cloak
- .desc = Weh!
-ent-ClothingNeckCloakMiner = miner's cloak
- .desc = Worn by the most skilled miners, for one who has moved mountains and filled valleys.
-ent-ClothingNeckCloakTrans = vampire cloak
- .desc = Worn by high ranking vampires of the transylvanian society of vampires.
-ent-ClothingNeckCloakGoliathCloak = goliath cloak
- .desc = A cloak made from the hide of resilient fauna from a distant planet, though its protective value has faded with its age.
-ent-ClothingNeckCloakPirateCap = pirate captain cloak
- .desc = A rather fetching black pirate cloak, complete with skull motif.
-ent-ClothingNeckCloakMoth = moth cloak
- .desc = A cloak in the form of moth wings is an unusual and original element of the wardrobe that can attract the attention of others. It is made of a thin fabric imitating moth wings, with soft and fluffy edges. The raincoat is fastened around the neck with Velcro, and has a hood in the shape of a moths head.
-ent-ClothingNeckCloakVoid = void cloak
- .desc = A cloak of darkness. For those who have gone to the dark side of the force.
-ent-ClothingNeckCloakAce = pilot's cloak
- .desc = Cloak awarded to Nanotrasen's finest space aces.
-ent-ClothingNeckCloakAro = werewolf cloak
- .desc = This cloak lets others know you're a lone wolf.
-ent-ClothingNeckCloakBi = poison cloak
- .desc = The purple color is a clear indicator you are poisonous.
-ent-ClothingNeckCloakIntersex = cyclops cloak
- .desc = The circle on this cloak represents a cyclops' eye.
-ent-ClothingNeckCloakLesbian = poet cloak
- .desc = This cloak belonged to an ancient poet, you forgot which one.
-ent-ClothingNeckCloakGay = multi-level marketing cloak
- .desc = This cloak is highly sought after in the Nanotrasen Marketing Offices.
-ent-ClothingNeckCloakEnby = treasure hunter cloak
- .desc = This cloak belonged to a greedy treasure hunter.
-ent-ClothingNeckCloakPan = chef's cloak
- .desc = Meant to be worn alongside a frying pan.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl
deleted file mode 100644
index d11f0d68e57..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-ClothingNeckMantleCap = captain's mantle
- .desc = A formal mantle to drape around the shoulders. Others stand on the shoulders of giants. You're the giant they stand on.
-ent-ClothingNeckMantleCE = chief engineer's mantle
- .desc = A bright white and yellow striped mantle. Do not wear around active machinery.
-ent-ClothingNeckMantleCMO = chief medical officer's mantle
- .desc = A light blue shoulder draping for THE medical professional. Contrasts well with blood.
-ent-ClothingNeckMantleHOP = head of personnel's mantle
- .desc = A decorative draping of blue and red over your shoulders, signifying your stamping prowess.
-ent-ClothingNeckMantleHOS = head of security's mantle
- .desc = A plated mantle that one might wrap around the upper torso. The 'scales' of the garment signify the members of security and how you're carrying them on your shoulders.
-ent-ClothingNeckMantleHOSShoulder = head of security's shoulder mantle
- .desc = Shootouts with nukies are just another Tuesday for this HoS. This mantle is a symbol of commitment to the station.
-ent-ClothingNeckMantleRD = research director's mantle
- .desc = A terribly comfortable shoulder draping for the discerning scientist of fashion.
-ent-ClothingNeckMantleQM = quartermaster's mantle
- .desc = For the master of goods and materials to rule over the department, a befitting mantle to show off superiority!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/medals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/medals.ftl
deleted file mode 100644
index 464609d4838..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/medals.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-ClothingNeckBronzeheart = bronzeheart medal
- .desc = Given to crewmates for exemplary bravery in the face of danger.
-ent-ClothingNeckGoldmedal = gold medal of crewmanship
- .desc = Given to crewmates who display excellent crewmanship.
-ent-ClothingNeckCargomedal = cargo medal
- .desc = Given for the best work in the cargo department.
-ent-ClothingNeckEngineermedal = engineer medal
- .desc = Given for the best work in the engineering department.
-ent-ClothingNeckMedicalmedal = medical medal
- .desc = Given for the best work in the medical department.
-ent-ClothingNeckSciencemedal = science medal
- .desc = Given for the best work in the science department.
-ent-ClothingNeckSecuritymedal = security medal
- .desc = Given for the best work in the security department.
-ent-ClothingNeckClownmedal = clown medal
- .desc = Given for the best joke in the universe. HONK!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/misc.ftl
deleted file mode 100644
index 91dd45c5294..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/misc.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-ClothingNeckHeadphones = headphones
- .desc = Quality headphones from Drunk Masters, with good sound insulation.
-ent-ClothingNeckStethoscope = stethoscope
- .desc = An outdated medical apparatus for listening to the sounds of the human body. It also makes you look like you know what you're doing.
-ent-ClothingNeckBling = bling
- .desc = Damn, it feels good to be a gangster.
-ent-ClothingNeckLawyerbadge = lawyer badge
- .desc = A badge to show that the owner is a 'legitimate' lawyer who passed the NT bar exam required to practice law.
-ent-ActionStethoscope = Listen with stethoscope
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/pins.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/pins.ftl
deleted file mode 100644
index 5da8f2a14a7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/pins.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-ClothingNeckPinBase = pin
- .desc = be nothing do crime
-ent-ClothingNeckLGBTPin = LGBT pin
- .desc = be gay do crime
-ent-ClothingNeckAromanticPin = aromantic pin
- .desc = be aro do crime
-ent-ClothingNeckAsexualPin = asexual pin
- .desc = be ace do crime
-ent-ClothingNeckBisexualPin = bisexual pin
- .desc = be bi do crime
-ent-ClothingNeckIntersexPin = intersex pin
- .desc = be intersex do crime
-ent-ClothingNeckLesbianPin = lesbian pin
- .desc = be lesbian do crime
-ent-ClothingNeckNonBinaryPin = non-binary pin
- .desc = 01100010 01100101 00100000 01100101 01101110 01100010 01111001 00100000 01100100 01101111 00100000 01100011 01110010 01101001 01101101 01100101
-ent-ClothingNeckPansexualPin = pansexual pin
- .desc = be pan do crime
-ent-ClothingNeckTransPin = transgender pin
- .desc = be trans do crime
-ent-ClothingNeckAutismPin = autism pin
- .desc = be autism do crime
-ent-ClothingNeckGoldAutismPin = golden autism pin
- .desc = be autism do warcrime
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/scarfs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/scarfs.ftl
deleted file mode 100644
index f56f9b94746..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/scarfs.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-ClothingNeckScarfStripedRed = striped red scarf
- .desc = A stylish striped red scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks.
-ent-ClothingNeckScarfStripedBlue = striped blue scarf
- .desc = A stylish striped blue scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks.
-ent-ClothingNeckScarfStripedGreen = striped green scarf
- .desc = A stylish striped green scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks.
-ent-ClothingNeckScarfStripedBlack = striped black scarf
- .desc = A stylish striped black scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks.
-ent-ClothingNeckScarfStripedBrown = striped brown scarf
- .desc = A stylish striped brown scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks.
-ent-ClothingNeckScarfStripedLightBlue = striped light blue scarf
- .desc = A stylish striped light blue scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks.
-ent-ClothingNeckScarfStripedOrange = striped orange scarf
- .desc = A stylish striped orange scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks.
-ent-ClothingNeckScarfStripedPurple = striped purple scarf
- .desc = A stylish striped purple scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks.
-ent-ClothingNeckScarfStripedSyndieGreen = striped syndicate green scarf
- .desc = A stylish striped syndicate green scarf. The perfect winter accessory for those with a keen fashion sense, and those who are in the mood to steal something.
-ent-ClothingNeckScarfStripedSyndieRed = striped syndicate red scarf
- .desc = A stylish striped syndicate red scarf. The perfect winter accessory for those with a keen fashion sense, and those who are in the mood to steal something.
-ent-ClothingNeckScarfStripedCentcom = striped CentCom scarf
- .desc = A stylish striped centcom colored scarf. The perfect winter accessory for those with a keen fashion sense, and those who need to do paperwork in the cold.
-ent-ClothingNeckScarfStripedZebra = zebra scarf
- .desc = A striped scarf, a mandatory accessory for artists.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/specific.ftl
deleted file mode 100644
index 1baad6c5984..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/specific.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingNeckChameleon = striped red scarf
- .desc = A stylish striped red scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks.
- .suffix = Chameleon
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/stoles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/stoles.ftl
deleted file mode 100644
index 7eee6708e32..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/stoles.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ClothingNeckStoleChaplain = chaplain stole
- .desc = An elegantly designed stole, with a vibrant gold plus on either end.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/ties.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/ties.ftl
deleted file mode 100644
index 6f30965e216..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/ties.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ClothingNeckTieRed = red-tie
- .desc = A neosilk clip-on red tie.
-ent-ClothingNeckTieDet = detective's tie
- .desc = A loosely tied necktie, a perfect accessory for the over-worked detective.
-ent-ClothingNeckTieSci = scientist's tie
- .desc = Why do we all have to wear these ridiculous ties?
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl
deleted file mode 100644
index 9c65d555cb2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl
+++ /dev/null
@@ -1,31 +0,0 @@
-ent-ClothingOuterArmorBasic = armor vest
- .desc = A standard Type I armored vest that provides decent protection against most types of damage.
-ent-ClothingOuterArmorBasicSlim = armor vest
- .desc = A slim Type I armored vest that provides decent protection against most types of damage.
- .suffix = slim
-ent-ClothingOuterArmorRiot = riot suit
- .desc = A suit of semi-flexible polycarbonate body armor with heavy padding to protect against melee attacks. Perfect for fighting delinquents around the station.
-ent-ClothingOuterArmorBulletproof = bulletproof vest
- .desc = A Type III heavy bulletproof vest that excels in protecting the wearer against traditional projectile weaponry and explosives to a minor extent.
-ent-ClothingOuterArmorReflective = reflective vest
- .desc = An armored vest with advanced shielding to protect against energy weapons.
-ent-ClothingOuterArmorCult = acolyte armor
- .desc = An evil-looking piece of cult armor, made of bones.
-ent-ClothingOuterArmorHeavy = heavy armor suit
- .desc = A heavily armored suit that protects against excessive damage.
-ent-ClothingOuterArmorHeavyGreen = green heavy armor suit
- .desc = A heavily armored suit with green accents that protects against excessive damage.
-ent-ClothingOuterArmorHeavyRed = red heavy armor suit
- .desc = A heavily armored suit with red accents that protects against excessive damage.
-ent-ClothingOuterArmorMagusblue = blue magus armor
- .desc = An blue armored suit that provides good protection.
-ent-ClothingOuterArmorMagusred = red magus armor
- .desc = A red armored suit that provides good protection.
-ent-ClothingOuterArmorCaptainCarapace = captain's carapace
- .desc = An armored chestpiece that provides protection whilst still offering maximum mobility and flexibility. Issued only to the station's finest.
-ent-ClothingOuterArmorChangeling = chitinous armor
- .desc = Inflates the changeling's body into an all-consuming chitinous mass of armor.
-ent-ClothingOuterArmorBone = bone armor
- .desc = Sits on you like a second skin.
-ent-ClothingOuterArmorPodWars = ironclad II armor
- .desc = A repurposed suit of ironclad II armor, a relic of the pod wars.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/base_clothingouter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/base_clothingouter.ftl
deleted file mode 100644
index 1d66236ff44..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/base_clothingouter.ftl
+++ /dev/null
@@ -1,21 +0,0 @@
-ent-ClothingOuterBase = { ent-Clothing }
- .desc = { ent-Clothing.desc }
-ent-ClothingOuterBaseLarge = { ent-ClothingOuterBase }
- .desc = { ent-ClothingOuterBase.desc }
-ent-ClothingOuterStorageBase = { ent-ClothingOuterBase }
- .desc = { ent-ClothingOuterBase.desc }
-ent-ClothingOuterStorageFoldableBase = { ent-ClothingOuterStorageBase }
- .desc = { ent-ClothingOuterStorageBase.desc }
-ent-ClothingOuterStorageFoldableBaseOpened = { ent-ClothingOuterStorageFoldableBase }
- .suffix = opened
- .desc = { ent-ClothingOuterStorageFoldableBase.desc }
-ent-ClothingOuterStorageToggleableBase = { ent-ClothingOuterStorageBase }
- .desc = { ent-ClothingOuterStorageBase.desc }
-ent-ClothingOuterHardsuitBase = base hardsuit
- .desc = { ent-ClothingOuterBase.desc }
-ent-ClothingOuterEVASuitBase = base EVA Suit
- .desc = { ent-ClothingOuterBase.desc }
-ent-ClothingOuterBaseToggleable = hoodie with hood
- .desc = { ent-ClothingOuterBase.desc }
-ent-ClothingOuterBaseMedium = { ent-ClothingOuterBase }
- .desc = { ent-ClothingOuterBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/bio.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/bio.ftl
deleted file mode 100644
index 96b3cbf8ac4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/bio.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-ClothingOuterBioGeneral = bio suit
- .desc = A suit that protects against biological contamination.
- .suffix = Generic
-ent-ClothingOuterBioCmo = bio suit
- .desc = An advanced suit that protects against biological contamination, in CMO colors.
- .suffix = CMO
-ent-ClothingOuterBioJanitor = bio suit
- .desc = A suit that protects against biological contamination, in Janitor colors.
- .suffix = Janitor
-ent-ClothingOuterBioScientist = bio suit
- .desc = A suit that protects against biological contamination, in Scientist colors.
- .suffix = Science
-ent-ClothingOuterBioSecurity = bio suit
- .desc = A suit that protects against biological contamination, in Security colors.
- .suffix = Security
-ent-ClothingOuterBioVirology = bio suit
- .desc = A suit that protects against biological contamination, in Virology colors.
- .suffix = Virology
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/coats.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/coats.ftl
deleted file mode 100644
index 58202a63ca6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/coats.ftl
+++ /dev/null
@@ -1,78 +0,0 @@
-ent-ClothingOuterCoatBomber = bomber jacket
- .desc = A thick, well-worn WW2 leather bomber jacket.
-ent-ClothingOuterCoatDetective = detective trenchcoat
- .desc = A rugged canvas trenchcoat, designed and created by TX Fabrication Corp. Wearing it makes you feel for the plight of the Tibetans.
-ent-ClothingOuterCoatDetectiveLoadout = { ent-ClothingOuterCoatDetective }
- .desc = { ent-ClothingOuterCoatDetective.desc }
-ent-ClothingOuterCoatGentle = gentle coat
- .desc = A gentle coat for a gentle man, or woman.
-ent-ClothingOuterArmorHoS = { ent-AllowSuitStorageClothing }
- .desc = { ent-AllowSuitStorageClothing.desc }
-ent-ClothingOuterArmorWarden = { ent-AllowSuitStorageClothing }
- .desc = { ent-AllowSuitStorageClothing.desc }
-ent-ClothingOuterCoatHoSTrench = head of security's armored trenchcoat
- .desc = A greatcoat enhanced with a special alloy for some extra protection and style for those with a commanding presence.
-ent-ClothingOuterCoatInspector = inspector's coat
- .desc = A strict inspector's coat for being intimidating during inspections.
-ent-ClothingOuterCoatJensen = jensen coat
- .desc = A jensen coat.
-ent-ClothingOuterCoatTrench = trench coat
- .desc = A comfy trench coat.
-ent-ClothingOuterCoatLab = lab coat
- .desc = A suit that protects against minor chemical spills.
-ent-ClothingOuterCoatLabOpened = lab coat
- .desc = { ent-ClothingOuterCoatLab.desc }
-ent-ClothingOuterCoatLabChem = chemist lab coat
- .desc = A suit that protects against minor chemical spills. Has an orange stripe on the shoulder.
-ent-ClothingOuterCoatLabChemOpened = chemist lab coat
- .desc = { ent-ClothingOuterCoatLabChem.desc }
-ent-ClothingOuterCoatLabViro = virologist lab coat
- .desc = A suit that protects against bacteria and viruses. Has an green stripe on the shoulder.
-ent-ClothingOuterCoatLabViroOpened = virologist lab coat
- .desc = { ent-ClothingOuterCoatLabViro.desc }
-ent-ClothingOuterCoatLabGene = geneticist lab coat
- .desc = A suit that protects against minor chemical spills. Has an blue stripe on the shoulder.
-ent-ClothingOuterCoatLabGeneOpened = geneticist lab coat
- .desc = { ent-ClothingOuterCoatLabGene.desc }
-ent-ClothingOuterCoatLabCmo = chief medical officer's lab coat
- .desc = Bluer than the standard model.
-ent-ClothingOuterCoatLabCmoOpened = chief medical officer's lab coat
- .desc = { ent-ClothingOuterCoatLabCmo.desc }
-ent-ClothingOuterCoatRnd = scientist lab coat
- .desc = A suit that protects against minor chemical spills. Has a purple stripe on the shoulder.
-ent-ClothingOuterCoatRndOpened = scientist lab coat
- .desc = { ent-ClothingOuterCoatRnd.desc }
-ent-ClothingOuterCoatRobo = roboticist lab coat
- .desc = More like an eccentric coat than a labcoat. Helps pass off bloodstains as part of the aesthetic. Comes with red shoulder pads.
-ent-ClothingOuterCoatRoboOpened = roboticist lab coat
- .desc = { ent-ClothingOuterCoatRobo.desc }
-ent-ClothingOuterCoatRD = research director lab coat
- .desc = Woven with top of the line technology, this labcoat helps protect against radiation in similar way to the experimental hardsuit.
-ent-ClothingOuterCoatRDOpened = research director lab coat
- .desc = { ent-ClothingOuterCoatRD.desc }
-ent-ClothingOuterCoatPirate = pirate garb
- .desc = Yarr.
-ent-ClothingOuterCoatWarden = warden's armored jacket
- .desc = A sturdy, utilitarian jacket designed to protect a warden from any brig-bound threats.
-ent-ClothingOuterDameDane = yakuza coat
- .desc = Friday...
-ent-ClothingOuterClownPriest = robes of the honkmother
- .desc = Meant for a clown of the cloth.
-ent-ClothingOuterDogi = samurai dogi
- .desc = Dogi is a type of traditional Japanese clothing. The dogi is made of heavy, durable fabric, it is practical in combat and stylish in appearance. It is decorated with intricate patterns and embroidery on the back.
-ent-ClothingOuterCoatParamedicWB = paramedic windbreaker
- .desc = A paramedic's trusty windbreaker, for all the space wind.
-ent-ClothingOuterCoatSyndieCap = syndicate's coat
- .desc = The syndicate's coat is made of durable fabric, with gilded patterns.
-ent-ClothingOuterCoatSyndieCapArmored = syndicate's armored coat
- .desc = The syndicate's armored coat is made of durable fabric, with gilded patterns.
-ent-ClothingOuterCoatAMG = armored medical gown
- .desc = The version of the medical gown, with elements of a bulletproof vest, looks strange, but your heart is protected.
-ent-ClothingOuterCoatLabSeniorResearcher = senior researcher lab coat
- .desc = A suit that protects against minor chemical spills. Has a purple collar and wrist trims.
-ent-ClothingOuterCoatLabSeniorPhysician = senior physician lab coat
- .desc = A suit that protects against minor chemical spills. Has light blue sleeves and an orange waist trim.
-ent-ClothingOuterCoatSpaceAsshole = the coat of space asshole
- .desc = And there he was...
-ent-ClothingOuterCoatExpensive = expensive coat
- .desc = Very fluffy pink coat, made out of very expensive fur (clearly).
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl
deleted file mode 100644
index cf6b49312c4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl
+++ /dev/null
@@ -1,71 +0,0 @@
-ent-ClothingOuterHardsuitBasic = basic hardsuit
- .desc = A basic, universal hardsuit that protects the wearer against the horrors of life in space. Beats not having a hardsuit, at least.
-ent-ClothingOuterHardsuitAtmos = atmos hardsuit
- .desc = A special suit that protects against hazardous, low pressure environments. Has thermal shielding.
-ent-ClothingOuterHardsuitEngineering = engineering hardsuit
- .desc = A special suit that protects against hazardous, low pressure environments. Has radiation shielding.
-ent-ClothingOuterHardsuitSpatio = spationaut hardsuit
- .desc = A lightweight hardsuit designed for industrial EVA in zero gravity.
-ent-ClothingOuterHardsuitSalvage = mining hardsuit
- .desc = A special suit that protects against hazardous, low pressure environments. Has reinforced plating for wildlife encounters.
-ent-ClothingOuterHardsuitMaxim = salvager maxim hardsuit
- .desc = Fire. Heat. These things forge great weapons, they also forge great salvagers.
-ent-ClothingOuterHardsuitSecurity = security hardsuit
- .desc = A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor.
-ent-ClothingOuterHardsuitBrigmedic = brigmedic hardsuit
- .desc = Special hardsuit of the guardian angel of the brig. It is the medical version of the security hardsuit.
-ent-ClothingOuterHardsuitWarden = warden's hardsuit
- .desc = A specialized riot suit geared to combat low pressure environments.
-ent-ClothingOuterHardsuitCap = captain's armored spacesuit
- .desc = A formal armored spacesuit, made for the station's captain.
-ent-ClothingOuterHardsuitEngineeringWhite = chief engineer's hardsuit
- .desc = A special hardsuit that protects against hazardous, low pressure environments, made for the chief engineer of the station.
-ent-ClothingOuterHardsuitMedical = chief medical officer's hardsuit
- .desc = A special suit that protects against hazardous, low pressure environments. Built with lightweight materials for easier movement.
-ent-ClothingOuterHardsuitRd = experimental research hardsuit
- .desc = A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor.
-ent-ClothingOuterHardsuitSecurityRed = head of security's hardsuit
- .desc = A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor.
-ent-ClothingOuterHardsuitLuxury = luxury mining hardsuit
- .desc = A refurbished mining hardsuit, fashioned after the Quartermaster's colors. Graphene lining provides less protection, but is much easier to move.
-ent-ClothingOuterHardsuitSyndie = blood-red hardsuit
- .desc = A heavily armored hardsuit designed for work in special operations. Property of Gorlex Marauders.
-ent-ClothingOuterHardsuitSyndieMedic = blood-red medic hardsuit
- .desc = A heavily armored and agile advanced hardsuit specifically designed for field medic operations.
-ent-ClothingOuterHardsuitSyndieElite = syndicate elite hardsuit
- .desc = An elite version of the blood-red hardsuit, with improved mobility and fireproofing. Property of Gorlex Marauders.
-ent-ClothingOuterHardsuitSyndieCommander = syndicate commander hardsuit
- .desc = A bulked up version of the blood-red hardsuit, purpose-built for the commander of a syndicate operative squad. Has significantly improved armor for those deadly front-lines firefights.
-ent-ClothingOuterHardsuitJuggernaut = cybersun juggernaut suit
- .desc = A suit made by the cutting edge R&D department at cybersun to be hyper resilient.
-ent-ClothingOuterHardsuitWizard = wizard hardsuit
- .desc = A bizarre gem-encrusted suit that radiates magical energies.
-ent-ClothingOuterHardsuitLing = organic space suit
- .desc = A spaceworthy biomass of pressure and temperature resistant tissue.
-ent-ClothingOuterHardsuitPirateEVA = deep space EVA suit
- .desc = A heavy space suit that provides some basic protection from the cold harsh realities of deep space.
- .suffix = Pirate
-ent-ClothingOuterHardsuitPirateCap = pirate captain's hardsuit
- .desc = An ancient armored hardsuit, perfect for defending against space scurvy and toolbox-wielding scallywags.
-ent-ClothingOuterHardsuitERTLeader = ERT leader's hardsuit
- .desc = A protective hardsuit worn by the leader of an emergency response team.
-ent-ClothingOuterHardsuitERTChaplain = ERT chaplain's hardsuit
- .desc = A protective hardsuit worn by the chaplains of an Emergency Response Team.
-ent-ClothingOuterHardsuitERTEngineer = ERT engineer's hardsuit
- .desc = A protective hardsuit worn by the engineers of an emergency response team.
-ent-ClothingOuterHardsuitERTMedical = ERT medic's hardsuit
- .desc = A protective hardsuit worn by the medics of an emergency response team.
-ent-ClothingOuterHardsuitERTSecurity = ERT security's hardsuit
- .desc = A protective hardsuit worn by the security officers of an emergency response team.
-ent-ClothingOuterHardsuitERTJanitor = ERT janitor's hardsuit
- .desc = A protective hardsuit worn by the janitors of an emergency response team.
-ent-ClothingOuterHardsuitDeathsquad = death squad hardsuit
- .desc = An advanced hardsuit favored by commandos for use in special operations.
-ent-ClothingOuterHardsuitCBURN = CBURN exosuit
- .desc = A lightweight yet strong exosuit used for special cleanup operations.
-ent-ClothingOuterHardsuitClown = clown hardsuit
- .desc = A custom-made clown hardsuit.
-ent-ClothingOuterHardsuitMime = mime hardsuit
- .desc = A custom-made mime hardsuit.
-ent-ClothingOuterHardsuitSanta = Santa's hardsuit
- .desc = A festive, cheerful hardsuit that protects the jolly gift-giver while on sleighrides in space. Offers some resistance against asteroid strikes.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/misc.ftl
deleted file mode 100644
index b789a90957d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/misc.ftl
+++ /dev/null
@@ -1,57 +0,0 @@
-ent-ClothingOuterApron = apron
- .desc = A fancy apron for a stylish person.
-ent-ClothingOuterApronBar = apron
- .desc = A darker apron designed for bartenders.
- .suffix = Bartender
-ent-ClothingOuterApronBotanist = apron
- .desc = A thick blue-apron, perfect for insulating your soft flesh from spills, soil and thorns.
- .suffix = Botanical
-ent-ClothingOuterApronChef = apron
- .desc = An apron-jacket used by a high class chef.
- .suffix = Chef
-ent-ClothingOuterJacketChef = chef jacket
- .desc = An apron-jacket used by a high class chef.
-ent-ClothingOuterHoodieBlack = black hoodie
- .desc = Oh my God, it's a black hoodie!
-ent-ClothingOuterHoodieGrey = grey hoodie
- .desc = A grey hoodie.
-ent-ClothingOuterCardborg = cardborg costume
- .desc = An ordinary cardboard box with holes cut in the sides.
-ent-ClothingOuterHoodieChaplain = chaplain's hoodie
- .desc = Black and strict chaplain hoodie.
-ent-ClothingOuterPonchoClassic = classic poncho
- .desc = A warm and comfy classic poncho.
-ent-ClothingOuterRobesCult = cult robes
- .desc = There's no cult without classic red/crimson cult robes.
-ent-ClothingOuterRobesJudge = judge robes
- .desc = This robe commands authority.
-ent-ClothingOuterPoncho = poncho
- .desc = A warm and comfy poncho.
-ent-ClothingOuterSanta = santa suit
- .desc = Ho ho ho!
-ent-ClothingOuterWizardBase = { ent-ClothingOuterBase }
- .desc = { ent-ClothingOuterBase.desc }
-ent-ClothingOuterWizardViolet = violet wizard robes
- .desc = A bizarre gem-encrusted violet robe that radiates magical energies.
-ent-ClothingOuterWizard = wizard robes
- .desc = A bizarre gem-encrusted blue robe that radiates magical energies.
-ent-ClothingOuterWizardRed = red wizard robes
- .desc = Strange-looking, red, hat-wear that most certainly belongs to a real magic user.
-ent-ClothingOuterSkub = skub suit
- .desc = Skub is crudely written on the outside of this cylindrical suit.
-ent-ClothingOuterPlagueSuit = plague doctor suit
- .desc = A bad omen.
-ent-ClothingOuterNunRobe = nun robe
- .desc = Maximum piety in this star system.
-ent-ClothingOuterGhostSheet = ghost sheet
- .desc = Spooky!!!
-ent-ClothingOuterHospitalGown = hospital gown
- .desc = Made from the wool of slaughtered baby lambs. The cruelty makes it softer.
-ent-ClothingOuterFlannelRed = red flannel jacket
- .desc = An old fashioned red flannel jacket for space autumn.
-ent-ClothingOuterFlannelBlue = blue flannel jacket
- .desc = An old fashioned blue flannel jacket for space autumn.
-ent-ClothingOuterFlannelGreen = green flannel jacket
- .desc = An old fashioned green flannel jacket for space autumn.
-ent-ClothingOuterRedRacoon = red racoon suit
- .desc = Fluffy suit of red racoon!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl
deleted file mode 100644
index c10c9f1ce97..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-ClothingOuterHardsuitEVA = EVA suit
- .desc = A lightweight space suit with the basic ability to protect the wearer from the vacuum of space during emergencies.
-ent-ClothingOuterHardsuitSyndicate = syndicate EVA suit
- .desc = Has a tag on the back that reads: 'Totally not property of an enemy corporation, honest!'
-ent-ClothingOuterSuitEmergency = emergency EVA suit
- .desc = An emergency EVA suit with a built-in helmet. It's horribly slow and lacking in temperature protection, but enough to buy you time from the harsh vaccuum of space.
-ent-ClothingOuterHardsuitEVAPrisoner = prisoner EVA suit
- .desc = A lightweight space suit for prisoners to protect them from the vacuum of space during emergencies.
-ent-ClothingOuterHardsuitAncientEVA = NTSRA voidsuit
- .desc = An ancient space suit, designed by the NTSRA branch of CentCom. It is very finely crafted, allowing for greater mobility than most modern space suits.
-ent-ClothingOuterHardsuitVoidParamed = paramedic void suit
- .desc = A void suit made for paramedics.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/specific.ftl
deleted file mode 100644
index 27d3ff0282d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/specific.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingOuterChameleon = vest
- .desc = A thick vest with a rubbery, water-resistant shell.
- .suffix = Chameleon
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl
deleted file mode 100644
index 2abb5e1a947..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl
+++ /dev/null
@@ -1,23 +0,0 @@
-ent-ClothingOuterSuitBomb = bomb suit
- .desc = A heavy suit designed to withstand the pressure generated by a bomb and any fragments the bomb may produce.
-ent-ClothingOuterSuitJanitorBomb = janitorial bomb suit
- .desc = A heavy helmet designed to withstand explosions formed from reactions between chemicals.
- .suffix = DO NOT MAP
-ent-ClothingOuterSuitFire = fire suit
- .desc = A suit that helps protect against hazardous temperatures.
-ent-ClothingOuterSuitAtmosFire = atmos fire suit
- .desc = An expensive firesuit that protects against even the most deadly of station fires. Designed to protect even if the wearer is set aflame.
-ent-ClothingOuterSuitRad = radiation suit
- .desc = A suit that protects against radiation. The label reads, 'Made with lead. Please do not consume insulation.'
-ent-ClothingOuterSuitSpaceNinja = space ninja suit
- .desc = This black technologically advanced, cybernetically-enhanced suit provides many abilities like invisibility or teleportation.
-ent-ClothingOuterSuitChicken = chicken suit
- .desc = Bok bok bok!
-ent-ClothingOuterSuitShrineMaiden = shrine maiden outfit
- .desc = Makes you want to go deal with some troublesome youkai.
-ent-ClothingOuterSuitMonkey = monkey suit
- .desc = A suit that looks like a primate.
-ent-ClothingOuterSuitIan = ian suit
- .desc = Who's a good boy?
-ent-ClothingOuterSuitCarp = carp suit
- .desc = A special suit that makes you look just like a space carp, if your eyesight is bad.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/vests.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/vests.ftl
deleted file mode 100644
index 587eb724da9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/vests.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-ClothingOuterVestWeb = web vest
- .desc = A synthetic armor vest. This one has added webbing and ballistic plates.
-ent-ClothingOuterVestWebMerc = merc web vest
- .desc = A high-quality armored vest made from a hard synthetic material. It's surprisingly flexible and light, despite formidable armor plating.
-ent-ClothingOuterVestDetective = detective's vest
- .desc = A hard-boiled private investigator's armored vest.
-ent-ClothingOuterVestHazard = hi-viz vest
- .desc = A high-visibility vest used in work zones.
-ent-ClothingOuterVest = vest
- .desc = A thick vest with a rubbery, water-resistant shell.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/wintercoats.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/wintercoats.ftl
deleted file mode 100644
index 19b08724ab1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/wintercoats.ftl
+++ /dev/null
@@ -1,72 +0,0 @@
-ent-ClothingOuterWinterCoat = winter coat
- .desc = A heavy jacket made from 'synthetic' animal furs.
-ent-ClothingOuterWinterCoatToggleable = winter coat with hood
- .desc = { ent-ClothingOuterWinterCoat.desc }
-ent-ClothingOuterWinterAtmos = atmospherics winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterBar = bartender winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterCap = captain's winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterCargo = cargo winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterCE = chief engineer's winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterCentcom = CentCom winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterChef = chef's freezer coat
- .desc = A coat specifically designed for work inside cold storage, sorely needed by cold-blooded lizard chefs.
-ent-ClothingOuterWinterChem = chemistry winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterCMO = chief medical officer's winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterClown = clown winter coat
- .desc = { ent-ClothingOuterWinterCoat.desc }
-ent-ClothingOuterWinterEngi = engineering winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterGen = genetics winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterHoP = head of personnel's winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterHoS = head of security's armored winter coat
- .desc = A sturdy, utilitarian winter coat designed to protect a head of security from any brig-bound threats and hypothermic events.
-ent-ClothingOuterWinterHoSUnarmored = head of security's winter coat
- .desc = A sturdy coat, a warm coat, but not an armored coat.
-ent-ClothingOuterWinterHydro = hydroponics winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterJani = janitorial winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterMed = medical winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterMime = mime winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterMiner = mining winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterPara = paramedic winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterQM = quartermaster's winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterRD = research director's winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterRobo = robotics winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterSci = science winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterSec = security winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterViro = virology winter coat
- .desc = { ent-ClothingOuterWinterCoatToggleable.desc }
-ent-ClothingOuterWinterWarden = warden's armored winter coat
- .desc = A sturdy, utilitarian winter coat designed to protect a warden from any brig-bound threats and hypothermic events.
-ent-ClothingOuterWinterWardenUnarmored = warden's winter coat
- .desc = A sturdy coat, a warm coat, but not an armored coat.
-ent-ClothingOuterWinterSyndieCap = syndicate's winter coat
- .desc = The syndicate's winter coat is made of durable fabric, with gilded patterns, and coarse wool.
-ent-ClothingOuterWinterSyndieCapArmored = syndicate's armored winter coat
- .desc = The syndicate's armored winter coat is made of durable fabric, with gilded patterns, and coarse wool.
-ent-ClothingOuterWinterSyndie = syndicate's winter coat
- .desc = Insulated winter coat, looks like a merch from "Syndieland"
-ent-ClothingOuterWinterMusician = musician's winter coat
- .desc = An oversized, plasticine space tuxedo that'll have people asking "do you know me?"
-ent-ClothingOuterWinterWeb = web winter coat
- .desc = Feels like the inside of a cocoon, not that this would make you less afraid of being in one.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl
deleted file mode 100644
index 501d11856e2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-ClothingShoesBase = { ent-Clothing }
- .desc = { ent-Clothing.desc }
-ent-ClothingShoesBaseButcherable = { ent-ClothingShoesBase }
- .desc = { ent-ClothingShoesBase.desc }
-ent-ClothingShoesMilitaryBase = { ent-ClothingShoesBase }
- .desc = { ent-ClothingShoesBase.desc }
-ent-ClothingShoesBaseWinterBoots = { ent-ClothingShoesBaseButcherable }
- .desc = Fluffy boots to help survive even the coldest of winters.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl
deleted file mode 100644
index c5481adb599..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl
+++ /dev/null
@@ -1,40 +0,0 @@
-ent-ClothingShoesBootsWork = workboots
- .desc = Engineering lace-up work boots for the especially blue-collar.
-ent-ClothingShoesBootsJack = jackboots
- .desc = Nanotrasen-issue Security combat boots for combat scenarios or combat situations. All combat, all the time.
-ent-ClothingShoesBootsSalvage = salvage boots
- .desc = Steel-toed salvage boots for salvaging in hazardous environments.
-ent-ClothingShoesBootsPerformer = performer's boots
- .desc = These boots provide great traction for when you're up on stage.
-ent-ClothingShoesBootsCombat = combat boots
- .desc = Robust combat boots for combat scenarios or combat situations. All combat, all the time.
-ent-ClothingShoesHighheelBoots = high-heeled boots
- .desc = Snazy boots for when you want to be stylish, yet prepared.
-ent-ClothingShoesBootsMerc = mercenary boots
- .desc = Boots that have gone through many conflicts and that have proven their combat reliability.
-ent-ClothingShoesBootsLaceup = laceup shoes
- .desc = The height of fashion, and they're pre-polished!
-ent-ClothingShoesBootsWinter = winter boots
- .desc = { ent-ClothingShoesBaseWinterBoots.desc }
-ent-ClothingShoesBootsWinterCargo = cargo winter boots
- .desc = { ent-ClothingShoesBaseWinterBoots.desc }
-ent-ClothingShoesBootsWinterEngi = engineering winter boots
- .desc = { ent-ClothingShoesBaseWinterBoots.desc }
-ent-ClothingShoesBootsWinterMed = medical winter boots
- .desc = { ent-ClothingShoesBaseWinterBoots.desc }
-ent-ClothingShoesBootsWinterSci = science winter boots
- .desc = { ent-ClothingShoesBaseWinterBoots.desc }
-ent-ClothingShoesBootsWinterSec = security winter boots
- .desc = { ent-ClothingShoesBaseWinterBoots.desc }
-ent-ClothingShoesBootsWinterSyndicate = syndicate's winter boots
- .desc = Durable heavy boots, looks like merch from "Syndieland"
-ent-ClothingShoesBootsWinterWeb = web winter boots
- .desc = Boots made out of dense webbing to help survive even the coldest of winters.
-ent-ClothingShoesBootsCowboyBrown = brown cowboy boots
- .desc = They got spurs that jingle and/or jangle.
-ent-ClothingShoesBootsCowboyBlack = black cowboy boots
- .desc = { ent-ClothingShoesBootsCowboyBrown.desc }
-ent-ClothingShoesBootsCowboyWhite = white cowboy boots
- .desc = { ent-ClothingShoesBootsCowboyBrown.desc }
-ent-ClothingShoesBootsCowboyFancy = fancy cowboy boots
- .desc = { ent-ClothingShoesBootsCowboyBrown.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/color.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/color.ftl
deleted file mode 100644
index 501fd467862..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/color.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-ClothingShoesColorBlack = black shoes
- .desc = Stylish black shoes.
-ent-ClothingShoesColorWhite = white shoes
- .desc = Don't take them off at your office Christmas party.
-ent-ClothingShoesColorBlue = blue shoes
- .desc = Stylish blue shoes.
-ent-ClothingShoesColorBrown = brown shoes
- .desc = A pair of brown shoes.
-ent-ClothingShoesColorGreen = green shoes
- .desc = Stylish green shoes.
-ent-ClothingShoesColorOrange = orange shoes
- .desc = Stylish orange shoes.
-ent-ClothingShoesColorRed = red shoes
- .desc = Stylish red shoes.
-ent-ClothingShoesColorYellow = yellow shoes
- .desc = Stylish yellow shoes.
-ent-ClothingShoesColorPurple = purple shoes
- .desc = Stylish purple shoes.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl
deleted file mode 100644
index 946ef14d6b0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-ClothingShoesBootsMag = magboots
- .desc = Magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle.
-ent-ClothingShoesBootsMagAdv = advanced magboots
- .desc = State-of-the-art magnetic boots that do not slow down their wearer.
-ent-ClothingShoesBootsMagSci = { ent-ClothingShoesBootsMag }
- .desc = { ent-ClothingShoesBootsMag.desc }
-ent-ClothingShoesBootsMagBlinding = magboots of blinding speed
- .desc = These would look fetching on a fetcher like you.
-ent-ClothingShoesBootsMagSyndie = blood-red magboots
- .desc = Reverse-engineered magnetic boots that have a heavy magnetic pull and integrated thrusters.
-ent-ActionBaseToggleMagboots = Toggle Magboots
- .desc = Toggles the magboots on and off.
-ent-ActionToggleMagboots = { ent-ActionBaseToggleMagboots }
- .desc = { ent-ActionBaseToggleMagboots.desc }
-ent-ActionToggleMagbootsAdvanced = { ent-ActionBaseToggleMagboots }
- .desc = { ent-ActionBaseToggleMagboots.desc }
-ent-ActionToggleMagbootsSci = { ent-ActionBaseToggleMagboots }
- .desc = { ent-ActionBaseToggleMagboots.desc }
-ent-ActionToggleMagbootsSyndie = { ent-ActionBaseToggleMagboots }
- .desc = { ent-ActionBaseToggleMagboots.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl
deleted file mode 100644
index b4f549e869d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-ClothingShoesFlippers = flippers
- .desc = A pair of rubber flippers that improves swimming ability when worn.
-ent-ClothingShoesLeather = leather shoes
- .desc = Very stylish pair of boots, made from fine leather.
-ent-ClothingShoesSlippers = slippers
- .desc = Fluffy!
-ent-ClothingShoeSlippersDuck = ducky slippers
- .desc = Comfy, yet haunted by the ghosts of ducks you fed bread to as a child.
-ent-ClothingShoesTourist = tourist shoes
- .desc = These cheap sandals don't look very comfortable.
-ent-ClothingShoesDameDane = yakuza shoes
- .desc = At last...
-ent-ClothingShoesSnakeskinBoots = snakeskin boots
- .desc = Boots made of high-class snakeskin, everyone around you will be jealous.
-ent-ClothingShoesBootsSpeed = speed boots
- .desc = High-tech boots woven with quantum fibers, able to convert electricity into pure speed!
-ent-ActionToggleSpeedBoots = Toggle Speed Boots
- .desc = Toggles the speed boots on and off.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl
deleted file mode 100644
index 3d1aae7ec90..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl
+++ /dev/null
@@ -1,35 +0,0 @@
-ent-ClothingShoesChef = chef shoes
- .desc = Sturdy shoes that minimize injury from falling objects or knives.
-ent-ClothingShoesClownBase = { ent-ClothingSlotBase }
- .desc = { ent-ClothingSlotBase.desc }
-ent-ClothingShoesClown = clown shoes
- .desc = The prankster's standard-issue clowning shoes. Damn they're huge!
-ent-ClothingShoesClownBanana = banana clown shoes
- .desc = When humor and footwear combine into new levels of absurdity.
-ent-ClothingShoesBling = bling clown shoes
- .desc = Made of refined bananium and shined with the pulp of a fresh banana peel. These make a flashy statement.
-ent-ClothingShoesCult = cult shoes
- .desc = A pair of boots worn by the followers of Nar'Sie.
-ent-ClothingShoesGaloshes = galoshes
- .desc = Rubber boots.
-ent-ClothingShoesSpaceNinja = space ninja shoes
- .desc = A pair of nano-enhanced boots with built-in magnetic suction cups.
-ent-ClothingShoesSwat = swat shoes
- .desc = When you want to turn up the heat.
-ent-ClothingShoesWizard = wizard shoes
- .desc = A pair of magic shoes.
-ent-ClothingShoesChameleon = black shoes
- .desc = Stylish black shoes.
- .suffix = Chameleon
-ent-ClothingShoesChameleonNoSlips = black shoes
- .desc = Stylish black shoes.
- .suffix = No-slip, Chameleon
-ent-ClothingShoesJester = jester shoes
- .desc = A court jester's shoes, updated with modern squeaking technology.
-ent-ClothingShoesCluwne = cluwne shoes
- .desc = Cursed pair of cluwne shoes.
- .suffix = Unremoveable
-ent-ClothingShoesClownLarge = large clown shoes
- .desc = When you need to stand out in a room full of clowns!
-ent-ClothingShoesSkates = roller skates
- .desc = Get your skates on!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/under/under.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/under/under.ftl
deleted file mode 100644
index 73c7517a24d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/under/under.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ClothingUnderSocksBee = bee socks
- .desc = Make them loins buzz!
-ent-ClothingUnderSocksCoder = coder socks
- .desc = It's time to code sisters!!11!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/base_clothinguniforms.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/base_clothinguniforms.ftl
deleted file mode 100644
index e0d7b541b56..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/base_clothinguniforms.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-UnsensoredClothingUniformBase = { ent-Clothing }
- .desc = { ent-Clothing.desc }
-ent-UnsensoredClothingUniformSkirtBase = { ent-UnsensoredClothingUniformBase }
- .desc = { ent-UnsensoredClothingUniformBase.desc }
-ent-ClothingUniformBase = { ent-UnsensoredClothingUniformBase }
- .desc = { ent-UnsensoredClothingUniformBase.desc }
-ent-ClothingUniformSkirtBase = { ent-ClothingUniformBase }
- .desc = { ent-ClothingUniformBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/color_jumpskirts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/color_jumpskirts.ftl
deleted file mode 100644
index 037824dd463..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/color_jumpskirts.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-ClothingUniformJumpskirtColorWhite = white jumpskirt
- .desc = A generic white jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorGrey = grey jumpskirt
- .desc = A tasteful grey jumpskirt that reminds you of the good old days.
-ent-ClothingUniformJumpskirtColorBlack = black jumpskirt
- .desc = A generic black jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorBlue = blue jumpskirt
- .desc = A generic blue jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorDarkBlue = dark blue jumpskirt
- .desc = A generic dark blue jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorTeal = teal jumpskirt
- .desc = A generic teal jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorGreen = green jumpskirt
- .desc = A generic green jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorDarkGreen = dark green jumpskirt
- .desc = A generic dark green jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorOrange = orange jumpskirt
- .desc = Don't wear this near paranoid security officers.
-ent-ClothingUniformJumpskirtColorPink = pink jumpskirt
- .desc = Just looking at this makes you feel fabulous.
-ent-ClothingUniformJumpskirtColorRed = red jumpskirt
- .desc = A generic red jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorYellow = yellow jumpskirt
- .desc = A generic yellow jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorPurple = purple jumpskirt
- .desc = A generic light purple jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorLightBrown = light brown jumpskirt
- .desc = A generic light brown jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorBrown = brown jumpskirt
- .desc = A generic brown jumpskirt with no rank markings.
-ent-ClothingUniformJumpskirtColorMaroon = maroon jumpskirt
- .desc = A generic maroon jumpskirt with no rank markings.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/color_jumpsuits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/color_jumpsuits.ftl
deleted file mode 100644
index 02be453cd06..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/color_jumpsuits.ftl
+++ /dev/null
@@ -1,34 +0,0 @@
-ent-ClothingUniformJumpsuitColorWhite = white jumpsuit
- .desc = A generic white jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorGrey = grey jumpsuit
- .desc = A tasteful grey jumpsuit that reminds you of the good old days.
-ent-ClothingUniformJumpsuitColorBlack = black jumpsuit
- .desc = A generic black jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorBlue = blue jumpsuit
- .desc = A generic blue jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorDarkBlue = dark blue jumpsuit
- .desc = A generic dark blue jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorTeal = teal jumpsuit
- .desc = A generic teal jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorGreen = green jumpsuit
- .desc = A generic green jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorDarkGreen = dark green jumpsuit
- .desc = A generic dark green jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorOrange = orange jumpsuit
- .desc = Don't wear this near paranoid security officers.
-ent-ClothingUniformJumpsuitColorPink = pink jumpsuit
- .desc = Just looking at this makes you feel fabulous.
-ent-ClothingUniformJumpsuitColorRed = red jumpsuit
- .desc = A generic red jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorYellow = yellow jumpsuit
- .desc = A generic yellow jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorPurple = purple jumpsuit
- .desc = A generic light purple jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorLightBrown = light brown jumpsuit
- .desc = A generic light brown jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorBrown = brown jumpsuit
- .desc = A generic brown jumpsuit with no rank markings.
-ent-ClothingUniformJumpsuitColorMaroon = maroon jumpsuit
- .desc = A generic maroon jumpsuit with no rank markings.
-ent-ClothingUniformColorRainbow = rainbow jumpsuit
- .desc = A multi-colored jumpsuit!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl
deleted file mode 100644
index be847488c01..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl
+++ /dev/null
@@ -1,124 +0,0 @@
-ent-ClothingUniformJumpskirtBartender = bartender's uniform
- .desc = A nice and tidy uniform. Shame about the bar though.
-ent-ClothingUniformJumpskirtCaptain = captain's jumpskirt
- .desc = It's a blue jumpskirt with some gold markings denoting the rank of "Captain".
-ent-ClothingUniformJumpskirtCargo = cargo tech jumpskirt
- .desc = A sturdy jumpskirt, issued to members of the Cargo department.
-ent-ClothingUniformJumpskirtChiefEngineer = chief engineer's jumpskirt
- .desc = It's a high visibility jumpskirt given to those engineers insane enough to achieve the rank of Chief Engineer.
-ent-ClothingUniformJumpskirtChiefEngineerTurtle = chief engineer's turtleneck
- .desc = A yellow turtleneck designed specifically for work in conditions of the engineering department.
-ent-ClothingUniformJumpskirtChaplain = chaplain's jumpskirt
- .desc = It's a black jumpskirt, often worn by religious folk.
-ent-ClothingUniformJumpskirtChef = chef uniform
- .desc = Can't cook without this.
-ent-ClothingUniformJumpskirtChemistry = chemistry jumpskirt
- .desc = There's some odd stains on this jumpskirt. Hm.
-ent-ClothingUniformJumpskirtVirology = virology jumpskirt
- .desc = It's made of a special fiber that gives special protection against biohazards. It has a virologist rank stripe on it.
-ent-ClothingUniformJumpskirtGenetics = genetics jumpskirt
- .desc = It's made of a special fiber that gives special protection against biohazards. It has a geneticist rank stripe on it.
-ent-ClothingUniformJumpskirtCMO = chief medical officer's jumpskirt
- .desc = It's a jumpskirt worn by those with the experience to be Chief Medical Officer. It provides minor biological protection.
-ent-ClothingUniformJumpskirtCMOTurtle = chief medical officer's turtleneck jumpskirt
- .desc = It's a turtleneck worn by those with the experience to be Chief Medical Officer. It provides minor biological protection.
-ent-ClothingUniformJumpskirtDetective = hard-worn suit
- .desc = Someone who wears this means business.
-ent-ClothingUniformJumpskirtDetectiveGrey = noir suit
- .desc = A hard-boiled private investigator's grey suit, complete with tie clip.
-ent-ClothingUniformJumpskirtEngineering = engineering jumpskirt
- .desc = If this suit was non-conductive, maybe engineers would actually do their damn job.
-ent-ClothingUniformJumpskirtHoP = head of personnel's jumpskirt
- .desc = Rather bland and inoffensive. Perfect for vanishing off the face of the universe.
-ent-ClothingUniformJumpskirtHoS = head of security's jumpskirt
- .desc = It's bright red and rather crisp, much like security's victims tend to be.
-ent-ClothingUniformJumpskirtHoSAlt = head of security's turtleneck
- .desc = It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security.
-ent-ClothingUniformJumpskirtHoSParadeMale = head of security's parade uniform
- .desc = A head of security's luxury-wear, for special occasions.
-ent-ClothingUniformJumpskirtHydroponics = hydroponics jumpskirt
- .desc = Has a strong earthy smell to it. Hopefully it's merely dirty as opposed to soiled.
-ent-ClothingUniformJumpskirtJanitor = janitor jumpskirt
- .desc = The jumpskirt for the poor sop with a mop.
-ent-ClothingUniformJumpskirtMedicalDoctor = medical doctor jumpskirt
- .desc = It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel.
-ent-ClothingUniformJumpskirtMime = mime jumpskirt
- .desc = ...
-ent-ClothingUniformJumpskirtParamedic = paramedic jumpskirt
- .desc = It's got a plus on it, that's a good thing right?
-ent-ClothingUniformJumpskirtBrigmedic = brigmedic jumpskirt
- .desc = This uniform is issued to qualified personnel who have been trained. No one cares that the training took half a day.
-ent-ClothingUniformJumpskirtPrisoner = prisoner jumpskirt
- .desc = Busted.
-ent-ClothingUniformJumpskirtQM = quartermaster's jumpskirt
- .desc = What can brown do for you?
-ent-ClothingUniformJumpskirtQMTurtleneck = quartermasters's turtleneck
- .desc = A sharp turtleneck made for the hardy work environment of supply.
-ent-ClothingUniformJumpskirtResearchDirector = research director's turtleneck
- .desc = It's a turtleneck worn by those with the know-how to achieve the position of Research Director. Its fabric provides minor protection from biological contaminants.
-ent-ClothingUniformJumpskirtScientist = scientist jumpskirt
- .desc = It's made of a special fiber that increases perceived intelligence and decreases personal ethics. It has markings that denote the wearer as a scientist.
-ent-ClothingUniformJumpskirtRoboticist = roboticist jumpskirt
- .desc = It's a slimming black with reinforced seams; great for industrial work.
-ent-ClothingUniformJumpskirtSec = security jumpskirt
- .desc = A jumpskirt made of strong material, providing robust protection.
-ent-ClothingUniformJumpskirtWarden = warden's uniform
- .desc = A formal security suit for officers complete with Nanotrasen belt buckle.
-ent-ClothingUniformJumpskirtLibrarian = librarian jumpskirt
- .desc = A cosy red jumper fit for a curator of books.
-ent-ClothingUniformJumpskirtCurator = sensible skirt
- .desc = It's sensible. Too sensible...
-ent-ClothingUniformJumpskirtPerformer = performer's jumpskirt
- .desc = Hi, I'm Scott, president of Donk Pizza. Have you heard of [FAMOUS VIRTUAL PERFORMER]?
-ent-ClothingUniformJumpskirtCapFormalDress = captain's formal dress
- .desc = A dress for special occasions.
-ent-ClothingUniformJumpskirtCentcomFormalDress = central command formal dress
- .desc = A dress for special occasions
-ent-ClothingUniformJumpskirtHosFormal = hos's formal dress
- .desc = A dress for special occasions.
-ent-ClothingUniformJumpskirtOperative = operative jumpskirt
- .desc = Uniform for elite syndicate operatives performing tactical operations in deep space.
-ent-ClothingUniformJumpskirtTacticool = tacticool jumpskirt
- .desc = Uniform for subpar operative LARPers performing tactical insulated glove theft in deep space.
-ent-ClothingUniformJumpskirtAtmos = atmospheric technician jumpskirt
- .desc = I am at work. I can't leave work. Work is breathing. I am testing air quality.
-ent-ClothingUniformJumpskirtJanimaid = janitorial maid uniform
- .desc = For professionals, not the posers.
-ent-ClothingUniformJumpskirtJanimaidmini = janitorial maid uniform with miniskirt
- .desc = Elite service, not some candy wrappers.
-ent-ClothingUniformJumpskirtLawyerRed = red lawyer suitskirt
- .desc = A flashy red suitskirt worn by lawyers and show-offs.
-ent-ClothingUniformJumpskirtLawyerBlue = blue lawyer suitskirt
- .desc = A flashy blue suitskirt worn by lawyers and show-offs.
-ent-ClothingUniformJumpskirtLawyerBlack = black lawyer suitskirt
- .desc = A subtle black suitskirt worn by lawyers and gangsters.
-ent-ClothingUniformJumpskirtLawyerPurple = purple lawyer suitskirt
- .desc = A stylish purple piece worn by lawyers and show people.
-ent-ClothingUniformJumpskirtLawyerGood = good lawyer's suitskirt
- .desc = A tacky suitskirt perfect for a CRIMINAL lawyer!
-ent-ClothingUniformJumpskirtSyndieFormalDress = syndicate formal dress
- .desc = The syndicate's uniform is made in an elegant style, it's even a pity to do dirty tricks in this.
-ent-ClothingUniformJumpskirtTacticalMaid = tactical maid suitskirt
- .desc = It is assumed that the best maids should have designer suits.
-ent-ClothingUniformJumpskirtOfLife = skirt of life
- .desc = A skirt that symbolizes the joy and positivity of our life.
-ent-ClothingUniformJumpskirtSeniorEngineer = senior engineer jumpskirt
- .desc = A sign of skill and prestige within the engineering department.
-ent-ClothingUniformJumpskirtSeniorResearcher = senior researcher jumpskirt
- .desc = A sign of skill and prestige within the science department.
-ent-ClothingUniformJumpskirtSeniorPhysician = senior physician jumpskirt
- .desc = A sign of skill and prestige within the medical department.
-ent-ClothingUniformJumpskirtSeniorOfficer = senior officer jumpskirt
- .desc = A sign of skill and prestige within the security department.
-ent-ClothingUniformJumpskirtSecGrey = grey security jumpskirt
- .desc = A tactical relic of years past before Nanotrasen decided it was cheaper to dye the suits red instead of washing out the blood.
-ent-ClothingUniformJumpskirtWeb = web jumpskirt
- .desc = Makes it clear that you are one with the webs.
-ent-ClothingUniformJumpskirtCasualBlue = casual blue jumpskirt
- .desc = A loose worn blue shirt with a grey skirt, perfect for someone looking to relax.
-ent-ClothingUniformJumpskirtCasualPurple = casual purple jumpskirt
- .desc = A loose worn purple shirt with a grey skirt, perfect for someone looking to relax.
-ent-ClothingUniformJumpskirtCasualRed = casual red jumpskirt
- .desc = A loose worn red shirt with a grey skirt, perfect for someone looking to relax.
-ent-ClothingUniformJumpskirtOldDress = old dress
- .desc = A worn-looking dress from a very long time ago.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl
deleted file mode 100644
index 67a9e6c6791..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl
+++ /dev/null
@@ -1,217 +0,0 @@
-ent-ClothingUniformJumpsuitDeathSquad = death squad uniform
- .desc = Advanced armored jumpsuit used by special forces in special operations.
-ent-ClothingUniformJumpsuitAncient = ancient jumpsuit
- .desc = A terribly ragged and frayed grey jumpsuit. It looks like it hasn't been washed in over a decade.
-ent-ClothingUniformJumpsuitBartender = bartender's uniform
- .desc = A nice and tidy uniform. Shame about the bar though.
-ent-ClothingUniformJumpsuitJacketMonkey = bartender's jacket monkey
- .desc = A decent jacket, for a decent monkey.
-ent-ClothingUniformJumpsuitBartenderPurple = purple bartender's uniform
- .desc = A special purple outfit to serve drinks.
-ent-ClothingUniformJumpsuitCaptain = captain's jumpsuit
- .desc = It's a blue jumpsuit with some gold markings denoting the rank of "Captain".
-ent-ClothingUniformJumpsuitCargo = cargo tech jumpsuit
- .desc = A sturdy jumpsuit, issued to members of the Cargo department.
-ent-ClothingUniformJumpsuitSalvageSpecialist = salvage specialist's jumpsuit
- .desc = It's a snappy jumpsuit with a sturdy set of overalls. It's very dirty.
-ent-ClothingUniformJumpsuitChiefEngineer = chief engineer's jumpsuit
- .desc = It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer.
-ent-ClothingUniformJumpsuitChiefEngineerTurtle = chief engineer's turtleneck
- .desc = A yellow turtleneck designed specifically for work in conditions of the engineering department.
-ent-ClothingUniformJumpsuitChaplain = chaplain's jumpsuit
- .desc = It's a black jumpsuit, often worn by religious folk.
-ent-ClothingUniformJumpsuitCentcomAgent = CentCom agent's jumpsuit
- .desc = A suit worn by CentCom's legal team. Smells of burnt coffee.
-ent-ClothingUniformJumpsuitCentcomOfficial = CentCom officer's suit
- .desc = It's a suit worn by CentCom's highest-tier Commanders.
-ent-ClothingUniformJumpsuitCentcomOfficer = CentCom turtleneck suit
- .desc = A casual, yet refined green turtleneck, used by CentCom Officials. It has a fragrance of aloe.
-ent-ClothingUniformJumpsuitChef = chef uniform
- .desc = Can't cook without this.
-ent-ClothingUniformJumpsuitChemistry = chemistry jumpsuit
- .desc = There's some odd stains on this jumpsuit. Hm.
-ent-ClothingUniformJumpsuitVirology = virology jumpsuit
- .desc = It's made of a special fiber that gives special protection against biohazards. It has a virologist rank stripe on it.
-ent-ClothingUniformJumpsuitGenetics = genetics jumpsuit
- .desc = It's made of a special fiber that gives special protection against biohazards. It has a geneticist rank stripe on it.
-ent-ClothingUniformJumpsuitClown = clown suit
- .desc = HONK!
-ent-ClothingUniformJumpsuitClownBanana = banana clown suit
- .desc = { ent-ClothingUniformJumpsuitClown.desc }
-ent-ClothingUniformJumpsuitJester = jester suit
- .desc = A jolly dress, well suited to entertain your master, nuncle.
-ent-ClothingUniformJumpsuitJesterAlt = { ent-ClothingUniformJumpsuitJester }
- .desc = { ent-ClothingUniformJumpsuitJester.desc }
-ent-ClothingUniformJumpsuitCMO = chief medical officer's jumpsuit
- .desc = It's a jumpsuit worn by those with the experience to be Chief Medical Officer. It provides minor biological protection.
-ent-ClothingUniformJumpsuitCMOTurtle = chief medical officer's turtleneck jumpsuit
- .desc = It's a turtleneck worn by those with the experience to be Chief Medical Officer. It provides minor biological protection.
-ent-ClothingUniformJumpsuitDetective = hard-worn suit
- .desc = Someone who wears this means business.
-ent-ClothingUniformJumpsuitDetectiveGrey = noir suit
- .desc = A hard-boiled private investigator's grey suit, complete with tie clip.
-ent-ClothingUniformJumpsuitEngineering = engineering jumpsuit
- .desc = If this suit was non-conductive, maybe engineers would actually do their damn job.
-ent-ClothingUniformJumpsuitEngineeringHazard = hazard jumpsuit
- .desc = Woven in a grungy, warm orange. Lets others around you know that you really mean business when it comes to work.
-ent-ClothingUniformJumpsuitHoP = head of personnel's jumpsuit
- .desc = Rather bland and inoffensive. Perfect for vanishing off the face of the universe.
-ent-ClothingUniformJumpsuitHoS = head of security's jumpsuit
- .desc = It's bright red and rather crisp, much like security's victims tend to be.
-ent-ClothingUniformJumpsuitHoSAlt = head of security's turtleneck
- .desc = It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security.
-ent-ClothingUniformJumpsuitHoSBlue = head of security's blue jumpsuit
- .desc = A blue jumpsuit of Head of Security.
-ent-ClothingUniformJumpsuitHoSGrey = head of security's grey jumpsuit
- .desc = A grey jumpsuit of Head of Security, which make him look somewhat like a passenger.
-ent-ClothingUniformJumpsuitHoSParadeMale = head of security's parade uniform
- .desc = A male head of security's luxury-wear, for special occasions.
-ent-ClothingUniformJumpsuitHydroponics = hydroponics jumpsuit
- .desc = Has a strong earthy smell to it. Hopefully it's merely dirty as opposed to soiled.
-ent-ClothingUniformJumpsuitJanitor = janitor jumpsuit
- .desc = The jumpsuit for the poor sop with a mop.
-ent-ClothingUniformJumpsuitKimono = kimono
- .desc = traditional chinese clothing
-ent-ClothingUniformJumpsuitMedicalDoctor = medical doctor jumpsuit
- .desc = It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel.
-ent-ClothingUniformJumpsuitMime = mime suit
- .desc = ...
-ent-ClothingUniformJumpsuitParamedic = paramedic jumpsuit
- .desc = It's got a plus on it, that's a good thing right?
-ent-ClothingUniformJumpsuitBrigmedic = brigmedic jumpsuit
- .desc = This uniform is issued to qualified personnel who have been trained. No one cares that the training took half a day.
-ent-ClothingUniformJumpsuitPrisoner = prisoner jumpsuit
- .desc = Busted.
-ent-ClothingUniformJumpsuitQM = quartermaster's jumpsuit
- .desc = What can brown do for you?
-ent-ClothingUniformJumpsuitQMTurtleneck = quartermasters's turtleneck
- .desc = A sharp turtleneck made for the hardy work environment of supply.
-ent-ClothingUniformJumpsuitQMFormal = quartermasters's formal suit
- .desc = Inspired by the quartermasters of military's past, the perfect outfit for supplying a formal occasion.
-ent-ClothingUniformJumpsuitResearchDirector = research director's turtleneck
- .desc = It's a turtleneck worn by those with the know-how to achieve the position of Research Director. Its fabric provides minor protection from biological contaminants.
-ent-ClothingUniformJumpsuitScientist = scientist jumpsuit
- .desc = It's made of a special fiber that increases perceived intelligence and decreases personal ethics. It has markings that denote the wearer as a scientist.
-ent-ClothingUniformJumpsuitScientistFormal = scientist's formal jumpsuit
- .desc = A uniform for sophisticated scientists, best worn with its matching tie.
-ent-ClothingUniformJumpsuitRoboticist = roboticist jumpsuit
- .desc = It's a slimming black with reinforced seams; great for industrial work.
-ent-ClothingUniformJumpsuitSec = security jumpsuit
- .desc = A jumpsuit made of strong material, providing robust protection.
-ent-ClothingUniformJumpsuitSecBlue = blue shirt and tie
- .desc = I'm a little busy right now, Calhoun.
-ent-ClothingUniformJumpsuitSecGrey = grey security jumpsuit
- .desc = A tactical relic of years past before Nanotrasen decided it was cheaper to dye the suits red instead of washing out the blood.
-ent-ClothingUniformJumpsuitWarden = warden's uniform
- .desc = A formal security suit for officers complete with Nanotrasen belt buckle.
-ent-ClothingUniformOveralls = overalls
- .desc = Great for working outdoors.
-ent-ClothingUniformJumpsuitLibrarian = sensible suit
- .desc = It's very... sensible.
-ent-ClothingUniformJumpsuitCurator = sensible suit
- .desc = It's sensible. Too sensible...
-ent-ClothingUniformJumpsuitLawyerRed = red lawyer suit
- .desc = A flashy red suit worn by lawyers and show-offs.
-ent-ClothingUniformJumpsuitLawyerBlue = blue lawyer suit
- .desc = A flashy blue suit worn by lawyers and show-offs.
-ent-ClothingUniformJumpsuitLawyerBlack = black lawyer suit
- .desc = A subtle black suit worn by lawyers and gangsters.
-ent-ClothingUniformJumpsuitLawyerPurple = purple lawyer suit
- .desc = A stylish purple piece worn by lawyers and show people.
-ent-ClothingUniformJumpsuitLawyerGood = good lawyer's suit
- .desc = A tacky suit perfect for a CRIMINAL lawyer!
-ent-ClothingUniformJumpsuitPyjamaSyndicateBlack = black syndicate pyjamas
- .desc = For those long nights in perma.
-ent-ClothingUniformJumpsuitPyjamaSyndicatePink = pink syndicate pyjamas
- .desc = For those long nights in perma.
-ent-ClothingUniformJumpsuitPyjamaSyndicateRed = red syndicate pyjamas
- .desc = For those long nights in perma.
-ent-ClothingUniformJumpsuitNanotrasen = nanotrasen jumpsuit
- .desc = A stately blue jumpsuit to represent NanoTrasen.
-ent-ClothingUniformJumpsuitCapFormal = captain's formal suit
- .desc = A suit for special occasions.
-ent-ClothingUniformJumpsuitCentcomFormal = central command formal suit
- .desc = A suit for special occasions.
-ent-ClothingUniformJumpsuitHosFormal = hos's formal suit
- .desc = A suit for special occasions.
-ent-ClothingUniformJumpsuitOperative = operative jumpsuit
- .desc = Uniform for elite syndicate operatives performing tactical operations in deep space.
-ent-ClothingUniformJumpsuitTacticool = tacticool jumpsuit
- .desc = Uniform for subpar operative LARPers performing tactical insulated glove theft in deep space.
-ent-ClothingUniformJumpsuitMercenary = mercenary jumpsuit
- .desc = Clothing for real mercenaries who have gone through fire, water and the jungle of planets flooded with dangerous monsters or targets for which a reward has been assigned.
-ent-ClothingUniformJumpsuitNinja = ninja jumpsuit
- .desc = A nano-enhanced jumpsuit designed for maximum comfort and tacticality.
-ent-ClothingUniformJumpsuitAtmos = atmospheric technician jumpsuit
- .desc = I am at work. I can't leave work. Work is breathing. I am testing air quality.
-ent-ClothingUniformJumpsuitAtmosCasual = atmospheric technician's casual jumpsuit
- .desc = Might as well relax with a job as easy as yours.
-ent-ClothingUniformJumpsuitPsychologist = psychologist suit
- .desc = I don't lose things. I place things in locations which later elude me.
-ent-ClothingUniformJumpsuitReporter = reporter suit
- .desc = A good reporter remains a skeptic all their life.
-ent-ClothingUniformJumpsuitSafari = safari suit
- .desc = Perfect for a jungle excursion.
-ent-ClothingUniformJumpsuitJournalist = journalist suit
- .desc = If journalism is good, it is controversial, by nature.
-ent-ClothingUniformJumpsuitMonasticRobeDark = dark monastic robe
- .desc = It's a dark robe, often worn by religious folk.
-ent-ClothingUniformJumpsuitMonasticRobeLight = light monastic robe
- .desc = It's a light robe, often worn by religious folk.
-ent-ClothingUniformJumpsuitMusician = carpskin suit
- .desc = An luxurious suit made with only the finest scales, perfect for any lounge act!
-ent-ClothingUniformJumpsuitERTChaplain = ERT chaplain uniform
- .desc = A special suit made for Central Command's elite chaplain corps.
-ent-ClothingUniformJumpsuitERTEngineer = ERT engineering uniform
- .desc = A special suit made for the elite engineers under CentCom.
-ent-ClothingUniformJumpsuitERTJanitor = ERT janitorial uniform
- .desc = A special suit made for the elite janitors under CentCom.
-ent-ClothingUniformJumpsuitERTLeader = ERT leader uniform
- .desc = A special suit made for the best of the elites under CentCom.
-ent-ClothingUniformJumpsuitERTMedic = ERT medical uniform
- .desc = A special suit made for the elite medics under CentCom.
-ent-ClothingUniformJumpsuitERTSecurity = ERT security uniform
- .desc = A special suit made for the elite security under CentCom.
-ent-ClothingUniformJumpsuitCluwne = cluwne suit
- .desc = Cursed cluwne suit.
- .suffix = Unremoveable
-ent-ClothingUniformJumpsuitDameDane = yakuza outfit
- .desc = Baka mitai...
-ent-ClothingUniformJumpsuitPirate = pirate slops
- .desc = A pirate variation of a space sailor's jumpsuit.
-ent-ClothingUniformJumpsuitCossack = cossack suit
- .desc = the good old pants and brigantine.
-ent-ClothingUniformJumpsuitHawaiBlack = black hawaiian shirt
- .desc = Black as a starry night.
-ent-ClothingUniformJumpsuitHawaiBlue = blue hawaiian shirt
- .desc = Blue as a huge ocean.
-ent-ClothingUniformJumpsuitHawaiRed = red hawaiian shirt
- .desc = Red as a juicy watermelons.
-ent-ClothingUniformJumpsuitHawaiYellow = yellow hawaiian shirt
- .desc = Yellow as a bright sun.
-ent-ClothingUniformJumpsuitSyndieFormal = syndicate formal suit
- .desc = The syndicate's uniform is made in an elegant style, it's even a pity to do dirty tricks in this.
-ent-ClothingUniformJumpsuitFlannel = flannel jumpsuit
- .desc = Smells like someones been grillin'.
-ent-ClothingUniformJumpsuitSeniorEngineer = senior engineer jumpsuit
- .desc = A sign of skill and prestige within the engineering department.
-ent-ClothingUniformJumpsuitSeniorResearcher = senior researcher jumpsuit
- .desc = A sign of skill and prestige within the science department.
-ent-ClothingUniformJumpsuitSeniorPhysician = senior physician jumpsuit
- .desc = A sign of skill and prestige within the medical department.
-ent-ClothingUniformJumpsuitSeniorOfficer = senior officer jumpsuit
- .desc = A sign of skill and prestige within the security department.
-ent-ClothingUniformJumpsuitWeb = web jumpsuit
- .desc = Makes it clear that you are one with the webs.
-ent-ClothingUniformJumpsuitLoungewear = loungewear
- .desc = A long stretch of fabric that wraps around your body for comfort.
-ent-ClothingUniformJumpsuitGladiator = gladiator uniform
- .desc = Made for true gladiators (or Ash Walkers).
-ent-ClothingUniformJumpsuitCasualBlue = casual blue jumpsuit
- .desc = A loose worn blue shirt with a grey pants, perfect for someone looking to relax.
-ent-ClothingUniformJumpsuitCasualPurple = casual purple jumpsuit
- .desc = A loose worn purple shirt with a grey pants, perfect for someone looking to relax.
-ent-ClothingUniformJumpsuitCasualRed = casual red jumpsuit
- .desc = A loose worn red shirt with a grey pants, perfect for someone looking to relax.
-ent-ClothingUniformJumpsuitFamilyGuy = familiar garbs
- .desc = Makes you remember the time you did something funny.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/misc_roles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/misc_roles.ftl
deleted file mode 100644
index 7238af4ef0d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/misc_roles.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-UniformShortsRed = boxing shorts
- .desc = These are shorts, not boxers.
-ent-UniformShortsRedWithTop = boxing shorts with top
- .desc = These are shorts, not boxers.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/random_suit.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/random_suit.ftl
deleted file mode 100644
index 7e54980293f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/random_suit.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-ClothingUniformRandom = { ent-ClothingUniformBase }
- .desc = Generated by neural networks based on the latest fashion trends.
- .suffix = Random visual
-ent-ClothingRandomSpawner = random colorful costume
- .desc = { ent-ClothingUniformRandom.desc }
-ent-ClothingUniformRandomArmless = colorful hands-free costume
- .desc = { ent-ClothingUniformRandom.desc }
-ent-ClothingUniformRandomStandard = colorful costume
- .desc = { ent-ClothingUniformRandom.desc }
-ent-ClothingUniformRandomBra = colorful bra
- .desc = { ent-ClothingUniformRandom.desc }
-ent-ClothingUniformRandomShorts = colorful pants
- .desc = { ent-ClothingUniformRandom.desc }
-ent-ClothingUniformRandomShirt = colorful costume
- .desc = { ent-ClothingUniformRandom.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/scrubs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/scrubs.ftl
deleted file mode 100644
index 8a6377ccc25..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/scrubs.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-UniformScrubsColorPurple = purple scrubs
- .desc = A combination of comfort and utility intended to make removing every last organ someone has and selling them to a space robot much more official looking.
-ent-UniformScrubsColorGreen = green scrubs
- .desc = A combination of comfort and utility intended to make removing every last organ someone has and selling them to a space robot much more official looking.
-ent-UniformScrubsColorBlue = blue scrubs
- .desc = A combination of comfort and utility intended to make removing every last organ someone has and selling them to a space robot much more official looking.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/ship_vs_ship.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/ship_vs_ship.ftl
deleted file mode 100644
index dc57a96d018..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/ship_vs_ship.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-ClothingUniformJumpsuitRecruitNT = recruit jumpsuit
- .desc = A classy grey jumpsuit with blue trims. Perfect for the dignified helper.
-ent-ClothingUniformJumpsuitRecruitSyndie = syndicate recuit jumpsuit
- .desc = A dubious,, dark-grey jumpsuit. As if passengers weren't dubious enough already.
-ent-ClothingUniformJumpsuitRepairmanNT = repairman jumpsuit
- .desc = A jumpsuit that reminds you of a certain crew-sector work position. Hopefully, you won't have to do the same job as THOSE freaks.
-ent-ClothingUniformJumpsuitRepairmanSyndie = syndicate repairman jumpsuit
- .desc = Functional, fashionable, and badass. Nanotrasen's engineers wish they could look as good as this.
-ent-ClothingUniformJumpsuitParamedicNT = paramedic jumpsuit
- .desc = A basic white & blue jumpsuit made for Nanotrasen paramedics stationed in combat sectors.
-ent-ClothingUniformJumpsuitParamedicSyndie = syndicate paramedic jumpsuit
- .desc = For some reason, wearing this makes you feel like you're awfully close to violating the Geneva Convention.
-ent-ClothingUniformJumpsuitChiefEngineerNT = chief engineer jumpsuit
- .desc = It is often joked that the role of the combat-sector Chief Engineer is where the actual, logistically-minded engineers are promoted to. Good luck.
-ent-ClothingUniformJumpsuitChiefEngineerSyndie = syndicate chief engineer jumpsuit
- .desc = An evil-looking jumpsuit with a reflective vest & red undershirt.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/specific.ftl
deleted file mode 100644
index b491e9e229e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/specific.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClothingUniformJumpsuitChameleon = black jumpsuit
- .desc = A generic black jumpsuit with no rank markings.
- .suffix = Chameleon
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/clicktest.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/clicktest.ftl
deleted file mode 100644
index 9108061faee..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/clicktest.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-ClickTestBase = { "" }
- .suffix = DEBUG
- .desc = { "" }
-ent-ClickTestRotatingCornerVisible = ClickTestRotatingCornerVisible
- .desc = { ent-ClickTestBase.desc }
-ent-ClickTestRotatingCornerVisibleNoRot = ClickTestRotatingCornerVisibleNoRot
- .desc = { ent-ClickTestRotatingCornerVisible.desc }
-ent-ClickTestRotatingCornerInvisible = ClickTestRotatingCornerInvisible
- .desc = { ent-ClickTestBase.desc }
-ent-ClickTestRotatingCornerInvisibleNoRot = ClickTestRotatingCornerInvisibleNoRot
- .desc = { ent-ClickTestRotatingCornerInvisible.desc }
-ent-ClickTestFixedCornerVisible = ClickTestFixedCornerVisible
- .desc = { ent-ClickTestBase.desc }
-ent-ClickTestFixedCornerInvisible = ClickTestFixedCornerInvisible
- .desc = { ent-ClickTestBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/debug_sweps.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/debug_sweps.ftl
deleted file mode 100644
index fa8c812d5c4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/debug_sweps.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-WeaponPistolDebug = bang, ded
- .desc = ded
- .suffix = DEBUG
-ent-MagazinePistolDebug = bang, ded mag
- .suffix = DEBUG
- .desc = { ent-BaseMagazinePistol.desc }
-ent-BulletDebug = bang, ded bullet
- .suffix = DEBUG
- .desc = { ent-BaseBullet.desc }
-ent-CartridgeDebug = bang, ded cartridge
- .suffix = DEBUG
- .desc = { ent-BaseCartridgePistol.desc }
-ent-MeleeDebugGib = bang stick gibber
- .desc = hit hard ye
- .suffix = DEBUG
-ent-MeleeDebug100 = bang stick 100dmg
- .desc = { ent-MeleeDebugGib.desc }
-ent-MeleeDebug200 = bang stick 200dmg
- .desc = { ent-MeleeDebugGib.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/drugs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/drugs.ftl
deleted file mode 100644
index 4d33d577341..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/drugs.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-DrinkMeth = meth
- .desc = Just a whole glass of meth.
- .suffix = DEBUG
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/item.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/item.ftl
deleted file mode 100644
index aa03dd8d025..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/item.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-DebugItemShapeWeird = weirdly shaped item
- .desc = What is it...?
- .suffix = DEBUG
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/options_visualizer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/options_visualizer.ftl
deleted file mode 100644
index bd3f150c84a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/options_visualizer.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-OptionsVisualizerTest = { "" }
- .suffix = DEBUG
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/rotation_marker.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/rotation_marker.ftl
deleted file mode 100644
index f07b99412f0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/rotation_marker.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-debugRotation1 = dbg_rotation1
- .suffix = DEBUG
- .desc = { "" }
-ent-debugRotation4 = dbg_rotation4
- .suffix = DEBUG
- .desc = { "" }
-ent-debugRotationTex = dbg_rotationTex
- .suffix = DEBUG
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/spanisharmyknife.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/spanisharmyknife.ftl
deleted file mode 100644
index 7edba990862..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/spanisharmyknife.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ToolDebug = spanish army knife
- .desc = The pain of using this is almost too great to bear.
- .suffix = DEBUG
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/stress_test.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/stress_test.ftl
deleted file mode 100644
index 52ce8c93d10..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/stress_test.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-StressTest = stress test
- .suffix = DEBUG
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/tippy.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/tippy.ftl
deleted file mode 100644
index aefa8d8ba31..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/debugging/tippy.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Tippy = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/acidifer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/acidifer.ftl
deleted file mode 100644
index 1af1729b825..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/acidifer.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Acidifier = acid
- .desc = Melts you into a puddle of yuck!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/acidifier.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/acidifier.ftl
deleted file mode 100644
index 1af1729b825..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/acidifier.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Acidifier = acid
- .desc = Melts you into a puddle of yuck!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/admin_triggers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/admin_triggers.ftl
deleted file mode 100644
index f019b1a4817..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/admin_triggers.ftl
+++ /dev/null
@@ -1,23 +0,0 @@
-ent-AdminInstantEffectBase = instant effect
- .desc = { "" }
-ent-AdminInstantEffectEMP = { ent-AdminInstantEffectBase }
- .suffix = EMP
- .desc = { ent-AdminInstantEffectBase.desc }
-ent-AdminInstantEffectFlash = { ent-AdminInstantEffectBase }
- .suffix = Flash
- .desc = { ent-AdminInstantEffectBase.desc }
-ent-AdminInstantEffectSmoke3 = { ent-AdminInstantEffectBase }
- .suffix = Smoke (03 sec)
- .desc = { ent-AdminInstantEffectBase.desc }
-ent-AdminInstantEffectSmoke10 = { ent-AdminInstantEffectBase }
- .suffix = Smoke (10 sec)
- .desc = { ent-AdminInstantEffectBase.desc }
-ent-AdminInstantEffectSmoke30 = { ent-AdminInstantEffectBase }
- .suffix = Smoke (30 sec)
- .desc = { ent-AdminInstantEffectBase.desc }
-ent-AdminInstantEffectTearGas = { ent-AdminInstantEffectBase }
- .suffix = Tear Gas
- .desc = { ent-AdminInstantEffectBase.desc }
-ent-AdminInstantEffectGravityWell = { ent-AdminInstantEffectBase }
- .suffix = Gravity Well
- .desc = { ent-AdminInstantEffectBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/ambient_sounds.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/ambient_sounds.ftl
deleted file mode 100644
index 7db60a0156b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/ambient_sounds.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-AmbientSoundSourceFlies = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/bluespace_flash.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/bluespace_flash.ftl
deleted file mode 100644
index 9f1acb279ae..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/bluespace_flash.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-EffectFlashBluespace = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl
deleted file mode 100644
index e5cf2be90cf..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-BaseFoam = { "" }
- .desc = { "" }
-ent-Smoke = smoke
- .desc = { ent-BaseFoam.desc }
-ent-Foam = foam
- .desc = { ent-BaseFoam.desc }
-ent-MetalFoam = metal foam
- .desc = { ent-Foam.desc }
-ent-IronMetalFoam = iron metal foam
- .desc = { ent-MetalFoam.desc }
-ent-AluminiumMetalFoam = aluminium metal foam
- .desc = { ent-MetalFoam.desc }
-ent-BaseFoamedMetal = base foamed metal
- .desc = { "" }
-ent-FoamedIronMetal = foamed iron metal
- .desc = For sealing hull breaches.
-ent-FoamedAluminiumMetal = foamed aluminium metal
- .desc = For sealing hull breaches.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/emp_effects.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/emp_effects.ftl
deleted file mode 100644
index ffa460adf47..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/emp_effects.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-EffectEmpPulse = { "" }
- .desc = { "" }
-ent-EffectEmpDisabled = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/exclamation.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/exclamation.ftl
deleted file mode 100644
index 5e0c25609da..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/exclamation.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-Exclamation = exclamation
- .desc = { "" }
-ent-WhistleExclamation = exclamation
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/explosion_light.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/explosion_light.ftl
deleted file mode 100644
index 55d2b3ee108..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/explosion_light.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ExplosionLight = explosion light
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/hearts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/hearts.ftl
deleted file mode 100644
index b2be5326f2e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/hearts.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-EffectHearts = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/lightning.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/lightning.ftl
deleted file mode 100644
index d619733714f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/lightning.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-BaseLightning = lightning
- .desc = { "" }
-ent-Lightning = lightning
- .desc = { ent-BaseLightning.desc }
-ent-LightningRevenant = spooky lightning
- .desc = { ent-BaseLightning.desc }
-ent-ChargedLightning = charged lightning
- .desc = { ent-BaseLightning.desc }
-ent-Spark = lightning
- .desc = { ent-BaseLightning.desc }
-ent-SuperchargedLightning = supercharged lightning
- .desc = { ent-ChargedLightning.desc }
-ent-HyperchargedLightning = hypercharged lightning
- .desc = { ent-ChargedLightning.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/mobspawn.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/mobspawn.ftl
deleted file mode 100644
index 3490f234331..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/mobspawn.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-MobSpawnCrabQuartz = mobspawner quartzcrab
- .desc = { "" }
-ent-MobSpawnCrabIron = mobspawner ironcrab
- .desc = { ent-MobSpawnCrabQuartz.desc }
-ent-MobSpawnCrabSilver = mobspawner silvercrab
- .desc = { ent-MobSpawnCrabQuartz.desc }
-ent-MobSpawnCrabUranium = mobspawner uraniumcrab
- .desc = { ent-MobSpawnCrabQuartz.desc }
-ent-EffectAnomalyFloraBulb = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/portal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/portal.ftl
deleted file mode 100644
index 74a849a33fb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/portal.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-BasePortal = bluespace portal
- .desc = Transports you to a linked destination!
-ent-PortalRed = { ent-BasePortal }
- .desc = This one looks more like a redspace portal.
-ent-PortalBlue = { ent-BasePortal }
- .desc = { ent-BasePortal.desc }
-ent-PortalArtifact = { ent-BasePortal }
- .desc = { ent-BasePortal.desc }
-ent-PortalGatewayBlue = { ent-BasePortal }
- .desc = { ent-BasePortal.desc }
-ent-PortalGatewayOrange = { ent-BasePortal }
- .desc = { ent-BasePortal.desc }
-ent-ShadowPortal = shadow rift
- .desc = Looks unstable.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/puddle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/puddle.ftl
deleted file mode 100644
index 4d08ec02945..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/puddle.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-PuddleTemporary = { ent-Puddle }
- .desc = { ent-Puddle.desc }
-ent-PuddleSmear = { ent-PuddleTemporary }
- .suffix = Smear
- .desc = { ent-PuddleTemporary.desc }
-ent-PuddleVomit = { ent-PuddleTemporary }
- .suffix = Vomit
- .desc = { ent-PuddleTemporary.desc }
-ent-PuddleEgg = { ent-PuddleTemporary }
- .suffix = Egg
- .desc = { ent-PuddleTemporary.desc }
-ent-PuddleTomato = { ent-PuddleTemporary }
- .suffix = Tomato
- .desc = { ent-PuddleTemporary.desc }
-ent-PuddleWatermelon = { ent-PuddleTemporary }
- .suffix = Watermelon
- .desc = { ent-PuddleTemporary.desc }
-ent-PuddleFlour = { ent-PuddleTemporary }
- .suffix = Flour
- .desc = { ent-PuddleTemporary.desc }
-ent-PuddleSparkle = sparkle
- .desc = { "" }
-ent-Puddle = puddle
- .desc = A puddle of liquid.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/radiation.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/radiation.ftl
deleted file mode 100644
index c577fae1472..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/radiation.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RadiationPulse = shimmering anomaly
- .desc = Looking at this anomaly makes you feel strange, like something is pushing at your eyes.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/rcd.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/rcd.ftl
deleted file mode 100644
index 37a7e669feb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/rcd.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-EffectRCDBase = { "" }
- .desc = { "" }
-ent-EffectRCDDeconstructPreview = { ent-EffectRCDBase }
- .desc = { ent-EffectRCDBase.desc }
-ent-EffectRCDConstruct0 = { ent-EffectRCDBase }
- .desc = { ent-EffectRCDBase.desc }
-ent-EffectRCDConstruct1 = { ent-EffectRCDBase }
- .desc = { ent-EffectRCDBase.desc }
-ent-EffectRCDConstruct2 = { ent-EffectRCDBase }
- .desc = { ent-EffectRCDBase.desc }
-ent-EffectRCDConstruct3 = { ent-EffectRCDBase }
- .desc = { ent-EffectRCDBase.desc }
-ent-EffectRCDConstruct4 = { ent-EffectRCDBase }
- .desc = { ent-EffectRCDBase.desc }
-ent-EffectRCDDeconstruct2 = { ent-EffectRCDBase }
- .desc = { ent-EffectRCDBase.desc }
-ent-EffectRCDDeconstruct4 = { ent-EffectRCDBase }
- .desc = { ent-EffectRCDBase.desc }
-ent-EffectRCDDeconstruct6 = { ent-EffectRCDBase }
- .desc = { ent-EffectRCDBase.desc }
-ent-EffectRCDDeconstruct8 = { ent-EffectRCDBase }
- .desc = { ent-EffectRCDBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/sparks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/sparks.ftl
deleted file mode 100644
index 6c9d3bfef34..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/sparks.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-EffectSparks = { "" }
- .desc = { "" }
-ent-EffectTeslaSparks = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/wallspawn.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/wallspawn.ftl
deleted file mode 100644
index f253569a0f9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/wallspawn.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-WallSpawnAsteroid = { "" }
- .desc = { "" }
-ent-WallSpawnAsteroidUraniumCrab = { ent-WallSpawnAsteroid }
- .desc = { ent-WallSpawnAsteroid.desc }
-ent-WallSpawnAsteroidUranium = { ent-WallSpawnAsteroid }
- .desc = { ent-WallSpawnAsteroid.desc }
-ent-WallSpawnAsteroidQuartzCrab = { ent-WallSpawnAsteroid }
- .desc = { ent-WallSpawnAsteroid.desc }
-ent-WallSpawnAsteroidQuartz = { ent-WallSpawnAsteroid }
- .desc = { ent-WallSpawnAsteroid.desc }
-ent-WallSpawnAsteroidSilverCrab = { ent-WallSpawnAsteroid }
- .desc = { ent-WallSpawnAsteroid.desc }
-ent-WallSpawnAsteroidSilver = { ent-WallSpawnAsteroid }
- .desc = { ent-WallSpawnAsteroid.desc }
-ent-WallSpawnAsteroidIronCrab = { ent-WallSpawnAsteroid }
- .desc = { ent-WallSpawnAsteroid.desc }
-ent-WallSpawnAsteroidIron = { ent-WallSpawnAsteroid }
- .desc = { ent-WallSpawnAsteroid.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/weapon_arc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/weapon_arc.ftl
deleted file mode 100644
index acd4400f34f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/weapon_arc.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-WeaponArcStatic = { "" }
- .desc = { "" }
-ent-WeaponArcAnimated = { "" }
- .desc = { "" }
-ent-WeaponArcThrust = { ent-WeaponArcStatic }
- .desc = { ent-WeaponArcStatic.desc }
-ent-WeaponArcSlash = { ent-WeaponArcStatic }
- .desc = { ent-WeaponArcStatic.desc }
-ent-WeaponArcBite = { ent-WeaponArcStatic }
- .desc = { ent-WeaponArcStatic.desc }
-ent-WeaponArcClaw = { ent-WeaponArcStatic }
- .desc = { ent-WeaponArcStatic.desc }
-ent-WeaponArcDisarm = { ent-WeaponArcAnimated }
- .desc = { ent-WeaponArcAnimated.desc }
-ent-WeaponArcFist = { ent-WeaponArcStatic }
- .desc = { ent-WeaponArcStatic.desc }
-ent-WeaponArcPunch = { ent-WeaponArcStatic }
- .desc = { ent-WeaponArcStatic.desc }
-ent-WeaponArcKick = { ent-WeaponArcStatic }
- .desc = { ent-WeaponArcStatic.desc }
-ent-WeaponArcSmash = { ent-WeaponArcStatic }
- .desc = { ent-WeaponArcStatic.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/foldable.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/foldable.ftl
deleted file mode 100644
index 5527068eeb7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/foldable.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BaseFoldable = foldable
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/anti_anomaly_zone.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/anti_anomaly_zone.ftl
deleted file mode 100644
index e3e0dd242c0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/anti_anomaly_zone.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-AntiAnomalyZone = anti anomaly zone
- .desc = Anomalies will not be able to appear within a 10 block radius of this point.
- .suffix = range 10
-ent-AntiAnomalyZone20 = { ent-AntiAnomalyZone }
- .desc = Anomalies will not be able to appear within a 20 block radius of this point.
- .suffix = range 20
-ent-AntiAnomalyZone50 = { ent-AntiAnomalyZone }
- .desc = Anomalies will not be able to appear within a 50 block radius of this point.
- .suffix = range 50
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/atmos_blocker.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/atmos_blocker.ftl
deleted file mode 100644
index 604617b3f6d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/atmos_blocker.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-AtmosFixBlockerMarker = Atmos Fix Vacuum Marker
- .desc = Vacuum, T20C
-ent-AtmosFixOxygenMarker = Atmos Fix Oxygen Marker
- .desc = Oxygen @ gas miner pressure, T20C
-ent-AtmosFixNitrogenMarker = Atmos Fix Nitrogen Marker
- .desc = Nitrogen @ gas miner pressure, T20C
-ent-AtmosFixPlasmaMarker = Atmos Fix Plasma Marker
- .desc = Plasma @ gas miner pressure, T20C
-ent-AtmosFixInstantPlasmaFireMarker = Atmos Fix Instant Plasmafire Marker
- .desc = INSTANT PLASMAFIRE
-ent-AtmosFixFreezerMarker = Atmos Fix Freezer Marker
- .desc = Change air temp to 235K, for freezer with a big of wiggle room to get set up.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/clientsideclone.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/clientsideclone.ftl
deleted file mode 100644
index a53770962ce..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/clientsideclone.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-clientsideclone = clientsideclone
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/construction_ghost.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/construction_ghost.ftl
deleted file mode 100644
index 100db82fd7a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/construction_ghost.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-constructionghost = construction ghost
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/drag_shadow.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/drag_shadow.ftl
deleted file mode 100644
index bc4dd916735..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/drag_shadow.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-dragshadow = drag shadow
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/hover_entity.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/hover_entity.ftl
deleted file mode 100644
index 23781cfc2df..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/hover_entity.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-hoverentity = hover entity
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/marker_base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/marker_base.ftl
deleted file mode 100644
index c0a2811372a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/marker_base.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MarkerBase = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/npc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/npc.ftl
deleted file mode 100644
index a519a1e5e5a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/npc.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PathfindPoint = pathfind point
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/pointing.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/pointing.ftl
deleted file mode 100644
index cef4d9d86c7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/pointing.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PointingArrow = pointing arrow
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/rooms.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/rooms.ftl
deleted file mode 100644
index 39dbb7a9240..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/rooms.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-BaseRoomMarker = Room marker
- .suffix = Weh
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/shuttle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/shuttle.ftl
deleted file mode 100644
index 580e5467a65..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/shuttle.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-FTLPoint = FTL point
- .desc = { ent-MarkerBase.desc }
-ent-FTLExclusion = FTL exclusion point
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/bots.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/bots.ftl
deleted file mode 100644
index e19a153223e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/bots.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-SpawnMobMedibot = medibot spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCleanBot = cleanbot spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/nukies.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/nukies.ftl
deleted file mode 100644
index d96836c8045..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/nukies.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SpawnPointNukies = nukies
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/pirates.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/pirates.ftl
deleted file mode 100644
index 53c7963a96e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/pirates.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SpawnPointPirates = Pirate spawn point
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/suspicion.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/suspicion.ftl
deleted file mode 100644
index 46909f50f10..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/suspicion.ftl
+++ /dev/null
@@ -1,45 +0,0 @@
-ent-SuspicionRifleSpawner = Suspicion Rifle Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionPistolSpawner = Suspicion Pistol Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionMeleeSpawner = Suspicion Melee Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionRevolverSpawner = Suspicion Revolver Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionShotgunSpawner = Suspicion Shotgun Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionSMGSpawner = Suspicion SMG Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionSniperSpawner = Suspicion Sniper Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionHitscanSpawner = Suspicion Hitscan Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionLaunchersSpawner = Suspicion Launchers Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionGrenadesSpawner = Suspicion Grenades Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionRifleMagazineSpawner = Suspicion Rifle Ammo Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionShotgunMagazineSpawner = Suspicion Shotgun Ammo Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionPistolMagazineSpawner = Suspicion Pistol Ammo Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionMagnumMagazineSpawner = Suspicion Magnum Ammo Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
-ent-SuspicionLauncherAmmoSpawner = Suspicion Launcher Ammo Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/timed.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/timed.ftl
deleted file mode 100644
index f437535014a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/timed.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-AITimedSpawner = AI Timed Spawner
- .desc = { ent-MarkerBase.desc }
-ent-XenoAITimedSpawner = Xeno AI Timed Spawner
- .desc = { ent-MarkerBase.desc }
-ent-MouseTimedSpawner = Mouse Timed Spawner
- .desc = { ent-MarkerBase.desc }
-ent-CockroachTimedSpawner = Cockroach Timed Spawner
- .desc = { ent-MouseTimedSpawner.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/traitordm.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/traitordm.ftl
deleted file mode 100644
index 11f66bdb3b7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/conditional/traitordm.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-TraitorDMRedemptionMachineSpawner = PDA Redemption Machine Spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/corpses.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/corpses.ftl
deleted file mode 100644
index 1beeacb57f4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/corpses.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-SalvageHumanCorpseSpawner = Human Corpse Spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomServiceCorpseSpawner = Random Service Corpse Spawner
- .desc = { ent-SalvageHumanCorpseSpawner.desc }
-ent-RandomEngineerCorpseSpawner = Random Engineer Corpse Spawner
- .desc = { ent-SalvageHumanCorpseSpawner.desc }
-ent-RandomCargoCorpseSpawner = Random Cargo Corpse Spawner
- .desc = { ent-SalvageHumanCorpseSpawner.desc }
-ent-RandomMedicCorpseSpawner = Random Medic Corpse Spawner
- .desc = { ent-SalvageHumanCorpseSpawner.desc }
-ent-RandomScienceCorpseSpawner = Random Science Corpse Spawner
- .desc = { ent-SalvageHumanCorpseSpawner.desc }
-ent-RandomSecurityCorpseSpawner = Random Security Corpse Spawner
- .desc = { ent-SalvageHumanCorpseSpawner.desc }
-ent-RandomCommandCorpseSpawner = Random Command Corpse Spawner
- .desc = { ent-SalvageHumanCorpseSpawner.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/debug.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/debug.ftl
deleted file mode 100644
index b56187a8db9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/debug.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-SpawnMobHuman = Urist Spawner
- .suffix = DEBUG
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/drinks_bottles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/drinks_bottles.ftl
deleted file mode 100644
index 6b7bbd59b37..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/drinks_bottles.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomDrinkBottle = random drink spawner
- .suffix = Bottle
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/drinks_glass.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/drinks_glass.ftl
deleted file mode 100644
index 92baa0c6d31..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/drinks_glass.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomDrinkGlass = random drink spawner
- .suffix = Glass
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_baked_single.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_baked_single.ftl
deleted file mode 100644
index 71d2f6226fe..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_baked_single.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomFoodBakedSingle = random baked food spawner
- .suffix = Single Serving
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_baked_whole.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_baked_whole.ftl
deleted file mode 100644
index 4049add49b3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_baked_whole.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomFoodBakedWhole = random baked food spawner
- .suffix = Whole
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_meal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_meal.ftl
deleted file mode 100644
index 2110e1d4630..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_meal.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomFoodMeal = random food spawner
- .suffix = Meal
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_single.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_single.ftl
deleted file mode 100644
index ac1cc4274b5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_single.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomFoodSingle = random food spawner
- .suffix = Single Serving
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_snacks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_snacks.ftl
deleted file mode 100644
index e55110c8bfd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/food_drinks/food_snacks.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomSnacks = random snack spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl
deleted file mode 100644
index 8b7a5da047c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl
+++ /dev/null
@@ -1,27 +0,0 @@
-ent-BaseAntagSpawner = ghost role spawn point
- .desc = { ent-MarkerBase.desc }
-ent-SpawnPointGhostRatKing = ghost role spawn point
- .suffix = rat king
- .desc = { ent-MarkerBase.desc }
-ent-SpawnPointGhostRemilia = ghost role spawn point
- .suffix = Remilia
- .desc = { ent-MarkerBase.desc }
-ent-SpawnPointGhostCerberus = ghost role spawn point
- .suffix = cerberus
- .desc = { ent-MarkerBase.desc }
-ent-SpawnPointGhostNukeOperative = ghost role spawn point
- .suffix = nukeops
- .desc = { ent-MarkerBase.desc }
-ent-SpawnPointLoneNukeOperative = { ent-BaseAntagSpawner }
- .desc = { ent-BaseAntagSpawner.desc }
-ent-SpawnPointNukeopsCommander = { ent-SpawnPointLoneNukeOperative }
- .desc = { ent-SpawnPointLoneNukeOperative.desc }
-ent-SpawnPointNukeopsMedic = { ent-SpawnPointLoneNukeOperative }
- .desc = { ent-SpawnPointLoneNukeOperative.desc }
-ent-SpawnPointNukeopsOperative = { ent-SpawnPointLoneNukeOperative }
- .desc = { ent-SpawnPointLoneNukeOperative.desc }
-ent-SpawnPointGhostDragon = { ent-BaseAntagSpawner }
- .desc = { ent-BaseAntagSpawner.desc }
-ent-SpawnPointGhostSpaceNinja = ghost role spawn point
- .suffix = space ninja
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/human.ftl
deleted file mode 100644
index d61635a4507..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/human.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-SpawnMobSyndicateFootSoldier = syndicate footsoldier spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobSyndicateFootsoldierPilot = syndicate shuttle pilot spawner
- .desc = { ent-SpawnMobSyndicateFootSoldier.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl
deleted file mode 100644
index 33134932e6d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl
+++ /dev/null
@@ -1,99 +0,0 @@
-ent-SpawnPointJobBase = { ent-MarkerBase }
- .suffix = Job Spawn
- .desc = { ent-MarkerBase.desc }
-ent-SpawnPointObserver = observer spawn point
- .desc = { ent-MarkerBase.desc }
-ent-SpawnPointLatejoin = latejoin spawn point
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointQuartermaster = quartermaster
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointCargoTechnician = cargotechnician
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointSalvageSpecialist = salvagespecialist
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointPassenger = passenger
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointTechnicalAssistant = technical assistant
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointMedicalIntern = medical intern
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointSecurityCadet = security cadet
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointResearchAssistant = research assistant
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointServiceWorker = service worker
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointBartender = bartender
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointChef = chef
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointBotanist = botanist
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointClown = clown
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointMime = mime
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointChaplain = chaplain
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointLibrarian = librarian
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointLawyer = lawyer
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointJanitor = janitor
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointMusician = musician
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointBoxer = boxer
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointBorg = cyborg
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointCaptain = captain
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointHeadOfPersonnel = headofpersonnel
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointChiefEngineer = chiefengineer
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointStationEngineer = stationengineer
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointAtmos = atmospherics
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointChiefMedicalOfficer = chiefmedicalofficer
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointMedicalDoctor = medicaldoctor
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointParamedic = paramedic
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointChemist = chemist
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointResearchDirector = researchdirector
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointScientist = scientist
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointHeadOfSecurity = headofsecurity
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointWarden = warden
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointSecurityOfficer = securityofficer
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointDetective = detective
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointBrigmedic = brigmedic
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointERTLeader = ERTleader
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointERTChaplain = ERTchaplain
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointERTEngineer = ERTengineer
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointERTMedical = ERTmedical
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointERTSecurity = ERTsecurity
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointERTJanitor = ERTjanitor
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointReporter = reporter
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointPsychologist = psychologist
- .desc = { ent-SpawnPointJobBase.desc }
-ent-SpawnPointZookeeper = zookeeper
- .desc = { ent-SpawnPointJobBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/mechs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/mechs.ftl
deleted file mode 100644
index e0f00d19469..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/mechs.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-SpawnMechRipley = Ripley APLU Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMechHonker = H.O.N.K. Spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl
deleted file mode 100644
index 10495d6b083..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl
+++ /dev/null
@@ -1,122 +0,0 @@
-ent-SpawnMobMouse = Mouse Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCockroach = Cockroach Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCorgi = HoP Corgi Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobPossumMorty = Possum Morty Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobRaccoonMorticia = Raccoon Morticia Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobFoxRenault = Fox Renault Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCatRuntime = Runtime Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCatException = Exception Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCrabAtmos = Tropico Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCatFloppa = Floppa Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCatBingus = Bingus Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCatSpace = Space Cat Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCatKitten = Kitten Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCat = Cat Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCatGeneric = Generic Cat Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobBandito = Bandito Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobMcGriff = McGriff Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobSlothPaperwork = Sloth Paperwork Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobWalter = Walter Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobBear = Space Bear Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCarp = Space Carp Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCarpMagic = Magicarp Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCarpHolo = Holocarp Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobShark = Space Sharkminnow Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobHamsterHamlet = Hamster Hamlet Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobAlexander = Alexander Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobShiva = Shiva Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobKangarooWillow = Willow Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobKangaroo = Space Kangaroo Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobBoxingKangaroo = Boxing Kangaroo Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobSpaceSpider = Space Spider Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobSpaceCobra = Space Cobra Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobAdultSlimesBlue = Slimes Spawner Blue
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobAdultSlimesBlueAngry = Slimes Spawner Blue Angry
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobAdultSlimesGreen = Slimes Spawner Green
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobAdultSlimesGreenAngry = Slimes Spawner Green Angry
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobAdultSlimesYellow = Slimes Spawner Yellow
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobAdultSlimesYellowAngry = Slimes Spawner Yellow Angry
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobSmile = Smile Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobMonkeyPunpun = Pun Pun Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobBehonker = behonker Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobMonkey = Monkey Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobPurpleSnake = Purple Snake Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobSmallPurpleSnake = Small Purple Snake Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobSlug = Slug Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobLizard = Lizard Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCrab = Crab Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobGoat = Goat Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobFrog = Frog Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobBee = Bee Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobParrot = Parrot Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobButterfly = Butterfly Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCow = Cow Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobGorilla = Gorilla Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobPenguin = Penguin Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobHellspawn = Hellspawn Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobOreCrab = ore crab spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobLuminousPerson = luminous person spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobLuminousObject = luminous object spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobLuminousEntity = luminous entity spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnClownSpider = clown spider spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/altars.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/altars.ftl
deleted file mode 100644
index b3dfb7f6456..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/altars.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-AltarSpawner = random altar spawner
- .desc = { ent-MarkerBase.desc }
-ent-ConvertAltarSpawner = random convert-altar spawner
- .desc = { ent-MarkerBase.desc }
-ent-CultAltarSpawner = random cult-altar spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/anomaly.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/anomaly.ftl
deleted file mode 100644
index c7bc133f9be..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/anomaly.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-RandomAnomalySpawner = random anomaly spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomRockAnomalySpawner = { ent-MarkerBase }
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/arcade.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/arcade.ftl
deleted file mode 100644
index 2a1ede1e7c3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/arcade.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RandomArcade = random arcade spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/artifacts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/artifacts.ftl
deleted file mode 100644
index 247658c3b4e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/artifacts.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-RandomArtifactSpawner = random artifact spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomArtifactSpawner20 = random artifact spawner [20]
- .desc = { ent-RandomArtifactSpawner.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/asteroidcrab.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/asteroidcrab.ftl
deleted file mode 100644
index fb5bfe95cc9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/asteroidcrab.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-AsteroidCrabSpawner = Asteroid Crab Spawner
- .desc = { ent-MarkerBase.desc }
-ent-RockAnomCrabSpawner = Rock Anom Crab Spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/bedsheet.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/bedsheet.ftl
deleted file mode 100644
index 0ba1f3e9b67..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/bedsheet.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BedsheetSpawner = Random Sheet Spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/crates.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/crates.ftl
deleted file mode 100644
index 390cf66c145..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/crates.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-CrateEmptySpawner = Empty Crate Spawner
- .desc = { ent-MarkerBase.desc }
-ent-CrateFilledSpawner = Filled Crate Spawner
- .suffix = Low Value
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerRandomCrateEngineering = random engineering crate spawner
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerRandomCrateSecurity = random security crate spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/crystal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/crystal.ftl
deleted file mode 100644
index 54a8e140c9a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/crystal.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-CrystalSpawner = Crystal Spawner
- .suffix = 70%
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/curtains.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/curtains.ftl
deleted file mode 100644
index 95298904d28..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/curtains.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CurtainSpawner = random curtain spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/donkpocketbox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/donkpocketbox.ftl
deleted file mode 100644
index d843e96072d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/donkpocketbox.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-DonkpocketBoxSpawner = Donkpocket Box Spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/encryption_key.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/encryption_key.ftl
deleted file mode 100644
index 0e1937b2a4e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/encryption_key.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-LootSpawnerEncryptionKey = random encryption key spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/fancytables.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/fancytables.ftl
deleted file mode 100644
index f8c690262bd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/fancytables.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FancyTableSpawner = random fancy table spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/flora.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/flora.ftl
deleted file mode 100644
index daa43da3c91..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/flora.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RandomFloraTree = random tree spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/folders.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/folders.ftl
deleted file mode 100644
index a178c9dde52..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/folders.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FolderSpawner = Random Folder Spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/donkpocketbox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/donkpocketbox.ftl
deleted file mode 100644
index 50ab33a577c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/donkpocketbox.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-DonkpocketBoxSpawner = Donkpocket Box Spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/drinks_bottles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/drinks_bottles.ftl
deleted file mode 100644
index 6b7bbd59b37..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/drinks_bottles.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomDrinkBottle = random drink spawner
- .suffix = Bottle
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/drinks_glass.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/drinks_glass.ftl
deleted file mode 100644
index 92baa0c6d31..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/drinks_glass.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomDrinkGlass = random drink spawner
- .suffix = Glass
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/drinks_soda.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/drinks_soda.ftl
deleted file mode 100644
index db34fca1ee9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/drinks_soda.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RandomDrinkSoda = random soda spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_baked_single.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_baked_single.ftl
deleted file mode 100644
index 71d2f6226fe..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_baked_single.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomFoodBakedSingle = random baked food spawner
- .suffix = Single Serving
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_baked_whole.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_baked_whole.ftl
deleted file mode 100644
index 4049add49b3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_baked_whole.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomFoodBakedWhole = random baked food spawner
- .suffix = Whole
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_meal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_meal.ftl
deleted file mode 100644
index 2110e1d4630..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_meal.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomFoodMeal = random food spawner
- .suffix = Meal
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_produce.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_produce.ftl
deleted file mode 100644
index 3960321f19e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_produce.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RandomProduce = random produce spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_single.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_single.ftl
deleted file mode 100644
index ac1cc4274b5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_single.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomFoodSingle = random food spawner
- .suffix = Single Serving
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_snacks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_snacks.ftl
deleted file mode 100644
index 2b434675b4b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/food_drinks/food_snacks.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RandomSnacks = random snack spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/grille.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/grille.ftl
deleted file mode 100644
index 1e95cd2c975..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/grille.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-GrilleSpawner = Random Grille Spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/industrial.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/industrial.ftl
deleted file mode 100644
index d53e942b579..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/industrial.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-LootSpawnerIndustrialFluff = industrial fluff spawner
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerIndustrial = industrial loot spawner
- .suffix = Tools + Materials
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/instruments.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/instruments.ftl
deleted file mode 100644
index b60ff9be2b8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/instruments.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RandomInstruments = random instruments spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl
deleted file mode 100644
index 5ceb13402bd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-MaintenanceFluffSpawner = Maint Loot Spawner
- .suffix = Fluff+Clothes
- .desc = { ent-MarkerBase.desc }
-ent-MaintenanceToolSpawner = Maint Loot Spawner
- .suffix = Tools+Cells+Mats
- .desc = { ent-MarkerBase.desc }
-ent-MaintenanceWeaponSpawner = Maint Loot Spawner
- .suffix = Scrap+Weapons
- .desc = { ent-MarkerBase.desc }
-ent-MaintenancePlantSpawner = Maint Loot Spawner
- .suffix = Plants
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/materials.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/materials.ftl
deleted file mode 100644
index 56d833157e2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/materials.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-LootSpawnerMaterials = materials spawner
- .suffix = Construction Materials
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerMaterialsSupplementary = materials spawner
- .suffix = Supplementary Materials
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerMaterialsHighValueConstruction = high-value materials spawner
- .suffix = Construction Materials
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerMaterialsHighValue = high-value materials spawner
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerMaterialsSurplus = surplus materials spawner
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerCableCoil = cable coil spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl
deleted file mode 100644
index 430ea18c2ed..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-LootSpawnerMedicalMinor = healing supplies spawner
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerMedicalClassy = medical loot spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/mineshaft.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/mineshaft.ftl
deleted file mode 100644
index 6baf9f9ae6c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/mineshaft.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-RandomWoodenSupport = wooden support spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomWoodenWall = wooden wall spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomStalagmiteOrCrystal = stalagmite or crystal spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomBrownStalagmite = brown stalagmite spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomGreyStalagmite = grey stalagmite spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/paintings.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/paintings.ftl
deleted file mode 100644
index 3ca5035e1f0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/paintings.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RandomPainting = random painting spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/posters.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/posters.ftl
deleted file mode 100644
index 9d795805f35..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/posters.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-RandomPosterAny = random poster spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomPosterContraband = random contraband poster spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomPosterLegit = random legit poster spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/pottedplants.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/pottedplants.ftl
deleted file mode 100644
index 80096be0fa6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/pottedplants.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-PottedPlantRandom = random potted plant spawner
- .desc = { ent-MarkerBase.desc }
-ent-PottedPlantRandomPlastic = random plastic potted plant spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/salvage.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/salvage.ftl
deleted file mode 100644
index ab373e9213a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/salvage.ftl
+++ /dev/null
@@ -1,26 +0,0 @@
-ent-SalvageMaterialCrateSpawner = Salvage Material Crate Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SalvageCanisterSpawner = Salvage Canister Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SalvageLootSpawner = salvage loot spawner
- .desc = { ent-MarkerBase.desc }
-ent-SalvageMobSpawner = Salvage Mob Spawner
- .suffix = 25
- .desc = { ent-MarkerBase.desc }
-ent-SpaceTickSpawner = Salvage Space Tick Spawner
- .suffix = 100
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobBearSalvage = Salvage Space Bear Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SalvageMobSpawner75 = { ent-SalvageMobSpawner }
- .suffix = 75
- .desc = { ent-SalvageMobSpawner.desc }
-ent-SpawnMobKangarooSalvage = Salvage Space Kangaroo Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobSpiderSalvage = Salvage Space Spider Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnMobCobraSalvage = Salvage Space Cobra Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SalvageFleshSpawner = Salvage Flesh Spawner
- .suffix = 100
- .desc = { ent-SalvageMobSpawner.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl
deleted file mode 100644
index 15b2b7680c0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-LootSpawnerSecurityBasic = security loot spawner
- .suffix = Gear, Simple
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerSecurity = security loot spawner
- .suffix = Gear, Better
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerArmory = armory loot spawner
- .suffix = Guns, Armor
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerArmoryGunsOnly = armory loot spawner
- .suffix = Guns
- .desc = { ent-MarkerBase.desc }
-ent-LootSpawnerArmoryArmorOnly = armory loot spawner
- .suffix = Armor
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/shadowkudzu.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/shadowkudzu.ftl
deleted file mode 100644
index d28c0d0778e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/shadowkudzu.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ShadowKudzuLootSpawner = { ent-MarkerBase }
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/soap.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/soap.ftl
deleted file mode 100644
index e69a666a568..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/soap.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RandomSoap = random soap spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/techboard.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/techboard.ftl
deleted file mode 100644
index f82662fc3ce..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/techboard.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RandomBoard = random board spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/toy.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/toy.ftl
deleted file mode 100644
index d2378f451a1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/toy.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-ToySpawner = Toy Spawner
- .desc = { ent-MarkerBase.desc }
-ent-FigureSpawner = Prize Figurine Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpacemenFigureSpawner = Spacemen Minifigure Spawner
- .suffix = Librarian only, map with care!
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/trash.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/trash.ftl
deleted file mode 100644
index 6134868e280..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/trash.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-RandomSpawner = Trash Spawner
- .suffix = 50
- .desc = { ent-MarkerBase.desc }
-ent-RandomSpawner100 = { ent-RandomSpawner }
- .suffix = 100
- .desc = { ent-RandomSpawner.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl
deleted file mode 100644
index 5be0655ad5b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomVending = random vending machine spawner
- .suffix = Any
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vendingdrinks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vendingdrinks.ftl
deleted file mode 100644
index e688dec1af7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vendingdrinks.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomVendingDrinks = random vending machine spawner
- .suffix = Drinks
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vendingsnacks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vendingsnacks.ftl
deleted file mode 100644
index 8eab8675444..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vendingsnacks.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomVendingSnacks = random vending machine spawner
- .suffix = Snacks
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl
deleted file mode 100644
index 1f5bed41d23..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-SpawnVehicleSecway = Secway Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnVehicleJanicart = Janicart Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnVehicleATV = ATV Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnVehicleMotobike = Motobike Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnVehicleWheelchair = Wheelchair Spawner
- .desc = { ent-MarkerBase.desc }
-ent-SpawnVehicleWheelchairFolded = Wheelchair [Folded] Spawner
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/vending_machine_restock.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/vending_machine_restock.ftl
deleted file mode 100644
index cc79afa28da..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/vending_machine_restock.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-SpawnVendingMachineRestockFoodDrink = Vending Machine Restock
- .suffix = food or drink
- .desc = { ent-MarkerBase.desc }
-ent-SpawnVendingMachineRestockFood = Vending Machine Restock
- .suffix = food
- .desc = { ent-MarkerBase.desc }
-ent-SpawnVendingMachineRestockDrink = Vending Machine Restock
- .suffix = drink
- .desc = { ent-MarkerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/warp_point.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/warp_point.ftl
deleted file mode 100644
index 67534e7eb8e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/warp_point.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-WarpPoint = warp point
- .desc = { ent-MarkerBase.desc }
-ent-WarpPointBeacon = warp point (beacon)
- .desc = { ent-WarpPoint.desc }
-ent-WarpPointBombing = warp point
- .suffix = ninja bombing target
- .desc = { ent-WarpPoint.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/base.ftl
deleted file mode 100644
index e67e426f576..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/base.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-BaseMob = { "" }
- .desc = { "" }
-ent-MobDamageable = { "" }
- .desc = { "" }
-ent-MobCombat = { "" }
- .desc = { "" }
-ent-MobAtmosExposed = { "" }
- .desc = { "" }
-ent-MobAtmosStandard = { ent-MobAtmosExposed }
- .desc = { ent-MobAtmosExposed.desc }
-ent-MobFlammable = { "" }
- .desc = { "" }
-ent-MobRespirator = { "" }
- .desc = { "" }
-ent-MobBloodstream = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/corpses/corpses.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/corpses/corpses.ftl
deleted file mode 100644
index 23684c868f0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/corpses/corpses.ftl
+++ /dev/null
@@ -1,21 +0,0 @@
-ent-MobRandomServiceCorpse = { ent-SalvageHumanCorpse }
- .suffix = Dead, Service
- .desc = { ent-SalvageHumanCorpse.desc }
-ent-MobRandomEngineerCorpse = { ent-SalvageHumanCorpse }
- .suffix = Dead, Engineer
- .desc = { ent-SalvageHumanCorpse.desc }
-ent-MobRandomCargoCorpse = { ent-SalvageHumanCorpse }
- .suffix = Dead, Cargo
- .desc = { ent-SalvageHumanCorpse.desc }
-ent-MobRandomMedicCorpse = { ent-SalvageHumanCorpse }
- .suffix = Dead, Medic
- .desc = { ent-SalvageHumanCorpse.desc }
-ent-MobRandomScienceCorpse = { ent-SalvageHumanCorpse }
- .suffix = Dead, Science
- .desc = { ent-SalvageHumanCorpse.desc }
-ent-MobRandomSecurityCorpse = { ent-SalvageHumanCorpse }
- .suffix = Dead, Security
- .desc = { ent-SalvageHumanCorpse.desc }
-ent-MobRandomCommandCorpse = { ent-SalvageHumanCorpse }
- .suffix = Dead, Command
- .desc = { ent-SalvageHumanCorpse.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/base_borg_chassis.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/base_borg_chassis.ftl
deleted file mode 100644
index 258020ffb47..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/base_borg_chassis.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseBorgChassis = cyborg
- .desc = A man-machine hybrid that assists in station activity. They love being asked to state their laws over and over.
-ent-BaseBorgTransponder = { "" }
- .desc = { "" }
-ent-BaseBorgChassisNT = { ent-BaseBorgChassis }
- .desc = { ent-BaseBorgChassis.desc }
-ent-BaseBorgChassisSyndicate = { ent-BaseBorgChassis }
- .desc = { ent-BaseBorgChassis.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/borg_chassis.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/borg_chassis.ftl
deleted file mode 100644
index b0f641ca70e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/borg_chassis.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-BorgChassisGeneric = { ent-BaseBorgChassisNT }
- .desc = { ent-BaseBorgChassisNT.desc }
-ent-BorgChassisMining = salvage cyborg
- .desc = { ent-BaseBorgChassisNT.desc }
-ent-BorgChassisEngineer = engineer cyborg
- .desc = { ent-BaseBorgChassisNT.desc }
-ent-BorgChassisJanitor = janitor cyborg
- .desc = { ent-BaseBorgChassisNT.desc }
-ent-BorgChassisMedical = medical cyborg
- .desc = { ent-BaseBorgChassisNT.desc }
-ent-BorgChassisService = service cyborg
- .desc = { ent-BaseBorgChassisNT.desc }
-ent-BorgChassisSyndicateAssault = syndicate assault cyborg
- .desc = A lean, mean killing machine with access to a variety of deadly modules.
-ent-BorgChassisSyndicateMedical = syndicate medical cyborg
- .desc = A combat medical cyborg. Has limited offensive potential, but makes more than up for it with its support capabilities.
-ent-BorgChassisSyndicateSaboteur = syndicate saboteur cyborg
- .desc = A streamlined engineering cyborg, equipped with covert modules. Its chameleon projector lets it disguise itself as a Nanotrasen cyborg.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/debugging/debug_counter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/debugging/debug_counter.ftl
deleted file mode 100644
index 838ab99fedc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/debugging/debug_counter.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-MobDebugCounter = debug counter
- .desc = He can count
- .suffix = AI, DEBUG
-ent-MobDebugRandomCounter = debug random counter
- .desc = He can randomize
- .suffix = AI, DEBUG
-ent-MobDebugRandomLess = debug random less
- .desc = He can lessing
- .suffix = AI, DEBUG
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl
deleted file mode 100644
index 43b722f16e5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl
+++ /dev/null
@@ -1,154 +0,0 @@
-ent-MobBat = bat
- .desc = Some cultures find them terrifying, others crunchy on the teeth.
-ent-MobBee = bee
- .desc = Nice to have, but you can't build a civilization on a foundation of honey alone.
-ent-MobAngryBee = bee
- .desc = How nice a bee. Oh no, it looks angry and wants my pizza.
- .suffix = Angry
-ent-MobChicken = chicken
- .desc = Comes before an egg, and IS a dinosaur!
-ent-MobChicken1 = { ent-MobChicken }
- .desc = { ent-MobChicken.desc }
-ent-MobChicken2 = { ent-MobChicken }
- .desc = { ent-MobChicken.desc }
-ent-FoodEggChickenFertilized = { ent-FoodEgg }
- .suffix = Fertilized, Chicken
- .desc = { ent-FoodEgg.desc }
-ent-MobCockroach = cockroach
- .desc = This station is just crawling with bugs.
-ent-MobGlockroach = glockroach
- .desc = This station is just crawling with bu- OH GOD THAT COCKROACH HAS A GUN!!!
- .suffix = Admeme
-ent-MobMothroach = mothroach
- .desc = This is the adorable by-product of multiple attempts at genetically mixing mothpeople with cockroaches.
-ent-MobDuckMallard = mallard duck
- .desc = An adorable mallard duck, it's fluffy and soft!
-ent-MobDuckWhite = white duck
- .desc = An adorable white duck, it's fluffy and soft!
-ent-MobDuckBrown = brown duck
- .desc = An adorable brown duck, it's fluffy and soft!
-ent-FoodEggDuckFertilized = { ent-FoodEgg }
- .suffix = Fertilized, Duck
- .desc = { ent-FoodEgg.desc }
-ent-MobButterfly = butterfly
- .desc = Despite popular misconceptions, it's not actually made of butter.
-ent-MobCow = cow
- .desc = Moo.
-ent-MobCrab = crab
- .desc = A folk legend goes around that his claw snaps spacemen out of existence over distasteful remarks. Be polite and tolerant for your own safety.
-ent-MobGoat = goat
- .desc = Her spine consists of long sharp segments, no wonder she is so grumpy.
-ent-MobGoose = goose
- .desc = Its stomach and mind are an enigma beyond human comprehension.
-ent-MobGorilla = gorilla
- .desc = Smashes, roars, looks cool. Don't stand near one.
-ent-MobKangaroo = kangaroo
- .desc = A large marsupial herbivore. It has powerful hind legs, with nails that resemble long claws.
-ent-MobBoxingKangaroo = boxing kangaroo
- .desc = { ent-MobKangaroo.desc }
-ent-MobBaseAncestor = genetic ancestor
- .desc = The genetic bipedal ancestor of... Uh... Something. Yeah, there's definitely something on the station that descended from whatever this is.
-ent-MobMonkey = monkey
- .desc = New church of neo-darwinists actually believe that EVERY animal evolved from a monkey. Tastes like pork, and killing them is both fun and relaxing.
-ent-MobBaseSyndicateMonkey = monkey
- .desc = New church of neo-darwinists actually believe that EVERY animal evolved from a monkey. Tastes like pork, and killing them is both fun and relaxing.
- .suffix = syndicate base
-ent-MobMonkeySyndicateAgent = { ent-MobBaseSyndicateMonkey }
- .suffix = syndicate agent
- .desc = { ent-MobBaseSyndicateMonkey.desc }
-ent-MobMonkeySyndicateAgentNukeops = { ent-MobBaseSyndicateMonkey }
- .suffix = NukeOps
- .desc = { ent-MobBaseSyndicateMonkey.desc }
-ent-MobBaseKobold = kobold
- .desc = Cousins to the sentient race of lizard people, kobolds blend in with their natural habitat and are as nasty as monkeys; ready to pull out your hair and stab you to death.
-ent-MobKobold = kobold
- .desc = Cousins to the sentient race of lizard people, kobolds blend in with their natural habitat and are as nasty as monkeys; ready to pull out your hair and stab you to death.
-ent-MobBaseSyndicateKobold = { ent-MobBaseKobold }
- .suffix = syndicate base
- .desc = { ent-MobBaseKobold.desc }
-ent-MobKoboldSyndicateAgent = { ent-MobBaseSyndicateKobold }
- .suffix = syndicate agent
- .desc = { ent-MobBaseSyndicateKobold.desc }
-ent-MobKoboldSyndicateAgentNukeops = { ent-MobBaseSyndicateKobold }
- .suffix = NukeOps
- .desc = { ent-MobBaseSyndicateKobold.desc }
-ent-MobGuidebookMonkey = guidebook monkey
- .desc = A hopefully helpful monkey whose only purpose in life is for you to click on. Does this count as having a monkey give you a tutorial?
-ent-MobMouse = mouse
- .desc = Squeak!
-ent-MobMouseDead = mouse
- .desc = Squeak!
- .suffix = Dead
-ent-MobMouseAdmeme = { ent-MobMouse }
- .suffix = Admeme
- .desc = { ent-MobMouse.desc }
-ent-MobMouse1 = { ent-MobMouse }
- .desc = { ent-MobMouse.desc }
-ent-MobMouse2 = { ent-MobMouse }
- .desc = { ent-MobMouse.desc }
-ent-MobMouseCancer = cancer mouse
- .desc = Toxic. Squeak!
-ent-MobLizard = lizard
- .desc = A harmless dragon.
-ent-MobSlug = slug
- .desc = And they called this a lizard?
-ent-MobFrog = frog
- .desc = Hop hop hop. Lookin' moist.
-ent-MobParrot = parrot
- .desc = Infiltrates your domain, spies on you, and somehow still a cool pet.
-ent-MobPenguin = penguin
- .desc = Their lives are constant pain due to their inner-body knees.
-ent-MobGrenadePenguin = grenade penguin
- .desc = A small penguin with a grenade strapped around its neck. Harvested by the Syndicate from icy shit-hole planets.
-ent-MobSnake = snake
- .desc = Hissss! Bites aren't poisonous.
-ent-MobGiantSpider = tarantula
- .desc = Widely recognized to be the literal worst thing in existence.
-ent-MobGiantSpiderAngry = tarantula
- .suffix = Angry
- .desc = { ent-MobGiantSpider.desc }
-ent-MobClownSpider = clown spider
- .desc = Combines the two most terrifying things in existence, spiders and clowns.
-ent-MobGiantSpiderWizard = wizard spider
- .desc = This spider looks a little magical
- .suffix = Wizard
-ent-MobPossum = possum
- .desc = "O Possum! My Possum!" -- Walt Whitman, 1865
-ent-MobPossumOld = possum
- .suffix = Old sprite
- .desc = { ent-MobPossum.desc }
-ent-MobRaccoon = raccoon
- .desc = Trash panda!
-ent-MobFox = fox
- .desc = They're a fox.
-ent-MobCorgi = corgi
- .desc = Finally, a space corgi!
-ent-MobCorgiNarsi = corrupted corgi
- .desc = Ian! No!
-ent-MobCorgiPuppy = corgi puppy
- .desc = A little corgi! Aww...
-ent-MobCat = cat
- .desc = Feline pet, very funny.
-ent-MobCatCalico = calico cat
- .desc = Feline pet, very funny.
-ent-MobCatSyndy = syndicat
- .desc = Explosive kitten.
-ent-MobCatSpace = space cat
- .desc = Feline pet, prepared for the worst.
-ent-MobCatCaracal = caracal cat
- .desc = Hilarious.
-ent-MobCatKitten = kitten
- .desc = Small and fluffy.
-ent-MobSloth = sloth
- .desc = Very slow animal. For people with low energy.
-ent-MobFerret = ferret
- .desc = Just a silly little guy!
-ent-MobHamster = hamster
- .desc = A cute, fluffy, robust hamster.
-ent-MobPig = pig
- .desc = Oink.
-ent-MobDionaNymph = diona nymph
- .desc = It's like a cat, only.... branch-ier.
-ent-MobDionaNymphAccent = { ent-MobDionaNymph }
- .suffix = Accent
- .desc = { ent-MobDionaNymph.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/argocyte.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/argocyte.ftl
deleted file mode 100644
index d51912f1c92..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/argocyte.ftl
+++ /dev/null
@@ -1,27 +0,0 @@
-ent-BaseMobArgocyte = { ent-BaseSimpleMob }
- .desc = A dangerous alien found on the wrong side of planets, known for their propensity for munching on ruins.
- .suffix = AI
-ent-MobArgocyteSlurva = slurva
- .desc = A pathetic creature, incapable of doing much.
-ent-MobArgocyteBarrier = barrier
- .desc = { ent-BaseMobArgocyte.desc }
-ent-MobArgocyteSkitter = skitter
- .desc = A devious little alien... Make sure they don't run off with your rations!
-ent-MobArgocyteSwiper = swiper
- .desc = Where did that stack of steel go?
-ent-MobArgocyteMolder = molder
- .desc = { ent-BaseMobArgocyte.desc }
-ent-MobArgocytePouncer = pouncer
- .desc = { ent-BaseMobArgocyte.desc }
-ent-MobArgocyteGlider = glider
- .desc = { ent-BaseMobArgocyte.desc }
-ent-MobArgocyteHarvester = harvester
- .desc = { ent-BaseMobArgocyte.desc }
-ent-MobArgocyteCrawler = crawler
- .desc = Deadly, pack-animals that maul unsuspecting travelers.
-ent-MobArgocyteEnforcer = enforcer
- .desc = { ent-BaseMobArgocyte.desc }
-ent-MobArgocyteFounder = founder
- .desc = { ent-BaseMobArgocyte.desc }
-ent-MobArgocyteLeviathing = leviathing
- .desc = { ent-BaseMobArgocyte.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/bear.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/bear.ftl
deleted file mode 100644
index 725b1dc20d1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/bear.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-MobBearSpace = space bear
- .desc = It looks friendly. Why don't you give it a hug?
-ent-MobBearSpaceSalvage = { ent-MobBearSpace }
- .suffix = Salvage Ruleset
- .desc = { ent-MobBearSpace.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/behonker.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/behonker.ftl
deleted file mode 100644
index 3a320332094..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/behonker.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-BaseMobBehonker = behonker
- .desc = A floating demon aspect of the honkmother.
-ent-MobBehonkerElectrical = behonker
- .suffix = Pyro
- .desc = { ent-BaseMobBehonker.desc }
-ent-MobBehonkerPyro = behonker
- .suffix = Electrical
- .desc = { ent-BaseMobBehonker.desc }
-ent-MobBehonkerGrav = behonker
- .suffix = Grav
- .desc = { ent-BaseMobBehonker.desc }
-ent-MobBehonkerIce = behonker
- .suffix = Ice
- .desc = { ent-BaseMobBehonker.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/carp.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/carp.ftl
deleted file mode 100644
index 331ed36c2e6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/carp.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-BaseMobCarp = space carp
- .desc = It's a space carp.
-ent-MobCarp = { ent-BaseMobCarp }
- .desc = { ent-BaseMobCarp.desc }
-ent-MobCarpMagic = magicarp
- .desc = Looks like some kind of fish. Might be magical.
-ent-MobCarpHolo = holocarp
- .desc = Carp made out of holographic energies. Sadly for you, it is very much real.
-ent-MobCarpRainbow = rainbow carp
- .desc = Wow such a shiny fishie!
-ent-MobCarpSalvage = { ent-MobCarp }
- .suffix = Salvage Ruleset
- .desc = { ent-MobCarp.desc }
-ent-MobCarpDragon = space carp
- .suffix = DragonBrood
- .desc = { ent-MobCarp.desc }
-ent-MobCarpDungeon = { ent-MobCarp }
- .suffix = Dungeon
- .desc = { ent-MobCarp.desc }
-ent-MobShark = sharkminnow
- .desc = A dangerous shark from the blackness of endless space, who loves to drink blood.
-ent-MobSharkSalvage = { ent-MobShark }
- .suffix = Salvage Ruleset
- .desc = { ent-MobShark.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/dummy_npcs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/dummy_npcs.ftl
deleted file mode 100644
index 1a98ceb982a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/dummy_npcs.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-MobHumanPathDummy = pathfinding dummy
- .desc = A miserable pile of secrets.
- .suffix = AI
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl
deleted file mode 100644
index 9f848b2e731..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl
+++ /dev/null
@@ -1,53 +0,0 @@
-ent-MobElementalBase = { "" }
- .desc = { "" }
-ent-MobOreCrab = ore crab
- .desc = { ent-MobElementalBase.desc }
-ent-MobQuartzCrab = { ent-MobOreCrab }
- .desc = An ore crab made from Quartz.
-ent-MobIronCrab = { ent-MobOreCrab }
- .desc = An ore crab made from iron.
-ent-MobUraniumCrab = { ent-MobOreCrab }
- .desc = An ore crab made from uranium.
-ent-MobSilverCrab = ore crab
- .desc = An ore crab made from silver.
-ent-ReagentSlime = Reagent slime
- .desc = It consists of a liquid, and it wants to dissolve you in itself.
- .suffix = Water
-ent-ReagentSlimeSpawner = Reagent Slime Spawner
- .desc = { ent-MarkerBase.desc }
-ent-ReagentSlimeBeer = { ent-ReagentSlime }
- .suffix = Beer
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimePax = { ent-ReagentSlime }
- .suffix = Pax
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimeNocturine = { ent-ReagentSlime }
- .suffix = Nocturine
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimeTHC = { ent-ReagentSlime }
- .suffix = THC
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimeBicaridine = { ent-ReagentSlime }
- .suffix = Bicaridine
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimeToxin = { ent-ReagentSlime }
- .suffix = Toxin
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimeNapalm = { ent-ReagentSlime }
- .suffix = Napalm
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimeOmnizine = { ent-ReagentSlime }
- .suffix = Omnizine
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimeMuteToxin = { ent-ReagentSlime }
- .suffix = Mute Toxin
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimeNorepinephricAcid = { ent-ReagentSlime }
- .suffix = Norepinephric Acid
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimeEphedrine = { ent-ReagentSlime }
- .suffix = Ephedrine
- .desc = { ent-ReagentSlime.desc }
-ent-ReagentSlimeRobustHarvest = { ent-ReagentSlime }
- .suffix = Robust Harvest
- .desc = { ent-ReagentSlime.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/flesh.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/flesh.ftl
deleted file mode 100644
index 0141ef0095a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/flesh.ftl
+++ /dev/null
@@ -1,23 +0,0 @@
-ent-BaseMobFlesh = aberrant flesh
- .desc = A shambling mass of flesh, animated through anomalous energy.
-ent-MobFleshJared = { ent-BaseMobFlesh }
- .desc = { ent-BaseMobFlesh.desc }
-ent-MobFleshGolem = { ent-BaseMobFlesh }
- .desc = { ent-BaseMobFlesh.desc }
-ent-MobFleshClamp = { ent-BaseMobFlesh }
- .desc = { ent-BaseMobFlesh.desc }
-ent-MobFleshLover = { ent-BaseMobFlesh }
- .desc = { ent-BaseMobFlesh.desc }
-ent-MobAbomination = abomination
- .desc = A rejected clone, in constant pain and seeking revenge.
-ent-BaseMobFleshSalvage = aberrant flesh
- .desc = A shambling mass of flesh, animated through anomalous energy.
- .suffix = Salvage Ruleset
-ent-MobFleshJaredSalvage = { ent-BaseMobFleshSalvage }
- .desc = { ent-BaseMobFleshSalvage.desc }
-ent-MobFleshGolemSalvage = { ent-BaseMobFleshSalvage }
- .desc = { ent-BaseMobFleshSalvage.desc }
-ent-MobFleshClampSalvage = { ent-BaseMobFleshSalvage }
- .desc = { ent-BaseMobFleshSalvage.desc }
-ent-MobFleshLoverSalvage = { ent-BaseMobFleshSalvage }
- .desc = { ent-BaseMobFleshSalvage.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/flying_animals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/flying_animals.ftl
deleted file mode 100644
index 13069049100..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/flying_animals.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FlyingMobBase = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/hellspawn.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/hellspawn.ftl
deleted file mode 100644
index 4d2013934f1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/hellspawn.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MobHellspawn = hellspawn
- .desc = An unstoppable force of carnage.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/human.ftl
deleted file mode 100644
index a82f4fe83b6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/human.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-MobCivilian = civilian
- .desc = A miserable pile of secrets.
-ent-MobSalvager = salvager
- .desc = { ent-BaseMobHuman.desc }
-ent-MobSpirate = spirate
- .desc = Yarr!
-ent-MobSyndicateFootsoldier = syndicate footsoldier
- .desc = { ent-BaseMobHuman.desc }
-ent-MobSyndicateFootsoldierPilot = syndicate shuttle pilot
- .desc = { ent-MobSyndicateFootsoldier.desc }
-ent-SalvageHumanCorpse = unidentified corpse
- .desc = I think they're dead.
- .suffix = Dead
-ent-MobCluwne = person
- .desc = A polymorphed unfortunate.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/lavaland.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/lavaland.ftl
deleted file mode 100644
index 8784cee4ef6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/lavaland.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-MobWatcherBase = watcher
- .desc = It's like its staring right through you.
-ent-MobWatcherLavaland = { ent-MobWatcherBase }
- .desc = { ent-MobWatcherBase.desc }
-ent-MobWatcherIcewing = icewing watcher
- .desc = { ent-MobWatcherBase.desc }
-ent-MobWatcherMagmawing = magmawing watcher
- .desc = { ent-MobWatcherBase.desc }
-ent-MobWatcherPride = pride watcher
- .desc = This rare subspecies only appears in June.
- .suffix = Admeme
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/living_light.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/living_light.ftl
deleted file mode 100644
index 0182023e47c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/living_light.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-MobLivingLight = luminous person
- .desc = A blinding figure of pure light, seemingly intangible.
-ent-MobLuminousPerson = { ent-MobLivingLight }
- .desc = { ent-MobLivingLight.desc }
-ent-MobLuminousObject = luminous object
- .desc = A small glowing object that causes burns on the skin with its glow.
-ent-MobLuminousEntity = luminous entity
- .desc = A blinding translucent entity, the bright eye seems dangerous and scalding.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/mimic.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/mimic.ftl
deleted file mode 100644
index 5d5dd3887f6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/mimic.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MobMimic = Mimic
- .desc = Surprise.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/miscellaneous.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/miscellaneous.ftl
deleted file mode 100644
index 639f3b6a337..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/miscellaneous.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-MobLaserRaptor = laser raptor
- .desc = From the Viking age.
-ent-MobTomatoKiller = tomato killer
- .desc = it seems today it's not you eating tomatoes, it's the tomatoes eating you.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/pets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/pets.ftl
deleted file mode 100644
index a90b970961c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/pets.ftl
+++ /dev/null
@@ -1,49 +0,0 @@
-ent-MobCorgiIan = Ian
- .desc = Favorite pet corgi.
-ent-MobCorgiIanOld = Old Ian
- .desc = Still the favorite pet corgi. Love his wheels.
-ent-MobCorgiLisa = Lisa
- .desc = Ian's favorite corgi.
-ent-MobCorgiIanPup = Puppy Ian
- .desc = Favourite puppy corgi. Awww.
-ent-MobCatRuntime = Runtime
- .desc = Professional mouse hunter. Escape artist.
-ent-MobCatException = Exception
- .desc = Ask nicely, and maybe they'll give you one of their spare lives.
-ent-MobCatFloppa = Floppa
- .desc = He out here.
-ent-MobBandito = Bandito
- .desc = Just a silly little guy!
-ent-MobBingus = Bingus
- .desc = Bingus my beloved...
-ent-MobMcGriff = McGriff
- .desc = This dog can tell something smells around here, and that something is CRIME!
-ent-MobPaperwork = Paperwork
- .desc = Took up a new job sorting books in the library after he got transferred from Space Station 13. He seems to be just as slow at this.
-ent-MobWalter = Walter
- .desc = He likes chems and treats. Walter.
-ent-MobPossumMorty = Morty
- .desc = The station's resident Didelphis virginiana. A sensitive but resilient kind of guy.
-ent-MobPossumMortyOld = Morty
- .suffix = Old sprite
- .desc = { ent-MobPossumMorty.desc }
-ent-MobPossumPoppy = Poppy
- .desc = It's an opossum, a small scavenging marsupial. It's wearing appropriate personal protective equipment.
-ent-MobRaccoonMorticia = Morticia
- .desc = A powerful creature of the night. Her eyeshadow is always on point.
-ent-MobAlexander = Alexander
- .desc = Chef's finest colleague.
-ent-MobFoxRenault = Renault
- .desc = The captain's trustworthy fox.
-ent-MobHamsterHamlet = Hamlet
- .desc = A grumpy, cute and fluffy hamster.
-ent-MobSpiderShiva = Shiva
- .desc = The first defender of the station.
-ent-MobKangarooWillow = Willow
- .desc = Willow the boxing kangaroo.
-ent-MobSlimesPet = Smile
- .desc = This masterpiece has gone through thousands of experiments. But it is the sweetest creature in the world. Smile Slime!
-ent-MobMonkeyPunpun = Pun Pun
- .desc = A prominent representative of monkeys with unlimited access to alcohol.
-ent-MobCrabAtmos = Tropico
- .desc = The noble and stalwart defender of Atmosia. Viva!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/regalrat.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/regalrat.ftl
deleted file mode 100644
index e7de8e62c40..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/regalrat.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-MobRatKing = Rat King
- .desc = He's da rat. He make da roolz.
-ent-MobRatKingBuff = { ent-MobRatKing }
- .suffix = Buff
- .desc = { ent-MobRatKing.desc }
-ent-MobRatServant = Rat Servant
- .desc = He's da mini rat. He don't make da roolz.
-ent-ActionRatKingRaiseArmy = Raise Army
- .desc = Spend some hunger to summon an allied rat to help defend you.
-ent-ActionRatKingDomain = Rat King's Domain
- .desc = Spend some hunger to release a cloud of ammonia into the air.
-ent-ActionRatKingOrderStay = Stay
- .desc = Command your army to stand in place.
-ent-ActionRatKingOrderFollow = Follow
- .desc = Command your army to follow you around.
-ent-ActionRatKingOrderCheeseEm = Cheese 'Em
- .desc = Command your army to attack whoever you point at.
-ent-ActionRatKingOrderLoose = Loose
- .desc = Command your army to act at their own will.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/revenant.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/revenant.ftl
deleted file mode 100644
index 5497c353aa2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/revenant.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MobRevenant = revenant
- .desc = A spooky ghostie.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/shadows.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/shadows.ftl
deleted file mode 100644
index 8164c16901e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/shadows.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseShadowMob = { ent-BaseShadow }
- .desc = { ent-BaseShadow.desc }
-ent-MobCatShadow = shadow cat
- .desc = A lovely piece of darkness. Hope he doesn't bring you a curse.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/silicon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/silicon.ftl
deleted file mode 100644
index 9b0c1106a45..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/silicon.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-MobSiliconBase = { "" }
- .desc = { "" }
-ent-MobHonkBot = honkbot
- .desc = Horrifying.
-ent-MobJonkBot = jonkbot
- .desc = Horrifying.
-ent-MobCleanBot = cleanbot
- .desc = The creep of automation now threatening space janitors.
-ent-MobMedibot = medibot
- .desc = No substitute for a doctor, but better than nothing.
-ent-MobMimeBot = mimebot
- .desc = Why not give mimebot a friendly wave.
-ent-MobSupplyBot = supplybot
- .desc = Delivers cargo!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/simplemob.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/simplemob.ftl
deleted file mode 100644
index 46e1c6729d7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/simplemob.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-BaseSimpleMob = { "" }
- .suffix = AI
- .desc = { "" }
-ent-SimpleSpaceMobBase = { ent-BaseSimpleMob }
- .suffix = AI
- .desc = { ent-BaseSimpleMob.desc }
-ent-SimpleMobBase = { ent-SimpleSpaceMobBase }
- .suffix = AI
- .desc = { ent-SimpleSpaceMobBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/slimes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/slimes.ftl
deleted file mode 100644
index 4fe569c7a1c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/slimes.ftl
+++ /dev/null
@@ -1,21 +0,0 @@
-ent-BaseMobAdultSlimes = basic slime
- .desc = It looks so much like jelly. I wonder what it tastes like?
-ent-MobAdultSlimes = basic slime
- .desc = It looks so much like jelly. I wonder what it tastes like?
-ent-MobSlimesGeras = geras
- .desc = A geras of a slime - the name is ironic, isn't it?
-ent-MobAdultSlimesBlue = blue slime
- .desc = { ent-MobAdultSlimes.desc }
-ent-MobAdultSlimesBlueAngry = blue slime
- .suffix = Angry
- .desc = { ent-MobAdultSlimesBlue.desc }
-ent-MobAdultSlimesGreen = green slime
- .desc = { ent-MobAdultSlimes.desc }
-ent-MobAdultSlimesGreenAngry = green slime
- .suffix = Angry
- .desc = { ent-MobAdultSlimesGreen.desc }
-ent-MobAdultSlimesYellow = yellow slime
- .desc = { ent-MobAdultSlimes.desc }
-ent-MobAdultSlimesYellowAngry = yellow slime
- .suffix = Angry
- .desc = { ent-MobAdultSlimesYellow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/space.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/space.ftl
deleted file mode 100644
index 97050077cd7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/space.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-MobSpaceBasic = basic
- .desc = It looks friendly. Why don't you give it a hug?
-ent-MobBearSpace = space bear
- .desc = It looks friendly. Why don't you give it a hug?
-ent-MobBearSpaceSalvage = { ent-MobBearSpace }
- .suffix = Salvage Ruleset
- .desc = { ent-MobBearSpace.desc }
-ent-MobKangarooSpace = space kangaroo
- .desc = It looks friendly. Why don't you give it a hug?
-ent-MobKangarooSpaceSalvage = { ent-MobKangarooSpace }
- .suffix = Salvage Ruleset
- .desc = { ent-MobKangarooSpace.desc }
-ent-MobSpiderSpace = space spider
- .desc = It's so glowing, it looks dangerous.
-ent-MobSpiderSpaceSalvage = { ent-MobSpiderSpace }
- .suffix = Salvage Ruleset
- .desc = { ent-MobSpiderSpace.desc }
-ent-MobCobraSpace = space cobra
- .desc = Long fangs and a glowing hood, and the alluring look begs to come closer.
-ent-MobCobraSpaceSalvage = { ent-MobCobraSpace }
- .suffix = Salvage Ruleset
- .desc = { ent-MobCobraSpace.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/spacetick.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/spacetick.ftl
deleted file mode 100644
index 7dcceb363ef..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/spacetick.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-MobTick = space tick
- .desc = It's a space tick, watch out for its nasty bite. CentCom reports that 90 percent of cargo leg amputations are due to space tick bites.
-ent-MobTickSalvage = { ent-MobTick }
- .suffix = Salvage Ruleset
- .desc = { ent-MobTick.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/xeno.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/xeno.ftl
deleted file mode 100644
index d54c283ada4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/xeno.ftl
+++ /dev/null
@@ -1,21 +0,0 @@
-ent-MobXeno = Burrower
- .desc = They mostly come at night. Mostly.
-ent-MobXenoPraetorian = Praetorian
- .desc = { ent-MobXeno.desc }
-ent-MobXenoDrone = Drone
- .desc = { ent-MobXeno.desc }
-ent-MobXenoQueen = Queen
- .desc = { ent-MobXeno.desc }
-ent-MobXenoRavager = Ravager
- .desc = { ent-MobXeno.desc }
-ent-MobXenoRunner = Runner
- .desc = { ent-MobXeno.desc }
-ent-MobXenoRouny = Rouny
- .desc = { ent-MobXenoRunner.desc }
-ent-MobXenoSpitter = Spitter
- .desc = { ent-MobXeno.desc }
-ent-MobPurpleSnake = space adder
- .desc = A menacing purple snake from Kepler-283c.
-ent-MobSmallPurpleSnake = space adder
- .desc = A smaller version of the menacing purple snake from Kepler-283c.
- .suffix = small
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl
deleted file mode 100644
index fcb0e5409f4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-AdminObserver = admin observer
- .desc = { ent-MobObserver.desc }
-ent-ActionAGhostShowSolar = Solar Control Interface
- .desc = View a solar control interface.
-ent-ActionAGhostShowCommunications = Communications Interface
- .desc = View a communications interface.
-ent-ActionAGhostShowRadar = Mass Scanner Interface
- .desc = View a mass scanner interface.
-ent-ActionAGhostShowCargo = Cargo Ordering Interface
- .desc = View a cargo ordering interface.
-ent-ActionAGhostShowCrewMonitoring = Crew Monitoring Interface
- .desc = View a crew monitoring interface.
-ent-ActionAGhostShowStationRecords = Station Records Interface
- .desc = View a station records Interface
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/arachnid.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/arachnid.ftl
deleted file mode 100644
index d7f0cdb9a77..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/arachnid.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MobArachnid = Urist McWeb
- .desc = { ent-BaseMobArachnid.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/base.ftl
deleted file mode 100644
index b13eb2f9e52..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/base.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BaseMob = BaseMob
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/diona.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/diona.ftl
deleted file mode 100644
index 4f02c7db2a8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/diona.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-MobDiona = Urist McPlants
- .desc = { ent-BaseMobDiona.desc }
-ent-MobDionaReformed = Reformed Diona
- .desc = { ent-MobDiona.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/dragon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/dragon.ftl
deleted file mode 100644
index 845516e57f4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/dragon.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-BaseMobDragon = space dragon
- .desc = A flying leviathan, loosely related to space carps.
-ent-MobDragon = { ent-BaseMobDragon }
- .suffix = No role or objectives
- .desc = { ent-BaseMobDragon.desc }
-ent-DragonsBreathGun = dragon's lung
- .desc = For dragon's breathing
-ent-MobDragonDungeon = { ent-BaseMobDragon }
- .suffix = Dungeon
- .desc = { ent-BaseMobDragon.desc }
-ent-ActionSpawnRift = Summon Carp Rift
- .desc = Summons a carp rift that will periodically spawns carps.
-ent-ActionDevour = [color=red]Devour[/color]
- .desc = Attempt to break a structure with your jaws or swallow a creature.
-ent-ActionDragonsBreath = [color=orange]Dragon's Breath[/color]
- .desc = Spew out flames at anyone foolish enough to attack you!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/dwarf.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/dwarf.ftl
deleted file mode 100644
index 280d73a172e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/dwarf.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MobDwarf = Urist McHands The Dwarf
- .desc = { ent-BaseMobDwarf.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/familiars.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/familiars.ftl
deleted file mode 100644
index 82294e9336b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/familiars.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-MobBatRemilia = Remilia
- .desc = The chaplain's familiar. Likes fruit.
-ent-MobCorgiCerberus = Cerberus
- .desc = This pupper is not wholesome.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/gingerbread.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/gingerbread.ftl
deleted file mode 100644
index b09d7d6eacb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/gingerbread.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MobGingerbread = Urist McCookie
- .desc = { ent-BaseMobGingerbread.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/guardian.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/guardian.ftl
deleted file mode 100644
index 44f0e4dc763..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/guardian.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-MobGuardianBase = GuardianBase
- .desc = guardian
-ent-MobHoloparasiteGuardian = Holoparasite
- .desc = A mesmerising whirl of hard-light patterns weaves a marvelous, yet oddly familiar visage. It stands proud, tuning into its owner's life to sustain itself.
-ent-MobIfritGuardian = Ifrit
- .desc = A corrupted jinn, ripped from fitra to serve the wizard's petty needs. It stands wicked, tuning into it's owner's life to sustain itself.
-ent-MobHoloClownGuardian = HoloClown
- .desc = A mesmerising whirl of hard-light patterns weaves a blue colored clown of dubious origin.
-ent-ActionToggleGuardian = Toggle Guardian
- .desc = Either manifests the guardian or recalls it back into your body
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl
deleted file mode 100644
index 0328e828b6e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl
+++ /dev/null
@@ -1,17 +0,0 @@
-ent-MobHuman = Urist McHands
- .desc = { ent-BaseMobHuman.desc }
-ent-MobHumanSyndicateAgentBase = syndicate agent
- .suffix = Human, Base
- .desc = { ent-MobHuman.desc }
-ent-MobHumanSyndicateAgent = syndicate agent
- .suffix = Human, Traitor
- .desc = { ent-MobHumanSyndicateAgentBase.desc }
-ent-MobHumanSyndicateAgentNukeops = { ent-MobHumanSyndicateAgentBase }
- .suffix = Human, NukeOps
- .desc = { ent-MobHumanSyndicateAgentBase.desc }
-ent-MobHumanNukeOp = Nuclear Operative
- .desc = { ent-MobHuman.desc }
-ent-MobHumanLoneNuclearOperative = Lone Operative
- .desc = { ent-MobHuman.desc }
-ent-MobHumanSpaceNinja = Space Ninja
- .desc = { ent-MobHuman.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/humanoid.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/humanoid.ftl
deleted file mode 100644
index d308856388c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/humanoid.ftl
+++ /dev/null
@@ -1,83 +0,0 @@
-ent-RandomHumanoidSpawnerDeathSquad = Death Squad Agent
- .suffix = ERTRole, Death Squad
- .desc = { "" }
-ent-RandomHumanoidSpawnerERTLeader = ERT leader
- .suffix = ERTRole, Basic
- .desc = { "" }
-ent-RandomHumanoidSpawnerERTLeaderEVA = ERT leader
- .suffix = ERTRole, Armored EVA
- .desc = { ent-RandomHumanoidSpawnerERTLeader.desc }
-ent-RandomHumanoidSpawnerERTLeaderEVALecter = { ent-RandomHumanoidSpawnerERTLeaderEVA }
- .suffix = ERTRole, Lecter, EVA
- .desc = { ent-RandomHumanoidSpawnerERTLeaderEVA.desc }
-ent-RandomHumanoidSpawnerERTChaplain = ERT chaplain
- .suffix = ERTRole, Basic
- .desc = { ent-RandomHumanoidSpawnerERTLeader.desc }
-ent-RandomHumanoidSpawnerERTChaplainEVA = ERT chaplain
- .suffix = ERTRole, Enviro EVA
- .desc = { ent-RandomHumanoidSpawnerERTChaplain.desc }
-ent-RandomHumanoidSpawnerERTJanitor = ERT janitor
- .suffix = ERTRole, Basic
- .desc = { ent-RandomHumanoidSpawnerERTLeader.desc }
-ent-RandomHumanoidSpawnerERTJanitorEVA = ERT janitor
- .suffix = ERTRole, Enviro EVA
- .desc = { ent-RandomHumanoidSpawnerERTJanitor.desc }
-ent-RandomHumanoidSpawnerERTEngineer = ERT engineer
- .suffix = ERTRole, Basic
- .desc = { ent-RandomHumanoidSpawnerERTLeader.desc }
-ent-RandomHumanoidSpawnerERTEngineerEVA = ERT engineer
- .suffix = ERTRole, Enviro EVA
- .desc = { ent-RandomHumanoidSpawnerERTEngineer.desc }
-ent-RandomHumanoidSpawnerERTSecurity = ERT security
- .suffix = ERTRole, Basic
- .desc = { ent-RandomHumanoidSpawnerERTLeader.desc }
-ent-RandomHumanoidSpawnerERTSecurityEVA = ERT security
- .suffix = ERTRole, Armored EVA
- .desc = { ent-RandomHumanoidSpawnerERTSecurity.desc }
-ent-RandomHumanoidSpawnerERTSecurityEVALecter = { ent-RandomHumanoidSpawnerERTSecurityEVA }
- .suffix = ERTRole, Lecter, EVA
- .desc = { ent-RandomHumanoidSpawnerERTSecurityEVA.desc }
-ent-RandomHumanoidSpawnerERTMedical = ERT medic
- .suffix = ERTRole, Basic
- .desc = { ent-RandomHumanoidSpawnerERTLeader.desc }
-ent-RandomHumanoidSpawnerERTMedicalEVA = ERT medic
- .suffix = ERTRole, Armored EVA
- .desc = { ent-RandomHumanoidSpawnerERTMedical.desc }
-ent-RandomHumanoidSpawnerCBURNUnit = CBURN Agent
- .suffix = ERTRole
- .desc = { "" }
-ent-RandomHumanoidSpawnerCentcomOfficial = CentCom official
- .desc = { "" }
-ent-RandomHumanoidSpawnerSyndicateAgent = syndicate agent
- .desc = { "" }
-ent-RandomHumanoidSpawnerNukeOp = Nuclear Operative
- .desc = { "" }
-ent-RandomHumanoidSpawnerCluwne = Cluwne
- .suffix = spawns a cluwne
- .desc = { "" }
-ent-LostCargoTechnicianSpawner = lost cargo technician spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomHumanoidLostCargoTechnician = lost cargo technician ghost role
- .desc = { "" }
-ent-ClownTroupeSpawner = clown troupe spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomHumanoidClownTroupe = clown troupe ghost role
- .desc = { "" }
-ent-RandomHumanoidClownTroupeBanana = banana clown troupe
- .desc = { ent-RandomHumanoidClownTroupe.desc }
-ent-TravelingChefSpawner = traveling chef spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomHumanoidTravelingChef = traveling chef ghost role
- .desc = { "" }
-ent-DisasterVictimSpawner = disaster victim spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomHumanoidDisasterVictimRD = disaster victim RD ghost role
- .desc = { "" }
-ent-RandomHumanoidDisasterVictimCMO = disaster victim CMO ghost role
- .desc = { ent-RandomHumanoidDisasterVictimRD.desc }
-ent-RandomHumanoidDisasterVictimCaptain = disaster victim Captain ghost role
- .desc = { ent-RandomHumanoidDisasterVictimRD.desc }
-ent-SyndieDisasterVictimSpawner = syndie disaster victim spawner
- .desc = { ent-MarkerBase.desc }
-ent-RandomHumanoidSyndieDisasterVictim = syndie disaster victim ghost role
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl
deleted file mode 100644
index 21ab09dd517..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MobMoth = Urist McFluff
- .desc = { ent-BaseMobMoth.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/narsie.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/narsie.ftl
deleted file mode 100644
index 8bd294bec00..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/narsie.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-MobNarsieBase = Nar'Sie
- .desc = Your mind begins to bubble and ooze as it tries to comprehend what it sees.
-ent-MobNarsieSpawn = { ent-MobNarsieBase }
- .suffix = Spawn
- .desc = { ent-MobNarsieBase.desc }
-ent-MobNarsie = { ent-MobNarsieBase }
- .desc = { ent-MobNarsieBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/observer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/observer.ftl
deleted file mode 100644
index f42338dd12e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/observer.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-MobObserver = observer
- .desc = Boo!
-ent-ActionGhostBoo = Boo!
- .desc = Scare your crew members because of boredom!
-ent-ActionToggleLighting = Toggle All Lighting
- .desc = Toggle all light rendering to better observe dark areas.
-ent-ActionToggleFov = Toggle FoV
- .desc = Toggles field-of-view in order to see what players see.
-ent-ActionToggleGhosts = Toggle Ghosts
- .desc = Toggle the visibility of other ghosts.
-ent-ActionToggleGhostHearing = Toggle Ghost Hearing
- .desc = Toggle between hearing all messages and hearing only radio & nearby messages.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/ratvar.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/ratvar.ftl
deleted file mode 100644
index ceb00778057..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/ratvar.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-MobRatvarBase = Ratvar
- .desc = Your mind aches as it fails to understand the complex mechanics of what is before you.
-ent-MobRatvarSpawn = { ent-MobRatvarBase }
- .suffix = Spawn
- .desc = { ent-MobRatvarBase.desc }
-ent-MobRatvar = { ent-MobRatvarBase }
- .desc = { ent-MobRatvarBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl
deleted file mode 100644
index a197094a9ad..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ReplayObserver = { ent-MobObserver }
- .desc = { ent-MobObserver.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl
deleted file mode 100644
index 98264db63fd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-MobReptilian = Urist McScales
- .suffix = Urisst' Mzhand
- .desc = { ent-BaseMobReptilian.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl
deleted file mode 100644
index 984e922264b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-PlayerBorgGeneric = { ent-BorgChassisGeneric }
- .suffix = Battery, Tools
- .desc = { ent-BorgChassisGeneric.desc }
-ent-PlayerBorgBattery = { ent-BorgChassisGeneric }
- .suffix = Battery
- .desc = { ent-BorgChassisGeneric.desc }
-ent-PlayerBorgSyndicateAssaultBattery = { ent-BorgChassisSyndicateAssault }
- .suffix = Battery, Module, Operative
- .desc = { ent-BorgChassisSyndicateAssault.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/skeleton.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/skeleton.ftl
deleted file mode 100644
index ea462921046..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/skeleton.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-MobSkeletonPerson = { ent-BaseMobSkeletonPerson }
- .desc = { ent-BaseMobSkeletonPerson.desc }
-ent-MobSkeletonPirate = skeleton pirate
- .desc = { ent-MobSkeletonPerson.desc }
-ent-MobSkeletonBiker = skeleton biker
- .desc = { ent-MobSkeletonPerson.desc }
-ent-MobSkeletonCloset = closet skeleton
- .desc = { ent-MobSkeletonPerson.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/slime.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/slime.ftl
deleted file mode 100644
index 9e232500c1e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/slime.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MobSlimePerson = { ent-BaseMobSlimePerson }
- .desc = { ent-BaseMobSlimePerson.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/terminator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/terminator.ftl
deleted file mode 100644
index e1442f0d556..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/terminator.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-MobTerminatorBase = { "" }
- .desc = { "" }
-ent-MobHumanTerminator = exterminator
- .desc = { ent-MobHuman.desc }
-ent-MobTerminatorEndoskeleton = nt-800 "exterminator" endoskeleton
- .desc = The inner powerhouse of Susnet's infiltrator androids. Ridiculously hard alloy on the inside, unassuming flesh on the outside.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/vox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/vox.ftl
deleted file mode 100644
index a65a8396af6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/vox.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MobVox = Urist McVox
- .desc = { ent-BaseMobVox.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/arachnid.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/arachnid.ftl
deleted file mode 100644
index 97b067a4ae2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/arachnid.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseMobArachnid = Urist McWebs
- .desc = { ent-BaseMobSpeciesOrganic.desc }
-ent-MobArachnidDummy = { ent-BaseSpeciesDummy }
- .desc = { ent-BaseSpeciesDummy.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/base.ftl
deleted file mode 100644
index 1a891056b75..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/base.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseMobSpecies = { ent-BaseMob }
- .desc = { ent-BaseMob.desc }
-ent-BaseMobSpeciesOrganic = { ent-BaseMobSpecies }
- .desc = { ent-BaseMobSpecies.desc }
-ent-BaseSpeciesDummy = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/diona.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/diona.ftl
deleted file mode 100644
index 0ea87dc6e3e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/diona.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseMobDiona = Urist McPlants
- .desc = { ent-BaseMobSpeciesOrganic.desc }
-ent-MobDionaDummy = { ent-BaseSpeciesDummy }
- .desc = { ent-BaseSpeciesDummy.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/dwarf.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/dwarf.ftl
deleted file mode 100644
index dc629379b43..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/dwarf.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseMobDwarf = Urist McHands The Dwarf
- .desc = { ent-BaseMobSpeciesOrganic.desc }
-ent-MobDwarfDummy = { ent-BaseSpeciesDummy }
- .desc = { ent-BaseSpeciesDummy.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/gingerbread.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/gingerbread.ftl
deleted file mode 100644
index 2520bec268b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/gingerbread.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseMobGingerbread = Urist McCookie
- .desc = { ent-BaseMobSpeciesOrganic.desc }
-ent-MobGingerbreadDummy = { ent-BaseSpeciesDummy }
- .desc = { ent-BaseSpeciesDummy.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/human.ftl
deleted file mode 100644
index d39a736f2fb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/human.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseMobHuman = Urist McHands
- .desc = { ent-BaseMobSpeciesOrganic.desc }
-ent-MobHumanDummy = { ent-BaseSpeciesDummy }
- .desc = { ent-BaseSpeciesDummy.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl
deleted file mode 100644
index 835d8a2aea3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseMobMoth = Urist McFluff
- .desc = { ent-BaseMobSpeciesOrganic.desc }
-ent-MobMothDummy = { ent-BaseSpeciesDummy }
- .desc = { ent-BaseSpeciesDummy.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/reptilian.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/reptilian.ftl
deleted file mode 100644
index ae5b6a66b00..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/reptilian.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseMobReptilian = Urisst' Mzhand
- .desc = { ent-BaseMobSpeciesOrganic.desc }
-ent-MobReptilianDummy = { ent-BaseSpeciesDummy }
- .desc = A dummy reptilian meant to be used in character setup.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/skeleton.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/skeleton.ftl
deleted file mode 100644
index a4dd1140c70..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/skeleton.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseMobSkeletonPerson = Urist McSkelly
- .desc = { ent-BaseMobSpeciesOrganic.desc }
-ent-MobSkeletonPersonDummy = { ent-BaseSpeciesDummy }
- .desc = { ent-BaseSpeciesDummy.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/slime.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/slime.ftl
deleted file mode 100644
index cc518196b12..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/slime.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseMobSlimePerson = Urist McSlime
- .desc = { ent-BaseMobSpeciesOrganic.desc }
-ent-MobSlimePersonDummy = { ent-MobHumanDummy }
- .desc = { ent-MobHumanDummy.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/vox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/vox.ftl
deleted file mode 100644
index 0238c5342f9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/vox.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseMobVox = { ent-BaseMobSpeciesOrganic }
- .desc = { ent-BaseMobSpeciesOrganic.desc }
-ent-MobVoxDummy = { ent-BaseSpeciesDummy }
- .desc = { ent-BaseSpeciesDummy.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/base_item.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/base_item.ftl
deleted file mode 100644
index 95b081d96ae..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/base_item.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseItem = item
- .desc = { "" }
-ent-BaseStorageItem = storage item
- .desc = { ent-BaseItem.desc }
-ent-BaseBagOpenClose = { "" }
- .desc = { "" }
-ent-PowerCellSlotSmallItem = { "" }
- .desc = { "" }
-ent-PowerCellSlotMediumItem = { "" }
- .desc = { "" }
-ent-PowerCellSlotHighItem = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/base_shadow.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/base_shadow.ftl
deleted file mode 100644
index 9a85067823d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/base_shadow.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BaseShadow = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl
deleted file mode 100644
index d93ac50df48..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl
+++ /dev/null
@@ -1,23 +0,0 @@
-ent-DrinkCartonBaseFull = { ent-DrinkBase }
- .suffix = Full
- .desc = { ent-DrinkBase.desc }
-ent-DrinkCartonBaseLargeFull = { ent-DrinkCartonBaseFull }
- .desc = { ent-DrinkCartonBaseFull.desc }
-ent-DrinkCartonVisualsOpenable = { "" }
- .desc = { "" }
-ent-DrinkJuiceLimeCarton = lime juice
- .desc = Sweet-sour goodness.
-ent-DrinkJuiceOrangeCarton = orange juice
- .desc = Full of vitamins and deliciousness!
-ent-DrinkJuiceTomatoCarton = tomato juice
- .desc = Well, at least it LOOKS like tomato juice. You can't tell with all that redness.
-ent-DrinkCoconutWaterCarton = coconut water
- .desc = It's the inside of the coconut that counts.
-ent-DrinkCreamCarton = milk cream
- .desc = It's cream. Made from milk. What else did you think you'd find in there?
-ent-DrinkMilkCarton = milk
- .desc = An opaque white liquid produced by the mammary glands of mammals.
-ent-DrinkSoyMilkCarton = soy milk
- .desc = White and nutritious soy goodness!
-ent-DrinkOatMilkCarton = oat milk
- .desc = It's oat milk. Tan and nutritious goodness!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl
deleted file mode 100644
index f7e9940974a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl
+++ /dev/null
@@ -1,428 +0,0 @@
-ent-DrinkBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-DrinkGlassBase = { ent-DrinkBase }
- .desc = { ent-DrinkBase.desc }
-ent-DrinkGlass = metamorphic glass
- .desc = A metamorphic glass that automagically turns into a glass appropriate for the drink within. There's a sanded off patent number on the bottom.
-ent-DrinkGlassCoupeShaped = coupe glass
- .desc = A classic thin neck coupe glass, the icon of fragile labels on crates around the galaxy.
-ent-DrinkAbsintheGlass = { ent-DrinkGlass }
- .suffix = absinthe
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkAcidSpitGlass = { ent-DrinkGlass }
- .suffix = acid spit
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkAleGlass = { ent-DrinkGlass }
- .suffix = ale
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkAlliesCocktail = { ent-DrinkGlass }
- .suffix = allies cocktail
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkAloe = { ent-DrinkGlass }
- .suffix = aloe
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkAmasecGlass = { ent-DrinkGlass }
- .suffix = amasec
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkAndalusia = { ent-DrinkGlass }
- .suffix = andalusia
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkAntifreeze = { ent-DrinkGlass }
- .suffix = antifreeze
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkArnoldPalmer = { ent-DrinkGlass }
- .suffix = arnold palmer
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkAtomicBombGlass = { ent-DrinkGlass }
- .suffix = atomic bomb
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkB52Glass = { ent-DrinkGlass }
- .suffix = b-52
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBahamaMama = { ent-DrinkGlass }
- .suffix = bahama mama
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBananaHonkGlass = { ent-DrinkGlass }
- .suffix = banana honk
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBarefootGlass = { ent-DrinkGlass }
- .suffix = barefoot
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBeepskySmashGlass = { ent-DrinkGlass }
- .suffix = beepsky smash
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBeerglass = { ent-DrinkGlass }
- .suffix = beer
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBerryJuice = { ent-DrinkGlass }
- .suffix = berry juice
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBlackRussianGlass = { ent-DrinkGlass }
- .suffix = black russian
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBlueCuracaoGlass = { ent-DrinkGlass }
- .suffix = blue curacao
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBloodyMaryGlass = { ent-DrinkGlass }
- .suffix = bloody mary
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBlueHawaiianGlass = { ent-DrinkGlass }
- .suffix = blue hawaiian
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBooger = { ent-DrinkGlass }
- .suffix = booger
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkBraveBullGlass = { ent-DrinkGlass }
- .suffix = brave bull
- .desc = { ent-DrinkGlass.desc }
-ent-BudgetInsulsDrinkGlass = { ent-DrinkGlass }
- .suffix = budget insuls
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkCarrotJuice = { ent-DrinkGlass }
- .suffix = carrot juice
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkChocolateGlass = { ent-DrinkGlass }
- .suffix = chocolate
- .desc = { ent-DrinkGlass.desc }
-ent-RubberneckGlass = { ent-DrinkGlass }
- .suffix = rubberneck
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkCoconutRum = { ent-DrinkGlass }
- .suffix = coconut rum
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkCoconutWaterGlass = { ent-DrinkGlass }
- .suffix = coconut water
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkCoffee = { ent-DrinkGlass }
- .suffix = coffee
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkCognacGlass = { ent-DrinkGlass }
- .suffix = cognac
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkCosmopolitan = { ent-DrinkGlass }
- .suffix = cosmopolitan
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkCream = { ent-DrinkGlass }
- .suffix = cream
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkCubaLibreGlass = { ent-DrinkGlass }
- .suffix = cuba libre
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkDeadRumGlass = { ent-DrinkGlass }
- .suffix = dead rum
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkDemonsBlood = { ent-DrinkGlass }
- .suffix = demon's blood
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkDevilsKiss = { ent-DrinkGlass }
- .suffix = devil's kiss
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkDoctorsDelightGlass = { ent-DrinkGlass }
- .suffix = doctor's delight
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkDriestMartiniGlass = { ent-DrinkGlass }
- .suffix = driest martini
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkDrGibbGlass = { ent-DrinkGlass }
- .suffix = dr gibb
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkErikaSurprise = { ent-DrinkGlass }
- .suffix = erika surprise
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkFourteenLokoGlass = { ent-DrinkGlass }
- .suffix = fourteen loko
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGargleBlasterGlass = { ent-DrinkGlass }
- .suffix = pan-galactic gargle blaster
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGinGlass = { ent-DrinkGlass }
- .suffix = gin
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGinFizzGlass = { ent-DrinkGlass }
- .suffix = gin fizz
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGinTonicglass = { ent-DrinkGlass }
- .suffix = gin and tonic
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGildlagerGlass = { ent-DrinkGlass }
- .suffix = gildlager
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGrapeJuice = { ent-DrinkGlass }
- .suffix = grape juice
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGrapeSodaGlass = { ent-DrinkGlass }
- .suffix = grape soda
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGreenTeaGlass = { ent-DrinkGlass }
- .suffix = green tea
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGrenadineGlass = { ent-DrinkGlass }
- .suffix = grenadine
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGrogGlass = { ent-DrinkGlass }
- .suffix = grog
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkHippiesDelightGlass = { ent-DrinkGlass }
- .suffix = hippies' delight
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkHoochGlass = { ent-DrinkGlass }
- .desc = You've really hit rock bottom now... your liver packed its bags and left last night.
- .suffix = hooch
-ent-DrinkIcedCoffeeGlass = { ent-DrinkGlass }
- .suffix = iced coffee
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkIcedGreenTeaGlass = { ent-DrinkGlass }
- .suffix = iced green tea
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkIcedTeaGlass = { ent-DrinkGlass }
- .suffix = iced tea
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkIcedBeerGlass = { ent-DrinkGlass }
- .suffix = iced beer
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkIceGlass = { ent-DrinkGlass }
- .suffix = ice
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkIceCreamGlass = { ent-DrinkGlass }
- .suffix = ice cream
- .desc = { ent-DrinkGlass.desc }
-ent-IrishBoolGlass = { ent-DrinkGlass }
- .suffix = irish bool
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkIrishCarBomb = { ent-DrinkGlass }
- .suffix = irish car bomb
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkIrishCoffeeGlass = { ent-DrinkGlass }
- .suffix = irish coffee
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkIrishCreamGlass = { ent-DrinkGlass }
- .suffix = irish cream
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkCoffeeLiqueurGlass = { ent-DrinkGlass }
- .suffix = coffee liqueur
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkKiraSpecial = { ent-DrinkGlass }
- .suffix = kira special
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkLemonadeGlass = { ent-DrinkGlass }
- .suffix = lemonade
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkLemonJuice = { ent-DrinkGlass }
- .suffix = lemon juice
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkLemonLime = { ent-DrinkGlass }
- .suffix = lemon lime
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkLimeJuice = { ent-DrinkGlass }
- .suffix = lime juice
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkLongIslandIcedTeaGlass = { ent-DrinkGlass }
- .suffix = long island iced tea
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkManhattanGlass = { ent-DrinkGlass }
- .suffix = manhattan
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkManhattanProjectGlass = { ent-DrinkGlass }
- .suffix = manhattan project
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkManlyDorfGlass = { ent-DrinkGlass }
- .suffix = manly dorf
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkMargaritaGlass = { ent-DrinkGlass }
- .suffix = margarita
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkMartiniGlass = { ent-DrinkGlass }
- .suffix = classic martini
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkMeadGlass = { ent-DrinkGlass }
- .suffix = mead
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkMilkshake = { ent-DrinkGlass }
- .suffix = milkshake
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkMojito = { ent-DrinkGlass }
- .suffix = mojito
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkNeurotoxinGlass = { ent-DrinkGlass }
- .suffix = neurotoxin
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkNothing = { ent-DrinkGlass }
- .suffix = nothing
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkNTCahors = { ent-DrinkGlass }
- .suffix = neotheology cahors whine
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkNuclearColaGlass = { ent-DrinkGlass }
- .suffix = nuclear cola
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkOrangeJuice = { ent-DrinkGlass }
- .suffix = orange juice
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkPainkillerGlass = { ent-DrinkGlass }
- .suffix = painkiller
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkPatronGlass = { ent-DrinkGlass }
- .suffix = patron
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkPinaColadaGlass = { ent-DrinkGlass }
- .suffix = piña colada
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkPoisonBerryJuice = { ent-DrinkGlass }
- .suffix = poison berry juice
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkPoisonWineGlass = { ent-DrinkGlass }
- .suffix = poison wine
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkPoscaGlass = { ent-DrinkGlass }
- .suffix = posca
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkRedMeadGlass = { ent-DrinkGlass }
- .suffix = red mead
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkRewriter = { ent-DrinkGlass }
- .suffix = rewriter
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkRootBeerGlass = { ent-DrinkGlass }
- .suffix = root beer
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkRootBeerFloatGlass = { ent-DrinkGlass }
- .suffix = root beer float
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkRumGlass = { ent-DrinkGlass }
- .suffix = rum
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkRoyRogersGlass = { ent-DrinkGlass }
- .suffix = roy rogers
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSakeGlass = { ent-DrinkGlass }
- .suffix = sake
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSbitenGlass = { ent-DrinkGlass }
- .suffix = sbiten
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkScrewdriverCocktailGlass = { ent-DrinkGlass }
- .suffix = screwdriver
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkCogChampBase = { ent-DrinkGlass }
- .suffix = cogchamp
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSuiDreamGlass = { ent-DrinkGlass }
- .suffix = sui dream
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkEmeraldGlass = { ent-DrinkGlass }
- .suffix = melon liquor
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkMoonshineGlass = { ent-DrinkGlass }
- .suffix = moonshine
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkGlassWhite = { ent-DrinkGlass }
- .suffix = milk
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkShirleyTempleGlass = { ent-DrinkGlass }
- .suffix = shirley temple
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSilencerGlass = { ent-DrinkGlass }
- .suffix = silencer
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSingulo = { ent-DrinkGlass }
- .suffix = singulo
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSolDryGlass = { ent-DrinkGlass }
- .suffix = sol dry
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSnowWhite = { ent-DrinkGlass }
- .suffix = snow white
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSoyLatte = { ent-DrinkGlass }
- .suffix = soy latte
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSpaceUpGlass = { ent-DrinkGlass }
- .suffix = space-up
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSpaceMountainWindGlass = { ent-DrinkGlass }
- .suffix = space mountain wind
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkSyndicatebomb = { ent-DrinkGlass }
- .suffix = syndicate bomb
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkTeaGlass = { ent-DrinkGlass }
- .suffix = tea
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkTeapot = teapot
- .desc = An elegant teapot. It simply oozes class.
-ent-DrinkTequilaGlass = { ent-DrinkGlass }
- .suffix = tequila
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkTequilaSunriseGlass = { ent-DrinkGlass }
- .suffix = tequila sunrise
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkTheMartinez = { ent-DrinkGlass }
- .suffix = The Martinez
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkThreeMileIslandGlass = { ent-DrinkGlass }
- .suffix = three mile island
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkTomatoJuice = { ent-DrinkGlass }
- .suffix = tomato juice
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkToxinsSpecialGlass = { ent-DrinkGlass }
- .suffix = toxins special
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkVermouthGlass = { ent-DrinkGlass }
- .suffix = vermouth
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkVodkaGlass = { ent-DrinkGlass }
- .suffix = vodka
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkVodkaMartiniGlass = { ent-DrinkGlass }
- .suffix = vodka martini
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkVodkaRedBool = { ent-DrinkGlass }
- .suffix = vodka red bool
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkVodkaTonicGlass = { ent-DrinkGlass }
- .suffix = vodka tonic
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkWaterJug = water jug
- .desc = Stay hydrated
-ent-DrinkWatermelonJuice = { ent-DrinkGlass }
- .suffix = watermelon juice
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkWatermelonWakeup = { ent-DrinkGlass }
- .suffix = watermelon wakeup
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkWhiskeyColaGlass = { ent-DrinkGlass }
- .suffix = whiskey cola
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkWhiskeyGlass = { ent-DrinkGlass }
- .suffix = whiskey
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkWhiskeySodaGlass = { ent-DrinkGlass }
- .suffix = whiskey soda
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkWhiteRussianGlass = { ent-DrinkGlass }
- .suffix = white russian
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkWineGlass = { ent-DrinkGlass }
- .suffix = wine
- .desc = { ent-DrinkGlass.desc }
-ent-XenoBasherGlass = { ent-DrinkGlass }
- .suffix = xeno basher
- .desc = { ent-DrinkGlass.desc }
-ent-DrinkShakeBlue = blue milkshake
- .desc = { ent-DrinkGlassBase.desc }
-ent-DrinkShakeEmpty = shakeempty
- .desc = { ent-DrinkGlassBase.desc }
-ent-DrinkShakeMeat = meat shake
- .desc = { ent-DrinkGlassBase.desc }
-ent-DrinkShakeRobo = robo shake
- .desc = { ent-DrinkGlassBase.desc }
-ent-DrinkShakeWhite = white shake
- .desc = { ent-DrinkGlassBase.desc }
-ent-DrinkRamen = cup ramen
- .desc = Just add 10ml boiling water. A taste that reminds you of your school years.
-ent-DrinkHellRamen = hell ramen
- .desc = Just add 10ml boiling water. Super spicy flavor.
-ent-DrinkBloodGlass = { ent-DrinkGlass }
- .suffix = blood
- .desc = { ent-DrinkGlass.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl
deleted file mode 100644
index f3fc14bce12..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl
+++ /dev/null
@@ -1,102 +0,0 @@
-ent-DrinkBottlePlasticBaseFull = { ent-DrinkBase }
- .suffix = Full
- .desc = { ent-DrinkBase.desc }
-ent-DrinkBottleGlassBaseFull = { ent-DrinkBottlePlasticBaseFull }
- .desc = { ent-DrinkBottlePlasticBaseFull.desc }
-ent-DrinkBottleVisualsOpenable = { "" }
- .desc = { "" }
-ent-DrinkBottleVisualsAll = { "" }
- .desc = { "" }
-ent-DrinkAbsintheBottleFull = Jailbreaker Verte
- .desc = One sip of this and you just know you're gonna have a good time.
-ent-DrinkBlueCuracaoBottleFull = Miss Blue Curacao
- .desc = A fruity, exceptionally azure drink. Does not allow the imbiber to use the fifth magic.
-ent-DrinkBottleOfNothingFull = bottle of nothing
- .desc = A bottle filled with nothing.
-ent-DrinkChampagneBottleFull = champagne bottle
- .desc = Only people devoid of imagination can't find an excuse for champagne.
-ent-DrinkCognacBottleFull = cognac bottle
- .desc = A sweet and strongly alchoholic drink, made after numerous distillations and years of maturing. You might as well not scream 'SHITCURITY' this time.
-ent-DrinkColaBottleFull = space cola bottle
- .desc = Cola. In space.
-ent-DrinkGrenadineBottleFull = briar rose grenadine syrup bottle
- .desc = Sweet and tangy, a bar syrup used to add color or flavor to drinks.
-ent-DrinkGinBottleFull = Griffeater gin
- .desc = A bottle of high quality gin, produced in the New London Space Station.
-ent-DrinkGildlagerBottleFull = gildlager bottle
- .desc = 100 proof cinnamon schnapps, made for alcoholic teen girls on spring break.
-ent-DrinkCoffeeLiqueurBottleFull = coffee liqueur bottle
- .desc = The great taste of coffee with none of the benifits.
-ent-DrinkMelonLiquorBottleFull = emeraldine melon liquor
- .desc = A bottle of 46 proof Emeraldine Melon Liquor. Sweet and light.
-ent-DrinkPatronBottleFull = wrapp artiste patron bottle
- .desc = Silver laced tequilla, served in space night clubs across the galaxy.
-ent-DrinkPoisonWinebottleFull = warlock's velvet bottle
- .desc = What a delightful packaging for a surely high quality wine! The vintage must be amazing!
-ent-DrinkRumBottleFull = captain pete's Cuban spiced rum
- .desc = This isn't just rum, oh no. It's practically GRIFF in a bottle.
-ent-DrinkSpaceMountainWindBottleFull = space mountain wind bottle
- .desc = Blows right through you like a space wind.
-ent-DrinkSpaceUpBottleFull = space-up bottle
- .desc = Tastes like a hull breach in your mouth.
-ent-DrinkTequilaBottleFull = caccavo guaranteed quality tequila bottle
- .desc = Made from premium petroleum distillates, pure thalidomide and other fine quality ingredients!
-ent-DrinkVermouthBottleFull = goldeneye vermouth bottle
- .desc = Sweet, sweet dryness!
-ent-DrinkVodkaBottleFull = vodka bottle
- .desc = Aah, vodka. Prime choice of drink AND fuel by Russians worldwide.
-ent-DrinkWhiskeyBottleFull = uncle git's special reserve
- .desc = A premium single-malt whiskey, gently matured inside the tunnels of a nuclear shelter. TUNNEL WHISKEY RULES.
-ent-DrinkWineBottleFull = doublebearded bearded special wine bottle
- .desc = A faint aura of unease and asspainery surrounds the bottle.
-ent-DrinkBeerBottleFull = beer
- .desc = An alcoholic beverage made from malted grains, hops, yeast, and water.
-ent-DrinkBeerGrowler = Beer Growler
- .desc = An alcoholic beverage made from malted grains, hops, yeast, and water. XL growler bottle.
-ent-DrinkAleBottleFull = Magm-Ale
- .desc = A true dorf's drink of choice.
-ent-DrinkAleBottleFullGrowler = Magm-Ale Growler
- .desc = A true dorf's drink of choice. XL growler bottle.
-ent-DrinkWaterBottleFull = water bottle
- .desc = Simple clean water of unknown origin. You think that maybe you dont want to know it.
-ent-DrinkSodaWaterBottleFull = soda water bottle
- .desc = Like water, but angry!
-ent-DrinkTonicWaterBottleFull = tonic water bottle
- .desc = Like soda water, but angrier maybe? Often sweeter.
-ent-DrinkSakeBottleFull = small sake bottle
- .desc = The regret of the next morning seems to be nipping on the bottle too.
-ent-DrinkJuiceLimeCartonXL = lime juice XL
- .desc = Sweet-sour goodness.
-ent-DrinkJuiceOrangeCartonXL = orange juice XL
- .desc = Full of vitamins and deliciousness!
-ent-DrinkCreamCartonXL = Milk Cream XL
- .desc = It's cream. Made from milk. What else did you think you'd find in there?
-ent-DrinkSugarJug = sugar jug
- .desc = some people put this in their coffee...
- .suffix = For Drinks, Full
-ent-DrinkLemonLimeJug = lemon lime jug
- .desc = a dual citrus sensation.
-ent-DrinkMeadJug = mead jug
- .desc = storing mead in a plastic jug should be a crime.
-ent-DrinkIceJug = ice jug
- .desc = stubborn water. pretty cool.
-ent-DrinkCoconutWaterJug = coconut water jug
- .desc = It's on the inside of the coconut that counts.
-ent-DrinkCoffeeJug = coffee jug
- .desc = wake up juice, of the heated kind.
-ent-DrinkTeaJug = tea jug
- .desc = the drink of choice for the Bri'ish and hipsters.
-ent-DrinkGreenTeaJug = green tea jug
- .desc = its like tea... but green! great for settling the stomach.
-ent-DrinkIcedTeaJug = iced tea jug
- .desc = for when the regular tea is too hot for you boohoo
-ent-DrinkDrGibbJug = dr gibb. jug
- .desc = yeah I don't know either...
-ent-DrinkRootBeerJug = root beer jug
- .desc = this drink makes Australians giggle
-ent-DrinkWaterMelonJuiceJug = watermelon juice jug
- .desc = May include leftover seeds
-ent-DrinkEnergyDrinkJug = red bool jug
- .desc = A jug of Red Bool, with enough caffine to kill a whole station.
-ent-CustomDrinkJug = beverage jug
- .desc = A jug for storing custom made drinks.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl
deleted file mode 100644
index 7c5efcba549..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl
+++ /dev/null
@@ -1,47 +0,0 @@
-ent-DrinkCanBaseFull = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-DrinkColaCan = space cola
- .desc = A refreshing beverage.
-ent-DrinkColaCanEmpty = { ent-DrinkColaCan }
- .suffix = empty
- .desc = { ent-DrinkColaCan.desc }
-ent-DrinkIcedTeaCan = iced tea can
- .desc = A refreshing can of iced tea.
-ent-DrinkLemonLimeCan = lemon-lime can
- .desc = You wanted ORANGE. It gave you Lemon-Lime.
-ent-DrinkGrapeCan = grape soda can
- .desc = Sweetened drink with a grape flavor and a deep purple color.
-ent-DrinkRootBeerCan = root beer can
- .desc = Some of that tasty root beer goodness, now in a portable can!
-ent-DrinkSodaWaterCan = soda water can
- .desc = Soda water. Why not make a scotch and soda?
-ent-DrinkSpaceMountainWindCan = space mountain wind can
- .desc = Blows right through you like a space wind.
-ent-DrinkSpaceUpCan = space-up can
- .desc = Tastes like a hull breach in your mouth.
-ent-DrinkSolDryCan = sol dry
- .desc = Sweet ginger soda from outer space!
-ent-DrinkStarkistCan = starkist can
- .desc = The taste of a star in liquid form. And, a bit of tuna...?
-ent-DrinkTonicWaterCan = tonic water can
- .desc = Quinine tastes funny, but at least it'll keep that Space Malaria away.
-ent-DrinkFourteenLokoCan = Fourteen Loko can
- .desc = The MBO has advised crew members that consumption of Fourteen Loko may result in seizures, blindness, drunkeness, or even death. Please Drink Responsibly.
-ent-DrinkChangelingStingCan = changeling sting can
- .desc = You take a tiny sip and feel a burning sensation...
-ent-DrinkDrGibbCan = Dr. Gibb can
- .desc = A delicious blend of 42 different flavours.
-ent-DrinkNukieCan = blood-red brew can
- .desc = A home-brewed drink made from the crazed minds at the Syndicate. Not recommended by doctors.
-ent-DrinkEnergyDrinkCan = red bool energy drink
- .desc = A can of Red Bool, with enough caffeine to kill a horse.
-ent-DrinkCanPack = 6pack
- .desc = { ent-BaseStorageItem.desc }
-ent-DrinkShamblersJuiceCan = shamblers juice can
- .desc = ~Shake me up some of that Shambler's Juice!~
-ent-DrinkPwrGameCan = pwr game can
- .desc = The only drink with the PWR that true gamers crave. When a gamer talks about gamerfuel, this is what they're literally referring to.
-ent-DrinkBeerCan = beer can
- .desc = Small joy, big taste, no worries!
-ent-DrinkWineCan = wine can
- .desc = Your way to forgetting all worries and having fun!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cups.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cups.ftl
deleted file mode 100644
index 8ec8b8eb74a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cups.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-DrinkBaseCup = base cup
- .desc = { ent-BaseItem.desc }
-ent-DrinkGoldenCup = golden cup
- .desc = A golden cup.
-ent-DrinkBaseMug = mug
- .desc = A mug.
-ent-DrinkMug = mug
- .desc = A plain white mug.
-ent-DrinkMugBlack = black mug
- .desc = A sleek black mug.
-ent-DrinkMugBlue = blue mug
- .desc = A blue and black mug.
-ent-DrinkMugGreen = green mug
- .desc = A pale green and pink mug.
-ent-DrinkMugDog = funny dog mug
- .desc = It looks like a cartoon beagle.
-ent-DrinkMugHeart = heart mug
- .desc = A white mug, it prominently features a red heart.
-ent-DrinkMugMetal = metal mug
- .desc = A metal mug. You're not sure which metal.
-ent-DrinkMugMoebius = moebius mug
- .desc = A mug with a Moebius Laboratories logo on it. Not even your morning coffee is safe from corporate advertising.
-ent-DrinkMugOne = #1 mug
- .desc = A white mug, it prominently features a #1.
-ent-DrinkMugRainbow = rainbow mug
- .desc = A rainbow mug. The colors are almost as blinding as a welder.
-ent-DrinkMugRed = red mug
- .desc = A red and black mug.
-ent-DrinkHotCoco = hot chocolate
- .desc = A heated drink consisting melted chocolate and heated milk.
-ent-DrinkHotCoffee = coffee
- .desc = Coffee is a brewed drink prepared from roasted seeds, commonly called coffee beans, of the coffee plant.
-ent-DrinkCafeLatte = cafe latte
- .desc = A nice, strong and tasty beverage while you are reading.
-ent-DrinkTeacup = teacup
- .desc = A plain white porcelain teacup.
-ent-DrinkGreenTea = green tea
- .desc = A plain white porcelain teacup.
-ent-DrinkLean = grape Juice
- .desc = Damn, no fun allowed.
-ent-DrinkWaterCup = water cup
- .desc = A paper water cup.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_flasks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_flasks.ftl
deleted file mode 100644
index 9a11508c772..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_flasks.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-FlaskBase = { ent-DrinkBase }
- .desc = { ent-DrinkBase.desc }
-ent-DrinkShinyFlask = shiny flask
- .desc = A shiny metal flask. It appears to have a Greek symbol inscribed on it.
-ent-DrinkMREFlask = MRE flask
- .desc = An old military flask, filled with the finest contents for soldiers
-ent-DrinkDetFlask = inspector's flask
- .desc = A metal flask with a leather band and golden badge belonging to the inspector.
-ent-DrinkHosFlask = hos's flask
- .desc = A metal flask, fit for a hard working HoS.
-ent-DrinkFlask = captain's flask
- .desc = A metal flask belonging to the captain
-ent-DrinkFlaskBar = bar flask
- .desc = A metal flask often given out by the bartender on loan. Don't forget to return it!
-ent-DrinkFlaskOld = flask
- .desc = { ent-FlaskBase.desc }
-ent-DrinkLithiumFlask = lithium flask
- .desc = A flask with a Lithium Atom symbol on it.
-ent-DrinkVacuumFlask = vacuum flask
- .desc = Keeping your drinks at the perfect temperature since 1892.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_fun.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_fun.ftl
deleted file mode 100644
index b83f512fc62..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_fun.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-DrinkSpaceGlue = space glue tube
- .desc = High performance glue intended for maintenance of extremely complex mechanical equipment. DON'T DRINK!
-ent-DrinkSpaceLube = space lube tube
- .desc = High performance lubricant intended for maintenance of extremely complex mechanical equipment.
-ent-DrinkMopwataBottleRandom = delicious mopwata
- .desc = A foggy brown bottle with a faded label depicting a mop. It comes full of murky... vintage.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_solutioncontainerexample.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_solutioncontainerexample.ftl
deleted file mode 100644
index 23e22769c90..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_solutioncontainerexample.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-DrinkVisualizerTestCut = solution container vis cut-out
- .desc = A stainless steel insulated pitcher. Everyone's best friend in the morning.
-ent-DrinkVisualizerTestNot = solution container vis cut-not
- .desc = A stainless steel insulated pitcher. Everyone's best friend in the morning.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_special.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_special.ftl
deleted file mode 100644
index 8c697ec86cc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_special.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-DrinkShaker = shaker
- .desc = The trusty mixing buddy of the bartender.
-ent-DrinkShotGlass = shot glass
- .desc = Perfect for slamming down onto the table angrily.
-ent-DrinkJar = jar
- .desc = The hipster's cup
-ent-DrinkJarWhat = jar of something
- .desc = You can't really tell what this is.
-ent-BartenderMixer = { "" }
- .desc = { "" }
-ent-DrinkJigger = jigger
- .desc = Like a shaker, but smaller. Used to control the amount of ingredients.
-ent-DrinkIceBucket = ice bucket
- .desc = A special bucket of refreshy ice. Prohibited use for challenge with the same name!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl
deleted file mode 100644
index 655495d0f21..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl
+++ /dev/null
@@ -1,58 +0,0 @@
-ent-DrinkBottleBaseEmpty = base empty bottle
- .desc = An empty bottle.
- .suffix = Empty
-ent-DrinkBottleBaseSmallEmpty = base empty bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkCartonBaseEmpty = base empty carton
- .desc = An empty carton.
- .suffix = Empty
-ent-DrinkCartonBaseLargeEmpty = base empty bottle
- .desc = { ent-DrinkCartonBaseEmpty.desc }
-ent-DrinkBottleAbsinthe = Jailbreaker Verte bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleAlcoClear = alcohol bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleAle = ale bottle
- .desc = { ent-DrinkBottleBaseSmallEmpty.desc }
-ent-DrinkBottleBeer = beer bottle
- .desc = { ent-DrinkBottleBaseSmallEmpty.desc }
-ent-DrinkBottleCognac = cognac bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleGin = Griffeater gin bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleGildlager = gildlager bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleCoffeeLiqueur = coffee liqueur bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleNTCahors = nt cahors bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottlePatron = patron bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottlePoisonWine = poison wine bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleRum = rum bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleTequila = tequila bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleVermouth = vermouth bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleVodka = vodka bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleWhiskey = whiskey bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkBottleWine = wine bottle
- .desc = { ent-DrinkBottleBaseEmpty.desc }
-ent-DrinkCartonLime = lime juice carton
- .desc = { ent-DrinkCartonBaseEmpty.desc }
-ent-DrinkCartonOrange = orange juice carton
- .desc = { ent-DrinkCartonBaseEmpty.desc }
-ent-DrinkCartonTomato = tomato juice carton
- .desc = { ent-DrinkCartonBaseEmpty.desc }
-ent-DrinkCartonCream = milk cream carton
- .desc = { ent-DrinkCartonBaseEmpty.desc }
-ent-DrinkCartonMilk = milk carton
- .desc = { ent-DrinkCartonBaseLargeEmpty.desc }
-ent-DrinkCartonSoyMilk = soy milk carton
- .desc = { ent-DrinkCartonBaseLargeEmpty.desc }
-ent-DrinkCartonOatMilk = oat milk carton
- .desc = { ent-DrinkCartonBaseLargeEmpty.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl
deleted file mode 100644
index b6d1c44f61c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl
+++ /dev/null
@@ -1,66 +0,0 @@
-ent-FoodBreadBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodBreadSliceBase = { ent-FoodBreadBase }
- .desc = { ent-FoodBreadBase.desc }
-ent-FoodBreadVolcanic = volcanic loaf
- .desc = A dark loaf. Resembles pumice.
-ent-FoodBreadVolcanicSlice = volcanic slice
- .desc = A slice of dark loaf. Resembles pumice.
-ent-FoodBreadBanana = banana bread
- .desc = A heavenly and filling treat.
-ent-FoodBreadBananaSlice = banana bread slice
- .desc = A slice of delicious banana bread.
-ent-FoodBreadCorn = cornbread
- .desc = Some good down-home country-style, rootin'-tootin', revolver-shootin', dad-gum yeehaw cornbread.
-ent-FoodBreadCornSlice = cornbread slice
- .desc = A slice of cornbread.
-ent-FoodBreadCreamcheese = cream cheese bread
- .desc = Yum yum yum!
-ent-FoodBreadCreamcheeseSlice = cream cheese bread slice
- .desc = A slice of yum!
-ent-FoodBreadMeat = meat bread
- .desc = The culinary base of every self-respecting eloquen/tg/entleman.
-ent-FoodBreadMeatSlice = meat bread slice
- .desc = A slice of delicious meatbread.
-ent-FoodBreadMimana = mimana bread
- .desc = Best eaten in silence.
-ent-FoodBreadMimanaSlice = mimana bread slice
- .desc = A slice of silence!
-ent-FoodBreadPlain = bread
- .desc = Some plain old earthen bread.
-ent-FoodBreadPlainSlice = bread slice
- .desc = A slice of home.
-ent-FoodBreadSausage = sausage bread
- .desc = Dont think too much about it.
-ent-FoodBreadSausageSlice = sausage bread slice
- .desc = Dont think too much about it.
-ent-FoodBreadMeatSpider = spider meat bread
- .desc = Reassuringly green meatloaf made from spider meat.
-ent-FoodBreadMeatSpiderSlice = spider meat bread slice
- .desc = A slice of meatloaf made from an animal that most likely still wants you dead.
-ent-FoodBreadTofu = tofu bread
- .desc = Like meatbread but for vegetarians. Brag to your crewmates about how much better it is.
-ent-FoodBreadTofuSlice = tofu bread slice
- .desc = A slice of delicious tofu bread.
-ent-FoodBreadMeatXeno = xeno meat bread
- .desc = A fitting, and filling, end to xeno scum.
-ent-FoodBreadMeatXenoSlice = xeno meat bread slice
- .desc = A slice of xeno scum.
-ent-FoodBreadBaguette = baguette
- .desc = Bon appétit!
-ent-FoodBreadBaguetteSlice = crostini
- .desc = Bon ap-petite!
-ent-FoodBreadButteredToast = buttered toast
- .desc = Crunchy.
-ent-FoodBreadFrenchToast = french toast
- .desc = A slice of bread soaked in a beaten egg mixture.
-ent-FoodBreadGarlicSlice = garlic bread
- .desc = Alas, it is limited.
-ent-FoodBreadJellySlice = jelly toast
- .desc = As if science are gonna give up their slimes for toast!
-ent-FoodBreadMoldySlice = moldy bread slice
- .desc = Entire stations have been ripped apart over arguing whether this is still good to eat.
-ent-FoodBreadTwoSlice = two slice
- .desc = Classy.
-ent-MobBreadDog = bread dog
- .desc = It's a bread. It's a dog. It's a... breaddog?
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/cake.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/cake.ftl
deleted file mode 100644
index ebe441ea8fa..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/cake.ftl
+++ /dev/null
@@ -1,82 +0,0 @@
-ent-FoodCakeBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodCakeSliceBase = { ent-FoodCakeBase }
- .desc = Just a slice of cake, it is enough for everyone.
-ent-FoodCakeBlueberry = blueberry cake
- .desc = Stains your teeth.
-ent-FoodCakeBlueberrySlice = blueberry slice
- .desc = Stains your teeth.
-ent-FoodCakePlain = cake
- .desc = A plain cake, not a lie.
-ent-FoodCakePlainSlice = slice of cake
- .desc = { ent-FoodCakeSliceBase.desc }
-ent-FoodCakeCarrot = carrot cake
- .desc = A favorite desert of a certain wascally wabbit.
-ent-FoodCakeCarrotSlice = slice of carrot cake
- .desc = Carrotty slice of carrot cake. Carrots are good for your eyes!
-ent-FoodCakeBrain = brain cake
- .desc = A squishy cake-thing.
-ent-FoodCakeBrainSlice = slice of brain cake
- .desc = Lemme tell you something about prions. THEY'RE DELICIOUS.
-ent-FoodCakeCheese = cheese cake
- .desc = DANGEROUSLY cheesy.
-ent-FoodCakeCheeseSlice = slice of cheese cake
- .desc = Slice of pure cheestisfaction.
-ent-FoodCakeOrange = orange cake
- .desc = A cake with added orange.
-ent-FoodCakeOrangeSlice = slice of orange cake
- .desc = { ent-FoodCakeSliceBase.desc }
-ent-FoodCakeLime = lime cake
- .desc = A cake with added lime.
-ent-FoodCakeLimeSlice = slice of lime cake
- .desc = { ent-FoodCakeSliceBase.desc }
-ent-FoodCakeLemon = lemon cake
- .desc = A cake with added lemon.
-ent-FoodCakeLemonSlice = slice of lemon cake
- .desc = { ent-FoodCakeSliceBase.desc }
-ent-FoodCakeLemoon = lemoon cake
- .desc = A cake that represents the moon of earth
-ent-FoodCakeLemoonSlice = shard of lemoon cake
- .desc = A shard of moon, has the smell of milk.
-ent-FoodCakeChocolate = chocolate cake
- .desc = A cake with added chocolate.
-ent-FoodCakeChocolateSlice = slice of chocolate cake
- .desc = { ent-FoodCakeSliceBase.desc }
-ent-FoodCakeApple = apple cake
- .desc = A cake centred with apple.
-ent-FoodCakeAppleSlice = slice of apple cake
- .desc = A slice of heavenly cake.
-ent-FoodCakeSlime = slime cake
- .desc = A cake made of slimes. Probably not electrified.
-ent-FoodCakeSlimeSlice = slice of slime cake
- .desc = A slice of slime cake.
-ent-FoodCakePumpkin = pumpkin-spice cake
- .desc = A hollow cake with real pumpkin.
-ent-FoodCakePumpkinSlice = slice of pumpkin-spice cake
- .desc = A spicy slice of pumpkin goodness.
-ent-FoodCakeChristmas = christmas cake
- .desc = A cake made of christmas.
-ent-FoodCakeChristmasSlice = slice of christmas cake
- .desc = { ent-FoodCakeSliceBase.desc }
-ent-FoodCakeBirthday = birthday cake
- .desc = Happy Birthday little clown...
-ent-FoodCakeBirthdaySlice = slice of birthday cake
- .desc = A slice of your birthday.
-ent-FoodCakeVanilla = vanilla cake
- .desc = A vanilla frosted cake.
-ent-FoodCakeVanillaSlice = slice of vanilla cake
- .desc = A slice of vanilla frosted cake.
-ent-FoodCakeClown = clown cake
- .desc = A funny cake with a clown face on it.
-ent-FoodCakeClownSlice = slice of clown cake
- .desc = A slice of bad jokes, and silly props.
-ent-FoodCakeSpaceman = spaceman's cake
- .desc = A spaceman's trumpet frosted cake.
-ent-FoodCakeSpacemanSlice = slice of spaceman's cake
- .desc = A spaceman's trumpet frosted cake.
-ent-MobCatCake = cak
- .desc = It's a cake. It's a cat. It's a cak.
-ent-FoodCakeSuppermatter = suppermatter
- .desc = Extremely dense and powerful food.
-ent-FoodCakeSuppermatterSlice = suppermatter shard
- .desc = A single portion of power.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/donkpocket.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/donkpocket.ftl
deleted file mode 100644
index 74220e6c297..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/donkpocket.ftl
+++ /dev/null
@@ -1,40 +0,0 @@
-ent-FoodDonkpocketBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodDonkpocket = donk-pocket
- .desc = The food of choice for the seasoned traitor.
-ent-FoodDonkpocketWarm = warm donk-pocket
- .desc = The heated food of choice for the seasoned traitor.
-ent-FoodDonkpocketDank = dank-pocket
- .desc = The food of choice for the seasoned botanist.
-ent-FoodDonkpocketDankWarm = warm dank-pocket
- .desc = The heated food of choice for the seasoned botanist.
-ent-FoodDonkpocketSpicy = spicy-pocket
- .desc = The classic snack food, now with a heat-activated spicy flair.
-ent-FoodDonkpocketSpicyWarm = warm spicy-pocket
- .desc = The classic snack food, now maybe a bit too spicy.
-ent-FoodDonkpocketTeriyaki = teriyaki-pocket
- .desc = An East Asian take on the classic stationside snack.
-ent-FoodDonkpocketTeriyakiWarm = warm teriyaki-pocket
- .desc = An East Asian take on the classic stationside snack, now steamy and warm.
-ent-FoodDonkpocketPizza = pizza-pocket
- .desc = Delicious, cheesy and surprisingly filling.
-ent-FoodDonkpocketPizzaWarm = warm pizza-pocket
- .desc = Cheese filling really hits the spot when warm.
-ent-FoodDonkpocketHonk = honk-pocket
- .desc = The award-winning donk-pocket that won the hearts of clowns and humans alike.
-ent-FoodDonkpocketHonkWarm = warm honk-pocket
- .desc = The award-winning donk-pocket, now warm and toasty.
-ent-FoodDonkpocketBerry = berry-pocket
- .desc = A relentlessly sweet donk-pocket. Made with 100% artificial flavoring.
-ent-FoodDonkpocketBerryWarm = warm berry-pocket
- .desc = A relentlessly sweet donk-pocket, now warm and delicious.
-ent-FoodDonkpocketStonk = stonk-pocket
- .desc = Tasty, but a sad reminder of the great crash of '24
-ent-FoodDonkpocketStonkWarm = warm stonk-pocket
- .desc = { ent-FoodDonkpocketStonk.desc }
-ent-FoodDonkpocketCarp = carp-pocket
- .desc = A long-lost edition of donk pocket, made specifically for hard-working salvagers.
-ent-FoodDonkpocketCarpWarm = warm carp-pocket
- .desc = { ent-FoodDonkpocketCarp.desc }
-ent-FoodDonkpocketDink = dink-pocket
- .desc = An off-brand lizard donk-pocket, filled with pickled carrot and wrapped with seaweed. Best eaten cold, or even better, not eaten at all.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/donut.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/donut.ftl
deleted file mode 100644
index 1188b5e8cfc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/donut.ftl
+++ /dev/null
@@ -1,55 +0,0 @@
-ent-FoodDonutBase = { ent-FoodInjectableBase }
- .desc = Goes great with robust coffee.
-ent-FoodDonutPlain = plain donut
- .desc = { ent-FoodDonutBase.desc }
-ent-FoodDonutJellyPlain = plain jelly-donut
- .desc = { ent-FoodDonutBase.desc }
-ent-FoodDonutHomer = donut
- .desc = { ent-FoodDonutBase.desc }
-ent-FoodDonutChaos = chaos donut
- .desc = Like life, it never quite tastes the same.
-ent-FoodDonutMeat = meat donut
- .desc = Tastes as gross as it looks.
-ent-FoodDonutPink = pink donut
- .desc = Goes great with a soy latte.
-ent-FoodDonutSpaceman = spaceman's donut
- .desc = Goes great with a cold beaker of malk.
-ent-FoodDonutApple = apple donut
- .desc = Goes great with a shot of cinnamon schnapps.
-ent-FoodDonutCaramel = caramel donut
- .desc = Goes great with a mug of hot coco.
-ent-FoodDonutChocolate = chocolate donut
- .desc = Goes great with a glass of warm milk.
-ent-FoodDonutBlumpkin = blorbo donut
- .desc = Goes great with a mug of BLORBO.
-ent-FoodDonutBungo = bungo donut
- .desc = Goes great with a mason jar of hippie's delight.
-ent-FoodDonut = matcha donut
- .desc = The L-theanine in this donut is relaxing, yet not euphoric. Goes great with a cup of tea.
-ent-FoodDonutSweetpea = sweet pea donut
- .desc = Goes great with a bottle of Bastion Burbon!
-ent-FoodDonutJellyHomer = jelly-donut
- .desc = You jelly?
-ent-FoodDonutJellyPink = pink jelly-donut
- .desc = Goes great with a soy latte.
-ent-FoodDonutJellySpaceman = spaceman's jelly-donut
- .desc = Goes great with a cold beaker of malk.
-ent-FoodDonutJellyApple = apple jelly-donut
- .desc = Goes great with a shot of cinnamon schnapps.
-ent-FoodDonutJellyCaramel = caramel jelly-donut
- .desc = Goes great with a mug of hot coco.
-ent-FoodDonutJellyChocolate = chocolate jelly-donut
- .desc = Goes great with a glass of warm milk.
-ent-FoodDonutJellyBlumpkin = blumpkin jelly-donut
- .desc = Goes great with a mug of soothing drunken blumpkin.
-ent-FoodDonutJellyBungo = bungo jelly-donut
- .desc = Goes great with a mason jar of hippie's delight.
-ent-FoodDonutJelly = matcha jelly-donut
- .desc = The L-theanine in this jelly-donut is relaxing, yet not euphoric. Goes great with a cup of tea.
-ent-FoodDonutJellySweetpea = sweet pea jelly-donut
- .desc = Goes great with a bottle of Bastion Burbon!
-ent-FoodDonutJellySlugcat = slugcat jelly-donut
- .desc = No holes in this donut in case a suspicious looking pole shows up.
-ent-FoodDonutPoison = { ent-FoodDonutPink }
- .suffix = Poison
- .desc = { ent-FoodDonutPink.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl
deleted file mode 100644
index 4765ddaa463..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl
+++ /dev/null
@@ -1,59 +0,0 @@
-ent-FoodBakedBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodBakedMuffin = muffin
- .desc = A delicious and spongy little cake.
-ent-FoodBakedMuffinBerry = berry muffin
- .desc = A delicious and spongy little cake, with berries.
-ent-FoodBakedMuffinCherry = cherry muffin
- .desc = A sweet muffin with cherry bits.
-ent-FoodBakedMuffinBluecherry = bluecherry muffin
- .desc = Blue cherries inside a delicious muffin.
-ent-FoodBakedBunHoney = honey bun
- .desc = A sticky pastry bun glazed with honey.
-ent-FoodBakedBunHotX = hotcross bun
- .desc = A sticky pastry bun glazed with a distinct white cross.
-ent-FoodBakedBunMeat = meat bun
- .desc = Has the potential to not be dog.
-ent-FoodBakedCookie = cookie
- .desc = COOKIE!!!
-ent-FoodBakedCookieOatmeal = oatmeal cookie
- .desc = The best of both cookie and oat.
-ent-FoodBakedCookieRaisin = raisin cookie
- .desc = Why would you put raisins in a cookie?
-ent-FoodBakedCookieSugar = sugar cookie
- .desc = Just like your mom used to make.
-ent-FoodBakedNugget = chicken nugget
- .desc = A "chicken" nugget vaguely shaped into an object.
-ent-FoodBakedPancake = pancake
- .desc = A fluffy pancake. The softer, superior relative of the waffle.
-ent-FoodBakedPancakeBb = blueberry pancake
- .desc = A fluffy and delicious blueberry pancake.
-ent-FoodBakedPancakeCc = chocolate chip pancake
- .desc = A fluffy and delicious chocolate chip pancake.
-ent-FoodBakedWaffle = waffles
- .desc = Mmm, waffles.
-ent-FoodBakedWaffleSoy = soy waffles
- .desc = You feel healthier and - more feminine?
-ent-FoodBakedWaffleSoylent = soylent waffles
- .desc = Not made of people. Honest.
-ent-FoodBakedWaffleRoffle = roffle waffles
- .desc = Waffles from Roffle. Co.
-ent-FoodBakedPretzel = poppy pretzel
- .desc = It's all twisted up!
-ent-FoodBakedCannoli = cannoli
- .desc = A Sicilian treat that makes you into a wise guy.
-ent-FoodBakedDumplings = dumplings
- .desc = Average recipe for meat in doughs.
-ent-FoodBakedChevreChaud = chèvre chaud
- .desc = A disk of slightly melted chèvre flopped on top of a crostini, and toasted all-round.
-ent-FoodBakedBrownieBatch = brownies
- .desc = A pan of brownies.
-ent-FoodBakedBrownie = brownie
- .desc = A fresh baked brownie.
- .suffix = Fresh
-ent-FoodBakedCannabisBrownieBatch = special brownies
- .desc = A pan of "special" brownies.
-ent-FoodBakedCannabisBrownie = special brownie
- .desc = A "special" brownie.
-ent-FoodOnionRings = onion rings
- .desc = You can eat it or propose to your loved ones.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl
deleted file mode 100644
index 072acc7a96c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl
+++ /dev/null
@@ -1,50 +0,0 @@
-ent-FoodPieBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodPieSliceBase = { ent-FoodInjectableBase }
- .desc = A slice of pie. Tasty!
-ent-FoodPieApple = apple pie
- .desc = A pie containing sweet, sweet love... or apple.
-ent-FoodPieAppleSlice = slice of apple pie
- .desc = { ent-FoodPieSliceBase.desc }
-ent-FoodPieBaklava = baklava
- .desc = A delightful healthy snack made of nut layers with thin bread.
-ent-FoodPieBaklavaSlice = slice of baklava
- .desc = A portion of a delightful healthy snack made of nut layers with thin bread.
-ent-FoodPieBananaCream = banana cream pie
- .desc = Just like back home, on clown planet! HONK!
-ent-FoodPieBananaCreamSlice = slice of banana cream pie
- .desc = Just like back home, on clown planet! HONK!
-ent-FoodPieClafoutis = berry clafoutis
- .desc = No black birds, this is a good sign.
-ent-FoodPieClafoutisSlice = slice of berry clafoutis
- .desc = { ent-FoodPieSliceBase.desc }
-ent-FoodPieCherry = cherry pie
- .desc = Tastes good enough to make a grown man cry.
-ent-FoodPieCherrySlice = slice of cherry pie
- .desc = { ent-FoodPieSliceBase.desc }
-ent-FoodPieMeat = meat pie
- .desc = An old barber recipe, very delicious!
-ent-FoodPieMeatSlice = slice of meat pie
- .desc = { ent-FoodPieSliceBase.desc }
-ent-FoodPieXeno = xeno pie
- .desc = { ent-FoodPieBase.desc }
-ent-FoodPieXenoSlice = slice of xeno pie
- .desc = { ent-FoodPieSliceBase.desc }
-ent-FoodPieFrosty = frosty pie
- .desc = Tastes like blue and cold.
-ent-FoodPieFrostySlice = slice of frosty pie
- .desc = { ent-FoodPieSliceBase.desc }
-ent-FoodTartMime = mime tart
- .desc = " "
-ent-FoodTartMimeSlice = slice of mime tart
- .desc = { ent-FoodPieSliceBase.desc }
-ent-FoodPieAmanita = amanita pie
- .desc = Sweet and tasty poison pie.
-ent-FoodPiePlump = plump pie
- .desc = I bet you love stuff made out of plump helmets!
-ent-FoodTartGrape = grape tart
- .desc = A tasty dessert that reminds you of the wine you didn't make.
-ent-FoodTartGapple = golden apple streusel tart
- .desc = A tasty dessert that won't make it through a metal detector.
-ent-FoodTartCoco = chocolate lava tart
- .desc = A tasty dessert made of chocolate, with a liquid core.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl
deleted file mode 100644
index 67399ac7b67..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-FoodPizzaBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodPizzaSliceBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodPizzaMargherita = margherita pizza
- .desc = The flavor of Italy.
-ent-FoodPizzaMargheritaSlice = slice of margherita pizza
- .desc = A slice of Italy.
-ent-FoodPizzaMeat = meat pizza
- .desc = Greasy pizza with delicious meat.
-ent-FoodPizzaMeatSlice = slice of meat pizza
- .desc = A nutritious slice of meatpizza.
-ent-FoodPizzaMushroom = mushroom pizza
- .desc = Very special pizza.
-ent-FoodPizzaMushroomSlice = slice of mushroom pizza
- .desc = Maybe it is the last slice of pizza in your life.
-ent-FoodPizzaVegetable = vegetable pizza
- .desc = The station's vegetarians will thank you for making this.
-ent-FoodPizzaVegetableSlice = slice of vegetable pizza
- .desc = A slice of this is enough to satisfy even the pickiest station personnel.
-ent-FoodPizzaDonkpocket = donk-pocket pizza
- .desc = Who thought this would be a good idea?
-ent-FoodPizzaDonkpocketSlice = slice of donk-pocket pizza
- .desc = Smells like donk-pocket.
-ent-FoodPizzaDank = dank pizza
- .desc = The hippie's pizza of choice.
-ent-FoodPizzaDankSlice = slice of dank pizza
- .desc = So good, man...
-ent-FoodPizzaSassysage = sassysage pizza
- .desc = You can really smell the sassiness.
-ent-FoodPizzaSassysageSlice = slice of sassysage pizza
- .desc = Deliciously sassy.
-ent-FoodPizzaPineapple = Hawaiian pizza
- .desc = Makes people burst into tears. Tears of joy or sadness depends on the persons fondness for pineapple.
-ent-FoodPizzaPineappleSlice = slice of Hawaiian pizza
- .desc = A slice of joy/sin.
-ent-FoodPizzaArnold = Arnold's pizza
- .desc = Hello, you've reached Arnold's pizza shop. I'm not here now, I'm out killing pepperoni.
-ent-FoodPizzaArnoldSlice = slice of Arnold's pizza
- .desc = I come over, maybe I give you a pizza, maybe I break off your arm.
-ent-FoodPizzaMoldySlice = slice of moldy pizza
- .desc = Once a perfectly good slice of pizza pie, but now it lies here, rancid and bursting with spores.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl
deleted file mode 100644
index f1afb1f23bb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl
+++ /dev/null
@@ -1,68 +0,0 @@
-ent-FoodBreadBun = bun
- .desc = A hamburger bun. Round and convenient to hold.
-ent-FoodBurgerBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodBurgerJelly = jelly burger
- .desc = Culinary delight..?
-ent-FoodBurgerAppendix = appendix burger
- .desc = Tastes like appendicitis.
-ent-FoodBurgerBacon = bacon burger
- .desc = The perfect combination of all things American.
-ent-FoodBurgerBaseball = baseball burger
- .desc = It's still warm. The steam coming off of it smells kinda sweaty.
-ent-FoodBurgerBear = bearger
- .desc = Best served rawr.
-ent-FoodBurgerBig = big bite burger
- .desc = Forget the Big Mac. THIS is the future!
-ent-FoodBurgerBrain = brain burger
- .desc = A strange looking burger. It looks almost sentient.
-ent-FoodBurgerCat = cat burger
- .desc = Finally those cats and catpeople are worth something!
-ent-FoodBurgerCheese = cheese burger
- .desc = This noble burger stands proudly clad in golden cheese.
-ent-FoodBurgerChicken = chicken sandwich
- .desc = A delicious chicken sandwich, it is said the proceeds from this treat helps criminalize disarming people on the space frontier.
-ent-FoodBurgerClown = clown burger
- .desc = This tastes funny...
-ent-FoodBurgerCorgi = corger
- .desc = The Head of Personnel's favorite!
-ent-FoodBurgerCrab = crab burger
- .desc = A delicious patty of the crabby kind, slapped in between a bun.
-ent-FoodBurgerCrazy = crazy hamburger
- .desc = This looks like the sort of food that a demented clown in a trenchcoat would make.
-ent-FoodBurgerDuck = duck sandwich
- .desc = A duck sandwich, only the criminally insane would dare to eat the meat of such an adorable creature.
-ent-FoodBurgerEmpowered = empowered burger
- .desc = It's shockingly good, if you live off of electricity that is.
-ent-FoodBurgerCarp = fillet-o-carp burger
- .desc = Almost like a carp is yelling somewhere...
-ent-FoodBurgerFive = five alarm burger
- .desc = HOT! HOT! HOT!
-ent-FoodBurgerGhost = ghost burger
- .desc = Too spooky!
-ent-FoodBurgerHuman = human burger
- .desc = You cant tell who this is made of...
-ent-FoodBurgerMcguffin = McGuffin
- .desc = A cheap and greasy imitation of an eggs Benedict.
-ent-FoodBurgerMcrib = BBQ Rib Sandwich
- .desc = An elusive rib shaped burger with limited availability across the galaxy. Not as good as you remember it.
-ent-FoodBurgerMime = mime burger
- .desc = Its taste defies language.
-ent-FoodBurgerPlain = plain burger
- .desc = A boring, dry burger.
-ent-FoodBurgerRat = rat burger
- .desc = Pretty much what you'd expect...
-ent-FoodBurgerRobot = roburger
- .desc = The lettuce is the only organic component. Beep.
-ent-FoodBurgerSoy = soylent burger
- .desc = After eating this you have the overwhelming urge to purchase overpriced figurines of superheroes.
-ent-FoodBurgerSpell = spell burger
- .desc = This is absolutely Ei Nath.
-ent-FoodBurgerSuper = super bite burger
- .desc = This is a mountain of a burger. FOOD!
-ent-FoodBurgerTofu = tofu burger
- .desc = What... is that meat?
-ent-FoodBurgerXeno = xenoburger
- .desc = Smells caustic. Tastes like heresy.
-ent-FoodBurgerMothRoach = mothroachburger
- .desc = The last lamp it saw was the one inside the microwave.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/bowl.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/bowl.ftl
deleted file mode 100644
index d5523576953..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/bowl.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-FoodBowlBig = bowl
- .desc = A simple bowl, used for soups and salads.
-ent-FoodBowlBigTrash = broken bowl
- .desc = A simple bowl, broken and useless.
-ent-FoodBowlFancy = bowl
- .desc = A fancy bowl, used for SPECIAL soups and salads.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl
deleted file mode 100644
index f7b7583297a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl
+++ /dev/null
@@ -1,49 +0,0 @@
-ent-FoodBoxDonut = donut box
- .desc = Mmm, Donuts.
-ent-FoodContainerEgg = egg carton
- .desc = Don't drop 'em!
-ent-EggBoxBroken = { ent-FoodContainerEgg }
- .suffix = Broken
- .desc = { ent-FoodContainerEgg.desc }
-ent-FoodBoxPizza = pizza box
- .desc = { ent-BoxCardboard.desc }
-ent-FoodBoxPizzaFilled = pizza box
- .suffix = Filled
- .desc = { ent-FoodBoxPizza.desc }
-ent-FoodBoxNugget = chicken nuggets
- .desc = You suddenly have an urge to trade on the intergalactic stock market.
-ent-FoodBoxDonkpocket = box of donk-pockets
- .desc = Instructions: Heat in microwave. Product will cool if not eaten within seven minutes.
-ent-FoodBoxDonkpocketSpicy = box of spicy-flavoured donk-pockets
- .desc = { ent-FoodBoxDonkpocket.desc }
-ent-FoodBoxDonkpocketTeriyaki = box of teriyaki-flavoured donk-pockets
- .desc = { ent-FoodBoxDonkpocket.desc }
-ent-FoodBoxDonkpocketPizza = box of pizza-flavoured donk-pockets
- .desc = { ent-FoodBoxDonkpocket.desc }
-ent-FoodBoxDonkpocketStonk = box of limited edition stonk-pockets
- .desc = { ent-FoodBoxDonkpocket.desc }
-ent-FoodBoxDonkpocketCarp = box of carp-pockets
- .desc = { ent-FoodBoxDonkpocket.desc }
-ent-FoodBoxDonkpocketBerry = box of berry-flavoured donk-pockets
- .desc = { ent-FoodBoxDonkpocket.desc }
-ent-FoodBoxDonkpocketHonk = box of banana-flavoured donk-pockets
- .desc = { ent-FoodBoxDonkpocket.desc }
-ent-FoodBoxDonkpocketDink = box of dink-pockets
- .desc = Net Zero carbohydrates! No need for heating!
-ent-HappyHonk = happy honk meal
- .desc = The toy is more edible than the food.
- .suffix = Toy Safe
-ent-HappyHonkMime = { ent-HappyHonk }
- .desc = A limited mime edition of the happy honk meal.
- .suffix = Toy Safe
-ent-HappyHonkNukie = robust nukie meal
- .desc = A sus meal with a potentially explosive surprise.
- .suffix = Toy Unsafe
-ent-HappyHonkNukieSnacks = syndicate snack box
- .suffix = Toy Unsafe, Snacks
- .desc = { ent-HappyHonkNukie.desc }
-ent-HappyHonkCluwne = woeful cluwne meal
- .desc = Nothing good can come of this.
-ent-FoodMealHappyHonkClown = { ent-HappyHonk }
- .suffix = random food spawner meal
- .desc = { ent-HappyHonk.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl
deleted file mode 100644
index 2817c9413cc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl
+++ /dev/null
@@ -1,48 +0,0 @@
-ent-BaseFoodCondiment = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-BaseFoodCondimentPacket = condiment packet
- .desc = A small plastic pack with condiments to put on your food.
-ent-FoodCondimentPacketAstrotame = Astrotame
- .desc = The sweetness of a thousand sugars but none of the calories.
-ent-FoodCondimentPacketBbq = BBQ sauce
- .desc = Hand wipes not included.
-ent-FoodCondimentPacketCornoil = corn oil
- .desc = Corn oil. A delicious oil used in cooking. Made from corn.
-ent-FoodCondimentPacketFrostoil = coldsauce
- .desc = Coldsauce. Leaves the tongue numb in its passage.
-ent-FoodCondimentPacketHorseradish = horseradish sauce
- .desc = A packet of smelly horseradish sauce.
-ent-FoodCondimentPacketHotsauce = hotsauce
- .desc = You can almost TASTE the stomach ulcers now!
-ent-FoodCondimentPacketKetchup = ketchup
- .desc = You feel more American already.
-ent-FoodCondimentPacketMustard = mustard
- .desc = A condiment made from the ground-up seeds of the Mustard plant.
-ent-FoodCondimentPacketPepper = black pepper
- .desc = Often used to flavor food or make people sneeze.
-ent-FoodCondimentPacketSalt = salt
- .desc = Salt. From space oceans, presumably.
-ent-FoodCondimentPacketSoy = soy sauce
- .desc = A salty soy-based flavoring.
-ent-FoodCondimentPacketSugar = sugar
- .desc = Tasty spacey sugar!
-ent-BaseFoodCondimentBottle = condiment bottle
- .desc = A thin glass bottle used to store condiments.
-ent-FoodCondimentBottleColdsauce = coldsauce bottle
- .desc = Leaves the tongue numb in its passage.
-ent-FoodCondimentBottleEnzyme = universal enzyme
- .desc = Used in cooking various dishes.
-ent-FoodCondimentBottleVinegar = vinegar bottle
- .desc = Used in cooking to enhance flavor.
-ent-FoodCondimentBottleHotsauce = hotsauce bottle
- .desc = You can almost TASTE the stomach ulcers now!
-ent-FoodCondimentBottleKetchup = ketchup bottle
- .desc = You feel more American already.
-ent-FoodCondimentBottleBBQ = BBQ sauce bottle
- .desc = Hand wipes not included.
-ent-BaseFoodShaker = empty shaker
- .desc = A shaker used to store and dispense spices.
-ent-FoodShakerSalt = salt shaker
- .desc = Salt. From space oceans, presumably.
-ent-FoodShakerPepper = pepper shaker
- .desc = Often used to flavor food or make people sneeze.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/plate.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/plate.ftl
deleted file mode 100644
index 875a91bc1de..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/plate.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-FoodPlate = large plate
- .desc = A large plate, excellent for bread.
-ent-FoodPlateTrash = broken plate
- .desc = A broken plate. Useless.
-ent-FoodPlateSmall = small plate
- .desc = A small plate. Delicate.
-ent-FoodPlateSmallTrash = { ent-FoodPlateTrash }
- .desc = { ent-FoodPlateTrash.desc }
-ent-FoodPlatePlastic = plastic plate
- .desc = A large blue plastic plate, excellent for a birthday cake.
-ent-FoodPlateSmallPlastic = plastic plate
- .desc = A blue plastic plate, excellent for slices of birthday cake.
-ent-FoodPlateTin = pie tin
- .desc = A cheap foil tin for pies.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/tin.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/tin.ftl
deleted file mode 100644
index cafc295e24f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/tin.ftl
+++ /dev/null
@@ -1,23 +0,0 @@
-ent-FoodTinBase = tin
- .desc = A tin of something, sealed tight.
-ent-FoodTinBaseTrash = empty tin
- .desc = An empty tin. Could get a bit of metal from this.
-ent-FoodTinPeaches = tinned peaches
- .desc = Just a nice can of ripe peaches swimming in their own juices.
-ent-FoodTinPeachesTrash = tinned peaches
- .desc = { ent-FoodTinBaseTrash.desc }
-ent-FoodTinPeachesMaint = maintenance peaches
- .desc = { ent-FoodTinPeaches.desc }
-ent-FoodTinPeachesMaintOpen = { ent-FoodTinPeachesMaint }
- .suffix = Open
- .desc = { ent-FoodTinPeachesMaint.desc }
-ent-FoodTinPeachesMaintTrash = maintenance peaches
- .desc = { ent-FoodTinBaseTrash.desc }
-ent-FoodTinBeans = tin of beans
- .desc = Musical fruit in a slightly less musical container.
-ent-FoodTinBeansTrash = tin of beans
- .desc = { ent-FoodTinBaseTrash.desc }
-ent-FoodTinMRE = tinned meat
- .desc = A standard issue tin of meat with a convenient pull tab.
-ent-FoodTinMRETrash = tinned meat
- .desc = { ent-FoodTinBaseTrash.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/egg.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/egg.ftl
deleted file mode 100644
index b56210a59a8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/egg.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-FoodEggBase = { ent-FoodInjectableBase }
- .desc = An egg!
-ent-Eggshells = eggshells
- .desc = You're walkin' on 'em bud.
-ent-FoodEgg = egg
- .desc = { ent-FoodEggBase.desc }
-ent-FoodEggBoiled = boiled egg
- .desc = A delicious hardboiled egg.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/food_base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/food_base.ftl
deleted file mode 100644
index 5d671c4dd37..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/food_base.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-FoodBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-FoodInjectableBase = { ent-FoodBase }
- .desc = { ent-FoodBase.desc }
-ent-FoodOpenableBase = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/frozen.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/frozen.ftl
deleted file mode 100644
index 5e1b3dae38e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/frozen.ftl
+++ /dev/null
@@ -1,36 +0,0 @@
-ent-FoodFrozenBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodFrozenSandwich = ice-cream sandwich
- .desc = Portable ice-cream in its own packaging.
-ent-FoodFrozenSandwichStrawberry = strawberry ice-cream sandwich
- .desc = Portable ice-cream in its own packaging of the strawberry variety.
-ent-FoodFrozenFreezy = space freezy
- .desc = The best ice-cream in space.
-ent-FoodFrozenSundae = ice-cream sundae
- .desc = A classic dessert.
-ent-FoodFrozenCornuto = cornuto
- .desc = A Neapolitan vanilla and chocolate ice-cream cone. It menaces with a sprinkling of caramelized nuts.
-ent-FoodFrozenPopsicleOrange = orange creamsicle
- .desc = A classic orange creamsicle. A sunny frozen treat.
-ent-FoodFrozenPopsicleBerry = berry creamsicle
- .desc = A vibrant berry creamsicle. A berry good frozen treat.
-ent-FoodFrozenPopsicleJumbo = jumbo ice-cream
- .desc = A luxurious ice-cream covered in rich chocolate. It's smaller than you remember.
-ent-FoodFrozenSnowconeBase = sweet snowcone
- .desc = It's just shaved ice and simple syrup, minimum effort.
-ent-FoodFrozenSnowcone = flavorless snowcone
- .desc = It's just shaved ice. Still fun to chew on.
-ent-FoodFrozenSnowconeBerry = berry snowcone
- .desc = Berry syrup drizzled over a snowball in a paper cup.
-ent-FoodFrozenSnowconeFruit = fruit salad snowcone
- .desc = A delightful mix of citrus syrups drizzled over a snowball in a paper cup.
-ent-FoodFrozenSnowconeClown = clowncone
- .desc = Laughter drizzled over a snowball in a paper cup.
-ent-FoodFrozenSnowconeMime = mime snowcone
- .desc = ...
-ent-FoodFrozenSnowconeRainbow = rainbow snowcone
- .desc = A very colorful snowball in a paper cup.
-ent-FoodFrozenSnowconeTrash = paper cone
- .desc = A crumpled paper cone used for an icy treat. Worthless.
-ent-FoodFrozenPopsicleTrash = popsicle stick
- .desc = Once held a delicious treat. Now, 'tis barren.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl
deleted file mode 100644
index ab61632eefe..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl
+++ /dev/null
@@ -1,74 +0,0 @@
-ent-ReagentContainerBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-ReagentPacketBase = { ent-ReagentContainerBase }
- .desc = { ent-ReagentContainerBase.desc }
-ent-ItemHeftyBase = { "" }
- .desc = { "" }
-ent-ReagentContainerFlour = flour bag
- .desc = A big bag of flour. Good for baking!
-ent-ReagentContainerFlourSmall = flour pack
- .desc = A pack of flour. Good for baking!
-ent-ReagentContainerCornmeal = cornmeal bag
- .desc = A big bag of cornmeal. Good for cooking!
-ent-ReagentContainerCornmealSmall = cornmeal pack
- .desc = A pack of cornmeal. Good for cooking!
-ent-ReagentContainerRice = rice bag
- .desc = A big bag of rice. Good for cooking!
-ent-ReagentContainerRiceSmall = rice pack
- .desc = A pack of rice. Good for cooking!
-ent-ReagentContainerSugar = sugar bag
- .desc = A big bag of tasty spacey sugar.
-ent-ReagentContainerSugarSmall = sugar pack
- .desc = A pack of tasty spacey sugar.
-ent-ReagentContainerOliveoil = olive oil
- .desc = Olive oil. From space olives presumably.
-ent-ReagentContainerMayo = mayonnaise
- .desc = Bottle of mayonnaise.
-ent-FoodBakingBase = { ent-FoodBase }
- .desc = Used in various recipes.
-ent-FoodDough = dough
- .desc = A piece of dough.
-ent-FoodDoughSlice = dough slice
- .desc = A slice of dough. Can be cooked into a bun.
-ent-FoodDoughCornmeal = cornmeal dough
- .desc = A piece of cornmeal dough.
-ent-FoodDoughCornmealSlice = cornmeal dough slice
- .desc = A slice of cornmeal dough.
-ent-FoodDoughTortilla = tortilla dough
- .desc = A piece of tortilla dough.
-ent-FoodDoughTortillaSlice = tortilla dough slice
- .desc = A slice of tortilla dough.
-ent-FoodDoughTortillaFlat = flattened tortilla dough
- .desc = A flattened slice of tortilla dough, cook this to get a taco shell.
-ent-FoodDoughPastryBaseRaw = raw pastry base
- .desc = Must be cooked before use.
-ent-FoodDoughPastryBase = pastry base
- .desc = A base for any self-respecting pastry.
-ent-FoodDoughPie = pie dough
- .desc = Cook it to get a pie.
-ent-FoodDoughFlat = flat dough
- .desc = A flattened dough.
-ent-FoodDoughPizzaBaked = pizza bread
- .desc = Add ingredients to make a pizza.
-ent-FoodCakeBatter = cake batter
- .desc = Cook it to get a cake.
-ent-FoodButter = stick of butter
- .desc = A stick of delicious, golden, fatty goodness.
-ent-FoodCannabisButter = stick of cannabis butter
- .desc = Add this to your favorite baked goods for an irie time.
-ent-FoodCheese = cheese wheel
- .desc = A big wheel of delicious Cheddar.
-ent-FoodCheeseSlice = cheese wedge
- .desc = A wedge of delicious Cheddar. The cheese wheel it was cut from can't have gone far.
-ent-FoodChevre = chèvre log
- .desc = A soft log of creamy Chèvre.
-ent-FoodChevreSlice = chèvre disk
- .desc = A small disk of creamy Chèvre. An ideal adornment for French side dishes.
-ent-FoodTofu = tofu
- .desc = Solid white block with a subtle flavor.
-ent-FoodTofuSlice = tofu slice
- .desc = A slice of tofu. Ingredient of various vegetarian dishes.
-ent-FoodBadRecipe = burned mess
- .desc = Someone should be demoted from cook for this.
-ent-FoodCocoaBeans = cocoa beans
- .desc = You can never have too much chocolate!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/injectable_base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/injectable_base.ftl
deleted file mode 100644
index b21b1a9acf4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/injectable_base.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FoodInjectableBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/meals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/meals.ftl
deleted file mode 100644
index 11b9aafb6ee..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/meals.ftl
+++ /dev/null
@@ -1,54 +0,0 @@
-ent-FoodMealBase = { ent-FoodInjectableBase }
- .desc = A delicious meal, cooked with love.
-ent-FoodMealPotatoLoaded = loaded baked potato
- .desc = Totally baked.
-ent-FoodMealFries = space fries
- .desc = AKA, French Fries, Freedom Fries, etc.
-ent-FoodMealFriesCheesy = cheesy fries
- .desc = Fries. Covered in cheese. Duh.
-ent-FoodMealFriesCarrot = carrot fries
- .desc = Tasty fries from fresh carrots.
-ent-FoodMealNachos = nachos
- .desc = Chips from Space Mexico.
-ent-FoodMealNachosCheesy = cheesy nachos
- .desc = The delicious combination of nachos and melting cheese.
-ent-FoodMealNachosCuban = Cuban nachos
- .desc = That's some dangerously spicy nachos.
-ent-FoodMealMint = mint
- .desc = It's wafer thin.
-ent-FoodMealEggplantParm = eggplant parmigiana
- .desc = The only good recipe for eggplant.
-ent-FoodMealPotatoYaki = yaki imo
- .desc = Made with roasted sweet potatoes!
-ent-FoodMealCubancarp = Cuban carp
- .desc = A grifftastic sandwich that burns your tongue and then leaves it numb!
-ent-FoodMealCornedbeef = corned beef and cabbage
- .desc = Now you can feel like a real tourist vacationing in Ireland.
-ent-FoodMealBearsteak = filet migrawr
- .desc = Because eating bear wasn't manly enough.
-ent-FoodMealPigblanket = pig in a blanket
- .desc = A tiny sausage wrapped in a flakey, buttery roll. Free this pig from its blanket prison by eating it.
-ent-FoodMealRibs = bbq ribs
- .desc = BBQ ribs, slathered in a healthy coating of BBQ sauce. The least vegan thing to ever exist.
-ent-FoodMealEggsbenedict = eggs benedict
- .desc = There is only one egg on this, how rude.
-ent-FoodMealOmelette = cheese omelette
- .desc = Cheesy.
-ent-FoodMealFriedegg = fried egg
- .desc = A fried egg, with a touch of salt and pepper.
-ent-FoodMealMilkape = milk ape
- .desc = The king of Jungle Thick.
-ent-FoodMealMemoryleek = memory leek
- .desc = This should refresh your memory.
-ent-DisgustingSweptSoup = salty sweet miso cola soup
- .desc = Jesus christ.
-ent-FoodMealQueso = queso
- .desc = A classic dipping sauce that you can't go wrong with.
-ent-FoodMealSashimi = sashimi
- .desc = Its taste can only be described as "Exotic". The poisoning though? That's pretty common.
-ent-FoodMealEnchiladas = enchiladas
- .desc = Viva La Mexico!
-ent-FoodSaladWatermelonFruitBowl = melon fruit bowl
- .desc = The only salad where you can eat the bowl.
-ent-FoodMealCornInButter = corn in butter
- .desc = Buttery.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/meat.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/meat.ftl
deleted file mode 100644
index a3752f7db75..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/meat.ftl
+++ /dev/null
@@ -1,122 +0,0 @@
-ent-FoodMeatBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodMeatRawBase = { ent-FoodMeatBase }
- .desc = { ent-FoodMeatBase.desc }
-ent-FoodMeat = raw meat
- .desc = A slab of raw meat.
-ent-FoodMeatHuman = raw human meat
- .desc = Gross.
-ent-FoodMeatFish = raw carp fillet
- .desc = Your last words being "Wow, exotic!" are not worth it. The taste itself though? Maybe.
-ent-FoodMeatBacon = raw bacon
- .desc = A raw piece of bacon.
-ent-FoodMeatBear = raw bear meat
- .desc = A very manly slab of raw bear meat.
-ent-FoodMeatPenguin = raw penguin meat
- .desc = A slab of raw penguin meat. Can be used as a substitute for fish in recipes.
-ent-FoodMeatChicken = raw chicken meat
- .desc = A slab of raw chicken. Remember to wash your hands!
-ent-FoodMeatDuck = raw duck meat
- .desc = A slab of raw duck. Remember to wash your hands!
-ent-FoodMeatCorgi = prime-cut corgi meat
- .desc = The tainted gift of an evil crime. The meat may be delicious, but at what cost?
-ent-FoodMeatCrab = raw crab meat
- .desc = A pile of raw crab meat.
-ent-FoodMeatGoliath = raw goliath meat
- .desc = A slab of goliath meat. It's not very edible now, but it cooks great in lava.
-ent-FoodMeatDragon = dragon flesh
- .desc = The dense meat of the space-era apex predator is oozing with it's mythical ichor. Ironically, best eaten raw.
-ent-FoodMeatRat = raw rat meat
- .desc = Prime meat from maintenance!
-ent-FoodMeatLizard = raw lizard meat
- .desc = Delicious dino damage.
-ent-FoodMeatPlant = raw plant meat
- .desc = All the joys of healthy eating with all the fun of cannibalism.
-ent-FoodMeatRotten = rotten meat
- .desc = Halfway to becoming fertilizer for your garden.
-ent-FoodMeatSpider = raw spider meat
- .desc = A slab of spider meat. That's so Kafkaesque.
-ent-FoodMeatSpiderLeg = raw spider leg
- .desc = A still twitching leg of a giant spider... you don't really want to eat this, do you?
-ent-FoodMeatWheat = meatwheat clump
- .desc = This doesn't look like meat, but your standards aren't that high to begin with.
-ent-FoodMeatSnake = raw snake meat
- .desc = A long piece of snake meat, hopefully not poisonous.
-ent-FoodMeatXeno = raw xeno meat
- .desc = A slab of xeno meat, dripping with acid.
-ent-FoodMeatRouny = raw rouny meat
- .desc = A slab of meat from an innocent red friend.
-ent-FoodMeatTomato = killer tomato meat
- .desc = A slice from a huge tomato.
-ent-FoodMeatSalami = salami
- .desc = A large tube of salami. Best not to ask what went into it.
-ent-FoodMeatClown = meat clown
- .desc = A delicious, round piece of meat clown. How horrifying.
-ent-FoodMeatMeatball = meatball
- .desc = A raw ball of meat. Meat ball.
-ent-FoodMeatSlime = slimeball
- .desc = A gelatinous shaping of slime jelly.
-ent-MaterialSmileExtract = smile extract
- .desc = It's a real panacea. But at what cost?
-ent-FoodMeatCooked = steak
- .desc = A cooked slab of meat. Smells primal.
-ent-FoodMeatBaconCooked = bacon
- .desc = A delicious piece of cooked bacon.
-ent-FoodMeatBearCooked = cooked bear
- .desc = A well-cooked slab of bear meat. Tough, but tasty with the right sides.
-ent-FoodMeatPenguinCooked = penguin filet
- .desc = A cooked filet of penguin. Can be used as a substitute for fish in recipes.
-ent-FoodMeatChickenCooked = cooked chicken
- .desc = A cooked piece of chicken. Best used in other recipes.
-ent-FoodMeatChickenFried = fried chicken
- .desc = A juicy hunk of chicken meat, fried to perfection.
-ent-FoodMeatDuckCooked = cooked duck
- .desc = A cooked piece of duck. Best used in other recipes.
-ent-FoodMeatCrabCooked = cooked crab
- .desc = Some deliciously cooked crab meat.
-ent-FoodMeatGoliathCooked = goliath steak
- .desc = A delicious, lava cooked steak.
-ent-FoodMeatRounyCooked = rouny steak
- .desc = Some kill to survive. You on the other hand, kill for fun.
-ent-FoodMeatLizardCooked = lizard steak
- .desc = Cooked, tough lizard meat.
-ent-FoodMeatSpiderlegCooked = boiled spider leg
- .desc = A giant spider's leg that's still twitching after being cooked. Gross!
-ent-FoodMeatMeatballCooked = meatball
- .desc = A cooked meatball. Perfect to add to other dishes... except fruity ones.
-ent-FoodMeatCutlet = raw cutlet
- .desc = A raw meat cutlet.
-ent-FoodMeatBearCutlet = raw bear cutlet
- .desc = A very manly cutlet of raw bear meat.
-ent-FoodMeatPenguinCutlet = raw penguin cutlet
- .desc = A cutlet of raw penguin meat. Can be used as a substitute for fish in recipes.
-ent-FoodMeatChickenCutlet = raw chicken cutlet
- .desc = A cutlet of raw chicken. Remember to wash your hands!
-ent-FoodMeatDuckCutlet = raw duck cutlet
- .desc = A cutlet of raw duck. Remember to wash your hands!
-ent-FoodMeatLizardCutlet = raw lizard cutlet
- .desc = Delicious dino cutlet.
-ent-FoodMeatSpiderCutlet = raw spider cutlet
- .desc = A cutlet of raw spider meat. So Kafkaesque.
-ent-FoodMeatXenoCutlet = raw xeno cutlet
- .desc = A slab of raw xeno meat, dripping with acid.
-ent-FoodMeatTomatoCutlet = raw killer tomato cutlet
- .desc = A cutlet from a slab of tomato.
-ent-FoodMeatSalamiSlice = salami slice
- .desc = A slice of cured salami.
-ent-FoodMeatCutletCooked = cutlet
- .desc = A cooked meat cutlet. Needs some seasoning.
-ent-FoodMeatBearCutletCooked = bear cutlet
- .desc = A very manly cutlet of cooked bear meat.
-ent-FoodMeatPenguinCutletCooked = penguin cutlet
- .desc = A cutlet of cooked penguin meat.
-ent-FoodMeatChickenCutletCooked = chicken cutlet
- .desc = A cutlet of cooked chicken. Remember to wash your hands!
-ent-FoodMeatDuckCutletCooked = duck cutlet
- .desc = A cutlet of cooked duck. Remember to wash your hands!
-ent-FoodMeatLizardCutletCooked = lizard cutlet
- .desc = Delicious cooked dino cutlet.
-ent-FoodMeatSpiderCutletCooked = spider cutlet
- .desc = A cutlet of cooked spider meat. Finally edible.
-ent-FoodMeatXenoCutletCooked = xeno cutlet
- .desc = A cutlet of cooked xeno, dripping with... tastiness?
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/noodles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/noodles.ftl
deleted file mode 100644
index c415f041b04..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/noodles.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-FoodNoodlesBase = { ent-FoodInjectableBase }
- .desc = Now that's a nice pasta!
-ent-FoodNoodlesBoiled = boiled spaghetti
- .desc = A plain dish of noodles, this needs more ingredients.
-ent-FoodNoodles = spaghetti
- .desc = Spaghetti and crushed tomatoes. Just like your abusive father used to make!
-ent-FoodNoodlesCopy = copypasta
- .desc = You probably shouldn't try this, you always hear people talking about how bad it is...
-ent-FoodNoodlesMeatball = spaghetti and meatballs
- .desc = Now that's a nice-a meatball!
-ent-FoodNoodlesSpesslaw = spesslaw
- .desc = A lawyer's favourite.
-ent-FoodNoodlesChowmein = chow mein
- .desc = A nice mix of noodles and fried vegetables.
-ent-FoodNoodlesButter = butter noodles
- .desc = Noodles covered in savory butter. Simple and slippery, but delicious.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl
deleted file mode 100644
index dcb46286634..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl
+++ /dev/null
@@ -1,130 +0,0 @@
-ent-ProduceBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-FoodProduceBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-WheatBushel = wheat bushel
- .desc = Sigh... wheat... a-grain?
-ent-OatBushel = oat bushel
- .desc = Eat oats, do squats.
-ent-Sugarcane = sugarcane
- .desc = Sickly sweet.
-ent-FoodLaughinPeaPod = laughin' pea pod
- .desc = The clown's favorite plant.
-ent-Log = tower-cap log
- .desc = It's better than bad, it's good!
-ent-SteelLog = steel-cap log
- .desc = Steel doesn't grow on trees! It grows on mushrooms, of course.
-ent-Nettle = nettle
- .desc = Stingy little prick.
-ent-DeathNettle = death nettle
- .desc = This nettle's out for blood.
-ent-FoodBanana = banana
- .desc = Rich in potassium.
-ent-FoodMimana = mimana
- .desc = Mime's favorite.
-ent-TrashBananaPeel = banana peel
- .desc = { ent-BaseItem.desc }
-ent-TrashBakedBananaPeel = baked banana peel
- .desc = { ent-TrashBananaPeel.desc }
-ent-TrashMimanaPeel = mimana peel
- .desc = { ent-TrashBananaPeel.desc }
-ent-TrashBananiumPeel = bananium peel
- .desc = { ent-TrashBananaPeel.desc }
-ent-FoodCarrot = carrot
- .desc = It's good for the eyes!
-ent-FoodCabbage = cabbage
- .desc = Ewwwwwwwwww. Cabbage.
-ent-FoodGarlic = garlic
- .desc = Delicious, but with a potentially overwhelming odor.
-ent-FoodLemon = lemon
- .desc = When life gives you lemons, be grateful they aren't limes.
-ent-FoodLemoon = lemoon
- .desc = People says Moon is made out of cheese, but Moon is actually made out of milk and laurel!
-ent-FoodLime = lime
- .desc = Cures Space Scurvy, allows you to act like a Space Pirate.
-ent-FoodOrange = orange
- .desc = Healthy, very orange.
-ent-FoodPineapple = pineapple
- .desc = Mmm, tropical.
-ent-FoodPotato = potato
- .desc = The space Irish starved to death after their potato crops died. Sadly they were unable to fish for space carp due to it being the queen's space. Bringing this up to any space IRA member will drive them insane with anger.
-ent-FoodTomato = tomato
- .desc = I say to-mah-to, you say tom-mae-to.
-ent-FoodBlueTomato = blue tomato
- .desc = This one is blue.
-ent-FoodBloodTomato = blood tomato
- .desc = Wait, that's not ketchup...
-ent-FoodEggplant = eggplant
- .desc = Maybe there's a chicken inside?
-ent-FoodApple = apple
- .desc = It's a little piece of Eden.
-ent-FoodCocoaPod = cocoa pod
- .desc = You can never have too much chocolate!
-ent-FoodCorn = ear of corn
- .desc = Needs some butter! And some cooking...
-ent-FoodCornTrash = corn cob
- .desc = Not a dang kernel left.
-ent-FoodOnion = onion
- .desc = Nothing to cry over.
-ent-FoodOnionRed = red onion
- .desc = Purple despite the name.
-ent-FoodMushroom = chanterelle cluster
- .desc = Cantharellus Cibarius: These jolly yellow little shrooms sure look tasty!
-ent-ProduceSliceBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodPineappleSlice = pineapple slice
- .desc = Mmm, tropical.
-ent-FoodOnionSlice = onion slice
- .desc = Nothing to cry over.
-ent-FoodOnionRedSlice = red onion slice
- .desc = Purple despite the name.
-ent-FoodChiliPepper = chili pepper
- .desc = Spicy, best not touch your eyes.
-ent-FoodChillyPepper = chilly pepper
- .desc = Icy hot.
-ent-FoodAloe = aloe
- .desc = A fragrant plant with soothing properties.
-ent-FoodPoppy = poppy
- .desc = A flower with extracts often used in the production of medicine
-ent-FoodLily = lily
- .desc = A beautiful orange flower.
-ent-FoodLingzhi = lingzhi
- .desc = A potent medicinal mushroom. Don't go overboard.
-ent-FoodAmbrosiaVulgaris = ambrosia vulgaris
- .desc = A medicinal plant. May make you feel a little funny.
-ent-FoodAmbrosiaDeus = ambrosia deus
- .desc = An extremely sought-after medicinal plant. May have some funky side effects.
-ent-FoodGalaxythistle = galaxythistle
- .desc = A medicinal plant used for its antitoxin.
-ent-FoodFlyAmanita = fly amanita
- .desc = A delicious-looking mushroom like you see in those cartoons.
-ent-FoodGatfruit = gatfruit
- .desc = A delicious, gun-shaped fruit with a thick wooden stem.
-ent-RiceBushel = rice bushel
- .desc = Can be ground into rice, perfect for pudding or sake.
-ent-FoodSoybeans = soybeans
- .desc = For those who can't stand seeing good old meat.
-ent-FoodSpacemansTrumpet = spaceman's trumpet
- .desc = A vivid flower that smells faintly of freshly cut grass. Touching the flower seems to stain the skin some time after contact, yet most other surfaces seem to be unaffected by this phenomenon.
-ent-FoodKoibean = koibean
- .desc = These beans seem a little bit fishy.
-ent-FoodWatermelon = watermelon
- .desc = Round green object that you can slice and eat.
-ent-FoodWatermelonSlice = watermelon slice
- .desc = Juicy green and red slice.
-ent-FoodGrape = grapes
- .desc = The food of emperors, Space France inhabitants (usually as wine) and soccer moms. One day it could be used in wine production for the bartender if he ever runs out.
-ent-FoodBerries = berries
- .desc = A handful of various types of berries.
-ent-FoodBungo = bungo fruit
- .desc = The humble bungo fruit.
-ent-FoodBungoPit = bungo pit
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodPeaPod = pea pod
- .desc = A duck's favorite treat!
-ent-FoodPumpkin = pumpkin
- .desc = A large, orange... berry. Seriously.
-ent-CottonBol = cotton boll
- .desc = Moth people's favorite snack, and just as fluffy as them.
-ent-PyrottonBol = pyrotton boll
- .desc = This will probably set you on fire.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/randomspawns/food_snacks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/randomspawns/food_snacks.ftl
deleted file mode 100644
index e55110c8bfd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/randomspawns/food_snacks.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-RandomSnacks = random snack spawner
- .desc = { ent-MarkerBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/skewer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/skewer.ftl
deleted file mode 100644
index 3e556680b0b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/skewer.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-FoodSkewerBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodKebabSkewer = skewer
- .desc = A thin rod of metal used to skewer just about anything and cook it.
-ent-FoodMeatHawaiianKebab = Hawaiian kebab
- .desc = A delicious kebab made of pineapple, ham and green peppers.
-ent-FoodMeatKebab = meat kebab
- .desc = Delicious meat, on a stick.
-ent-FoodMeatHumanKebab = human kebab
- .desc = Human meat. On a stick!
-ent-FoodMeatLizardtailKebab = lizard-tail kebab
- .desc = Severed lizard tail on a stick.
-ent-FoodMeatRatKebab = rat kebab
- .desc = Not so delicious rat meat, on a stick.
-ent-FoodMeatRatdoubleKebab = double rat kebab
- .desc = A double serving of not so delicious rat meat, on a stick.
-ent-FoodMeatFiestaKebab = fiesta kebab
- .desc = Always a cruise ship party somewhere in the world, right?
-ent-FoodMeatSnakeKebab = snake kebab
- .desc = Snake meat on a stick. It's a little tough.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/snacks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/snacks.ftl
deleted file mode 100644
index f8608e7e473..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/snacks.ftl
+++ /dev/null
@@ -1,79 +0,0 @@
-ent-FoodSnackBase = { ent-FoodBase }
- .desc = { ent-FoodBase.desc }
-ent-FoodSnackBoritos = boritos
- .desc = Crunchy, salty tortilla chips. You could probably make nachos with these.
-ent-FoodSnackCnDs = C&Ds
- .desc = Legally, we cannot say that these won't melt in your hands.
-ent-FoodSnackCheesie = cheesie honkers
- .desc = Bite sized cheesie snacks that will honk all over your mouth.
-ent-FoodSnackChips = chips
- .desc = Commander Riker's What-The-Crisps.
-ent-FoodSnackChocolate = chocolate bar
- .desc = Tastes like cardboard.
-ent-FoodSnackChocolateBar = chocolate bar
- .desc = Tastes like cardboard.
-ent-FoodSnackEnergy = energy bar
- .desc = An energy bar with a lot of punch.
-ent-FoodSnackEnergyBar = energy bar
- .desc = An energy bar with a lot of punch.
-ent-FoodSnackPistachios = sweetie's pistachios
- .desc = Sweeties's name-brand pistachios. probably won't give you diseases. Probably.
-ent-FoodSnackPopcorn = popcorn
- .desc = Grown on an unknown planet, by an unknown farmer, popped by some jerk on a space station.
-ent-FoodSnackRaisins = 4no raisins
- .desc = Best raisins in the universe. Not sure why.
-ent-FoodSnackSemki = bob's semki sunflower seeds
- .desc = Proudly produced by the Bob Bobson nutritional corporation. Perfect for spitting at people.
-ent-FoodSnackSus = sus jerky
- .desc = Something about this packet makes you feel incredibly uneasy. Jerky's good though.
-ent-FoodSnackSyndi = syndi-cakes
- .desc = An extremely moist snack cake that tastes just as good after being nuked.
-ent-FoodSnackChowMein = chow mein
- .desc = A salty fried noodle snack. Looks like they forgot the vegetables.
-ent-FoodSnackDanDanNoodles = dan dan noodles
- .desc = A spicy Sichuan noodle snack. The chili oil slick pools on top.
-ent-FoodSnackCookieFortune = fortune cookie
- .desc = A boring cardboard tasting snack with a fortune inside. Surprise! You're boring too.
-ent-FoodSnackNutribrick = nutribrick
- .desc = A carefully synthesized brick designed to contain the highest ratio of nutriment to volume. Tastes like shit.
-ent-FoodSnackNutribrickOpen = nutribrick
- .desc = A carefully synthesized brick designed to contain the highest ratio of nutriment to volume. Tastes like shit.
-ent-FoodSnackMREBrownie = brownie
- .desc = A precisely mixed brownie, made to withstand blunt trauma and harsh conditions. Tastes like shit.
-ent-FoodSnackMREBrownieOpen = brownie
- .desc = A precisely mixed brownie, made to withstand blunt trauma and harsh conditions. Tastes like shit.
- .suffix = MRE
-ent-FoodPacketTrash = { ent-BaseItem }
- .desc = This is rubbish.
-ent-FoodPacketBoritosTrash = boritos bag
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketCnDsTrash = C&Ds bag
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketCheesieTrash = cheesie honkers
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketChipsTrash = chips
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketChocolateTrash = chocolate wrapper
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketEnergyTrash = energybar wrapper
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketPistachioTrash = pistachios packet
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketPopcornTrash = popcorn box
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketRaisinsTrash = 4no raisins
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketSemkiTrash = semki packet
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketSusTrash = sus jerky
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketSyndiTrash = syndi-cakes box
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketChowMeinTrash = empty chow mein box
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodPacketDanDanTrash = empty dan dan box
- .desc = { ent-FoodPacketTrash.desc }
-ent-FoodCookieFortune = cookie fortune
- .desc = The fortune reads: The end is near...and it's all your fault.
-ent-FoodPacketMRETrash = MRE wrapper
- .desc = A general purpose wrapper for a variety of military food goods.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/soup.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/soup.ftl
deleted file mode 100644
index 7780b7d7f92..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/soup.ftl
+++ /dev/null
@@ -1,88 +0,0 @@
-ent-FoodBowlBase = { ent-FoodBase }
- .desc = { ent-FoodBase.desc }
-ent-FoodSoupPea = pea soup
- .desc = A humble split pea soup.
-ent-FoodSaladAesir = aesir salad
- .desc = Probably too incredible for mortals to fully enjoy.
-ent-FoodSaladHerb = herb salad
- .desc = A tasty salad with apples on top.
-ent-FoodSaladValid = valid salad
- .desc = It's just an herb salad with meatballs and fried potato slices. Nothing suspicious about it.
-ent-FoodSaladColeslaw = coleslaw
- .desc = Shredded cabbage and red onions dressed with a vinaigrette.
-ent-FoodSaladCaesar = caesar salad
- .desc = A simple yet flavorful salad of onions, lettuce, croutons, and shreds of cheese dressed in oil. Comes with a slice of pita bread!
-ent-FoodSaladKimchi = kimchi salad
- .desc = It really is just a spicy salad.
-ent-FoodSaladFruit = fruit salad
- .desc = Your standard fruit salad.
-ent-FoodSaladJungle = jungle salad
- .desc = Exotic fruits in a bowl.
-ent-FoodSaladCitrus = citrus salad
- .desc = Citrus overload!
-ent-FoodSaladEden = salad of eden
- .desc = A salad brimming with untapped potential.
-ent-FoodRiceBoiled = boiled rice
- .desc = A warm bowl of rice.
-ent-FoodRiceEgg = egg-fried rice
- .desc = A bowl of rice with a fried egg.
-ent-FoodRicePork = rice and pork
- .desc = Well, it looks like pork...
-ent-FoodRicePudding = rice pudding
- .desc = Everybody loves rice pudding!
-ent-FoodRiceGumbo = black-eyed gumbo
- .desc = A spicy and savory meat and rice dish.
-ent-FoodOatmeal = oatmeal
- .desc = A nice bowl of oatmeal.
-ent-FoodJellyDuff = space liberty duff
- .desc = Jello gelatin, from Alfred Hubbard's cookbook.
-ent-FoodJellyAmanita = amanita jelly
- .desc = It's evil, don't touch it!
-ent-FoodSoupMeatball = meatball soup
- .desc = You've got balls kid, BALLS!
-ent-FoodSoupSlime = slime soup
- .desc = If no water is available, you may substitute tears.
-ent-FoodSoupTomatoBlood = tomato soup
- .desc = Smells like copper... is that a bone?
-ent-FoodSoupWingFangChu = wing fang chu
- .desc = A savory dish of alien wing wang in soy.
-ent-FoodSoupClown = clown's tears
- .desc = Not very funny.
-ent-FoodSoupVegetable = vegetable soup
- .desc = A true vegan meal.
-ent-FoodSoupNettle = nettle soup
- .desc = To think, the botanist would've beat you to death with one of these.
-ent-FoodSoupMystery = mystery soup
- .desc = The mystery is, why aren't you eating it?
-ent-FoodSoupChiliHot = bowl of hot chili
- .desc = A Texan five-alarm chili!
-ent-FoodSoupChiliCold = cold chili
- .desc = This slush is barely a liquid!
-ent-FoodSoupChiliClown = chili con carnival
- .desc = A delicious stew of meat, chilies, and salty, salty clown tears.
-ent-FoodSoupMonkey = monkey's delight
- .desc = A delicious soup with hunks of monkey meat simmered to perfection, in a broth that tastes faintly of bananas.
-ent-FoodSoupTomato = tomato soup
- .desc = Drinking this feels like being a vampire! A tomato vampire...
-ent-FoodSoupEyeball = eyeball soup
- .desc = It's looking back at you...
-ent-FoodSoupMiso = miso soup
- .desc = Salty, fishy soup, best had with ramen.
-ent-FoodSoupMushroom = mushroom soup
- .desc = A delicious and hearty mushroom soup.
-ent-FoodSoupBeet = beet soup
- .desc = Wait, how do you spell it again..?
-ent-FoodSoupBeetRed = red beet soup
- .desc = Quite a delicacy.
-ent-FoodSoupStew = stew
- .desc = A nice and warm stew. Healthy and strong.
-ent-FoodSoupPotato = sweet potato soup
- .desc = Delicious sweet potato in soup form.
-ent-FoodSoupOnion = french onion soup
- .desc = Good enough to make a grown mime cry.
-ent-FoodSoupBisque = bisque
- .desc = A classic entrée from Space France.
-ent-FoodSoupElectron = electron soup
- .desc = A gastronomic curiosity of ethereal origin.
-ent-FoodSoupBungo = bungo curry
- .desc = A spicy vegetable curry made with the humble bungo fruit, Exotic!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/taco.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/taco.ftl
deleted file mode 100644
index 07d378e4536..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/taco.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-FoodTacoShell = taco shell
- .desc = A taco shell, easy to hold, but falls on its side when put down.
-ent-FoodTacoBase = { ent-FoodInjectableBase }
- .desc = { ent-FoodInjectableBase.desc }
-ent-FoodTacoBeef = beef taco
- .desc = A very basic and run of the mill beef taco, now with cheese!
-ent-FoodTacoChicken = chicken taco
- .desc = A very basic and run of the mill chicken taco, now with cheese!
-ent-FoodTacoFish = fish taco
- .desc = Sounds kinda gross, but it's actually not that bad.
-ent-FoodTacoRat = rat taco
- .desc = Yeah, that looks about right...
-ent-FoodTacoBeefSupreme = beef taco supreme
- .desc = It's like a regular beef taco, but surpeme!
-ent-FoodTacoChickenSupreme = chicken taco supreme
- .desc = It's like a regular chicken taco, but surpeme!
-ent-FoodMealSoftTaco = soft taco
- .desc = Take a bite!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/base_smokeables.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/base_smokeables.ftl
deleted file mode 100644
index fdcb4eb0506..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/base_smokeables.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseSmokable = { ent-BaseItem }
- .desc = If you want to get cancer, might as well do it in style.
-ent-BaseCigar = { ent-BaseSmokable }
- .desc = { ent-BaseSmokable.desc }
-ent-BaseSmokingPipe = { ent-BaseSmokable }
- .desc = { ent-BaseSmokable.desc }
-ent-BaseVape = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/cartons.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/cartons.ftl
deleted file mode 100644
index 311caa55b19..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/cartons.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-CigCartonGreen = Spessman's Smokes carton
- .desc = A carton containing 6 packets of Spessman's Smokes.
-ent-CigCartonRed = DromedaryCo carton
- .desc = A carton containing 6 packets of Dromedarycos.
-ent-CigCartonBlue = AcmeCo carton
- .desc = A carton containing 6 packets of AcmeCo.
-ent-CigCartonBlack = Nomads carton
- .desc = A carton containing 6 packets of Nomads.
-ent-CigCartonMixed = Dan's soaked smokes
- .desc = A carton containg 3 packets of Dan's soaked smokes.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/cigarette.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/cigarette.ftl
deleted file mode 100644
index 37e9e4ddc1d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/cigarette.ftl
+++ /dev/null
@@ -1,55 +0,0 @@
-ent-Cigarette = cigarette
- .desc = A roll of tobacco and nicotine.
-ent-SoakedCigarette = cigarette
- .desc = A roll of tobacco and nicotine soaked in some chemical.
- .suffix = Soaked
-ent-CigaretteSpent = { ent-Cigarette }
- .suffix = spent
- .desc = { ent-Cigarette.desc }
-ent-CigaretteSyndicate = cigarette
- .suffix = syndicate
- .desc = { ent-Cigarette.desc }
-ent-CigaretteOmnizine = Hot Dog Water Flavor Explosion
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteIron = Rusty Orange Baja Blast
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteTricordrazine = Licorice Allsorts
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteDylovene = Urinal Cake Disolver
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteDermaline = Aloe Peanut Butter Medley
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteArithrazine = Roman Pipe Works
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteIpecac = Grandma's Christmas Fruitcake
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteBicaridine = Wet Dog Enhanced Cigarette
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteDexalin = Rocky Mountain Musk
- .desc = { ent-SoakedCigarette.desc }
-ent-CigarettePax = Switzerland Express
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteBbqSauce = Spicy Wood Aroma
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteBlackPepper = English Spice
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteCapsaicinOil = Chilly P
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteBread = Double Toasted
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteMilk = Bovine Extract
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteBanana = Clown Adjancency Bonus
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteSpaceDrugs = 80's Power Hour
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteMuteToxin = Mixed Lozenges
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteMold = Beneath The Sink Experience
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteLicoxide = Wake Up Call
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteWeldingFuel = Plasma Sauce
- .desc = { ent-SoakedCigarette.desc }
-ent-CigaretteTHC = Hippy Romance Novel
- .desc = { ent-SoakedCigarette.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/joints.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/joints.ftl
deleted file mode 100644
index 93f58720f68..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/joints.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-Joint = joint
- .desc = A roll of dried plant matter wrapped in thin paper.
-ent-JointRainbow = joint
- .desc = A roll of dried plant matter wrapped in thin paper. Seems to be colorful inside.
- .suffix = Rainbow
-ent-Blunt = blunt
- .desc = A roll of dried plant matter wrapped in a dried tobacco leaf.
-ent-BluntRainbow = blunt
- .desc = A roll of dried plant matter wrapped in a dried tobacco leaf. Seems to be colorful inside.
- .suffix = Rainbow
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/packs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/packs.ftl
deleted file mode 100644
index 453935a54b1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/packs.ftl
+++ /dev/null
@@ -1,23 +0,0 @@
-ent-CigPackBase = cigarette pack
- .desc = { ent-BaseStorageItem.desc }
-ent-CigPackMixedBase = soaked cigarette pack
- .desc = { ent-BaseStorageItem.desc }
-ent-CigPackGreen = Spessman's Smokes packet
- .desc = A label on the packaging reads, Wouldn't a slow death make a change?
-ent-CigPackRed = DromedaryCo packet
- .desc = The most popular brand of Space Cigarettes, sponsors of the Space Olympics.
-ent-CigPackBlue = AcmeCo packet
- .desc = For those who somehow want to obtain the record for the most amount of cancerous tumors.
-ent-CigPackBlack = Nomads packet
- .desc = Nomads's extra strong, for when your life is more extra hard.
-ent-CigPackSyndicate = Interdyne herbals packet
- .desc = Elite cigarettes for elite syndicate agents. Infused with medicine for when you need to do more than calm your nerves.
-ent-CigPackMixedMedical = Dan's soaked smokes
- .desc = Dan worked with NT chemistry to dispose of excess chemicals, ENJOY.
- .suffix = Medical
-ent-CigPackMixed = Dan's soaked smokes
- .desc = Dan worked with NT chemistry to dispose of excess chemicals, ENJOY.
- .suffix = Mixed
-ent-CigPackMixedNasty = Dan's soaked smokes
- .desc = Dan worked with NT chemistry to dispose of excess chemicals, ENJOY.
- .suffix = Nasty
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/rolling_paper.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/rolling_paper.ftl
deleted file mode 100644
index 0248d67724b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigarettes/rolling_paper.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-PackPaperRolling = pack of rolling paper
- .desc = A pack of thin pieces of paper used to make fine smokeables.
-ent-PackPaperRollingFilters = pack of rolling paper with filters
- .desc = A pack of filters and thin pieces of paper used to make fine smokeables.
-ent-PaperRolling = rolling paper
- .desc = A thin piece of paper used to make fine smokeables.
- .suffix = Full
-ent-PaperRolling1 = { ent-PaperRolling }
- .suffix = Single
- .desc = { ent-PaperRolling.desc }
-ent-CigaretteFilter = cigarette filter
- .desc = A strip of firm paper used as a filter for handmade cigarettes.
- .suffix = Full
-ent-CigaretteFilter1 = { ent-CigaretteFilter }
- .suffix = Single
- .desc = { ent-CigaretteFilter.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigars/case.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigars/case.ftl
deleted file mode 100644
index 79a66920f3d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigars/case.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-CigarCase = cigar case
- .desc = A case for holding your cigars when you are not smoking them.
-ent-CigarGoldCase = premium cigar case
- .desc = A case of premium Havanian cigars. You'll only see heads with these.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigars/cigar.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigars/cigar.ftl
deleted file mode 100644
index 86478f0467a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/cigars/cigar.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-Cigar = cigar
- .desc = A brown roll of tobacco and... well, you're not quite sure.
-ent-CigarSpent = { ent-Cigar }
- .suffix = spent
- .desc = { ent-Cigar.desc }
-ent-CigarGold = premium Havanian cigar
- .desc = A cigar fit for only the best of the best.
-ent-CigarGoldSpent = { ent-CigarGold }
- .suffix = spent
- .desc = { ent-CigarGold.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/pipes/pipe.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/pipes/pipe.ftl
deleted file mode 100644
index 5677f9ac27e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/pipes/pipe.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-SmokingPipe = pipe
- .desc = Just like grandpappy used to smoke.
-ent-SmokingPipeFilledTobacco = pipe
- .desc = Just like grandpappy used to smoke.
- .suffix = Tobacco
-ent-SmokingPipeFilledCannabis = pipe
- .desc = Just like grandpappy used to smoke.
- .suffix = Cannabis
-ent-SmokingPipeFilledCannabisRainbow = pipe
- .desc = Just like grandpappy used to smoke.
- .suffix = Rainbow Cannabis
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/vapes/vape.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/vapes/vape.ftl
deleted file mode 100644
index 8c43ce635d1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/smokeables/vapes/vape.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Vape = vape
- .desc = Like a cigar, but for tough teens. (WARNING:Pour only water into the vape)
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/ashtray.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/ashtray.ftl
deleted file mode 100644
index 9046e595ef7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/ashtray.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Ashtray = ashtray
- .desc = Proven by scientists to improve the smoking experience by 37%!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/containers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/containers.ftl
deleted file mode 100644
index 1b05f3bdfe3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/containers.ftl
+++ /dev/null
@@ -1,28 +0,0 @@
-ent-BaseShippingContainer = { "" }
- .desc = { "" }
-ent-ShippingContainerBlank = shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one is blank, offering no clue as to its contents.
-ent-ShippingContainerConarex = Conarex Aeronautics shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one is from Conarex Aeronautics, and is probably carrying spacecraft parts (or a bribery scandal) as a result.
-ent-ShippingContainerDeforest = DeForest Medical Corp. shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one is from DeForest, and so is probably carrying medical supplies.
-ent-ShippingContainerKahraman = Kahraman Heavy Industry shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one is from Kahraman, and is reinforced for carrying ore.
-ent-ShippingContainerKosmologistika = Kosmologistika shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one is from Kosmologistika, the logistics company owned and operated by the SSC.
-ent-ShippingContainerInterdyne = Interdyne shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one is from Interdyne, a private pharmaceutical company. Probably carrying medical or research supplies, probably.
-ent-ShippingContainerNakamura = Nakamura Engineering shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one is from Nakamura, presumably for transporting tools or heavy industrial equipment.
-ent-ShippingContainerNanotrasen = Nanotrasen shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one prominently features Nanotrasen's logo, and so presumably could be carrying anything.
-ent-ShippingContainerVitezstvi = Vítězství Arms shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one is from Vítězství Arms, proudly proclaiming that Vítězství weapons mean victory.
-ent-ShippingContainerCybersun = Cybersun Industries shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one prominently features Cybersun's logo, and so presumably could be carrying almost anything.
-ent-ShippingContainerDonkCo = Donk Co. shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one is from Donk Co. and so could be carrying just about anything- although it's probably Donk Pockets.
-ent-ShippingContainerGorlex = Gorlex Securities shipping container
- .desc = A standard-measure shipping container for bulk transport of goods. This one is from Gorlex Securities, and is probably carrying their primary export - war crimes.
-ent-ShippingContainerGorlexRed = { ent-ShippingContainerGorlex }
- .desc = { ent-ShippingContainerGorlex.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/flora.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/flora.ftl
deleted file mode 100644
index 6049849a4dc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/flora.ftl
+++ /dev/null
@@ -1,115 +0,0 @@
-ent-BaseRock = boulder
- .desc = Heavy as a really heavy thing.
-ent-BaseTree = { "" }
- .desc = Yep, it's a tree.
-ent-BaseTreeSnow = { ent-BaseTree }
- .desc = { ent-BaseTree.desc }
-ent-BaseTreeLarge = { ent-BaseTree }
- .desc = { ent-BaseTree.desc }
-ent-BaseTreeConifer = { ent-BaseTree }
- .desc = { ent-BaseTree.desc }
-ent-FloraRockSolid01 = { ent-BaseRock }
- .desc = { ent-BaseRock.desc }
-ent-FloraRockSolid02 = { ent-BaseRock }
- .desc = { ent-BaseRock.desc }
-ent-FloraRockSolid03 = { ent-BaseRock }
- .desc = { ent-BaseRock.desc }
-ent-FloraStalagmite1 = stalagmite
- .desc = Natural stone spikes.
-ent-FloraStalagmite2 = { ent-FloraStalagmite1 }
- .desc = { ent-FloraStalagmite1.desc }
-ent-FloraStalagmite3 = { ent-FloraStalagmite1 }
- .desc = { ent-FloraStalagmite1.desc }
-ent-FloraStalagmite4 = { ent-FloraStalagmite1 }
- .desc = { ent-FloraStalagmite1.desc }
-ent-FloraStalagmite5 = { ent-FloraStalagmite1 }
- .desc = { ent-FloraStalagmite1.desc }
-ent-FloraStalagmite6 = { ent-FloraStalagmite1 }
- .desc = { ent-FloraStalagmite1.desc }
-ent-FloraGreyStalagmite1 = { ent-FloraStalagmite1 }
- .desc = { ent-FloraStalagmite1.desc }
-ent-FloraGreyStalagmite2 = { ent-FloraGreyStalagmite1 }
- .desc = { ent-FloraGreyStalagmite1.desc }
-ent-FloraGreyStalagmite3 = { ent-FloraGreyStalagmite1 }
- .desc = { ent-FloraGreyStalagmite1.desc }
-ent-FloraGreyStalagmite4 = { ent-FloraGreyStalagmite1 }
- .desc = { ent-FloraGreyStalagmite1.desc }
-ent-FloraGreyStalagmite5 = { ent-FloraGreyStalagmite1 }
- .desc = { ent-FloraGreyStalagmite1.desc }
-ent-FloraGreyStalagmite6 = { ent-FloraGreyStalagmite1 }
- .desc = { ent-FloraGreyStalagmite1.desc }
-ent-FloraTree01 = tree
- .desc = { ent-BaseTree.desc }
-ent-FloraTree02 = tree
- .desc = { ent-BaseTree.desc }
-ent-FloraTree03 = tree
- .desc = { ent-BaseTree.desc }
-ent-FloraTree04 = tree
- .desc = { ent-BaseTree.desc }
-ent-FloraTree05 = tree
- .desc = { ent-BaseTree.desc }
-ent-FloraTree06 = tree
- .desc = { ent-BaseTree.desc }
-ent-FloraTreeSnow01 = snowy tree
- .desc = { ent-BaseTreeSnow.desc }
-ent-FloraTreeSnow02 = snowy tree
- .desc = { ent-BaseTreeSnow.desc }
-ent-FloraTreeSnow03 = snowy tree
- .desc = { ent-BaseTreeSnow.desc }
-ent-FloraTreeSnow04 = snowy tree
- .desc = { ent-BaseTreeSnow.desc }
-ent-FloraTreeSnow05 = snowy tree
- .desc = { ent-BaseTreeSnow.desc }
-ent-FloraTreeSnow06 = snowy tree
- .desc = { ent-BaseTreeSnow.desc }
-ent-FloraTreeStump = tree stump
- .desc = { ent-BaseTreeSnow.desc }
-ent-FloraTreeLarge01 = large tree
- .desc = { ent-BaseTreeLarge.desc }
-ent-FloraTreeLarge02 = large tree
- .desc = { ent-BaseTreeLarge.desc }
-ent-FloraTreeLarge03 = large tree
- .desc = { ent-BaseTreeLarge.desc }
-ent-FloraTreeLarge04 = large tree
- .desc = { ent-BaseTreeLarge.desc }
-ent-FloraTreeLarge05 = large tree
- .desc = { ent-BaseTreeLarge.desc }
-ent-FloraTreeLarge06 = large tree
- .desc = { ent-BaseTreeLarge.desc }
-ent-FloraTreeConifer01 = snowy conifer
- .desc = { ent-BaseTreeConifer.desc }
-ent-FloraTreeConifer02 = snowy conifer
- .desc = { ent-BaseTreeConifer.desc }
-ent-FloraTreeConifer03 = snowy conifer
- .desc = { ent-BaseTreeConifer.desc }
-ent-FloraTreeChristmas01 = christmas tree
- .desc = { ent-BaseTreeConifer.desc }
-ent-FloraTreeChristmas02 = christmas tree
- .suffix = PresentsGiver
- .desc = { ent-BaseTreeConifer.desc }
-ent-FloraTreeStumpConifer = tree stump
- .desc = { ent-BaseTreeConifer.desc }
-ent-ShadowTree01 = dark wood
- .desc = The leaves are whispering about you.
-ent-ShadowTree02 = { ent-ShadowTree01 }
- .desc = { ent-ShadowTree01.desc }
-ent-ShadowTree03 = { ent-ShadowTree01 }
- .desc = { ent-ShadowTree01.desc }
-ent-ShadowTree04 = { ent-ShadowTree01 }
- .desc = { ent-ShadowTree01.desc }
-ent-ShadowTree05 = { ent-ShadowTree01 }
- .desc = { ent-ShadowTree01.desc }
-ent-ShadowTree06 = { ent-ShadowTree01 }
- .desc = { ent-ShadowTree01.desc }
-ent-LightTree01 = glowing tree
- .desc = a marvelous tree filled with strange energy.
-ent-LightTree02 = { ent-LightTree01 }
- .desc = { ent-LightTree01.desc }
-ent-LightTree03 = { ent-LightTree01 }
- .desc = { ent-LightTree01.desc }
-ent-LightTree04 = { ent-LightTree01 }
- .desc = { ent-LightTree01.desc }
-ent-LightTree05 = { ent-LightTree01 }
- .desc = { ent-LightTree01.desc }
-ent-LightTree06 = { ent-LightTree01 }
- .desc = { ent-LightTree01.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/jackolantern.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/jackolantern.ftl
deleted file mode 100644
index 7bf5e33fc01..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/jackolantern.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-CarvedPumpkin = carved pumpkin
- .desc = A traditional spooky decoration.
-ent-PumpkinLantern = jack o' lantern
- .desc = A carved pumpkin, emitting an eerie glow.
-ent-CarvedPumpkinSmall = { ent-CarvedPumpkin }
- .suffix = Small
- .desc = { ent-CarvedPumpkin.desc }
-ent-CarvedPumpkinLarge = { ent-CarvedPumpkin }
- .suffix = Large
- .desc = { ent-CarvedPumpkin.desc }
-ent-PumpkinLanternSmall = { ent-PumpkinLantern }
- .suffix = Small
- .desc = { ent-PumpkinLantern.desc }
-ent-PumpkinLanternLarge = { ent-PumpkinLantern }
- .suffix = Large
- .desc = { ent-PumpkinLantern.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/lidsalami.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/lidsalami.ftl
deleted file mode 100644
index 4bc78b3cde1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/lidsalami.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-LidSalami = salami lid
- .desc = Ain't gon' fit, won't fit.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/mining.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/mining.ftl
deleted file mode 100644
index 1b9293b6d43..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/mining.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-WoodenSign = wooden sign
- .desc = He's pointing somewhere.
-ent-WoodenSignRight = { ent-WoodenSign }
- .desc = { ent-WoodenSign.desc }
-ent-WoodenSupport = wooden support
- .desc = Increases your confidence that a rock won't fall on your head.
-ent-WoodenSupportBeam = wooden support beam
- .desc = { ent-WoodenSupport.desc }
-ent-WoodenSupportWall = wooden support wall
- .desc = An old, rotten wall.
-ent-WoodenSupportWallBroken = { ent-WoodenSupportWall }
- .desc = { ent-WoodenSupportWall.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/present.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/present.ftl
deleted file mode 100644
index aa7a3e6dde2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/present.ftl
+++ /dev/null
@@ -1,27 +0,0 @@
-ent-PresentBase = present
- .desc = A little box with incredible surprises inside.
-ent-Present = { ent-PresentBase }
- .suffix = Empty
- .desc = { ent-PresentBase.desc }
-
-ent-PresentRandomUnsafe = { ent-PresentBase }
-
- .suffix = Filled, any item
- .desc = { ent-PresentBase.desc }
-ent-PresentRandomInsane = { ent-PresentRandomUnsafe }
- .suffix = Filled, any entity
- .desc = { ent-PresentRandomUnsafe.desc }
-ent-PresentRandom = { ent-PresentBase }
-
- .suffix = Filled Safe
- .desc = { ent-PresentBase.desc }
-ent-PresentRandomAsh = { ent-PresentBase }
-
- .suffix = Filled Ash
- .desc = { ent-PresentBase.desc }
-ent-PresentRandomCash = { ent-PresentBase }
-
- .suffix = Filled Cash
- .desc = { ent-PresentBase.desc }
-ent-PresentTrash = Wrapping Paper
- .desc = Carefully folded, taped, and tied with a bow. Then ceremoniously ripped apart and tossed on the floor.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/cartridges.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/cartridges.ftl
deleted file mode 100644
index 69f73930df2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/cartridges.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-NotekeeperCartridge = notekeeper cartridge
- .desc = A program for keeping notes
-ent-NewsReaderCartridge = news cartridge
- .desc = A program for reading news
-ent-CrewManifestCartridge = crew manifest cartridge
- .desc = A program for listing your fellow crewmembers
-ent-NetProbeCartridge = NetProbe cartridge
- .desc = A program for getting the address and frequency of network devices
-ent-LogProbeCartridge = LogProbe cartridge
- .desc = A program for getting access logs from devices
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/chameleon_projector.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/chameleon_projector.ftl
deleted file mode 100644
index ab0cb61db5c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/chameleon_projector.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-ChameleonProjector = chameleon projector
- .desc = Holoparasite technology used to create a hard-light replica of any object around you. Disguise is destroyed when picked up or deactivated.
-ent-ChameleonDisguise = Urist McKleiner
- .desc = { ent-BaseMob.desc }
-ent-ActionDisguiseNoRot = Toggle Rotation
- .desc = Use this to prevent your disguise from rotating, making it easier to hide in some scenarios.
-ent-ActionDisguiseAnchor = Toggle Anchored
- .desc = For many objects you will want to be anchored to not be completely obvious.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl
deleted file mode 100644
index f3438bfde3f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl
+++ /dev/null
@@ -1,74 +0,0 @@
-ent-BaseComputerCircuitboard = computer board
- .desc = { ent-BaseItem.desc }
-ent-AlertsComputerCircuitboard = alerts computer board
- .desc = A computer printed circuit board for an alerts computer.
-ent-PowerComputerCircuitboard = power monitoring computer board
- .desc = A computer printed circuit board for a power monitoring computer.
-ent-MedicalRecordsComputerCircuitboard = medical records computer board
- .desc = A computer printed circuit board for a medical records computer.
-ent-CriminalRecordsComputerCircuitboard = criminal records computer board
- .desc = A computer printed circuit board for a criminal records computer.
-ent-StationRecordsComputerCircuitboard = station records computer board
- .desc = A computer printed circuit board for a station records computer.
-ent-CargoRequestComputerCircuitboard = cargo request computer board
- .desc = A computer printed circuit board for a cargo request computer.
-ent-CargoSaleComputerCircuitboard = cargo sale computer board
- .desc = A computer printed circuit board for a cargo sale computer.
-ent-CargoBountyComputerCircuitboard = cargo bounty computer board
- .desc = A computer printed circuit board for a cargo bounty computer.
-ent-CargoShuttleComputerCircuitboard = cargo shuttle computer board
- .desc = A computer printed circuit board for a cargo shuttle computer.
-ent-SalvageExpeditionsComputerCircuitboard = salvage expeditions computer board
- .desc = A computer printed circuit board for a salvage expeditions computer.
-ent-CargoShuttleConsoleCircuitboard = cargo shuttle console board
- .desc = A computer printed circuit board for a cargo shuttle console.
-ent-SalvageShuttleConsoleCircuitboard = salvage shuttle console board
- .desc = A computer printed circuit board for a salvage shuttle console.
-ent-SurveillanceCameraMonitorCircuitboard = surveillance camera monitor board
- .desc = A computer printed circuit board for a surveillance camera monitor.
-ent-SurveillanceWirelessCameraMonitorCircuitboard = surveillance wireless camera monitor board
- .desc = A computer printed circuit board for a surveillance wireless camera monitor.
-ent-ComputerTelevisionCircuitboard = television board
- .desc = A computer printed circuit board for a television.
-ent-ResearchComputerCircuitboard = R&D computer board
- .desc = A computer printed circuit board for a R&D console.
-ent-AnalysisComputerCircuitboard = analysis computer board
- .desc = A computer printed circuit board for an analysis console.
-ent-TechDiskComputerCircuitboard = tech disk terminal board
- .desc = A computer printed circuit board for a technology disk terminal.
-ent-CrewMonitoringComputerCircuitboard = crew monitoring computer board
- .desc = A computer printed circuit board for a crew monitoring console.
-ent-IDComputerCircuitboard = ID card computer board
- .desc = A computer printed circuit board for an ID card console.
-ent-BodyScannerComputerCircuitboard = body scanner computer board
- .desc = A computer printed circuit board for a body scanner console.
-ent-CommsComputerCircuitboard = communications computer board
- .desc = A computer printed circuit board for a communications console.
-ent-SyndicateCommsComputerCircuitboard = syndicate communications computer board
- .desc = A computer printed circuit board for a syndicate communications console.
-ent-RadarConsoleCircuitboard = radar console computer board
- .desc = { ent-BaseComputerCircuitboard.desc }
-ent-SolarControlComputerCircuitboard = solar control computer board
- .desc = A computer printed circuit board for a solar control console.
-ent-SpaceVillainArcadeComputerCircuitboard = space villain arcade board
- .desc = A computer printed circuit board for a space villain arcade cabinet.
-ent-BlockGameArcadeComputerCircuitboard = block game arcade board
- .desc = A computer printed circuit board for a block game arcade cabinet.
-ent-ParticleAcceleratorComputerCircuitboard = PA control box computer board
- .desc = A computer printed circuit board for a particle accelerator control box.
-ent-ShuttleConsoleCircuitboard = shuttle console board
- .desc = A computer printed circuit board for a shuttle console.
-ent-SyndicateShuttleConsoleCircuitboard = syndicate shuttle console board
- .desc = A computer printed circuit board for a syndicate shuttle console.
-ent-CloningConsoleComputerCircuitboard = cloning console computer board
- .desc = A computer printed circuit board for a cloning console.
-ent-ComputerIFFCircuitboard = IFF console board
- .desc = Allows you to control the IFF characteristics of this vessel.
-ent-ComputerIFFSyndicateCircuitboard = syndicate IFF console board
- .desc = Allows you to control the IFF and stealth characteristics of this vessel.
-ent-ComputerMassMediaCircuitboard = news manager console board
- .desc = Write your message to the world!
-ent-SensorConsoleCircuitboard = sensor monitoring console board
- .desc = A computer printed circuit board for a sensor monitoring console.
-ent-RoboticsConsoleCircuitboard = robotics control console board
- .desc = A computer printed circuit board for a robotics control console.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/base_machineboard.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/base_machineboard.ftl
deleted file mode 100644
index 12966671b07..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/base_machineboard.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-BaseMachineCircuitboard = machine board
- .suffix = Machine Board
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/cannons.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/cannons.ftl
deleted file mode 100644
index 07b9abc29f6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/cannons.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-ShuttleGunSvalinnMachineGunCircuitboard = LSE-400c "Svalinn machine gun" machine board
- .desc = A machine printed circuit board for an LSE-400c "Svalinn machine gun"
- .suffix = DO NOT MAP, Machine Board
-ent-ShuttleGunPerforatorCircuitboard = LSE-1200c "Perforator" machine board
- .desc = A machine printed circuit board for an LSE-1200c "Perforator"
- .suffix = DO NOT MAP, Machine Board
-ent-ShuttleGunFriendshipCircuitboard = EXP-320g "Friendship" machine board
- .desc = A machine printed circuit board for an EXP-320g "Friendship"
- .suffix = DO NOT MAP, Machine Board
-ent-ShuttleGunDusterCircuitboard = EXP-2100g "Duster" machine board
- .desc = A machine printed circuit board for an EXP-2100g "Duster"
- .suffix = DO NOT MAP, Machine Board
-ent-ShuttleGunKineticCircuitboard = PTK-800 "Matter Dematerializer" machine board
- .desc = A machine printed circuit board for an PTK-800 "Matter Dematerializer"
- .suffix = DO NOT MAP, Machine Board
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/particle_accelerator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/particle_accelerator.ftl
deleted file mode 100644
index 4b73b43a3a0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/particle_accelerator.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-MachineParticleAcceleratorEndCapCircuitboard = PA end cap board
- .desc = A machine board for a particle accelerator end cap
-ent-MachineParticleAcceleratorFuelChamberCircuitboard = PA fuel chamber board
- .desc = A machine board for a particle accelerator fuel chamber
-ent-MachineParticleAcceleratorPowerBoxCircuitboard = PA power box board
- .desc = A machine board for a particle accelerator power box
-ent-MachineParticleAcceleratorEmitterStarboardCircuitboard = PA starboard emitter board
- .desc = A machine board for a particle accelerator left emitter
-ent-MachineParticleAcceleratorEmitterForeCircuitboard = PA fore emitter board
- .desc = A machine board for a particle accelerator center emitter
-ent-MachineParticleAcceleratorEmitterPortCircuitboard = PA port emitter board
- .desc = A machine board for a particle accelerator right emitter
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl
deleted file mode 100644
index 7364f9b8450..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl
+++ /dev/null
@@ -1,154 +0,0 @@
-ent-AutolatheMachineCircuitboard = autolathe machine board
- .desc = A machine printed circuit board for an autolathe
-ent-AutolatheHyperConvectionMachineCircuitboard = hyper convection autolathe machine board
- .desc = A machine printed circuit board for a hyper convection autolathe
-ent-ProtolatheMachineCircuitboard = protolathe machine board
- .desc = A machine printed circuit board for a protolathe.
-ent-ProtolatheHyperConvectionMachineCircuitboard = hyper convection protolathe machine board
- .desc = A machine printed circuit board for a hyper convection protolathe.
-ent-BiofabricatorMachineCircuitboard = biofabricator machine board
- .desc = A machine printed circuit board for a biofabricator.
-ent-SecurityTechFabCircuitboard = security techfab machine board
- .desc = A machine printed circuit board for a security techfab.
-ent-AmmoTechFabCircuitboard = ammo techfab circuit board
- .desc = A machine printed circuit board for an ammo techfab
-ent-MedicalTechFabCircuitboard = medical techfab machine board
- .desc = A machine printed circuit board for a medical techfab.
-ent-CircuitImprinterMachineCircuitboard = circuit imprinter machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-CircuitImprinterHyperConvectionMachineCircuitboard = hyper convection circuit imprinter machine board
- .desc = A machine printed circuit board for a hyper convection circuit imprinter.
-ent-ExosuitFabricatorMachineCircuitboard = exosuit fabricator machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-ResearchAndDevelopmentServerMachineCircuitboard = R&D server machine board
- .desc = A machine printed circuit board for the R&D server.
-ent-UniformPrinterMachineCircuitboard = uniform printer machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-VaccinatorMachineCircuitboard = vaccinator machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-DiagnoserMachineCircuitboard = diagnoser machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-ArtifactAnalyzerMachineCircuitboard = artifact analyzer machine board
- .desc = A machine printed circuit board for an artifact analyzer.
-ent-ArtifactCrusherMachineCircuitboard = artifact crusher machine board
- .desc = A machine printed circuit board for an artifact crusher.
-ent-AnomalyVesselCircuitboard = anomaly vessel machine board
- .desc = A machine printed circuit board for an anomaly vessel.
-ent-AnomalyVesselExperimentalCircuitboard = experimental anomaly vessel machine board
- .desc = A machine printed circuit board for an experimental anomaly vessel.
-ent-AnomalySynchronizerCircuitboard = anomaly synchronizer machine board
- .desc = A machine printed circuit board for an anomaly synchronizer.
-ent-APECircuitboard = A.P.E. machine board
- .desc = A machine printed circuit board for an A.P.E.
-ent-ThermomachineFreezerMachineCircuitBoard = freezer thermomachine machine board
- .desc = Looks like you could use a screwdriver to change the board type.
-ent-ThermomachineHeaterMachineCircuitBoard = heater thermomachine machine board
- .desc = Looks like you could use a screwdriver to change the board type.
-ent-HellfireFreezerMachineCircuitBoard = hellfire freezer machine board
- .desc = Looks like you could use a screwdriver to change the board type.
-ent-HellfireHeaterMachineCircuitBoard = hellfire heater machine board
- .desc = Looks like you could use a screwdriver to change the board type.
-ent-CondenserMachineCircuitBoard = condenser machine board
- .desc = A machine printed circuit board for a condenser.
-ent-PortableScrubberMachineCircuitBoard = portable scrubber machine board
- .desc = A machine printed circuit board for a portable scrubber.
-ent-SpaceHeaterMachineCircuitBoard = space heater machine board
- .desc = A machine printed circuit board for a space heater.
-ent-CloningPodMachineCircuitboard = cloning pod machine board
- .desc = A machine printed circuit board for a cloning pod.
-ent-MedicalScannerMachineCircuitboard = medical scanner machine board
- .desc = A machine printed circuit board for a medical scanner.
-ent-CrewMonitoringServerMachineCircuitboard = crew monitoring server machine board
- .desc = A machine printed circuit board for a crew monitoring server.
-ent-CryoPodMachineCircuitboard = cryo pod machine board
- .desc = A machine printed circuit board for a cryo pod.
-ent-ChemMasterMachineCircuitboard = ChemMaster 4000 machine board
- .desc = A machine printed circuit board for a ChemMaster 4000.
-ent-ChemDispenserMachineCircuitboard = chem dispenser machine board
- .desc = A machine printed circuit board for a chem dispenser.
-ent-BiomassReclaimerMachineCircuitboard = biomass reclaimer machine board
- .desc = A machine printed circuit board for a biomass reclaimer.
-ent-HydroponicsTrayMachineCircuitboard = hydroponics tray machine board
- .desc = A machine printed circuit board for a hydroponics tray.
-ent-SeedExtractorMachineCircuitboard = seed extractor machine board
- .desc = A machine printed circuit board for a seed extractor.
-ent-SMESMachineCircuitboard = SMES machine board
- .desc = A machine printed circuit board for a SMES.
-ent-CellRechargerCircuitboard = cell recharger machine board
- .desc = A machine printed circuit board for a cell recharger.
-ent-PowerCageRechargerCircuitboard = cage recharger machine board
- .desc = A machine printed circuit board for a energy cage recharger.
-ent-BorgChargerCircuitboard = cyborg recharging station machine board
- .desc = A machine printed circuit board for a robot recharging station.
-ent-WeaponCapacitorRechargerCircuitboard = recharger machine board
- .desc = A machine printed circuit board for a recharger.
-ent-TurboItemRechargerCircuitboard = turbo recharger machine board
- .desc = A machine printed circuit board for a turbo recharger.
-ent-SubstationMachineCircuitboard = substation machine board
- .desc = A machine printed circuit board for a substation.
-ent-DawInstrumentMachineCircuitboard = digital audio workstation machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-PortableGeneratorPacmanMachineCircuitboard = P.A.C.M.A.N.-type portable generator machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-ThrusterMachineCircuitboard = thruster machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-GyroscopeMachineCircuitboard = gyroscope machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-PortableGeneratorSuperPacmanMachineCircuitboard = S.U.P.E.R.P.A.C.M.A.N.-type portable generator machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-PortableGeneratorJrPacmanMachineCircuitboard = J.R.P.A.C.M.A.N.-type portable generator machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-ReagentGrinderMachineCircuitboard = reagent grinder machine board
- .desc = A machine printed circuit board for a reagent grinder.
-ent-HotplateMachineCircuitboard = hotplate machine board
- .desc = A machine printed circuit board for a hotplate.
-ent-ElectricGrillMachineCircuitboard = electric grill machine board
- .desc = A machine printed circuit board for an electric grill.
-ent-StasisBedMachineCircuitboard = stasis bed machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-ElectrolysisUnitMachineCircuitboard = electrolysis unit machine board
- .desc = A machine printed circuit board for an electrolysis unit.
-ent-CentrifugeMachineCircuitboard = centrifuge machine board
- .desc = A machine printed circuit board for a centrifuge.
-ent-MaterialReclaimerMachineCircuitboard = material reclaimer machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-OreProcessorMachineCircuitboard = ore processor machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-OreProcessorIndustrialMachineCircuitboard = industrial ore processor machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-SheetifierMachineCircuitboard = sheet-meister 2000 machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-MicrowaveMachineCircuitboard = microwave machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-FatExtractorMachineCircuitboard = lipid extractor machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-FlatpackerMachineCircuitboard = Flatpacker 1001 machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-EmitterCircuitboard = emitter machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-SurveillanceCameraRouterCircuitboard = surveillance camera router board
- .desc = A machine printed circuit board for a surveillance camera router.
-ent-SurveillanceCameraWirelessRouterCircuitboard = surveillance camera wireless router board
- .desc = A machine printed circuit board for a surveillance camera wireless router.
-ent-SurveillanceWirelessCameraMovableCircuitboard = movable wireless camera board
- .desc = A machine printed circuit board for a movable wireless camera.
-ent-SurveillanceWirelessCameraAnchoredCircuitboard = wireless camera board
- .desc = A machine printed circuit board for a wireless camera.
-ent-GasRecyclerMachineCircuitboard = gas recycler board
- .desc = A printed circuit board for a gas recycler.
-ent-BoozeDispenserMachineCircuitboard = booze dispenser machine board
- .desc = A machine printed circuit board for a booze dispenser.
-ent-CargoTelepadMachineCircuitboard = cargo telepad machine board
- .desc = A machine printed circuit board for a cargo telepad.
-ent-SodaDispenserMachineCircuitboard = soda dispenser machine board
- .desc = A machine printed circuit board for a soda dispenser.
-ent-TelecomServerCircuitboard = telecommunication server machine board
- .desc = A machine printed circuit board for an telecommunication server.
-ent-SalvageMagnetMachineCircuitboard = salvage magnet machine board
- .desc = A machine printed circuit board for a salvage magnet.
-ent-MiniGravityGeneratorCircuitboard = mini gravity generator machine board
- .desc = A machine printed circuit board for a mini gravity generator.
-ent-ReagentGrinderIndustrialMachineCircuitboard = industrial reagent grinder machine board
- .desc = { ent-BaseMachineCircuitboard.desc }
-ent-JukeboxCircuitBoard = jukebox machine board
- .desc = A machine printed circuit board for a jukebox.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/misc.ftl
deleted file mode 100644
index 31e149dfa38..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/misc.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-StationMapCircuitboard = station map electronics
- .desc = An electronics board used in station maps.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl
deleted file mode 100644
index fbeb03ac06a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl
+++ /dev/null
@@ -1,21 +0,0 @@
-ent-DoorRemoteDefault = door remote
- .desc = A gadget which can open and bolt doors remotely.
-ent-DoorRemoteCommand = command door remote
- .desc = { ent-DoorRemoteDefault.desc }
-ent-DoorRemoteSecurity = security door remote
- .desc = { ent-DoorRemoteDefault.desc }
-ent-DoorRemoteArmory = armory door remote
- .desc = { ent-DoorRemoteDefault.desc }
-ent-DoorRemoteService = service door remote
- .desc = { ent-DoorRemoteDefault.desc }
-ent-DoorRemoteResearch = research door remote
- .desc = { ent-DoorRemoteDefault.desc }
-ent-DoorRemoteCargo = cargo door remote
- .desc = { ent-DoorRemoteDefault.desc }
-ent-DoorRemoteMedical = medical door remote
- .desc = { ent-DoorRemoteDefault.desc }
-ent-DoorRemoteEngineering = engineering door remote
- .desc = { ent-DoorRemoteDefault.desc }
-ent-DoorRemoteAll = super door remote
- .suffix = Admeme
- .desc = { ent-DoorRemoteDefault.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/apc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/apc.ftl
deleted file mode 100644
index bf7ce0b6167..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/apc.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-APCElectronics = APC electronics
- .desc = An electronics board used in APC construction.
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/atmos_alarms.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/atmos_alarms.ftl
deleted file mode 100644
index 077d22d5bbc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/atmos_alarms.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-AirAlarmElectronics = air alarm electronics
- .desc = An electronics board used in air alarms
-ent-FireAlarmElectronics = fire alarm electronics
- .desc = An electronics board used in fire alarms
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/base_electronics.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/base_electronics.ftl
deleted file mode 100644
index 187acfe078d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/base_electronics.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-BaseElectronics = base electronics
- .suffix = Electronics
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/disposal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/disposal.ftl
deleted file mode 100644
index cbe30f42fdf..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/disposal.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MailingUnitElectronics = mailing unit electronics
- .desc = An electronics board used in mailing units
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/door.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/door.ftl
deleted file mode 100644
index ba3bc749e19..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/door.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-DoorElectronics = door electronics
- .desc = An electronics board used in doors and airlocks
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/door_access.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/door_access.ftl
deleted file mode 100644
index 3beb7defe30..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/door_access.ftl
+++ /dev/null
@@ -1,114 +0,0 @@
-ent-DoorElectronicsCaptain = { ent-DoorElectronics }
- .suffix = Captain, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsHeadOfPersonnel = { ent-DoorElectronics }
- .suffix = HeadOfPersonnel, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsCommand = { ent-DoorElectronics }
- .suffix = Command, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsBar = { ent-DoorElectronics }
- .suffix = Bar, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsBarKitchen = { ent-DoorElectronics }
- .suffix = Bar, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsHydroponics = { ent-DoorElectronics }
- .suffix = Hydroponics, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsChapel = { ent-DoorElectronics }
- .suffix = Chapel, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsTheatre = { ent-DoorElectronics }
- .suffix = Theatre, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsKitchen = { ent-DoorElectronics }
- .suffix = Kitchen, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsKitchenHydroponics = { ent-DoorElectronics }
- .suffix = Kitchen/Hydroponics, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsJanitor = { ent-DoorElectronics }
- .suffix = Janitor, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsLawyer = { ent-DoorElectronics }
- .suffix = Lawyer, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsService = { ent-DoorElectronics }
- .suffix = Service, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsQuartermaster = { ent-DoorElectronics }
- .suffix = Quartermaster, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsSalvage = { ent-DoorElectronics }
- .suffix = Salvage, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsCargo = { ent-DoorElectronics }
- .suffix = Cargo, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsChiefEngineer = { ent-DoorElectronics }
- .suffix = ChiefEngineer, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsAtmospherics = { ent-DoorElectronics }
- .suffix = Atmospherics, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsEngineering = { ent-DoorElectronics }
- .suffix = Engineering, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsMorgue = { ent-DoorElectronics }
- .suffix = Morgue, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsResearchDirector = { ent-DoorElectronics }
- .suffix = ResearchDirector, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsMedicalResearch = { ent-DoorElectronics }
- .suffix = Medical/Science, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsResearch = { ent-DoorElectronics }
- .suffix = Research, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsHeadOfSecurity = { ent-DoorElectronics }
- .suffix = HeadOfSecurity, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsArmory = { ent-DoorElectronics }
- .suffix = Armory, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsDetective = { ent-DoorElectronics }
- .suffix = Detective, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsSecurity = { ent-DoorElectronics }
- .suffix = Security, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsSecurityLawyer = { ent-DoorElectronics }
- .suffix = Security/Lawyer, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsBrig = { ent-DoorElectronics }
- .suffix = Brig, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsChiefMedicalOfficer = { ent-DoorElectronics }
- .suffix = ChiefMedicalOfficer, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsChemistry = { ent-DoorElectronics }
- .suffix = Chemistry, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsMedical = { ent-DoorElectronics }
- .suffix = Medical, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsNukeop = { ent-DoorElectronics }
- .suffix = Nukeop, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsSyndicateAgent = { ent-DoorElectronics }
- .suffix = SyndicateAgent, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsCentralCommand = { ent-DoorElectronics }
- .suffix = CentralCommand, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsExternal = { ent-DoorElectronics }
- .suffix = External, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsMaintenance = { ent-DoorElectronics }
- .suffix = Maintenance, Locked
- .desc = { ent-DoorElectronics.desc }
-ent-DoorElectronicsVault = { ent-DoorElectronics }
- .suffix = Vault, Locked
- .desc = { ent-DoorElectronics.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/firelock.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/firelock.ftl
deleted file mode 100644
index f6b0936c274..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/firelock.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FirelockElectronics = firelock electronics
- .desc = An electronics board used to detect differences in pressure, temperature and gas concentrations between the two sides of the door.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/igniter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/igniter.ftl
deleted file mode 100644
index 95fe48f0286..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/igniter.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Igniter = igniter
- .desc = Creates a spark when activated by a signal.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/intercom.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/intercom.ftl
deleted file mode 100644
index aaf7e658927..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/intercom.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-IntercomElectronics = intercom electronics
- .desc = An electronics board used in intercoms
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/mech.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/mech.ftl
deleted file mode 100644
index 9c4cb69773b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/mech.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-RipleyCentralElectronics = ripley central control module
- .desc = The electrical control center for the ripley mech.
-ent-RipleyPeripheralsElectronics = ripley peripherals control module
- .desc = The electrical peripherals control for the ripley mech.
-ent-HonkerCentralElectronics = H.O.N.K. central control module
- .desc = The electrical control center for the H.O.N.K. mech.
-ent-HonkerPeripheralsElectronics = H.O.N.K. peripherals control module
- .desc = The electrical peripherals control for the H.O.N.K. mech.
-ent-HonkerTargetingElectronics = H.O.N.K. weapon control and targeting module
- .desc = The electrical targeting control for the H.O.N.K. mech.
-ent-HamtrCentralElectronics = HAMTR central control module
- .desc = The electrical control center for the HAMTR mech.
-ent-HamtrPeripheralsElectronics = HAMTR peripherals control module
- .desc = The electrical peripherals control for the HAMTR mech.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/power_electronics.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/power_electronics.ftl
deleted file mode 100644
index f010958adb2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/power_electronics.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-APCElectronics = APC electronics
- .desc = Circuit used in APC construction.
-ent-WallmountSubstationElectronics = wallmount substation electronics
- .desc = Circuit used to construct a wallmount substation.
-ent-WallmountGeneratorElectronics = wallmount generator electronics
- .desc = Circuit used to construct a wallmount generator.
-ent-WallmountGeneratorAPUElectronics = wallmount APU electronics
- .desc = Circuit used to construct a wallmount APU.
-ent-SolarTrackerElectronics = solar tracker electronics
- .desc = Advanced circuit board used to detect differences in pressure, temperature and gas concentrations between the two sides of the door.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/signaller.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/signaller.ftl
deleted file mode 100644
index 261bbd87d16..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/signaller.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-RemoteSignaller = remote signaller
- .desc = A handheld device used for remotely sending signals to objects within a small radius of about 15 meters.
-ent-RemoteSignallerAdvanced = advanced remote signaller
- .desc = A handheld device used for remotely sending signals to objects within a small radius of about 50 meters.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/solar.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/solar.ftl
deleted file mode 100644
index 5a530e91694..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/solar.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-SolarTrackerElectronics = solar tracker electronics
- .desc = An electronics board used in solar tracker devices
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/timer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/timer.ftl
deleted file mode 100644
index f1b8b8c6cdc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/timer.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-SignalTimerElectronics = signal timer electronics
- .desc = An electronics board used in timer circuitry. Looks like you could use a screwdriver to change the board type.
-ent-ScreenTimerElectronics = screen timer electronics
- .desc = { ent-SignalTimerElectronics.desc }
-ent-BrigTimerElectronics = brig timer electronics
- .desc = { ent-SignalTimerElectronics.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/triggers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/triggers.ftl
deleted file mode 100644
index 519d8794587..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/electronics/triggers.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-TimerTrigger = timer trigger
- .desc = A configurable timer.
-ent-SignalTrigger = signal trigger
- .desc = Adds a machine link that is triggered by signals.
-ent-VoiceTrigger = voice trigger
- .desc = Adds a machine link that is triggered by vocal keywords
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl
deleted file mode 100644
index 89b5c81b0bd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-EncryptionKey = encryption key
- .desc = A small cypher chip for headsets.
-ent-EncryptionKeyCommon = common encryption key
- .desc = An encryption key used by anyone.
-ent-EncryptionKeyCargo = cargo encryption key
- .desc = An encryption key used by supply employees.
-ent-EncryptionKeyCentCom = central command encryption key
- .desc = An encryption key used by captain's bosses.
-ent-EncryptionKeyStationMaster = station master encryption key
- .desc = An encryption key used by station's bosses.
-ent-EncryptionKeyCommand = command encryption key
- .desc = An encryption key used by crew's bosses.
-ent-EncryptionKeyEngineering = engineering encryption key
- .desc = An encryption key used by the engineers.
-ent-EncryptionKeyMedical = medical encryption key
- .desc = An encryption key used by those who save lives.
-ent-EncryptionKeyMedicalScience = med-sci encryption key
- .desc = An encryption key used by someone who hasn't decided which side to take.
-ent-EncryptionKeyScience = science encryption key
- .desc = An encryption key used by scientists. Maybe it is plasmaproof?
-ent-EncryptionKeyRobo = robotech encryption key
- .desc = An encryption key used by robototech engineers. Maybe it has a LAH-6000 on it?
-ent-EncryptionKeySecurity = security encryption key
- .desc = An encryption key used by security.
-ent-EncryptionKeyService = service encryption key
- .desc = An encryption key used by the service staff, tasked with keeping the station full, happy and clean.
-ent-EncryptionKeySyndie = blood-red encryption key
- .desc = An encryption key used by... wait... Who is the owner of this chip?
-ent-EncryptionKeyBinary = binary translator key
- .desc = An encryption key that translates binary signals used by silicons.
-ent-EncryptionKeyFreelance = freelancer encryption key
- .desc = An encryption key used by freelancers, who may or may not have an affiliation. It looks like its worn out.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/flatpack.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/flatpack.ftl
deleted file mode 100644
index 1b90c492a28..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/flatpack.ftl
+++ /dev/null
@@ -1,26 +0,0 @@
-ent-BaseFlatpack = base flatpack
- .desc = A flatpack used for constructing something.
-ent-SolarAssemblyFlatpack = solar assembly flatpack
- .desc = A flatpack used for constructing a solar assembly.
-ent-AmePartFlatpack = AME flatpack
- .desc = A flatpack used for constructing an antimatter engine reactor.
-ent-SingularityGeneratorFlatpack = singularity generator flatpack
- .desc = A flatpack used for constructing a singularity generator.
-ent-RadiationCollectorFlatpack = radiation collector flatpack
- .desc = A flatpack used for constructing a radiation collector.
-ent-ContainmentFieldGeneratorFlatpack = containment field generator flatpack
- .desc = A flatpack used for constructing a containment field generator.
-ent-EmitterFlatpack = emitter flatpack
- .desc = A flatpack used for constructing an emitter.
-ent-TeslaGeneratorFlatpack = tesla generator flatpack
- .desc = A flatpack used for constructing a tesla generator.
-ent-TeslaCoilFlatpack = tesla coil flatpack
- .desc = A flatpack used for constructing a tesla coil.
-ent-TeslaGroundingRodFlatpack = grounding rod flatpack
- .desc = A flatpack used for constructing a grounding rod.
-ent-GyroscopeFlatpack = gyroscope flatpack
- .desc = A flatpack used for constructing a gyroscope.
-ent-ThrusterFlatpack = thruster flatpack
- .desc = A flatpack used for constructing a thruster.
-ent-SpaceHeaterFlatpack = space heater flatpack
- .desc = A flatpack used for constructing a space heater.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/forensic_scanner.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/forensic_scanner.ftl
deleted file mode 100644
index a73c2166d68..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/forensic_scanner.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ForensicScanner = forensic scanner
- .desc = A handheld device that can scan objects for fingerprints and fibers.
-ent-ForensicReportPaper = forensic scanner report
- .desc = Circumstantial evidence, at best
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/geiger.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/geiger.ftl
deleted file mode 100644
index f4b1b22dc53..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/geiger.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-GeigerCounter = Geiger counter
- .desc = A handheld device used for detecting and measuring radiation pulses.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl
deleted file mode 100644
index c6449a0a755..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-HandTeleporter = hand teleporter
- .desc = A Nanotrasen signature item--only the finest bluespace tech. Instructions: Use once to create a portal which teleports at random. Use again to link it to a portal at your current location. Use again to clear all portals.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/holoprojectors.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/holoprojectors.ftl
deleted file mode 100644
index f783483d87e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/holoprojectors.ftl
+++ /dev/null
@@ -1,23 +0,0 @@
-ent-Holoprojector = holographic sign projector
- .desc = A handy-dandy holographic projector that displays a janitorial sign.
-ent-HoloprojectorEmpty = { ent-Holoprojector }
- .suffix = Empty
- .desc = { ent-Holoprojector.desc }
-ent-HoloprojectorBorg = { ent-Holoprojector }
- .suffix = borg
- .desc = { ent-Holoprojector.desc }
-ent-HolofanProjector = holofan projector
- .desc = Stop suicidal passengers from killing everyone during atmos emergencies.
-ent-HolofanProjectorEmpty = { ent-HolofanProjector }
- .suffix = Empty
- .desc = { ent-HolofanProjector.desc }
-ent-HoloprojectorField = force field projector
- .desc = Creates an impassable forcefield that won't let anything through. Close proximity may or may not cause cancer.
-ent-HoloprojectorFieldEmpty = { ent-HoloprojectorField }
- .suffix = Empty
- .desc = { ent-HoloprojectorField.desc }
-ent-HoloprojectorSecurity = holobarrier projector
- .desc = Creates a solid but fragile holographic barrier.
-ent-HoloprojectorSecurityEmpty = { ent-HoloprojectorSecurity }
- .suffix = Empty
- .desc = { ent-HoloprojectorSecurity.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl
deleted file mode 100644
index 8a08898191a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-Mousetrap = mousetrap
- .desc = Useful for catching rodents sneaking into your kitchen.
-ent-MousetrapArmed = mousetrap
- .desc = Useful for catching rodents sneaking into your kitchen.
- .suffix = Armed
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/payload.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/payload.ftl
deleted file mode 100644
index 16c1c89221e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/payload.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BasePayload = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-ExplosivePayload = explosive payload
- .desc = { ent-BasePayload.desc }
-ent-ChemicalPayload = chemical payload
- .desc = A chemical payload. Has space to store two beakers. In combination with a trigger and a case, this can be used to initiate chemical reactions.
-ent-FlashPayload = flash payload
- .desc = A single-use flash payload.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl
deleted file mode 100644
index 135b9cb77c5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl
+++ /dev/null
@@ -1,132 +0,0 @@
-ent-BasePDA = PDA
- .desc = Personal Data Assistant.
-ent-BaseMedicalPDA = { ent-BasePDA }
- .desc = { ent-BasePDA.desc }
-ent-PassengerPDA = passenger PDA
- .desc = Why isn't it gray?
-ent-TechnicalAssistantPDA = technical assistant PDA
- .desc = Why isn't it yellow?
-ent-MedicalInternPDA = medical intern PDA
- .desc = Why isn't it white? Has a built-in health analyzer.
-ent-SecurityCadetPDA = security cadet PDA
- .desc = Why isn't it red?
-ent-ResearchAssistantPDA = research assistant PDA
- .desc = Why isn't it purple?
-ent-ServiceWorkerPDA = service worker PDA
- .desc = Why isn't it gray?
-ent-ChefPDA = chef PDA
- .desc = Covered in grease and flour.
-ent-BotanistPDA = botanist PDA
- .desc = Has an earthy scent.
-ent-ClownPDA = clown PDA
- .desc = Looks can be deceiving.
-ent-MimePDA = mime PDA
- .desc = Suprisingly not on mute.
-ent-ChaplainPDA = chaplain PDA
- .desc = God's chosen PDA.
-ent-QuartermasterPDA = quartermaster PDA
- .desc = PDA for the guy that orders the guns.
-ent-CargoPDA = cargo PDA
- .desc = PDA for the guys that order the pizzas.
-ent-SalvagePDA = salvage PDA
- .desc = Smells like ash.
-ent-BartenderPDA = bartender PDA
- .desc = Smells like beer.
-ent-LibrarianPDA = librarian PDA
- .desc = Smells like books.
-ent-LawyerPDA = lawyer PDA
- .desc = For lawyers to poach dubious clients.
-ent-JanitorPDA = janitor PDA
- .desc = Smells like bleach.
-ent-CaptainPDA = captain PDA
- .desc = Surprisingly no different from your PDA.
-ent-HoPPDA = head of personnel PDA
- .desc = Looks like it's been chewed on.
-ent-CEPDA = chief engineer PDA
- .desc = Looks like it's barely been used.
-ent-EngineerPDA = engineer PDA
- .desc = Rugged and well-worn.
-ent-CMOPDA = chief medical officer PDA
- .desc = Extraordinarily shiny and sterile. Has a built-in health analyzer.
-ent-MedicalPDA = medical PDA
- .desc = Shiny and sterile. Has a built-in health analyzer.
-ent-ParamedicPDA = paramedic PDA
- .desc = Shiny and sterile. Has a built-in rapid health analyzer.
-ent-ChemistryPDA = chemistry PDA
- .desc = It has a few discolored blotches here and there.
-ent-RnDPDA = research director PDA
- .desc = It appears surprisingly ordinary.
-ent-SciencePDA = science PDA
- .desc = It's covered with an unknown gooey substance.
-ent-HoSPDA = head of security PDA
- .desc = Whosoever bears this PDA is the law.
-ent-WardenPDA = warden PDA
- .desc = The OS appears to have been jailbroken.
-ent-SecurityPDA = security PDA
- .desc = Red to hide the stains of passenger blood.
-ent-CentcomPDA = CentCom PDA
- .desc = Light green sign of walking bureaucracy.
-ent-AdminPDA = Admin PDA
- .desc = If you are not an admin please return this PDA to the nearest admin.
- .suffix = Admin
-ent-CentcomPDAFake = { ent-CentcomPDA }
- .suffix = Fake
- .desc = { ent-CentcomPDA.desc }
-ent-DeathsquadPDA = { ent-CentcomPDA }
- .suffix = Death Squad
- .desc = { ent-CentcomPDA.desc }
-ent-MusicianPDA = musician PDA
- .desc = It fills you with inspiration.
-ent-AtmosPDA = atmos PDA
- .desc = Still smells like plasma.
-ent-ClearPDA = clear PDA
- .desc = 99 and 44/100ths percent pure plastic.
-ent-SyndiPDA = syndicate PDA
- .desc = Ok, time to be a productive member of- oh cool I'm a bad guy time to kill people!
-ent-ERTLeaderPDA = ERT Leader PDA
- .desc = Red for firepower.
- .suffix = Leader
-ent-ERTChaplainPDA = ERT Chaplain PDA
- .desc = Red for firepower, it's blessed.
- .suffix = Chaplain
-ent-ERTEngineerPDA = ERT Engineer PDA
- .desc = Red for firepower, it's well-worn.
- .suffix = Engineer
-ent-ERTJanitorPDA = ERT Janitor PDA
- .desc = Red for firepower, it's squeaky clean.
- .suffix = Janitor
-ent-ERTMedicPDA = ERT Medic PDA
- .desc = Red for firepower, it's shiny and sterile. Has a built-in rapid health analyzer.
- .suffix = Medic
-ent-ERTSecurityPDA = ERT Security PDA
- .desc = Red for firepower, it has tally marks etched on the side.
- .suffix = Security
-ent-CBURNPDA = CBURN PDA
- .desc = Smells like rotten flesh.
-ent-PsychologistPDA = psychologist PDA
- .desc = Looks immaculately cleaned.
-ent-ReporterPDA = reporter PDA
- .desc = Smells like freshly printed press.
-ent-ZookeeperPDA = zookeeper PDA
- .desc = Made with genuine synthetic leather. Crikey!
-ent-BoxerPDA = boxer PDA
- .desc = Float like a butterfly, ringtone like a bee.
-ent-DetectivePDA = detective PDA
- .desc = Smells like rain... pouring down the rooftops...
-ent-BrigmedicPDA = brigmedic PDA
- .desc = I wonder whose pulse is on the screen? I hope he doesnt stop... PDA has a built-in health analyzer.
-ent-CluwnePDA = cluwne PDA
- .desc = Cursed cluwne PDA.
- .suffix = Unremoveable
-ent-SeniorEngineerPDA = senior engineer PDA
- .desc = Seems to have been taken apart and put back together several times.
-ent-SeniorResearcherPDA = senior researcher PDA
- .desc = Looks like it's been through years of chemical burns and explosions.
-ent-SeniorPhysicianPDA = senior physician PDA
- .desc = Smells faintly like iron and chemicals. Has a built-in health analyzer.
-ent-SeniorOfficerPDA = senior officer PDA
- .desc = Beaten, battered and broken, but just barely useable.
-ent-PiratePDA = pirate PDA
- .desc = Yargh!
-ent-SyndiAgentPDA = syndicate agent PDA
- .desc = For those days when healing normal syndicates aren't enough, try healing nuclear operatives instead!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pinpointer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pinpointer.ftl
deleted file mode 100644
index d39aa5070a2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pinpointer.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-PinpointerBase = pinpointer
- .desc = A handheld tracking device. While typically far more capable, this one has been configured to lock onto certain signals. Keep upright to retain accuracy.
-ent-PinpointerNuclear = pinpointer
- .desc = { ent-PinpointerBase.desc }
-ent-PinpointerSyndicateNuclear = syndicate pinpointer
- .desc = Produced specifically for nuclear operative missions, get that disk!
-ent-PinpointerUniversal = universal pinpointer
- .desc = A handheld tracking device that locks onto any physical entity while off. Keep upright to retain accuracy.
-ent-PinpointerStation = station pinpointer
- .desc = A handheld tracking device that leads to the direction of any nearby station.
- .suffix = Station
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/radio.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/radio.ftl
deleted file mode 100644
index 83de35c5220..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/radio.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-RadioHandheld = handheld radio
- .desc = A handy handheld radio.
-ent-RadioHandheldSecurity = security radio
- .desc = A handy security radio.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl
deleted file mode 100644
index 4dc876add7c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl
+++ /dev/null
@@ -1,200 +0,0 @@
-ent-DefaultStationBeacon = station beacon
- .desc = A small device that transmits information to station maps. Can be configured.
- .suffix = General
-ent-DefaultStationBeaconUnanchored = { ent-DefaultStationBeacon }
- .suffix = General, Unanchored
- .desc = { ent-DefaultStationBeacon.desc }
-ent-StationBeaconPart = station beacon flatpack
- .desc = A flatpack used for constructing a station beacon.
-ent-DefaultStationBeaconCommand = { ent-DefaultStationBeacon }
- .suffix = Command
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconBridge = { ent-DefaultStationBeaconCommand }
- .suffix = Bridge
- .desc = { ent-DefaultStationBeaconCommand.desc }
-ent-DefaultStationBeaconVault = { ent-DefaultStationBeaconCommand }
- .suffix = Vault
- .desc = { ent-DefaultStationBeaconCommand.desc }
-ent-DefaultStationBeaconCaptainsQuarters = { ent-DefaultStationBeaconCommand }
- .suffix = Captain's Quarters
- .desc = { ent-DefaultStationBeaconCommand.desc }
-ent-DefaultStationBeaconHOPOffice = { ent-DefaultStationBeaconCommand }
- .suffix = HOP's Office
- .desc = { ent-DefaultStationBeaconCommand.desc }
-ent-DefaultStationBeaconSecurity = { ent-DefaultStationBeacon }
- .suffix = Security
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconBrig = { ent-DefaultStationBeaconSecurity }
- .suffix = Brig
- .desc = { ent-DefaultStationBeaconSecurity.desc }
-ent-DefaultStationBeaconWardensOffice = { ent-DefaultStationBeaconSecurity }
- .suffix = Warden's Office
- .desc = { ent-DefaultStationBeaconSecurity.desc }
-ent-DefaultStationBeaconHOSRoom = { ent-DefaultStationBeaconSecurity }
- .suffix = HOS’s Room
- .desc = { ent-DefaultStationBeaconSecurity.desc }
-ent-DefaultStationBeaconArmory = { ent-DefaultStationBeaconSecurity }
- .suffix = Armory
- .desc = { ent-DefaultStationBeaconSecurity.desc }
-ent-DefaultStationBeaconPermaBrig = { ent-DefaultStationBeaconSecurity }
- .suffix = Perma Brig
- .desc = { ent-DefaultStationBeaconSecurity.desc }
-ent-DefaultStationBeaconDetectiveRoom = { ent-DefaultStationBeaconSecurity }
- .suffix = Detective's Room
- .desc = { ent-DefaultStationBeaconSecurity.desc }
-ent-DefaultStationBeaconCourtroom = { ent-DefaultStationBeaconSecurity }
- .suffix = Courtroom
- .desc = { ent-DefaultStationBeaconSecurity.desc }
-ent-DefaultStationBeaconLawOffice = { ent-DefaultStationBeaconSecurity }
- .suffix = Law Office
- .desc = { ent-DefaultStationBeaconSecurity.desc }
-ent-DefaultStationBeaconSecurityCheckpoint = { ent-DefaultStationBeaconSecurity }
- .suffix = Sec Checkpoint
- .desc = { ent-DefaultStationBeaconSecurity.desc }
-ent-DefaultStationBeaconMedical = { ent-DefaultStationBeacon }
- .suffix = Medical
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconMedbay = { ent-DefaultStationBeaconMedical }
- .suffix = Medbay
- .desc = { ent-DefaultStationBeaconMedical.desc }
-ent-DefaultStationBeaconChemistry = { ent-DefaultStationBeaconMedical }
- .suffix = Chemistry
- .desc = { ent-DefaultStationBeaconMedical.desc }
-ent-DefaultStationBeaconCryonics = { ent-DefaultStationBeaconMedical }
- .suffix = Cryonics
- .desc = { ent-DefaultStationBeaconMedical.desc }
-ent-DefaultStationBeaconCMORoom = { ent-DefaultStationBeaconMedical }
- .suffix = CMO's room
- .desc = { ent-DefaultStationBeaconMedical.desc }
-ent-DefaultStationBeaconMorgue = { ent-DefaultStationBeaconMedical }
- .suffix = Morgue
- .desc = { ent-DefaultStationBeaconMedical.desc }
-ent-DefaultStationBeaconSurgery = { ent-DefaultStationBeaconMedical }
- .suffix = Surgery
- .desc = { ent-DefaultStationBeaconMedical.desc }
-ent-DefaultStationBeaconScience = { ent-DefaultStationBeacon }
- .suffix = Science
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconRND = { ent-DefaultStationBeaconScience }
- .suffix = Research and Development
- .desc = { ent-DefaultStationBeaconScience.desc }
-ent-DefaultStationBeaconServerRoom = { ent-DefaultStationBeaconScience }
- .suffix = Research Server Room
- .desc = { ent-DefaultStationBeaconScience.desc }
-ent-DefaultStationBeaconRDRoom = { ent-DefaultStationBeaconScience }
- .suffix = RD's Room
- .desc = { ent-DefaultStationBeaconScience.desc }
-ent-DefaultStationBeaconRobotics = { ent-DefaultStationBeaconScience }
- .suffix = Robotics
- .desc = { ent-DefaultStationBeaconScience.desc }
-ent-DefaultStationBeaconArtifactLab = { ent-DefaultStationBeaconScience }
- .suffix = Artifact Lab
- .desc = { ent-DefaultStationBeaconScience.desc }
-ent-DefaultStationBeaconAnomalyGenerator = { ent-DefaultStationBeaconScience }
- .suffix = Anomaly Generator
- .desc = { ent-DefaultStationBeaconScience.desc }
-ent-DefaultStationBeaconSupply = { ent-DefaultStationBeacon }
- .suffix = Supply
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconCargoReception = { ent-DefaultStationBeaconSupply }
- .suffix = Cargo Reception
- .desc = { ent-DefaultStationBeaconSupply.desc }
-ent-DefaultStationBeaconCargoBay = { ent-DefaultStationBeaconSupply }
- .suffix = Cargo Bay
- .desc = { ent-DefaultStationBeaconSupply.desc }
-ent-DefaultStationBeaconQMRoom = { ent-DefaultStationBeaconSupply }
- .suffix = QM's Room
- .desc = { ent-DefaultStationBeaconSupply.desc }
-ent-DefaultStationBeaconSalvage = { ent-DefaultStationBeaconSupply }
- .suffix = Salvage
- .desc = { ent-DefaultStationBeaconSupply.desc }
-ent-DefaultStationBeaconEngineering = { ent-DefaultStationBeacon }
- .suffix = Engineering
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconCERoom = { ent-DefaultStationBeaconEngineering }
- .suffix = CE's Room
- .desc = { ent-DefaultStationBeaconEngineering.desc }
-ent-DefaultStationBeaconAME = { ent-DefaultStationBeaconEngineering }
- .suffix = AME
- .desc = { ent-DefaultStationBeaconEngineering.desc }
-ent-DefaultStationBeaconSolars = { ent-DefaultStationBeaconEngineering }
- .suffix = Solars
- .desc = { ent-DefaultStationBeaconEngineering.desc }
-ent-DefaultStationBeaconGravGen = { ent-DefaultStationBeaconEngineering }
- .suffix = Grav Gen
- .desc = { ent-DefaultStationBeaconEngineering.desc }
-ent-DefaultStationBeaconSingularity = { ent-DefaultStationBeaconEngineering }
- .suffix = PA Control
- .desc = { ent-DefaultStationBeaconEngineering.desc }
-ent-DefaultStationBeaconPowerBank = { ent-DefaultStationBeaconEngineering }
- .suffix = SMES Power Bank
- .desc = { ent-DefaultStationBeaconEngineering.desc }
-ent-DefaultStationBeaconTelecoms = { ent-DefaultStationBeaconEngineering }
- .suffix = Telecoms
- .desc = { ent-DefaultStationBeaconEngineering.desc }
-ent-DefaultStationBeaconAtmospherics = { ent-DefaultStationBeaconEngineering }
- .suffix = Atmospherics
- .desc = { ent-DefaultStationBeaconEngineering.desc }
-ent-DefaultStationBeaconTEG = { ent-DefaultStationBeaconEngineering }
- .suffix = TEG
- .desc = { ent-DefaultStationBeaconEngineering.desc }
-ent-DefaultStationBeaconTechVault = { ent-DefaultStationBeaconEngineering }
- .suffix = Tech Vault
- .desc = { ent-DefaultStationBeaconEngineering.desc }
-ent-DefaultStationBeaconService = { ent-DefaultStationBeacon }
- .suffix = Service
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconKitchen = { ent-DefaultStationBeaconService }
- .suffix = Kitchen
- .desc = { ent-DefaultStationBeaconService.desc }
-ent-DefaultStationBeaconBar = { ent-DefaultStationBeaconService }
- .suffix = Bar
- .desc = { ent-DefaultStationBeaconService.desc }
-ent-DefaultStationBeaconBotany = { ent-DefaultStationBeaconService }
- .suffix = Botany
- .desc = { ent-DefaultStationBeaconService.desc }
-ent-DefaultStationBeaconJanitorsCloset = { ent-DefaultStationBeaconService }
- .suffix = Janitor's Closet
- .desc = { ent-DefaultStationBeaconService.desc }
-ent-DefaultStationBeaconAI = { ent-DefaultStationBeacon }
- .suffix = AI
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconAISatellite = { ent-DefaultStationBeaconAI }
- .suffix = AI Satellite
- .desc = { ent-DefaultStationBeaconAI.desc }
-ent-DefaultStationBeaconAICore = { ent-DefaultStationBeaconAI }
- .suffix = AI Core
- .desc = { ent-DefaultStationBeaconAI.desc }
-ent-DefaultStationBeaconArrivals = { ent-DefaultStationBeacon }
- .suffix = Arrivals
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconEvac = { ent-DefaultStationBeacon }
- .suffix = Evac
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconEVAStorage = { ent-DefaultStationBeacon }
- .suffix = EVA Storage
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconChapel = { ent-DefaultStationBeacon }
- .suffix = Chapel
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconLibrary = { ent-DefaultStationBeacon }
- .suffix = Library
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconTheater = { ent-DefaultStationBeacon }
- .suffix = Theater
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconDorms = { ent-DefaultStationBeacon }
- .suffix = Dorms
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconToolRoom = { ent-DefaultStationBeacon }
- .suffix = Tool Room
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconDisposals = { ent-DefaultStationBeacon }
- .suffix = Disposals
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconCryosleep = { ent-DefaultStationBeacon }
- .suffix = Cryosleep
- .desc = { ent-DefaultStationBeacon.desc }
-ent-DefaultStationBeaconEscapePod = { ent-DefaultStationBeacon }
- .suffix = Escape Pod
- .desc = { ent-DefaultStationBeacon.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_map.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_map.ftl
deleted file mode 100644
index a7094dfdf3d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_map.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-BaseHandheldStationMap = station map
- .desc = Displays a readout of the current station.
-ent-HandheldStationMap = { ent-BaseHandheldStationMap }
- .suffix = Handheld, Powered
- .desc = { ent-BaseHandheldStationMap.desc }
-ent-HandheldStationMapEmpty = { ent-HandheldStationMap }
- .suffix = Handheld, Empty
- .desc = { ent-HandheldStationMap.desc }
-ent-HandheldStationMapUnpowered = { ent-BaseHandheldStationMap }
- .suffix = Handheld, Unpowered
- .desc = { ent-BaseHandheldStationMap.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/swapper.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/swapper.ftl
deleted file mode 100644
index ff8a5ed715c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/swapper.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-DeviceQuantumSpinInverter = quantum spin inverter
- .desc = An experimental device that is able to swap the locations of two entities by switching their particles' spin values. Must be linked to another device to function.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/chimp_upgrade_kit.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/chimp_upgrade_kit.ftl
deleted file mode 100644
index a57d8a7ad0e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/chimp_upgrade_kit.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-WeaponPistolCHIMPUpgradeKit = C.H.I.M.P. handcannon upgrade chip
- .desc = An experimental upgrade kit for the C.H.I.M.P.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl
deleted file mode 100644
index b221928f7ff..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-HoloparasiteInjector = holoparasite injector
- .desc = A complex artwork of handheld machinery allowing the user to host a holoparasite guardian.
-ent-HoloClownInjector = holoclown injector
- .desc = A complex artwork of handheld machinery allowing the user to host a holoclown guardian.
-ent-MagicalLamp = magical lamp
- .desc = The wizard federation had to cut costs after the jinn merchandise scandal somehow.
-ent-BoxHoloparasite = holoparasite box
- .desc = A box containing a holoparasite injector
-ent-BoxHoloclown = holoclown box
- .desc = A box containing a holoclown injector
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl
deleted file mode 100644
index 6e7edc53a23..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl
+++ /dev/null
@@ -1,13 +0,0 @@
-ent-ReinforcementRadioSyndicate = syndicate reinforcement radio
- .desc = Call in a syndicate agent of questionable quality, instantly! Only basic equipment provided.
-ent-ReinforcementRadioSyndicateNukeops = { ent-ReinforcementRadioSyndicate }
- .suffix = NukeOps
- .desc = { ent-ReinforcementRadioSyndicate.desc }
-ent-ReinforcementRadioSyndicateAncestor = syndicate genetic ancestor reinforcement radio
- .desc = Calls in a specially trained ancestor of your choosing to assist you.
-ent-ReinforcementRadioSyndicateAncestorNukeops = { ent-ReinforcementRadioSyndicateAncestor }
- .suffix = NukeOps
- .desc = { ent-ReinforcementRadioSyndicateAncestor.desc }
-ent-ReinforcementRadioSyndicateCyborgAssault = syndicate assault cyborg reinforcement radio
- .desc = Call in a well armed assault cyborg, instantly!
- .suffix = NukeOps
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/singularity_beacon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/singularity_beacon.ftl
deleted file mode 100644
index 493a39306ea..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/singularity_beacon.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SingularityBeacon = singularity beacon
- .desc = A syndicate device that attracts the singularity. If it's loose and you're seeing this, run.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/war_declarator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/war_declarator.ftl
deleted file mode 100644
index 712e36c0f64..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/war_declarator.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-NukeOpsDeclarationOfWar = war declarator
- .desc = Use to send a declaration of hostilities to the target, delaying your shuttle departure while they prepare for your assault. Such a brazen move will attract the attention of powerful benefactors within the Syndicate, who will supply your team with a massive amount of bonus telecrystals. Must be used at start of mission, or your benefactors will lose interest.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/bike_horn.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/bike_horn.ftl
deleted file mode 100644
index d6ae2077f86..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/bike_horn.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-BikeHorn = bike horn
- .desc = A horn off of a bicycle.
-ent-CluwneHorn = broken bike horn
- .desc = A broken horn off of a bicycle.
-ent-GoldenBikeHorn = golden honker
- .desc = A happy honk prize, pray to the gods for your reward.
- .suffix = No mapping
-ent-BananiumHorn = bananium horn
- .desc = An air horn made from bananium.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/candy_bucket.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/candy_bucket.ftl
deleted file mode 100644
index 1c623361e28..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/candy_bucket.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CandyBucket = candy bucket
- .desc = A festive bucket for all your treats.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/crayons.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/crayons.ftl
deleted file mode 100644
index 9cfd9980ad7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/crayons.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-Crayon = crayon
- .desc = A colourful crayon. Looks tasty. Mmmm...
-ent-CrayonWhite = white crayon
- .desc = { ent-Crayon.desc }
-ent-CrayonMime = mime crayon
- .desc = { ent-Crayon.desc }
-ent-CrayonRainbow = rainbow crayon
- .desc = { ent-Crayon.desc }
-ent-CrayonBlack = black crayon
- .desc = { ent-Crayon.desc }
-ent-CrayonRed = red crayon
- .desc = { ent-Crayon.desc }
-ent-CrayonOrange = orange crayon
- .desc = { ent-Crayon.desc }
-ent-CrayonYellow = yellow crayon
- .desc = { ent-Crayon.desc }
-ent-CrayonGreen = green crayon
- .desc = { ent-Crayon.desc }
-ent-CrayonBlue = blue crayon
- .desc = { ent-Crayon.desc }
-ent-CrayonPurple = purple crayon
- .desc = { ent-Crayon.desc }
-ent-CrayonBox = crayon box
- .desc = It's a box of crayons.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/darts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/darts.ftl
deleted file mode 100644
index 5373d3d20c1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/darts.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-Dart = dart
- .desc = light throwing dart for playing darts. Don't get in the eye!
-ent-DartBlue = { ent-Dart }
- .desc = { ent-Dart.desc }
-ent-DartPurple = { ent-Dart }
- .desc = { ent-Dart.desc }
-ent-DartYellow = { ent-Dart }
- .desc = { ent-Dart.desc }
-ent-HypoDart = { ent-Dart }
- .suffix = HypoDart
- .desc = { ent-Dart.desc }
-ent-TargetDarts = dartboard
- .desc = A target for playing darts.
-ent-HypoDartBox = hypodart box
- .desc = A small box containing an hypodart. Packaging disintegrates when opened, leaving no evidence behind.
- .suffix = HypoDart
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/dice.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/dice.ftl
deleted file mode 100644
index 8a02d492b7a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/dice.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-BaseDice = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-PercentileDie = percentile die
- .desc = A die with ten sides. Works better for d100 rolls than a golf ball.
-ent-d20Dice = d20
- .desc = A die with twenty sides. The preferred die to throw at the GM.
-ent-d12Dice = d12
- .desc = A die with twelve sides. There's an air of neglect about it.
-ent-d10Dice = d10
- .desc = A die with ten sides. Useful for percentages.
-ent-d8Dice = d8
- .desc = A die with eight sides. It feels... lucky.
-ent-d6Dice = d6
- .desc = A die with six sides. Basic and serviceable.
-ent-d4Dice = d4
- .desc = A die with four sides. The nerd's caltrop.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/dice_bag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/dice_bag.ftl
deleted file mode 100644
index 54f9f15410a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/dice_bag.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-DiceBag = bag of dice
- .desc = Contains all the luck you'll ever need.
-ent-MagicDiceBag = bag of dice
- .desc = { ent-DiceBag.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/error.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/error.ftl
deleted file mode 100644
index fd39fa655ad..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/error.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Error = error
- .desc = Hmmmm. Something went wrong.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/figurine_boxes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/figurine_boxes.ftl
deleted file mode 100644
index aaa68fe1110..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/figurine_boxes.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-MysteryFigureBoxTrash = unfolded cardboard box
- .desc = A small, unfolded cardboard toy box.
-ent-MysteryFigureBox = mystery spacemen minifigure box
- .desc = A box containing a mystery minifigure. The side of the box depicts a few blacked-out 'rare' figures, including one with a large, non-humanoid shilouette.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/figurines.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/figurines.ftl
deleted file mode 100644
index 174f75dad60..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/figurines.ftl
+++ /dev/null
@@ -1,100 +0,0 @@
-ent-BaseFigurine = figurine
- .desc = A small miniature.
-ent-ToyFigurineHeadOfPersonnel = head of personnel figure
- .desc = A figurine depicting the glorious head of all personnel, away from their office as usual.
-ent-ToyFigurinePassenger = passenger figure
- .desc = A figurine depicting an every day, run-of-the-mill passenger. No funny business here.
-ent-ToyFigurineGreytider = greytider figure
- .desc = A figurine depicting a dubious-looking passenger. Greytide worldwide!
-ent-ToyFigurineClown = clown figure
- .desc = A figurine depicting a clown. You shudder to think of what people have probably done to this figurine before.
-ent-ToyFigurineHoloClown = holoclown figure
- .desc = A figurine depicting a holoclown. Even more annoying than a clown and no less real.
-ent-ToyFigurineMime = mime figure
- .desc = A figurine depicting that silent bastard you are all too familiar with.
-ent-ToyFigurineMusician = musician figure
- .desc = A figurine depicting a Musician, his music was electrifying.
-ent-ToyFigurineBoxer = boxer figure
- .desc = A figurine depicting a Boxer holding their red gloves.
-ent-ToyFigurineCaptain = captain figure
- .desc = A figurine depicting the standard outfit of a captain belonging to a civilian-sector Nanotrasen vessel.
-ent-ToyFigurineHeadOfSecurity = head of security figure
- .desc = A figurine depicting the glorious head of the Security department.
-ent-ToyFigurineWarden = warden figure
- .desc = A figurine depicting a Warden, ready to jail someone at any moment.
-ent-ToyFigurineDetective = detective figure
- .desc = A figurine depicting a Detective wearing their iconic trench coat.
-ent-ToyFigurineSecurity = security officer figure
- .desc = A figurine depicting a Security Officer holding a stunbaton, ready to defend the station.
-ent-ToyFigurineLawyer = lawyer figure
- .desc = A figurine depicting a Lawyer sporting a freshly tailored suit.
-ent-ToyFigurineCargoTech = cargo technican figure
- .desc = A figurine depicting a reptillian Cargo Technican.
-ent-ToyFigurineSalvage = salvage specialist figure
- .desc = A figurine depicting a Salvage Specialist holding a survival knife.
-ent-ToyFigurineQuartermaster = quartermaster figure
- .desc = A figurine depicting the glorious head of the Cargo department.
-ent-ToyFigurineChiefEngineer = chief engineer figure
- .desc = A figurine depicting the glorious head of the Engineering department.
-ent-ToyFigurineEngineer = station engineer figure
- .desc = A figurine depicting a Station Engineer holding a crowbar at-ready.
-ent-ToyFigurineAtmosTech = atmospheric technician figure
- .desc = A figurine depicting an Atmos Tech holding an unlit welder.
-ent-ToyFigurineResearchDirector = research director figure
- .desc = A figurine depicting the glorious head of the Science department.
-ent-ToyFigurineScientist = scientist figurine
- .desc = A figurine depicting a Scientist donning a labcoat.
-ent-ToyFigurineChiefMedicalOfficer = chief medical officer figure
- .desc = A figurine depicting the glorious head of the Medical department.
-ent-ToyFigurineChemist = chemist figure
- .desc = A figurine depicting a Chemist probably planning to make meth.
-ent-ToyFigurineParamedic = paramedic figure
- .desc = A figurine depicting a Paramedic wearing their void suit.
-ent-ToyFigurineMedicalDoctor = medical doctor figure
- .desc = A figurine depicting a Medical Doctor, donning a labcoat & syringe.
-ent-ToyFigurineLibrarian = librarian figure
- .desc = A figurine depicting the one-and-only librarian.
-ent-ToyFigurineChaplain = chaplain figure
- .desc = A figurine depicting a Chaplain hopefully praying for good things.
-ent-ToyFigurineChef = chef figure
- .desc = A figurine depicting a chef, master of the culinary arts!.. most of the time.
-ent-ToyFigurineBartender = bartender figure
- .desc = A figurine depicting a Bartender looking stylish with their rockin shades and tophat.
-ent-ToyFigurineBotanist = botanist figure
- .desc = A figurine depicting a Botanist that surely won't let kudzu get out of control.
-ent-ToyFigurineJanitor = janitor figure
- .desc = A figurine depicting a Janitor with their galoshes.
-ent-ToyFigurineNukie = syndicate operative figure
- .desc = A figurine depicting someone in a blood-red hardsuit, similar to what someone on a nuclear operative team might wear.
-ent-ToyFigurineNukieElite = elite syndicate operative figure
- .desc = A figurine depicting someone in an elite blood-red hardsuit, similar to what someone on a nuclear operative team might wear.
-ent-ToyFigurineNukieCommander = syndicate operative commander figure
- .desc = A figurine depicting someone in a beefed-up blood-red hardsuit, similar to what the commander of a nuclear operative team might wear.
-ent-ToyFigurineFootsoldier = syndicate footsoldier figure
- .desc = A figurine depicting the outfit of a syndicate footsoldier.
-ent-ToyFigurineWizard = wizard figure
- .desc = A figurine depicting someone with a long, silky beard wearing a wizard outfit. Warlocks wish they had anything on this.
-ent-ToyFigurineWizardFake = fake wizard figure
- .desc = A figurine depicting someone in a fake-ass wizard costume. What a ripoff!
-ent-ToyFigurineSpaceDragon = space dragon figure
- .desc = A large figurine depicting a space dragon, its red eyes on gazing on its prey.
-ent-ToyFigurineQueen = xeno queen figure
- .desc = A large figurine depicting a xeno queen, ready to attack.
-ent-ToyFigurineRatKing = rat king figure
- .desc = A large figurine depicting a rat king, prepared to make its nest.
-ent-ToyFigurineRatServant = rat servant figure
- .desc = A figurine depicting a rat serving the king of rats!
-ent-ToyFigurineMouse = mouse figure
- .desc = A figurine depicting a mouse scuttling away to the nearest piece of food.
-ent-ToyFigurineSlime = slime figure
- .desc = A figurine depicting a translucent blue slime.
-ent-ToyFigurineHamlet = hamlet figure
- .desc = A figurine depicting Hamlet, microwave not included.
-ent-ToyGriffin = griffin figure
- .desc = An action figure modeled after 'The Griffin', criminal mastermind.
-ent-ToyOwlman = owl figure
- .desc = An action figure modeled after 'The Owl', defender of justice.
-ent-ToySkeleton = skeleton figure
- .desc = Spooked ya!
-ent-ToyFigurineThief = thief character figure
- .desc = Hiding in the shadows...
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/immovable_rod.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/immovable_rod.ftl
deleted file mode 100644
index 6524297c2fc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/immovable_rod.ftl
+++ /dev/null
@@ -1,31 +0,0 @@
-ent-ImmovableRod = immovable rod
- .desc = You can sense that it's hungry. That's usually a bad sign.
-ent-ImmovableRodDespawn = { ent-ImmovableRod }
- .suffix = Despawn
- .desc = { ent-ImmovableRod.desc }
-ent-ImmovableRodSlow = { ent-ImmovableRodDespawn }
- .suffix = Slow
- .desc = { ent-ImmovableRodDespawn.desc }
-ent-ImmovableRodKeepTiles = { ent-ImmovableRodDespawn }
- .suffix = Keep Tiles
- .desc = { ent-ImmovableRodDespawn.desc }
-ent-ImmovableRodWizard = { ent-ImmovableRod }
- .suffix = Wizard
- .desc = { ent-ImmovableRod.desc }
-ent-ImmovableRodKeepTilesStill = { ent-ImmovableRodKeepTiles }
- .suffix = Keep Tiles, Still
- .desc = { ent-ImmovableRodKeepTiles.desc }
-ent-ImmovableRodMop = immovable mop
- .desc = Hurled like a javelin, with the power of a thousand furious janitors.
-ent-ImmovableRodShark = immovable shark
- .desc = SHARK TORNADO!
-ent-ImmovableRodClown = immovable clown
- .desc = Ejected from the neighbouring station one solar system over. HONK!
-ent-ImmovableRodBanana = immovable banana
- .desc = At least you won't slip on it.
-ent-ImmovableRodHammer = immovable hammer
- .desc = Bwoink.
-ent-ImmovableRodThrongler = immovable throngler
- .desc = If you catch it, you can keep it.
-ent-ImmovableRodGibstick = immovable gibstick
- .desc = What did you expect?
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments.ftl
deleted file mode 100644
index 04c63364428..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments.ftl
+++ /dev/null
@@ -1,60 +0,0 @@
-ent-BaseHandheldInstrument = { ent-BaseItem }
- .desc = That's an instrument.
- .suffix = { "" }
-ent-SynthesizerInstrument = synthesizer
- .desc = { ent-BaseHandheldInstrument.desc }
- .suffix = { "" }
-ent-AcousticGuitarInstrument = acoustic guitar
- .desc = Anyway, here's Wonderwall.
- .suffix = { "" }
-ent-ViolinInstrument = violin
- .desc = { ent-BaseHandheldInstrument.desc }
- .suffix = { "" }
-ent-TrumpetInstrument = trumpet
- .desc = The favorite instrument of jazz musicians and egotistical middle schoolers.
- .suffix = { "" }
-ent-GunpetInstrument = gunpet
- .desc = Why do you need to examine this? Is it not self-explanatory?
- .suffix = { "" }
-ent-ElectricGuitarInstrument = electric guitar
- .desc = { ent-BaseHandheldInstrument.desc }
- .suffix = { "" }
-ent-AccordionInstrument = accordion
- .desc = { ent-BaseHandheldInstrument.desc }
- .suffix = { "" }
-ent-HarmonicaInstrument = harmonica
- .desc = { ent-BaseHandheldInstrument.desc }
- .suffix = { "" }
-ent-RecorderInstrument = recorder
- .desc = { ent-BaseHandheldInstrument.desc }
- .suffix = { "" }
-ent-TromboneInstrument = trombone
- .desc = Everyone's favorite sliding brass instrument.
- .suffix = { "" }
-ent-EuphoniumInstrument = euphonium
- .desc = A baby tuba? A Baritone? Whatever it is, it's a pretty cool mess of pipes.
- .suffix = { "" }
-ent-FrenchHornInstrument = french horn
- .desc = The fact that holding it involves using your hand to muffle it may suggest something about its sound.
- .suffix = { "" }
-ent-SaxophoneInstrument = saxophone
- .desc = An instrument. You could probably grind this into raw jazz.
- .suffix = { "" }
-ent-GlockenspielInstrument = glockenspiel
- .desc = { ent-BaseHandheldInstrument.desc }
- .suffix = { "" }
-ent-BanjoInstrument = banjo
- .desc = { ent-BaseHandheldInstrument.desc }
- .suffix = { "" }
-ent-BikeHornInstrument = gilded bike horn
- .desc = An exquisitely decorated bike horn, capable of honking in a variety of notes.
- .suffix = { "" }
-ent-SuperSynthesizerInstrument = super synthesizer
- .desc = Blasting the ghetto with Touhou MIDIs since 2020.
- .suffix = { "" }
-ent-XylophoneInstrument = xylophone
- .desc = Rainbow colored glockenspiel.
- .suffix = { "" }
-ent-PhoneInstrument = red phone
- .desc = Should anything ever go wrong...
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/base_instruments.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/base_instruments.ftl
deleted file mode 100644
index 2b941f6ec88..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/base_instruments.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseHandheldInstrument = { ent-BaseItem }
- .desc = That's an instrument.
-ent-BasePlaceableInstrument = baseinstrument
- .desc = { ent-BaseStructureDynamic.desc }
-ent-BasePlaceableInstrumentRotatable = baseinstrumentrotatable
- .desc = { ent-BasePlaceableInstrument.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_brass.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_brass.ftl
deleted file mode 100644
index 639f7a26b2f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_brass.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-TrumpetInstrument = trumpet
- .desc = The favorite instrument of jazz musicians and egotistical middle schoolers.
-ent-TromboneInstrument = trombone
- .desc = Everyone's favorite sliding brass instrument.
-ent-FrenchHornInstrument = french horn
- .desc = The fact that holding it involves using your hand to muffle it may suggest something about its sound.
-ent-EuphoniumInstrument = euphonium
- .desc = A baby tuba? A Baritone? Whatever it is, it's a pretty cool mess of pipes.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_misc.ftl
deleted file mode 100644
index 7df8fd1ff26..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_misc.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-MusicalLungInstrument = musical lung
- .desc = The spiritual and magical lung of a former opera singer. Though, to be honest, the vocal chords make the performance.
-ent-SeashellInstrument = seashell
- .desc = For laying down the shoreline beat.
-ent-BirdToyInstrument = bird whistle
- .desc = A delightful little whistle in the shape of a bird. It sings beautifully.
-ent-PhoneInstrument = red phone
- .desc = Should anything ever go wrong...
-ent-PhoneInstrumentSyndicate = blood-red phone
- .desc = For evil people to call their friends.
-ent-HelicopterInstrument = toy helicopter
- .desc = Ch-ka-ch-ka-ch-ka-ch-ka-ch-ka-ch-ka...
-ent-CannedApplauseInstrument = canned applause
- .desc = Seems like someone already used it all up...
-ent-GunpetInstrument = gunpet
- .desc = Why do you need to examine this? Is it not self-explanatory?
-ent-BikeHornInstrument = gilded bike horn
- .desc = An exquisitely decorated bike horn, capable of honking in a variety of notes.
-ent-BananaPhoneInstrument = banana phone
- .desc = A direct line to the Honkmother. Seems to always go to voicemail.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_percussion.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_percussion.ftl
deleted file mode 100644
index 49e4df3a620..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_percussion.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-GlockenspielInstrument = glockenspiel
- .desc = { ent-BaseHandheldInstrument.desc }
-ent-MusicBoxInstrument = music box
- .desc = Playing this makes you feel safe from scary animatronics.
-ent-XylophoneInstrument = xylophone
- .desc = Rainbow colored glockenspiel.
-ent-MicrophoneInstrument = microphone
- .desc = Perfect for singing your heart out.
-ent-SynthesizerInstrument = synthesizer
- .desc = { ent-BaseHandheldInstrument.desc }
-ent-KalimbaInstrument = kalimba
- .desc = The power of a piano right at your thumbs.
-ent-WoodblockInstrument = woodblock
- .desc = If you listen to this enough it'll start driving itself into your mind.
-ent-ReverseCymbalsInstrument = reverse cymbals
- .desc = I think you have it the wrong way around?
-ent-SuperSynthesizerInstrument = super synthesizer
- .desc = Blasting the ghetto with Touhou MIDIs since 2020.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_string.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_string.ftl
deleted file mode 100644
index 52df4275a0c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_string.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-ElectricGuitarInstrument = electric guitar
- .desc = Now this makes you feel like a rock star!
-ent-BassGuitarInstrument = bass guitar
- .desc = You feel really cool holding this. Shame you're the only one that thinks that.
-ent-RockGuitarInstrument = rock guitar
- .desc = What an axe!
-ent-AcousticGuitarInstrument = acoustic guitar
- .desc = Anyway, here's Wonderwall.
-ent-GuitarlessFretsInstrument = guitarless frets
- .desc = who even needs a body?
- .suffix = Admeme
-ent-BanjoInstrument = banjo
- .desc = { ent-BaseHandheldInstrument.desc }
-ent-ViolinInstrument = violin
- .desc = The favorite of musical virtuosos and bluegrass bands.
-ent-ViolaInstrument = viola
- .desc = Like a violin, but worse.
-ent-CelloInstrument = cello
- .desc = The nerds call these violoncellos.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_structures.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_structures.ftl
deleted file mode 100644
index 7e7205e4f62..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_structures.ftl
+++ /dev/null
@@ -1,26 +0,0 @@
-ent-PianoInstrument = piano
- .desc = Play Needles Piano Now.
-ent-UprightPianoInstrument = upright piano
- .desc = I said Piannie!
-ent-VibraphoneInstrument = vibraphone
- .desc = Good vibes all around.
-ent-MarimbaInstrument = marimba
- .desc = { ent-BasePlaceableInstrumentRotatable.desc }
-ent-ChurchOrganInstrument = church organ
- .desc = This thing really blows!
-ent-TubaInstrument = tuba
- .desc = The big daddy of the brass family. Standing next to its majesty makes you feel insecure.
-ent-HarpInstrument = harp
- .desc = Plucking at the strings cuts your fingers, but at least the music is pretty.
-ent-TimpaniInstrument = timpani
- .desc = It goes BOOM BOOM BOOM BOOM!
-ent-TaikoInstrument = taiko
- .desc = A large drum. Looking at it fills you with the urge to slap it.
-ent-ContrabassInstrument = contrabass
- .desc = Perfect for laying down a nice jazzy beat.
-ent-MinimoogInstrument = minimoog
- .desc = This is a minimoog, like a space piano, but more spacey!
-ent-TomDrumsInstrument = tom drums
- .desc = Where'd the rest of the kit go?
-ent-DawInstrument = digital audio workstation
- .desc = Cutting edge music technology, straight from the 90s.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_wind.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_wind.ftl
deleted file mode 100644
index df20fbdc1de..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/instruments/instruments_wind.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-SaxophoneInstrument = saxophone
- .desc = An instrument. You could probably grind this into raw jazz.
-ent-AccordionInstrument = accordion
- .desc = { ent-BaseHandheldInstrument.desc }
-ent-HarmonicaInstrument = harmonica
- .desc = { ent-BaseHandheldInstrument.desc }
-ent-ClarinetInstrument = clarinet
- .desc = Skweedward tintacklays.
-ent-FluteInstrument = flute
- .desc = Reaching new heights of being horrifyingly shrill.
-ent-RecorderInstrument = recorder
- .desc = Comes in various colors of fashionable plastic!
-ent-PanFluteInstrument = pan flute
- .desc = Perfect for luring ancient mythical beings to dance with you.
-ent-OcarinaInstrument = ocarina
- .desc = Good for playing lullabies.
-ent-BagpipeInstrument = bagpipe
- .desc = Pairs nicely with a kilt.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/mech_figurines.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/mech_figurines.ftl
deleted file mode 100644
index 958ca550789..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/mech_figurines.ftl
+++ /dev/null
@@ -1,26 +0,0 @@
-ent-BaseFigurineMech = figurine
- .desc = A small miniature.
-ent-ToyRipley = ripley toy
- .desc = Mini-Mecha action figure! 'Mecha No. 1/12' is written on the back.
-ent-ToyFireRipley = fire ripley
- .desc = Mini-Mecha action figure! 'Mecha No. 2/12' is written on the back.
-ent-ToyDeathRipley = deathripley toy
- .desc = Mini-Mecha action figure! 'Mecha No. 3/12' is written on the back.
-ent-ToyGygax = gygax toy
- .desc = Mini-Mecha action figure! 'Mecha No. 4/12' is written on the back.
-ent-ToyDurand = durand toy
- .desc = Mini-Mecha action figure! 'Mecha No. 5/12' is written on the back.
-ent-ToyHonk = H.O.N.K. toy
- .desc = Mini-Mecha action figure! 'Mecha No. 6/12' is written on the back.
-ent-ToyMarauder = marauder toy
- .desc = Mini-Mecha action figure! 'Mecha No. 7/12' is written on the back.
-ent-ToySeraph = seraph toy
- .desc = Mini-Mecha action figure! 'Mecha No. 8/12' is written on the back.
-ent-ToyMauler = mauler toy
- .desc = Mini-Mecha action figure! 'Mecha No. 9/12' is written on the back.
-ent-ToyOdysseus = odysseus toy
- .desc = Mini-Mecha action figure! 'Mecha No. 10/12' is written on the back.
-ent-ToyPhazon = phazon toy
- .desc = Mini-Mecha action figure! 'Mecha No. 11/12' is written on the back.
-ent-ToyReticence = reticence toy
- .desc = Mini-Mecha action figure! 'Mecha No. 12/12' is written on the back.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/pai.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/pai.ftl
deleted file mode 100644
index 02c8da8fee5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/pai.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-PersonalAI = personal ai device
- .desc = Your electronic pal who's fun to be with!
-ent-SyndicatePersonalAI = syndicate personal ai device
- .desc = Your Syndicate pal who's fun to be with!
-ent-PotatoAI = potato artificial intelligence
- .desc = It's a potato. You forced it to be sentient, you monster.
-ent-ActionPAIPlayMidi = Play MIDI
- .desc = Open your portable MIDI interface to soothe your owner.
-ent-ActionPAIOpenMap = Open Map
- .desc = Open your map interface and guide your owner.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/puppet.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/puppet.ftl
deleted file mode 100644
index b394a0b430f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/puppet.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-MrChips = mr chips
- .desc = It's a dummy, dummy!
- .suffix = Dummy
-ent-MrDips = mr dips
- .desc = { ent-MrChips.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/skub.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/skub.ftl
deleted file mode 100644
index 01b26ded26f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/skub.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Skub = skub
- .desc = Skub is the fifth Chaos God.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/snap_pops.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/snap_pops.ftl
deleted file mode 100644
index adcac3b5c7c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/snap_pops.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-SnapPop = snap pop
- .desc = Throw it at the floor and listen to it POP!
-ent-SnapPopBox = snap pop box
- .desc = Contains snap pops for a few minutes of popping fun!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/spray_paint.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/spray_paint.ftl
deleted file mode 100644
index 555518d255e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/spray_paint.ftl
+++ /dev/null
@@ -1,31 +0,0 @@
-ent-PaintBase = spray paint
- .desc = A tin of spray paint.
-ent-FunnyPaint = funny paint
- .desc = A tin of funny paint, manufactured by Honk! Co.
-ent-FunnyPaintYellow = funny paint
- .desc = A tin of funny paint, manufactured by Honk! Co.
-ent-DeathPaint = { ent-PaintBase }
- .desc = { ent-PaintBase.desc }
-ent-DeathPaintTwo = { ent-PaintBase }
- .desc = { ent-PaintBase.desc }
-ent-SprayPaintBlue = { ent-PaintBase }
- .suffix = Blue
- .desc = { ent-PaintBase.desc }
-ent-SprayPaintRed = { ent-PaintBase }
- .suffix = Red
- .desc = { ent-PaintBase.desc }
-ent-SprayPaintGreen = { ent-PaintBase }
- .suffix = Green
- .desc = { ent-PaintBase.desc }
-ent-SprayPaintBlack = { ent-PaintBase }
- .suffix = Black
- .desc = { ent-PaintBase.desc }
-ent-SprayPaintOrange = { ent-PaintBase }
- .suffix = Orange
- .desc = { ent-PaintBase.desc }
-ent-SprayPaintPurple = { ent-PaintBase }
- .suffix = Purple
- .desc = { ent-PaintBase.desc }
-ent-SprayPaintWhite = { ent-PaintBase }
- .suffix = White
- .desc = { ent-PaintBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/backgammon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/backgammon.ftl
deleted file mode 100644
index 4e2bc82ac29..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/backgammon.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BackgammonBoard = backgammon board
- .desc = Old fashioned game of dice and pieces.
-ent-BackgammonBoardTabletop = backgammon
- .desc = { ent-BaseBoardTabletop.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/base.ftl
deleted file mode 100644
index 2b48aadcf35..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/base.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseBoardEntity = board
- .desc = A blank board.
-ent-BaseTabletopPiece = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-BaseBoardTabletop = baseboard
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/checkers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/checkers.ftl
deleted file mode 100644
index 9935181f561..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/checkers.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-CheckerBoard = checkerboard
- .desc = A checkerboard. Pieces included!
-ent-CheckerBoardTabletop = checkerboard
- .desc = { ent-BaseBoardTabletop.desc }
-ent-CheckerPieceWhite = white checker piece
- .desc = { ent-BaseTabletopPiece.desc }
-ent-CheckerCrownWhite = white checker crown
- .desc = { ent-BaseTabletopPiece.desc }
-ent-CheckerPieceBlack = black checker piece
- .desc = { ent-BaseTabletopPiece.desc }
-ent-CheckerCrownBlack = black checker crown
- .desc = { ent-BaseTabletopPiece.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/chess.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/chess.ftl
deleted file mode 100644
index 1c35741d383..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/chess.ftl
+++ /dev/null
@@ -1,28 +0,0 @@
-ent-ChessBoard = chessboard
- .desc = A chessboard. Pieces included!
-ent-ChessBoardTabletop = chessboard
- .desc = { ent-BaseBoardTabletop.desc }
-ent-WhiteKing = white king
- .desc = { ent-BaseTabletopPiece.desc }
-ent-WhiteQueen = white queen
- .desc = { ent-BaseTabletopPiece.desc }
-ent-WhiteRook = white rook
- .desc = { ent-BaseTabletopPiece.desc }
-ent-WhiteBishop = white bishop
- .desc = { ent-BaseTabletopPiece.desc }
-ent-WhiteKnight = white knight
- .desc = { ent-BaseTabletopPiece.desc }
-ent-WhitePawn = white pawn
- .desc = { ent-BaseTabletopPiece.desc }
-ent-BlackKing = black king
- .desc = { ent-BaseTabletopPiece.desc }
-ent-BlackQueen = black queen
- .desc = { ent-BaseTabletopPiece.desc }
-ent-BlackRook = black rook
- .desc = { ent-BaseTabletopPiece.desc }
-ent-BlackBishop = black bishop
- .desc = { ent-BaseTabletopPiece.desc }
-ent-BlackKnight = black knight
- .desc = { ent-BaseTabletopPiece.desc }
-ent-BlackPawn = black pawn
- .desc = { ent-BaseTabletopPiece.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/dnd.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/dnd.ftl
deleted file mode 100644
index b14fb1e0277..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/dnd.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-BaseBattlemap = battlemap
- .desc = A battlemap for your epic dungeon exploring to begin, pieces not included!
-ent-GrassBattlemap = grass battlemap
- .desc = A battlemap for your epic dungeon exploring to begin, pieces not included!
-ent-MoonBattlemap = moon battlemap
- .desc = A battlemap for your epic moon exploring to begin, pieces not included!
-ent-SandBattlemap = sand battlemap
- .desc = A battlemap for your epic beach episodes to begin, pieces not included!
-ent-SnowBattlemap = snow battlemap
- .desc = A battlemap for your frigid exploring to begin, pieces not included!
-ent-ShipBattlemap = ship battlemap
- .desc = A battlemap for your epic space exploring to begin, pieces not included!
-ent-GrassBoardTabletop = grass battlemap
- .desc = { ent-BaseBoardTabletop.desc }
-ent-MoonBoardTabletop = grass battlemap
- .desc = { ent-BaseBoardTabletop.desc }
-ent-SandBoardTabletop = sand battlemap
- .desc = { ent-BaseBoardTabletop.desc }
-ent-SnowBoardTabletop = snow battlemap
- .desc = { ent-BaseBoardTabletop.desc }
-ent-ShipBoardTabletop = ship battlemap
- .desc = { ent-BaseBoardTabletop.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/parchis.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/parchis.ftl
deleted file mode 100644
index eabc1fec67a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/parchis.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ParchisBoard = parchís board
- .desc = Cross and circle board game famous for destroying countless friendships.
-ent-ParchisBoardTabletop = parchís
- .desc = { ent-BaseBoardTabletop.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/tabletopGeneric.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/tabletopGeneric.ftl
deleted file mode 100644
index 8f8a3e2a00a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/tabletop/tabletopGeneric.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-BaseGenericTabletopPiece = { ent-BaseTabletopPiece }
- .desc = { ent-BaseTabletopPiece.desc }
-ent-RedTabletopPiece = red piece
- .desc = { ent-BaseGenericTabletopPiece.desc }
-ent-GreenTabletopPiece = green piece
- .desc = { ent-BaseGenericTabletopPiece.desc }
-ent-YellowTabletopPiece = yellow piece
- .desc = { ent-BaseGenericTabletopPiece.desc }
-ent-BlueTabletopPiece = blue piece
- .desc = { ent-BaseGenericTabletopPiece.desc }
-ent-WhiteTabletopPiece = white piece
- .desc = { ent-BaseGenericTabletopPiece.desc }
-ent-BlackTabletopPiece = black piece
- .desc = { ent-BaseGenericTabletopPiece.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/toys.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/toys.ftl
deleted file mode 100644
index a17e7eb0ca9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/toys.ftl
+++ /dev/null
@@ -1,125 +0,0 @@
-ent-BasePlushie = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-PlushieGhost = ghost soft toy
- .desc = The start of your personal GHOST GANG!
-ent-PlushieGhostRevenant = revenant soft toy
- .desc = So soft it almost makes you want to take a nap...
- .suffix = DO NOT MAP
-ent-PlushieBee = bee plushie
- .desc = A cute toy that resembles an even cuter programmer. You'd have to be a monster to grind this up.
-ent-PlushieHampter = hampter plushie
- .desc = A cute stuffed toy that resembles a hamster. Its face looks squished.
-ent-PlushieRGBee = RGBee plushie
- .desc = A cute toy that resembles a bee plushie while you're on LSD.
-ent-PlushieNuke = nukie plushie
- .desc = A stuffed toy that resembles a syndicate nuclear operative. The tag claims operatives to be purely fictitious.
-ent-PlushieRouny = rouny plushie
- .desc = Rouny
-ent-PlushieLamp = lamp plushie
- .desc = A light emitting friend!
-ent-PlushieArachind = arachnid plushie
- .desc = An adorable stuffed toy that resembles an arachnid. It feels silky..
-ent-PlushieLizard = lizard plushie
- .desc = An adorable stuffed toy that resembles a lizardperson. Made by CentCom as a token initiative to combat speciesism in work environments. "Welcome your new colleagues as you do this plush, with open arms!"
-ent-PlushieLizardMirrored = { ent-PlushieLizard }
- .desc = { ent-PlushieLizard.desc }
-ent-PlushieSpaceLizard = space lizard plushie
- .desc = An adorable stuffed toy that resembles a lizardperson in an EVA suit. Made by CentCom as a token initiative to combat speciesism in space environments. "Welcome your new colleges as you do this plush, with open arms!"
-ent-PlushieDiona = diona plushie
- .desc = An adorable stuffed toy that resembles a diona. Love water and cuddles. Do not wet!
-ent-PlushieSharkBlue = blue shark soft toy
- .desc = Big and safe to have by your side if you want to discover the world below the surface of the ocean.
-ent-PlushieSharkPink = pink shark soft toy
- .desc = Hehe shonk :)
-ent-PlushieSharkGrey = grey shark soft toy
- .desc = A quiet, reserved kind of shonk. Loves to ride the grey tide.
-ent-PlushieRatvar = ratvar plushie
- .desc = A small stuffed doll of the elder god Ratvar.
-ent-PlushieNar = nar'sie plushie
- .desc = A small stuffed doll of the elder goddess Nar'Sie.
-ent-PlushieCarp = carp plushie
- .desc = An adorable stuffed toy that resembles the monstrous space carp.
-ent-PlushieMagicarp = magicarp plushie
- .desc = An adorable stuffed toy resembling the exceedingly rare magicarp.
-ent-PlushieRainbowCarp = rainbow carp plushie
- .desc = An adorable stuffed toy resembling the legendary rainbow carp.
-ent-PlushieHolocarp = holocarp plushie
- .desc = A holographic stuffed toy resembling science's nemesis - the holocarp.
-ent-PlushieSlime = slime plushie
- .desc = An adorable stuffed toy that resembles a slime. It's basically a hacky sack.
-ent-PlushieSnake = snake plushie
- .desc = An adorable stuffed toy that resembles a snake.
-ent-ToyMouse = mouse toy
- .desc = A colorful toy mouse!
-ent-ToyRubberDuck = rubber ducky
- .desc = Not carried here by ocean currents.
-ent-PlushieVox = vox plushie
- .desc = SKREEEEEEEEEEEE!
-ent-PlushieAtmosian = atmosian plushie
- .desc = An adorable stuffed toy that resembles a brave atmosian. Unfortunately, he won't fix those depressurizations for you.
-ent-PlushieXeno = xeno plushie
- .desc = An adorable stuffed toy that resembles a scary xenomorf. You're lucky it's just a toy.
-ent-PlushiePenguin = penguin plushie
- .desc = I use arch btw!
-ent-PlushieHuman = human plushie
- .desc = This is a felt plush of a human. All craftsmanship is of the lowest quality. The human is naked. The human is crying. The human is screaming.
-ent-PlushieMoth = moth plushie
- .desc = Cute and fluffy moth plushie. Enjoy, bz!
-ent-BaseFigurineCheapo = figurine
- .desc = A small miniature.
-ent-ToyAi = AI toy
- .desc = A scaled-down toy AI core.
-ent-ToyNuke = nuke toy
- .desc = A plastic model of a Nuclear Fission Explosive. No uranium included... probably.
-ent-ToyIan = ian toy
- .desc = Unable to eat, but just as fluffy as the real guy!
-ent-FoamWeaponBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-FoamCrossbow = foam crossbow
- .desc = Aiming this at Security may get you filled with lead.
-ent-ToyGunBase = ToyGunBase
- .desc = A rooty tooty point and shooty.
-ent-RevolverCapGun = cap gun
- .desc = Looks almost like the real thing! Ages 8 and up.
-ent-RevolverCapGunFake = cap gun
- .desc = Looks almost like the real thing! Ages 8 and up.
- .suffix = Fake
-ent-FoamBlade = foamblade
- .desc = It says "Sternside Changs number 1 fan" on it.
-ent-Basketball = basketball
- .desc = Where dah courts at?
-ent-Football = football
- .desc = Otherwise known as a handegg.
-ent-BeachBall = beach ball
- .desc = The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen
-ent-BalloonSyn = syndie balloon
- .desc = Handed out to the bravest souls who survived the "atomic twister" ride at Syndieland.
-ent-BalloonNT = nanotrasen balloon
- .desc = Specially designed to inflict maximum psychological damage to Syndicate operatives.
-ent-BalloonCorgi = corgi balloon
- .desc = Just like owning a real dog - but a lot floatier.
-ent-SingularityToy = singuloth-brand toy
- .desc = Mass-produced by a sadistic corporate conglomerate!
-ent-TeslaToy = Teddy Tesla
- .desc = The favorite toy of the great engineer Nikola Tesla.
-ent-PonderingOrb = pondering orb
- .desc = Ponderous, man... Really ponderous.
-ent-ToySword = toy sword
- .desc = New Sandy-Cat plastic sword! Comes with realistic sound and full color! Looks almost like the real thing!
-ent-ToyAmongPequeno = among pequeño
- .desc = sus!
-ent-FoamCutlass = foam cutlass
- .desc = Cosplay as a pirate and force your friends to walk the plank.
-ent-ClownRecorder = clown recorder
- .desc = When you just can't get those laughs coming the natural way!
-ent-ToyHammer = rubber hammer
- .desc = A brightly colored hammer made of rubber.
-ent-WhoopieCushion = whoopie cushion
- .desc = A practical joke device involving flatulence humour.
-ent-PlasticBanana = banana
- .desc = A plastic banana.
- .suffix = Plastic
-ent-CrazyGlue = crazy glue
- .desc = A bottle of crazy glue manufactured by Honk! Co.
-ent-NewtonCradle = newton cradle
- .desc = A device bored paper pushers use to remind themselves that time did not stop yet. Contains gravity.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl
deleted file mode 100644
index 9afda65e472..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseWhistle = whistle
- .desc = Someone forgot to turn off kettle?
-ent-Whistle = { ent-BaseWhistle }
- .desc = { ent-BaseWhistle.desc }
-ent-SecurityWhistle = { ent-BaseWhistle }
- .desc = Sound of it make you feel fear.
-ent-SyndicateWhistle = trench whistle
- .desc = A whistle used by Syndicate commanders to draw attention. Avanti!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/magic/books.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/magic/books.ftl
deleted file mode 100644
index b6a3d0a500f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/magic/books.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-BaseSpellbook = spellbook
- .desc = { ent-BaseItem.desc }
-ent-WizardsGrimoire = wizards grimoire
- .suffix = Wizard
- .desc = { ent-BaseItem.desc }
-ent-WizardsGrimoireNoRefund = wizards grimoire
- .suffix = Wizard, No Refund
- .desc = { ent-WizardsGrimoire.desc }
-ent-SpawnSpellbook = spawn spellbook
- .desc = { ent-BaseSpellbook.desc }
-ent-ForceWallSpellbook = force wall spellbook
- .desc = { ent-BaseSpellbook.desc }
-ent-BlinkBook = blink spellbook
- .desc = { ent-BaseSpellbook.desc }
-ent-SmiteBook = smite spellbook
- .desc = { ent-BaseSpellbook.desc }
-ent-KnockSpellbook = knock spellbook
- .desc = { ent-BaseSpellbook.desc }
-ent-FireballSpellbook = fireball spellbook
- .desc = { ent-BaseSpellbook.desc }
-ent-ScrollRunes = scroll of runes
- .desc = { ent-BaseSpellbook.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/crystal_shard.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/crystal_shard.ftl
deleted file mode 100644
index 70c4fabdf9e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/crystal_shard.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-ShardCrystalBase = crystal shard
- .desc = A small piece of crystal.
-ent-ShardCrystalCyan = cyan crystal shard
- .desc = A small piece of crystal.
-ent-ShardCrystalBlue = blue crystal shard
- .desc = { ent-ShardCrystalBase.desc }
-ent-ShardCrystalOrange = orange crystal shard
- .desc = { ent-ShardCrystalBase.desc }
-ent-ShardCrystalPink = pink crystal shard
- .desc = { ent-ShardCrystalBase.desc }
-ent-ShardCrystalGreen = green crystal shard
- .desc = { ent-ShardCrystalBase.desc }
-ent-ShardCrystalRed = red crystal shard
- .desc = { ent-ShardCrystalBase.desc }
-ent-ShardCrystalRandom = random crystal shard
- .desc = { ent-ShardCrystalBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ingots.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ingots.ftl
deleted file mode 100644
index 2ea6f8c2a62..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ingots.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-IngotBase = { ent-BaseItem }
- .desc = A heavy metal ingot stamped with the Nanotrasen logo.
-ent-IngotGold = gold bar
- .suffix = Full
- .desc = { ent-IngotBase.desc }
-ent-IngotGold1 = gold bar
- .suffix = Single
- .desc = { ent-IngotGold.desc }
-ent-IngotSilver = silver bar
- .suffix = Full
- .desc = { ent-IngotBase.desc }
-ent-IngotSilver1 = silver bar
- .suffix = Single
- .desc = { ent-IngotSilver.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/materials.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/materials.ftl
deleted file mode 100644
index 57af2d1777a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/materials.ftl
+++ /dev/null
@@ -1,86 +0,0 @@
-ent-MaterialBase = { ent-BaseItem }
- .desc = A raw material.
-ent-MaterialCardboard = cardboard
- .suffix = Full
- .desc = { ent-MaterialBase.desc }
-ent-MaterialCardboard10 = { ent-MaterialCardboard }
- .suffix = 10
- .desc = { ent-MaterialCardboard.desc }
-ent-MaterialCardboard1 = { ent-MaterialCardboard }
- .suffix = Single
- .desc = { ent-MaterialCardboard.desc }
-ent-MaterialCloth = cloth
- .suffix = Full
- .desc = { ent-MaterialBase.desc }
-ent-MaterialCloth10 = { ent-MaterialCloth }
- .suffix = 10
- .desc = { ent-MaterialCloth.desc }
-ent-MaterialCloth1 = { ent-MaterialCloth }
- .suffix = Single
- .desc = { ent-MaterialCloth.desc }
-ent-MaterialDurathread = durathread
- .suffix = Full
- .desc = { ent-MaterialBase.desc }
-ent-MaterialDurathread1 = { ent-MaterialDurathread }
- .suffix = Single
- .desc = { ent-MaterialDurathread.desc }
-ent-MaterialWoodPlank = wood
- .suffix = Full
- .desc = { ent-MaterialBase.desc }
-ent-MaterialWoodPlank10 = { ent-MaterialWoodPlank }
- .suffix = 10
- .desc = { ent-MaterialWoodPlank.desc }
-ent-MaterialWoodPlank1 = { ent-MaterialWoodPlank }
- .suffix = Single
- .desc = { ent-MaterialWoodPlank.desc }
-ent-MaterialBiomass = biomass
- .suffix = Full
- .desc = { ent-MaterialBase.desc }
-ent-MaterialBiomass1 = { ent-MaterialBiomass }
- .suffix = Single
- .desc = { ent-MaterialBiomass.desc }
-ent-MaterialHideBear = bear hide
- .desc = { ent-MaterialBase.desc }
-ent-MaterialHideCorgi = corgi hide
- .desc = Luxury pelt used in only the most elite fashion. Rumors say this is found when a corgi is sent to the nice farm.
-ent-MaterialDiamond = refined diamond
- .suffix = Full
- .desc = { ent-MaterialBase.desc }
-ent-MaterialDiamond1 = { ent-MaterialDiamond }
- .suffix = Single
- .desc = { ent-MaterialDiamond.desc }
-ent-MaterialCotton = cotton
- .suffix = Full
- .desc = { ent-MaterialBase.desc }
-ent-MaterialCotton1 = { ent-MaterialCotton }
- .suffix = Single
- .desc = { ent-MaterialCotton.desc }
-ent-MaterialPyrotton = pyrotton
- .suffix = Full
- .desc = { ent-MaterialBase.desc }
-ent-MaterialPyrotton1 = { ent-MaterialPyrotton }
- .suffix = Single
- .desc = { ent-MaterialPyrotton.desc }
-ent-MaterialBananium = bananium
- .suffix = Full
- .desc = { ent-MaterialBase.desc }
-ent-MaterialBananium1 = { ent-MaterialBananium }
- .suffix = Single
- .desc = { ent-MaterialBananium.desc }
-ent-MaterialWebSilk = silk
- .desc = A webby material.
- .suffix = Full
-ent-MaterialWebSilk25 = { ent-MaterialWebSilk }
- .suffix = 25
- .desc = { ent-MaterialWebSilk.desc }
-ent-MaterialWebSilk1 = { ent-MaterialWebSilk }
- .suffix = 1
- .desc = { ent-MaterialWebSilk.desc }
-ent-MaterialBones = bones
- .suffix = Full
- .desc = { ent-MaterialBase.desc }
-ent-MaterialBones1 = { ent-MaterialBones }
- .suffix = 1
- .desc = { ent-MaterialBones.desc }
-ent-MaterialGunpowder = gunpowder
- .desc = An explosive compound.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl
deleted file mode 100644
index 261704b81e4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl
+++ /dev/null
@@ -1,56 +0,0 @@
-ent-OreBase = { ent-BaseItem }
- .desc = A piece of unrefined ore.
-ent-GoldOre = gold ore
- .suffix = Full
- .desc = { ent-OreBase.desc }
-ent-GoldOre1 = { ent-GoldOre }
- .suffix = Single
- .desc = { ent-GoldOre.desc }
-ent-SteelOre = iron ore
- .suffix = Full
- .desc = { ent-OreBase.desc }
-ent-SteelOre1 = { ent-SteelOre }
- .suffix = Single
- .desc = { ent-SteelOre.desc }
-ent-PlasmaOre = plasma ore
- .suffix = Full
- .desc = { ent-OreBase.desc }
-ent-PlasmaOre1 = { ent-PlasmaOre }
- .suffix = Single
- .desc = { ent-PlasmaOre.desc }
-ent-SilverOre = silver ore
- .suffix = Full
- .desc = { ent-OreBase.desc }
-ent-SilverOre1 = { ent-SilverOre }
- .suffix = Single
- .desc = { ent-SilverOre.desc }
-ent-SpaceQuartz = space quartz
- .suffix = Full
- .desc = { ent-OreBase.desc }
-ent-SpaceQuartz1 = { ent-SpaceQuartz }
- .suffix = Single
- .desc = { ent-SpaceQuartz.desc }
-ent-UraniumOre = uranium ore
- .suffix = Full
- .desc = { ent-OreBase.desc }
-ent-UraniumOre1 = { ent-UraniumOre }
- .suffix = Single
- .desc = { ent-UraniumOre.desc }
-ent-BananiumOre = bananium ore
- .suffix = Full
- .desc = { ent-OreBase.desc }
-ent-BananiumOre1 = { ent-BananiumOre }
- .suffix = Single
- .desc = { ent-BananiumOre.desc }
-ent-Coal = coal
- .suffix = Full
- .desc = { ent-OreBase.desc }
-ent-Coal1 = { ent-Coal }
- .suffix = Single
- .desc = { ent-Coal.desc }
-ent-SaltOre = salt
- .suffix = Full
- .desc = { ent-OreBase.desc }
-ent-Salt1 = { ent-SaltOre }
- .suffix = Single
- .desc = { ent-SaltOre.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/parts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/parts.ftl
deleted file mode 100644
index 47c45e895aa..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/parts.ftl
+++ /dev/null
@@ -1,17 +0,0 @@
-ent-PartBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-PartRodMetal = metal rod
- .suffix = Full
- .desc = { ent-PartBase.desc }
-ent-PartRodMetal10 = metal rod
- .suffix = 10
- .desc = { ent-PartRodMetal.desc }
-ent-PartRodMetal1 = metal rod
- .suffix = Single
- .desc = { ent-PartRodMetal.desc }
-ent-PartRodMetalLingering0 = { ent-PartRodMetal }
- .suffix = Lingering, 0
- .desc = { ent-PartRodMetal.desc }
-ent-FloorTileItemSteelLingering0 = { ent-FloorTileItemSteel }
- .suffix = Lingering, 0
- .desc = { ent-FloorTileItemSteel.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/shards.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/shards.ftl
deleted file mode 100644
index 787b76f1f78..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/shards.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-ShardBase = { ent-BaseItem }
- .desc = It's a shard of some unknown material.
-ent-ShardGlass = glass shard
- .desc = A small piece of glass.
-ent-ShardGlassReinforced = reinforced glass shard
- .desc = A small piece of reinforced glass.
-ent-ShardGlassPlasma = plasma glass shard
- .desc = A small piece of plasma glass.
-ent-ShardGlassUranium = uranium glass shard
- .desc = A small piece of uranium glass.
-ent-ShardGlassClockwork = clockwork glass shard
- .desc = A small piece of brass-infused glass.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/sheets/glass.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/sheets/glass.ftl
deleted file mode 100644
index 82ec64f8e36..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/sheets/glass.ftl
+++ /dev/null
@@ -1,49 +0,0 @@
-ent-SheetGlassBase = glass
- .desc = A sheet of glass, used often on the station in various applications.
-ent-SheetGlass = { ent-SheetGlassBase }
- .suffix = Full
- .desc = { ent-SheetGlassBase.desc }
-ent-SheetGlass10 = { ent-SheetGlass }
- .suffix = 10
- .desc = { ent-SheetGlass.desc }
-ent-SheetGlass1 = { ent-SheetGlass }
- .suffix = Single
- .desc = { ent-SheetGlass.desc }
-ent-SheetGlassLingering0 = { ent-SheetGlass }
- .suffix = Lingering, 0
- .desc = { ent-SheetGlass.desc }
-ent-SheetRGlass = reinforced glass
- .desc = A reinforced sheet of glass.
- .suffix = Full
-ent-SheetRGlass1 = reinforced glass
- .suffix = Single
- .desc = { ent-SheetRGlass.desc }
-ent-SheetPGlass = plasma glass
- .desc = A sheet of translucent plasma.
- .suffix = Full
-ent-SheetPGlass1 = plasma glass
- .suffix = Single
- .desc = { ent-SheetPGlass.desc }
-ent-SheetRPGlass = reinforced plasma glass
- .desc = A reinforced sheet of translucent plasma.
- .suffix = Full
-ent-SheetRPGlass1 = reinforced plasma glass
- .suffix = Single
- .desc = { ent-SheetRPGlass.desc }
-ent-SheetUGlass = uranium glass
- .desc = A sheet of uranium glass.
- .suffix = Full
-ent-SheetUGlass1 = uranium glass
- .suffix = Single
- .desc = { ent-SheetUGlass.desc }
-ent-SheetRUGlass = reinforced uranium glass
- .desc = A reinforced sheet of uranium.
-ent-SheetRUGlass1 = reinforced uranium glass
- .suffix = Single
- .desc = { ent-SheetRUGlass.desc }
-ent-SheetClockworkGlass = clockwork glass
- .desc = A sheet of brass-hardened glass, primarily used by clockwork enthusiasts and remnants of Ratvarian cults.
- .suffix = Full
-ent-SheetClockworkGlass1 = clockwork glass
- .suffix = Single
- .desc = { ent-SheetClockworkGlass.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/sheets/metal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/sheets/metal.ftl
deleted file mode 100644
index bfa6da7551b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/sheets/metal.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-SheetMetalBase = { ent-BaseItem }
- .desc = A sheet of metal, used often on the station in various applications.
-ent-SheetSteel = steel
- .suffix = Full
- .desc = { ent-SheetMetalBase.desc }
-ent-SheetSteel10 = steel
- .suffix = 10
- .desc = { ent-SheetSteel.desc }
-ent-SheetSteel1 = steel
- .suffix = Single
- .desc = { ent-SheetSteel.desc }
-ent-SheetSteelLingering0 = { ent-SheetSteel }
- .suffix = Lingering, 0
- .desc = { ent-SheetSteel.desc }
-ent-SheetBrass = brass
- .desc = A sheet of brass, primarily used by clockwork enthusiasts and the remnants of Ratvarian cults.
- .suffix = Full
-ent-SheetBrass10 = brass
- .suffix = 10
- .desc = { ent-SheetBrass.desc }
-ent-SheetBrass1 = brass
- .suffix = Single
- .desc = { ent-SheetBrass.desc }
-ent-SheetPlasteel = plasteel
- .suffix = Full
- .desc = { ent-SheetMetalBase.desc }
-ent-SheetPlasteel10 = plasteel
- .suffix = 10
- .desc = { ent-SheetPlasteel.desc }
-ent-SheetPlasteel1 = plasteel
- .suffix = Single
- .desc = { ent-SheetPlasteel.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/sheets/other.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/sheets/other.ftl
deleted file mode 100644
index b750e51b871..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/sheets/other.ftl
+++ /dev/null
@@ -1,35 +0,0 @@
-ent-SheetOtherBase = { ent-BaseItem }
- .desc = A sheet of material, used often on the station in various applications.
-ent-SheetPaper = paper
- .suffix = Full
- .desc = { ent-SheetOtherBase.desc }
-ent-SheetPaper1 = paper
- .suffix = Single
- .desc = { ent-SheetPaper.desc }
-ent-SheetPlasma = plasma
- .suffix = Full
- .desc = { ent-SheetOtherBase.desc }
-ent-SheetPlasma1 = plasma
- .suffix = Single
- .desc = { ent-SheetPlasma.desc }
-ent-SheetPlastic = plastic
- .suffix = Full
- .desc = { ent-SheetOtherBase.desc }
-ent-SheetPlastic10 = plastic
- .suffix = 10
- .desc = { ent-SheetPlastic.desc }
-ent-SheetPlastic1 = plastic
- .suffix = Single
- .desc = { ent-SheetPlastic.desc }
-ent-SheetUranium = uranium
- .suffix = Full
- .desc = { ent-SheetOtherBase.desc }
-ent-SheetUranium1 = uranium
- .suffix = Single
- .desc = { ent-SheetUranium.desc }
-ent-MaterialSheetMeat = meat sheet
- .suffix = Full
- .desc = { ent-SheetOtherBase.desc }
-ent-MaterialSheetMeat1 = { ent-MaterialSheetMeat }
- .suffix = Single
- .desc = { ent-MaterialSheetMeat.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/authorbooks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/authorbooks.ftl
deleted file mode 100644
index dbd557ac5be..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/authorbooks.ftl
+++ /dev/null
@@ -1,62 +0,0 @@
-ent-BookNarsieLegend = the legend of nar'sie
- .desc = The book is an old, leather-bound tome with intricate engravings on the cover. The pages are yellowed and fragile with age, with the ink of the text faded in some places. It appears to have been well-read and well-loved, with dog-eared pages and marginalia scrawled in the margins. Despite its aged appearance, the book still exudes a sense of mystical power and wonder, hinting at the secrets and knowledge contained within its pages.
-ent-BookTruth = exploring different philosophical perspectives on truth and the complexity of lying
- .desc = A book exploring the different philosophical perspectives on truth and lying has a worn cover, with creases and marks indicating frequent use and thoughtful contemplation. The spine shows signs of wear from being pulled off the shelf again and again. The pages themselves are filled with underlines, notes in the margins, and highlighted passages as readers grapple with the nuances and complexities of the topic.
-ent-BookWorld = shaping the state of the world - interplay of forces and choices
- .desc = The book is a well-preserved hardcover with a simple, elegant design on the cover, depicting the image of a world in motion. The pages are crisp and clean, with no signs of wear or tear, suggesting that it has been well-cared for and valued by its previous owner. The text is printed in a clear, legible font, and the chapters are organized in a logical and easy-to-follow manner, making it accessible to readers of all levels of expertise.
-ent-BookIanAntarctica = adventures of robert & ian - exploring antarctica
- .desc = The book is a small paperback in good condition, with an illustration of Ian the corgi and the colony of penguins on the cover. The title, "Ian and Robert's Antarctic Adventure", is written in bold white letters against a blue background. The back cover features a brief summary of the story, highlighting the themes of humility, resilience, and the beauty of nature.
-ent-BookSlothClownSSS = the sloth and the clown - space station shenanigans
- .desc = The book looks new, with a glossy cover featuring Chuckles the clown and Snuggles the sloth floating in space with a backdrop of stars and planets. Chuckles is dressed in his banana costume and Snuggles is sleeping on a hammock made of space ropes. The title "The Sloth and the Clown - Space Station Shenanigans" is written in bold and colorful letters.
-ent-BookSlothClownPranks = the sloth and the clown - pranks on zorgs
- .desc = The book is in excellent condition, with crisp pages and a bright cover. The cover of the book features Chuckles and Snuggles, surrounded by the different species they encountered during their adventures in space. In the background, the Zorgs can be seen peeking out from behind a spaceship.
-ent-BookSlothClownMMD = the sloth and the clown - maze maze danger
- .desc = The book looks new and vibrant, with an image of Chuckles and Snuggles standing in front of the changing maze on the cover. The title "The Sloth and the Clown - Maze Maze Danger" is written in bold, colorful letters that pop against a background of space and stars.
-ent-BookStruck = the humbling and transformative experience of being struck by lightning
- .desc = The cover of the book is an electrifying image of lightning striking the ground, with a silhouette of a person standing in the midst of it. The title is written in bold letters in white against a black background, conveying the power and intensity of the experience. The subtitle is written in smaller letters below the title, providing a hint of the philosophical and spiritual themes explored within.
-ent-BookSun = reaching for the sun - a plant's quest for life
- .desc = The book is new, with a bright and vibrant cover featuring a plant stretching its leaves towards the sun. The title, "Reaching for the Sun - A Plant's Quest for Life," is written in bold, green letters, with an image of the sun rising behind the plant. The cover evokes a sense of growth, energy, and the beauty of nature.
-ent-BookPossum = fallen ambitions - the tragic tale of morty the possum
- .desc = The book is in good condition, with a hardcover and a dark green forest background. In the center of the cover, there is a sad looking possum sitting on a branch, with a distant and lonely expression on its face. The title, "Fallen Ambitions - The Tragic Tale of Morty the Possum," is written in bold, gold letters above the possum.
-ent-BookCafe = the cafe possum
- .desc = The book is in new condition, with a vibrant and whimsical cover that features a charming illustration of a tiny possum peeking out from behind a coffee cup, with a colorful and bustling cafe scene in the background. The title "The Cafe Possum" is written in bold, playful lettering, and the author's name is printed in a smaller font below it.
-ent-BookFeather = a feather of magic - the wandering bird's journey to belonging
- .desc = The book would be in new condition, with a glossy cover depicting the wandering bird surrounded by a glowing forest, with the magical feather at the center. The title, "A Feather of Magic," would be written in bold, glittering letters, while the subtitle, "The Wandering Bird's Journey to Belonging," would be written in smaller print underneath. The back cover would feature a brief summary of the story, along with reviews from critics praising the book's themes of hope and renewal.
-ent-BookIanLostWolfPup = the adventures of ian and renault - finding the lost wolf pup
- .desc = The book is a new condition with a colorful cover, depicting Ian the corgi and Renault the fox on a journey through the forest, with the lost wolf pup to their feet. The title "The Adventures of Ian and Renault - Finding the Lost Wolf Pup" is prominently displayed at the top, with the author's name below. The cover has a whimsical and adventurous feel to it, attracting readers of all ages.
-ent-BookIanRanch = the adventures of ian and renault - ranch expedition
- .desc = The book appears to be new, with crisp pages and an unblemished cover. The cover features a colorful illustration of Ian and Renault, surrounded by various animals they encountered on the ranch, including horses, cows, and chickens. The title, "The Adventures of Ian and Renault - Ranch Expedition," is written in bold letters above the image, with the subtitle, "Helping Animals in Need," written below.
-ent-BookIanOcean = the adventures of ian and renault - an ocean adventure
- .desc = The book is new and in excellent condition. The cover shows Ian and Renault running and playing on the beach, with the blue ocean and golden sand in the background. The title is written in bold, playful letters, and the subtitle reads "An Ocean Adventure."
-ent-BookIanMountain = the adventures of ian and renault - A mountain expedition
- .desc = The book is in new condition. The cover is a stunning mountain landscape with Ian and Renault in the foreground, looking out over the vista of the surrounding peaks and valleys. The title is written in bold, block letters at the top, with the subtitle, "A Mountain Expedition," written underneath.
-ent-BookIanCity = the adventures of ian and renault - exploring the city
- .desc = The book is in new condition, with crisp pages and a glossy cover. The cover features a colorful illustration of Ian and Renault exploring the city, with tall buildings and bustling streets in the background. Ian is leading the way, with his tail wagging excitedly, while Renault follows close behind, her ears perked up and her eyes wide with wonder. The title, "The Adventures of Ian and Renault," is written in bold, playful letters, with the subtitle, "Exploring the City," written below in smaller font.
-ent-BookIanArctic = the adventures of ian and renault - an arctic journey of courage and friendship
- .desc = The book looks new and adventurous, with a picture of Ian and Renault standing in front of an icy landscape with snowflakes falling all around them. The title, "The Adventures of Ian and Renault," is written in bold letters at the top, with a subtitle that reads, "An Arctic Journey of Courage and Friendship."
-ent-BookIanDesert = the adventures of ian and renault - exploring the mysterious desert
- .desc = The book is in new condition and would have a colorful cover depicting Ian and Renault against a desert backdrop. The cover would feature images of various animals and plants that the two encountered on their adventure, such as a rattlesnake, coyotes, sand dunes, and an oasis. The title, "The Adventures of Ian and Renault" is prominently displayed on the cover in bold letters, while the subtitle "Exploring the Mysterious Desert" is written in smaller letters underneath.
-ent-BookNames = the power of names - a philosophical exploration
- .desc = The book is a gently used philosophy text, with a cover that features a close-up of a person's mouth, with the word "names" written on their lips. The title is "The Power of Names - A Philosophical Exploration," and the author's name is prominently displayed underneath. The overall design is simple and elegant, with the focus on the text rather than any flashy graphics or images.
-ent-BookEarth = earthly longing
- .desc = The book is in good condition, with a slightly faded cover due to exposure to sunlight. The cover of the book depicts a panoramic view of the Earth from space, with a bright blue ocean and green landmasses. In the foreground, a lone astronaut is seen sitting in front of a window, gazing wistfully at the Earth. The title of the book, "Earthly Longing," is written in bold white letters against a black background at the top of the cover.
-ent-BookAurora = journey beyond - the starship aurora mission
- .desc = The book is in excellent condition, with a shiny cover depicting a spaceship hovering above a planet, perhaps with the Earth in the background. The title "Journey Beyond - The Starship Aurora Mission" is written in bold, silver letters. The cover also features a quote from a review, "A breathtaking tale of human achievement and exploration" to entice potential readers.
-ent-BookTemple = the nature of the divine - embracing the many gods
- .desc = The book appears new with crisp pages and an uncreased spine. The cover features an image of a temple with a glowing, multicolored aura around it, symbolizing the various gods discussed in the book. The title is displayed prominently in gold lettering, with the author's name and a brief summary of the book written in smaller text below.
-ent-BookWatched = watched
- .desc = The book is in good condition, with a slightly worn cover that features a dark and ominous space station looming in the background. The title "Watched" is written in bold letters that seem to be staring back at the reader, conveying the feeling of being constantly observed. The blurb on the back cover hints at a thrilling and suspenseful tale of paranoia and danger in a confined setting.
-ent-BookMedicalOfficer = horizon's battle - a medical officer's tale of trust and survival
- .desc = The cover features Smith, the medical officer, in his uniform, looking determined and ready to face any challenge. The backdrop shows the SS Horizon under attack, with explosions and smoke filling the space station. In the foreground, a wizard with a staff can be seen, adding an element of mystery and intrigue to the scene. The title is prominently displayed in bold letters, with the author's name and a tagline indicating the book's action-packed and suspenseful nature.
-ent-BookMorgue = the ghostly residents of the abandoned morgue
- .desc = The book looks old and worn, with faded lettering on the cover. The cover depicts a dark and eerie morgue, with a full moon casting an ominous glow over the scene. In the foreground are Morty the possum and Morticia the raccoon, with mischievous expressions on their faces, peeking out from behind a metal shelf. The title is written in bold, spooky letters, with the subtitle "A Tale of Animal Spirits" written in smaller font below.
-ent-BookRufus = rufus and the mischievous fairy
- .desc = The book is in new condition, with vibrant colors and illustrations on the cover. The cover shows Rufus on his bicycle, with Blossom flying beside him in a playful manner. The title is written in bold, whimsical font, with the characters' names highlighted in a contrasting color. The overall aesthetic is charming and inviting, appealing to children and adults alike.
-ent-BookMap = the map of adventure
- .desc = The book is in a good condition, with a glossy cover depicting a jungle scene with vibrant colors and intricate details. The title "The Map of Adventure," is written in bold, gold lettering. The cover also features an image of a mysterious suitcase with the map spilling out of it.
-ent-BookJourney = a journey of music, mountains, and self-discovery
- .desc = The book is in excellent condition, with crisp pages and a glossy cover. The cover features a striking image of a mountain range, with a silhouette of a climber with a guitar on their back in the foreground. The title is bold and eye-catching, with the subtitle "A Journey of Music, Mountains, and Self-Discovery."
-ent-BookInspiration = finding inspiration - a writer's journey through the woods
- .desc = The book is in a new condition with a cover depicting a serene forest scene with a waterfall and colorful wildflowers. The title of the book "Finding Inspiration - A Writer's Journey Through the Woods" and the author's name are prominently displayed at the bottom.
-ent-BookJanitorTale = the tales of a tired janitor
- .desc = A clean looking book, smelling vaguely of soap and bleach.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/bedsheets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/bedsheets.ftl
deleted file mode 100644
index a7735563797..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/bedsheets.ftl
+++ /dev/null
@@ -1,62 +0,0 @@
-ent-BedsheetBase = BedsheetBase
- .desc = A surprisingly soft linen bedsheet.
-ent-BedsheetBlack = black bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetBlue = blue bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetBrown = brown bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetCaptain = captain's bedsheet
- .desc = It has a Nanotrasen symbol on it, and was woven with a revolutionary new kind of thread guaranteed to have 0.01% permeability for most non-chemical substances, popular among most modern captains.
-ent-BedsheetCE = CE's bedsheet
- .desc = It's decorated with a wrench emblem. It's highly reflective and stain resistant, so you don't need to worry about ruining it with oil.
-ent-BedsheetCentcom = CentCom bedsheet
- .desc = Woven with advanced nanothread for warmth as well as being very decorated, essential for all officials.
-ent-BedsheetClown = clown's bedsheet
- .desc = A rainbow blanket with a clown mask woven in. It smells faintly of bananas.
-ent-BedsheetCMO = CMO's bedsheet
- .desc = It's a sterilized blanket that has a cross emblem. There's some cat fur on it, likely from Runtime.
-ent-BedsheetCosmos = cosmos bedsheet
- .desc = Made from the dreams of those who wonder at the stars.
-ent-BedsheetCult = cult bedsheet
- .desc = You might dream of Nar'Sie if you sleep with this. It seems rather tattered and glows of an eldritch presence.
-ent-BedsheetGreen = green bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetGrey = grey bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetHOP = HOP's bedsheet
- .desc = It's decorated with a key emblem. For those rare moments when you can rest and cuddle with Ian without someone screaming for you over the radio.
-ent-BedsheetHOS = HOS's bedsheet
- .desc = It's decorated with a shield emblem. While crime doesn't sleep, you do, but you are still THE LAW!
-ent-BedsheetIan = Ian's bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetMedical = medical bedsheet
- .desc = It's a sterilized blanket commonly used in the Medbay. Sterilization is voided if a virologist is present onboard the station.
-ent-BedsheetMime = mime's bedsheet
- .desc = A very soothing striped blanket. All the noise just seems to fade out when you're under the covers in this.
-ent-BedsheetNT = NT bedsheet
- .desc = It has the Nanotrasen logo on it and an aura of duty.
-ent-BedsheetOrange = orange bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetPurple = purple bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetQM = QM's bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetRainbow = rainbow bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetRD = RD's bedsheet
- .desc = It appears to have a beaker emblem, and is made out of fire-resistant material, although it probably won't protect you in the event of fires you're familiar with every day.
-ent-BedsheetBrigmedic = brigmedic's bedsheet
- .desc = Not worse than cotton.
-ent-BedsheetRed = red bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetSyndie = syndicate bedsheet
- .desc = It has a syndicate emblem and it has an aura of evil.
-ent-BedsheetUSA = USA bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetWhite = white bedsheet
- .desc = { ent-BedsheetBase.desc }
-ent-BedsheetWiz = wizard's bedsheet
- .desc = A special fabric enchanted with magic so you can have an enchanted night. It even glows!
-ent-BedsheetYellow = yellow bedsheet
- .desc = { ent-BedsheetBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/books.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/books.ftl
deleted file mode 100644
index 142e3713e9e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/books.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-BookBase = book
- .desc = A hardcover book.
-ent-BookSpaceEncyclopedia = space encyclopedia
- .desc = An encyclopedia containing all the knowledge. The author of this encyclopedia is unknown.
-ent-BookTheBookOfControl = the book of control
- .desc = Essential to become robust.
-ent-BookBartendersManual = bartender's manual
- .desc = This manual is stained with beer.
-ent-BookChefGaming = chef gaming
- .desc = A book about cooking written by a gamer chef.
-ent-BookLeafLoversSecret = leaf lover's secret
- .desc = It has a strong weed smell. It motivates you to feed and seed.
-ent-BookEngineersHandbook = engineer's handbook
- .desc = A handbook about engineering written by Nanotrasen.
-ent-BookScientistsGuidebook = scientist's guidebook
- .desc = A guidebook about science written by Nanotrasen.
-ent-BookSecurity = security 101
- .desc = A book about security written by Nanotrasen. The book is stained with blood. It seems to have been used more as a weapon than reading material.
-ent-BookHowToKeepStationClean = how to keep station clean
- .desc = This book is very clean.
-ent-BookHowToRockAndStone = how to rock and stone
- .desc = A very detailed guide about salvage written by Karl, a legendary space miner, however he's missing. It motivates you to rock and stone.
-ent-BookMedicalReferenceBook = medical reference book
- .desc = A reference book about medical written by an old doctor. The handwriting is barely comprehensible.
-ent-BookHowToSurvive = how to survive
- .desc = Ironically the author of this book is dead.
-ent-BookChemicalCompendium = chempendium
- .desc = A comprehensive guide written by some old skeleton of a professor about chemical synthesis.
-ent-BookRandom = { ent-BookBase }
- .desc = Each book is unique! What is hidden in this one?
- .suffix = random visual
-ent-BookRandomStory = { ent-BookRandom }
- .suffix = random visual, random story
- .desc = { ent-BookRandom.desc }
-ent-BookAtmosDistro = Newton's Guide to Atmos: The Distro
- .desc = There are endless illegible notes scribbled in the margins. Most of the text is covered in handwritten question marks.
-ent-BookAtmosWaste = Newton's Guide to Atmos: Waste
- .desc = There are endless illegible notes scribbled in the margins. Most of the text is covered in handwritten question marks.
-ent-BookAtmosAirAlarms = Newton's Guide to Atmos: Air Alarms
- .desc = There are endless illegible notes scribbled in the margins. Most of the text is covered in handwritten question marks.
-ent-BookAtmosVentsMore = Newton's Guide to Atmos: Vents and More
- .desc = There are endless illegible notes scribbled in the margins. Most of the text is covered in handwritten question marks.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/books_author.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/books_author.ftl
deleted file mode 100644
index dbd557ac5be..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/books_author.ftl
+++ /dev/null
@@ -1,62 +0,0 @@
-ent-BookNarsieLegend = the legend of nar'sie
- .desc = The book is an old, leather-bound tome with intricate engravings on the cover. The pages are yellowed and fragile with age, with the ink of the text faded in some places. It appears to have been well-read and well-loved, with dog-eared pages and marginalia scrawled in the margins. Despite its aged appearance, the book still exudes a sense of mystical power and wonder, hinting at the secrets and knowledge contained within its pages.
-ent-BookTruth = exploring different philosophical perspectives on truth and the complexity of lying
- .desc = A book exploring the different philosophical perspectives on truth and lying has a worn cover, with creases and marks indicating frequent use and thoughtful contemplation. The spine shows signs of wear from being pulled off the shelf again and again. The pages themselves are filled with underlines, notes in the margins, and highlighted passages as readers grapple with the nuances and complexities of the topic.
-ent-BookWorld = shaping the state of the world - interplay of forces and choices
- .desc = The book is a well-preserved hardcover with a simple, elegant design on the cover, depicting the image of a world in motion. The pages are crisp and clean, with no signs of wear or tear, suggesting that it has been well-cared for and valued by its previous owner. The text is printed in a clear, legible font, and the chapters are organized in a logical and easy-to-follow manner, making it accessible to readers of all levels of expertise.
-ent-BookIanAntarctica = adventures of robert & ian - exploring antarctica
- .desc = The book is a small paperback in good condition, with an illustration of Ian the corgi and the colony of penguins on the cover. The title, "Ian and Robert's Antarctic Adventure", is written in bold white letters against a blue background. The back cover features a brief summary of the story, highlighting the themes of humility, resilience, and the beauty of nature.
-ent-BookSlothClownSSS = the sloth and the clown - space station shenanigans
- .desc = The book looks new, with a glossy cover featuring Chuckles the clown and Snuggles the sloth floating in space with a backdrop of stars and planets. Chuckles is dressed in his banana costume and Snuggles is sleeping on a hammock made of space ropes. The title "The Sloth and the Clown - Space Station Shenanigans" is written in bold and colorful letters.
-ent-BookSlothClownPranks = the sloth and the clown - pranks on zorgs
- .desc = The book is in excellent condition, with crisp pages and a bright cover. The cover of the book features Chuckles and Snuggles, surrounded by the different species they encountered during their adventures in space. In the background, the Zorgs can be seen peeking out from behind a spaceship.
-ent-BookSlothClownMMD = the sloth and the clown - maze maze danger
- .desc = The book looks new and vibrant, with an image of Chuckles and Snuggles standing in front of the changing maze on the cover. The title "The Sloth and the Clown - Maze Maze Danger" is written in bold, colorful letters that pop against a background of space and stars.
-ent-BookStruck = the humbling and transformative experience of being struck by lightning
- .desc = The cover of the book is an electrifying image of lightning striking the ground, with a silhouette of a person standing in the midst of it. The title is written in bold letters in white against a black background, conveying the power and intensity of the experience. The subtitle is written in smaller letters below the title, providing a hint of the philosophical and spiritual themes explored within.
-ent-BookSun = reaching for the sun - a plant's quest for life
- .desc = The book is new, with a bright and vibrant cover featuring a plant stretching its leaves towards the sun. The title, "Reaching for the Sun - A Plant's Quest for Life," is written in bold, green letters, with an image of the sun rising behind the plant. The cover evokes a sense of growth, energy, and the beauty of nature.
-ent-BookPossum = fallen ambitions - the tragic tale of morty the possum
- .desc = The book is in good condition, with a hardcover and a dark green forest background. In the center of the cover, there is a sad looking possum sitting on a branch, with a distant and lonely expression on its face. The title, "Fallen Ambitions - The Tragic Tale of Morty the Possum," is written in bold, gold letters above the possum.
-ent-BookCafe = the cafe possum
- .desc = The book is in new condition, with a vibrant and whimsical cover that features a charming illustration of a tiny possum peeking out from behind a coffee cup, with a colorful and bustling cafe scene in the background. The title "The Cafe Possum" is written in bold, playful lettering, and the author's name is printed in a smaller font below it.
-ent-BookFeather = a feather of magic - the wandering bird's journey to belonging
- .desc = The book would be in new condition, with a glossy cover depicting the wandering bird surrounded by a glowing forest, with the magical feather at the center. The title, "A Feather of Magic," would be written in bold, glittering letters, while the subtitle, "The Wandering Bird's Journey to Belonging," would be written in smaller print underneath. The back cover would feature a brief summary of the story, along with reviews from critics praising the book's themes of hope and renewal.
-ent-BookIanLostWolfPup = the adventures of ian and renault - finding the lost wolf pup
- .desc = The book is a new condition with a colorful cover, depicting Ian the corgi and Renault the fox on a journey through the forest, with the lost wolf pup to their feet. The title "The Adventures of Ian and Renault - Finding the Lost Wolf Pup" is prominently displayed at the top, with the author's name below. The cover has a whimsical and adventurous feel to it, attracting readers of all ages.
-ent-BookIanRanch = the adventures of ian and renault - ranch expedition
- .desc = The book appears to be new, with crisp pages and an unblemished cover. The cover features a colorful illustration of Ian and Renault, surrounded by various animals they encountered on the ranch, including horses, cows, and chickens. The title, "The Adventures of Ian and Renault - Ranch Expedition," is written in bold letters above the image, with the subtitle, "Helping Animals in Need," written below.
-ent-BookIanOcean = the adventures of ian and renault - an ocean adventure
- .desc = The book is new and in excellent condition. The cover shows Ian and Renault running and playing on the beach, with the blue ocean and golden sand in the background. The title is written in bold, playful letters, and the subtitle reads "An Ocean Adventure."
-ent-BookIanMountain = the adventures of ian and renault - A mountain expedition
- .desc = The book is in new condition. The cover is a stunning mountain landscape with Ian and Renault in the foreground, looking out over the vista of the surrounding peaks and valleys. The title is written in bold, block letters at the top, with the subtitle, "A Mountain Expedition," written underneath.
-ent-BookIanCity = the adventures of ian and renault - exploring the city
- .desc = The book is in new condition, with crisp pages and a glossy cover. The cover features a colorful illustration of Ian and Renault exploring the city, with tall buildings and bustling streets in the background. Ian is leading the way, with his tail wagging excitedly, while Renault follows close behind, her ears perked up and her eyes wide with wonder. The title, "The Adventures of Ian and Renault," is written in bold, playful letters, with the subtitle, "Exploring the City," written below in smaller font.
-ent-BookIanArctic = the adventures of ian and renault - an arctic journey of courage and friendship
- .desc = The book looks new and adventurous, with a picture of Ian and Renault standing in front of an icy landscape with snowflakes falling all around them. The title, "The Adventures of Ian and Renault," is written in bold letters at the top, with a subtitle that reads, "An Arctic Journey of Courage and Friendship."
-ent-BookIanDesert = the adventures of ian and renault - exploring the mysterious desert
- .desc = The book is in new condition and would have a colorful cover depicting Ian and Renault against a desert backdrop. The cover would feature images of various animals and plants that the two encountered on their adventure, such as a rattlesnake, coyotes, sand dunes, and an oasis. The title, "The Adventures of Ian and Renault" is prominently displayed on the cover in bold letters, while the subtitle "Exploring the Mysterious Desert" is written in smaller letters underneath.
-ent-BookNames = the power of names - a philosophical exploration
- .desc = The book is a gently used philosophy text, with a cover that features a close-up of a person's mouth, with the word "names" written on their lips. The title is "The Power of Names - A Philosophical Exploration," and the author's name is prominently displayed underneath. The overall design is simple and elegant, with the focus on the text rather than any flashy graphics or images.
-ent-BookEarth = earthly longing
- .desc = The book is in good condition, with a slightly faded cover due to exposure to sunlight. The cover of the book depicts a panoramic view of the Earth from space, with a bright blue ocean and green landmasses. In the foreground, a lone astronaut is seen sitting in front of a window, gazing wistfully at the Earth. The title of the book, "Earthly Longing," is written in bold white letters against a black background at the top of the cover.
-ent-BookAurora = journey beyond - the starship aurora mission
- .desc = The book is in excellent condition, with a shiny cover depicting a spaceship hovering above a planet, perhaps with the Earth in the background. The title "Journey Beyond - The Starship Aurora Mission" is written in bold, silver letters. The cover also features a quote from a review, "A breathtaking tale of human achievement and exploration" to entice potential readers.
-ent-BookTemple = the nature of the divine - embracing the many gods
- .desc = The book appears new with crisp pages and an uncreased spine. The cover features an image of a temple with a glowing, multicolored aura around it, symbolizing the various gods discussed in the book. The title is displayed prominently in gold lettering, with the author's name and a brief summary of the book written in smaller text below.
-ent-BookWatched = watched
- .desc = The book is in good condition, with a slightly worn cover that features a dark and ominous space station looming in the background. The title "Watched" is written in bold letters that seem to be staring back at the reader, conveying the feeling of being constantly observed. The blurb on the back cover hints at a thrilling and suspenseful tale of paranoia and danger in a confined setting.
-ent-BookMedicalOfficer = horizon's battle - a medical officer's tale of trust and survival
- .desc = The cover features Smith, the medical officer, in his uniform, looking determined and ready to face any challenge. The backdrop shows the SS Horizon under attack, with explosions and smoke filling the space station. In the foreground, a wizard with a staff can be seen, adding an element of mystery and intrigue to the scene. The title is prominently displayed in bold letters, with the author's name and a tagline indicating the book's action-packed and suspenseful nature.
-ent-BookMorgue = the ghostly residents of the abandoned morgue
- .desc = The book looks old and worn, with faded lettering on the cover. The cover depicts a dark and eerie morgue, with a full moon casting an ominous glow over the scene. In the foreground are Morty the possum and Morticia the raccoon, with mischievous expressions on their faces, peeking out from behind a metal shelf. The title is written in bold, spooky letters, with the subtitle "A Tale of Animal Spirits" written in smaller font below.
-ent-BookRufus = rufus and the mischievous fairy
- .desc = The book is in new condition, with vibrant colors and illustrations on the cover. The cover shows Rufus on his bicycle, with Blossom flying beside him in a playful manner. The title is written in bold, whimsical font, with the characters' names highlighted in a contrasting color. The overall aesthetic is charming and inviting, appealing to children and adults alike.
-ent-BookMap = the map of adventure
- .desc = The book is in a good condition, with a glossy cover depicting a jungle scene with vibrant colors and intricate details. The title "The Map of Adventure," is written in bold, gold lettering. The cover also features an image of a mysterious suitcase with the map spilling out of it.
-ent-BookJourney = a journey of music, mountains, and self-discovery
- .desc = The book is in excellent condition, with crisp pages and a glossy cover. The cover features a striking image of a mountain range, with a silhouette of a climber with a guitar on their back in the foreground. The title is bold and eye-catching, with the subtitle "A Journey of Music, Mountains, and Self-Discovery."
-ent-BookInspiration = finding inspiration - a writer's journey through the woods
- .desc = The book is in a new condition with a cover depicting a serene forest scene with a waterfall and colorful wildflowers. The title of the book "Finding Inspiration - A Writer's Journey Through the Woods" and the author's name are prominently displayed at the bottom.
-ent-BookJanitorTale = the tales of a tired janitor
- .desc = A clean looking book, smelling vaguely of soap and bleach.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/botparts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/botparts.ftl
deleted file mode 100644
index 4a137ee1134..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/botparts.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ProximitySensor = proximity sensor
- .desc = Senses things in close proximity.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/box.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/box.ftl
deleted file mode 100644
index 267ffe837c7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/box.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BoxBase = { ent-BaseStorageItem }
- .desc = { ent-BaseStorageItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/brb_sign.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/brb_sign.ftl
deleted file mode 100644
index 95d0339706d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/brb_sign.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BrbSign = brb sign
- .desc = Lets others know you are away.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/briefcases.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/briefcases.ftl
deleted file mode 100644
index b37a3326c44..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/briefcases.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-BriefcaseBase = { ent-BaseStorageItem }
- .desc = Useful for carrying items in your hands.
-ent-BriefcaseBrown = brown briefcase
- .desc = { ent-BriefcaseBase.desc }
-ent-BriefcaseSyndie = { ent-BriefcaseBrown }
- .suffix = Syndicate, Empty
- .desc = { ent-BriefcaseBrown.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/broken_bottle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/broken_bottle.ftl
deleted file mode 100644
index 9deee7da6d2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/broken_bottle.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BrokenBottle = broken bottle
- .desc = In Space Glasgow this is called a conversation starter.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/buffering.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/buffering.ftl
deleted file mode 100644
index 1e93ec79364..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/buffering.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BufferingIcon = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/candles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/candles.ftl
deleted file mode 100644
index c7c07cc3db6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/candles.ftl
+++ /dev/null
@@ -1,47 +0,0 @@
-ent-Candle = candle
- .desc = A thin wick threaded through fat.
-ent-CandleRed = red candle
- .desc = { ent-Candle.desc }
-ent-CandleBlue = blue candle
- .desc = { ent-Candle.desc }
-ent-CandleBlack = black candle
- .desc = { ent-Candle.desc }
-ent-CandleGreen = green candle
- .desc = { ent-Candle.desc }
-ent-CandlePurple = purple candle
- .desc = { ent-Candle.desc }
-ent-CandleSmall = small candle
- .desc = { ent-Candle.desc }
-ent-CandleRedSmall = small red candle
- .desc = { ent-CandleSmall.desc }
-ent-CandleBlueSmall = small blue candle
- .desc = { ent-CandleSmall.desc }
-ent-CandleBlackSmall = small black candle
- .desc = { ent-CandleSmall.desc }
-ent-CandleGreenSmall = small green candle
- .desc = { ent-CandleSmall.desc }
-ent-CandlePurpleSmall = small purple candle
- .desc = { ent-CandleSmall.desc }
-ent-CandleInfinite = magic candle
- .desc = It's either magic or high tech, but this candle never goes out. On the other hand, its flame is quite cold.
- .suffix = Decorative
-ent-CandleRedInfinite = magic red candle
- .desc = { ent-CandleInfinite.desc }
-ent-CandleBlueInfinite = magic blue candle
- .desc = { ent-CandleInfinite.desc }
-ent-CandleBlackInfinite = magic black candle
- .desc = { ent-CandleInfinite.desc }
-ent-CandleGreenInfinite = magic green candle
- .desc = { ent-CandleInfinite.desc }
-ent-CandlePurpleInfinite = magic purple candle
- .desc = { ent-CandleInfinite.desc }
-ent-CandleRedSmallInfinite = small magic red candle
- .desc = { ent-CandleInfinite.desc }
-ent-CandleBlueSmallInfinite = small magic blue candle
- .desc = { ent-CandleInfinite.desc }
-ent-CandleBlackSmallInfinite = small magic black candle
- .desc = { ent-CandleInfinite.desc }
-ent-CandleGreenSmallInfinite = small magic green candle
- .desc = { ent-CandleInfinite.desc }
-ent-CandlePurpleSmallInfinite = small magic purple candle
- .desc = { ent-CandleInfinite.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/candy_bowl.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/candy_bowl.ftl
deleted file mode 100644
index ef70578dda4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/candy_bowl.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CandyBowl = candy bowl
- .desc = Grab as much as you can fit in your pockets!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/carpets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/carpets.ftl
deleted file mode 100644
index edf947a2ab4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/carpets.ftl
+++ /dev/null
@@ -1,30 +0,0 @@
-ent-FloorCarpetItemRed = carpet
- .suffix = Red
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorCarpetItemBlack = { ent-FloorCarpetItemRed }
- .suffix = Black
- .desc = { ent-FloorCarpetItemRed.desc }
-ent-FloorCarpetItemBlue = { ent-FloorCarpetItemRed }
- .suffix = Blue
- .desc = { ent-FloorCarpetItemRed.desc }
-ent-FloorCarpetItemGreen = { ent-FloorCarpetItemRed }
- .suffix = Green
- .desc = { ent-FloorCarpetItemRed.desc }
-ent-FloorCarpetItemOrange = { ent-FloorCarpetItemRed }
- .suffix = Orange
- .desc = { ent-FloorCarpetItemRed.desc }
-ent-FloorCarpetItemSkyBlue = { ent-FloorCarpetItemRed }
- .suffix = Sky Blue
- .desc = { ent-FloorCarpetItemRed.desc }
-ent-FloorCarpetItemPurple = { ent-FloorCarpetItemRed }
- .suffix = Purple
- .desc = { ent-FloorCarpetItemRed.desc }
-ent-FloorCarpetItemPink = { ent-FloorCarpetItemRed }
- .suffix = Pink
- .desc = { ent-FloorCarpetItemRed.desc }
-ent-FloorCarpetItemCyan = { ent-FloorCarpetItemRed }
- .suffix = Cyan
- .desc = { ent-FloorCarpetItemRed.desc }
-ent-FloorCarpetItemWhite = { ent-FloorCarpetItemRed }
- .suffix = White
- .desc = { ent-FloorCarpetItemRed.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/cds.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/cds.ftl
deleted file mode 100644
index 23434de6c4a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/cds.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CoordinatesDisk = coordinates disk
- .desc = A disk containing the coordinates to a location in space. Necessary for any FTL-traversing vessel to reach their destination. Fits inside shuttle consoles.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/chopsticks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/chopsticks.ftl
deleted file mode 100644
index bae6f3e5417..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/chopsticks.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ChopSticks = chopsticks
- .desc = A very traditional utensil.
-ent-PairedChopsticks = paired chopsticks
- .desc = You should probably seperate them.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/dat_fukken_disk.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/dat_fukken_disk.ftl
deleted file mode 100644
index 7a27e8580e2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/dat_fukken_disk.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-NukeDisk = nuclear authentication disk
- .desc = A nuclear auth disk, capable of arming a nuke if used along with a code. Note from nanotrasen reads "THIS IS YOUR MOST IMPORTANT POSESSION, SECURE DAT FUKKEN DISK!"
-ent-NukeDiskFake = nuclear authentication disk
- .desc = A nuclear auth disk, capable of arming a nuke if used along with a code. Note from nanotrasen reads "THIS IS YOUR MOST IMPORTANT POSESSION, SECURE DAT FUKKEN DISK!"
- .suffix = Fake
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/desk_bell.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/desk_bell.ftl
deleted file mode 100644
index 5d72bce0ffb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/desk_bell.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-DeskBell = desk bell
- .desc = The cornerstone of any customer service job. You feel an unending urge to ring it.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/diskcases.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/diskcases.ftl
deleted file mode 100644
index e4000db46f5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/diskcases.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-DiskCase = diskcase
- .desc = Case for storing a coordinates disk.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/eggspider.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/eggspider.ftl
deleted file mode 100644
index f9c9dfb452a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/eggspider.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-EggSpider = egg spider
- .desc = Is it a gemstone? Is it an egg? It looks expensive.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/filing_cabinets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/filing_cabinets.ftl
deleted file mode 100644
index cea0f4ebdee..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/filing_cabinets.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-filingCabinet = filing cabinet
- .desc = A cabinet for all your filing needs.
- .suffix = { "" }
-ent-filingCabinetTall = tall cabinet
- .desc = { ent-filingCabinet.desc }
- .suffix = { "" }
-ent-filingCabinetDrawer = chest drawer
- .desc = A small drawer for all your filing needs, Now with wheels!
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/fire_extinguisher.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/fire_extinguisher.ftl
deleted file mode 100644
index 8088e5d9367..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/fire_extinguisher.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-FireExtinguisher = fire extinguisher
- .desc = It extinguishes fires.
-ent-ExtinguisherSpray = extinguisher spray
- .desc = { ent-Vapor.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/fluff_lights.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/fluff_lights.ftl
deleted file mode 100644
index 335ad740c2e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/fluff_lights.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-BaseLamp = lantern
- .desc = { ent-BaseItem.desc }
-ent-Lamp = lamp
- .desc = A light emitting device.
-ent-LampBanana = banana lamp
- .desc = A light emitting device, shaped like a banana.
-ent-LampGold = desk lamp
- .desc = A light emitting device that would look great on a desk.
-ent-LampInterrogator = interrogator lamp
- .desc = Ultra-bright lamp for the bad cop
-ent-Floodlight = floodlight
- .desc = A pole with powerful mounted lights on it.
-ent-FloodlightBroken = broken floodlight
- .desc = A pole with powerful mounted lights on it. It's broken.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/handcuffs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/handcuffs.ftl
deleted file mode 100644
index ec5c78b9513..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/handcuffs.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-Handcuffs = handcuffs
- .desc = Used to detain criminals and other assholes.
-ent-Cablecuffs = makeshift handcuffs
- .desc = Homemade handcuffs crafted from spare cables.
-ent-Zipties = zipties
- .desc = Tough single-use plastic zipties, ideal for restraining rowdy prisoners.
-ent-BaseHandcuffsBroken = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-ZiptiesBroken = broken zipties
- .desc = These zipties look like they tried to manage the wrong cables.
-ent-CablecuffsBroken = broken cables
- .desc = These cables are broken in several places and don't seem very useful.
-ent-ClothingOuterStraightjacket = straitjacket
- .desc = Used to restrain those who may cause harm to themselves or others.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/handy_flags.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/handy_flags.ftl
deleted file mode 100644
index de9370cbdfc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/handy_flags.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BlankHandyFlag = blank handheld flag
- .desc = Some piece of white cloth wound on a stick.
-ent-NTHandyFlag = Nanotrasen handheld flag
- .desc = Glory to NT! Wait, they really made a handheld flag for a corporation?
-ent-SyndieHandyFlag = syndicate handheld flag
- .desc = For truly rebellious patriots. Death to NT!
-ent-LGBTQHandyFlag = LGBTQ handheld flag
- .desc = The be gay do crime handy flag.
-ent-PirateHandyFlag = pirate handheld flag
- .desc = Holding it in your hands, show these carp that you're not kidding.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/ice_crust.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/ice_crust.ftl
deleted file mode 100644
index 3a3a29759e5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/ice_crust.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-IceCrust = ice crust
- .desc = It's cold and slippery.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl
deleted file mode 100644
index a19cf572aa9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl
+++ /dev/null
@@ -1,128 +0,0 @@
-ent-IDCardStandard = identification card
- .desc = A card necessary to access various areas aboard the station.
-ent-PassengerIDCard = passenger ID card
- .desc = { ent-IDCardStandard.desc }
-ent-TechnicalAssistantIDCard = technical assistant ID card
- .desc = { ent-PassengerIDCard.desc }
-ent-MedicalInternIDCard = medical intern ID card
- .desc = { ent-PassengerIDCard.desc }
-ent-ResearchAssistantIDCard = research assistant ID card
- .desc = { ent-PassengerIDCard.desc }
-ent-SecurityCadetIDCard = security cadet ID card
- .desc = { ent-PassengerIDCard.desc }
-ent-ServiceWorkerIDCard = service worker ID card
- .desc = { ent-PassengerIDCard.desc }
-ent-CaptainIDCard = captain ID card
- .desc = { ent-IDCardStandard.desc }
-ent-SecurityIDCard = security ID card
- .desc = { ent-IDCardStandard.desc }
-ent-WardenIDCard = warden ID card
- .desc = { ent-IDCardStandard.desc }
-ent-EngineeringIDCard = engineer ID card
- .desc = { ent-IDCardStandard.desc }
-ent-MedicalIDCard = medical ID card
- .desc = { ent-IDCardStandard.desc }
-ent-ParamedicIDCard = paramedic ID card
- .desc = { ent-IDCardStandard.desc }
-ent-ChemistIDCard = chemist ID card
- .desc = { ent-IDCardStandard.desc }
-ent-CargoIDCard = cargo ID card
- .desc = { ent-IDCardStandard.desc }
-ent-SalvageIDCard = salvage ID card
- .desc = { ent-IDCardStandard.desc }
-ent-QuartermasterIDCard = quartermaster ID card
- .desc = { ent-IDCardStandard.desc }
-ent-ResearchIDCard = research ID card
- .desc = { ent-IDCardStandard.desc }
-ent-ClownIDCard = clown ID card
- .desc = { ent-IDCardStandard.desc }
-ent-MimeIDCard = mime ID card
- .desc = { ent-IDCardStandard.desc }
-ent-ChaplainIDCard = chaplain ID card
- .desc = { ent-IDCardStandard.desc }
-ent-JanitorIDCard = janitor ID card
- .desc = { ent-IDCardStandard.desc }
-ent-BartenderIDCard = bartender ID card
- .desc = { ent-IDCardStandard.desc }
-ent-PunPunIDCard = pun pun ID card
- .desc = { ent-IDCardStandard.desc }
-ent-ChefIDCard = chef ID card
- .desc = { ent-IDCardStandard.desc }
-ent-BotanistIDCard = botanist ID card
- .desc = { ent-IDCardStandard.desc }
-ent-LibrarianIDCard = librarian ID card
- .desc = { ent-IDCardStandard.desc }
-ent-LawyerIDCard = lawyer ID card
- .desc = { ent-IDCardStandard.desc }
-ent-HoPIDCard = head of personnel ID card
- .desc = { ent-IDCardStandard.desc }
-ent-CEIDCard = chief engineer ID card
- .desc = { ent-IDCardStandard.desc }
-ent-CMOIDCard = chief medical officer ID card
- .desc = { ent-IDCardStandard.desc }
-ent-RDIDCard = research director ID card
- .desc = { ent-IDCardStandard.desc }
-ent-HoSIDCard = head of security ID card
- .desc = { ent-IDCardStandard.desc }
-ent-BrigmedicIDCard = brigmedic ID card
- .desc = { ent-IDCardStandard.desc }
-ent-CentcomIDCard = command officer ID card
- .desc = { ent-IDCardStandard.desc }
-ent-ERTLeaderIDCard = ERT leader ID card
- .desc = { ent-CentcomIDCard.desc }
-ent-ERTChaplainIDCard = ERT chaplain ID card
- .desc = { ent-ERTLeaderIDCard.desc }
-ent-ERTEngineerIDCard = ERT engineer ID card
- .desc = { ent-ERTChaplainIDCard.desc }
-ent-ERTJanitorIDCard = ERT janitor ID card
- .desc = { ent-ERTChaplainIDCard.desc }
-ent-ERTMedicIDCard = ERT medic ID card
- .desc = { ent-ERTChaplainIDCard.desc }
-ent-ERTSecurityIDCard = ERT security ID card
- .desc = { ent-ERTChaplainIDCard.desc }
-ent-CentcomIDCardSyndie = command officer ID card
- .suffix = Fake
- .desc = { ent-IDCardStandard.desc }
-ent-MusicianIDCard = musician ID card
- .desc = { ent-IDCardStandard.desc }
-ent-CentcomIDCardDeathsquad = death squad ID card
- .desc = { ent-CentcomIDCard.desc }
-ent-AgentIDCard = passenger ID card
- .suffix = Agent
- .desc = { ent-IDCardStandard.desc }
-ent-NukieAgentIDCard = passenger ID card
- .suffix = Nukie
- .desc = { ent-AgentIDCard.desc }
-ent-AtmosIDCard = atmospheric technician ID card
- .desc = { ent-IDCardStandard.desc }
-ent-SyndicateIDCard = syndicate ID card
- .desc = { ent-IDCardStandard.desc }
-ent-PirateIDCard = pirate ID card
- .desc = { ent-IDCardStandard.desc }
-ent-PsychologistIDCard = psychologist ID card
- .desc = { ent-IDCardStandard.desc }
-ent-ReporterIDCard = reporter ID card
- .desc = { ent-IDCardStandard.desc }
-ent-BoxerIDCard = boxer ID card
- .desc = { ent-IDCardStandard.desc }
-ent-ZookeeperIDCard = zookeeper ID card
- .desc = { ent-IDCardStandard.desc }
-ent-DetectiveIDCard = detective ID card
- .desc = { ent-IDCardStandard.desc }
-ent-CBURNIDcard = CBURN ID card
- .suffix = CBURN
- .desc = { ent-CentcomIDCard.desc }
-ent-CluwneIDCard = cluwne ID card
- .suffix = Unremoveable
- .desc = { ent-IDCardStandard.desc }
-ent-SeniorEngineerIDCard = senior engineer ID card
- .desc = { ent-EngineeringIDCard.desc }
-ent-SeniorResearcherIDCard = senior researcher ID card
- .desc = { ent-ResearchIDCard.desc }
-ent-SeniorPhysicianIDCard = senior physician ID card
- .desc = { ent-MedicalIDCard.desc }
-ent-SeniorOfficerIDCard = senior officer ID card
- .desc = { ent-SecurityIDCard.desc }
-ent-UniversalIDCard = universal ID card
- .desc = An ID card that gives you access beyond your wildest dreams.
- .suffix = Admin
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/implanters.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/implanters.ftl
deleted file mode 100644
index fbfc6632b55..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/implanters.ftl
+++ /dev/null
@@ -1,41 +0,0 @@
-ent-BaseImplanter = implanter
- .desc = A syringe exclusively designed for the injection and extraction of subdermal implants.
-ent-Implanter = { ent-BaseImplanter }
- .desc = A disposable syringe exclusively designed for the injection and extraction of subdermal implants.
-ent-ImplanterAdmeme = { ent-Implanter }
- .suffix = Admeme
- .desc = { ent-Implanter.desc }
-ent-BaseImplantOnlyImplanter = { ent-Implanter }
- .desc = A disposable syringe exclusively designed for the injection of subdermal implants.
-ent-BaseImplantOnlyImplanterSyndi = { ent-BaseImplantOnlyImplanter }
- .desc = A compact disposable syringe exclusively designed for the injection of subdermal implants.
-ent-SadTromboneImplanter = sad trombone implanter
- .desc = { ent-BaseImplantOnlyImplanter.desc }
-ent-LightImplanter = light implanter
- .desc = { ent-BaseImplantOnlyImplanter.desc }
-ent-BikeHornImplanter = bike horn implanter
- .desc = { ent-BaseImplantOnlyImplanter.desc }
-ent-TrackingImplanter = tracking implanter
- .desc = { ent-BaseImplantOnlyImplanter.desc }
-ent-StorageImplanter = storage implanter
- .desc = { ent-BaseImplantOnlyImplanterSyndi.desc }
-ent-FreedomImplanter = freedom implanter
- .desc = { ent-BaseImplantOnlyImplanterSyndi.desc }
-ent-UplinkImplanter = uplink implanter
- .desc = { ent-BaseImplantOnlyImplanterSyndi.desc }
-ent-EmpImplanter = EMP implanter
- .desc = { ent-BaseImplantOnlyImplanterSyndi.desc }
-ent-ScramImplanter = scram implanter
- .desc = { ent-BaseImplantOnlyImplanterSyndi.desc }
-ent-DnaScramblerImplanter = DNA scrambler implanter
- .desc = { ent-BaseImplantOnlyImplanterSyndi.desc }
-ent-MicroBombImplanter = micro-bomb implanter
- .desc = { ent-BaseImplantOnlyImplanterSyndi.desc }
-ent-MacroBombImplanter = macro-bomb implanter
- .desc = { ent-BaseImplantOnlyImplanterSyndi.desc }
-ent-DeathRattleImplanter = death rattle implanter
- .desc = { ent-BaseImplantOnlyImplanterSyndi.desc }
-ent-DeathAcidifierImplanter = death acidifier implanter
- .desc = { ent-BaseImplantOnlyImplanterSyndi.desc }
-ent-MindShieldImplanter = mindshield implanter
- .desc = { ent-BaseImplantOnlyImplanter.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/improvised_gun_parts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/improvised_gun_parts.ftl
deleted file mode 100644
index 170e248df4b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/improvised_gun_parts.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ModularReceiver = modular receiver
- .desc = A vital part used in the creation of firearms.
-ent-RifleStock = rifle stock
- .desc = A robust wooden stock, used in the creation of firearms.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/inflatable_wall.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/inflatable_wall.ftl
deleted file mode 100644
index 4e49a399a45..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/inflatable_wall.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-InflatableWall = inflatable barricade
- .desc = An inflated membrane. Activate to deflate. Do not puncture.
-ent-InflatableDoor = inflatable door
- .desc = An inflated membrane. Activate to deflate. Now with a door. Do not puncture.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/kudzu.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/kudzu.ftl
deleted file mode 100644
index f36ae9760a6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/kudzu.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-BaseKudzu = { "" }
- .desc = { "" }
-ent-Kudzu = kudzu
- .desc = A rapidly growing, dangerous plant. WHY ARE YOU STOPPING TO LOOK AT IT?!
-ent-WeakKudzu = { ent-Kudzu }
- .suffix = Weak
- .desc = { ent-Kudzu.desc }
-ent-KudzuFlowerFriendly = floral carpet
- .desc = A colorful carpet of flowers sprawling in every direction. You're not sure whether to take it down or leave it up.
- .suffix = Friendly, Floral Anomaly
-ent-KudzuFlowerAngry = { ent-KudzuFlowerFriendly }
- .suffix = Angry, Floral Anomaly
- .desc = { ent-KudzuFlowerFriendly.desc }
-ent-FleshKudzu = tendons
- .desc = A rapidly growing cluster of meaty tendons. WHY ARE YOU STOPPING TO LOOK AT IT?!
-ent-ShadowKudzu = dark haze
- .desc = { ent-BaseKudzu.desc }
-ent-ShadowKudzuWeak = Haze
- .desc = { ent-ShadowKudzu.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/land_mine.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/land_mine.ftl
deleted file mode 100644
index 441febc5dec..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/land_mine.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseLandMine = { "" }
- .desc = { "" }
-ent-LandMineKick = kick mine
- .desc = { ent-BaseLandMine.desc }
-ent-LandMineModular = modular mine
- .desc = This bad boy could be packing any number of dangers. Or a bike horn.
-ent-LandMineExplosive = explosive mine
- .desc = { ent-BaseLandMine.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/machine_parts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/machine_parts.ftl
deleted file mode 100644
index 8fa288dec10..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/machine_parts.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-BaseStockPart = stock part
- .desc = What?
-ent-CapacitorStockPart = capacitor
- .desc = A basic capacitor used in the construction of a variety of devices.
- .suffix = Rating 1
-ent-MicroManipulatorStockPart = manipulator
- .desc = A basic manipulator used in the construction of a variety of devices.
- .suffix = Rating 1
-ent-MatterBinStockPart = matter bin
- .desc = A basic matter bin used in the construction of a variety of devices.
- .suffix = Rating 1
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/medalcase.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/medalcase.ftl
deleted file mode 100644
index 6178a841fe8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/medalcase.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MedalCase = medal case
- .desc = Case with medals.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/monkeycube.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/monkeycube.ftl
deleted file mode 100644
index 6b01ff2c731..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/monkeycube.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-MonkeyCubeBox = monkey cube box
- .desc = Drymate brand monkey cubes. Just add water!
-ent-MonkeyCubeWrapped = monkey cube
- .desc = Unwrap this to get a monkey cube.
- .suffix = Wrapped
-ent-KoboldCubeBox = kobold cube box
- .desc = Condensed kobolds in a cube. Just add water!
-ent-VariantCubeBox = variant cube box
- .desc = Both kobold cubes and monkey cubes. Just add water!
-ent-KoboldCubeWrapped = kobold cube
- .desc = Unwrap this to get a kobold cube.
- .suffix = Wrapped
-ent-SyndicateSpongeBox = monkey cube box
- .desc = Drymate brand monkey cubes. Just add water!
- .suffix = Syndicate
-ent-SyndicateSpongeWrapped = monkey cube
- .desc = Unwrap this to get a monkey cube.
- .suffix = Wrapped, Syndicate
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl
deleted file mode 100644
index eee0e0bf5d9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl
+++ /dev/null
@@ -1,55 +0,0 @@
-ent-Paper = paper
- .desc = A piece of white paper.
-ent-PaperScrap = paper scrap
- .desc = A crumpled up piece of white paper.
-ent-PaperOffice = office paper
- .desc = A plain sheet of office paper.
-ent-PaperArtifactAnalyzer = artifact analyzer printout
- .desc = The readout of a device forgotten to time
-ent-PaperCaptainsThoughts = captain's thoughts
- .desc = A page of the captain's journal. In luxurious lavender.
-ent-PaperCargoInvoice = cargo invoice
- .desc = A single unit of bureaucracy.
-ent-PaperCargoBountyManifest = bounty manifest
- .desc = A paper label designating a crate as containing a bounty. Selling a crate with this label will fulfill the bounty.
-ent-PaperCNCSheet = character sheet
- .desc = A sheet for your Carps and Crypts characters.
-ent-PaperWritten = { ent-Paper }
- .desc = { ent-Paper.desc }
-ent-NukeCodePaper = nuclear authentication codes
- .desc = { ent-Paper.desc }
-ent-NukeCodePaperStation = { ent-NukeCodePaper }
- .suffix = Station Only
- .desc = { ent-NukeCodePaper.desc }
-ent-BoxFolderBase = folder
- .desc = A folder filled with top secret paperwork.
-ent-BoxFolderRed = { ent-BoxFolderBase }
- .suffix = Red
- .desc = { ent-BoxFolderBase.desc }
-ent-BoxFolderBlue = { ent-BoxFolderBase }
- .suffix = Blue
- .desc = { ent-BoxFolderBase.desc }
-ent-BoxFolderYellow = { ent-BoxFolderBase }
- .suffix = Yellow
- .desc = { ent-BoxFolderBase.desc }
-ent-BoxFolderWhite = { ent-BoxFolderBase }
- .suffix = White
- .desc = { ent-BoxFolderBase.desc }
-ent-BoxFolderGrey = { ent-BoxFolderBase }
- .suffix = Grey
- .desc = { ent-BoxFolderBase.desc }
-ent-BoxFolderBlack = { ent-BoxFolderBase }
- .suffix = Black
- .desc = { ent-BoxFolderBase.desc }
-ent-BoxFolderGreen = { ent-BoxFolderBase }
- .suffix = Green
- .desc = { ent-BoxFolderBase.desc }
-ent-BoxFolderCentCom = CentCom folder
- .desc = CentCom's miserable little pile of secrets!
- .suffix = DO NOT MAP
-ent-BoxFolderClipboard = clipboard
- .desc = The weapon of choice for those on the front lines of bureaucracy.
-ent-BoxFolderCentComClipboard = CentCom clipboard
- .desc = A luxurious clipboard upholstered with green velvet. Often seen carried by CentCom officials, seldom seen actually used.
-ent-BoxFolderQmClipboard = requisition digi-board
- .desc = A bulky electric clipboard, filled with shipping orders and financing details. With so many compromising documents, you ought to keep this safe.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/pen.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/pen.ftl
deleted file mode 100644
index adbcbb5c138..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/pen.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-Pen = pen
- .desc = A dark ink pen.
-ent-PenEmbeddable = { ent-Pen }
- .desc = { ent-Pen.desc }
-ent-LuxuryPen = luxury pen
- .desc = A fancy and expensive pen that you only deserve to own if you're qualified to handle vast amounts of paperwork.
-ent-CyberPen = Cybersun pen
- .desc = A high-tech pen straight from Cybersun's legal department, capable of refracting hard-light at impossible angles through its diamond tip in order to write. So powerful, it's even able to rewrite officially stamped documents should the need arise.
-ent-PenCap = captain's fountain pen
- .desc = A luxurious fountain pen for the captain of the station.
-ent-PenCentcom = CentCom pen
- .desc = In an attempt to keep up with the "power" of the cybersun bureaucracy, NT made a replica of cyber pen, in their corporate style.
-ent-PenHop = hop's fountain pen
- .desc = A luxurious fountain pen for the hop of the station.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/pet_carrier.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/pet_carrier.ftl
deleted file mode 100644
index efb231f8ee9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/pet_carrier.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PetCarrier = big pet carrier
- .desc = Allows large animals to be carried comfortably.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/potatoai_chip.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/potatoai_chip.ftl
deleted file mode 100644
index c0b44c2e03d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/potatoai_chip.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PotatoAIChip = supercompact AI chip
- .desc = This high-tech AI chip requires a voltage of exactly 1.1V to function correctly.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/rubber_stamp.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/rubber_stamp.ftl
deleted file mode 100644
index eafc7e97b3b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/rubber_stamp.ftl
+++ /dev/null
@@ -1,55 +0,0 @@
-ent-RubberStampBase = generic rubber stamp
- .desc = A rubber stamp for stamping important documents.
-ent-RubberStampBaseAlt = alternate rubber stamp
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampCaptain = captain's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampCentcom = CentCom rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampChaplain = chaplain's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampLawyer = lawyer's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampClown = clown's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampCE = chief engineer's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampCMO = chief medical officer's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampHop = head of personnel's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampHos = head of security's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampMime = mime's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampQm = quartermaster's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampRd = research director's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampTrader = trader's rubber stamp
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampSyndicate = syndicate rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampWarden = warden's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
-ent-RubberStampApproved = APPROVED rubber stamp
- .desc = { ent-RubberStampBaseAlt.desc }
-ent-RubberStampDenied = DENIED rubber stamp
- .desc = { ent-RubberStampBaseAlt.desc }
-ent-RubberStampDetective = detective's rubber stamp
- .suffix = DO NOT MAP
- .desc = { ent-RubberStampBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/secret_documents.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/secret_documents.ftl
deleted file mode 100644
index 407ffa1bfd4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/secret_documents.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BookSecretDocuments = emergency security orders
- .desc = TOP SECRET. These documents specify the Emergency Orders that the HoS must carry out when ordered by Central Command.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl
deleted file mode 100644
index f51a6440f7c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-SpaceCash = spesos
- .desc = You gotta have money.
-ent-SpaceCash10 = { ent-SpaceCash }
- .suffix = 10
- .desc = { ent-SpaceCash.desc }
-ent-SpaceCash100 = { ent-SpaceCash }
- .suffix = 100
- .desc = { ent-SpaceCash.desc }
-ent-SpaceCash500 = { ent-SpaceCash }
- .suffix = 500
- .desc = { ent-SpaceCash.desc }
-ent-SpaceCash1000 = { ent-SpaceCash }
- .suffix = 1000
- .desc = { ent-SpaceCash.desc }
-ent-SpaceCash2500 = { ent-SpaceCash }
- .suffix = 2500
- .desc = { ent-SpaceCash.desc }
-ent-SpaceCash5000 = { ent-SpaceCash }
- .suffix = 5000
- .desc = { ent-SpaceCash.desc }
-ent-SpaceCash10000 = { ent-SpaceCash }
- .suffix = 10000
- .desc = { ent-SpaceCash.desc }
-ent-SpaceCash20000 = { ent-SpaceCash }
- .suffix = 20000
- .desc = { ent-SpaceCash.desc }
-ent-SpaceCash30000 = { ent-SpaceCash }
- .suffix = 30000
- .desc = { ent-SpaceCash.desc }
-ent-SpaceCash1000000 = { ent-SpaceCash }
- .suffix = 1000000
- .desc = { ent-SpaceCash.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/spaceshroom.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/spaceshroom.ftl
deleted file mode 100644
index ffe44e5cc6a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/spaceshroom.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-Spaceshroom = spaceshroom
- .desc = A cluster of wild mushrooms that likes to grow in dark, moist environments.
- .suffix = Structure
-ent-FoodSpaceshroom = spaceshroom
- .desc = A wild mushroom. There's no telling what effect it could have...
-ent-FoodSpaceshroomCooked = cooked spaceshroom
- .desc = A wild mushroom that has been cooked through. It seems the heat has removed its chemical effects.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/spider_web.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/spider_web.ftl
deleted file mode 100644
index 00c14ba50d4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/spider_web.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-SpiderWeb = spider web
- .desc = It's stringy and sticky.
-ent-SpiderWebClown = clown spider web
- .desc = It's stringy and slippy.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/subdermal_implants.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/subdermal_implants.ftl
deleted file mode 100644
index 5fd3733456e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/subdermal_implants.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-BaseSubdermalImplant = implant
- .desc = A microscopic chip that's injected under the skin.
-ent-SadTromboneImplant = sad trombone implant
- .desc = This implant plays a sad tune when the user dies.
-ent-LightImplant = light implant
- .desc = This implant emits light from the user's skin on activation.
-ent-BikeHornImplant = bike horn implant
- .desc = This implant lets the user honk anywhere at any time.
-ent-TrackingImplant = tracking implant
- .desc = This implant has a tracking device attached to the suit sensor network, as well as a condition monitor for the Security radio channel.
-ent-StorageImplant = storage implant
- .desc = This implant grants hidden storage within a person's body using bluespace technology.
-ent-FreedomImplant = freedom implant
- .desc = This implant lets the user break out of hand restraints up to three times before ceasing to function anymore.
-ent-UplinkImplant = uplink implant
- .desc = This implant lets the user access a hidden Syndicate uplink at will.
-ent-EmpImplant = EMP implant
- .desc = This implant creates an electromagnetic pulse when activated.
-ent-ScramImplant = scram implant
- .desc = This implant randomly teleports the user within a large radius when activated.
-ent-DnaScramblerImplant = DNA scrambler implant
- .desc = This implant lets the user randomly change their appearance and name once.
-ent-MicroBombImplant = micro-bomb implant
- .desc = This implant detonates the user upon activation or upon death.
-ent-MacroBombImplant = macro-bomb implant
- .desc = This implant creates a large explosion on death after a preprogrammed countdown.
-ent-DeathAcidifierImplant = death-acidifier implant
- .desc = This implant melts the user and their equipment upon death.
-ent-DeathRattleImplant = death rattle implant
- .desc = This implant will inform the Syndicate radio channel should the user fall into critical condition or die.
-ent-MindShieldImplant = mindshield implant
- .desc = This implant will ensure loyalty to Nanotrasen and prevent mind control devices.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl
deleted file mode 100644
index 0ba39a65e69..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl
+++ /dev/null
@@ -1,138 +0,0 @@
-ent-FloorTileItemBase = { ent-BaseItem }
- .desc = These could work as a pretty decent throwing weapon.
-ent-FloorTileItemSteel = steel tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemSteelCheckerDark = steel dark checker tile
- .desc = { ent-FloorTileItemSteel.desc }
-ent-FloorTileItemSteelCheckerLight = steel light checker tile
- .desc = { ent-FloorTileItemSteel.desc }
-ent-FloorTileItemMetalDiamond = steel tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemWood = wood floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemWhite = white tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemDark = dark tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemTechmaint = techmaint floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemReinforced = reinforced tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemMono = mono tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemLino = linoleum floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemBrassFilled = filled brass plate
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemBrassReebe = smooth brass plate
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemDirty = dirty tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemElevatorShaft = elevator shaft tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemRockVault = rock vault tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemBlue = blue tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemLime = lime tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemMining = mining tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemMiningDark = dark mining tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemMiningLight = light mining tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemFreezer = freezer tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemShowroom = showroom tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemHydro = hydro tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemBar = bar tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemClown = clown tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemMime = mime tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemKitchen = kitchen tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemLaundry = laundry tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemConcrete = concrete tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemGrayConcrete = gray concrete tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemOldConcrete = old concrete tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemArcadeBlue = blue arcade floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemArcadeBlue2 = blue arcade floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemArcadeRed = red arcade floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemEighties = eighties floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemCarpetClown = clown carpet floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemCarpetOffice = office carpet floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemBoxing = boxing ring floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemGym = gym floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemShuttleWhite = white shuttle floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemShuttleBlue = blue shuttle floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemShuttleOrange = orange shuttle floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemShuttlePurple = purple shuttle floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemShuttleRed = red shuttle floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemShuttleGrey = grey shuttle floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemShuttleBlack = black shuttle floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemGold = gold floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemSilver = silver tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemGCircuit = green circuit floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemBCircuit = blue circuit floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemGCircuit4 = { ent-FloorTileItemGCircuit }
- .suffix = 4
- .desc = { ent-FloorTileItemGCircuit.desc }
-ent-FloorTileItemBCircuit4 = { ent-FloorTileItemBCircuit }
- .suffix = 4
- .desc = { ent-FloorTileItemBCircuit.desc }
-ent-FloorTileItemGrass = grass tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemGrassJungle = jungle grass tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemSnow = snow tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemWoodPattern = wood pattern floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemFlesh = flesh floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemSteelMaint = steel maint floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemGratingMaint = grating maint floor
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemWeb = web tile
- .desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemAstroGrass = astro-grass
- .desc = Fake grass that covers up wires and even comes with realistic NanoTrimmings!
-ent-FloorTileItemMowedAstroGrass = mowed astro-grass
- .desc = Fake grass that covers up wires and even comes with realistic NanoTrimmings!
-ent-FloorTileItemJungleAstroGrass = jungle astro-grass
- .desc = Fake grass that covers up wires and even comes with realistic NanoTrimmings!
-ent-FloorTileItemAstroIce = astro-ice
- .desc = Fake ice that's as slippery as the real thing, while being easily removable!
-ent-FloorTileItemAstroSnow = astro-snow
- .desc = Fake snow that's as fluffy as the real thing, while being easily removable!
-ent-FloorTileItemWoodLarge = large wood floor
- .desc = { ent-FloorTileItemBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/torch.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/torch.ftl
deleted file mode 100644
index 02893615220..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/torch.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Torch = torch
- .desc = A torch fashioned from some wood.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/utensils.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/utensils.ftl
deleted file mode 100644
index b59633f5877..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/utensils.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-UtensilBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-UtensilBasePlastic = { ent-UtensilBase }
- .desc = { ent-UtensilBase.desc }
-ent-Fork = fork
- .desc = An eating utensil, perfect for stabbing.
-ent-ForkPlastic = plastic fork
- .desc = An eating utensil, perfect for stabbing.
-ent-Spoon = spoon
- .desc = There is no spoon.
-ent-SpoonPlastic = plastic spoon
- .desc = There is no spoon.
-ent-KnifePlastic = plastic knife
- .desc = That's not a knife. This is a knife.
-ent-BarSpoon = bar spoon
- .desc = Your personal helper to mix drinks and changes lives.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/antimatter_jar.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/antimatter_jar.ftl
deleted file mode 100644
index f91aed9b044..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/antimatter_jar.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-AmeJar = AME fuel jar
- .desc = A hermetically sealed jar containing antimatter for use in an antimatter reactor.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/antimatter_part.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/antimatter_part.ftl
deleted file mode 100644
index 55f3a7332bb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/antimatter_part.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-AmePart = AME flatpack
- .desc = A flatpack used for constructing an antimatter engine reactor.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl
deleted file mode 100644
index ab826de9e0a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl
+++ /dev/null
@@ -1,40 +0,0 @@
-ent-BaseLightbulb = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-BaseLightTube = { ent-BaseLightbulb }
- .desc = { ent-BaseLightbulb.desc }
-ent-LightBulb = incandescent light bulb
- .desc = A light bulb.
-ent-LedLightBulb = led light bulb
- .desc = A power efficient light bulb.
-ent-LightBulbOld = old incandescent light bulb
- .desc = An aging light bulb.
-ent-LightBulbBroken = incandescent light bulb
- .desc = A light bulb.
- .suffix = Broken
-ent-ServiceLightBulb = service light bulb
- .desc = A low-brightness green lightbulb used in janitorial service lights.
-ent-LightTube = fluorescent light tube
- .desc = A light fixture.
-ent-LightTubeOld = old fluorescent light tube
- .desc = An aging light fixture.
-ent-LightTubeBroken = fluorescent light tube
- .desc = A light fixture.
- .suffix = Broken
-ent-LedLightTube = led light tube
- .desc = A high power high energy bulb.
-ent-ExteriorLightTube = exterior light tube
- .desc = A high power high energy bulb for the depths of space. May contain mercury.
-ent-SodiumLightTube = sodium light tube
- .desc = A high power high energy bulb for the depths of space. Salty.
-ent-LightTubeCrystalCyan = cyan crystal light tube
- .desc = A high power high energy bulb which has a small colored crystal inside.
-ent-LightTubeCrystalBlue = blue crystal light tube
- .desc = { ent-LightTubeCrystalCyan.desc }
-ent-LightTubeCrystalPink = pink crystal light tube
- .desc = { ent-LightTubeCrystalCyan.desc }
-ent-LightTubeCrystalOrange = orange crystal light tube
- .desc = { ent-LightTubeCrystalCyan.desc }
-ent-LightTubeCrystalRed = red crystal light tube
- .desc = { ent-LightTubeCrystalCyan.desc }
-ent-LightTubeCrystalGreen = green crystal light tube
- .desc = { ent-LightTubeCrystalCyan.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl
deleted file mode 100644
index 219a5bb97d4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PortableRecharger = portable recharger
- .desc = High-tech recharger adapted for portability
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/powercells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/powercells.ftl
deleted file mode 100644
index 9b7d68f9c25..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/powercells.ftl
+++ /dev/null
@@ -1,53 +0,0 @@
-ent-BasePowerCell = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-PowerCellPotato = potato battery
- .desc = Someone's stuck two nails and some wire in a large potato. Somehow it provides a little charge.
-ent-PowerCellSmall = small-capacity power cell
- .desc = A rechargeable power cell. This is the cheapest kind you can find.
- .suffix = Full
-ent-PowerCellSmallPrinted = { ent-PowerCellSmall }
- .suffix = Empty
- .desc = { ent-PowerCellSmall.desc }
-ent-PowerCellMedium = medium-capacity power cell
- .desc = A rechargeable power cell. This is the popular and reliable version.
- .suffix = Full
-ent-PowerCellMediumPrinted = { ent-PowerCellMedium }
- .suffix = Empty
- .desc = { ent-PowerCellMedium.desc }
-ent-PowerCellHigh = high-capacity power cell
- .desc = A rechargeable standardized power cell. This premium brand stores up to 50% more energy than the competition.
- .suffix = Full
-ent-PowerCellHighPrinted = { ent-PowerCellHigh }
- .suffix = Empty
- .desc = { ent-PowerCellHigh.desc }
-ent-PowerCellHyper = hyper-capacity power cell
- .desc = A rechargeable standardized power cell. This one looks like a rare and powerful prototype.
- .suffix = Full
-ent-PowerCellHyperPrinted = { ent-PowerCellHyper }
- .suffix = Empty
- .desc = { ent-PowerCellHyper.desc }
-ent-PowerCellMicroreactor = microreactor power cell
- .desc = A rechargeable standardized microreactor cell. Has lower capacity but slowly recharges by itself.
- .suffix = Full
-ent-PowerCellMicroreactorPrinted = { ent-PowerCellMicroreactor }
- .suffix = Empty
- .desc = { ent-PowerCellMicroreactor.desc }
-ent-PowerCellAntiqueProto = antique power cell prototype
- .desc = A small cell that self recharges. Used in old laser arms research.
-ent-BasePowerCage = { ent-BasePowerCell }
- .desc = { ent-BasePowerCell.desc }
-ent-PowerCageSmall = small-capacity power cage
- .desc = A rechargeable power cage for big devices. This is the cheapest kind you can find.
-ent-PowerCageMedium = medium-capacity power cage
- .desc = A rechargeable power cage for big devices. The gold standard of capacity and cost.
-ent-PowerCageHigh = high-capacity power cage
- .desc = A rechargeable power cage for big devices. Increased capacity for increased power levels.
-ent-PowerCageSmallEmpty = { ent-PowerCageSmall }
- .suffix = Empty
- .desc = { ent-PowerCageSmall.desc }
-ent-PowerCageMediumEmpty = { ent-PowerCageMedium }
- .suffix = Empty
- .desc = { ent-PowerCageMedium.desc }
-ent-PowerCageHighEmpty = { ent-PowerCageHigh }
- .suffix = Empty
- .desc = { ent-PowerCageHigh.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/powersink.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/powersink.ftl
deleted file mode 100644
index 021de8c9046..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/powersink.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PowerSink = power sink
- .desc = Drains immense amounts of electricity from the grid.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/solar_parts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/solar_parts.ftl
deleted file mode 100644
index 82a2cf0760b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/solar_parts.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SolarAssemblyPart = solar assembly flatpack
- .desc = A flatpack used for constructing a solar assembly.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/shields/shields.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/shields/shields.ftl
deleted file mode 100644
index 589d466db31..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/shields/shields.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-BaseShield = base shield
- .desc = A shield!
-ent-RiotShield = riot shield
- .desc = A large tower shield. Good for controlling crowds.
-ent-RiotLaserShield = riot laser shield
- .desc = A riot shield built for withstanding lasers, but not much else.
-ent-RiotBulletShield = riot bullet shield
- .desc = A ballistic riot shield built for withstanding bullets, but not much else.
-ent-WoodenBuckler = wooden buckler
- .desc = A small round wooden makeshift shield.
-ent-MakeshiftShield = makeshift shield
- .desc = A rundown looking shield, not good for much.
-ent-WebShield = web shield
- .desc = A stringy shield. It's weak, and doesn't seem to do well against heat.
-ent-ClockworkShield = clockwork shield
- .desc = Ratvar oyrffrf lbh jvgu uvf cebgrpgvba.
-ent-MirrorShield = mirror shield
- .desc = Glows an eerie red. You hear the Geometer whispering...
-ent-EnergyShield = energy shield
- .desc = Exotic energy shield, when folded, can even fit in your pocket.
-ent-BrokenEnergyShield = broken energy shield
- .desc = Something inside is burned out, it is no longer functional.
-ent-TelescopicShield = telescopic shield
- .desc = An advanced riot shield made of lightweight materials that collapses for easy storage.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/atmos.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/atmos.ftl
deleted file mode 100644
index f81349f44e8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/atmos.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-GasAnalyzer = gas analyzer
- .desc = A hand-held environmental scanner which reports current gas levels.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/cargo/cargo_pallet.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/cargo/cargo_pallet.ftl
deleted file mode 100644
index db49ea6fef6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/cargo/cargo_pallet.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-CargoPallet = cargo pallet
- .desc = Common fixture of logistics and cargo. Subtle reminder where crates go during transport to avoid bruised shins.
-ent-CargoPalletSell = cargo selling pallet
- .desc = Designates valid items to sell.
-ent-CargoPalletBuy = cargo buying pallet
- .desc = Designates where orders will appear when purchased.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chapel/bibles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chapel/bibles.ftl
deleted file mode 100644
index 64b33166a6a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chapel/bibles.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-Bible = bible
- .desc = New Interstellar Version 2340
-ent-BibleNecronomicon = necronomicon
- .desc = There's a note: Klatuu, Verata, Nikto -- Don't forget it again!
-ent-ActionBibleSummon = Summon familiar
- .desc = Summon a familiar that will aid you and gain humanlike intelligence once inhabited by a soul.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chapel/urn.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chapel/urn.ftl
deleted file mode 100644
index e7afc306485..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chapel/urn.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Urn = urn
- .desc = Store the Dead smart and Compact since 2300
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl
deleted file mode 100644
index cfbc2dc5290..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl
+++ /dev/null
@@ -1,50 +0,0 @@
-ent-Jug = jug
- .desc = Used to contain a very large amount of chemicals or solutions. Chugging is extremely ill-advised.
-ent-JugCarbon = jug (carbon)
- .desc = { ent-Jug.desc }
-ent-JugIodine = jug (iodine)
- .desc = { ent-Jug.desc }
-ent-JugFluorine = jug (fluorine)
- .desc = { ent-Jug.desc }
-ent-JugChlorine = jug (chlorine)
- .desc = { ent-Jug.desc }
-ent-JugAluminium = jug (aluminium)
- .desc = { ent-Jug.desc }
-ent-JugPhosphorus = jug (phosphorus)
- .desc = { ent-Jug.desc }
-ent-JugSulfur = jug (sulfur)
- .desc = { ent-Jug.desc }
-ent-JugSilicon = jug (silicon)
- .desc = { ent-Jug.desc }
-ent-JugHydrogen = jug (hydrogen)
- .desc = { ent-Jug.desc }
-ent-JugLithium = jug (lithium)
- .desc = { ent-Jug.desc }
-ent-JugSodium = jug (sodium)
- .desc = { ent-Jug.desc }
-ent-JugPotassium = jug (potassium)
- .desc = { ent-Jug.desc }
-ent-JugRadium = jug (radium)
- .desc = { ent-Jug.desc }
-ent-JugIron = jug (iron)
- .desc = { ent-Jug.desc }
-ent-JugCopper = jug (copper)
- .desc = { ent-Jug.desc }
-ent-JugGold = jug (gold)
- .desc = { ent-Jug.desc }
-ent-JugMercury = jug (mercury)
- .desc = { ent-Jug.desc }
-ent-JugSilver = jug (silver)
- .desc = { ent-Jug.desc }
-ent-JugEthanol = jug (ethanol)
- .desc = { ent-Jug.desc }
-ent-JugSugar = jug (sugar)
- .desc = { ent-Jug.desc }
-ent-JugNitrogen = jug (nitrogen)
- .desc = { ent-Jug.desc }
-ent-JugOxygen = jug (oxygen)
- .desc = { ent-Jug.desc }
-ent-JugPlantBGone = jug (Plant-B-Gone)
- .desc = { ent-Jug.desc }
-ent-JugWeldingFuel = jug (welding fuel)
- .desc = { ent-Jug.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl
deleted file mode 100644
index ce498a9af9a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl
+++ /dev/null
@@ -1,38 +0,0 @@
-ent-BaseChemistryEmptyBottle = bottle
- .desc = A small bottle.
-ent-ChemistryEmptyBottle01 = { ent-BaseChemistryEmptyBottle }
- .desc = { ent-BaseChemistryEmptyBottle.desc }
-ent-ChemistryEmptyBottle02 = { ent-BaseChemistryEmptyBottle }
- .desc = { ent-BaseChemistryEmptyBottle.desc }
-ent-ChemistryEmptyBottle03 = { ent-BaseChemistryEmptyBottle }
- .desc = { ent-BaseChemistryEmptyBottle.desc }
-ent-ChemistryEmptyBottle04 = { ent-BaseChemistryEmptyBottle }
- .desc = { ent-BaseChemistryEmptyBottle.desc }
-ent-BaseChemistryBottleFilled = { ent-BaseChemistryEmptyBottle }
- .desc = { ent-BaseChemistryEmptyBottle.desc }
-ent-EpinephrineChemistryBottle = epinephrine bottle
- .desc = { ent-BaseChemistryBottleFilled.desc }
-ent-RobustHarvestChemistryBottle = robust harvest bottle
- .desc = This will increase the potency of your plants.
-ent-EZNutrientChemistryBottle = ez nutrient bottle
- .desc = This will provide some nutrition to your plants.
-ent-Left4ZedChemistryBottle = left-4-zed bottle
- .desc = This will increase the effectiveness of mutagen.
-ent-UnstableMutagenChemistryBottle = unstable mutagen bottle
- .desc = This will cause rapid mutations in your plants.
-ent-NocturineChemistryBottle = nocturine bottle
- .desc = This will make someone fall down almost immediately. Hard to overdose on.
-ent-EphedrineChemistryBottle = ephedrine bottle
- .desc = { ent-BaseChemistryBottleFilled.desc }
-ent-OmnizineChemistryBottle = omnizine bottle
- .desc = { ent-BaseChemistryBottleFilled.desc }
-ent-CognizineChemistryBottle = cognizine bottle
- .desc = { ent-BaseChemistryBottleFilled.desc }
-ent-PaxChemistryBottle = pax bottle
- .desc = { ent-BaseChemistryBottleFilled.desc }
-ent-MuteToxinChemistryBottle = mute toxin bottle
- .desc = { ent-BaseChemistryBottleFilled.desc }
-ent-LeadChemistryBottle = lead bottle
- .desc = { ent-BaseChemistryBottleFilled.desc }
-ent-ToxinChemistryBottle = toxin bottle
- .desc = { ent-BaseChemistryBottleFilled.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl
deleted file mode 100644
index fc8ff4af54a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseChemistryEmptyVial = vial
- .desc = A small vial.
-ent-VestineChemistryVial = vestine vial
- .desc = { ent-BaseChemistryEmptyVial.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl
deleted file mode 100644
index 0fad94dd9b1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-BaseBeaker = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-BaseBeakerMetallic = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-Beaker = beaker
- .desc = Used to contain a moderate amount of chemicals and solutions.
-ent-CryoxadoneBeakerSmall = cryoxadone beaker
- .desc = Filled with a reagent used in cryogenic tubes.
-ent-LargeBeaker = large beaker
- .desc = Used to contain a large amount of chemicals or solutions.
-ent-CryostasisBeaker = cryostasis beaker
- .desc = Used to contain chemicals or solutions without reactions.
-ent-BluespaceBeaker = bluespace beaker
- .desc = Powered by experimental bluespace technology.
-ent-Dropper = dropper
- .desc = Used to transfer small amounts of chemical solution between containers.
-ent-BorgDropper = borgdropper
- .desc = Used to transfer small amounts of chemical solution between containers. Extended for use by medical borgs.
-ent-BaseSyringe = syringe
- .desc = Used to draw blood samples from mobs, or to inject them with reagents.
-ent-Syringe = { ent-BaseSyringe }
- .desc = { ent-BaseSyringe.desc }
-ent-PrefilledSyringe = { ent-BaseSyringe }
- .desc = { ent-BaseSyringe.desc }
-ent-SyringeBluespace = bluespace syringe
- .desc = Injecting with advanced bluespace technology.
-ent-SyringeCryostasis = cryostasis syringe
- .desc = A syringe used to contain chemicals or solutions without reactions.
-ent-Pill = pill
- .desc = It's not a suppository.
-ent-PillCanister = pill canister
- .desc = Holds up to 10 pills.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry/chem_bag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry/chem_bag.ftl
deleted file mode 100644
index e46a24ecba2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry/chem_bag.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ChemBag = chemistry bag
- .desc = A bag for storing chemistry products, such as pills, pill canisters, bottles, and syringes.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/forensics/forensics.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/forensics/forensics.ftl
deleted file mode 100644
index 840ad676f6e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/forensics/forensics.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ForensicPad = forensic pad
- .desc = A forensic pad for collecting fingerprints or fibers.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/leaves.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/leaves.ftl
deleted file mode 100644
index dc63fc38934..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/leaves.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-LeavesCannabis = cannabis leaves
- .desc = Recently legalized in most galaxies.
-ent-LeavesCannabisDried = dried cannabis leaves
- .desc = Dried cannabis leaves, ready to be ground.
-ent-GroundCannabis = ground cannabis
- .desc = Ground cannabis, ready to take you on a trip.
-ent-LeavesCannabisRainbow = rainbow cannabis leaves
- .desc = Is it supposed to be glowing like that...?
-ent-LeavesCannabisRainbowDried = dried rainbow cannabis leaves
- .desc = Dried rainbow cannabis leaves, ready to be ground.
-ent-GroundCannabisRainbow = ground rainbow cannabis
- .desc = Ground rainbow cannabis, ready to take you on a trip.
-ent-LeavesTobacco = tobacco leaves
- .desc = Dry them out to make some smokes.
-ent-LeavesTobaccoDried = dried tobacco leaves
- .desc = Dried tobacco leaves, ready to be ground.
-ent-GroundTobacco = ground tobacco
- .desc = Ground tobacco, perfect for hand-rolled cigarettes.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl
deleted file mode 100644
index 1cf9147ad36..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl
+++ /dev/null
@@ -1,116 +0,0 @@
-ent-SeedBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-WheatSeeds = packet of wheat seeds
- .desc = { ent-SeedBase.desc }
-ent-OatSeeds = packet of oat seeds
- .desc = { ent-SeedBase.desc }
-ent-BananaSeeds = packet of banana seeds
- .desc = { ent-SeedBase.desc }
-ent-MimanaSeeds = packet of mimana seeds
- .desc = { ent-SeedBase.desc }
-ent-CarrotSeeds = packet of carrot seeds
- .desc = { ent-SeedBase.desc }
-ent-CabbageSeeds = packet of cabbage seeds
- .desc = { ent-SeedBase.desc }
-ent-GarlicSeeds = packet of garlic seeds
- .desc = { ent-SeedBase.desc }
-ent-LaughinPeaSeeds = packet of laughin' pea pods
- .desc = These seeds give off a very soft purple glow.. they should grow into Laughin' Peas.
-ent-LemonSeeds = packet of lemon seeds
- .desc = { ent-SeedBase.desc }
-ent-LemoonSeeds = packet of lemoon seeds
- .desc = { ent-SeedBase.desc }
-ent-LimeSeeds = packet of lime seeds
- .desc = { ent-SeedBase.desc }
-ent-OrangeSeeds = packet of orange seeds
- .desc = { ent-SeedBase.desc }
-ent-PineappleSeeds = packet of pineapple seeds
- .desc = { ent-SeedBase.desc }
-ent-PotatoSeeds = packet of potato seeds
- .desc = { ent-SeedBase.desc }
-ent-SugarcaneSeeds = packet of sugarcane seeds
- .desc = { ent-SeedBase.desc }
-ent-TowercapSeeds = packet of tower cap spores
- .desc = { ent-SeedBase.desc }
-ent-SteelcapSeeds = packet of steel cap spores
- .desc = { ent-SeedBase.desc }
-ent-TomatoSeeds = packet of tomato seeds
- .desc = { ent-SeedBase.desc }
-ent-BlueTomatoSeeds = packet of blue tomato seeds
- .desc = { ent-SeedBase.desc }
-ent-BloodTomatoSeeds = packet of blood tomato seeds
- .desc = { ent-SeedBase.desc }
-ent-KillerTomatoSeeds = packet of killer tomato seeds
- .desc = { ent-SeedBase.desc }
-ent-EggplantSeeds = packet of eggplant seeds
- .desc = { ent-SeedBase.desc }
-ent-AppleSeeds = packet of apple seeds
- .desc = { ent-SeedBase.desc }
-ent-CornSeeds = packet of corn seeds
- .desc = { ent-SeedBase.desc }
-ent-ChanterelleSeeds = packet of chanterelle spores
- .desc = { ent-SeedBase.desc }
-ent-EggySeeds = packet of egg-plant seeds
- .desc = { ent-SeedBase.desc }
-ent-TobaccoSeeds = packet of tobacco seeds
- .desc = These seeds grow into tobacco plants.
-ent-CannabisSeeds = packet of cannabis seeds
- .desc = Taxable.
-ent-RainbowCannabisSeeds = packet of rainbow cannabis seeds
- .desc = These seeds grow into rainbow weed. Groovy... and also highly addictive.
-ent-NettleSeeds = packet of nettle seeds
- .desc = Handle with gloves.
-ent-DeathNettleSeeds = packet of death nettle seeds
- .desc = Handle with very thick gloves.
-ent-ChiliSeeds = packet of chili seeds
- .desc = Spicy.
-ent-ChillySeeds = packet of chilly seeds
- .desc = Frostburn.
-ent-AloeSeeds = packet of aloe seeds
- .desc = Soothing.
-ent-PoppySeeds = packet of poppy seeds
- .desc = Do not eat within 72 hours of a drug test.
-ent-LilySeeds = packet of lily seeds
- .desc = These seeds grow into lilies.
-ent-LingzhiSeeds = packet of lingzhi spores
- .desc = Also known as reishi.
-ent-AmbrosiaVulgarisSeeds = packet of ambrosia vulgaris seeds
- .desc = A medicinal plant for the common folk.
-ent-AmbrosiaDeusSeeds = packet of ambrosia deus seeds
- .desc = A medicinal plant for the gods themselves.
-ent-GalaxythistleSeeds = packet of galaxythistle seeds
- .desc = Brushes of starry nights.
-ent-FlyAmanitaSeeds = packet of fly amanita spores
- .desc = The iconic, extremely deadly mushroom to be used for purely ornamental purposes.
-ent-GatfruitSeeds = packet of gatfruit seeds
- .desc = These are no peashooters.
-ent-OnionSeeds = packet of onion seeds
- .desc = Not a shallot.
-ent-RiceSeeds = packet of rice seeds
- .desc = { ent-SeedBase.desc }
-ent-SoybeanSeeds = packet of soybean seeds
- .desc = { ent-SeedBase.desc }
-ent-SpacemansTrumpetSeeds = packet of spaceman's trumpet seeds
- .desc = { ent-SeedBase.desc }
-ent-KoibeanSeeds = packet of koibean seeds
- .desc = { ent-SeedBase.desc }
-ent-OnionRedSeeds = packet of red onion seeds
- .desc = Purple despite the name.
-ent-WatermelonSeeds = packet of watermelon seeds
- .desc = { ent-SeedBase.desc }
-ent-GrapeSeeds = packet of grape seeds
- .desc = { ent-SeedBase.desc }
-ent-CocoaSeeds = packet of cocoa seeds
- .desc = { ent-SeedBase.desc }
-ent-BerrySeeds = packet of berry seeds
- .desc = { ent-SeedBase.desc }
-ent-BungoSeeds = packet of bungo seeds
- .desc = Don't eat the pits.
-ent-PeaSeeds = packet of pea pods
- .desc = These humble plants were once a vital part in the study of genetics.
-ent-PumpkinSeeds = packet of pumpkin seeds
- .desc = { ent-SeedBase.desc }
-ent-CottonSeeds = packet of cotton seeds
- .desc = { ent-SeedBase.desc }
-ent-PyrottonSeeds = packet of pyrotton seeds
- .desc = { ent-SeedBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/sprays.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/sprays.ftl
deleted file mode 100644
index d810cd72e1a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/sprays.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-PlantBGoneSpray = Plant-B-Gone
- .desc = Kills those pesky weeds!
- .suffix = Filled
-ent-WeedSpray = weed spray
- .desc = It's a toxic mixture, in spray form, to kill small weeds.
- .suffix = Filled
-ent-PestSpray = pest spray
- .desc = It's some pest eliminator spray! Do not inhale!
- .suffix = Filled
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/tools.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/tools.ftl
deleted file mode 100644
index 0107dee9e5e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/tools.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-HydroponicsToolMiniHoe = mini hoe
- .desc = It's used for removing weeds or scratching your back.
-ent-HydroponicsToolClippers = plant clippers
- .desc = A tool used to take samples from plants.
-ent-HydroponicsToolScythe = scythe
- .desc = A sharp and curved blade on a long fibremetal handle, this tool makes it easy to reap what you sow.
-ent-HydroponicsToolHatchet = hatchet
- .desc = A very sharp axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood.
-ent-HydroponicsToolSpade = spade
- .desc = A small tool for digging and moving dirt.
-ent-PlantBag = plant bag
- .desc = A bag for botanists to easily move their huge harvests.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/janitor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/janitor.ftl
deleted file mode 100644
index 46a43f0361f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/janitor.ftl
+++ /dev/null
@@ -1,13 +0,0 @@
-ent-MopItem = mop
- .desc = A mop that can't be stopped, viscera cleanup detail awaits.
-ent-AdvMopItem = advanced mop
- .desc = Motorized mop that has a bigger reservoir and quickly replaces reagents inside with water. Automatic Clown Countermeasure not included.
-ent-WetFloorSign = wet floor sign
- .desc = Caution! Wet Floor!
-ent-WetFloorSignMineExplosive = { ent-WetFloorSign }
- .suffix = Explosive
- .desc = { ent-WetFloorSign.desc }
-ent-Plunger = plunger
- .desc = A plunger with a red plastic suction-cup and a wooden handle. Used to unclog drains.
-ent-RagItem = damp rag
- .desc = For cleaning up messes, you suppose.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/soap.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/soap.ftl
deleted file mode 100644
index 2bccd2c9448..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/soap.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-Soap = soap
- .desc = A cheap bar of soap. Doesn't smell.
-ent-SoapNT = soap
- .desc = A Nanotrasen brand bar of soap. Smells of plasma.
-ent-SoapDeluxe = soap
- .desc = A deluxe Waffle Co. brand bar of soap. Smells of strawberries.
-ent-SoapSyndie = soap
- .desc = An untrustworthy bar of soap. Smells of fear.
-ent-SoapletSyndie = soaplet
- .desc = A tiny piece of syndicate soap.
-ent-SoapHomemade = soap
- .desc = A homemade bar of soap. Smells of... well....
-ent-SoapOmega = omega soap
- .desc = The most advanced soap known to mankind. Smells of bluespace.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/spray.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/spray.ftl
deleted file mode 100644
index b151357473c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/spray.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-SprayBottle = spray bottle
- .desc = A spray bottle with an unscrewable top.
- .suffix = Empty
-ent-MegaSprayBottle = mega spray bottle
- .desc = A huge spray bottle, capable of unrivaled janitorial power.
- .suffix = Empty
-ent-SprayBottleWater = spray bottle
- .suffix = Filled
- .desc = { ent-SprayBottle.desc }
-ent-SprayBottleSpaceCleaner = space cleaner
- .desc = BLAM!-brand non-foaming space cleaner!
-ent-Vapor = vapor
- .desc = { "" }
-ent-BigVapor = { ent-Vapor }
- .desc = { ent-Vapor.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/trashbag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/trashbag.ftl
deleted file mode 100644
index 0012115ec0c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/janitorial/trashbag.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-TrashBag = trash bag
- .desc = { ent-BaseStorageItem.desc }
-ent-TrashBagBlue = trash bag
- .desc = { ent-TrashBag.desc }
-ent-BagOfSummoningGarbage = spell of all-consuming cleanliness
- .desc = { ent-TrashBagBlue.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/kitchen/foodcarts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/kitchen/foodcarts.ftl
deleted file mode 100644
index 52a78d57613..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/kitchen/foodcarts.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-FoodCartBase = Food Cart
- .desc = A cart for food.
-ent-FoodCartHot = hot food cart
- .desc = Get out there and slang some dogs.
-ent-FoodCartCold = cold food cart
- .desc = It's the Ice Cream Man! It's the Ice Cream Man!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/librarian/books_bag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/librarian/books_bag.ftl
deleted file mode 100644
index ab09442b52a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/librarian/books_bag.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BooksBag = books bag
- .desc = A refined bag to carry your own library
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl
deleted file mode 100644
index 4666f2d9a0c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl
+++ /dev/null
@@ -1,58 +0,0 @@
-ent-BaseMechPart = { "" }
- .desc = { "" }
-ent-BaseRipleyPart = { ent-BaseMechPart }
- .desc = { ent-BaseMechPart.desc }
-ent-BaseRipleyPartItem = { ent-BaseRipleyPart }
- .desc = { ent-BaseRipleyPart.desc }
-ent-RipleyHarness = ripley harness
- .desc = The core of the Ripley APLU.
-ent-RipleyLArm = ripley left arm
- .desc = The left arm of the Ripley APLU. It belongs on the chassis of the mech.
-ent-RipleyLLeg = ripley left leg
- .desc = The left leg of the Ripley APLU. It belongs on the chassis of the mech.
-ent-RipleyRLeg = ripley right leg
- .desc = The right leg of the Ripley APLU. It belongs on the chassis of the mech.
-ent-RipleyRArm = ripley right arm
- .desc = The right arm of the Ripley APLU. It belongs on the chassis of the mech.
-ent-RipleyChassis = ripley chassis
- .desc = An in-progress construction of the Ripley APLU mech.
-ent-BaseHonkerPart = { ent-BaseMechPart }
- .desc = { ent-BaseMechPart.desc }
-ent-BaseHonkerPartItem = { ent-BaseHonkerPart }
- .desc = { ent-BaseHonkerPart.desc }
-ent-HonkerHarness = H.O.N.K. harness
- .desc = The core of the H.O.N.K. mech
-ent-HonkerLArm = H.O.N.K. left arm
- .desc = A H.O.N.K. left arm, with unique sockets that accept odd weaponry designed by clown scientists.
-ent-HonkerLLeg = H.O.N.K. left leg
- .desc = A H.O.N.K. left leg. The foot appears just large enough to fully accommodate a clown shoe.
-ent-HonkerRLeg = H.O.N.K. right leg
- .desc = A H.O.N.K. right leg. The foot appears just large enough to fully accommodate a clown shoe.
-ent-HonkerRArm = H.O.N.K. right arm
- .desc = A H.O.N.K. right arm, with unique sockets that accept odd weaponry designed by clown scientists.
-ent-HonkerChassis = H.O.N.K. chassis
- .desc = An in-progress construction of a H.O.N.K. mech. Contains chuckle unit, bananium core and honk support systems.
-ent-BaseHamtrPart = { ent-BaseMechPart }
- .desc = { ent-BaseMechPart.desc }
-ent-BaseHamtrPartItem = { ent-BaseHamtrPart }
- .desc = { ent-BaseHamtrPart.desc }
-ent-HamtrHarness = HAMTR harness
- .desc = The core of the HAMTR.
-ent-HamtrLArm = HAMTR left arm
- .desc = The left arm of the HAMTR. It belongs on the chassis of the mech.
-ent-HamtrLLeg = HAMTR left leg
- .desc = The left leg of the HAMTR. It belongs on the chassis of the mech.
-ent-HamtrRLeg = HAMTR right leg
- .desc = The right leg of the HAMTR. It belongs on the chassis of the mech.
-ent-HamtrRArm = HAMTR right arm
- .desc = The right arm of the HAMTR. It belongs on the chassis of the mech.
-ent-HamtrChassis = HAMTR chassis
- .desc = An in-progress construction of the HAMTR mech.
-ent-BaseVimPart = { ent-BaseMechPart }
- .desc = { ent-BaseMechPart.desc }
-ent-BaseVimPartItem = { ent-BaseVimPart }
- .desc = { ent-BaseVimPart.desc }
-ent-VimHarness = vim harness
- .desc = A small mounting bracket for vim parts.
-ent-VimChassis = vim chassis
- .desc = An in-progress construction of the Vim exosuit.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mecha_equipment.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mecha_equipment.ftl
deleted file mode 100644
index 7c0229cbb5f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mecha_equipment.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseMechEquipment = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-MechEquipmentGrabber = hydraulic clamp
- .desc = Gives the mech the ability to grab things and drag them around.
-ent-MechEquipmentGrabberSmall = small hydraulic clamp
- .desc = Gives the mech the ability to grab things and drag them around.
-ent-MechEquipmentHorn = mech horn
- .desc = An enhanced bike horn that plays a hilarious array of sounds for the enjoyment of the crew. HONK!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl
deleted file mode 100644
index 8b24349b6cc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-BaseMech = { "" }
- .desc = { "" }
-ent-MechRipley = Ripley APLU
- .desc = Versatile and lightly armored, the Ripley is useful for almost any heavy work scenario. The "APLU" stands for Autonomous Power Loading Unit.
-ent-MechRipleyBattery = { ent-MechRipley }
- .suffix = Battery
- .desc = { ent-MechRipley.desc }
-ent-MechHonker = H.O.N.K.
- .desc = Produced by "Tyranny of Honk, INC", this exosuit is designed as heavy clown-support. Used to spread the fun and joy of life. HONK!
-ent-MechHonkerBattery = { ent-MechHonker }
- .suffix = Battery
- .desc = { ent-MechHonker.desc }
-ent-MechHamtr = HAMTR
- .desc = An experimental mech which uses a brain–computer interface to connect directly to a hamsters brain.
-ent-MechHamtrBattery = { ent-MechHamtr }
- .suffix = Battery
- .desc = { ent-MechHamtr.desc }
-ent-MechVim = Vim
- .desc = A miniature exosuit from Nanotrasen, developed to let the irreplaceable station pets live a little longer.
-ent-MechVimBattery = { ent-MechVim }
- .suffix = Battery
- .desc = { ent-MechVim.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl
deleted file mode 100644
index 427b209a6ca..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BaseDefibrillator = defibrillator
- .desc = CLEAR! Zzzzat!
-ent-Defibrillator = { ent-BaseDefibrillator }
- .desc = { ent-BaseDefibrillator.desc }
-ent-DefibrillatorEmpty = { ent-Defibrillator }
- .suffix = Empty
- .desc = { ent-Defibrillator.desc }
-ent-DefibrillatorOneHandedUnpowered = { ent-BaseDefibrillator }
- .suffix = One-Handed, Unpowered
- .desc = { ent-BaseDefibrillator.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/disease.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/disease.ftl
deleted file mode 100644
index 71e25241f9e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/disease.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-DiseaseSwab = sterile swab
- .desc = Used for taking and transfering samples. Sterile until open. Single use only.
-ent-BoxMouthSwab = sterile swab dispenser
- .desc = Dispenses 30 sterile swabs, extremely useful for botany.
-ent-Vaccine = vaccine
- .desc = Prevents people who DON'T already have a disease from catching it.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/handheld_crew_monitor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/handheld_crew_monitor.ftl
deleted file mode 100644
index cf64858c372..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/handheld_crew_monitor.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-HandheldCrewMonitor = handheld crew monitor
- .desc = A hand-held crew monitor displaying the status of suit sensors.
- .suffix = DO NOT MAP
-ent-HandheldCrewMonitorEmpty = { ent-HandheldCrewMonitor }
- .suffix = Empty
- .desc = { ent-HandheldCrewMonitor.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl
deleted file mode 100644
index 9ecb5c349c0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl
+++ /dev/null
@@ -1,143 +0,0 @@
-ent-BaseHealingItem = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-Ointment = ointment
- .desc = Used to treat those nasty burns. Less effective on caustic burns.
- .suffix = Full
-ent-Ointment1 = { ent-Ointment }
- .suffix = Single
- .desc = { ent-Ointment.desc }
-ent-Ointment10Lingering = { ent-Ointment }
- .suffix = 10, Lingering
- .desc = { ent-Ointment.desc }
-ent-RegenerativeMesh = regenerative mesh
- .desc = Used to treat even the nastiest burns. Also effective against caustic burns.
- .suffix = Full
-ent-OintmentAdvanced1 = { ent-RegenerativeMesh }
- .suffix = Single
- .desc = { ent-RegenerativeMesh.desc }
-ent-Brutepack = bruise pack
- .desc = A therapeutic gel pack and bandages designed to treat blunt-force trauma.
- .suffix = Full
-ent-Brutepack1 = { ent-Brutepack }
- .suffix = Single
- .desc = { ent-Brutepack.desc }
-ent-Brutepack10Lingering = { ent-Brutepack }
- .suffix = 10, Lingering
- .desc = { ent-Brutepack.desc }
-ent-MedicatedSuture = medicated suture
- .desc = A suture soaked in medicine, treats blunt-force trauma effectively and closes wounds.
- .suffix = Full
-ent-BrutepackAdvanced1 = { ent-MedicatedSuture }
- .suffix = Single
- .desc = { ent-MedicatedSuture.desc }
-ent-Bloodpack = blood pack
- .desc = Contains a groundbreaking universal blood replacement created by Nanotrasen's advanced medical science.
- .suffix = Full
-ent-Bloodpack10Lingering = { ent-Bloodpack }
- .suffix = 10, Lingering
- .desc = { ent-Bloodpack.desc }
-ent-Tourniquet = tourniquet
- .desc = Stops bleeding! Hopefully.
-ent-Gauze = roll of gauze
- .desc = Some sterile gauze to wrap around bloody stumps.
- .suffix = Full
-ent-Gauze1 = { ent-Gauze }
- .suffix = Single
- .desc = { ent-Gauze.desc }
-ent-Gauze10Lingering = { ent-Gauze }
- .suffix = 10, Lingering
- .desc = { ent-Gauze.desc }
-ent-AloeCream = aloe cream
- .desc = A topical cream for burns.
-ent-HealingToolbox = healing toolbox
- .desc = A powerful toolbox imbued with robust energy. It can heal your wounds and fill you with murderous intent.
- .suffix = DO NOT MAP
-ent-PillDexalin = pill (dexalin 10u)
- .desc = { ent-Pill.desc }
-ent-PillCanisterDexalin = pill canister (dexalin 10u)
- .suffix = Dexalin, 7
- .desc = { ent-PillCanister.desc }
-ent-PillDylovene = pill (dylovene 10u)
- .desc = { ent-Pill.desc }
-ent-PillCanisterDylovene = pill canister (dylovene 10u)
- .suffix = Dylovene, 5
- .desc = { ent-PillCanister.desc }
-ent-PillHyronalin = pill (hyronalin 10u)
- .desc = { ent-Pill.desc }
-ent-PillCanisterHyronalin = pill canister (hyronalin 10u)
- .suffix = Hyronalin, 5
- .desc = { ent-PillCanister.desc }
-ent-PillIron = pill (iron 10u)
- .desc = { ent-Pill.desc }
-ent-PillCopper = pill (copper 10u)
- .desc = { ent-Pill.desc }
-ent-PillCanisterIron = pill canister (iron 10u)
- .suffix = Iron, 5
- .desc = { ent-PillCanister.desc }
-ent-PillCanisterCopper = pill canister (copper 10u)
- .suffix = Copper, 5
- .desc = { ent-PillCanister.desc }
-ent-PillKelotane = pill (kelotane 10u)
- .desc = { ent-Pill.desc }
-ent-PillCanisterKelotane = pill canister (kelotane 10u)
- .suffix = Kelotane, 5
- .desc = { ent-PillCanister.desc }
-ent-PillDermaline = pill (dermaline 10u)
- .desc = { ent-Pill.desc }
-ent-PillCanisterDermaline = pill canister (dermaline 10u)
- .suffix = Dermaline, 5
- .desc = { ent-PillCanister.desc }
-ent-PillSpaceDrugs = space drugs
- .desc = { ent-Pill.desc }
-ent-PillTricordrazine = pill (tricordrazine 10u)
- .desc = { ent-Pill.desc }
-ent-PillCanisterTricordrazine = pill canister (tricordrazine 10u)
- .suffix = Tricordrazine, 5
- .desc = { ent-PillCanister.desc }
-ent-PillBicaridine = pill (bicaridine 10u)
- .desc = { ent-Pill.desc }
-ent-PillCanisterBicaridine = pill canister (bicaridine 10u)
- .suffix = Bicaridine, 5
- .desc = { ent-PillCanister.desc }
-ent-PillCharcoal = pill (charcoal 10u)
- .desc = { ent-Pill.desc }
-ent-PillCanisterCharcoal = pill canister (charcoal 10u)
- .suffix = Charcoal, 3
- .desc = { ent-PillCanister.desc }
-ent-PillRomerol = romerol pill
- .desc = { ent-Pill.desc }
-ent-PillAmbuzol = ambuzol pill
- .desc = { ent-Pill.desc }
-ent-PillAmbuzolPlus = ambuzol plus pill
- .desc = { ent-Pill.desc }
-ent-PillCanisterRandom = { ent-PillCanister }
- .suffix = Random
- .desc = { ent-PillCanister.desc }
-ent-SyringeEphedrine = ephedrine syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeInaprovaline = inaprovaline syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeTranexamicAcid = tranexamic acid syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeBicaridine = bicaridine syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeDermaline = dermaline syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeHyronalin = hyronalin syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeIpecac = ipecac syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeAmbuzol = ambuzol syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeSigynate = sigynate syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeEthylredoxrazine = ethylredoxrazine syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringePhalanximine = phalanximine syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeSaline = saline syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeRomerol = romerol syringe
- .desc = { ent-PrefilledSyringe.desc }
-ent-SyringeStimulants = stimulants syringe
- .desc = { ent-PrefilledSyringe.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl
deleted file mode 100644
index 96997df4dc4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-HandheldHealthAnalyzerUnpowered = health analyzer
- .desc = A hand-held body scanner capable of distinguishing vital signs of the subject.
-ent-HandheldHealthAnalyzer = { ent-HandheldHealthAnalyzerUnpowered }
- .suffix = Powered
- .desc = { ent-HandheldHealthAnalyzerUnpowered.desc }
-ent-HandheldHealthAnalyzerEmpty = { ent-HandheldHealthAnalyzer }
- .suffix = Empty
- .desc = { ent-HandheldHealthAnalyzer.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl
deleted file mode 100644
index b6774d7d827..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl
+++ /dev/null
@@ -1,34 +0,0 @@
-ent-Hypospray = hypospray
- .desc = A sterile injector for rapid administration of drugs to patients.
-ent-SyndiHypo = gorlex hypospray
- .desc = Using reverse engineered designs from NT, Cybersun produced these in limited quantities for Gorlex Marauder operatives.
-ent-BorgHypo = borghypo
- .desc = A sterile injector for rapid administration of drugs to patients. A cheaper and more specialised version for medical borgs.
-ent-AdminHypo = experimental hypospray
- .desc = The ultimate application of bluespace technology and rapid chemical administration.
- .suffix = Admeme
-ent-ChemicalMedipen = chemical medipen
- .desc = A sterile injector for rapid administration of drugs to patients. This one can't be refilled.
-ent-EmergencyMedipen = emergency medipen
- .desc = A rapid and safe way to stabilize patients in critical condition for personnel without advanced medical knowledge. Beware, as it's easy to overdose on epinephrine and tranexamic acid.
-ent-AntiPoisonMedipen = poison auto-injector
- .desc = A rapid dose of anti-poison. Contains ultravasculine and epinephrine.
-ent-BruteAutoInjector = brute auto-injector
- .desc = A rapid dose of bicaridine and tranexamic acid, intended for combat applications
-ent-BurnAutoInjector = burn auto-injector
- .desc = A rapid dose of dermaline and leporazine, intended for combat applications
-ent-RadAutoInjector = rad auto-injector
- .desc = A rapid dose of anti-radiation. Contains arithrazine and bicaridine.
-ent-SpaceMedipen = space medipen
- .desc = Contains a mix of chemicals that protect you from the deadly effects of space.
-ent-Stimpack = stimulant injector
- .desc = Contains enough stimulants for you to have the chemical's effect for 30 seconds. Use it when you're sure you're ready to throw down.
-ent-StimpackMini = stimulant microinjector
- .desc = A microinjector of stimulants that give you about fifteen seconds of the chemical's effects.
-ent-CombatMedipen = combat medipen
- .desc = A single-use medipen containing chemicals that regenerate most types of damage.
-ent-Hypopen = pen
- .desc = A dark ink pen.
- .suffix = Hypopen
-ent-HypopenBox = hypopen box
- .desc = A small box containing a hypopen. Packaging disintegrates when opened, leaving no evidence behind.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/medkits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/medkits.ftl
deleted file mode 100644
index e86112685bc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/medkits.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-Medkit = first aid kit
- .desc = It's an emergency medical kit for those serious boo-boos.
-ent-MedkitBurn = burn treatment kit
- .desc = A specialized medical kit for when the toxins lab spontaneously burns down.
-ent-MedkitToxin = toxin treatment kit
- .desc = Used to treat toxic blood content.
-ent-MedkitO2 = oxygen deprivation treatment kit
- .desc = A box full of oxygen goodies.
-ent-MedkitBrute = brute trauma treatment kit
- .desc = A first aid kit for when you get toolboxed.
-ent-MedkitAdvanced = advanced first aid kit
- .desc = An advanced kit to help deal with advanced wounds.
-ent-MedkitRadiation = radiation treatment kit
- .desc = If you took your Rad-X you wouldn't need this.
-ent-MedkitCombat = combat medical kit
- .desc = For the big weapons among us.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/morgue.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/morgue.ftl
deleted file mode 100644
index 013c2946f48..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/morgue.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-BodyBag = body bag
- .desc = A plastic bag designed for the storage and transportation of cadavers to stop body decomposition.
-ent-BodyBagFolded = body bag
- .desc = A plastic bag designed for the storage and transportation of cadavers to stop body decomposition.
- .suffix = folded
-ent-Ash = ash
- .desc = This used to be something, but now it's not.
-ent-Ectoplasm = ectoplasm
- .desc = Much less deadly in this form.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/randompill.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/randompill.ftl
deleted file mode 100644
index ded073158a0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/randompill.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-StrangePill = strange pill
- .desc = This unusual pill bears no markings. There's no telling what it contains.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/surgery.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/surgery.ftl
deleted file mode 100644
index a827a1fb4b9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/surgery.ftl
+++ /dev/null
@@ -1,26 +0,0 @@
-ent-BaseToolSurgery = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-Cautery = cautery
- .desc = A surgical tool used to cauterize open wounds.
-ent-Drill = drill
- .desc = A surgical drill for making holes into hard material.
-ent-Scalpel = scalpel
- .desc = A surgical tool used to make incisions into flesh.
-ent-ScalpelShiv = shiv
- .desc = A pointy piece of glass, abraded to an edge and wrapped in tape for a handle.
-ent-ScalpelAdvanced = advanced scalpel
- .desc = Made of more expensive materials, sharper and generally more reliable.
-ent-ScalpelLaser = laser scalpel
- .desc = A scalpel which uses a directed laser to slice instead of a blade, for more precise surgery while also cauterizing as it cuts.
-ent-Retractor = retractor
- .desc = A surgical tool used to hold open incisions.
-ent-Hemostat = hemostat
- .desc = A surgical tool used to compress blood vessels to prevent bleeding.
-ent-Saw = metal saw
- .desc = For cutting wood and other objects to pieces. Or sawing bones, in case of emergency.
-ent-SawImprov = choppa
- .desc = A wicked serrated blade made of whatever nasty sharp things you could find.
-ent-SawElectric = circular saw
- .desc = For heavy duty cutting.
-ent-SawAdvanced = advanced circular saw
- .desc = You think you can cut anything with it.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mining/ore_bag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mining/ore_bag.ftl
deleted file mode 100644
index 27f09df0ab8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mining/ore_bag.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-OreBag = ore bag
- .desc = A robust bag for salvage specialists and miners alike to carry large amounts of ore.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/rehydrateable.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/rehydrateable.ftl
deleted file mode 100644
index f5cd26c3a25..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/rehydrateable.ftl
+++ /dev/null
@@ -1,25 +0,0 @@
-ent-MonkeyCube = monkey cube
- .desc = Just add water!
-ent-KoboldCube = kobold cube
- .desc = { ent-MonkeyCube.desc }
-ent-CowCube = cow cube
- .desc = { ent-MonkeyCube.desc }
-ent-GoatCube = goat cube
- .desc = { ent-MonkeyCube.desc }
-ent-MothroachCube = mothroach cube
- .desc = { ent-MonkeyCube.desc }
-ent-MouseCube = mouse cube
- .desc = { ent-MonkeyCube.desc }
-ent-CockroachCube = cockroach cube
- .desc = Just add wa- OH GOD!
-ent-SpaceCarpCube = carp cube
- .desc = Just add water! At your own risk.
-ent-SpaceTickCube = tick cube
- .desc = Just add water! At your own risk.
-ent-AbominationCube = abomination cube
- .desc = Just add blood!
-ent-DehydratedSpaceCarp = dehydrated space carp
- .desc = Looks like a plush toy carp, but just add water and it becomes a real-life space carp!
-ent-SyndicateSponge = monkey cube
- .desc = Just add water!
- .suffix = Syndicate
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl
deleted file mode 100644
index 8e2f2f97506..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-AnomalyScanner = anomaly scanner
- .desc = A hand-held scanner built to collect information on various anomalous objects.
-ent-AnomalyLocatorUnpowered = anomaly locator
- .desc = A device designed to aid in the locating of anomalies. Did you check the gas miners?
- .suffix = Unpowered
-ent-AnomalyLocator = { ent-AnomalyLocatorUnpowered }
- .suffix = Powered
- .desc = { ent-AnomalyLocatorUnpowered.desc }
-ent-AnomalyLocatorEmpty = { ent-AnomalyLocator }
- .suffix = Empty
- .desc = { ent-AnomalyLocator.desc }
-ent-AnomalyLocatorWideUnpowered = wide-spectrum anomaly locator
- .desc = A device that looks for anomalies from an extended distance, but has no way to determine the distance to them.
- .suffix = Unpowered
-ent-AnomalyLocatorWide = { ent-AnomalyLocatorWideUnpowered }
- .suffix = Powered
- .desc = { ent-AnomalyLocatorWideUnpowered.desc }
-ent-AnomalyLocatorWideEmpty = { ent-AnomalyLocatorWide }
- .suffix = Empty
- .desc = { ent-AnomalyLocatorWide.desc }
-ent-WeaponGauntletGorilla = G.O.R.I.L.L.A. gauntlet
- .desc = A robust piece of research equipment. When powered with an anomaly core, a single blow can launch anomalous objects through the air.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/disk.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/disk.ftl
deleted file mode 100644
index 9cd096b839a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/disk.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-ResearchDisk = research point disk (1000)
- .desc = A disk for the R&D server containing 1000 points.
-ent-ResearchDisk5000 = research point disk (5000)
- .desc = A disk for the R&D server containing 5000 points.
-ent-ResearchDisk10000 = research point disk (10000)
- .desc = A disk for the R&D server containing 10000 points.
-ent-ResearchDiskDebug = research point disk
- .desc = A disk for the R&D server containing all the points you could ever need.
- .suffix = DEBUG, DO NOT MAP
-ent-TechnologyDisk = technology disk
- .desc = A disk for the R&D server containing research technology.
-ent-TechnologyDiskRare = { ent-TechnologyDisk }
- .suffix = rare.
- .desc = { ent-TechnologyDisk.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/rped.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/rped.ftl
deleted file mode 100644
index 99142f8c0c8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/rped.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RPED = RPED
- .desc = A Rapid Part Exchange Device, perfect for quickly upgrading machines.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl
deleted file mode 100644
index 8fc9f09d7d9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl
+++ /dev/null
@@ -1,78 +0,0 @@
-ent-BaseBorgModule = borg module
- .desc = A piece of tech that gives cyborgs new abilities.
-ent-BaseProviderBorgModule = { "" }
- .desc = { "" }
-ent-ActionBorgSwapModule = Swap Module
- .desc = Select this module, enabling you to use the tools it provides.
-ent-BaseBorgModuleCargo = { ent-BaseBorgModule }
- .desc = { ent-BaseBorgModule.desc }
-ent-BaseBorgModuleEngineering = { ent-BaseBorgModule }
- .desc = { ent-BaseBorgModule.desc }
-ent-BaseBorgModuleJanitor = { ent-BaseBorgModule }
- .desc = { ent-BaseBorgModule.desc }
-ent-BaseBorgModuleMedical = { ent-BaseBorgModule }
- .desc = { ent-BaseBorgModule.desc }
-ent-BaseBorgModuleService = { ent-BaseBorgModule }
- .desc = { ent-BaseBorgModule.desc }
-ent-BaseBorgModuleSyndicate = { ent-BaseBorgModule }
- .desc = { ent-BaseBorgModule.desc }
-ent-BaseBorgModuleSyndicateAssault = { ent-BaseBorgModule }
- .desc = { ent-BaseBorgModule.desc }
-ent-BorgModuleCable = cable cyborg module
- .desc = { ent-BaseBorgModule.desc }
-ent-BorgModuleFireExtinguisher = fire extinguisher cyborg module
- .desc = { ent-BaseBorgModule.desc }
-ent-BorgModuleGPS = GPS cyborg module
- .desc = { ent-BaseBorgModule.desc }
-ent-BorgModuleRadiationDetection = radiation detection cyborg module
- .desc = { ent-BaseBorgModule.desc }
-ent-BorgModuleTool = tool cyborg module
- .desc = { ent-BaseBorgModule.desc }
-ent-BorgModuleAppraisal = appraisal cyborg module
- .desc = { ent-BaseBorgModuleCargo.desc }
-ent-BorgModuleMining = mining cyborg module
- .desc = { ent-BaseBorgModuleCargo.desc }
-ent-BorgModuleGrapplingGun = grappling gun cyborg module
- .desc = { ent-BaseBorgModuleCargo.desc }
-ent-BorgModuleAdvancedTool = advanced tool cyborg module
- .desc = { ent-BaseBorgModuleEngineering.desc }
-ent-BorgModuleConstruction = construction cyborg module
- .desc = { ent-BaseBorgModuleEngineering.desc }
-ent-BorgModuleRCD = RCD cyborg module
- .desc = { ent-BaseBorgModuleEngineering.desc }
-ent-BorgModuleLightReplacer = light replacer cyborg module
- .desc = { ent-BaseBorgModuleJanitor.desc }
-ent-BorgModuleCleaning = cleaning cyborg module
- .desc = { ent-BaseBorgModuleJanitor.desc }
-ent-BorgModuleAdvancedCleaning = advanced cleaning cyborg module
- .desc = { ent-BaseBorgModuleJanitor.desc }
-ent-BorgModuleDiagnosis = diagnosis cyborg module
- .desc = { ent-BaseBorgModuleMedical.desc }
-ent-BorgModuleTreatment = treatment cyborg module
- .desc = { ent-BaseBorgModuleMedical.desc }
-ent-BorgModuleDefibrillator = defibrillator cyborg module
- .desc = { ent-BaseBorgModuleMedical.desc }
-ent-BorgModuleAdvancedTreatment = advanced treatment cyborg module
- .desc = { ent-BaseBorgModuleMedical.desc }
-ent-BorgModuleArtifact = artifact cyborg module
- .desc = { ent-BaseBorgModule.desc }
-ent-BorgModuleAnomaly = anomaly cyborg module
- .desc = { ent-BaseBorgModule.desc }
-ent-BorgModuleService = service cyborg module
- .desc = { ent-BaseBorgModuleService.desc }
-ent-BorgModuleMusique = musique cyborg module
- .desc = { ent-BaseBorgModuleService.desc }
-ent-BorgModuleGardening = gardening cyborg module
- .desc = { ent-BaseBorgModuleService.desc }
-ent-BorgModuleHarvesting = harvesting cyborg module
- .desc = { ent-BaseBorgModuleService.desc }
-ent-BorgModuleClowning = clowning cyborg module
- .desc = { ent-BaseBorgModuleService.desc }
-ent-BorgModuleSyndicateWeapon = weapon cyborg module
- .desc = { ent-BaseBorgModule.desc }
-ent-BorgModuleOperative = operative cyborg module
- .desc = A module that comes with a crowbar, an Emag and a syndicate pinpointer.
-ent-BorgModuleEsword = energy sword cyborg module
- .desc = A module that comes with a double energy sword.
-ent-BorgModuleL6C = L6C ROW cyborg module
- .desc = A module that comes with a L6C.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_parts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_parts.ftl
deleted file mode 100644
index 36e56f48035..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_parts.ftl
+++ /dev/null
@@ -1,68 +0,0 @@
-ent-LeftArmBorg = { ent-BaseBorgArmLeft }
- .desc = { ent-BaseBorgArmLeft.desc }
-ent-RightArmBorg = { ent-BaseBorgArmRight }
- .desc = { ent-BaseBorgArmRight.desc }
-ent-LeftLegBorg = { ent-BaseBorgLegLeft }
- .desc = { ent-BaseBorgLegLeft.desc }
-ent-RightLegBorg = { ent-BaseBorgLegRight }
- .desc = { ent-BaseBorgLegRight.desc }
-ent-LightHeadBorg = { ent-BaseBorgHead }
- .desc = { ent-BaseBorgHead.desc }
-ent-TorsoBorg = { ent-BaseBorgTorso }
- .desc = { ent-BaseBorgTorso.desc }
-ent-LeftArmBorgEngineer = engineer cyborg left arm
- .desc = { ent-BaseBorgArmLeft.desc }
-ent-RightArmBorgEngineer = engineer cyborg right arm
- .desc = { ent-BaseBorgArmRight.desc }
-ent-LeftLegBorgEngineer = engineer cyborg left leg
- .desc = { ent-BaseBorgLegLeft.desc }
-ent-RightLegBorgEngineer = engineer cyborg right leg
- .desc = { ent-BaseBorgLegRight.desc }
-ent-HeadBorgEngineer = engineer cyborg head
- .desc = { ent-BaseBorgHead.desc }
-ent-TorsoBorgEngineer = engineer cyborg torso
- .desc = { ent-BaseBorgTorso.desc }
-ent-LeftLegBorgJanitor = janitor cyborg left leg
- .desc = { ent-BaseBorgLegLeft.desc }
-ent-RightLegBorgJanitor = janitor cyborg right leg
- .desc = { ent-BaseBorgLegRight.desc }
-ent-HeadBorgJanitor = janitor cyborg head
- .desc = { ent-BaseBorgHead.desc }
-ent-TorsoBorgJanitor = janitor cyborg torso
- .desc = { ent-BaseBorgTorso.desc }
-ent-LeftArmBorgMedical = medical cyborg left arm
- .desc = { ent-BaseBorgArmLeft.desc }
-ent-RightArmBorgMedical = medical cyborg right arm
- .desc = { ent-BaseBorgArmRight.desc }
-ent-LeftLegBorgMedical = medical cyborg left leg
- .desc = { ent-BaseBorgLegLeft.desc }
-ent-RightLegBorgMedical = medical cyborg right leg
- .desc = { ent-BaseBorgLegRight.desc }
-ent-HeadBorgMedical = medical cyborg head
- .desc = { ent-BaseBorgHead.desc }
-ent-TorsoBorgMedical = medical cyborg torso
- .desc = { ent-BaseBorgTorso.desc }
-ent-LeftArmBorgMining = mining cyborg left arm
- .desc = { ent-BaseBorgArmLeft.desc }
-ent-RightArmBorgMining = mining cyborg right arm
- .desc = { ent-BaseBorgArmRight.desc }
-ent-LeftLegBorgMining = mining cyborg left leg
- .desc = { ent-BaseBorgLegLeft.desc }
-ent-RightLegBorgMining = mining cyborg right leg
- .desc = { ent-BaseBorgLegRight.desc }
-ent-HeadBorgMining = mining cyborg head
- .desc = { ent-BaseBorgHead.desc }
-ent-TorsoBorgMining = mining cyborg torso
- .desc = { ent-BaseBorgTorso.desc }
-ent-LeftArmBorgService = service cyborg left arm
- .desc = { ent-BaseBorgArmLeft.desc }
-ent-RightArmBorgService = service cyborg right arm
- .desc = { ent-BaseBorgArmRight.desc }
-ent-LeftLegBorgService = service cyborg left leg
- .desc = { ent-BaseBorgLegLeft.desc }
-ent-RightLegBorgService = service cyborg right leg
- .desc = { ent-BaseBorgLegRight.desc }
-ent-HeadBorgService = service cyborg head
- .desc = { ent-BaseBorgHead.desc }
-ent-TorsoBorgService = service cyborg torso
- .desc = { ent-BaseBorgTorso.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/endoskeleton.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/endoskeleton.ftl
deleted file mode 100644
index b0855bd22df..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/endoskeleton.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CyborgEndoskeleton = cyborg endoskeleton
- .desc = A frame that cyborgs are built on. Significantly less spooky than expected.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/mmi.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/mmi.ftl
deleted file mode 100644
index 3404a8272b8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/mmi.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-MMI = man-machine interface
- .desc = A machine able to facilitate communication between a biological brain and electronics, enabling crew to continue to provide value after work-related incidents.
-ent-MMIFilled = { ent-MMI }
- .suffix = Filled
- .desc = { ent-MMI.desc }
-ent-PositronicBrain = positronic brain
- .desc = An artificial brain capable of spontaneous neural activity.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag.ftl
deleted file mode 100644
index 574cc7f13fd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-OreBag = ore bag
- .desc = A robust bag for salvage specialists and miners alike to carry large amounts of ore. Magnetises any nearby ores when attached to a belt.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag_holding.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag_holding.ftl
deleted file mode 100644
index 4bdeca10ffe..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag_holding.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-OreBagOfHolding = ore bag of holding
- .desc = A robust bag of holding for salvage billionaires and rich miners alike to carry large amounts of ore. Magnetises any nearby ores when attached to a belt.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/security/barrier.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/security/barrier.ftl
deleted file mode 100644
index ff6910ec935..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/security/barrier.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-DeployableBarrier = deployable barrier
- .desc = A deployable barrier. Swipe your ID card to lock/unlock it.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/security/evidence-marker.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/security/evidence-marker.ftl
deleted file mode 100644
index e006fb6a658..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/security/evidence-marker.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-EvidenceMarker = evidence marker
- .desc = A numbered yellow marker, useful for labeling evidence on a crime scene.
-ent-EvidenceMarkerOne = { ent-EvidenceMarker }
- .desc = { ent-EvidenceMarker.desc }
-ent-EvidenceMarkerTwo = { ent-EvidenceMarker }
- .desc = { ent-EvidenceMarker.desc }
-ent-EvidenceMarkerThree = { ent-EvidenceMarker }
- .desc = { ent-EvidenceMarker.desc }
-ent-EvidenceMarkerFour = { ent-EvidenceMarker }
- .desc = { ent-EvidenceMarker.desc }
-ent-EvidenceMarkerFive = { ent-EvidenceMarker }
- .desc = { ent-EvidenceMarker.desc }
-ent-EvidenceMarkerSix = { ent-EvidenceMarker }
- .desc = { ent-EvidenceMarker.desc }
-ent-EvidenceMarkerSeven = { ent-EvidenceMarker }
- .desc = { ent-EvidenceMarker.desc }
-ent-EvidenceMarkerEight = { ent-EvidenceMarker }
- .desc = { ent-EvidenceMarker.desc }
-ent-EvidenceMarkerNine = { ent-EvidenceMarker }
- .desc = { ent-EvidenceMarker.desc }
-ent-BoxEvidenceMarkers = evidence marker box
- .desc = A pack of numbered yellow markers, useful for labeling evidence on a crime scene.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/security/target.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/security/target.ftl
deleted file mode 100644
index bc5d597d8d6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/security/target.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BaseTarget = { ent-BaseStructureDynamic }
- .desc = { ent-BaseStructureDynamic.desc }
-ent-TargetHuman = human target
- .desc = A shooting target. This one is a human.
-ent-TargetSyndicate = syndicate target
- .desc = A shooting target. This one is a syndicate agent.
-ent-TargetClown = clown target
- .desc = A shooting target. This one is a clown.
-ent-TargetStrange = strange target
- .desc = A shooting target. You aren't quite sure what this one is, but it seems to be extra robust.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/service/barber.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/service/barber.ftl
deleted file mode 100644
index df9663e8a95..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/service/barber.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BarberScissors = barber scissors
- .desc = is able to reshape the hairstyle of any crew cut to your liking.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/service/vending_machine_restock.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/service/vending_machine_restock.ftl
deleted file mode 100644
index b57a70e7eca..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/service/vending_machine_restock.ftl
+++ /dev/null
@@ -1,54 +0,0 @@
-ent-BaseVendingMachineRestock = vending machine restock box
- .desc = A box for restocking vending machines with corporate goodies.
-ent-VendingMachineRestockBooze = Booze-O-Mat restock box
- .desc = Slot into your Booze-O-Mat to start the party! Not for sale to passengers below the legal age.
-ent-VendingMachineRestockChang = Mr. Chang's restock box
- .desc = A box covered in white labels with bold red Chinese characters, ready to be loaded into the nearest Mr. Chang's vending machine.
-ent-VendingMachineRestockChefvend = ChefVend restock box
- .desc = Refill the ChefVend. Just don't break any more of the eggs.
-ent-VendingMachineRestockCondimentStation = condiment station restock box
- .desc = Refill the condiment station. Mmmm, cold sauce.
-ent-VendingMachineRestockClothes = wardrobe restock box
- .desc = It's time to step up your fashion! Place inside any clothes vendor restock slot to begin.
-ent-VendingMachineRestockCostumes = AutoDrobe restock box
- .desc = A panoply of NanoTrasen employees are prancing about a colorful theater in a tragicomedy. You can join them too! Load this into your nearest AutoDrobe vending machine.
-ent-VendingMachineRestockDinnerware = Plasteel Chef's restock box
- .desc = It's never raw in this kitchen! Drop into the restock slot on the Plasteel Chef to begin.
-ent-VendingMachineRestockDiscountDans = Discount Dan's restock box
- .desc = A box full of salt and starch. Why suffer Quality when you can have Quantity? Discount Dan's!
-ent-VendingMachineRestockDonut = Robust Donuts restock box
- .desc = A box full of toroidal bundles of fried dough for restocking a vending machine. Use only as directed by Robust Industries, LLC.
-ent-VendingMachineRestockEngineering = EngiVend restock box
- .desc = Only to be used by certified professionals.
-ent-VendingMachineRestockGames = Good Clean Fun restock box
- .desc = It's time to roll for initiative, dice dragons! Load up at the Good Clean Fun vending machine!
-ent-VendingMachineRestockGetmoreChocolateCorp = GetMore Chocolate restock box
- .desc = A box loaded with the finest ersatz cacao. Only to be used in official Getmore Chocolate vending machines.
-ent-VendingMachineRestockHotDrinks = Solar's Best restock box
- .desc = Toasty! For use in Solar's Best Hot Drinks or other affiliate vending machines.
-ent-VendingMachineRestockMedical = NanoMed restock box
- .desc = Slot into your department's NanoMed or NanoMedPlus to dispense. Handle with care.
-ent-VendingMachineRestockNutriMax = NutriMax restock box
- .desc = We'll make your thumbs green with our tools. Let's get to harvesting! Load into a NutriMax vending machine.
-ent-VendingMachineRestockPTech = PTech restock box
- .desc = All the bureaucracy you can handle, and more! Load into the PTech vending machine to get started.
-ent-VendingMachineRestockRobustSoftdrinks = beverage restock box
- .desc = A cold, clunky container of colliding chilly cylinders. Use only as directed by Robust Industries, LLC.
-ent-VendingMachineRestockSecTech = SecTech restock box
- .desc = Communists beware: the reinforcements have arrived! A label reads SECURITY PERSONNEL ONLY.
-ent-VendingMachineRestockSalvageEquipment = Salvage Vendor restock box
- .desc = Strike the earth ere the space carp nip your behind! Slam into a salvage vendor to begin.
-ent-VendingMachineRestockSeeds = MegaSeed restock box
- .desc = A label says they're heirloom seeds, passed down from our ancestors. Pack it into the MegaSeed Servitor!
-ent-VendingMachineRestockSmokes = ShadyCigs restock box
- .desc = It's hard to see anything under all the Surgeon General warnings, but it mentions loading it into a vending machine.
-ent-VendingMachineRestockTankDispenser = tank dispenser restock box
- .desc = Capable of replacing tanks in a gas tank dispenser. Handle with care.
-ent-VendingMachineRestockVendomat = Vendomat restock box
- .desc = A box full of parts for various machinery. Load it into a Vendomat to begin.
-ent-VendingMachineRestockRobotics = Robotech Deluxe restock box
- .desc = A box full of tools for creating borgs. Load it into a Robotech Deluxe to begin.
-ent-VendingMachineRestockHappyHonk = Happy Honk restock box
- .desc = place this box full of fun into the restock slot on the Happy Honk Dispenser to begin.
-ent-VendingMachineRestockChemVend = ChemVend restock box
- .desc = A box filled with chemicals and covered in dangerous-looking NFPA diamonds. Load it into a ChemVend to begin.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/syndicate.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/syndicate.ftl
deleted file mode 100644
index 1559a4f2e6d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/syndicate.ftl
+++ /dev/null
@@ -1,30 +0,0 @@
-ent-Telecrystal = telecrystal
- .desc = It seems to be pulsing with suspiciously enticing energies.
- .suffix = 20 TC
-ent-Telecrystal1 = { ent-Telecrystal }
- .suffix = 1 TC
- .desc = { ent-Telecrystal.desc }
-ent-Telecrystal5 = { ent-Telecrystal }
- .suffix = 5 TC
- .desc = { ent-Telecrystal.desc }
-ent-Telecrystal10 = { ent-Telecrystal }
- .suffix = 10 TC
- .desc = { ent-Telecrystal.desc }
-ent-BaseUplinkRadio = syndicate uplink
- .desc = Suspiciously looking old radio...
- .suffix = Empty
-ent-BaseUplinkRadio20TC = { ent-BaseUplinkRadio }
- .suffix = 20 TC
- .desc = { ent-BaseUplinkRadio.desc }
-ent-BaseUplinkRadio25TC = { ent-BaseUplinkRadio }
- .suffix = 25 TC
- .desc = { ent-BaseUplinkRadio.desc }
-ent-BaseUplinkRadio40TC = { ent-BaseUplinkRadio }
- .suffix = 40 TC, NukeOps
- .desc = { ent-BaseUplinkRadio.desc }
-ent-BaseUplinkRadio60TC = { ent-BaseUplinkRadio }
- .suffix = 60 TC, LoneOps
- .desc = { ent-BaseUplinkRadio.desc }
-ent-BaseUplinkRadioDebug = { ent-BaseUplinkRadio }
- .suffix = DEBUG
- .desc = { ent-BaseUplinkRadio.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/artifact_equipment.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/artifact_equipment.ftl
deleted file mode 100644
index 54dfd2bd161..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/artifact_equipment.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CrateArtifactContainer = artifact container
- .desc = Used to safely contain and move artifacts.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/artifacts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/artifacts.ftl
deleted file mode 100644
index 96d4bdbd5cd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/artifacts.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseXenoArtifact = alien artifact
- .desc = A strange alien device.
- .suffix = { "" }
-ent-SimpleXenoArtifact = { ent-BaseXenoArtifact }
- .suffix = Simple
- .desc = { ent-BaseXenoArtifact.desc }
-ent-MediumXenoArtifact = { ent-BaseXenoArtifact }
- .suffix = Medium
- .desc = { ent-BaseXenoArtifact.desc }
-ent-ComplexXenoArtifact = { ent-BaseXenoArtifact }
- .suffix = Complex
- .desc = { ent-BaseXenoArtifact.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl
deleted file mode 100644
index cd0853ddd8c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-BaseXenoArtifactItem = alien artifact
- .desc = A strange handheld alien device.
-ent-SimpleXenoArtifactItem = { ent-BaseXenoArtifactItem }
- .suffix = Simple
- .desc = { ent-BaseXenoArtifactItem.desc }
-ent-MediumXenoArtifactItem = { ent-BaseXenoArtifactItem }
- .suffix = Medium
- .desc = { ent-BaseXenoArtifactItem.desc }
-ent-ComplexXenoArtifactItem = { ent-BaseXenoArtifactItem }
- .suffix = Complex
- .desc = { ent-BaseXenoArtifactItem.desc }
-ent-VariedXenoArtifactItem = { ent-BaseXenoArtifactItem }
- .suffix = Varied
- .desc = { ent-BaseXenoArtifactItem.desc }
-ent-ArtifactFragment = artifact fragment
- .desc = A broken piece of an artifact. You could probably repair it if you had more.
-ent-ArtifactFragment1 = { ent-ArtifactFragment }
- .suffix = Single
- .desc = { ent-ArtifactFragment.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/node_scanner.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/node_scanner.ftl
deleted file mode 100644
index 8aefcef06bd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/node_scanner.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-NodeScanner = node scanner
- .desc = The archeologist's friend, able to identify the node of an artifact with only a single scan.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/structure_artifacts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/structure_artifacts.ftl
deleted file mode 100644
index ca99c925a12..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/structure_artifacts.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-BaseXenoArtifact = alien artifact
- .desc = A strange alien device.
-ent-SimpleXenoArtifact = { ent-BaseXenoArtifact }
- .suffix = Simple
- .desc = { ent-BaseXenoArtifact.desc }
-ent-MediumXenoArtifact = { ent-BaseXenoArtifact }
- .suffix = Medium
- .desc = { ent-BaseXenoArtifact.desc }
-ent-ComplexXenoArtifact = { ent-BaseXenoArtifact }
- .suffix = Complex
- .desc = { ent-BaseXenoArtifact.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/access_configurator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/access_configurator.ftl
deleted file mode 100644
index 5422c6c19e2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/access_configurator.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-AccessConfigurator = access configurator
- .desc = Used to modify the access level requirements for airlocks and other lockable devices.
-ent-AccessConfiguratorUniversal = universal access configurator
- .desc = A modified access configurator used only by the mythical Administrator.
- .suffix = Admin
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/airlock_painter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/airlock_painter.ftl
deleted file mode 100644
index fd8a2cd7b04..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/airlock_painter.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-AirlockPainter = airlock painter
- .desc = An airlock painter for painting airlocks.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/appraisal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/appraisal.ftl
deleted file mode 100644
index 819ace0c6b1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/appraisal.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-AppraisalTool = appraisal tool
- .desc = A beancounter's best friend, with a quantum connection to the galactic market and the ability to appraise even the toughest items. It will also tell you if a crate contains a completed bounty.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/bucket.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/bucket.ftl
deleted file mode 100644
index 6cbc0333021..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/bucket.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Bucket = bucket
- .desc = It's a boring old bucket.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl
deleted file mode 100644
index b7659552b6e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl
+++ /dev/null
@@ -1,39 +0,0 @@
-ent-CableStack = cable stack
- .suffix = Full
- .desc = { ent-BaseItem.desc }
-ent-CableHVStack = HV cable coil
- .desc = HV cables for connecting engines to heavy duty machinery, SMESes, and substations.
- .suffix = Full
-ent-CableHVStack10 = { ent-CableHVStack }
- .suffix = 10
- .desc = { ent-CableHVStack.desc }
-ent-CableHVStackLingering10 = { ent-CableHVStack10 }
- .suffix = Lingering, 10
- .desc = { ent-CableHVStack10.desc }
-ent-CableHVStack1 = { ent-CableHVStack }
- .suffix = 1
- .desc = { ent-CableHVStack.desc }
-ent-CableMVStack = MV cable coil
- .desc = MV cables for connecting substations to APCs, and also powering a select few things like emitters.
- .suffix = Full
-ent-CableMVStack10 = { ent-CableMVStack }
- .suffix = 10
- .desc = { ent-CableMVStack.desc }
-ent-CableMVStackLingering10 = { ent-CableMVStack10 }
- .suffix = Lingering, 10
- .desc = { ent-CableMVStack10.desc }
-ent-CableMVStack1 = { ent-CableMVStack }
- .suffix = 1
- .desc = { ent-CableMVStack.desc }
-ent-CableApcStack = LV cable coil
- .desc = Low-Voltage stack of wires for connecting APCs to machines and other purposes.
- .suffix = Full
-ent-CableApcStack10 = { ent-CableApcStack }
- .suffix = 10
- .desc = { ent-CableApcStack.desc }
-ent-CableApcStackLingering10 = { ent-CableApcStack10 }
- .suffix = Lingering, 10
- .desc = { ent-CableApcStack10.desc }
-ent-CableApcStack1 = { ent-CableApcStack }
- .suffix = 1
- .desc = { ent-CableApcStack.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/cowtools.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/cowtools.ftl
deleted file mode 100644
index 9746b04074d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/cowtools.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-Haycutters = haycutters
- .desc = This kills the wire. Moo!
-ent-Moodriver = moodriver
- .desc = Turn to use. Moo!
-ent-Wronch = wronch
- .desc = Wronch thing. Moo!
-ent-Cowbar = cowbar
- .desc = Cow your problems away. Moo!
-ent-Mooltitool = mooltitool
- .desc = An crude tool to copy, store, and send electrical pulses and signals through wires and machines. Moo!
-ent-Cowelder = cowelding tool
- .desc = Melts anything as long as it's fueled, don't forget your eye protection! Moo!
-ent-Milkalyzer = milkalyzer
- .desc = A hand-held environmental scanner which reports current gas levels. Moo!
-ent-CowToolbox = cow toolbox
- .desc = A weirdly shaped box, stocked with... tools?
-ent-CowToolboxFilled = cow toolbox
- .suffix = Filled
- .desc = { ent-CowToolbox.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/decoys.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/decoys.ftl
deleted file mode 100644
index da6779ef077..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/decoys.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseDecoy = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-BalloonOperative = operative balloon
- .desc = Upon closer inspection, this Syndicate operative is actually a balloon.
-ent-BalloonAgent = agent balloon
- .desc = Upon closer inspection, this Syndicate agent is actually a balloon.
-ent-BalloonElite = elite operative balloon
- .desc = Upon closer inspection, this Syndicate elite operative is actually a balloon.
-ent-BalloonJuggernaut = juggernaut balloon
- .desc = Upon closer inspection, this Syndicate juggernaut is actually a balloon.
-ent-BalloonCommander = commander balloon
- .desc = Upon closer inspection, this Syndicate commander is actually a balloon.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/emag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/emag.ftl
deleted file mode 100644
index 9278730405c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/emag.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-EmagUnlimited = cryptographic sequencer
- .desc = The all-in-one hacking solution. The thinking man's lockpick. The iconic EMAG.
- .suffix = Unlimited
-ent-Emag = { ent-EmagUnlimited }
- .suffix = Limited
- .desc = { ent-EmagUnlimited.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/flare.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/flare.ftl
deleted file mode 100644
index b4c8e6a6a6b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/flare.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Flare = emergency flare
- .desc = A flare that produces a very bright light for a short while. Point the flame away from yourself.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/flashlights.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/flashlights.ftl
deleted file mode 100644
index 60b6e77cc64..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/flashlights.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-FlashlightLantern = flashlight
- .desc = It lights the way to freedom.
-ent-FlashlightSeclite = seclite
- .desc = A robust flashlight used by security.
-ent-EmptyFlashlightLantern = { ent-FlashlightLantern }
- .suffix = Empty
- .desc = { ent-FlashlightLantern.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/fulton.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/fulton.ftl
deleted file mode 100644
index 13ed43ac38e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/fulton.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-FultonBeacon = fulton beacon
- .desc = Beacon to receive fulton extractions.
-ent-Fulton = fulton
- .desc = Used to extract containers, items, or forcibly recruit people into your base of operations.
- .suffix = Full
-ent-Fulton1 = fulton
- .suffix = One
- .desc = { ent-Fulton.desc }
-ent-FultonEffect = fulton effect
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl
deleted file mode 100644
index eab846759ad..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl
+++ /dev/null
@@ -1,28 +0,0 @@
-ent-GasTankBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-GasTankRoundBase = { ent-GasTankBase }
- .desc = { ent-GasTankBase.desc }
-ent-OxygenTank = oxygen tank
- .desc = A standard cylindrical gas tank for oxygen.
-ent-NitrogenTank = nitrogen tank
- .desc = A standard cylindrical gas tank for nitrogen.
-ent-EmergencyOxygenTank = emergency oxygen tank
- .desc = An easily portable tank for emergencies. Contains very little oxygen, rated for survival use only.
-ent-EmergencyNitrogenTank = emergency nitrogen tank
- .desc = An easily portable tank for emergencies. Contains very little nitrogen, rated for survival use only.
-ent-ExtendedEmergencyOxygenTank = extended-capacity emergency oxygen tank
- .desc = An emergency tank with extended capacity. Technically rated for prolonged use.
-ent-ExtendedEmergencyNitrogenTank = extended-capacity emergency nitrogen tank
- .desc = An emergency tank with extended capacity. Technically rated for prolonged use.
-ent-DoubleEmergencyOxygenTank = double emergency oxygen tank
- .desc = A high-grade dual-tank emergency life support container. It holds a decent amount of oxygen for it's small size.
-ent-DoubleEmergencyNitrogenTank = double emergency nitrogen tank
- .desc = A high-grade dual-tank emergency life support container. It holds a decent amount of nitrogen for its small size.
-ent-EmergencyFunnyOxygenTank = funny emergency oxygen tank
- .desc = An easily portable tank for emergencies. Contains very little oxygen with an extra of funny gas, rated for survival use only.
-ent-AirTank = air tank
- .desc = Mixed anyone?
-ent-NitrousOxideTank = nitrous oxide tank
- .desc = Contains a mixture of air and nitrous oxide. Make sure you don't refill it with pure N2O.
-ent-PlasmaTank = plasma tank
- .desc = Contains dangerous plasma. Do not inhale. Extremely flammable.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/glowstick.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/glowstick.ftl
deleted file mode 100644
index 44d6c856ef6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/glowstick.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-GlowstickBase = green glowstick
- .desc = Useful for raves and emergencies.
-ent-GlowstickRed = red glowstick
- .desc = { ent-GlowstickBase.desc }
-ent-GlowstickPurple = purple glowstick
- .desc = { ent-GlowstickBase.desc }
-ent-GlowstickYellow = yellow glowstick
- .desc = { ent-GlowstickBase.desc }
-ent-GlowstickBlue = blue glowstick
- .desc = { ent-GlowstickBase.desc }
-ent-LightBehaviourTest1 = light pulse test
- .desc = { ent-BaseItem.desc }
-ent-LightBehaviourTest2 = color cycle test
- .desc = { ent-BaseItem.desc }
-ent-LightBehaviourTest3 = multi-behaviour light test
- .desc = { ent-BaseItem.desc }
-ent-LightBehaviourTest4 = light fade in test
- .desc = { ent-BaseItem.desc }
-ent-LightBehaviourTest5 = light pulse radius test
- .desc = { ent-BaseItem.desc }
-ent-LightBehaviourTest6 = light randomize radius test
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/gps.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/gps.ftl
deleted file mode 100644
index f23233a73b8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/gps.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-HandheldGPSBasic = global positioning system
- .desc = Helping lost spacemen find their way through the planets since 2016.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/hand_labeler.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/hand_labeler.ftl
deleted file mode 100644
index d1e20e7a063..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/hand_labeler.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-HandLabeler = hand labeler
- .desc = A hand labeler, used to label items and objects.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/handheld_mass_scanner.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/handheld_mass_scanner.ftl
deleted file mode 100644
index 1e74f069b71..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/handheld_mass_scanner.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-HandHeldMassScanner = handheld mass scanner
- .desc = A hand-held mass scanner.
-ent-HandHeldMassScannerEmpty = { ent-HandHeldMassScanner }
- .suffix = Empty
- .desc = { ent-HandHeldMassScanner.desc }
-ent-HandHeldMassScannerBorg = { ent-HandHeldMassScanner }
- .suffix = Borg
- .desc = { ent-HandHeldMassScanner.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/inflatable_wall.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/inflatable_wall.ftl
deleted file mode 100644
index 4d51aec03f6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/inflatable_wall.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-InflatableWallStack = inflatable barricade
- .desc = A folded membrane which rapidly expands into a large cubical shape on activation.
- .suffix = Full
-ent-InflatableDoorStack = inflatable door
- .desc = A folded membrane which rapidly expands into a large cubical shape on activation.
- .suffix = Full
-ent-InflatableWallStack5 = { ent-InflatableWallStack }
- .suffix = 5
- .desc = { ent-InflatableWallStack.desc }
-ent-InflatableWallStack1 = { ent-InflatableWallStack }
- .suffix = 1
- .desc = { ent-InflatableWallStack.desc }
-ent-InflatableDoorStack1 = { ent-InflatableDoorStack }
- .suffix = 1
- .desc = { ent-InflatableDoorStack.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jammer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jammer.ftl
deleted file mode 100644
index 8713d550956..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jammer.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-RadioJammer = radio jammer
- .desc = This device will disrupt any nearby outgoing radio communication as well as suit sensors when activated.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jaws_of_life.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jaws_of_life.ftl
deleted file mode 100644
index 63861648e55..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jaws_of_life.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-JawsOfLife = jaws of life
- .desc = A set of jaws of life, compressed through the magic of science.
-ent-SyndicateJawsOfLife = syndicate jaws of life
- .desc = Useful for entering the station or its departments.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl
deleted file mode 100644
index 6aef938783e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-JetpackEffect = { "" }
- .desc = { "" }
-ent-BaseJetpack = Jetpack
- .desc = It's a jetpack.
-ent-ActionToggleJetpack = Toggle jetpack
- .desc = Toggles the jetpack, giving you movement outside the station.
-ent-JetpackBlue = jetpack
- .suffix = Empty
- .desc = { ent-BaseJetpack.desc }
-ent-JetpackBlueFilled = jetpack
- .suffix = Filled
- .desc = { ent-JetpackBlue.desc }
-ent-JetpackBlack = jetpack
- .suffix = Empty
- .desc = { ent-BaseJetpack.desc }
-ent-JetpackBlackFilled = jetpack
- .suffix = Filled
- .desc = { ent-JetpackBlack.desc }
-ent-JetpackCaptain = captain's jetpack
- .suffix = Empty
- .desc = { ent-BaseJetpack.desc }
-ent-JetpackCaptainFilled = captain's jetpack
- .suffix = Filled
- .desc = { ent-JetpackCaptain.desc }
-ent-JetpackMini = mini jetpack
- .suffix = Empty
- .desc = { ent-BaseJetpack.desc }
-ent-JetpackMiniFilled = mini jetpack
- .suffix = Filled
- .desc = { ent-JetpackMini.desc }
-ent-JetpackSecurity = security jetpack
- .suffix = Empty
- .desc = { ent-BaseJetpack.desc }
-ent-JetpackSecurityFilled = security jetpack
- .suffix = Filled
- .desc = { ent-JetpackSecurity.desc }
-ent-JetpackVoid = void jetpack
- .suffix = Empty
- .desc = { ent-BaseJetpack.desc }
-ent-JetpackVoidFilled = void jetpack
- .suffix = Filled
- .desc = { ent-JetpackVoid.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/lantern.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/lantern.ftl
deleted file mode 100644
index 908b3e0f39a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/lantern.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-Lantern = lantern
- .desc = The holy light guides the way.
-ent-LanternFlash = { ent-Lantern }
- .suffix = Flash
- .desc = { ent-Lantern.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/light_replacer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/light_replacer.ftl
deleted file mode 100644
index b57182c6316..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/light_replacer.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-LightReplacer = light replacer
- .desc = An item which uses magnets to easily replace broken lights. Refill By adding more lights into the replacer.
-ent-LightReplacerEmpty = { ent-LightReplacer }
- .suffix = Empty
- .desc = { ent-LightReplacer.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/lighters.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/lighters.ftl
deleted file mode 100644
index 27c03bd5c56..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/lighters.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-Lighter = basic lighter
- .desc = A simple plastic cigarette lighter.
-ent-CheapLighter = cheap lighter
- .desc = A dangerously inexpensive plastic lighter, don't burn your thumb!
-ent-FlippoLighter = flippo lighter
- .desc = A rugged metal lighter, lasts quite a while.
-ent-FlippoEngravedLighter = flippo engraved lighter
- .desc = A rugged golden lighter, lasts quite a while. Engravings serve no tactical advantage whatsoever.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/matches.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/matches.ftl
deleted file mode 100644
index a5aa4eb41b8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/matches.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-SmallboxItem = { ent-BaseStorageItem }
- .desc = { ent-BaseStorageItem.desc }
-ent-Matchstick = match stick
- .desc = A simple match stick, used for lighting fine smokables.
-ent-MatchstickSpent = { ent-Matchstick }
- .suffix = spent
- .desc = { ent-Matchstick.desc }
-ent-Matchbox = match box
- .desc = A small box of Almost But Not Quite Plasma Premium Matches.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/spray_painter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/spray_painter.ftl
deleted file mode 100644
index d0d727d35bb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/spray_painter.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SprayPainter = spray painter
- .desc = A spray painter for painting airlocks and pipes.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/t-ray.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/t-ray.ftl
deleted file mode 100644
index dfd0540259d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/t-ray.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-trayScanner = t-ray scanner
- .desc = A high-tech scanning device that uses Terahertz Radiation to detect subfloor infrastructure.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/toolbox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/toolbox.ftl
deleted file mode 100644
index 3a788bfd915..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/toolbox.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-ToolboxBase = { ent-BaseStorageItem }
- .desc = { ent-BaseStorageItem.desc }
-ent-ToolboxEmergency = emergency toolbox
- .desc = A bright red toolbox, stocked with emergency tools.
-ent-ToolboxMechanical = mechanical toolbox
- .desc = A blue box, stocked with mechanical tools.
-ent-ToolboxElectrical = electrical toolbox
- .desc = A toolbox typically stocked with electrical gear.
-ent-ToolboxElectricalTurret = electrical toolbox
- .desc = A toolbox typically stocked with electrical gear.
- .suffix = Syndicate, Turret
-ent-ToolboxArtistic = artistic toolbox
- .desc = A toolbox typically stocked with artistic supplies.
-ent-ToolboxSyndicate = suspicious toolbox
- .desc = A sinister looking toolbox filled with elite syndicate tools.
-ent-ToolboxGolden = golden toolbox
- .desc = A solid gold toolbox. A rapper would kill for this.
-ent-ToolboxThief = thief undetermined toolbox
- .desc = This is where your favorite thief's supplies lie. Try to remember which ones.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/tools.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/tools.ftl
deleted file mode 100644
index ec59a1f7e90..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/tools.ftl
+++ /dev/null
@@ -1,35 +0,0 @@
-ent-Wirecutter = wirecutter
- .desc = This kills the wire.
-ent-Screwdriver = screwdriver
- .desc = Industrial grade torque in a small screwdriving package.
-ent-Wrench = wrench
- .desc = A common tool for assembly and disassembly. Remember: righty tighty, lefty loosey.
-ent-Crowbar = crowbar
- .desc = A multipurpose tool to pry open doors and fight interdimensional invaders.
-ent-CrowbarRed = emergency crowbar
- .desc = { ent-Crowbar.desc }
-ent-Multitool = multitool
- .desc = An advanced tool to copy, store, and send electrical pulses and signals through wires and machines
-ent-NetworkConfigurator = network configurator
- .desc = A tool for linking devices together. Has two modes, a list mode for mass linking devices and a linking mode for advanced device linking.
-ent-PowerDrill = power drill
- .desc = A simple powered hand drill.
-ent-RCD = RCD
- .desc = The rapid construction device can be used to quickly place and remove various station structures and fixtures. Requires compressed matter to function.
-ent-RCDEmpty = { ent-RCD }
- .suffix = Empty
- .desc = { ent-RCD.desc }
-ent-RCDRecharging = experimental RCD
- .desc = A bluespace-enhanced rapid construction device that passively generates its own compressed matter.
- .suffix = AutoRecharge
-ent-RCDExperimental = experimental RCD
- .desc = A bluespace-enhanced rapid construction device that passively generates its own compressed matter.
- .suffix = Admeme
-ent-RCDAmmo = compressed matter
- .desc = A cartridge of raw matter compacted by bluespace technology. Used in rapid construction devices.
-ent-Omnitool = omnitool
- .desc = A drone's best friend.
-ent-Shovel = shovel
- .desc = A large tool for digging and moving dirt.
-ent-RollingPin = rolling pin
- .desc = A tool used to shape and flatten dough.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/welders.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/welders.ftl
deleted file mode 100644
index 528eb7225d9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/welders.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-Welder = welding tool
- .desc = Melts anything as long as it's fueled, don't forget your eye protection!
-ent-WelderIndustrial = industrial welding tool
- .desc = An industrial welder with over double the fuel capacity.
-ent-WelderIndustrialAdvanced = advanced industrial welding tool
- .desc = An advanced industrial welder with over double the fuel capacity and hotter flame.
-ent-WelderExperimental = experimental welding tool
- .desc = An experimental welder capable of self-fuel generation and less harmful to the eyes.
-ent-WelderMini = emergency welding tool
- .desc = A miniature welder used during emergencies.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/actions.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/actions.ftl
deleted file mode 100644
index 6031b685cd3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/actions.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionVehicleHorn = Honk
- .desc = Honk!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/buckleable.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/buckleable.ftl
deleted file mode 100644
index 74163a9a251..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/buckleable.ftl
+++ /dev/null
@@ -1,26 +0,0 @@
-ent-BaseVehicle = { "" }
- .desc = { "" }
-ent-BaseVehicleRideable = Vehicle
- .desc = { ent-BaseVehicle.desc }
-ent-VehicleJanicart = janicart
- .desc = The janitor's trusty steed.
-ent-VehicleJanicartDestroyed = destroyed janicart
- .desc = { ent-MachineFrameDestroyed.desc }
-ent-VehicleSecway = secway
- .desc = The future of transportation. Popularized by St. James, the patron saint of security officers and internet forum moderators.
-ent-VehicleATV = ATV
- .desc = All-Tile Vehicle.
-ent-VehicleSyndicateSegway = syndicate segway
- .desc = Be an enemy of the corporation, in style.
-ent-VehicleSkeletonMotorcycle = skeleton motorcycle
- .desc = Bad to the Bone.
-ent-VehicleUnicycle = unicycle
- .desc = It only has one wheel!
-ent-VehicleUnicycleFolded = { ent-VehicleUnicycle }
- .suffix = folded
- .desc = { ent-VehicleUnicycle.desc }
-ent-VehicleWheelchair = wheelchair
- .desc = A chair with big wheels. It looks like you can move in these on your own.
-ent-VehicleWheelchairFolded = { ent-VehicleWheelchair }
- .suffix = folded
- .desc = { ent-VehicleWheelchair.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/keys.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/keys.ftl
deleted file mode 100644
index eaca886e8c1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/keys.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-VehicleKeyJanicart = janicart keys
- .desc = Interesting design.
-ent-VehicleKeySecway = secway keys
- .desc = The keys to the future.
-ent-VehicleKeyATV = ATV keys
- .desc = Think this looks like just one key? ATV keys means "actually two vehicle keys."
-ent-VehicleKeySkeleton = vehicle skeleton keys
- .desc = Unlock any vehicle.
-ent-VehicleKeySyndicateSegway = syndicate segway keys
- .desc = Patterned after the iconic EMAG design.
-ent-VehicleKeySkeletonMotorcycle = skeleton motorcycle keys
- .desc = A beautiful set of keys adorned with a skull.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/firebomb.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/firebomb.ftl
deleted file mode 100644
index 30006e809cd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/firebomb.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-FireBomb = fire bomb
- .desc = A weak, improvised incendiary device.
-ent-FireBombEmpty = fire bomb
- .desc = A weak, improvised incendiary device. This one has no fuel.
- .suffix = empty
-ent-FireBombFuel = { ent-FireBombEmpty }
- .desc = A weak, improvised incendiary device. This one is missing wires.
- .suffix = fuel
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/funny.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/funny.ftl
deleted file mode 100644
index c8fe9ea2f46..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/funny.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-HotPotato = hot potato
- .desc = Once activated, you can't drop this time bomb - hit someone else with it to save yourself! Don't burn your hands!
-ent-HotPotatoEffect = { "" }
- .desc = { "" }
-ent-TrashBananaPeelExplosive = banana peel
- .suffix = Explosive
- .desc = { ent-TrashBananaPeel.desc }
-ent-TrashBananaPeelExplosiveUnarmed = banana
- .desc = There's something unusual about this banana.
- .suffix = Unarmed
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/ied.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/ied.ftl
deleted file mode 100644
index ef71e12795c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/ied.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-ImprovisedExplosive = improvised explosive device
- .desc = A weak, improvised incendiary device.
-ent-ImprovisedExplosiveEmpty = improvised explosive device
- .desc = A weak, improvised incendiary device. This one has no fuel.
- .suffix = empty
-ent-ImprovisedExplosiveFuel = { ent-ImprovisedExplosiveEmpty }
- .desc = A weak, improvised incendiary device. This one is missing wires.
- .suffix = fuel
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/pen.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/pen.ftl
deleted file mode 100644
index cf7664e5679..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/pen.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-PenExploding = pen
- .desc = A dark ink pen.
- .suffix = Exploding
-ent-PenExplodingBox = exploding pen box
- .desc = A small box containing an exploding pen. Packaging disintegrates when opened, leaving no evidence behind.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/pipebomb.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/pipebomb.ftl
deleted file mode 100644
index 6b52971db9e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/pipebomb.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-PipeBomb = pipe bomb
- .desc = An improvised explosive made from pipes and wire.
-ent-PipeBombGunpowder = pipe bomb
- .desc = An improvised explosive made from a pipe. This one has no gunpowder.
- .suffix = Gunpowder
-ent-PipeBombCable = pipe bomb
- .desc = An improvised explosive made from a pipe. This one has no cable.
- .suffix = Cable
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/plastic.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/plastic.ftl
deleted file mode 100644
index 7db0e1d44a0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/plastic.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BasePlasticExplosive = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-C4 = composition C-4
- .desc = Used to put holes in specific areas without too much extra hole. A saboteur's favorite.
-ent-SeismicCharge = seismic charge
- .desc = Concussion based explosive designed to destroy large amounts of rock.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/spider.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/spider.ftl
deleted file mode 100644
index 241d200b4cc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/spider.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SpiderCharge = spider clan charge
- .desc = A modified C-4 charge supplied to you by the Spider Clan. Its explosive power has been juiced up, but only works in one specific area.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/antimaterial.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/antimaterial.ftl
deleted file mode 100644
index ed1590b9beb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/antimaterial.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MagazineBoxAntiMaterial = ammunition box (.60 anti-material)
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/antimateriel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/antimateriel.ftl
deleted file mode 100644
index ec214efc692..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/antimateriel.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseMagazineBoxAntiMateriel = ammunition box (.60 anti-materiel)
- .desc = { ent-BaseItem.desc }
-ent-MagazineBoxAntiMaterielBig = ammunition box (.60 anti-materiel)
- .desc = { ent-BaseMagazineBoxAntiMateriel.desc }
-ent-MagazineBoxAntiMateriel = ammunition box (.60 anti-materiel)
- .desc = { ent-BaseMagazineBoxAntiMateriel.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/caseless_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/caseless_rifle.ftl
deleted file mode 100644
index 850b0a8e5e9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/caseless_rifle.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BaseMagazineBoxCaselessRifle = ammunition box (.25 caseless)
- .desc = { ent-BaseItem.desc }
-ent-MagazineBoxCaselessRifle10x24 = ammunition box (.25 caseless)
- .desc = { ent-BaseMagazineBoxCaselessRifle.desc }
-ent-MagazineBoxCaselessRifleBig = ammunition box (.25 caseless)
- .desc = { ent-BaseMagazineBoxCaselessRifle.desc }
-ent-MagazineBoxCaselessRifle = ammunition box (.25 caseless)
- .desc = { ent-BaseMagazineBoxCaselessRifle.desc }
-ent-MagazineBoxCaselessRiflePractice = ammunition box (.25 caseless practice)
- .desc = { ent-BaseMagazineBoxCaselessRifle.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/clrifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/clrifle.ftl
deleted file mode 100644
index 03d1029eae7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/clrifle.ftl
+++ /dev/null
@@ -1,27 +0,0 @@
-ent-BoxClRifleBase = ammunition box (.25 caseless)
- .desc = { ent-BaseItem.desc }
- .suffix = { "" }
-ent-BoxClRifle10x24 = ammunition box (.25 caseless)
- .desc = { ent-BoxClRifleBase.desc }
- .suffix = { "" }
-ent-BoxClRifleBigBox = ammunition box (.25 caseless)
- .desc = { ent-BoxClRifleBase.desc }
- .suffix = { "" }
-ent-BoxClRifleBigBoxRubber = ammunition box (.25 caseless rubber)
- .desc = { ent-BoxClRifleBase.desc }
- .suffix = { "" }
-ent-BoxClRifleBox = ammunition box (.25 caseless)
- .desc = { ent-BoxClRifleBase.desc }
- .suffix = { "" }
-ent-BoxClRifleBoxFlash = ammunition box (.25 caseless flash)
- .desc = { ent-BoxClRifleBase.desc }
- .suffix = { "" }
-ent-BoxClRifleBoxHV = ammunition box (.25 caseless high-velocity)
- .desc = { ent-BoxClRifleBase.desc }
- .suffix = { "" }
-ent-BoxClRifleBoxPractice = ammunition box (.25 caseless practice)
- .desc = { ent-BoxClRifleBase.desc }
- .suffix = { "" }
-ent-BoxClRifleBoxRubber = ammunition box (.25 caseless rubber)
- .desc = { ent-BoxClRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/light_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/light_rifle.ftl
deleted file mode 100644
index d0364a5089c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/light_rifle.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseMagazineBoxLightRifle = ammunition box (.30 rifle)
- .desc = { ent-BaseItem.desc }
-ent-MagazineBoxLightRifleBig = ammunition box (.30 rifle)
- .desc = { ent-BaseMagazineBoxLightRifle.desc }
-ent-MagazineBoxLightRifle = ammunition box (.30 rifle)
- .desc = { ent-BaseMagazineBoxLightRifle.desc }
-ent-MagazineBoxLightRiflePractice = ammunition box (.30 rifle practice)
- .desc = { ent-BaseMagazineBoxLightRifle.desc }
-ent-MagazineBoxLightRifleIncendiary = ammunition box (.30 rifle incendiary)
- .desc = { ent-BaseMagazineBoxLightRifle.desc }
-ent-MagazineBoxLightRifleUranium = ammunition box (.30 rifle uranium)
- .desc = { ent-BaseMagazineBoxLightRifle.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/lrifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/lrifle.ftl
deleted file mode 100644
index 15d9baa57e7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/lrifle.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-BoxLRifleBase = ammunition box (.30 rifle)
- .desc = { ent-BaseItem.desc }
- .suffix = { "" }
-ent-BoxLRifleBigBox = ammunition box (.30 rifle)
- .desc = { ent-BoxLRifleBase.desc }
- .suffix = { "" }
-ent-BoxLRifleBox = ammunition box (.30 rifle)
- .desc = { ent-BoxLRifleBase.desc }
- .suffix = { "" }
-ent-BoxLRifleBoxHV = ammunition box (.30 rifle high-velocity)
- .desc = { ent-BoxLRifleBase.desc }
- .suffix = { "" }
-ent-BoxLRifleBoxPractice = ammunition box (.30 rifle practice)
- .desc = { ent-BoxLRifleBase.desc }
- .suffix = { "" }
-ent-BoxLRifleBoxRubber = ammunition box (.30 rifle rubber)
- .desc = { ent-BoxLRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/magnum.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/magnum.ftl
deleted file mode 100644
index 2d9d9a68484..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/magnum.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseMagazineBoxMagnum = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-MagazineBoxMagnum = ammunition box (.45 magnum)
- .desc = { ent-BaseMagazineBoxMagnum.desc }
-ent-MagazineBoxMagnumPractice = ammunition box (.45 magnum practice)
- .desc = { ent-BaseMagazineBoxMagnum.desc }
-ent-MagazineBoxMagnumIncendiary = ammunition box (.45 magnum incendiary)
- .desc = { ent-BaseMagazineBoxMagnum.desc }
-ent-MagazineBoxMagnumUranium = ammunition box (.45 magnum uranium)
- .desc = { ent-BaseMagazineBoxMagnum.desc }
-ent-MagazineBoxMagnumAP = ammunition box (.45 magnum armor-piercing)
- .desc = { ent-BaseMagazineBoxMagnum.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/pistol.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/pistol.ftl
deleted file mode 100644
index 5c454c0d68c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/pistol.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BaseMagazineBoxPistol = ammunition box (.35 auto)
- .desc = { ent-BaseItem.desc }
-ent-MagazineBoxPistol = ammunition box (.35 auto)
- .desc = { ent-BaseMagazineBoxPistol.desc }
-ent-MagazineBoxPistolPractice = ammunition box (.35 auto practice)
- .desc = { ent-BaseMagazineBoxPistol.desc }
-ent-MagazineBoxPistolIncendiary = ammunition box (.35 auto incendiary)
- .desc = { ent-BaseMagazineBoxPistol.desc }
-ent-MagazineBoxPistolUranium = ammunition box (.35 auto uranium)
- .desc = { ent-BaseMagazineBoxPistol.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/rifle.ftl
deleted file mode 100644
index 9b23c2ee4ea..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/rifle.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseMagazineBoxRifle = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-MagazineBoxRifleBig = ammunition box (.20 rifle)
- .desc = { ent-BaseMagazineBoxRifle.desc }
-ent-MagazineBoxRifle = ammunition box (.20 rifle)
- .desc = { ent-BaseMagazineBoxRifle.desc }
-ent-MagazineBoxRiflePractice = ammunition box (.20 rifle practice)
- .desc = { ent-BaseMagazineBoxRifle.desc }
-ent-MagazineBoxRifleIncendiary = ammunition box (.20 rifle incendiary)
- .desc = { ent-BaseMagazineBoxRifle.desc }
-ent-MagazineBoxRifleUranium = ammunition box (.20 rifle uranium)
- .desc = { ent-BaseMagazineBoxRifle.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/shotgun.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/shotgun.ftl
deleted file mode 100644
index 6ea6810eb6f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/shotgun.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-BaseAmmoProvider = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-AmmoProviderShotgunShell = { ent-BaseAmmoProvider }
- .desc = { ent-BaseAmmoProvider.desc }
-ent-BoxBeanbag = shotgun beanbag cartridges dispenser
- .desc = A dispenser box full of beanbag shots, designed for riot shotguns.
-ent-BoxLethalshot = shotgun lethal cartridges dispenser
- .desc = A dispenser box full of lethal pellet shots, designed for riot shotguns.
-ent-BoxShotgunSlug = shotgun slug cartridges dispenser
- .desc = A dispenser box full of slugs, designed for riot shotguns.
-ent-BoxShotgunFlare = shotgun flare cartridges dispenser
- .desc = A dispenser box full of flare cartridges, designed for riot shotguns.
-ent-BoxShotgunIncendiary = shotgun incendiary cartridges dispenser
- .desc = A dispenser box full of incendiary cartridges, designed for riot shotguns.
-ent-BoxShotgunUranium = shotgun uranium cartridges dispenser
- .desc = A dispenser box full of uranium cartridges, designed for riot shotguns.
-ent-BoxShotgunPractice = shotgun practice cartridges dispenser
- .desc = A dispenser box full of practice cartridges, designed for riot shotguns.
-ent-BoxShellTranquilizer = tranquilizer cartridges dispenser
- .desc = A dispenser box full of tranquilizer cartridges, designed for riot shotguns.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/srifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/srifle.ftl
deleted file mode 100644
index ab5991fa492..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/srifle.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-BoxSRifleBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
- .suffix = { "" }
-ent-BoxSRifleBigBox = ammunition box (.20 rifle)
- .desc = { ent-BoxSRifleBase.desc }
- .suffix = { "" }
-ent-BoxSRifleBigBoxRubber = ammunition box (.20 rifle rubber)
- .desc = { ent-BoxSRifleBase.desc }
- .suffix = { "" }
-ent-BoxSRifleBox = ammunition box (.20 rifle)
- .desc = { ent-BoxSRifleBase.desc }
- .suffix = { "" }
-ent-BoxSRifleBoxFlash = ammunition box (.20 rifle flash)
- .desc = { ent-BoxSRifleBase.desc }
- .suffix = { "" }
-ent-BoxSRifleBoxHV = ammunition box (.20 rifle high-velocity)
- .desc = { ent-BoxSRifleBase.desc }
- .suffix = { "" }
-ent-BoxSRifleBoxPractice = ammunition box (.20 rifle practice)
- .desc = { ent-BoxSRifleBase.desc }
- .suffix = { "" }
-ent-BoxSRifleBoxRubber = ammunition box (.20 rifle rubber)
- .desc = { ent-BoxSRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/toy.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/toy.ftl
deleted file mode 100644
index 3615c359d36..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/toy.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BoxDonkSoftBase = foamdart box
- .desc = { ent-BaseItem.desc }
-ent-BoxDonkSoftBox = box of foam darts
- .desc = { ent-BoxDonkSoftBase.desc }
-ent-BoxCartridgeCap = cap gun cartridge box
- .desc = { ent-BaseMagazineBoxMagnum.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/BaseCartridge.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/BaseCartridge.ftl
deleted file mode 100644
index eff49436588..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/BaseCartridge.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-BaseCartridge = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/antimaterial.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/antimaterial.ftl
deleted file mode 100644
index d37fd754d61..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/antimaterial.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CartridgeAntiMaterial = cartridge (.60 anti-material)
- .desc = { ent-BaseCartridge.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/antimateriel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/antimateriel.ftl
deleted file mode 100644
index 7918ad71f67..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/antimateriel.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CartridgeAntiMateriel = cartridge (.60 anti-materiel)
- .desc = { ent-BaseCartridge.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/base_cartridge.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/base_cartridge.ftl
deleted file mode 100644
index 3a32e7e40cc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/base_cartridge.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BaseCartridge = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/caseless_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/caseless_rifle.ftl
deleted file mode 100644
index c45fd3f8ac7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/caseless_rifle.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseCartridgeCaselessRifle = cartridge (.25 rifle)
- .desc = { ent-BaseCartridge.desc }
-ent-CartridgeCaselessRifle = cartridge (.25 caseless)
- .desc = { ent-BaseCartridgeCaselessRifle.desc }
-ent-CartridgeCaselessRiflePractice = cartridge (.25 caseless practice)
- .desc = { ent-BaseCartridgeCaselessRifle.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/clrifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/clrifle.ftl
deleted file mode 100644
index 6ac3849d451..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/clrifle.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-CartridgeClRifleBase = cartridge (.25 rifle)
- .desc = { ent-BaseCartridge.desc }
- .suffix = { "" }
-ent-CartridgeClRifle = cartridge (.25 caseless)
- .desc = { ent-CartridgeClRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeClRifleFlash = cartridge (.25 caseless flash)
- .desc = { ent-CartridgeClRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeClRifleHV = cartridge (.25 caseless high-velocity)
- .desc = { ent-CartridgeClRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeClRiflePractice = cartridge (.25 caseless practice)
- .desc = { ent-CartridgeClRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeClRifleRubber = cartridge (.25 caseless rubber)
- .desc = { ent-CartridgeClRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/heavy_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/heavy_rifle.ftl
deleted file mode 100644
index 53270940397..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/heavy_rifle.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseCartridgeHeavyRifle = cartridge (.20 rifle)
- .desc = { ent-BaseCartridge.desc }
-ent-CartridgeMinigun = cartridge (.10 rifle)
- .desc = { ent-BaseCartridgeHeavyRifle.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/hrifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/hrifle.ftl
deleted file mode 100644
index df3081ccc5b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/hrifle.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-CartridgeHRifleBase = cartridge (.20 rifle)
- .desc = { ent-BaseCartridge.desc }
- .suffix = { "" }
-ent-CartridgeMinigun = cartridge (.10 rifle)
- .desc = { ent-CartridgeHRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/light_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/light_rifle.ftl
deleted file mode 100644
index 067fadb22a9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/light_rifle.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BaseCartridgeLightRifle = cartridge (.30 rifle)
- .desc = { ent-BaseCartridge.desc }
-ent-CartridgeLightRifle = cartridge (.30 rifle)
- .desc = { ent-BaseCartridgeLightRifle.desc }
-ent-CartridgeLightRiflePractice = cartridge (.30 rifle practice)
- .desc = { ent-BaseCartridgeLightRifle.desc }
-ent-CartridgeLightRifleIncendiary = cartridge (.30 rifle incendiary)
- .desc = { ent-BaseCartridgeLightRifle.desc }
-ent-CartridgeLightRifleUranium = cartridge (.30 rifle uranium)
- .desc = { ent-BaseCartridgeLightRifle.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/lrifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/lrifle.ftl
deleted file mode 100644
index 62f8e5967bb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/lrifle.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-CartridgeLRifleBase = cartridge (.30 rifle)
- .desc = { ent-BaseCartridge.desc }
- .suffix = { "" }
-ent-CartridgeLRifle = cartridge (.30 rifle)
- .desc = { ent-CartridgeLRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeLRifleFlash = cartridge (.30 rifle flash)
- .desc = { ent-CartridgeLRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeLRifleHV = cartridge (.30 rifle high-velocity)
- .desc = { ent-CartridgeLRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeLRiflePractice = cartridge (.30 rifle practice)
- .desc = { ent-CartridgeLRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeLRifleRubber = cartridge (.30 rifle rubber)
- .desc = { ent-CartridgeLRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/magnum.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/magnum.ftl
deleted file mode 100644
index 131b0f9346a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/magnum.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseCartridgeMagnum = cartridge (.45 magnum)
- .desc = { ent-BaseCartridge.desc }
-ent-CartridgeMagnum = cartridge (.45 magnum)
- .desc = { ent-BaseCartridgeMagnum.desc }
-ent-CartridgeMagnumPractice = cartridge (.45 magnum practice)
- .desc = { ent-BaseCartridgeMagnum.desc }
-ent-CartridgeMagnumIncendiary = cartridge (.45 magnum incendiary)
- .desc = { ent-BaseCartridgeMagnum.desc }
-ent-CartridgeMagnumAP = cartridge (.45 magnum armor-piercing)
- .desc = { ent-BaseCartridgeMagnum.desc }
-ent-CartridgeMagnumUranium = cartridge (.45 magnum uranium)
- .desc = { ent-BaseCartridgeMagnum.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/pistol.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/pistol.ftl
deleted file mode 100644
index a35b46ab6bb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/pistol.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BaseCartridgePistol = cartridge (.35 auto)
- .desc = { ent-BaseCartridge.desc }
-ent-CartridgePistol = cartridge (.35 auto)
- .desc = { ent-BaseCartridgePistol.desc }
-ent-CartridgePistolPractice = cartridge (.35 auto practice)
- .desc = { ent-BaseCartridgePistol.desc }
-ent-CartridgePistolIncendiary = cartridge (.35 auto incendiary)
- .desc = { ent-BaseCartridgePistol.desc }
-ent-CartridgePistolUranium = cartridge (.35 auto uranium)
- .desc = { ent-BaseCartridgePistol.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/rifle.ftl
deleted file mode 100644
index ff045da1b28..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/rifle.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BaseCartridgeRifle = cartridge (.20 rifle)
- .desc = { ent-BaseCartridge.desc }
-ent-CartridgeRifle = cartridge (.20 rifle)
- .desc = { ent-BaseCartridgeRifle.desc }
-ent-CartridgeRiflePractice = cartridge (.20 rifle practice)
- .desc = { ent-BaseCartridgeRifle.desc }
-ent-CartridgeRifleIncendiary = cartridge (.20 rifle incendiary)
- .desc = { ent-BaseCartridgeRifle.desc }
-ent-CartridgeRifleUranium = cartridge (.20 rifle uranium)
- .desc = { ent-BaseCartridgeRifle.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/shotgun.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/shotgun.ftl
deleted file mode 100644
index 9c3983ad331..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/shotgun.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-BaseShellShotgun = shell (.50)
- .desc = { ent-BaseCartridge.desc }
-ent-ShellShotgunBeanbag = shell (.50 beanbag)
- .desc = { ent-BaseShellShotgun.desc }
-ent-ShellShotgunSlug = shell (.50 slug)
- .desc = { ent-BaseShellShotgun.desc }
-ent-ShellShotgunFlare = shell (.50 flare)
- .desc = { ent-BaseShellShotgun.desc }
-ent-ShellShotgun = shell (.50)
- .desc = { ent-BaseShellShotgun.desc }
-ent-ShellShotgunIncendiary = shell (.50 incendiary)
- .desc = { ent-BaseShellShotgun.desc }
-ent-ShellShotgunPractice = shell (.50 practice)
- .desc = { ent-BaseShellShotgun.desc }
-ent-ShellTranquilizer = shell (.50 tranquilizer)
- .desc = { ent-BaseShellShotgun.desc }
-ent-ShellShotgunImprovised = improvised shotgun shell
- .desc = A homemade shotgun shell that shoots painful glass shrapnel. The spread is so wide that it couldn't hit the broad side of a barn.
-ent-ShellShotgunUranium = uranium shotgun shell
- .desc = { ent-BaseShellShotgun.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/srifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/srifle.ftl
deleted file mode 100644
index e51f0c04d5e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/srifle.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-CartridgeSRifleBase = cartridge (.20 rifle)
- .desc = { ent-BaseCartridge.desc }
- .suffix = { "" }
-ent-CartridgeSRifle = cartridge (.20 rifle)
- .desc = { ent-CartridgeSRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeSRifleFlash = cartridge (.20 rifle flash)
- .desc = { ent-CartridgeSRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeSRifleHV = cartridge (.20 rifle high-velocity)
- .desc = { ent-CartridgeSRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeSRiflePractice = cartridge (.20 rifle practice)
- .desc = { ent-CartridgeSRifleBase.desc }
- .suffix = { "" }
-ent-CartridgeSRifleRubber = cartridge (.20 rifle rubber)
- .desc = { ent-CartridgeSRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/toy.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/toy.ftl
deleted file mode 100644
index 374664e400a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/cartridges/toy.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseCartridgeCap = cartridge (cap)
- .desc = { ent-BaseCartridge.desc }
-ent-CartridgeCap = cap gun cartridge
- .desc = { ent-BaseCartridgeCap.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/explosives.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/explosives.ftl
deleted file mode 100644
index 413c115c3ed..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/explosives.ftl
+++ /dev/null
@@ -1,27 +0,0 @@
-ent-CartridgeRocket = PG-7VL grenade
- .desc = A 1.5 warhead designed for the RPG-7 launcher. Has tubular shape.
-ent-CartridgeRocketSlow = PG-7VL grenade "Snail-Rocket"
- .desc = A 1.5 warhead designed for the RPG-7 launcher. It's unusually slow.
-ent-BaseGrenade = base grenade
- .desc = { ent-BaseItem.desc }
-ent-GrenadeBaton = baton grenade
- .desc = { ent-BaseGrenade.desc }
-ent-GrenadeBlast = blast grenade
- .desc = { ent-BaseGrenade.desc }
-ent-GrenadeFlash = flash grenade
- .desc = { ent-BaseGrenade.desc }
-ent-GrenadeFrag = frag grenade
- .desc = { ent-BaseGrenade.desc }
-ent-GrenadeEMP = EMP grenade
- .desc = { ent-BaseGrenade.desc }
-ent-BaseCannonBall = base cannon ball
- .desc = { ent-BaseItem.desc }
-ent-CannonBall = cannonball
- .suffix = Pirate
- .desc = { ent-BaseCannonBall.desc }
-ent-CannonBallGrapeshot = grapeshot
- .suffix = Pirate
- .desc = { ent-BaseCannonBall.desc }
-ent-CannonBallGlassshot = glassshot
- .suffix = Pirate
- .desc = { ent-BaseCannonBall.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/caseless_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/caseless_rifle.ftl
deleted file mode 100644
index d90d2602c6c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/caseless_rifle.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-BaseMagazineCaselessRifle = magazine (.25 caseless)
- .desc = { ent-BaseItem.desc }
-ent-BaseMagazineCaselessRifleShort = caseless rifle short magazine (.25 caseless)
- .desc = { ent-BaseMagazineCaselessRifle.desc }
-ent-BaseMagazinePistolCaselessRifle = pistol magazine (.25 caseless)
- .desc = { ent-BaseMagazineCaselessRifle.desc }
-ent-MagazineCaselessRifle10x24 = box magazine (.25 caseless)
- .desc = { ent-BaseMagazineCaselessRifle.desc }
-ent-MagazinePistolCaselessRifle = pistol magazine (.25 caseless)
- .desc = { ent-BaseMagazinePistolCaselessRifle.desc }
-ent-MagazinePistolCaselessRiflePractice = pistol magazine (.25 caseless practice)
- .desc = { ent-BaseMagazinePistolCaselessRifle.desc }
-ent-MagazineCaselessRifle = magazine (.25 caseless)
- .desc = { ent-BaseMagazineCaselessRifle.desc }
-ent-MagazineCaselessRiflePractice = magazine (.25 caseless practice)
- .desc = { ent-BaseMagazineCaselessRifle.desc }
-ent-MagazineCaselessRifleShort = short magazine (.25 caseless)
- .desc = { ent-BaseMagazineCaselessRifleShort.desc }
-ent-MagazineCaselessRifleShortPractice = short magazine (.25 caseless practice)
- .desc = { ent-BaseMagazineCaselessRifleShort.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/clrifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/clrifle.ftl
deleted file mode 100644
index 861c785cda8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/clrifle.ftl
+++ /dev/null
@@ -1,45 +0,0 @@
-ent-MagazineClRifleBase = magazine (.25 caseless)
- .desc = { ent-BaseItem.desc }
- .suffix = { "" }
-ent-MagazineClRifle10x24 = box magazine (.25 caseless)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRiflePistol = pistol magazine (.25 caseless)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRiflePistolHV = pistol magazine (.25 caseless high-velocity)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRiflePistolPractice = pistol magazine (.25 caseless practice)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRiflePistolRubber = pistol magazine (.25 caseless rubber)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRifle = magazine (.25 caseless)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRifleHV = magazine (.25 caseless high-velocity)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRiflePractice = magazine (.25 caseless practice)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRifleRubber = magazine (.25 caseless rubber)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRifleShort = short magazine (.25 caseless)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRifleShortFlash = short magazine (.25 caseless flash)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRifleShortHV = short magazine (.25 caseless high-velocity)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRifleShortPractice = short magazine (.25 caseless practice)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
-ent-MagazineClRifleShortRubber = short magazine (.25 caseless rubber)
- .desc = { ent-MagazineClRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/grenade.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/grenade.ftl
deleted file mode 100644
index 2b19048a813..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/grenade.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-BaseMagazineGrenade = grenade cartridge
- .desc = { ent-BaseItem.desc }
-ent-MagazineGrenadeEmpty = grenade cartridge
- .desc = { ent-BaseMagazineGrenade.desc }
-ent-MagazineGrenadeFrag = frag grenade cartridge
- .desc = { ent-BaseMagazineGrenade.desc }
-ent-MagazineGrenadeEMP = EMP grenade cartridge
- .desc = { ent-BaseMagazineGrenade.desc }
-ent-MagazineGrenadeFlash = flash grenade cartridge
- .desc = { ent-BaseMagazineGrenade.desc }
-ent-MagazineGrenadeBlast = blast grenade cartridge
- .desc = { ent-BaseMagazineGrenade.desc }
-ent-MagazineGrenadeBaton = baton grenade cartridge
- .desc = { ent-BaseMagazineGrenade.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/heavy_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/heavy_rifle.ftl
deleted file mode 100644
index afde7e5b3be..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/heavy_rifle.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BaseMagazineHeavyRifle = magazine (.20 rifle)
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/hrifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/hrifle.ftl
deleted file mode 100644
index e66c2277b7e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/hrifle.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-MagazineHRifleBase = magazine (.20 rifle)
- .desc = { ent-BaseItem.desc }
- .suffix = { "" }
-ent-MagazineMinigun = Minigun magazine box (.10 rifle)
- .desc = { ent-MagazineHRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/light_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/light_rifle.ftl
deleted file mode 100644
index d5c0a5da6fc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/light_rifle.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-BaseMagazineLightRifle = magazine (.30 rifle)
- .desc = { ent-BaseItem.desc }
-ent-MagazineLightRifleBox = L6 SAW magazine box (.30 rifle)
- .desc = { ent-BaseMagazineLightRifle.desc }
-ent-MagazineLightRifle = magazine (.30 rifle)
- .desc = { ent-BaseMagazineLightRifle.desc }
-ent-MagazineLightRifleEmpty = magazine (.30 rifle any)
- .suffix = empty
- .desc = { ent-MagazineLightRifle.desc }
-ent-MagazineLightRiflePractice = magazine (.30 rifle practice)
- .desc = { ent-BaseMagazineLightRifle.desc }
-ent-MagazineLightRifleUranium = magazine (.30 rifle uranium)
- .desc = { ent-BaseMagazineLightRifle.desc }
-ent-MagazineLightRifleIncendiary = magazine (.30 rifle incendiary)
- .desc = { ent-MagazineLightRifle.desc }
-ent-MagazineLightRifleMaxim = pan magazine (.30 rifle)
- .desc = { ent-BaseMagazineLightRifle.desc }
-ent-MagazineLightRiflePkBox = PK munitions box (.30 rifle)
- .desc = { ent-BaseMagazineLightRifle.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/lrifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/lrifle.ftl
deleted file mode 100644
index b4064de9673..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/lrifle.ftl
+++ /dev/null
@@ -1,27 +0,0 @@
-ent-MagazineLRifleBase = magazine (.30 rifle)
- .desc = { ent-BaseItem.desc }
- .suffix = { "" }
-ent-MagazineLRifleBox = L6 SAW magazine box (.30 rifle)
- .desc = { ent-MagazineLRifleBase.desc }
- .suffix = { "" }
-ent-MagazineLRifle = magazine (.30 rifle)
- .desc = { ent-MagazineLRifleBase.desc }
- .suffix = { "" }
-ent-MagazineLRifleFlash = magazine (.30 rifle flash)
- .desc = { ent-MagazineLRifleBase.desc }
- .suffix = { "" }
-ent-MagazineLRifleHV = magazine (.30 rifle high-velocity)
- .desc = { ent-MagazineLRifleBase.desc }
- .suffix = { "" }
-ent-MagazineLRiflePractice = magazine (.30 rifle practice)
- .desc = { ent-MagazineLRifleBase.desc }
- .suffix = { "" }
-ent-MagazineLRifleRubber = magazine (.30 rifle rubber)
- .desc = { ent-MagazineLRifleBase.desc }
- .suffix = { "" }
-ent-MagazineLRifleMaxim = pan magazine (.30 rifle)
- .desc = { ent-MagazineLRifleBase.desc }
- .suffix = { "" }
-ent-MagazineLRiflePkBox = PK munitions box (.30 rifle)
- .desc = { ent-MagazineLRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/magnum.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/magnum.ftl
deleted file mode 100644
index 4d0a7c65ee7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/magnum.ftl
+++ /dev/null
@@ -1,26 +0,0 @@
-ent-BaseMagazineMagnum = pistol magazine (.45 magnum)
- .desc = { ent-BaseMagazinePistol.desc }
-ent-BaseMagazineMagnumSubMachineGun = Vector magazine (.45 magnum)
- .desc = { ent-BaseItem.desc }
-ent-MagazineMagnumEmpty = pistol magazine (.45 magnum any)
- .suffix = empty
- .desc = { ent-BaseMagazineMagnum.desc }
-ent-MagazineMagnum = pistol magazine (.45 magnum)
- .desc = { ent-BaseMagazineMagnum.desc }
-ent-MagazineMagnumPractice = pistol magazine (.45 magnum practice)
- .desc = { ent-BaseMagazineMagnum.desc }
-ent-MagazineMagnumUranium = pistol magazine (.45 magnum uranium)
- .desc = { ent-BaseMagazineMagnum.desc }
-ent-MagazineMagnumAP = pistol magazine (.45 magnum armor-piercing)
- .desc = { ent-BaseMagazineMagnum.desc }
-ent-MagazineMagnumSubMachineGunEmpty = Vector magazine (.45 magnum any)
- .suffix = empty
- .desc = { ent-BaseMagazineMagnumSubMachineGun.desc }
-ent-MagazineMagnumSubMachineGun = Vector magazine (.45 magnum)
- .desc = { ent-BaseMagazineMagnumSubMachineGun.desc }
-ent-MagazineMagnumSubMachineGunPractice = Vector magazine (.45 magnum practice)
- .desc = { ent-BaseMagazineMagnumSubMachineGun.desc }
-ent-MagazineMagnumSubMachineGunUranium = Vector magazine (.45 magnum uranium)
- .desc = { ent-BaseMagazineMagnumSubMachineGun.desc }
-ent-MagazineMagnumSubMachineGunPiercing = Vector magazine (.45 magnum armor-piercing)
- .desc = { ent-BaseMagazineMagnumSubMachineGun.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/pistol.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/pistol.ftl
deleted file mode 100644
index 4689a29cbc5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/pistol.ftl
+++ /dev/null
@@ -1,39 +0,0 @@
-ent-BaseMagazinePistol = pistol magazine (.35 auto)
- .desc = { ent-BaseItem.desc }
-ent-BaseMagazinePistolHighCapacity = machine pistol magazine (.35 auto)
- .desc = { ent-BaseItem.desc }
-ent-BaseMagazinePistolSubMachineGun = SMG magazine (.35 auto)
- .desc = { ent-BaseItem.desc }
-ent-MagazinePistolSubMachineGunTopMounted = WT550 magazine (.35 auto top-mounted)
- .desc = { ent-BaseItem.desc }
-ent-MagazinePistolSubMachineGunTopMountedEmpty = WT550 magazine (.35 auto top-mounted any)
- .desc = { ent-MagazinePistolSubMachineGunTopMounted.desc }
-ent-MagazinePistol = pistol magazine (.35 auto)
- .desc = { ent-BaseMagazinePistol.desc }
-ent-MagazinePistolEmpty = pistol magazine (.35 auto any)
- .suffix = empty
- .desc = { ent-MagazinePistol.desc }
-ent-MagazinePistolIncendiary = pistol magazine (.35 auto incendiary)
- .desc = { ent-MagazinePistol.desc }
-ent-MagazinePistolPractice = pistol magazine (.35 auto practice)
- .desc = { ent-BaseMagazinePistol.desc }
-ent-MagazinePistolUranium = pistol magazine (.35 auto uranium)
- .desc = { ent-BaseMagazinePistol.desc }
-ent-MagazinePistolHighCapacityEmpty = machine pistol magazine (.35 auto any)
- .suffix = empty
- .desc = { ent-BaseMagazinePistolHighCapacity.desc }
-ent-MagazinePistolHighCapacity = machine pistol magazine (.35 auto)
- .desc = { ent-BaseMagazinePistolHighCapacity.desc }
-ent-MagazinePistolHighCapacityPractice = machine pistol magazine (.35 auto practice)
- .desc = { ent-BaseMagazinePistolHighCapacity.desc }
-ent-MagazinePistolHighCapacityRubber = machine pistol magazine (.35 auto rubber)
- .desc = { ent-BaseMagazinePistolHighCapacity.desc }
-ent-MagazinePistolSubMachineGun = SMG magazine (.35 auto)
- .desc = { ent-BaseMagazinePistolSubMachineGun.desc }
-ent-MagazinePistolSubMachineGunEmpty = SMG magazine (.35 auto any)
- .suffix = empty
- .desc = { ent-BaseMagazinePistolSubMachineGun.desc }
-ent-MagazinePistolSubMachineGunPractice = SMG magazine (.35 auto practice)
- .desc = { ent-BaseMagazinePistolSubMachineGun.desc }
-ent-MagazinePistolSubMachineGunUranium = SMG magazine (.35 auto rubber)
- .desc = { ent-BaseMagazinePistolSubMachineGun.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/rifle.ftl
deleted file mode 100644
index af9dc33ad20..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/rifle.ftl
+++ /dev/null
@@ -1,13 +0,0 @@
-ent-BaseMagazineRifle = magazine (.20 rifle)
- .desc = { ent-BaseItem.desc }
-ent-MagazineRifle = magazine (.20 rifle)
- .desc = { ent-BaseMagazineRifle.desc }
-ent-MagazineRifleEmpty = magazine (.20 rifle any)
- .suffix = empty
- .desc = { ent-MagazineRifle.desc }
-ent-MagazineRifleIncendiary = magazine (.20 rifle incendiary)
- .desc = { ent-MagazineRifle.desc }
-ent-MagazineRiflePractice = magazine (.20 rifle practice)
- .desc = { ent-BaseMagazineRifle.desc }
-ent-MagazineRifleUranium = magazine (.20 rifle uranium)
- .desc = { ent-BaseMagazineRifle.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/shotgun.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/shotgun.ftl
deleted file mode 100644
index 0d1f45af0bc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/shotgun.ftl
+++ /dev/null
@@ -1,13 +0,0 @@
-ent-BaseMagazineShotgun = ammo drum (.50 shells)
- .desc = { ent-BaseItem.desc }
-ent-MagazineShotgunEmpty = ammo drum (.50 shells any)
- .suffix = empty
- .desc = { ent-BaseMagazineShotgun.desc }
-ent-MagazineShotgun = ammo drum (.50 pellet)
- .desc = { ent-BaseMagazineShotgun.desc }
-ent-MagazineShotgunBeanbag = ammo drum (.50 beanbags)
- .desc = { ent-BaseMagazineShotgun.desc }
-ent-MagazineShotgunSlug = ammo drum (.50 slug)
- .desc = { ent-BaseMagazineShotgun.desc }
-ent-MagazineShotgunIncendiary = ammo drum (.50 incendiary)
- .desc = { ent-BaseMagazineShotgun.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/srifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/srifle.ftl
deleted file mode 100644
index 759ca97a1cd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/srifle.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-MagazineSRifleBase = magazine (.20 rifle)
- .desc = { ent-BaseItem.desc }
- .suffix = { "" }
-ent-MagazineSRifle = magazine (.20 rifle)
- .desc = { ent-MagazineSRifleBase.desc }
- .suffix = { "" }
-ent-MagazineSRifleFlash = magazine (.20 rifle flash)
- .desc = { ent-MagazineSRifleBase.desc }
- .suffix = { "" }
-ent-MagazineSRifleHV = magazine (.20 rifle high-velocity)
- .desc = { ent-MagazineSRifleBase.desc }
- .suffix = { "" }
-ent-MagazineSRiflePractice = magazine (.20 rifle practice)
- .desc = { ent-MagazineSRifleBase.desc }
- .suffix = { "" }
-ent-MagazineSRifleRubber = magazine (.20 rifle rubber)
- .desc = { ent-MagazineSRifleBase.desc }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/antimaterial.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/antimaterial.ftl
deleted file mode 100644
index e13d3669602..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/antimaterial.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BulletAntiMaterial = bullet (.60 anti-material)
- .desc = { ent-BaseBulletHighVelocity.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/antimateriel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/antimateriel.ftl
deleted file mode 100644
index aa0f084ea4e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/antimateriel.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BulletAntiMateriel = bullet (.60 anti-materiel)
- .desc = { ent-BaseBullet.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/caseless_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/caseless_rifle.ftl
deleted file mode 100644
index f6357d7c3a4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/caseless_rifle.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BulletCaselessRifle = bullet (.25 caseless)
- .desc = { ent-BaseBullet.desc }
-ent-BulletCaselessRiflePractice = bullet (.25 caseless practice)
- .desc = { ent-BaseBulletPractice.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/grenade.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/grenade.ftl
deleted file mode 100644
index b8e0a127c16..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/grenade.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-PelletClusterRubber = pellet (ball, Rubber)
- .desc = { ent-BaseBullet.desc }
-ent-PelletClusterLethal = pellet (ball, Lethal)
- .desc = { ent-BaseBullet.desc }
-ent-PelletClusterIncendiary = pellet (ball, incendiary)
- .desc = { ent-BaseBulletIncendiary.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/heavy_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/heavy_rifle.ftl
deleted file mode 100644
index 47abd7ba6d2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/heavy_rifle.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BulletHeavyRifle = bullet (.20 rifle)
- .desc = { ent-BaseBullet.desc }
-ent-BulletMinigun = minigun bullet (.10 rifle)
- .desc = { ent-BulletHeavyRifle.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/light_rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/light_rifle.ftl
deleted file mode 100644
index 343cae67d12..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/light_rifle.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BulletLightRifle = bullet (.20 rifle)
- .desc = { ent-BaseBullet.desc }
-ent-BulletLightRiflePractice = bullet (.20 rifle practice)
- .desc = { ent-BaseBulletPractice.desc }
-ent-BulletLightRifleIncendiary = bullet (.20 rifle incendiary)
- .desc = { ent-BaseBulletIncendiary.desc }
-ent-BulletLightRifleUranium = bullet (.20 rifle uranium)
- .desc = { ent-BaseBulletUranium.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/magnum.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/magnum.ftl
deleted file mode 100644
index a0f05bc001d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/magnum.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BulletMagnum = bullet (.45 magnum)
- .desc = { ent-BaseBullet.desc }
-ent-BulletMagnumPractice = bullet (.45 magnum practice)
- .desc = { ent-BaseBulletPractice.desc }
-ent-BulletMagnumIncendiary = bullet (.45 magnum incendiary)
- .desc = { ent-BaseBulletIncendiary.desc }
-ent-BulletMagnumAP = bullet (.45 magnum armor-piercing)
- .desc = { ent-BaseBulletAP.desc }
-ent-BulletMagnumUranium = bullet (.45 magnum uranium)
- .desc = { ent-BaseBulletUranium.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/pistol.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/pistol.ftl
deleted file mode 100644
index f3aa8f862ec..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/pistol.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BulletPistol = bullet (.35 auto)
- .desc = { ent-BaseBullet.desc }
-ent-BulletPistolPractice = bullet (.35 auto practice)
- .desc = { ent-BaseBulletPractice.desc }
-ent-BulletPistolIncendiary = bullet (.35 auto incendiary)
- .desc = { ent-BaseBulletIncendiary.desc }
-ent-BulletPistolUranium = bullet (.35 auto uranium)
- .desc = { ent-BaseBulletUranium.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/rifle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/rifle.ftl
deleted file mode 100644
index c2c27fa9575..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/rifle.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BulletRifle = bullet (0.20 rifle)
- .desc = { ent-BaseBullet.desc }
-ent-BulletRiflePractice = bullet (0.20 rifle practice)
- .desc = { ent-BaseBulletPractice.desc }
-ent-BulletRifleIncendiary = bullet (0.20 rifle incendiary)
- .desc = { ent-BaseBulletIncendiary.desc }
-ent-BulletRifleUranium = bullet (0.20 rifle uranium)
- .desc = { ent-BaseBulletUranium.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/shotgun.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/shotgun.ftl
deleted file mode 100644
index 405fcb51a41..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/shotgun.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-PelletShotgunSlug = pellet (.50 slug)
- .desc = { ent-BaseBullet.desc }
-ent-PelletShotgunBeanbag = beanbag (.50)
- .desc = { ent-BaseBullet.desc }
-ent-PelletShotgun = pellet (.50)
- .desc = { ent-BaseBullet.desc }
-ent-PelletShotgunIncendiary = pellet (.50 incendiary)
- .desc = { ent-BaseBulletIncendiary.desc }
-ent-PelletShotgunPractice = pellet (.50 practice)
- .desc = { ent-BaseBulletPractice.desc }
-ent-PelletShotgunImprovised = improvised pellet
- .desc = { ent-BaseBullet.desc }
-ent-PelletShotgunTranquilizer = pellet (.50 tranquilizer)
- .desc = { ent-BaseBulletPractice.desc }
-ent-PelletShotgunFlare = pellet (.50 flare)
- .desc = { "" }
-ent-PelletShotgunUranium = pellet (.50 uranium)
- .desc = { ent-BaseBullet.desc }
-ent-PelletGrapeshot = grapeshot pellet
- .desc = { ent-BaseBullet.desc }
-ent-PelletGlass = glass shard
- .desc = { ent-BaseBullet.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/toy.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/toy.ftl
deleted file mode 100644
index bacb8133824..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/toy.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BulletFoam = foam dart
- .desc = I hope you're wearing eye protection.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/magnum.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/magnum.ftl
deleted file mode 100644
index 35abf592cca..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/magnum.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-BaseSpeedLoaderMagnum = speed loader (.45 magnum)
- .desc = { ent-BaseItem.desc }
-ent-SpeedLoaderMagnum = speed loader (.45 magnum)
- .desc = { ent-BaseSpeedLoaderMagnum.desc }
-ent-SpeedLoaderMagnumEmpty = speed loader (.45 magnum any)
- .desc = { ent-SpeedLoaderMagnum.desc }
-ent-SpeedLoaderMagnumIncendiary = speed loader (.45 magnum incendiary)
- .desc = { ent-SpeedLoaderMagnum.desc }
-ent-SpeedLoaderMagnumPractice = speed loader (.45 magnum practice)
- .desc = { ent-BaseSpeedLoaderMagnum.desc }
-ent-SpeedLoaderMagnumAP = speed loader (.45 magnum armor-piercing)
- .desc = { ent-BaseSpeedLoaderMagnum.desc }
-ent-SpeedLoaderMagnumUranium = speed loader (.45 magnum uranium)
- .desc = { ent-BaseSpeedLoaderMagnum.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/pistol.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/pistol.ftl
deleted file mode 100644
index 4e6b1edb003..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/pistol.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseSpeedLoaderPistol = speed loader (.35 auto)
- .desc = { ent-BaseItem.desc }
-ent-SpeedLoaderPistol = speed loader (.35 auto)
- .desc = { ent-BaseSpeedLoaderPistol.desc }
-ent-SpeedLoaderPistolPractice = speed loader (.35 auto practice)
- .desc = { ent-BaseSpeedLoaderPistol.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/rifle_light.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/rifle_light.ftl
deleted file mode 100644
index 236430db0e2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/rifle_light.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SpeedLoaderLightRifle = speed loader (.30 rifle)
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/toy.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/toy.ftl
deleted file mode 100644
index b0776f545ea..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/toy.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseSpeedLoaderCap = cap gun loader
- .desc = { ent-BaseItem.desc }
-ent-SpeedLoaderCap = cap gun loader
- .desc = { ent-BaseSpeedLoaderCap.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_pka.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_pka.ftl
deleted file mode 100644
index 2fcd934456d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_pka.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-WeaponProtoKineticAcceleratorBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_staff.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_staff.ftl
deleted file mode 100644
index 746f661f5c6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_staff.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-WeaponStaffBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_wand.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_wand.ftl
deleted file mode 100644
index 795316ff2f2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_wand.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-WeaponWandBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_wieldable.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_wieldable.ftl
deleted file mode 100644
index e69e2d64f28..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/base_wieldable.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BaseGunWieldable = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/pka.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/pka.ftl
deleted file mode 100644
index d3f505adb02..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/pka.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-WeaponProtoKineticAccelerator = proto-kinetic accelerator
- .desc = Fires low-damage kinetic bolts at a short range.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/spraynozzle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/spraynozzle.ftl
deleted file mode 100644
index 38e12c83d73..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/spraynozzle.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-WeaponSprayNozzle = spray nozzle
- .desc = A high-powered spray nozzle used in conjunction with a backpack-mounted water tank.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/staves.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/staves.ftl
deleted file mode 100644
index 70259dbfb8e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/staves.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-WeaponStaffHealing = staff of healing
- .desc = You don't foresee having to use this in your quest for carnage too often.
-ent-WeaponStaffPolymorphDoor = staff of entrance
- .desc = For when you need a get-away route.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/wands.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/wands.ftl
deleted file mode 100644
index a604cc8d37c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/wands.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-WeaponWandPolymorphBase = { ent-WeaponWandBase }
- .desc = { ent-WeaponWandBase.desc }
-ent-WeaponWandPolymorphCarp = wand of carp polymorph
- .desc = For when you need a carp filet quick and the clown is looking juicy.
-ent-WeaponWandPolymorphMonkey = wand of monkey polymorph
- .desc = For when you need a monkey friend.
-ent-WeaponWandFireball = wand of fireball
- .desc = Great big balls of fire!
-ent-WeaponWandDeath = magical wand of instant death
- .desc = Only the best and brightest of the Space Wizards R&D team worked together to create this beauty.
-ent-WeaponWandPolymorphDoor = wand of entrance
- .desc = For when you need a get-away route.
-ent-WeaponWandCluwne = wand of cluwning
- .desc = Make their situation worse by turning them into a cluwne.
-ent-WeaponWandPolymorphBread = magic bread wand
- .desc = Turn all your friends into bread! Your boss! Your enemies! Your dog! Make everything bread!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/watergun.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/watergun.ftl
deleted file mode 100644
index ca4552cc9b0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/basic/watergun.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-WeaponWaterGunBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-WeaponWaterPistol = water pistol
- .desc = The dinkiest of water-based weaponry. You swear the trigger doesn't do anything.
-ent-WeaponWaterBlaster = water blaster
- .desc = With this bad boy, you'll be the cooleste kid at the summer barbecue.
-ent-WeaponWaterBlasterSuper = super water blaster
- .desc = No! No! Not in the eyes!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl
deleted file mode 100644
index 9e08215ac89..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl
+++ /dev/null
@@ -1,50 +0,0 @@
-ent-BaseWeaponBattery = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-BaseWeaponPowerCell = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-BaseWeaponBatterySmall = { ent-BaseWeaponBattery }
- .desc = { ent-BaseWeaponBattery.desc }
-ent-BaseWeaponPowerCellSmall = { ent-BaseWeaponPowerCell }
- .desc = { ent-BaseWeaponPowerCell.desc }
-ent-WeaponLaserSvalinn = svalinn laser pistol
- .desc = A cheap and widely used laser pistol.
-ent-WeaponLaserGun = retro laser blaster
- .desc = A weapon using light amplified by the stimulated emission of radiation.
-ent-WeaponMakeshiftLaser = makeshift laser pistol
- .desc = Better pray it won't burn your hands off.
-ent-WeaponTeslaGun = tesla gun
- .desc = The power of the primordial element of lightning in your hands.
-ent-WeaponLaserCarbine = laser rifle
- .desc = Favoured by Nanotrasen Security for being cheap and easy to use.
-ent-WeaponLaserCarbinePractice = practice laser rifle
- .desc = This modified laser rifle fires nearly harmless beams in the 40-watt range, for target practice.
-ent-WeaponPulsePistol = pulse pistol
- .desc = A state of the art energy pistol favoured as a sidearm by the NT operatives.
-ent-WeaponPulseCarbine = pulse carbine
- .desc = A high tech energy carbine favoured by the NT-ERT operatives.
-ent-WeaponPulseRifle = pulse rifle
- .desc = A weapon that is almost as infamous as its users.
-ent-WeaponLaserCannon = laser cannon
- .desc = A heavy duty, high powered laser weapon.
-ent-WeaponParticleDecelerator = portable particle decelerator
- .desc = A portable particle decelerator capable of decomposing a tesla or singularity.
-ent-WeaponXrayCannon = x-ray cannon
- .desc = An experimental weapon that uses concentrated x-ray energy against its target.
-ent-WeaponDisabler = disabler
- .desc = A self-defense weapon that exhausts organic targets, weakening them until they collapse.
-ent-WeaponDisablerSMG = disabler SMG
- .desc = Advanced weapon that exhausts organic targets, weakening them until they collapse.
-ent-WeaponDisablerPractice = practice disabler
- .desc = A self-defense weapon that exhausts organic targets, weakening them until they collapse. This one has been undertuned for cadets making it mostly harmless.
-ent-WeaponTaser = taser
- .desc = A low-capacity, energy-based stun gun used by security teams to subdue targets at range.
-ent-WeaponAntiqueLaser = antique laser pistol
- .desc = This is an antique laser pistol. All craftsmanship is of the highest quality. It is decorated with assistant leather and chrome. The object menaces with spikes of energy.
-ent-WeaponAdvancedLaser = advanced laser pistol
- .desc = An experimental high-energy laser pistol with a self-charging nuclear battery.
-ent-WeaponPistolCHIMP = C.H.I.M.P. handcannon
- .desc = Just because it's a little C.H.I.M.P. doesn't mean it can't punch like an A.P.E.
-ent-WeaponPistolCHIMPUpgraded = experimental C.H.I.M.P. handcannon
- .desc = This C.H.I.M.P. seems to have a greater punch than is usual...
-ent-WeaponBehonkerLaser = eye of a behonker
- .desc = The eye of a behonker, it fires a laser when squeezed.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/bow/bow.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/bow/bow.ftl
deleted file mode 100644
index cf9e1c4e31d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/bow/bow.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseBow = bow
- .desc = The original rooty tooty point and shooty.
-ent-BowImprovised = { ent-BaseBow }
- .desc = { ent-BaseBow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/explosives/clusterbang.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/explosives/clusterbang.ftl
deleted file mode 100644
index 229ad59c290..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/explosives/clusterbang.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-ClusterBang = clusterbang
- .desc = Can be used only with flashbangs. Explodes several times.
-ent-ClusterBangFull = { ent-ClusterBang }
- .suffix = Full
- .desc = { ent-ClusterBang.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/explosives/grenades.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/explosives/grenades.ftl
deleted file mode 100644
index 303b9bdcc66..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/explosives/grenades.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-ExGrenade = explosive grenade
- .desc = Grenade that creates a small but devastating explosion.
-ent-GrenadeFlashBang = flashbang
- .desc = Eeeeeeeeeeeeeeeeeeeeee
-ent-SyndieMiniBomb = Syndicate minibomb
- .desc = A syndicate manufactured explosive used to sow destruction and chaos.
-ent-NuclearGrenade = the nuclear option
- .desc = Please don't throw it, think of the children.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/flare_gun.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/flare_gun.ftl
deleted file mode 100644
index f3d90137ef9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/flare_gun.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-WeaponFlareGun = flare gun
- .desc = A compact, single-shot pistol that fires shotgun shells.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/hmgs/hmgs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/hmgs/hmgs.ftl
deleted file mode 100644
index 06c12b19b40..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/hmgs/hmgs.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseWeaponHeavyMachineGun = BaseWeaponHeavyMachineGun
- .desc = Spray and pray
-ent-WeaponMinigun = minigun
- .desc = Vzzzzzt! Rahrahrahrah! Vrrrrr! Uses .10 rifle ammo.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/launchers/launchers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/launchers/launchers.ftl
deleted file mode 100644
index a933fb4c5e6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/launchers/launchers.ftl
+++ /dev/null
@@ -1,28 +0,0 @@
-ent-BaseWeaponLauncher = BaseWeaponLauncher
- .desc = A rooty tooty point and shooty.
-ent-WeaponLauncherChinaLake = china lake
- .desc = PLOOP
-ent-WeaponLauncherRocket = RPG-7
- .desc = A modified ancient rocket-propelled grenade launcher.
-ent-WeaponLauncherMultipleRocket = multiple rocket launcher
- .desc = A modified ancient rocket-propelled grenade launcher.
-ent-WeaponLauncherPirateCannon = pirate cannon
- .desc = Kaboom!
-ent-WeaponTetherGun = tether gun
- .desc = Manipulates gravity around objects to fling them at high velocities.
-ent-WeaponForceGun = force gun
- .desc = Manipulates gravity around objects to fling them at high velocities.
-ent-WeaponGrapplingGun = grappling gun
- .desc = { ent-BaseItem.desc }
-ent-WeaponTetherGunAdmin = tether gun
- .desc = Manipulates gravity around objects to fling them at high velocities.
- .suffix = Admeme
-ent-WeaponForceGunAdmin = force gun
- .desc = Manipulates gravity around objects to fling them at high velocities.
- .suffix = Admeme
-ent-WeaponLauncherAdmemeMeteorLarge = meteor launcher
- .desc = It fires large meteors
- .suffix = Admeme
-ent-WeaponLauncherAdmemeImmovableRodSlow = immovable rod launcher
- .desc = It fires slow immovable rods.
- .suffix = Admeme
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/lmgs/lmgs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/lmgs/lmgs.ftl
deleted file mode 100644
index e3769e1c8fa..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/lmgs/lmgs.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseWeaponLightMachineGun = BaseWeaponLightMachineGun
- .desc = A rooty tooty point and shooty.
-ent-WeaponLightMachineGunL6 = L6 SAW
- .desc = A rather traditionally made LMG with a pleasantly lacquered wooden pistol grip. Uses .30 rifle ammo.
-ent-WeaponLightMachineGunL6C = L6C ROW
- .desc = A L6 SAW for use by cyborgs. Creates .30 rifle ammo on the fly from an internal ammo fabricator, which slowly self-charges.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl
deleted file mode 100644
index 28fff08435c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BaseWeaponPistol = BasePistol
- .desc = A rooty tooty point and shooty.
-ent-WeaponPistolViper = viper
- .desc = A small, easily concealable, but somewhat underpowered gun. Retrofitted with a fully automatic receiver. Uses .35 auto ammo.
-ent-WeaponPistolCobra = cobra
- .desc = A rugged, robust operator handgun with inbuilt silencer. Uses .25 caseless ammo.
-ent-WeaponPistolMk58 = mk 58
- .desc = A cheap, ubiquitous sidearm, produced by a NanoTrasen subsidiary. Uses .35 auto ammo.
-ent-WeaponPistolN1984 = N1984
- .desc = The sidearm of any self respecting officer. Comes in .45 magnum, the lord's caliber.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl
deleted file mode 100644
index 2fe4439a1fe..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-WeaponImprovisedPneumaticCannon = improvised pneumatic cannon
- .desc = Improvised using nothing but a pipe, some zipties, and a pneumatic cannon. Doesn't accept tanks without enough gas.
-ent-LauncherCreamPie = pie cannon
- .desc = Load cream pie for optimal results.
-ent-WeaponImprovisedPneumaticCannonGun = { ent-WeaponImprovisedPneumaticCannon }
- .suffix = Gun
- .desc = { ent-WeaponImprovisedPneumaticCannon.desc }
-ent-WeaponImprovisedPneumaticCannonAdmeme = { ent-WeaponImprovisedPneumaticCannonGun }
- .suffix = Admeme
- .desc = { ent-WeaponImprovisedPneumaticCannonGun.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/arrows.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/arrows.ftl
deleted file mode 100644
index 49fb25799c5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/arrows.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseArrow = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-ArrowRegular = arrow
- .desc = You can feel the power of the steppe within you.
-ent-ArrowImprovised = glass shard arrow
- .desc = The greyshirt's preferred projectile.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/hitscan.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/hitscan.ftl
deleted file mode 100644
index 9547eb2fd72..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/hitscan.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-HitscanEffect = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/impacts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/impacts.ftl
deleted file mode 100644
index 12e16a61ac1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/impacts.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BulletImpactEffect = { "" }
- .desc = { "" }
-ent-BulletImpactEffectDisabler = { "" }
- .desc = { "" }
-ent-BulletImpactEffectOrangeDisabler = { "" }
- .desc = { "" }
-ent-BulletImpactEffectKinetic = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/magic.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/magic.ftl
deleted file mode 100644
index 655b5662ab6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/magic.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-ProjectileFireball = fireball
- .desc = You better GITTAH WEIGH.
-ent-ProjectileDragonsBreath = dragon's breath
- .desc = Try not to get toasted.
-ent-ProjectileAnomalyFireball = fireball
- .desc = Hovering blob of flame.
-ent-ProjectilePolyboltBase = { ent-BaseBullet }
- .desc = { ent-BaseBullet.desc }
-ent-ProjectilePolyboltCarp = carp polybolt
- .desc = Nooo, I don't wanna be fish!
-ent-ProjectilePolyboltMonkey = monkey polybolt
- .desc = Nooo, I don't wanna be monkey!
-ent-ProjectilePolyboltDoor = door polybolt
- .desc = Nooo, I don't wanna be door!
-ent-ProjectileHealingBolt = healing bolt
- .desc = I COMMAND YOU TO LIVE!
-ent-BulletInstakillMagic = magical lead cylinder
- .desc = This looks familiar.
-ent-ProjectilePolyboltCluwne = cluwne polybolt
- .desc = knoH KnoH!
-ent-ProjectileIcicle = Icicle
- .desc = Brrrrr.
-ent-ProjectilePolyboltBread = bread polybolt
- .desc = Nooo, I don't wanna be bread!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/meteors.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/meteors.ftl
deleted file mode 100644
index 39f60c88f6f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/meteors.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MeteorLarge = meteor
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/projectiles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/projectiles.ftl
deleted file mode 100644
index d9835d775dd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/projectiles.ftl
+++ /dev/null
@@ -1,78 +0,0 @@
-ent-MuzzleFlashEffect = { "" }
- .desc = { "" }
-ent-BaseBullet = BaseBullet
- .desc = If you can see this you're probably dead!
-ent-BaseBulletTrigger = { ent-BaseBullet }
- .desc = { ent-BaseBullet.desc }
-ent-BaseBulletPractice = base bullet practice
- .desc = { ent-BaseBullet.desc }
-ent-BaseBulletIncendiary = base bullet incendiary
- .desc = { ent-BaseBullet.desc }
-ent-BaseBulletAP = base bullet armor-piercing
- .desc = { ent-BaseBullet.desc }
-ent-BaseBulletUranium = base bullet uranium
- .desc = { ent-BaseBullet.desc }
-ent-BulletTaser = taser bolt
- .desc = { ent-BaseBullet.desc }
-ent-BulletDisabler = disabler bolt
- .desc = { ent-BaseBullet.desc }
-ent-BulletDisablerPractice = disabler bolt practice
- .desc = { ent-BaseBullet.desc }
-ent-EmitterBolt = emitter bolt
- .desc = { ent-BaseBullet.desc }
-ent-WatcherBolt = watcher bolt
- .desc = { ent-BaseBullet.desc }
-ent-WatcherBoltMagmawing = magmawing watcher bolt
- .desc = { ent-BaseBullet.desc }
-ent-BulletKinetic = kinetic bolt
- .desc = Not too bad, but you still don't want to get hit by it.
-ent-BulletKineticShuttle = { ent-BaseBullet }
- .desc = { ent-BaseBullet.desc }
-ent-BulletCharge = charge bolt
- .desc = Marks a target for additional damage.
-ent-AnomalousParticleDelta = delta particles
- .desc = { ent-BaseBullet.desc }
-ent-AnomalousParticleDeltaStrong = { ent-AnomalousParticleDelta }
- .desc = { ent-AnomalousParticleDelta.desc }
-ent-AnomalousParticleEpsilon = epsilon particles
- .desc = { ent-AnomalousParticleDelta.desc }
-ent-AnomalousParticleEpsilonStrong = { ent-AnomalousParticleEpsilon }
- .desc = { ent-AnomalousParticleEpsilon.desc }
-ent-AnomalousParticleZeta = zeta particles
- .desc = { ent-AnomalousParticleDelta.desc }
-ent-AnomalousParticleZetaStrong = { ent-AnomalousParticleZeta }
- .desc = { ent-AnomalousParticleZeta.desc }
-ent-AnomalousParticleOmegaStrong = omega particles
- .desc = { ent-AnomalousParticleDelta.desc }
-ent-AnomalousParticleSigma = sigma particles
- .desc = { ent-AnomalousParticleDelta.desc }
-ent-AnomalousParticleSigmaStrong = sigma particles
- .desc = { ent-AnomalousParticleSigma.desc }
-ent-BulletRocket = rocket
- .desc = { ent-BaseBulletTrigger.desc }
-ent-BulletWeakRocket = weak rocket
- .desc = { ent-BaseBulletTrigger.desc }
-ent-BulletGrenadeBaton = baton grenade
- .desc = { ent-BaseBullet.desc }
-ent-BulletGrenadeBlast = blast grenade
- .desc = { ent-BaseBulletTrigger.desc }
-ent-BulletGrenadeFlash = flash grenade
- .desc = { ent-BaseBulletTrigger.desc }
-ent-BulletGrenadeFrag = frag grenade
- .desc = { ent-BaseBulletTrigger.desc }
-ent-BulletGrenadeEMP = EMP rocket
- .desc = { ent-BaseBulletTrigger.desc }
-ent-BulletCap = cap bullet
- .desc = { ent-BaseBullet.desc }
-ent-BulletAcid = acid spit
- .desc = { ent-BaseBullet.desc }
-ent-BulletWaterShot = water
- .desc = { "" }
-ent-BulletCannonBall = cannonball
- .desc = { ent-BaseBulletTrigger.desc }
-ent-GrapplingHook = grappling hook
- .desc = { "" }
-ent-BulletDisablerSmg = disabler bolt smg
- .desc = { ent-BaseBullet.desc }
-ent-TeslaGunBullet = tesla gun lightning
- .desc = { ent-BaseBullet.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/revolvers/revolvers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/revolvers/revolvers.ftl
deleted file mode 100644
index 607cc1a518b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/revolvers/revolvers.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-BaseWeaponRevolver = BaseWeaponRevolver
- .desc = A rooty tooty point and shooty.
-ent-WeaponRevolverDeckard = Deckard
- .desc = A rare, custom-built revolver. Use when there is no time for Voight-Kampff test. Uses .45 magnum ammo.
-ent-WeaponRevolverInspector = Inspector
- .desc = A detective's best friend. Uses .45 magnum ammo.
-ent-WeaponRevolverMateba = Mateba
- .desc = The iconic sidearm of the dreaded death squads. Uses .45 magnum ammo.
-ent-WeaponRevolverPython = Python
- .desc = A robust revolver favoured by Syndicate agents. Uses .45 magnum ammo.
-ent-WeaponRevolverPythonAP = Python
- .desc = A robust revolver favoured by Syndicate agents. Uses .45 magnum ammo.
- .suffix = armor-piercing
-ent-WeaponRevolverPirate = pirate revolver
- .desc = An odd, old-looking revolver, favoured by pirate crews. Uses .45 magnum ammo.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl
deleted file mode 100644
index 9122d95a09c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseWeaponRifle = BaseWeaponRifle
- .desc = A rooty tooty point and shooty.
-ent-WeaponRifleAk = AKMS
- .desc = An iconic weapon of war. Uses .30 rifle ammo.
-ent-WeaponRifleM90GrenadeLauncher = M-90gl
- .desc = An older bullpup carbine model, with an attached underbarrel grenade launcher. Uses .20 rifle ammo.
-ent-WeaponRifleLecter = Lecter
- .desc = A high end military grade assault rifle. Uses .20 rifle ammo.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/shotguns/shotguns.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/shotguns/shotguns.ftl
deleted file mode 100644
index 30ba9d52b45..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/shotguns/shotguns.ftl
+++ /dev/null
@@ -1,31 +0,0 @@
-ent-BaseWeaponShotgun = BaseWeaponShotgun
- .desc = A rooty tooty point and shooty.
-ent-WeaponShotgunBulldog = Bulldog
- .desc = It's a magazine-fed shotgun designed for close quarters combat. Uses .50 shotgun shells.
-ent-WeaponShotgunDoubleBarreled = double-barreled shotgun
- .desc = An immortal classic. Uses .50 shotgun shells.
-ent-WeaponShotgunDoubleBarreledRubber = double-barreled shotgun
- .desc = An immortal classic. Uses .50 shotgun shells.
- .suffix = Non-Lethal
-ent-WeaponShotgunEnforcer = Enforcer
- .desc = A premium combat shotgun based on the Kammerer design, featuring an upgraded clip capacity. .50 shotgun shells.
-ent-WeaponShotgunEnforcerRubber = { ent-WeaponShotgunEnforcer }
- .suffix = Non-Lethal
- .desc = { ent-WeaponShotgunEnforcer.desc }
-ent-WeaponShotgunKammerer = Kammerer
- .desc = 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.
-ent-WeaponShotgunSawn = sawn-off shotgun
- .desc = Groovy! Uses .50 shotgun shells.
-ent-WeaponShotgunSawnEmpty = sawn-off shotgun
- .desc = Groovy! Uses .50 shotgun shells.
- .suffix = Empty
-ent-WeaponShotgunHandmade = handmade pistol
- .desc = Looks unreliable. Uses .50 shotgun shells.
-ent-WeaponShotgunBlunderbuss = blunderbuss
- .desc = Deadly at close range.
- .suffix = Pirate
-ent-WeaponShotgunImprovised = improvised shotgun
- .desc = A shitty, hand-made shotgun that uses .50 shotgun shells. It can only hold one round in the chamber.
-ent-WeaponShotgunImprovisedLoaded = improvised shotgun
- .suffix = Loaded
- .desc = { ent-WeaponShotgunImprovised.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/smgs/smgs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/smgs/smgs.ftl
deleted file mode 100644
index cdb666c424b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/smgs/smgs.ftl
+++ /dev/null
@@ -1,13 +0,0 @@
-ent-BaseWeaponSubMachineGun = BaseSMG
- .desc = A rooty tooty point and shooty.
-ent-WeaponSubMachineGunAtreides = Atreides
- .desc = Pla-ket-ket-ket-ket! Uses .35 auto ammo.
-ent-WeaponSubMachineGunC20r = C-20r sub machine gun
- .desc = A firearm that is often used by the infamous nuclear operatives. Uses .35 auto ammo.
-ent-WeaponSubMachineGunDrozd = Drozd
- .desc = An excellent fully automatic Heavy SMG.
-ent-WeaponSubMachineGunVector = Vector
- .desc = An excellent fully automatic Heavy SMG. Uses .45 magnum ammo.
- .suffix = Deprecated use Drozd
-ent-WeaponSubMachineGunWt550 = WT550
- .desc = An excellent SMG, produced by NanoTrasen's Small Arms Division. Uses .35 auto ammo.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/snipers/snipers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/snipers/snipers.ftl
deleted file mode 100644
index 3e46069f33b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/snipers/snipers.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BaseWeaponSniper = BaseWeaponSniper
- .desc = A rooty tooty point and shooty.
-ent-WeaponSniperMosin = Kardashev-Mosin
- .desc = A weapon for hunting, or endless trench warfare. Uses .30 rifle ammo.
-ent-WeaponSniperHristov = Hristov
- .desc = A portable anti-materiel rifle. Fires armor piercing 14.5mm shells. Uses .60 anti-materiel ammo.
-ent-Musket = musket
- .desc = This should've been in a museum long before you were born. Uses .60 anti-materiel ammo.
-ent-WeaponPistolFlintlock = flintlock pistol
- .desc = A pirate's companion. Yarrr! Uses .60 anti-materiel ammo.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl
deleted file mode 100644
index 4452070f6cf..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-WeaponTurretSyndicateBroken = ballistic turret (broken)
- .desc = A ballistic machine gun auto-turret.
-ent-BaseWeaponTurret = ballistic turret
- .desc = { ent-BaseStructure.desc }
-ent-WeaponTurretSyndicate = { ent-BaseWeaponTurret }
- .suffix = Syndicate
- .desc = { ent-BaseWeaponTurret.desc }
-ent-WeaponTurretSyndicateDisposable = disposable ballistic turret
- .suffix = Syndicate, Disposable
- .desc = { ent-BaseWeaponTurret.desc }
-ent-WeaponTurretNanoTrasen = { ent-BaseWeaponTurret }
- .suffix = NanoTrasen
- .desc = { ent-BaseWeaponTurret.desc }
-ent-WeaponTurretHostile = { ent-BaseWeaponTurret }
- .suffix = Hostile
- .desc = { ent-BaseWeaponTurret.desc }
-ent-WeaponTurretXeno = xeno turret
- .desc = Shoots 9mm acid projectiles
- .suffix = Xeno
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/armblade.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/armblade.ftl
deleted file mode 100644
index b2a78991f43..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/armblade.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ArmBlade = arm blade
- .desc = A grotesque blade made out of bone and flesh that cleaves through people as a hot knife through butter.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/baseball_bat.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/baseball_bat.ftl
deleted file mode 100644
index 8478dfb10d5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/baseball_bat.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-BaseBallBat = baseball bat
- .desc = A robust baseball bat.
-ent-IncompleteBaseBallBat = incomplete baseball bat
- .desc = A few planks of wood stuck together.
-ent-WeaponMeleeKnockbackStick = knockback stick
- .desc = And then he spleefed all over.
- .suffix = Do not map
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/cane.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/cane.ftl
deleted file mode 100644
index a239b29d322..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/cane.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-Cane = cane
- .desc = A wooden cane.
-ent-CaneBlade = cane blade
- .desc = A sharp blade with a cane shaped hilt.
-ent-CaneSheath = { ent-Cane }
- .suffix = Empty
- .desc = { ent-Cane.desc }
-ent-CaneSheathFilled = { ent-CaneSheath }
- .suffix = Filled
- .desc = { ent-CaneSheath.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/chainsaw.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/chainsaw.ftl
deleted file mode 100644
index 1b3249532ef..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/chainsaw.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Chainsaw = chainsaw
- .desc = A very large chainsaw. Usually you use this for cutting down trees... usually.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/cult.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/cult.ftl
deleted file mode 100644
index 484ade16eb7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/cult.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-RitualDagger = ritual dagger
- .desc = A strange dagger used by sinister groups for rituals and sacrifices.
-ent-EldritchBlade = eldritch blade
- .desc = A sword humming with unholy energy.
-ent-UnholyHalberd = unholy halberd
- .desc = A poleaxe that seems to be linked to its wielder.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl
deleted file mode 100644
index 6e687d9ab83..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-EnergySword = energy sword
- .desc = A very loud & dangerous sword with a beam made of pure, concentrated plasma. Cuts through unarmored targets like butter.
-ent-EnergyDagger = pen
- .desc = A dark ink pen.
- .suffix = E-Dagger
-ent-EnergyDaggerBox = e-dagger box
- .desc = A small box containing an e-dagger. Packaging disintegrates when opened, leaving no evidence behind.
- .suffix = E-Dagger
-ent-EnergyCutlass = energy cutlass
- .desc = An exotic energy weapon.
-ent-EnergySwordDouble = double-bladed energy sword
- .desc = Syndicate Command's intern thought that having only one blade on energy swords was not cool enough. This can be stored in pockets.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/fireaxe.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/fireaxe.ftl
deleted file mode 100644
index afed89f0edc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/fireaxe.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-FireAxe = fireaxe
- .desc = Truly, the weapon of a madman. Who would think to fight fire with an axe?
-ent-FireAxeFlaming = fire axe
- .desc = Why fight fire with an axe when you can fight with fire and axe? Now featuring rugged rubberized handle!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/gohei.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/gohei.ftl
deleted file mode 100644
index 4f6d57a63b9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/gohei.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Gohei = gohei
- .desc = A wooden stick with white streamers at the end. Originally used by shrine maidens to purify things. Now used by the station's weeaboos.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/knife.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/knife.ftl
deleted file mode 100644
index 51999106b1c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/knife.ftl
+++ /dev/null
@@ -1,27 +0,0 @@
-ent-BaseKnife = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-KitchenKnife = kitchen knife
- .desc = A general purpose Chef's Knife made by Asters Merchant Guild. Guaranteed to stay sharp for years to come..
-ent-ButchCleaver = butcher's cleaver
- .desc = A huge blade used for chopping and chopping up meat. This includes clowns and clown-by-products.
-ent-CombatKnife = combat knife
- .desc = A deadly knife intended for melee confrontations.
-ent-SurvivalKnife = survival knife
- .desc = Weapon of first and last resort for combatting space carp.
-ent-KukriKnife = kukri knife
- .desc = Professionals have standards. Be polite. Be efficient. Have a plan to kill everyone you meet.
-ent-BladedFlatcapGrey = grey flatcap
- .desc = Fashionable for both the working class and old man Jenkins. It has glass shards hidden in the brim.
- .suffix = Bladed
-ent-BladedFlatcapBrown = brown flatcap
- .desc = Stupid clown! You made me look bad! It has glass shards hidden in the brim.
-ent-Shiv = shiv
- .desc = A crude weapon fashioned from a piece of cloth and a glass shard.
-ent-ReinforcedShiv = reinforced shiv
- .desc = A crude weapon fashioned from a piece of cloth and a reinforced glass shard.
-ent-PlasmaShiv = plasma shiv
- .desc = A crude weapon fashioned from a piece of cloth and a plasma glass shard.
-ent-UraniumShiv = uranium shiv
- .desc = A crude weapon fashioned from a piece of cloth and a uranium glass shard. Violates the geneva convention!
-ent-ThrowingKnife = throwing knife
- .desc = This bloodred knife is very aerodynamic and easy to throw, but good luck trying to fight someone hand-to-hand.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/mining.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/mining.ftl
deleted file mode 100644
index 4942ab90904..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/mining.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseWeaponCrusher = crusher
- .desc = An early design of the proto-kinetic accelerator.
-ent-WeaponCrusher = { ent-BaseWeaponCrusher }
- .desc = { ent-BaseWeaponCrusher.desc }
-ent-WeaponCrusherDagger = crusher dagger
- .desc = A scaled down version of a proto-kinetic crusher. Uses kinetic energy to vibrate the blade at high speeds.
-ent-WeaponCrusherGlaive = crusher glaive
- .desc = An early design of the proto-kinetic accelerator, in glaive form.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/needle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/needle.ftl
deleted file mode 100644
index 57aab009b18..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/needle.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-WeaponMeleeNeedle = official security anti-inflatable armament
- .desc = A specialty weapon used in the destruction of unique syndicate morale-boosting equipment.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/pickaxe.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/pickaxe.ftl
deleted file mode 100644
index 165639ea22f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/pickaxe.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-Pickaxe = pickaxe
- .desc = Notched to perfection, for jamming it into rocks
-ent-MiningDrill = mining drill
- .desc = Powerful tool used to quickly drill through rocks
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/sledgehammer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/sledgehammer.ftl
deleted file mode 100644
index fd9f2351bc2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/sledgehammer.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Sledgehammer = sledgehammer
- .desc = The perfect tool for wanton carnage.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/spear.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/spear.ftl
deleted file mode 100644
index 21f02977193..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/spear.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-Spear = spear
- .desc = Definition of a Classic. Keeping murder affordable since 200,000 BCE.
-ent-SpearReinforced = reinforced spear
- .desc = A spear with a reinforced glass shard as a tip.
-ent-SpearPlasma = plasma spear
- .desc = A spear with a plasma shard as a tip.
-ent-SpearUranium = uranium spear
- .desc = A spear with a uranium shard as a tip.
-ent-SpearBone = bone spear
- .desc = A spear made of bones.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/stunprod.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/stunprod.ftl
deleted file mode 100644
index 0aba41acb63..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/stunprod.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Stunprod = stun prod
- .desc = A stun prod for illegal incapacitation.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/sword.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/sword.ftl
deleted file mode 100644
index 660822f227d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/sword.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-CaptainSabre = captain's sabre
- .desc = A ceremonial weapon belonging to the captain of the station.
-ent-Katana = katana
- .desc = Ancient craftwork made with not so ancient plasteel.
-ent-EnergyKatana = energy katana
- .desc = A katana infused with strong energy.
-ent-Machete = machete
- .desc = A large, vicious looking blade.
-ent-Claymore = claymore
- .desc = An ancient war blade.
-ent-Cutlass = cutlass
- .desc = A wickedly curved blade, often seen in the hands of space pirates.
-ent-Throngler = The Throngler
- .desc = Why would someone make this?
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/weapon_toolbox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/weapon_toolbox.ftl
deleted file mode 100644
index 069a57b209c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/weapon_toolbox.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-WeaponMeleeToolboxRobust = robust toolbox
- .desc = A tider's weapon.
- .suffix = DO NOT MAP
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/white_cane.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/white_cane.ftl
deleted file mode 100644
index 817a7be1d1b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/white_cane.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-WhiteCane = white cane
- .desc = This isn't for you. It's for the people who can't figure out you're blind when you ask if cargo is the bar.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/zombieclaw.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/zombieclaw.ftl
deleted file mode 100644
index 604b6b25fa2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/zombieclaw.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ZombieClaw = Zombie Claw
- .desc = { "" }
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/security.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/security.ftl
deleted file mode 100644
index dc924786cf2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/security.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-Stunbaton = stun baton
- .desc = A stun baton for incapacitating people with. Actively harming with this is considered bad tone.
-ent-Truncheon = truncheon
- .desc = A rigid, steel-studded baton, meant to harm.
-ent-Flash = flash
- .desc = An ultrabright flashbulb with a trigger, which causes the victim to be dazed and lose their eyesight for a moment. Useless when burnt out.
-ent-SciFlash = flash
- .suffix = 2 charges
- .desc = { ent-Flash.desc }
-ent-PortableFlasher = portable flasher
- .desc = An ultrabright flashbulb with a proximity trigger, useful for making an area security-only.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/bola.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/bola.ftl
deleted file mode 100644
index 16a0df47918..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/bola.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Bola = bola
- .desc = Linked together with some spare cuffs and metal.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl
deleted file mode 100644
index c636824940e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl
+++ /dev/null
@@ -1,17 +0,0 @@
-ent-ClusterBang = clusterbang
- .desc = Can be used only with flashbangs. Explodes several times.
-ent-ClusterBangFull = ClusterBang
- .desc = Launches three flashbangs after the timer runs out.
- .suffix = Full
-ent-ClusterGrenade = clustergrenade
- .desc = Why use one grenade when you can use three at once!
-ent-ClusterBananaPeel = cluster banana peel
- .desc = Splits into 6 explosive banana peels after throwing, guaranteed fun!
-ent-GrenadeStinger = stinger grenade
- .desc = Nothing to see here, please disperse.
-ent-GrenadeIncendiary = incendiary grenade
- .desc = Guaranteed to light up the mood.
-ent-GrenadeShrapnel = shrapnel grenade
- .desc = Releases a deadly spray of shrapnel that causes severe bleeding.
-ent-SlipocalypseClusterSoap = slipocalypse clustersoap
- .desc = Spreads small pieces of syndicate soap over an area upon landing on the floor.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl
deleted file mode 100644
index e049d4b5666..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl
+++ /dev/null
@@ -1,34 +0,0 @@
-ent-GrenadeBase = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-ExGrenade = explosive grenade
- .desc = Grenade that creates a small but devastating explosion.
-ent-GrenadeFlashBang = flashbang
- .desc = Eeeeeeeeeeeeeeeeeeeeee
-ent-GrenadeFlashEffect = { "" }
- .desc = { "" }
-ent-SyndieMiniBomb = syndicate minibomb
- .desc = A syndicate-manufactured explosive used to stow destruction and cause chaos.
-ent-SelfDestructSeq = Self Destruct
- .desc = Go out on your own terms!
-ent-SupermatterGrenade = supermatter grenade
- .desc = Grenade that simulates delamination of the supermatter engine, pulling things in a heap and exploding after some time.
-ent-WhiteholeGrenade = whitehole grenade
- .desc = Grenade that repulses everything around for some time.
-ent-NuclearGrenade = the nuclear option
- .desc = Please don't throw it, think of the children.
-ent-ModularGrenade = modular grenade
- .desc = A grenade casing. Requires a trigger and a payload.
-ent-EmpGrenade = EMP grenade
- .desc = A grenade designed to wreak havoc on electronic systems.
-ent-HolyHandGrenade = holy hand grenade
- .desc = O Lord, bless this thy hand grenade, that with it thou mayst blow thine enemies to tiny bits, in thy mercy.
-ent-SmokeGrenade = smoke grenade
- .desc = A tactical grenade that releases a large, long-lasting cloud of smoke when used.
-ent-CleanerGrenade = cleanade
- .desc = Special grenade for janitors, releasing large cloud of space cleaner foam
-ent-TearGasGrenade = tear gas grenade
- .desc = A riot control tear gas grenade. Causes irritation, pain and makes you cry your eyes out.
-ent-GrenadeDummy = trick grenade
- .desc = All the grenade without any of the boom.
-ent-SyndieTrickyBomb = syndicate trickybomb
- .desc = A syndicate-manufactured explosive used to make an excellent distraction.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/throwing_stars.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/throwing_stars.ftl
deleted file mode 100644
index ccd1ba7e9f3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/throwing_stars.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ThrowingStar = throwing star
- .desc = An ancient weapon still used to this day, due to its ease of lodging itself into its victim's body parts.
-ent-ThrowingStarNinja = ninja throwing star
- .desc = { ent-ThrowingStar.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl
deleted file mode 100644
index e89548db24d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-BaseStation = { "" }
- .desc = { "" }
-ent-BaseRandomStation = { "" }
- .desc = { "" }
-ent-BaseStationCargo = { "" }
- .desc = { "" }
-ent-BaseStationJobsSpawning = { "" }
- .desc = { "" }
-ent-BaseStationRecords = { "" }
- .desc = { "" }
-ent-BaseStationArrivals = { "" }
- .desc = { "" }
-ent-BaseStationGateway = { "" }
- .desc = { "" }
-ent-BaseStationShuttles = { "" }
- .desc = { "" }
-ent-BaseStationCentcomm = { "" }
- .desc = { "" }
-ent-BaseStationEvacuation = { "" }
- .desc = { "" }
-ent-BaseStationAlertLevels = { "" }
- .desc = { "" }
-ent-BaseStationExpeditions = { "" }
- .desc = { "" }
-ent-BaseStationMagnet = { "" }
- .desc = { "" }
-ent-BaseStationSiliconLawCrewsimov = { "" }
- .desc = { "" }
-ent-BaseStationNews = { "" }
- .desc = { "" }
-ent-BaseStationAllEventsEligible = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl
deleted file mode 100644
index 6b0c4042c09..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseStationNanotrasen = { "" }
- .desc = { "" }
-ent-StandardNanotrasenStation = { ent-BaseStation }
- .desc = { ent-BaseStation.desc }
-ent-NanotrasenCentralCommand = { ent-BaseStation }
- .desc = { ent-BaseStation.desc }
-ent-StandardStationArena = { ent-BaseStation }
- .desc = { ent-BaseStation.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/syndicate.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/syndicate.ftl
deleted file mode 100644
index c254efea33a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/syndicate.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseStationSyndicate = { "" }
- .desc = { "" }
-ent-StandardNukieOutpost = { ent-BaseStationSyndicate }
- .desc = { ent-BaseStationSyndicate.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/test.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/test.ftl
deleted file mode 100644
index fcb5bf3f22f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/test.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-TestStation = { ent-BaseStation }
- .desc = { ent-BaseStation.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/barricades.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/barricades.ftl
deleted file mode 100644
index 25253e467e2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/barricades.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseBarricade = wooden barricade
- .desc = A barricade made out of wood planks. It looks like it can take a few solid hits.
-ent-Barricade = { ent-BaseBarricade }
- .desc = { ent-BaseBarricade.desc }
-ent-BarricadeBlock = { ent-Barricade }
- .desc = { ent-Barricade.desc }
-ent-BarricadeDirectional = { ent-BaseBarricade }
- .desc = { ent-BaseBarricade.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/base_structure.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/base_structure.ftl
deleted file mode 100644
index d38b843a347..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/base_structure.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseStructure = { "" }
- .desc = { "" }
-ent-BaseStructureDynamic = { ent-BaseStructure }
- .desc = { ent-BaseStructure.desc }
-ent-StructureWheeled = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cargo_console.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cargo_console.ftl
deleted file mode 100644
index 265fbaebda9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cargo_console.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CargoTelepad = cargo telepad
- .desc = { ent-BaseStructureDynamic.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cargo_telepad.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cargo_telepad.ftl
deleted file mode 100644
index d6f0bdce8b5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cargo_telepad.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CargoTelepad = cargo telepad
- .desc = Beam in the pizzas and dig in.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/catwalk.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/catwalk.ftl
deleted file mode 100644
index b53c092001b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/catwalk.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Catwalk = catwalk
- .desc = A catwalk for easier EVA maneuvering and cable placement.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/conveyor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/conveyor.ftl
deleted file mode 100644
index 1c57581e0a6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/conveyor.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-ConveyorBelt = conveyor belt
- .desc = A conveyor belt, commonly used to transport large numbers of items elsewhere quite quickly.
-ent-ConveyorBeltAssembly = conveyor belt
- .desc = A conveyor belt assembly. Used to construct a conveyor belt.
- .suffix = assembly
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryopod.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryopod.ftl
deleted file mode 100644
index 58a18d75ab5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryopod.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-CryogenicSleepUnit = cryogenic sleep unit
- .desc = A super-cooled container that keeps crewmates safe during space travel.
-ent-CryogenicSleepUnitSpawner = { ent-CryogenicSleepUnit }
- .suffix = Spawner, Roundstart AllJobs
- .desc = { ent-CryogenicSleepUnit.desc }
-ent-CryogenicSleepUnitSpawnerLateJoin = { ent-CryogenicSleepUnit }
- .suffix = Spawner, LateJoin
- .desc = { ent-CryogenicSleepUnit.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/banners.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/banners.ftl
deleted file mode 100644
index e3b03920e31..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/banners.ftl
+++ /dev/null
@@ -1,26 +0,0 @@
-ent-BannerBase = base banner
- .desc = It's the concept of a banner, you shouldn't be seeing this.
-ent-BannerNanotrasen = nanotrasen banner
- .desc = A banner displaying the Nanotrasen logo. It looks rather cheap.
-ent-BannerCargo = cargo banner
- .desc = A banner displaying the colors of the cargo department. Not. Cargonia.
-ent-BannerEngineering = engineering banner
- .desc = A banner displaying the colors of the engineering department. Scrungularty.
-ent-BannerMedical = medical banner
- .desc = A banner displaying the colors of the medical department. How sterile.
-ent-BannerRevolution = revolution banner
- .desc = A banner displaying revolution. Viva!
-ent-BannerSyndicate = syndicate banner
- .desc = A banner from which, according to the syndicate, you should feel hatred for NT.
-ent-BannerScience = science banner
- .desc = A banner displaying the colors of the science department. Where stupidity is proven greater than the universe.
-ent-BannerSecurity = security banner
- .desc = A banner displaying the colors of the shitcurity department. Security, my bad.
-ent-BannerBlue = blue banner
- .desc = A banner displaying the color blue. Dabudidabudai.
-ent-BannerRed = red banner
- .desc = A banner displaying the color red. The edgy one.
-ent-BannerYellow = yellow banner
- .desc = A banner displaying the color yellow. Reminds you of ducks and lemon stands.
-ent-BannerGreen = green banner
- .desc = A banner displaying the color green. Grass, leaves, guacamole.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/bonfire.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/bonfire.ftl
deleted file mode 100644
index fe24c9c9d83..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/bonfire.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-Bonfire = bonfire
- .desc = What can be better then late evening under the sky with guitar and friends.
-ent-LegionnaireBonfire = legionnaire bonfire
- .desc = There, in the land of lava and ash, place to to cook marshmallow and potato.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/cobwebs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/cobwebs.ftl
deleted file mode 100644
index d692f1a6159..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/cobwebs.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-Cobweb1 = cobweb
- .desc = Somebody should remove that.
-ent-Cobweb2 = { ent-Cobweb1 }
- .desc = { ent-Cobweb1.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/crystals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/crystals.ftl
deleted file mode 100644
index 609b69cd2b5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/crystals.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-CrystalGreen = crystal
- .desc = A crystaline solid.
- .suffix = green
-ent-CrystalPink = { ent-CrystalGreen }
- .suffix = pink
- .desc = { ent-CrystalGreen.desc }
-ent-CrystalGrey = { ent-CrystalGreen }
- .suffix = red
- .desc = { ent-CrystalGreen.desc }
-ent-CrystalOrange = { ent-CrystalGreen }
- .suffix = orange
- .desc = { ent-CrystalGreen.desc }
-ent-CrystalBlue = { ent-CrystalGreen }
- .suffix = blue
- .desc = { ent-CrystalGreen.desc }
-ent-CrystalCyan = { ent-CrystalGreen }
- .suffix = cyan
- .desc = { ent-CrystalGreen.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/curtains.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/curtains.ftl
deleted file mode 100644
index 11db93d1afb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/curtains.ftl
+++ /dev/null
@@ -1,62 +0,0 @@
-ent-BaseCurtains = curtains
- .desc = Hides what others shouldn't see.
-ent-HospitalCurtains = { ent-BaseCurtains }
- .desc = Contains less than 1% mercury.
- .suffix = Hospital
-ent-HospitalCurtainsOpen = { ent-HospitalCurtains }
- .suffix = Open, Hospital
- .desc = { ent-HospitalCurtains.desc }
-ent-CurtainsBlack = { ent-BaseCurtains }
- .suffix = Fancy black
- .desc = { ent-BaseCurtains.desc }
-ent-CurtainsBlackOpen = { ent-CurtainsBlack }
- .suffix = Open, Fancy black
- .desc = { ent-CurtainsBlack.desc }
-ent-CurtainsBlue = { ent-BaseCurtains }
- .suffix = Fancy blue
- .desc = { ent-BaseCurtains.desc }
-ent-CurtainsBlueOpen = { ent-CurtainsBlue }
- .suffix = Open, Fancy blue
- .desc = { ent-CurtainsBlue.desc }
-ent-CurtainsCyan = { ent-BaseCurtains }
- .suffix = Fancy cyan
- .desc = { ent-BaseCurtains.desc }
-ent-CurtainsCyanOpen = { ent-CurtainsCyan }
- .suffix = Open, Fancy cyan
- .desc = { ent-CurtainsCyan.desc }
-ent-CurtainsGreen = { ent-BaseCurtains }
- .suffix = Fancy green
- .desc = { ent-BaseCurtains.desc }
-ent-CurtainsGreenOpen = { ent-CurtainsGreen }
- .suffix = Open, Fancy green
- .desc = { ent-CurtainsGreen.desc }
-ent-CurtainsOrange = { ent-BaseCurtains }
- .suffix = Fancy orange
- .desc = { ent-BaseCurtains.desc }
-ent-CurtainsOrangeOpen = { ent-CurtainsOrange }
- .suffix = Open, Fancy orange
- .desc = { ent-CurtainsOrange.desc }
-ent-CurtainsPink = { ent-BaseCurtains }
- .suffix = Fancy pink
- .desc = { ent-BaseCurtains.desc }
-ent-CurtainsPinkOpen = { ent-CurtainsPink }
- .suffix = Open, Fancy pink
- .desc = { ent-CurtainsPink.desc }
-ent-CurtainsPurple = { ent-BaseCurtains }
- .suffix = Fancy purple
- .desc = { ent-BaseCurtains.desc }
-ent-CurtainsPurpleOpen = { ent-CurtainsPurple }
- .suffix = Open, Fancy purple
- .desc = { ent-CurtainsPurple.desc }
-ent-CurtainsRed = { ent-BaseCurtains }
- .suffix = Fancy red
- .desc = { ent-BaseCurtains.desc }
-ent-CurtainsRedOpen = { ent-CurtainsRed }
- .suffix = Open, Fancy red
- .desc = { ent-CurtainsRed.desc }
-ent-CurtainsWhite = { ent-BaseCurtains }
- .suffix = Fancy white
- .desc = { ent-BaseCurtains.desc }
-ent-CurtainsWhiteOpen = { ent-CurtainsWhite }
- .suffix = Open, Fancy white
- .desc = { ent-CurtainsWhite.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/decorated_fir_tree.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/decorated_fir_tree.ftl
deleted file mode 100644
index 06c63d66043..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/decorated_fir_tree.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-DecoratedFirTree = decorated fir tree
- .desc = A very festive tree for a very festive holiday.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/fireplace.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/fireplace.ftl
deleted file mode 100644
index 5960e6c4c76..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/fireplace.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Fireplace = fireplace
- .desc = A place that has fire. Cozy!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/flesh_blockers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/flesh_blockers.ftl
deleted file mode 100644
index 40f20d6be87..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/flesh_blockers.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FleshBlocker = flesh clump
- .desc = An annoying clump of flesh.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/showcase.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/showcase.ftl
deleted file mode 100644
index 30fd40a9ec8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/showcase.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-BaseShowcaseRobot = security robot showcase
- .desc = A non-functional replica of an old security robot.
-ent-ShowcaseRobot = security robot showcase
- .desc = A non-functional replica of an old security robot.
-ent-ShowcaseRobotWhite = white robot showcase
- .desc = A non-functional replica of an old robot.
-ent-ShowcaseRobotAntique = cargo robot showcase
- .desc = A non-functional replica of an old cargo robot.
-ent-ShowcaseRobotMarauder = marauder showcase
- .desc = A non-functional replica of a marauder, painted green.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/statues.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/statues.ftl
deleted file mode 100644
index 60927c69b5d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/decoration/statues.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-StatueVenusRed = statue of a pure maiden
- .desc = An ancient marble statue. The subject is depicted with a floor-length braid and is wielding a red toolbox.
- .suffix = Red
-ent-StatueVenusBlue = statue of a pure maiden
- .desc = An ancient marble statue. The subject is depicted with a floor-length braid and is wielding a blue toolbox.
- .suffix = Blue
-ent-StatueBananiumClown = bananium savior statue
- .desc = A bananium statue. It portrays the return of the savior who will rise up and lead the clowns to the great honk.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/base_structuredispensers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/base_structuredispensers.ftl
deleted file mode 100644
index 39303332a80..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/base_structuredispensers.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ReagentDispenserBase = { ent-ConstructibleMachine }
- .desc = { ent-ConstructibleMachine.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl
deleted file mode 100644
index fa706a71c71..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BoozeDispenser = booze dispenser
- .desc = A booze dispenser with a single slot for a container to be filled.
- .suffix = Filled
-ent-BoozeDispenserEmpty = { ent-BoozeDispenser }
- .suffix = Empty
- .desc = { ent-BoozeDispenser.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl
deleted file mode 100644
index cb73cd118f1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ChemDispenser = chemical dispenser
- .desc = An industrial grade chemical dispenser.
- .suffix = Filled
-ent-ChemDispenserEmpty = chemical dispenser
- .suffix = Empty
- .desc = { ent-ChemDispenser.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl
deleted file mode 100644
index df99f4e7775..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-SodaDispenser = soda dispenser
- .desc = A beverage dispenser with a selection of soda and several other common beverages. Has a single fill slot for containers.
- .suffix = Filled
-ent-SodaDispenserEmpty = { ent-SodaDispenser }
- .suffix = Empty
- .desc = { ent-SodaDispenser.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl
deleted file mode 100644
index cbef0f0f54e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl
+++ /dev/null
@@ -1,399 +0,0 @@
-ent-AirlockServiceLocked = { ent-Airlock }
- .suffix = Service, Locked
- .desc = { ent-Airlock.desc }
-ent-AirlockLawyerLocked = { ent-AirlockServiceLocked }
- .suffix = Lawyer, Locked
- .desc = { ent-AirlockServiceLocked.desc }
-ent-AirlockTheatreLocked = { ent-AirlockServiceLocked }
- .suffix = Theatre, Locked
- .desc = { ent-AirlockServiceLocked.desc }
-ent-AirlockChapelLocked = { ent-AirlockServiceLocked }
- .suffix = Chapel, Locked
- .desc = { ent-AirlockServiceLocked.desc }
-ent-AirlockJanitorLocked = { ent-AirlockServiceLocked }
- .suffix = Janitor, Locked
- .desc = { ent-AirlockServiceLocked.desc }
-ent-AirlockKitchenLocked = { ent-AirlockServiceLocked }
- .suffix = Kitchen, Locked
- .desc = { ent-AirlockServiceLocked.desc }
-ent-AirlockBarLocked = { ent-AirlockServiceLocked }
- .suffix = Bar, Locked
- .desc = { ent-AirlockServiceLocked.desc }
-ent-AirlockHydroponicsLocked = { ent-AirlockServiceLocked }
- .suffix = Hydroponics, Locked
- .desc = { ent-AirlockServiceLocked.desc }
-ent-AirlockServiceCaptainLocked = { ent-AirlockCommandLocked }
- .suffix = Captain, Locked
- .desc = { ent-AirlockCommandLocked.desc }
-ent-AirlockExternalLocked = { ent-AirlockExternal }
- .suffix = External, Locked
- .desc = { ent-AirlockExternal.desc }
-ent-AirlockExternalCargoLocked = { ent-AirlockExternal }
- .suffix = External, Cargo, Locked
- .desc = { ent-AirlockExternal.desc }
-ent-AirlockExternalEngineeringLocked = { ent-AirlockExternal }
- .suffix = External, Engineering, Locked
- .desc = { ent-AirlockExternal.desc }
-ent-AirlockExternalAtmosphericsLocked = { ent-AirlockExternal }
- .suffix = External, Atmospherics, Locked
- .desc = { ent-AirlockExternal.desc }
-ent-AirlockExternalSyndicateLocked = { ent-AirlockExternal }
- .suffix = External, Syndicate, Locked
- .desc = { ent-AirlockExternal.desc }
-ent-AirlockExternalNukeopLocked = { ent-AirlockExternal }
- .suffix = External, Nukeop, Locked
- .desc = { ent-AirlockExternal.desc }
-ent-AirlockFreezerLocked = { ent-AirlockFreezer }
- .suffix = Kitchen, Locked
- .desc = { ent-AirlockFreezer.desc }
-ent-AirlockFreezerKitchenHydroLocked = { ent-AirlockFreezer }
- .suffix = Kitchen/Hydroponics, Locked
- .desc = { ent-AirlockFreezer.desc }
-ent-AirlockFreezerHydroponicsLocked = { ent-AirlockFreezer }
- .suffix = Hydroponics, Locked
- .desc = { ent-AirlockFreezer.desc }
-ent-AirlockEngineeringLocked = { ent-AirlockEngineering }
- .suffix = Engineering, Locked
- .desc = { ent-AirlockEngineering.desc }
-ent-AirlockAtmosphericsLocked = { ent-AirlockAtmospherics }
- .suffix = Atmospherics, Locked
- .desc = { ent-AirlockAtmospherics.desc }
-ent-AirlockCargoLocked = { ent-AirlockCargo }
- .suffix = Cargo, Locked
- .desc = { ent-AirlockCargo.desc }
-ent-AirlockSalvageLocked = { ent-AirlockCargo }
- .suffix = Salvage, Locked
- .desc = { ent-AirlockCargo.desc }
-ent-AirlockMiningLocked = { ent-AirlockMining }
- .suffix = Mining(Salvage), Locked
- .desc = { ent-AirlockMining.desc }
-ent-AirlockMedicalLocked = { ent-AirlockMedical }
- .suffix = Medical, Locked
- .desc = { ent-AirlockMedical.desc }
-ent-AirlockVirologyLocked = { ent-AirlockVirology }
- .suffix = Virology, Locked
- .desc = { ent-AirlockVirology.desc }
-ent-AirlockChemistryLocked = { ent-AirlockChemistry }
- .suffix = Chemistry, Locked
- .desc = { ent-AirlockChemistry.desc }
-ent-AirlockMedicalMorgueLocked = { ent-AirlockMedical }
- .suffix = Morgue, Locked
- .desc = { ent-AirlockMedical.desc }
-ent-AirlockScienceLocked = { ent-AirlockScience }
- .suffix = Science, Locked
- .desc = { ent-AirlockScience.desc }
-ent-AirlockMedicalScienceLocked = { ent-AirlockScience }
- .suffix = Medical/Science, Locked
- .desc = { ent-AirlockScience.desc }
-ent-AirlockCentralCommandLocked = { ent-AirlockCentralCommand }
- .suffix = Central Command, Locked
- .desc = { ent-AirlockCentralCommand.desc }
-ent-AirlockCommandLocked = { ent-AirlockCommand }
- .suffix = Command, Locked
- .desc = { ent-AirlockCommand.desc }
-ent-AirlockCaptainLocked = { ent-AirlockCommand }
- .suffix = Captain, Locked
- .desc = { ent-AirlockCommand.desc }
-ent-AirlockChiefMedicalOfficerLocked = { ent-AirlockCommand }
- .suffix = ChiefMedicalOfficer, Locked
- .desc = { ent-AirlockCommand.desc }
-ent-AirlockChiefEngineerLocked = { ent-AirlockCommand }
- .suffix = ChiefEngineer, Locked
- .desc = { ent-AirlockCommand.desc }
-ent-AirlockHeadOfSecurityLocked = { ent-AirlockCommand }
- .suffix = HeadOfSecurity, Locked
- .desc = { ent-AirlockCommand.desc }
-ent-AirlockResearchDirectorLocked = { ent-AirlockCommand }
- .suffix = ResearchDirector, Locked
- .desc = { ent-AirlockCommand.desc }
-ent-AirlockHeadOfPersonnelLocked = { ent-AirlockCommand }
- .suffix = HeadOfPersonnel, Locked
- .desc = { ent-AirlockCommand.desc }
-ent-AirlockQuartermasterLocked = { ent-AirlockCommand }
- .suffix = Quartermaster, Locked
- .desc = { ent-AirlockCommand.desc }
-ent-AirlockSecurityLocked = { ent-AirlockSecurity }
- .suffix = Security, Locked
- .desc = { ent-AirlockSecurity.desc }
-ent-AirlockDetectiveLocked = { ent-AirlockSecurity }
- .suffix = Detective, Locked
- .desc = { ent-AirlockSecurity.desc }
-ent-AirlockBrigLocked = { ent-AirlockSecurity }
- .suffix = Brig, Locked
- .desc = { ent-AirlockSecurity.desc }
-ent-AirlockSecurityLawyerLocked = { ent-AirlockSecurity }
- .suffix = Security/Lawyer, Locked
- .desc = { ent-AirlockSecurity.desc }
-ent-AirlockArmoryLocked = { ent-AirlockSecurity }
- .suffix = Armory, Locked
- .desc = { ent-AirlockSecurity.desc }
-ent-AirlockVaultLocked = { ent-AirlockSecurity }
- .suffix = Vault, Locked
- .desc = { ent-AirlockSecurity.desc }
-ent-AirlockEVALocked = { ent-AirlockCommand }
- .suffix = EVA, Locked
- .desc = { ent-AirlockCommand.desc }
-ent-AirlockServiceGlassLocked = { ent-AirlockGlass }
- .suffix = Service, Locked
- .desc = { ent-AirlockGlass.desc }
-ent-AirlockLawyerGlassLocked = { ent-AirlockServiceGlassLocked }
- .suffix = Lawyer, Locked
- .desc = { ent-AirlockServiceGlassLocked.desc }
-ent-AirlockTheatreGlassLocked = { ent-AirlockServiceGlassLocked }
- .suffix = Theatre, Locked
- .desc = { ent-AirlockServiceGlassLocked.desc }
-ent-AirlockBarGlassLocked = { ent-AirlockGlass }
- .suffix = Bar, Locked
- .desc = { ent-AirlockGlass.desc }
-ent-AirlockExternalGlassLocked = { ent-AirlockExternalGlass }
- .suffix = External, Glass, Locked
- .desc = { ent-AirlockExternalGlass.desc }
-ent-AirlockExternalGlassCargoLocked = { ent-AirlockExternalGlass }
- .suffix = External, Glass, Cargo, Locked
- .desc = { ent-AirlockExternalGlass.desc }
-ent-AirlockExternalGlassSyndicateLocked = { ent-AirlockExternalGlass }
- .suffix = External, Glass, Syndicate, Locked
- .desc = { ent-AirlockExternalGlass.desc }
-ent-AirlockExternalGlassNukeopLocked = { ent-AirlockExternalGlass }
- .suffix = External, Glass, Nukeop, Locked
- .desc = { ent-AirlockExternalGlass.desc }
-ent-AirlockExternalGlassEngineeringLocked = { ent-AirlockExternalGlass }
- .suffix = External, Glass, Engineering, Locked
- .desc = { ent-AirlockExternalGlass.desc }
-ent-AirlockExternalGlassAtmosphericsLocked = { ent-AirlockExternalGlass }
- .suffix = External, Glass, Atmospherics, Locked
- .desc = { ent-AirlockExternalGlass.desc }
-ent-AirlockKitchenGlassLocked = { ent-AirlockServiceGlassLocked }
- .suffix = Kitchen, Locked
- .desc = { ent-AirlockServiceGlassLocked.desc }
-ent-AirlockJanitorGlassLocked = { ent-AirlockServiceGlassLocked }
- .suffix = Janitor, Locked
- .desc = { ent-AirlockServiceGlassLocked.desc }
-ent-AirlockHydroGlassLocked = { ent-AirlockServiceGlassLocked }
- .suffix = Hydroponics, Locked
- .desc = { ent-AirlockServiceGlassLocked.desc }
-ent-AirlockChapelGlassLocked = { ent-AirlockServiceGlassLocked }
- .suffix = Chapel, Locked
- .desc = { ent-AirlockServiceGlassLocked.desc }
-ent-AirlockEngineeringGlassLocked = { ent-AirlockEngineeringGlass }
- .suffix = Engineering, Locked
- .desc = { ent-AirlockEngineeringGlass.desc }
-ent-AirlockAtmosphericsGlassLocked = { ent-AirlockAtmosphericsGlass }
- .suffix = Atmospherics, Locked
- .desc = { ent-AirlockAtmosphericsGlass.desc }
-ent-AirlockCargoGlassLocked = { ent-AirlockCargoGlass }
- .suffix = Cargo, Locked
- .desc = { ent-AirlockCargoGlass.desc }
-ent-AirlockSalvageGlassLocked = { ent-AirlockCargoGlass }
- .suffix = Salvage, Locked
- .desc = { ent-AirlockCargoGlass.desc }
-ent-AirlockMiningGlassLocked = { ent-AirlockMiningGlass }
- .suffix = Mining(Salvage), Locked
- .desc = { ent-AirlockMiningGlass.desc }
-ent-AirlockChemistryGlassLocked = { ent-AirlockChemistryGlass }
- .suffix = Chemistry, Locked
- .desc = { ent-AirlockChemistryGlass.desc }
-ent-AirlockMedicalGlassLocked = { ent-AirlockMedicalGlass }
- .suffix = Medical, Locked
- .desc = { ent-AirlockMedicalGlass.desc }
-ent-AirlockVirologyGlassLocked = { ent-AirlockVirologyGlass }
- .suffix = Virology, Locked
- .desc = { ent-AirlockVirologyGlass.desc }
-ent-AirlockScienceGlassLocked = { ent-AirlockScienceGlass }
- .suffix = Science, Locked
- .desc = { ent-AirlockScienceGlass.desc }
-ent-AirlockMedicalScienceGlassLocked = { ent-AirlockScienceGlass }
- .suffix = Medical/Science, Locked
- .desc = { ent-AirlockScienceGlass.desc }
-ent-AirlockCentralCommandGlassLocked = { ent-AirlockCentralCommandGlass }
- .suffix = Central Command, Locked
- .desc = { ent-AirlockCentralCommandGlass.desc }
-ent-AirlockCommandGlassLocked = { ent-AirlockCommandGlass }
- .suffix = Command, Locked
- .desc = { ent-AirlockCommandGlass.desc }
-ent-AirlockCaptainGlassLocked = { ent-AirlockCommandGlass }
- .suffix = Captain, Locked
- .desc = { ent-AirlockCommandGlass.desc }
-ent-AirlockChiefMedicalOfficerGlassLocked = { ent-AirlockCommandGlass }
- .suffix = ChiefMedicalOfficer, Locked
- .desc = { ent-AirlockCommandGlass.desc }
-ent-AirlockChiefEngineerGlassLocked = { ent-AirlockCommandGlass }
- .suffix = ChiefEngineer, Locked
- .desc = { ent-AirlockCommandGlass.desc }
-ent-AirlockHeadOfSecurityGlassLocked = { ent-AirlockCommandGlass }
- .suffix = HeadOfSecurity, Locked
- .desc = { ent-AirlockCommandGlass.desc }
-ent-AirlockResearchDirectorGlassLocked = { ent-AirlockCommandGlass }
- .suffix = ResearchDirector, Locked
- .desc = { ent-AirlockCommandGlass.desc }
-ent-AirlockHeadOfPersonnelGlassLocked = { ent-AirlockCommandGlass }
- .suffix = HeadOfPersonnel, Locked
- .desc = { ent-AirlockCommandGlass.desc }
-ent-AirlockQuartermasterGlassLocked = { ent-AirlockCommandGlass }
- .suffix = Quartermaster, Locked
- .desc = { ent-AirlockCommandGlass.desc }
-ent-AirlockSecurityGlassLocked = { ent-AirlockSecurityGlass }
- .suffix = Security, Locked
- .desc = { ent-AirlockSecurityGlass.desc }
-ent-AirlockDetectiveGlassLocked = { ent-AirlockSecurityGlass }
- .suffix = Detective, Locked
- .desc = { ent-AirlockSecurityGlass.desc }
-ent-AirlockBrigGlassLocked = { ent-AirlockSecurityGlass }
- .suffix = Brig, Locked
- .desc = { ent-AirlockSecurityGlass.desc }
-ent-AirlockSecurityLawyerGlassLocked = { ent-AirlockSecurityGlass }
- .suffix = Security/Lawyer, Locked
- .desc = { ent-AirlockSecurityGlass.desc }
-ent-AirlockArmoryGlassLocked = { ent-AirlockSecurityGlass }
- .suffix = Armory, Locked
- .desc = { ent-AirlockSecurityGlass.desc }
-ent-AirlockEVAGlassLocked = { ent-AirlockCommandGlassLocked }
- .suffix = EVA, Locked
- .desc = { ent-AirlockCommandGlassLocked.desc }
-ent-AirlockSyndicateGlassLocked = { ent-AirlockSyndicateGlass }
- .suffix = Syndicate, Locked
- .desc = { ent-AirlockSyndicateGlass.desc }
-ent-AirlockSyndicateNukeopGlassLocked = { ent-AirlockSyndicateGlass }
- .suffix = Nukeop, Locked
- .desc = { ent-AirlockSyndicateGlass.desc }
-ent-AirlockMaintLocked = { ent-AirlockMaint }
- .suffix = Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintGlassLocked = { ent-AirlockMaintGlass }
- .suffix = Locked
- .desc = { ent-AirlockMaintGlass.desc }
-ent-AirlockMaintSalvageLocked = { ent-AirlockMaint }
- .suffix = Salvage, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintCargoLocked = { ent-AirlockMaint }
- .suffix = Cargo, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintCommandLocked = { ent-AirlockMaint }
- .suffix = Command, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintCommonLocked = { ent-AirlockMaint }
- .suffix = Common, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintEngiLocked = { ent-AirlockMaint }
- .suffix = Engineering, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintAtmoLocked = { ent-AirlockMaint }
- .suffix = Atmospherics, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintBarLocked = { ent-AirlockMaintServiceLocked }
- .suffix = Bar, Locked
- .desc = { ent-AirlockMaintServiceLocked.desc }
-ent-AirlockMaintChapelLocked = { ent-AirlockMaintServiceLocked }
- .suffix = Chapel, Locked
- .desc = { ent-AirlockMaintServiceLocked.desc }
-ent-AirlockMaintHydroLocked = { ent-AirlockMaintServiceLocked }
- .suffix = Hydroponics, Locked
- .desc = { ent-AirlockMaintServiceLocked.desc }
-ent-AirlockMaintJanitorLocked = { ent-AirlockMaintServiceLocked }
- .suffix = Janitor, Locked
- .desc = { ent-AirlockMaintServiceLocked.desc }
-ent-AirlockMaintLawyerLocked = { ent-AirlockMaintServiceLocked }
- .suffix = Lawyer, Locked
- .desc = { ent-AirlockMaintServiceLocked.desc }
-ent-AirlockMaintServiceLocked = { ent-AirlockMaint }
- .suffix = Service, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintTheatreLocked = { ent-AirlockMaintServiceLocked }
- .suffix = Theatre, Locked
- .desc = { ent-AirlockMaintServiceLocked.desc }
-ent-AirlockMaintKitchenLocked = { ent-AirlockMaintServiceLocked }
- .suffix = Kitchen, Locked
- .desc = { ent-AirlockMaintServiceLocked.desc }
-ent-AirlockMaintIntLocked = { ent-AirlockMaint }
- .suffix = Interior, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintMedLocked = { ent-AirlockMaint }
- .suffix = Medical, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintChemLocked = { ent-AirlockMaintMedLocked }
- .suffix = Chemistry, Locked
- .desc = { ent-AirlockMaintMedLocked.desc }
-ent-AirlockMaintRnDLocked = { ent-AirlockMaint }
- .suffix = Science, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintRnDMedLocked = { ent-AirlockMaintRnDLocked }
- .suffix = Medical/Science, Locked
- .desc = { ent-AirlockMaintRnDLocked.desc }
-ent-AirlockMaintSecLocked = { ent-AirlockMaint }
- .suffix = Security, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockMaintDetectiveLocked = { ent-AirlockMaintSecLocked }
- .suffix = Detective, Locked
- .desc = { ent-AirlockMaintSecLocked.desc }
-ent-AirlockMaintHOPLocked = { ent-AirlockMaintCommandLocked }
- .suffix = HeadOfPersonnel, Locked
- .desc = { ent-AirlockMaintCommandLocked.desc }
-ent-AirlockMaintCaptainLocked = { ent-AirlockMaintCommandLocked }
- .suffix = Captain, Locked
- .desc = { ent-AirlockMaintCommandLocked.desc }
-ent-AirlockMaintChiefEngineerLocked = { ent-AirlockMaintCommandLocked }
- .suffix = ChiefEngineer, Locked
- .desc = { ent-AirlockMaintCommandLocked.desc }
-ent-AirlockMaintChiefMedicalOfficerLocked = { ent-AirlockMaintCommandLocked }
- .suffix = ChiefMedicalOfficer, Locked
- .desc = { ent-AirlockMaintCommandLocked.desc }
-ent-AirlockMaintHeadOfSecurityLocked = { ent-AirlockMaintCommandLocked }
- .suffix = HeadOfSecurity, Locked
- .desc = { ent-AirlockMaintCommandLocked.desc }
-ent-AirlockMaintResearchDirectorLocked = { ent-AirlockMaintCommandLocked }
- .suffix = ResearchDirector, Locked
- .desc = { ent-AirlockMaintCommandLocked.desc }
-ent-AirlockMaintQuartermasterLocked = { ent-AirlockMaintCommandLocked }
- .suffix = Quartermaster, Locked
- .desc = { ent-AirlockMaintCommandLocked.desc }
-ent-AirlockMaintArmoryLocked = { ent-AirlockMaint }
- .suffix = Armory, Locked
- .desc = { ent-AirlockMaint.desc }
-ent-AirlockSyndicateLocked = { ent-AirlockSyndicate }
- .suffix = Syndicate, Locked
- .desc = { ent-AirlockSyndicate.desc }
-ent-AirlockSyndicateNukeopLocked = { ent-AirlockSyndicate }
- .suffix = Nukeop, Locked
- .desc = { ent-AirlockSyndicate.desc }
-ent-AirlockExternalShuttleLocked = { ent-AirlockShuttle }
- .suffix = External, Docking, Locked
- .desc = { ent-AirlockShuttle.desc }
-ent-AirlockExternalShuttleSyndicateLocked = { ent-AirlockShuttleSyndicate }
- .suffix = External, Docking, Syndicate, Locked
- .desc = { ent-AirlockShuttleSyndicate.desc }
-ent-AirlockExternalShuttleNukeopLocked = { ent-AirlockShuttleSyndicate }
- .suffix = External, Docking, Nukeop, Locked
- .desc = { ent-AirlockShuttleSyndicate.desc }
-ent-AirlockExternalGlassShuttleLocked = { ent-AirlockGlassShuttle }
- .suffix = External, Glass, Docking, Locked
- .desc = { ent-AirlockGlassShuttle.desc }
-ent-AirlockExternalGlassShuttleSyndicateLocked = { ent-AirlockGlassShuttleSyndicate }
- .suffix = Syndicate, Locked, Glass
- .desc = { ent-AirlockGlassShuttleSyndicate.desc }
-ent-AirlockExternalGlassShuttleNukeopLocked = { ent-AirlockGlassShuttleSyndicate }
- .suffix = Nukeop, Locked, Glass
- .desc = { ent-AirlockGlassShuttleSyndicate.desc }
-ent-AirlockExternalGlassShuttleEmergencyLocked = { ent-AirlockGlassShuttle }
- .suffix = External, Emergency, Glass, Docking, Locked
- .desc = { ent-AirlockGlassShuttle.desc }
-ent-AirlockExternalGlassShuttleArrivals = { ent-AirlockGlassShuttle }
- .suffix = External, Arrivals, Glass, Docking
- .desc = { ent-AirlockGlassShuttle.desc }
-ent-AirlockExternalGlassShuttleEscape = { ent-AirlockGlassShuttle }
- .suffix = External, Escape 3x4, Glass, Docking
- .desc = { ent-AirlockGlassShuttle.desc }
-ent-HighSecCentralCommandLocked = { ent-HighSecDoor }
- .suffix = Central Command, Locked
- .desc = { ent-HighSecDoor.desc }
-ent-HighSecCommandLocked = { ent-HighSecDoor }
- .suffix = Command, Locked
- .desc = { ent-HighSecDoor.desc }
-ent-HighSecCaptainLocked = { ent-HighSecDoor }
- .suffix = Captain, Locked
- .desc = { ent-HighSecDoor.desc }
-ent-HighSecArmoryLocked = { ent-HighSecDoor }
- .suffix = Armory, Locked
- .desc = { ent-HighSecDoor.desc }
-ent-AirlockHatchSyndicate = { ent-AirlockHatch }
- .suffix = Syndicate, Locked
- .desc = { ent-AirlockHatch.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/airlocks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/airlocks.ftl
deleted file mode 100644
index 8a74f6731c0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/airlocks.ftl
+++ /dev/null
@@ -1,84 +0,0 @@
-ent-AirlockFreezer = { ent-Airlock }
- .suffix = Freezer
- .desc = { ent-Airlock.desc }
-ent-AirlockEngineering = { ent-Airlock }
- .suffix = Engineering
- .desc = { ent-Airlock.desc }
-ent-AirlockAtmospherics = { ent-AirlockEngineering }
- .suffix = Atmospherics
- .desc = { ent-AirlockEngineering.desc }
-ent-AirlockCargo = { ent-Airlock }
- .suffix = Cargo
- .desc = { ent-Airlock.desc }
-ent-AirlockMedical = { ent-Airlock }
- .suffix = Medical
- .desc = { ent-Airlock.desc }
-ent-AirlockVirology = { ent-AirlockMedical }
- .suffix = Virology
- .desc = { ent-AirlockMedical.desc }
-ent-AirlockChemistry = { ent-AirlockMedical }
- .suffix = Chemistry
- .desc = { ent-AirlockMedical.desc }
-ent-AirlockScience = { ent-Airlock }
- .suffix = Science
- .desc = { ent-Airlock.desc }
-ent-AirlockCommand = { ent-Airlock }
- .suffix = Command
- .desc = { ent-Airlock.desc }
-ent-AirlockSecurity = { ent-Airlock }
- .suffix = Security
- .desc = { ent-Airlock.desc }
-ent-AirlockMaint = maintenance access
- .desc = { ent-Airlock.desc }
-ent-AirlockSyndicate = { ent-AirlockSecurity }
- .suffix = Syndicate
- .desc = { ent-AirlockSecurity.desc }
-ent-AirlockMining = { ent-AirlockCargo }
- .suffix = Mining(Salvage)
- .desc = { ent-AirlockCargo.desc }
-ent-AirlockCentralCommand = { ent-AirlockCommand }
- .suffix = Central Command
- .desc = { ent-AirlockCommand.desc }
-ent-AirlockHatch = airtight hatch
- .desc = { ent-Airlock.desc }
-ent-AirlockHatchMaintenance = maintenance hatch
- .desc = { ent-Airlock.desc }
-ent-AirlockEngineeringGlass = { ent-AirlockGlass }
- .suffix = Engineering
- .desc = { ent-AirlockGlass.desc }
-ent-AirlockMaintGlass = { ent-AirlockGlass }
- .suffix = Maintenance
- .desc = { ent-AirlockGlass.desc }
-ent-AirlockAtmosphericsGlass = { ent-AirlockEngineeringGlass }
- .suffix = Atmospherics
- .desc = { ent-AirlockEngineeringGlass.desc }
-ent-AirlockCargoGlass = { ent-AirlockGlass }
- .suffix = Cargo
- .desc = { ent-AirlockGlass.desc }
-ent-AirlockMedicalGlass = { ent-AirlockGlass }
- .suffix = Medical
- .desc = { ent-AirlockGlass.desc }
-ent-AirlockChemistryGlass = { ent-AirlockMedicalGlass }
- .suffix = Chemistry
- .desc = { ent-AirlockMedicalGlass.desc }
-ent-AirlockVirologyGlass = { ent-AirlockMedicalGlass }
- .suffix = Virology
- .desc = { ent-AirlockMedicalGlass.desc }
-ent-AirlockScienceGlass = { ent-AirlockGlass }
- .suffix = Science
- .desc = { ent-AirlockGlass.desc }
-ent-AirlockCommandGlass = { ent-AirlockGlass }
- .suffix = Command
- .desc = { ent-AirlockGlass.desc }
-ent-AirlockSecurityGlass = { ent-AirlockGlass }
- .suffix = Security
- .desc = { ent-AirlockGlass.desc }
-ent-AirlockSyndicateGlass = { ent-AirlockSecurityGlass }
- .suffix = Syndicate
- .desc = { ent-AirlockSecurityGlass.desc }
-ent-AirlockMiningGlass = { ent-AirlockCargoGlass }
- .suffix = Mining(Salvage)
- .desc = { ent-AirlockCargoGlass.desc }
-ent-AirlockCentralCommandGlass = { ent-AirlockCommandGlass }
- .suffix = Central Command
- .desc = { ent-AirlockCommandGlass.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/assembly.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/assembly.ftl
deleted file mode 100644
index 79006936b3c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/assembly.ftl
+++ /dev/null
@@ -1,105 +0,0 @@
-ent-AirlockAssemblyAtmospherics = { ent-AirlockAssembly }
- .suffix = Atmospherics
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyAtmosphericsGlass = { ent-AirlockAssembly }
- .suffix = Atmospherics, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyCargo = { ent-AirlockAssembly }
- .suffix = Cargo
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyCargoGlass = { ent-AirlockAssembly }
- .suffix = Cargo, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-PinionAirlockAssembly = airlock assembly
- .suffix = Pinion, Clockwork
- .desc = { ent-AirlockAssembly.desc }
-ent-PinionAirlockAssemblyGlass = { ent-PinionAirlockAssembly }
- .suffix = Pinion, Clockwork, Glass
- .desc = { ent-PinionAirlockAssembly.desc }
-ent-AirlockAssemblyCommand = { ent-AirlockAssembly }
- .suffix = Command
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyCommandGlass = { ent-AirlockAssembly }
- .suffix = Command, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyEngineering = { ent-AirlockAssembly }
- .suffix = Engineering
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyEngineeringGlass = { ent-AirlockAssembly }
- .suffix = Engineering, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyExternal = { ent-AirlockAssembly }
- .suffix = External
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyExternalGlass = { ent-AirlockAssembly }
- .suffix = External, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyGlass = { ent-AirlockAssembly }
- .suffix = Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyFreezer = { ent-AirlockAssembly }
- .suffix = Freezer
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyMaintenance = { ent-AirlockAssembly }
- .suffix = Maintenance
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyMaintenanceGlass = { ent-AirlockAssembly }
- .suffix = Maintenance, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyMedical = { ent-AirlockAssembly }
- .suffix = Medical
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyMedicalGlass = { ent-AirlockAssembly }
- .suffix = Medical, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyScience = { ent-AirlockAssembly }
- .suffix = Science
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyScienceGlass = { ent-AirlockAssembly }
- .suffix = Science, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblySecurity = { ent-AirlockAssembly }
- .suffix = Security
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblySecurityGlass = { ent-AirlockAssembly }
- .suffix = Security, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyShuttle = { ent-AirlockAssembly }
- .suffix = Shuttle
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyShuttleGlass = { ent-AirlockAssembly }
- .suffix = Shuttle, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyVirology = { ent-AirlockAssembly }
- .suffix = Virology
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyVirologyGlass = { ent-AirlockAssembly }
- .suffix = Virology, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyCentralCommand = { ent-AirlockAssembly }
- .suffix = CentralCommand
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyCentralCommandGlass = { ent-AirlockAssembly }
- .suffix = CentralCommand, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyMining = { ent-AirlockAssembly }
- .suffix = Mining
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyMiningGlass = { ent-AirlockAssembly }
- .suffix = Mining, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblySyndicate = { ent-AirlockAssembly }
- .suffix = Syndicate
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblySyndicateGlass = { ent-AirlockAssembly }
- .suffix = Syndicate, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyShuttleSyndicate = { ent-AirlockAssembly }
- .suffix = ShuttleSyndicate
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyShuttleSyndicateGlass = { ent-AirlockAssembly }
- .suffix = ShuttleSyndicate, Glass
- .desc = { ent-AirlockAssembly.desc }
-ent-AirlockAssemblyHighSec = { ent-AirlockAssembly }
- .suffix = HighSec
- .desc = { ent-AirlockAssembly.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/base_assembly.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/base_assembly.ftl
deleted file mode 100644
index e88e91c1c14..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/base_assembly.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-AirlockAssembly = airlock assembly
- .desc = It opens, it closes, and maybe crushes you.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/base_structureairlocks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/base_structureairlocks.ftl
deleted file mode 100644
index 75fe77ca9fa..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/base_structureairlocks.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-Airlock = airlock
- .desc = It opens, it closes, and maybe crushes you.
-ent-AirlockRCDResistant = { ent-Airlock }
- .desc = { ent-Airlock.desc }
-ent-AirlockGlass = glass airlock
- .desc = { ent-Airlock.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/clockwork.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/clockwork.ftl
deleted file mode 100644
index 3fa04bcf000..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/clockwork.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-PinionAirlock = { ent-Airlock }
- .suffix = Pinion, Clockwork
- .desc = { ent-Airlock.desc }
-ent-PinionAirlockGlass = { ent-AirlockGlass }
- .suffix = Pinion, Clockwork
- .desc = { ent-AirlockGlass.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/easy_pry.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/easy_pry.ftl
deleted file mode 100644
index 529caf35663..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/easy_pry.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-AirlockExternalEasyPry = { ent-AirlockExternal }
- .desc = It opens, it closes, it might crush you, and there might be only space behind it. Has to be manually activated. Has a valve labelled "TURN TO OPEN"
- .suffix = External, EasyPry
-ent-AirlockExternalGlassEasyPry = { ent-AirlockExternalGlass }
- .desc = It opens, it closes, it might crush you, and there might be only space behind it. Has to be manually activated. Has a valve labelled "TURN TO OPEN"
- .suffix = External, Glass, EasyPry
-ent-AirlockGlassShuttleEasyPry = { ent-AirlockGlassShuttle }
- .desc = Necessary for connecting two space craft together. Has a valve labelled "TURN TO OPEN"
- .suffix = EasyPry, Docking
-ent-AirlockShuttleEasyPry = { ent-AirlockShuttle }
- .desc = Necessary for connecting two space craft together. Has a valve labelled "TURN TO OPEN"
- .suffix = EasyPry, Docking
-ent-AirlockExternalEasyPryLocked = { ent-AirlockExternalLocked }
- .desc = It opens, it closes, it might crush you, and there might be only space behind it. Has to be manually activated. Has a valve labelled "TURN TO OPEN"
- .suffix = External, EasyPry, Locked
-ent-AirlockExternalGlassEasyPryLocked = { ent-AirlockExternalGlassLocked }
- .desc = It opens, it closes, it might crush you, and there might be only space behind it. Has to be manually activated. Has a valve labelled "TURN TO OPEN"
- .suffix = External, Glass, EasyPry, Locked
-ent-AirlockGlassShuttleEasyPryLocked = { ent-AirlockExternalGlassShuttleLocked }
- .desc = Necessary for connecting two space craft together. Has a valve labelled "TURN TO OPEN"
- .suffix = EasyPry, Docking, Locked
-ent-AirlockShuttleEasyPryLocked = { ent-AirlockExternalShuttleLocked }
- .desc = Necessary for connecting two space craft together. Has a valve labelled "TURN TO OPEN"
- .suffix = EasyPry, Docking, Locked
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl
deleted file mode 100644
index 8442c07603d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-AirlockExternal = { ent-AirlockRCDResistant }
- .desc = It opens, it closes, it might crush you, and there might be only space behind it.
- .suffix = External
-ent-AirlockExternalGlass = { ent-AirlockExternal }
- .suffix = Glass, External
- .desc = { ent-AirlockExternal.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/highsec.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/highsec.ftl
deleted file mode 100644
index fbd6bb8a8e6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/highsec.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-HighSecDoor = high security door
- .desc = Keeps the bad out and keeps the good in.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl
deleted file mode 100644
index 27ea1c57700..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-AirlockShuttle = external airlock
- .desc = Necessary for connecting two space craft together.
- .suffix = Docking
-ent-AirlockGlassShuttle = external airlock
- .desc = Necessary for connecting two space craft together.
- .suffix = Glass, Docking
-ent-AirlockShuttleAssembly = external airlock assembly
- .desc = An incomplete structure necessary for connecting two space craft together.
- .suffix = Docking
-ent-AirlockGlassShuttleSyndicate = external airlock
- .desc = Necessary for connecting two space craft together.
- .suffix = Glass, Docking
-ent-AirlockShuttleSyndicate = external airlock
- .desc = Necessary for connecting two space craft together.
- .suffix = Docking
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/firelocks/firelock.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/firelocks/firelock.ftl
deleted file mode 100644
index 35edb82e4b0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/firelocks/firelock.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseFirelock = firelock
- .desc = Apply crowbar.
-ent-Firelock = { ent-BaseFirelock }
- .desc = { ent-BaseFirelock.desc }
-ent-FirelockGlass = glass firelock
- .desc = { ent-Firelock.desc }
-ent-FirelockEdge = firelock
- .desc = { ent-Firelock.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/firelocks/frame.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/firelocks/frame.ftl
deleted file mode 100644
index 2fafd153cfa..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/firelocks/frame.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FirelockFrame = firelock frame
- .desc = That is a firelock frame.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/materialdoors/material_doors.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/materialdoors/material_doors.ftl
deleted file mode 100644
index 2376ca61551..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/materialdoors/material_doors.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-BaseMaterialDoor = door
- .desc = A door, where will it lead?
-ent-BaseMaterialDoorNavMap = { ent-BaseMaterialDoor }
- .desc = { ent-BaseMaterialDoor.desc }
-ent-MetalDoor = metal door
- .desc = { ent-BaseMaterialDoorNavMap.desc }
-ent-WoodDoor = wooden door
- .desc = A door, where will it lead?
-ent-PaperDoor = paper door
- .desc = A door, where will it lead?
-ent-PlasmaDoor = plasma door
- .desc = A door, where will it lead?
-ent-GoldDoor = gold door
- .desc = A door, where will it lead?
-ent-SilverDoor = silver door
- .desc = A door, where will it lead?
-ent-BananiumDoor = bananium door
- .desc = A door, where will it lead?
-ent-WebDoor = web door
- .desc = A door, leading to the lands of the spiders... or a spaced room.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/secretdoor/secret_door.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/secretdoor/secret_door.ftl
deleted file mode 100644
index 58ec4357eb7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/secretdoor/secret_door.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-BaseSecretDoor = solid wall
- .desc = Keeps the air in and the greytide out.
- .suffix = secret door
-ent-BaseSecretDoorAssembly = secret door assembly
- .desc = It opens, it closes, and maybe crushes you.
-ent-SolidSecretDoor = solid wall
- .desc = { ent-BaseSecretDoor.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl
deleted file mode 100644
index 175943a94d1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-BlastDoor = blast door
- .desc = This one says 'BLAST DONGER'.
-ent-BlastDoorOpen = { ent-BlastDoor }
- .suffix = Open
- .desc = { ent-BlastDoor.desc }
-ent-BlastDoorFrame = blast door frame
- .desc = This one says 'BLAST DONGER'.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door_autolink.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door_autolink.ftl
deleted file mode 100644
index 27bf0dfbc36..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door_autolink.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-BlastDoorExterior1 = { ent-BlastDoor }
- .suffix = Autolink, Ext1
- .desc = { ent-BlastDoor.desc }
-ent-BlastDoorExterior1Open = { ent-BlastDoorOpen }
- .suffix = Open, Autolink, Ext1
- .desc = { ent-BlastDoorOpen.desc }
-ent-BlastDoorExterior2 = { ent-BlastDoor }
- .suffix = Autolink, Ext2
- .desc = { ent-BlastDoor.desc }
-ent-BlastDoorExterior2Open = { ent-BlastDoorOpen }
- .suffix = Open, Autolink, Ext2
- .desc = { ent-BlastDoorOpen.desc }
-ent-BlastDoorExterior3 = { ent-BlastDoor }
- .suffix = Autolink, Ext3
- .desc = { ent-BlastDoor.desc }
-ent-BlastDoorExterior3Open = { ent-BlastDoorOpen }
- .suffix = Open, Autolink, Ext3
- .desc = { ent-BlastDoorOpen.desc }
-ent-BlastDoorBridge = { ent-BlastDoor }
- .suffix = Autolink, Bridge
- .desc = { ent-BlastDoor.desc }
-ent-BlastDoorBridgeOpen = { ent-BlastDoorOpen }
- .suffix = Open, Autolink, Bridge
- .desc = { ent-BlastDoorOpen.desc }
-ent-BlastDoorEngineering = { ent-BlastDoor }
- .suffix = Autolink, Engineering
- .desc = { ent-BlastDoor.desc }
-ent-BlastDoorEngineeringOpen = { ent-BlastDoorOpen }
- .suffix = Open, Autolink, Engineering
- .desc = { ent-BlastDoorOpen.desc }
-ent-BlastDoorScience = { ent-BlastDoor }
- .suffix = Autolink, Science
- .desc = { ent-BlastDoor.desc }
-ent-BlastDoorScienceOpen = { ent-BlastDoorOpen }
- .suffix = Open, Autolink, Science
- .desc = { ent-BlastDoorOpen.desc }
-ent-BlastDoorWindows = { ent-BlastDoor }
- .suffix = Autolink, Windows
- .desc = { ent-BlastDoor.desc }
-ent-BlastDoorWindowsOpen = { ent-BlastDoorOpen }
- .suffix = Open, Autolink, Windows
- .desc = { ent-BlastDoorOpen.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/shutters.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/shutters.ftl
deleted file mode 100644
index 8f6e6fb6fe6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/shutters.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-BaseShutter = shutter
- .desc = One shudders to think about what might be behind this shutter.
-ent-ShuttersNormal = { ent-BaseShutter }
- .desc = { ent-BaseShutter.desc }
-ent-ShuttersNormalOpen = { ent-ShuttersNormal }
- .suffix = Open
- .desc = { ent-ShuttersNormal.desc }
-ent-ShuttersRadiation = radiation shutters
- .desc = Why did they make these shutters radioactive?
-ent-ShuttersRadiationOpen = { ent-ShuttersRadiation }
- .suffix = Open
- .desc = { ent-ShuttersRadiation.desc }
-ent-ShuttersWindow = window shutters
- .desc = The Best (TM) place to see your friends explode!
-ent-ShuttersWindowOpen = { ent-ShuttersWindow }
- .suffix = Open
- .desc = { ent-ShuttersWindow.desc }
-ent-ShuttersFrame = shutter frame
- .desc = A frame for constructing a shutter.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/assembly.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/assembly.ftl
deleted file mode 100644
index 32688b7b8b0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/assembly.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-WindoorAssembly = windoor assembly
- .desc = It opens, it closes, and you can see through it!
-ent-WindoorAssemblySecure = secure windoor assembly
- .desc = It opens, it closes, and you can see through it! This one looks tough.
-ent-WindoorAssemblyClockwork = clockwork windoor assembly
- .desc = It opens, it closes, and you can see through it! This one looks tough.
-ent-WindoorAssemblyPlasma = Plasma windoor assembly
- .desc = It opens, it closes, and you can see through it! This one looks purp-, no, pink. Wait...
-ent-WindoorAssemblySecurePlasma = Secure Plasma windoor assembly
- .desc = It opens, it closes, and you can see through it! This one looks strong and pin-, no, purple. Hold on...
-ent-WindoorAssemblyUranium = Uranium windoor assembly
- .desc = It opens, it closes, and you can see through it! This one looks sickly green...
-ent-WindoorAssemblySecureUranium = Secure Uranium windoor assembly
- .desc = It opens, it closes, and you can see through it! This one looks strong and radioactive-lime-green!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl
deleted file mode 100644
index 8ac8ffb04d7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseWindoor = { ent-BaseStructure }
- .desc = { ent-BaseStructure.desc }
-ent-BaseSecureWindoor = { ent-BaseWindoor }
- .desc = { ent-BaseWindoor.desc }
-ent-BasePlasmaWindoor = { ent-BaseWindoor }
- .desc = { ent-BaseWindoor.desc }
-ent-BaseSecurePlasmaWindoor = { ent-BaseWindoor }
- .desc = { ent-BaseWindoor.desc }
-ent-BaseUraniumWindoor = { ent-BaseWindoor }
- .desc = { ent-BaseWindoor.desc }
-ent-BaseSecureUraniumWindoor = { ent-BaseWindoor }
- .desc = { ent-BaseWindoor.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/clockwork.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/clockwork.ftl
deleted file mode 100644
index 8102579fd2b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/clockwork.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BaseClockworkWindoor = clockwork windoor
- .desc = { ent-BaseWindoor.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/windoor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/windoor.ftl
deleted file mode 100644
index a16f26c8acb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/windoor.ftl
+++ /dev/null
@@ -1,143 +0,0 @@
-ent-Windoor = Windoor
- .desc = It's a window and a sliding door. Wow!
-ent-WindoorSecure = Secure Windoor
- .desc = It's a sturdy window and a sliding door. Wow!
-ent-WindoorClockwork = clockwork windoor
- .desc = It's a sturdy window and a sliding door. Wow!
-ent-WindoorPlasma = Plasma Windoor
- .desc = It's a pink window *and* a sliding door. Amazing!
-ent-WindoorSecurePlasma = Secure Plasma Windoor
- .desc = It's a sturdy purple window *and* a sliding door. Spectacular!
-ent-WindoorUranium = Uranium Windoor
- .desc = It's a window and a sliding door. Huh? Oh, and it's green!
-ent-WindoorSecureUranium = Secure Uranium Windoor
- .desc = It's a sturdy window and a sliding door. It's so neon green, it might even taste like limes!
-ent-WindoorBarLocked = { ent-Windoor }
- .suffix = Bar, Locked
- .desc = { ent-Windoor.desc }
-ent-WindoorBarKitchenLocked = { ent-Windoor }
- .suffix = Bar&Kitchen, Locked
- .desc = { ent-Windoor.desc }
-ent-WindoorCargoLocked = { ent-Windoor }
- .suffix = Cargo, Locked
- .desc = { ent-Windoor.desc }
-ent-WindoorChapelLocked = { ent-Windoor }
- .suffix = Chapel, Locked
- .desc = { ent-Windoor.desc }
-ent-WindoorHydroponicsLocked = { ent-Windoor }
- .suffix = Hydroponics, Locked
- .desc = { ent-Windoor.desc }
-ent-WindoorJanitorLocked = { ent-Windoor }
- .suffix = Janitor, Locked
- .desc = { ent-Windoor.desc }
-ent-PlasmaWindoorJanitorLocked = { ent-WindoorPlasma }
- .suffix = Janitor, Locked, Plasma
- .desc = { ent-WindoorPlasma.desc }
-ent-WindoorKitchenLocked = { ent-Windoor }
- .suffix = Kitchen, Locked
- .desc = { ent-Windoor.desc }
-ent-WindoorKitchenHydroponicsLocked = { ent-Windoor }
- .suffix = Kitchen&Hydroponics, Locked
- .desc = { ent-Windoor.desc }
-ent-WindoorServiceLocked = { ent-Windoor }
- .suffix = Service, Locked
- .desc = { ent-Windoor.desc }
-ent-WindoorTheatreLocked = { ent-Windoor }
- .suffix = Theatre, Locked
- .desc = { ent-Windoor.desc }
-ent-WindoorSecureArmoryLocked = { ent-WindoorSecureSecurityLocked }
- .suffix = Armory, Locked
- .desc = { ent-WindoorSecureSecurityLocked.desc }
-ent-PlasmaWindoorSecureArmoryLocked = { ent-WindoorSecurePlasma }
- .suffix = Armory, Locked, Plasma
- .desc = { ent-WindoorSecurePlasma.desc }
-ent-WindoorSecureAtmosphericsLocked = { ent-WindoorSecure }
- .suffix = Atmospherics, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-PlasmaWindoorSecureAtmosphericsLocked = { ent-WindoorSecurePlasma }
- .suffix = Atmospherics, Locked, Plasma
- .desc = { ent-WindoorSecurePlasma.desc }
-ent-WindoorSecureBarLocked = { ent-WindoorSecure }
- .suffix = Bar, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-WindoorSecureBrigLocked = { ent-WindoorSecureSecurityLocked }
- .suffix = Brig, Locked
- .desc = { ent-WindoorSecureSecurityLocked.desc }
-ent-WindoorSecureCargoLocked = { ent-WindoorSecure }
- .suffix = Cargo, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-WindoorSecureChapelLocked = { ent-WindoorSecure }
- .suffix = Chapel, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-WindoorSecureChemistryLocked = { ent-WindoorSecure }
- .suffix = Chemistry, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-PlasmaWindoorSecureChemistryLocked = { ent-WindoorSecurePlasma }
- .suffix = Chemistry, Locked, Plasma
- .desc = { ent-WindoorSecurePlasma.desc }
-ent-WindoorSecureCentralCommandLocked = { ent-WindoorSecure }
- .suffix = Central Command, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-PlasmaWindoorSecureCentralCommandLocked = { ent-WindoorSecurePlasma }
- .suffix = Central Command, Locked, Plasma
- .desc = { ent-WindoorSecurePlasma.desc }
-ent-UraniumWindoorSecureCentralCommandLocked = { ent-WindoorSecureUranium }
- .suffix = Central Command, Locked, Uranium
- .desc = { ent-WindoorSecureUranium.desc }
-ent-WindoorSecureCommandLocked = { ent-WindoorSecure }
- .suffix = Command, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-PlasmaWindoorSecureCommandLocked = { ent-WindoorSecurePlasma }
- .suffix = Command, Locked, Plasma
- .desc = { ent-WindoorSecurePlasma.desc }
-ent-WindoorSecureDetectiveLocked = { ent-WindoorSecure }
- .suffix = Detective, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-WindoorSecureEngineeringLocked = { ent-WindoorSecure }
- .suffix = Engineering, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-PlasmaWindoorSecureEngineeringLocked = { ent-WindoorSecurePlasma }
- .suffix = Engineering, Locked, Plasma
- .desc = { ent-WindoorSecurePlasma.desc }
-ent-UraniumWindoorSecureEngineeringLocked = { ent-WindoorSecureUranium }
- .suffix = Engineering, Locked, Uranium
- .desc = { ent-WindoorSecureUranium.desc }
-ent-WindoorSecureExternalLocked = { ent-WindoorSecure }
- .suffix = External, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-WindoorSecureJanitorLocked = { ent-WindoorSecure }
- .suffix = Janitor, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-PlasmaWindoorSecureJanitorLocked = { ent-WindoorSecurePlasma }
- .suffix = Janitor, Locked, Plasma
- .desc = { ent-WindoorSecurePlasma.desc }
-ent-WindoorSecureKitchenLocked = { ent-WindoorSecure }
- .suffix = Kitchen, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-WindoorSecureSecurityLawyerLocked = { ent-WindoorSecureSecurityLocked }
- .suffix = Security/Lawyer, Locked
- .desc = { ent-WindoorSecureSecurityLocked.desc }
-ent-WindoorSecureMedicalLocked = { ent-WindoorSecure }
- .suffix = Medical, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-WindoorSecureSalvageLocked = { ent-WindoorSecure }
- .suffix = Salvage, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-WindoorSecureSecurityLocked = { ent-WindoorSecure }
- .suffix = Security, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-PlasmaWindoorSecureSecurityLocked = { ent-WindoorSecurePlasma }
- .suffix = Security, Locked, Plasma
- .desc = { ent-WindoorSecurePlasma.desc }
-ent-WindoorSecureScienceLocked = { ent-WindoorSecure }
- .suffix = Science, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-PlasmaWindoorSecureScienceLocked = { ent-WindoorSecurePlasma }
- .suffix = Science, Locked, Plasma
- .desc = { ent-WindoorSecurePlasma.desc }
-ent-WindoorSecureServiceLocked = { ent-WindoorSecure }
- .suffix = Service, Locked
- .desc = { ent-WindoorSecure.desc }
-ent-WindoorSecureHeadOfPersonnelLocked = { ent-WindoorSecure }
- .suffix = HeadOfPersonnel, Locked
- .desc = { ent-WindoorSecure.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/altar.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/altar.ftl
deleted file mode 100644
index c5068a2bd1d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/altar.ftl
+++ /dev/null
@@ -1,40 +0,0 @@
-ent-AltarBase = altar
- .desc = Altar of the Gods.
-ent-AltarNanotrasen = nanotrasen altar
- .desc = { ent-AltarBase.desc }
-ent-AltarChaos = chaos altar
- .desc = { ent-AltarNanotrasen.desc }
-ent-AltarDruid = druid altar
- .desc = { ent-AltarNanotrasen.desc }
-ent-AltarToolbox = toolbox altar
- .desc = { ent-AltarNanotrasen.desc }
-ent-AltarSpaceChristian = space-Christian altar
- .desc = { ent-AltarNanotrasen.desc }
-ent-AltarSatana = satanic altar
- .desc = { ent-AltarNanotrasen.desc }
-ent-AltarTechnology = technology altar
- .desc = { ent-AltarNanotrasen.desc }
-ent-AltarConvertFestival = festival altar
- .desc = { ent-AltarBase.desc }
-ent-AltarConvertMaint = maint altar
- .desc = { ent-AltarConvertFestival.desc }
-ent-AltarConvertBlue = blue altar
- .desc = { ent-AltarConvertFestival.desc }
-ent-AltarConvertBurden = burden altar
- .desc = { ent-AltarConvertFestival.desc }
-ent-AltarConvert = convert altar
- .desc = { ent-AltarConvertFestival.desc }
-ent-AltarConvertOrange = orange altar
- .desc = { ent-AltarConvertFestival.desc }
-ent-AltarConvertRed = red altar
- .desc = { ent-AltarConvertFestival.desc }
-ent-AltarConvertWhite = white altar
- .desc = { ent-AltarConvertFestival.desc }
-ent-AltarConvertYellow = yellow altar
- .desc = { ent-AltarConvertFestival.desc }
-ent-AltarHeaven = heaven altar
- .desc = { ent-AltarBase.desc }
-ent-AltarFangs = fanged altar
- .desc = { ent-AltarHeaven.desc }
-ent-AltarBananium = honkmother altar
- .desc = A bananium altar dedicated to the honkmother.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/beds.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/beds.ftl
deleted file mode 100644
index 5694450c2ce..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/beds.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-Bed = bed
- .desc = This is used to lie in, sleep in or strap on. Resting here provides extremely slow healing.
-ent-MedicalBed = medical bed
- .desc = A hospital bed for patients to recover in. Resting here provides fairly slow healing.
-ent-DogBed = dog bed
- .desc = A comfy-looking dog bed. You can even strap your pet in, in case the gravity turns off.
-ent-Mattress = mattress
- .desc = Better sleep in that then on the floor i guess.
-ent-WebBed = web bed
- .desc = You got webbed.
-ent-PsychBed = psychologist bed
- .desc = An upholstered bed for the psychological care of patients.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/bench.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/bench.ftl
deleted file mode 100644
index 6cf2268859f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/bench.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-BenchComfy = comfortable bench
- .desc = A bench with an extremely comfortable backrest.
-ent-BenchColorfulComfy = { ent-BenchComfy }
- .desc = A bench with an extremely comfortable backrest.
- .suffix = Solo. Colorful
-ent-BenchRedComfy = { ent-BenchComfy }
- .suffix = Solo. Red
- .desc = { ent-BenchComfy.desc }
-ent-BenchBlueComfy = { ent-BenchComfy }
- .suffix = Solo. Blue
- .desc = { ent-BenchComfy.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/bookshelf.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/bookshelf.ftl
deleted file mode 100644
index c3331dea54f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/bookshelf.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Bookshelf = bookshelf
- .desc = Mostly filled with books.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/carpets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/carpets.ftl
deleted file mode 100644
index 071234044f7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/carpets.ftl
+++ /dev/null
@@ -1,34 +0,0 @@
-ent-CarpetBase = carpet
- .desc = Fancy walking surface.
-ent-Carpet = { ent-CarpetBase }
- .suffix = Red
- .desc = { ent-CarpetBase.desc }
-ent-CarpetBlack = { ent-CarpetBase }
- .suffix = Black
- .desc = { ent-CarpetBase.desc }
-ent-CarpetPink = { ent-CarpetBase }
- .suffix = Pink
- .desc = { ent-CarpetBase.desc }
-ent-CarpetBlue = { ent-CarpetBase }
- .suffix = Blue
- .desc = { ent-CarpetBase.desc }
-ent-CarpetGreen = { ent-CarpetBase }
- .suffix = Green
- .desc = { ent-CarpetBase.desc }
-ent-CarpetOrange = { ent-CarpetBase }
- .suffix = Orange
- .desc = { ent-CarpetBase.desc }
-ent-CarpetSBlue = { ent-CarpetBase }
- .suffix = Sky Blue
- .desc = { ent-CarpetBase.desc }
-ent-CarpetPurple = { ent-CarpetBase }
- .suffix = Purple
- .desc = { ent-CarpetBase.desc }
-ent-CarpetCyan = { ent-CarpetBase }
- .suffix = Cyan
- .desc = { ent-CarpetBase.desc }
-ent-CarpetWhite = { ent-CarpetBase }
- .suffix = White
- .desc = { ent-CarpetBase.desc }
-ent-CarpetChapel = chapel's carpet
- .desc = { ent-BaseStructure.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl
deleted file mode 100644
index e301b8ea45a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl
+++ /dev/null
@@ -1,48 +0,0 @@
-ent-SeatBase = chair
- .desc = You sit in this. Either by will or force.
-ent-UnanchoredChairBase = chair
- .desc = { ent-SeatBase.desc }
-ent-ChairBase = chair
- .desc = { ent-UnanchoredChairBase.desc }
-ent-OfficeChairBase = chair
- .desc = { ent-UnanchoredChairBase.desc }
-ent-StoolBase = stool
- .desc = { ent-OfficeChairBase.desc }
-ent-Chair = chair
- .desc = { ent-ChairBase.desc }
-ent-ChairGreyscale = chair
- .suffix = White
- .desc = { ent-Chair.desc }
-ent-Stool = stool
- .desc = Apply butt.
-ent-StoolBar = bar stool
- .desc = { ent-StoolBase.desc }
-ent-ChairBrass = brass chair
- .desc = { ent-StoolBase.desc }
-ent-ChairOfficeLight = white office chair
- .desc = { ent-OfficeChairBase.desc }
-ent-ChairOfficeDark = dark office chair
- .desc = { ent-ChairOfficeLight.desc }
-ent-ComfyChair = comfy chair
- .desc = It looks comfy.
-ent-ChairPilotSeat = pilot seat
- .desc = The pilot seat of a prestigious ship.
-ent-ChairWood = wooden chair
- .desc = { ent-UnanchoredChairBase.desc }
-ent-ChairRitual = ritual chair
- .desc = Looks uncomfortable.
-ent-ChairMeat = meat chair
- .desc = Uncomfortably sweaty.
-ent-ChairCursed = cursed chair
- .desc = It's staring back.
-ent-ChairWeb = web chair
- .desc = For true web developers.
-ent-ChairFolding = folding chair
- .desc = If you carry six of these you become the coolest kid at church.
-ent-ChairFoldingSpawnFolded = { ent-ChairFolding }
- .suffix = folded
- .desc = { ent-ChairFolding.desc }
-ent-SteelBench = steel bench
- .desc = A long chair made for a metro. Really standard design.
-ent-WoodenBench = wooden bench
- .desc = Did you get a splinter? Well, at least it’s eco friendly.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/dresser.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/dresser.ftl
deleted file mode 100644
index 35db796e03b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/dresser.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-Dresser = dresser
- .desc = Wooden dresser, can store things inside itself, ideal for underwear, and someone's kidneys?...
-ent-DresserFilled = { ent-Dresser }
- .suffix = Filled
- .desc = { ent-Dresser.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/instruments.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/instruments.ftl
deleted file mode 100644
index 2b3c6301a78..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/instruments.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-BasePlaceableInstrument = baseinstrument
- .desc = { ent-BaseStructureDynamic.desc }
- .suffix = { "" }
-ent-BasePlaceableInstrumentRotatable = baseinstrumentrotatable
- .desc = { ent-BasePlaceableInstrument.desc }
- .suffix = { "" }
-ent-PianoInstrument = piano
- .desc = Play Needles Piano Now.
- .suffix = { "" }
-ent-UprightPianoInstrument = upright piano
- .desc = I said Piannie!
- .suffix = { "" }
-ent-MinimoogInstrument = minimoog
- .desc = This is a minimoog, like a space piano, but more spacey!
- .suffix = { "" }
-ent-ChurchOrganInstrument = church organ
- .desc = This thing really blows!
- .suffix = { "" }
-ent-TubaInstrument = tuba
- .desc = The big daddy of the brass family. Standing next to its majesty makes you feel insecure.
- .suffix = { "" }
-ent-DawInstrument = digital audio workstation
- .desc = Cutting edge music technology, straight from the 90s.
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/memorial.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/memorial.ftl
deleted file mode 100644
index f477b6615b5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/memorial.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-Memorial = memorial
- .desc = Commemorating something.
-ent-SS13Memorial = Tomb of the Unknown Employee
- .desc =
- Here rests an unknown employee
- Unknown by name or rank
- Whose acts will not be forgotten
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl
deleted file mode 100644
index 824236add9d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl
+++ /dev/null
@@ -1,64 +0,0 @@
-ent-PottedPlantBase = potted plant
- .desc = A little bit of nature contained in a pot.
-ent-PottedPlant0 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant1 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant2 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant3 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant4 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant5 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant6 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant7 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant8 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlantBioluminscent = bioluminescent potted plant
- .desc = It produces light!
-ent-PottedPlant10 = { ent-PottedPlantBase }
- .desc = A pretty piece of nature contained in a pot.
-ent-PottedPlant11 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant12 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant13 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant14 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant15 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant16 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant17 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant18 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant19 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant20 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant21 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant22 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant23 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant24 = { ent-PottedPlantBase }
- .desc = { ent-PottedPlantBase.desc }
-ent-PottedPlantRD = RD's potted plant
- .desc = A gift from the botanical staff, presented after the RD's reassignment. There's a tag on it that says "Y'all come back now, y'hear?" It doesn't look very healthy...
-ent-PottedPlant26 = { ent-PottedPlantBase }
- .desc = Is it just me, or is it blinking?
-ent-PottedPlant27 = plastic potted plant
- .desc = A fake, cheap looking, plastic tree. Perfect for people who kill every plant they touch.
-ent-PottedPlant28 = { ent-PottedPlant27 }
- .desc = { ent-PottedPlant27.desc }
-ent-PottedPlant29 = { ent-PottedPlant27 }
- .desc = { ent-PottedPlant27.desc }
-ent-PottedPlant30 = { ent-PottedPlant27 }
- .desc = { ent-PottedPlant27.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/rollerbeds.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/rollerbeds.ftl
deleted file mode 100644
index 17553f3745e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/rollerbeds.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-RollerBed = rollerbed
- .desc = Used to carry patients around without damaging them.
-ent-RollerBedSpawnFolded = { ent-RollerBed }
- .suffix = folded
- .desc = { ent-RollerBed.desc }
-ent-CheapRollerBed = rollerbed
- .desc = A run-down rollerbed. Used to carry patients around.
-ent-CheapRollerBedSpawnFolded = { ent-CheapRollerBed }
- .suffix = folded
- .desc = { ent-CheapRollerBed.desc }
-ent-EmergencyRollerBed = rollerbed
- .desc = A robust looking rollerbed used for emergencies.
-ent-EmergencyRollerBedSpawnFolded = { ent-EmergencyRollerBed }
- .suffix = folded
- .desc = { ent-EmergencyRollerBed.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/sink.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/sink.ftl
deleted file mode 100644
index 8bc7dc60c71..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/sink.ftl
+++ /dev/null
@@ -1,13 +0,0 @@
-ent-SinkEmpty = sink
- .desc = The faucets have been tightened to the maximum possible torque but are still known to drip.
- .suffix = Empty
-ent-Sink = sink
- .suffix = Water
- .desc = { ent-SinkEmpty.desc }
-ent-SinkWide = wide sink
- .desc = { ent-Sink.desc }
-ent-SinkStemless = sink
- .desc = { ent-SinkEmpty.desc }
-ent-SinkStemlessWater = sink
- .suffix = Water
- .desc = { ent-SinkStemless.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/base_structuretables.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/base_structuretables.ftl
deleted file mode 100644
index 7ce9dfeae24..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/base_structuretables.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-TableBase = table
- .desc = A square piece of metal standing on four metal legs.
-ent-CounterBase = counter
- .desc = { ent-TableBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/operating_table.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/operating_table.ftl
deleted file mode 100644
index e5d876079bf..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/operating_table.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-OperatingTable = operating table
- .desc = Special medical table for surgery. This one just seems to be a useless prop, though.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl
deleted file mode 100644
index 62e1a17186a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl
+++ /dev/null
@@ -1,62 +0,0 @@
-ent-TableFrame = table frame
- .desc = Pieces of metal that make the frame of a table.
-ent-CounterWoodFrame = wooden counter frame
- .desc = Pieces of wood that make the frame of a table.
-ent-CounterMetalFrame = metal counter frame
- .desc = Pieces of metal that make the frame of a table.
-ent-Table = table
- .desc = A square piece of metal standing on four metal legs.
-ent-TableReinforced = reinforced table
- .desc = A square piece of metal standing on four metal legs. Extra robust.
-ent-TableGlass = glass table
- .desc = A square piece of glass, standing on four metal legs.
-ent-TableReinforcedGlass = reinforced glass table
- .desc = A square piece of glass, standing on four metal legs. Extra robust.
-ent-TablePlasmaGlass = plasma glass table
- .desc = A square piece of plasma glass, standing on four metal legs. Pretty!
-ent-TableBrass = brass table
- .desc = A shiny, corrosion resistant brass table. Steampunk!
-ent-TableWood = wood table
- .desc = Do not apply fire to this. Rumour says it burns easily.
-ent-TableCarpet = gambling table
- .desc = Play em' cowboy.
-ent-TableStone = stone table
- .desc = Literally the sturdiest thing you have ever seen.
-ent-TableWeb = web table
- .desc = Really smooth and surprisingly durable.
-ent-TableFancyBase = fancy table
- .desc = Expensive and rich.
-ent-TableFancyBlue = { ent-TableFancyBase }
- .suffix = Blue
- .desc = { ent-TableFancyBase.desc }
-ent-TableFancyCyan = { ent-TableFancyBase }
- .suffix = Cyan
- .desc = { ent-TableFancyBase.desc }
-ent-TableFancyBlack = { ent-TableFancyBase }
- .suffix = Black
- .desc = { ent-TableFancyBase.desc }
-ent-TableFancyRed = { ent-TableFancyBase }
- .suffix = Red
- .desc = { ent-TableFancyBase.desc }
-ent-TableFancyPurple = { ent-TableFancyBase }
- .suffix = Purple
- .desc = { ent-TableFancyBase.desc }
-ent-TableFancyPink = { ent-TableFancyBase }
- .suffix = Pink
- .desc = { ent-TableFancyBase.desc }
-ent-TableFancyGreen = { ent-TableFancyBase }
- .suffix = Green
- .desc = { ent-TableFancyBase.desc }
-ent-TableFancyOrange = { ent-TableFancyBase }
- .suffix = Orange
- .desc = { ent-TableFancyBase.desc }
-ent-TableFancyWhite = { ent-TableFancyBase }
- .suffix = White
- .desc = { ent-TableFancyBase.desc }
-ent-TableDebug = table
- .desc = PUT ON THEM CODERSOCKS!!
- .suffix = DEBUG
-ent-TableCounterWood = wood counter
- .desc = Do not apply fire to this. Rumour says it burns easily.
-ent-TableCounterMetal = metal counter
- .desc = Looks like a good place to put a drink down.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/toilet.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/toilet.ftl
deleted file mode 100644
index bde241a7fc7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/toilet.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ToiletEmpty = toilet
- .desc = The HT-451, a torque rotation-based, waste disposal unit for small matter. This one seems remarkably clean.
- .suffix = Empty
-ent-ToiletDirtyWater = { ent-ToiletEmpty }
- .suffix = Dirty Water
- .desc = { ent-ToiletEmpty.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/gates.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/gates.ftl
deleted file mode 100644
index 9d6c35846ed..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/gates.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseLogicItem = { ent-BaseItem }
- .desc = { ent-BaseItem.desc }
-ent-LogicGate = logic gate
- .desc = A logic gate with two inputs and one output. Technicians can change its mode of operation using a screwdriver.
-ent-EdgeDetector = edge detector
- .desc = Splits rising and falling edges into unique pulses and detects how edgy you are.
-ent-PowerSensor = power sensor
- .desc = Generates signals in response to powernet changes. Can be cycled between cable voltages.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/holographic/projections.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/holographic/projections.ftl
deleted file mode 100644
index 5dcaf0d07e3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/holographic/projections.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-HolosignWetFloor = wet floor sign
- .desc = The words flicker as if they mean nothing.
-ent-HoloFan = holofan
- .desc = A barrier of hard light that blocks air, but nothing else.
-ent-HolosignSecurity = holographic barrier
- .desc = A barrier of hard light that blocks movement, but pretty weak.
-ent-HolosignForcefield = holographic force field
- .desc = A powerful temporal containment field that doesn't let anything through, not even a tesla or singularity.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/hydro_tray.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/hydro_tray.ftl
deleted file mode 100644
index d242bb3be89..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/hydro_tray.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-hydroponicsTray = hydroponics tray
- .desc = An interstellar-grade space farmplot allowing for rapid growth and selective breeding of crops. Just... keep in mind the space weeds.
-ent-HydroponicsTrayEmpty = { ent-hydroponicsTray }
- .suffix = Empty
- .desc = { ent-hydroponicsTray.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl
deleted file mode 100644
index 6efa8c5b8b1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl
+++ /dev/null
@@ -1,75 +0,0 @@
-ent-AlwaysPoweredWallLight = light
- .desc = An always powered light.
- .suffix = Always powered
-ent-PoweredlightEmpty = light
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
- .suffix = Empty
-ent-Poweredlight = { ent-PoweredlightEmpty }
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
-ent-PoweredlightLED = { ent-Poweredlight }
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
- .suffix = LED
-ent-AlwaysPoweredLightLED = { ent-AlwaysPoweredWallLight }
- .suffix = Always Powered, LED
- .desc = { ent-AlwaysPoweredWallLight.desc }
-ent-PoweredlightExterior = { ent-Poweredlight }
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
- .suffix = Exterior
-ent-AlwaysPoweredLightExterior = { ent-AlwaysPoweredWallLight }
- .suffix = Always Powered, Exterior
- .desc = { ent-AlwaysPoweredWallLight.desc }
-ent-PoweredlightSodium = { ent-Poweredlight }
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
- .suffix = Sodium
-ent-AlwaysPoweredLightSodium = { ent-AlwaysPoweredWallLight }
- .suffix = Always Powered, Sodium
- .desc = { ent-AlwaysPoweredWallLight.desc }
-ent-SmallLight = small light
- .desc = An always powered light.
- .suffix = Always Powered
-ent-PoweredSmallLightEmpty = small light
- .desc = A light fixture. Draws power and produces light when equipped with a light bulb.
- .suffix = Empty
-ent-PoweredLEDSmallLight = { ent-PoweredSmallLightEmpty }
- .suffix = LED
- .desc = { ent-PoweredSmallLightEmpty.desc }
-ent-PoweredSmallLight = { ent-PoweredSmallLightEmpty }
- .desc = { ent-PoweredSmallLightEmpty.desc }
-ent-EmergencyLight = emergency light
- .desc = A small light with an internal battery that turns on as soon as it stops receiving any power. Nanotrasen technology allows it to adapt its color to alert crew to the conditions of the station.
-ent-PoweredlightCyan = { ent-Poweredlight }
- .suffix = Cyan
- .desc = { ent-Poweredlight.desc }
-ent-AlwaysPoweredlightCyan = { ent-AlwaysPoweredWallLight }
- .suffix = Always Powered, Cyan
- .desc = { ent-AlwaysPoweredWallLight.desc }
-ent-PoweredlightBlue = { ent-Poweredlight }
- .suffix = Blue
- .desc = { ent-Poweredlight.desc }
-ent-AlwaysPoweredlightBlue = { ent-AlwaysPoweredWallLight }
- .suffix = Always Powered, Blue
- .desc = { ent-AlwaysPoweredWallLight.desc }
-ent-PoweredlightPink = { ent-Poweredlight }
- .suffix = Pink
- .desc = { ent-Poweredlight.desc }
-ent-AlwaysPoweredlightPink = { ent-AlwaysPoweredWallLight }
- .suffix = Always Powered, Pink
- .desc = { ent-AlwaysPoweredWallLight.desc }
-ent-PoweredlightOrange = { ent-Poweredlight }
- .suffix = Orange
- .desc = { ent-Poweredlight.desc }
-ent-AlwaysPoweredlightOrange = { ent-AlwaysPoweredWallLight }
- .suffix = Always Powered, Orange
- .desc = { ent-AlwaysPoweredWallLight.desc }
-ent-PoweredlightRed = { ent-Poweredlight }
- .suffix = Red
- .desc = { ent-Poweredlight.desc }
-ent-AlwaysPoweredlightRed = { ent-AlwaysPoweredWallLight }
- .suffix = Always Powered, Red
- .desc = { ent-AlwaysPoweredWallLight.desc }
-ent-PoweredlightGreen = { ent-Poweredlight }
- .suffix = Green
- .desc = { ent-Poweredlight.desc }
-ent-AlwaysPoweredlightGreen = { ent-AlwaysPoweredWallLight }
- .suffix = Always Powered, Green
- .desc = { ent-AlwaysPoweredWallLight.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/ground_lighting.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/ground_lighting.ftl
deleted file mode 100644
index 48d6fe24073..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/ground_lighting.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-LightPostSmall = post light
- .desc = An always powered light.
- .suffix = Always Powered
-ent-PoweredLightPostSmallEmpty = post light
- .desc = A small light post.
- .suffix = Empty
-ent-PoweredLightPostSmall = post light
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
-ent-PoweredLEDLightPostSmall = post light
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
- .suffix = LED
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/strobe_lighting.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/strobe_lighting.ftl
deleted file mode 100644
index 37287a2d03a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/strobe_lighting.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-AlwaysPoweredStrobeLight = strobe
- .desc = UH?! Sorry, all I can hear is WEE-OOO-WEE-OOO!
- .suffix = Always powered
-ent-PoweredStrobeLightEmpty = strobe
- .desc = UH?! Sorry, all I can hear is WEE-OOO-WEE-OOO!
- .suffix = Empty
-ent-PoweredStrobeLightPolice = { ent-PoweredStrobeLightEmpty }
- .suffix = Empty, police
- .desc = { ent-PoweredStrobeLightEmpty.desc }
-ent-PoweredStrobeLightSiren = { ent-PoweredStrobeLightEmpty }
- .suffix = Empty, siren
- .desc = { ent-PoweredStrobeLightEmpty.desc }
-ent-PoweredStrobeLightEpsilon = { ent-PoweredStrobeLightEmpty }
- .suffix = Empty, epsilon
- .desc = { ent-PoweredStrobeLightEmpty.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/anomaly_equipment.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/anomaly_equipment.ftl
deleted file mode 100644
index c3d58c26866..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/anomaly_equipment.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-MachineAnomalyVessel = anomaly vessel
- .desc = A container able to harness a scan of an anomaly and turn it into research data.
-ent-MachineAnomalyVesselExperimental = experimental anomaly vessel
- .desc = An advanced anomaly vessel capable of greater research potential at the cost of increased volatility and low-level radioactive decay into the environment.
-ent-MachineAPE = A.P.E.
- .desc = An Anomalous Particle Emitter, capable of shooting out unstable particles which can interface with anomalies.
-ent-MachineAnomalyGenerator = anomaly generator
- .desc = The peak of pseudoscientific technology.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/anomaly_sync.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/anomaly_sync.ftl
deleted file mode 100644
index e36fa125305..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/anomaly_sync.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MachineAnomalySynchronizer = anomaly synchronizer
- .desc = A sophisticated device that reads changes in anomalous waves, and converts them into energy signals.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/artifact_analyzer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/artifact_analyzer.ftl
deleted file mode 100644
index 9e91ddba3d5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/artifact_analyzer.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-MachineArtifactAnalyzer = artifact analyzer
- .desc = A platform capable of performing analysis on various types of artifacts.
-ent-MachineArtifactCrusher = artifact crusher
- .desc = Best not to let your fingers get stuck...
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/base_structuremachines.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/base_structuremachines.ftl
deleted file mode 100644
index 97f665003b6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/base_structuremachines.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseMachine = { ent-BaseStructure }
- .desc = { ent-BaseStructure.desc }
-ent-BaseMachinePowered = { ent-BaseMachine }
- .desc = { ent-BaseMachine.desc }
-ent-ConstructibleMachine = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/bombs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/bombs.ftl
deleted file mode 100644
index d60f5b425b2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/bombs.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseHardBomb = hardbomb
- .desc = Just keep talking and nobody will explode.
-ent-TrainingBomb = training bomb
- .desc = A bomb for dummies, manual not included.
-ent-SyndicateBomb = syndicate bomb
- .desc = A bomb for Syndicate operatives and agents alike. The real deal, no more training, get to it!
-ent-SyndicateBombFake = { ent-SyndicateBomb }
- .suffix = fake
- .desc = { ent-SyndicateBomb.desc }
-ent-DebugHardBomb = debug bomb
- .desc = Holy shit this is gonna explode
- .suffix = DEBUG
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/chem_master.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/chem_master.ftl
deleted file mode 100644
index 8b93b628ecc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/chem_master.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ChemMaster = ChemMaster 4000
- .desc = An industrial grade chemical manipulator with pill and bottle production included.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/cloning_machine.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/cloning_machine.ftl
deleted file mode 100644
index 4ab2d1cd3af..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/cloning_machine.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CloningPod = cloning pod
- .desc = A Cloning Pod. 50% reliable.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/arcades.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/arcades.ftl
deleted file mode 100644
index bfb70044861..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/arcades.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-ArcadeBase = arcade
- .desc = An arcade cabinet.
-ent-SpaceVillainArcade = space villain arcade
- .desc = { ent-ArcadeBase.desc }
-ent-SpaceVillainArcadeFilled = { ent-SpaceVillainArcade }
- .suffix = Filled
- .desc = { ent-SpaceVillainArcade.desc }
-ent-BlockGameArcade = NT block game
- .desc = An arcade cabinet with a strangely familiar game.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/base_structurecomputers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/base_structurecomputers.ftl
deleted file mode 100644
index c03e2568bed..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/base_structurecomputers.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BaseComputer = computer
- .desc = { ent-BaseStructureComputer.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl
deleted file mode 100644
index f4f98bad56e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl
+++ /dev/null
@@ -1,68 +0,0 @@
-ent-ComputerAlert = alerts computer
- .desc = Used to access the station's automated alert system.
-ent-ComputerEmergencyShuttle = emergency shuttle console
- .desc = Handles authorization to early launch the shuttle.
-ent-BaseComputerShuttle = shuttle console
- .desc = Used to pilot a shuttle.
-ent-ComputerShuttle = shuttle console
- .desc = Used to pilot a shuttle.
-ent-ComputerShuttleSyndie = syndicate shuttle console
- .desc = Used to pilot a syndicate shuttle.
-ent-ComputerShuttleCargo = cargo shuttle console
- .desc = Used to pilot the cargo shuttle.
-ent-ComputerShuttleSalvage = salvage shuttle console
- .desc = Used to pilot the salvage shuttle.
-ent-ComputerIFF = IFF computer
- .desc = Allows you to control the IFF characteristics of this vessel.
-ent-ComputerIFFSyndicate = IFF computer
- .desc = Allows you to control the IFF and stealth characteristics of this vessel.
- .suffix = Syndicate
-ent-ComputerPowerMonitoring = power monitoring computer
- .desc = It monitors power levels across the station.
-ent-ComputerMedicalRecords = medical records computer
- .desc = This can be used to check medical records.
-ent-ComputerCriminalRecords = criminal records computer
- .desc = This can be used to check criminal records. Only security can modify them.
-ent-ComputerStationRecords = station records computer
- .desc = This can be used to check station records.
-ent-ComputerCrewMonitoring = crew monitoring console
- .desc = Used to monitor active health sensors built into most of the crew's uniforms.
-ent-ComputerResearchAndDevelopment = R&D computer
- .desc = A computer used to interface with R&D tools.
-ent-ComputerAnalysisConsole = analysis console
- .desc = A computer used to interface with the artifact analyzer.
-ent-ComputerId = ID card computer
- .desc = Terminal for programming Nanotrasen employee ID cards to access parts of the station.
-ent-computerBodyScanner = body scanner computer
- .desc = A body scanner.
-ent-ComputerComms = communications computer
- .desc = A computer used to make station wide announcements via keyboard, set the appropriate alert level, and call the emergency shuttle.
-ent-SyndicateComputerComms = syndicate communications computer
- .desc = A computer capable of remotely hacking into the station's communications systems. Using this to make an announcement will alert the station to your presence.
-ent-ComputerSolarControl = solar control computer
- .desc = A controller for solar panel arrays.
-ent-ComputerRadar = mass scanner computer
- .desc = A computer for detecting nearby bodies, displaying them by position and mass.
-ent-ComputerCargoShuttle = cargo shuttle computer
- .desc = Used to order the shuttle.
-ent-ComputerCargoOrders = cargo request computer
- .desc = Used to order supplies and approve requests.
-ent-ComputerCargoBounty = cargo bounty computer
- .desc = Used to manage currently active bounties.
-ent-ComputerCloningConsole = cloning console computer
- .desc = The centerpiece of the cloning system, medicine's greatest accomplishment. It has lots of ports and wires.
-ent-ComputerSalvageExpedition = salvage expeditions computer
- .desc = Used to accept salvage missions, if you're tough enough.
-ent-ComputerSurveillanceCameraMonitor = camera monitor
- .desc = A surveillance camera monitor. You're watching them. Maybe.
-ent-ComputerSurveillanceWirelessCameraMonitor = wireless camera monitor
- .desc = A wireless surveillance camera monitor. You're watching them. Maybe.
-ent-ComputerPalletConsole = cargo sale computer
- .desc = Used to sell goods loaded onto cargo pallets
-ent-ComputerMassMedia = news manager console
- .desc = Write your message to the world!
-ent-ComputerSensorMonitoring = sensor monitoring computer
- .desc = A flexible console for monitoring all kinds of sensors.
- .suffix = TESTING, DO NOT MAP
-ent-ComputerRoboticsControl = robotics control console
- .desc = Used to remotely monitor, disable and destroy the station's cyborgs.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/frame.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/frame.ftl
deleted file mode 100644
index 4afad1add44..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/frame.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseStructureComputer = { ent-BaseStructure }
- .desc = { ent-BaseStructure.desc }
-ent-ComputerFrame = computer frame
- .desc = A computer under construction.
-ent-ComputerBroken = broken computer
- .desc = This computer has seen better days.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/techdiskterminal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/techdiskterminal.ftl
deleted file mode 100644
index 900fa66cb29..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/techdiskterminal.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ComputerTechnologyDiskTerminal = tech disk terminal
- .desc = A terminal used to print out technology disks.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/crew_monitor_server.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/crew_monitor_server.ftl
deleted file mode 100644
index 8b1a32e1163..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/crew_monitor_server.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CrewMonitoringServer = crew monitoring server
- .desc = Receives and relays the status of all active suit sensors on the station.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/disease_diagnoser.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/disease_diagnoser.ftl
deleted file mode 100644
index b21e10e7f6e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/disease_diagnoser.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-DiseaseDiagnoser = Disease Diagnoser Delta Extreme
- .desc = A machine that analyzes disease samples.
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/fatextractor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/fatextractor.ftl
deleted file mode 100644
index 05339dff01c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/fatextractor.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FatExtractor = lipid extractor
- .desc = Safely and efficiently extracts excess fat from a subject.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/fax_machine.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/fax_machine.ftl
deleted file mode 100644
index 4c8ad2460b5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/fax_machine.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-FaxMachineBase = long range fax machine
- .desc = Bluespace technologies on the application of bureaucracy.
-ent-FaxMachineCentcom = CentCom long range fax machine
- .suffix = CentCom
- .desc = { ent-FaxMachineBase.desc }
-ent-FaxMachineSyndie = syndicate long range fax machine
- .suffix = Syndicate
- .desc = { ent-FaxMachineBase.desc }
-ent-FaxMachineCaptain = captain long range fax machine
- .suffix = NukeCodes
- .desc = { ent-FaxMachineBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/flatpacker.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/flatpacker.ftl
deleted file mode 100644
index ff5c8fd6f0f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/flatpacker.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-MachineFlatpacker = Flatpacker 1001
- .desc = An industrial machine used for expediting machine construction across the station.
-ent-FlatpackerNoBoardEffect = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/frame.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/frame.ftl
deleted file mode 100644
index 2f760b24723..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/frame.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-UnfinishedMachineFrame = machine frame
- .desc = A machine under construction. Needs more parts.
- .suffix = Unfinished
-ent-MachineFrame = machine frame
- .suffix = Ready
- .desc = { "" }
-ent-MachineFrameDestroyed = destroyed machine frame
- .desc = { ent-BaseStructureDynamic.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/gateway.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/gateway.ftl
deleted file mode 100644
index bd01c0002b0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/gateway.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseGateway = gateway
- .desc = A mysterious gateway built by unknown hands, it allows for faster than light travel to far-flung locations.
-ent-Gateway = { ent-BaseGateway }
- .desc = { ent-BaseGateway.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/gravity_generator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/gravity_generator.ftl
deleted file mode 100644
index a369df7cacc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/gravity_generator.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-GravityGenerator = gravity generator
- .desc = It's what keeps you to the floor.
-ent-GravityGeneratorMini = mini gravity generator
- .desc = It's what keeps you to the floor, now in fun size.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/grill.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/grill.ftl
deleted file mode 100644
index 248e0b1052e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/grill.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-KitchenElectricGrill = electric grill
- .desc = A microwave? No, a real man cooks steaks on a grill!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/hotplate.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/hotplate.ftl
deleted file mode 100644
index e19d8893a58..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/hotplate.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseHeaterMachine = { ent-BaseMachinePowered }
- .desc = { ent-BaseMachinePowered.desc }
-ent-ChemistryHotplate = hotplate
- .desc = The descendent of the microwaves, our newest invention in beaker heating technology: the hotplate!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/jukebox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/jukebox.ftl
deleted file mode 100644
index e3d907539f4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/jukebox.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Jukebox = jukebox
- .desc = A machine capable of playing a wide variety of tunes. Enjoyment not guaranteed.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/lathe.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/lathe.ftl
deleted file mode 100644
index 7b4d8f4f21d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/lathe.ftl
+++ /dev/null
@@ -1,36 +0,0 @@
-ent-BaseLathe = lathe
- .desc = { ent-BaseMachinePowered.desc }
-ent-BaseLatheLube = { ent-BaseLathe }
- .desc = { ent-BaseLathe.desc }
-ent-BaseHyperlathe = { "" }
- .desc = { "" }
-ent-Autolathe = autolathe
- .desc = It produces basic items using metal and glass.
-ent-AutolatheHyperConvection = hyper convection autolathe
- .desc = A highly-experimental autolathe that harnesses the power of extreme heat to slowly create objects more cost-effectively.
-ent-Protolathe = protolathe
- .desc = Converts raw materials into advanced items.
-ent-ProtolatheHyperConvection = hyper convection protolathe
- .desc = A highly-experimental protolathe that harnesses the power of extreme heat to slowly create objects more cost-effectively.
-ent-CircuitImprinter = circuit imprinter
- .desc = Prints circuit boards for machines.
-ent-CircuitImprinterHyperConvection = hyper convection circuit imprinter
- .desc = A highly-experimental circuit imprinter that harnesses the power of extreme heat to slowly create objects more cost-effectively.
-ent-ExosuitFabricator = exosuit fabricator
- .desc = Creates parts for robotics and other mechanical needs
-ent-Biofabricator = biofabricator
- .desc = Produces animal cubes using biomass.
-ent-SecurityTechFab = security techfab
- .desc = Prints equipment for use by security crew.
-ent-AmmoTechFab = ammo techfab
- .desc = Prints the bare minimum of bullets that any budget military or armory could need. Nothing fancy.
-ent-MedicalTechFab = medical techfab
- .desc = Prints equipment for use by the medbay.
-ent-UniformPrinter = uniform printer
- .desc = Prints new or replacement uniforms.
-ent-OreProcessor = ore processor
- .desc = It produces sheets and ingots using ores.
-ent-OreProcessorIndustrial = industrial ore processor
- .desc = An ore processor specifically designed for mass-producing metals in industrial applications.
-ent-Sheetifier = sheet-meister 2000
- .desc = A very sheety machine.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/material_reclaimer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/material_reclaimer.ftl
deleted file mode 100644
index d0508bf92b8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/material_reclaimer.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MaterialReclaimer = material reclaimer
- .desc = Cannot reclaim immaterial things, like motivation.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/biomass_reclaimer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/biomass_reclaimer.ftl
deleted file mode 100644
index 8af44190968..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/biomass_reclaimer.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BiomassReclaimer = biomass reclaimer
- .desc = Reclaims biomass from corpses. Gruesome.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/chemistry_machines.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/chemistry_machines.ftl
deleted file mode 100644
index 468cab28e7e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/chemistry_machines.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseTabletopChemicalMachine = { ent-BaseMachinePowered }
- .desc = { ent-BaseMachinePowered.desc }
-ent-MachineElectrolysisUnit = electrolysis unit
- .desc = The latest in medicinal electrocution technology.
-ent-MachineCentrifuge = tabletop centrifuge
- .desc = Around and around it goes...
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/cryo_pod.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/cryo_pod.ftl
deleted file mode 100644
index 2ad208a91e5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/cryo_pod.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CryoPod = cryo pod
- .desc = A special machine intended to create a safe environment for the use of chemicals that react in cold environments.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/disease_diagnoser.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/disease_diagnoser.ftl
deleted file mode 100644
index 6c91571fe81..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/disease_diagnoser.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-DiseaseDiagnoser = Disease Diagnoser Delta Extreme
- .desc = A machine that analyzes disease samples.
-ent-DiagnosisReportPaper = disease diagnoser report
- .desc = A chilling medical receipt.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/vaccinator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/vaccinator.ftl
deleted file mode 100644
index 0d006315d61..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical/vaccinator.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Vaccinator = vaccinator
- .desc = A machine that creates vaccines.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical_scanner.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical_scanner.ftl
deleted file mode 100644
index aba29b102f6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/medical_scanner.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-MedicalScanner = medical scanner
- .desc = A bulky medical scanner.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/microwave.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/microwave.ftl
deleted file mode 100644
index b2667536e58..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/microwave.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-KitchenMicrowave = microwave
- .desc = It's magic.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/nuke.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/nuke.ftl
deleted file mode 100644
index 1968816c7bc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/nuke.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-NuclearBomb = nuclear fission explosive
- .desc = You probably shouldn't stick around to see if this is armed.
-ent-NuclearBombUnanchored = { ent-NuclearBomb }
- .suffix = unanchored
- .desc = { ent-NuclearBomb.desc }
-ent-NuclearBombKeg = nuclear fission explosive
- .desc = You probably shouldn't stick around to see if this is armed. It has a tap on the side.
- .suffix = keg
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/reagent_grinder.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/reagent_grinder.ftl
deleted file mode 100644
index 999e504a735..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/reagent_grinder.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-KitchenReagentGrinder = reagent grinder
- .desc = From BlenderTech. Will It Blend? Let's find out!
- .suffix = grinder/juicer
-ent-ReagentGrinderIndustrial = industrial reagent grinder
- .desc = An industrial reagent grinder.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/recycler.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/recycler.ftl
deleted file mode 100644
index 345f633183f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/recycler.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Recycler = recycler
- .desc = A large crushing machine used to recycle small items inefficiently. There are lights on the side.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/research.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/research.ftl
deleted file mode 100644
index 2010487bdef..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/research.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ResearchAndDevelopmentServer = R&D server
- .desc = Contains the collective knowledge of the station's scientists. Destroying it would send them back to the stone age. You don't want that do you?
-ent-BaseResearchAndDevelopmentPointSource = base R&D point source
- .desc = { ent-BaseMachinePowered.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/salvage.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/salvage.ftl
deleted file mode 100644
index b67d7e59d26..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/salvage.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-SalvageMagnet = salvage magnet
- .desc = Pulls in salvage.
-ent-SalvageLocator = salvage locator
- .desc = Locates salvage.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/seed_extractor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/seed_extractor.ftl
deleted file mode 100644
index 894f657304c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/seed_extractor.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SeedExtractor = seed extractor
- .desc = Extracts seeds from produce.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/smartfridge.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/smartfridge.ftl
deleted file mode 100644
index f3fc50033c0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/smartfridge.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SmartFridge = SmartFridge
- .desc = A refrigerated storage unit for keeping items cold and fresh.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/stasisbed.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/stasisbed.ftl
deleted file mode 100644
index d8e5f81a1b8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/stasisbed.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-StasisBed = stasis bed
- .desc = A bed that massively slows down the patient's metabolism and prevents bodily decay, allowing more time to administer a proper treatment for stabilization.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/surveillance_camera_routers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/surveillance_camera_routers.ftl
deleted file mode 100644
index d7f2801e660..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/surveillance_camera_routers.ftl
+++ /dev/null
@@ -1,37 +0,0 @@
-ent-SurveillanceCameraRouterBase = camera router
- .desc = A surveillance camera router. It routes. Perhaps.
-ent-SurveillanceCameraRouterConstructed = { ent-SurveillanceCameraRouterBase }
- .suffix = Constructed
- .desc = { ent-SurveillanceCameraRouterBase.desc }
-ent-SurveillanceCameraRouterEngineering = { ent-SurveillanceCameraRouterBase }
- .suffix = Engineering
- .desc = { ent-SurveillanceCameraRouterBase.desc }
-ent-SurveillanceCameraRouterSecurity = { ent-SurveillanceCameraRouterBase }
- .suffix = Security
- .desc = { ent-SurveillanceCameraRouterBase.desc }
-ent-SurveillanceCameraRouterScience = { ent-SurveillanceCameraRouterBase }
- .suffix = Science
- .desc = { ent-SurveillanceCameraRouterBase.desc }
-ent-SurveillanceCameraRouterSupply = { ent-SurveillanceCameraRouterBase }
- .suffix = Supply
- .desc = { ent-SurveillanceCameraRouterBase.desc }
-ent-SurveillanceCameraRouterCommand = { ent-SurveillanceCameraRouterBase }
- .suffix = Command
- .desc = { ent-SurveillanceCameraRouterBase.desc }
-ent-SurveillanceCameraRouterService = { ent-SurveillanceCameraRouterBase }
- .suffix = Service
- .desc = { ent-SurveillanceCameraRouterBase.desc }
-ent-SurveillanceCameraRouterMedical = { ent-SurveillanceCameraRouterBase }
- .suffix = Medical
- .desc = { ent-SurveillanceCameraRouterBase.desc }
-ent-SurveillanceCameraRouterGeneral = { ent-SurveillanceCameraRouterBase }
- .suffix = General
- .desc = { ent-SurveillanceCameraRouterBase.desc }
-ent-SurveillanceCameraWirelessRouterBase = wireless camera router
- .desc = A wireless surveillance camera router. It routes. Perhaps.
-ent-SurveillanceCameraWirelessRouterConstructed = { ent-SurveillanceCameraWirelessRouterBase }
- .suffix = Constructed
- .desc = { ent-SurveillanceCameraWirelessRouterBase.desc }
-ent-SurveillanceCameraWirelessRouterEntertainment = { ent-SurveillanceCameraWirelessRouterBase }
- .suffix = Entertainment
- .desc = { ent-SurveillanceCameraWirelessRouterBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/telecomms.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/telecomms.ftl
deleted file mode 100644
index 92123b1cb44..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/telecomms.ftl
+++ /dev/null
@@ -1,29 +0,0 @@
-ent-TelecomServer = telecommunication server
- .desc = When powered and filled with encryption keys it allows radio headset communication.
-ent-TelecomServerFilled = { ent-TelecomServer }
- .suffix = Filled All
- .desc = { ent-TelecomServer.desc }
-ent-TelecomServerFilledCommon = { ent-TelecomServer }
- .suffix = Common
- .desc = { ent-TelecomServer.desc }
-ent-TelecomServerFilledCargo = { ent-TelecomServer }
- .suffix = Cargo
- .desc = { ent-TelecomServer.desc }
-ent-TelecomServerFilledEngineering = { ent-TelecomServer }
- .suffix = Engineering
- .desc = { ent-TelecomServer.desc }
-ent-TelecomServerFilledMedical = { ent-TelecomServer }
- .suffix = Medical
- .desc = { ent-TelecomServer.desc }
-ent-TelecomServerFilledScience = { ent-TelecomServer }
- .suffix = Science
- .desc = { ent-TelecomServer.desc }
-ent-TelecomServerFilledSecurity = { ent-TelecomServer }
- .suffix = Security
- .desc = { ent-TelecomServer.desc }
-ent-TelecomServerFilledService = { ent-TelecomServer }
- .suffix = Service
- .desc = { ent-TelecomServer.desc }
-ent-TelecomServerFilledCommand = { ent-TelecomServer }
- .suffix = Command
- .desc = { ent-TelecomServer.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/traitordm.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/traitordm.ftl
deleted file mode 100644
index 7c1d3428b90..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/traitordm.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-TraitorDMRedemptionMachine = traitor deathmatch pda redemption machine
- .desc = Put someone else's PDA into this to get telecrystals.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/vaccinator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/vaccinator.ftl
deleted file mode 100644
index 1f374e99848..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/vaccinator.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-Vaccinator = Vaccinator
- .desc = A machine that creates vaccines.
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl
deleted file mode 100644
index 6eef88fff93..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl
+++ /dev/null
@@ -1,150 +0,0 @@
-ent-VendingMachine = vending machine
- .desc = Just add capitalism!
-ent-VendingMachineCondiments = condiment station
- .desc = Slather these thick gooey substances on your food for a full flavor effect.
-ent-VendingMachineAmmo = liberation station
- .desc = An overwhelming amount of ancient patriotism washes over you just by looking at the machine.
-ent-VendingMachineBooze = Booze-O-Mat
- .desc = A technological marvel, supposedly able to mix just the mixture you'd like to drink the moment you ask for one.
-ent-VendingMachineCart = PTech
- .desc = PTech vending! Providing a ROBUST selection of PDAs, cartridges, and anything else a dull paper pusher needs!
-ent-VendingMachineChefvend = ChefVend
- .desc = An ingredient vendor for all your cheffin needs.
-ent-VendingMachineCigs = ShadyCigs Deluxe
- .desc = If you want to get cancer, might as well do it in style.
-ent-VendingMachineClothing = ClothesMate
- .desc = A vending machine for clothing.
-ent-VendingMachineWinter = WinterDrobe
- .desc = The best place to enjoy the cold!
-ent-VendingMachineCoffee = Solar's Best Hot Drinks
- .desc = Served boiling so it stays hot all shift!
-ent-VendingMachineCola = Robust Softdrinks
- .desc = A softdrink vendor provided by Robust Industries, LLC.
-ent-VendingMachineColaBlack = { ent-VendingMachineCola }
- .suffix = Black
- .desc = { ent-VendingMachineCola.desc }
-ent-VendingMachineColaRed = Space Cola Vendor
- .desc = It vends cola, in space.
-ent-VendingMachineSpaceUp = Space-Up! Vendor
- .desc = Indulge in an explosion of flavor.
-ent-VendingMachineSoda = { ent-VendingMachineCola }
- .suffix = Soda
- .desc = { ent-VendingMachineCola.desc }
-ent-VendingMachineStarkist = Star-kist Vendor
- .desc = The taste of a star in liquid form.
-ent-VendingMachineShamblersJuice = Shambler's Juice Vendor
- .desc = ~Shake me up some of that Shambler's Juice!~
-ent-VendingMachinePwrGame = Pwr Game Vendor
- .desc = You want it, we got it. Brought to you in partnership with Vlad's Salads.
-ent-VendingMachineDrGibb = Dr. Gibb Vendor
- .desc = Canned explosion of different flavors in this very vendor!
-ent-VendingMachineDinnerware = Plasteel Chef's Dinnerware Vendor
- .desc = A kitchen and restaurant equipment vendor.
-ent-VendingMachineMagivend = MagiVend
- .desc = A magic vending machine.
-ent-VendingMachineDiscount = Discount Dan's
- .desc = A vending machine containing discount snacks from the infamous 'Discount Dan' franchise.
-ent-VendingMachineEngivend = Engi-Vend
- .desc = Spare tool vending. What? Did you expect some witty description?
-ent-VendingMachineMedical = NanoMed Plus
- .desc = It's a medical drug dispenser. Natural chemicals only!
-ent-VendingMachineNutri = NutriMax
- .desc = A vending machine containing nutritional substances for plants and botanical tools.
-ent-VendingMachineSec = SecTech
- .desc = A vending machine containing Security equipment. A label reads SECURITY PERSONNEL ONLY.
-ent-VendingMachineSeedsUnlocked = MegaSeed Servitor
- .desc = For when you need seeds fast. Hands down the best seed selection on the station!
- .suffix = Unlocked
-ent-VendingMachineSeeds = { ent-VendingMachineSeedsUnlocked }
- .suffix = Hydroponics
- .desc = { ent-VendingMachineSeedsUnlocked.desc }
-ent-VendingMachineSnack = Getmore Chocolate Corp
- .desc = A snack machine courtesy of the Getmore Chocolate Corporation, based out of Mars.
-ent-VendingMachineSustenance = Sustenance Vendor
- .desc = A vending machine which vends food, as required by section 47-C of the NT's Prisoner Ethical Treatment Agreement.
-ent-VendingMachineSnackBlue = { ent-VendingMachineSnack }
- .suffix = Blue
- .desc = { ent-VendingMachineSnack.desc }
-ent-VendingMachineSnackOrange = { ent-VendingMachineSnack }
- .suffix = Orange
- .desc = { ent-VendingMachineSnack.desc }
-ent-VendingMachineSnackGreen = { ent-VendingMachineSnack }
- .suffix = Green
- .desc = { ent-VendingMachineSnack.desc }
-ent-VendingMachineSnackTeal = { ent-VendingMachineSnack }
- .suffix = Teal
- .desc = { ent-VendingMachineSnack.desc }
-ent-VendingMachineSovietSoda = BODA
- .desc = An old vending machine containing sweet water.
-ent-VendingMachineTheater = AutoDrobe
- .desc = A vending machine containing costumes.
-ent-VendingMachineVendomat = Vendomat
- .desc = Only the finest robust equipment in space!
-ent-VendingMachineRobotics = Robotech Deluxe
- .desc = All the tools you need to create your own robot army.
-ent-VendingMachineYouTool = YouTool
- .desc = A vending machine containing standard tools. A label reads: Tools for tools.
-ent-VendingMachineGames = Good Clean Fun
- .desc = Vends things that the Captain and Head of Personnel are probably not going to appreciate you fiddling with instead of your job...
-ent-VendingMachineChang = Mr. Chang
- .desc = A self-serving Chinese food machine, for all your Chinese food needs.
-ent-VendingMachineSalvage = Salvage Vendor
- .desc = A dwarf's best friend!
-ent-VendingMachineDonut = Monkin' Donuts
- .desc = A donut vendor provided by Robust Industries, LLC.
-ent-VendingMachineWallmount = vending machine
- .desc = { ent-VendingMachine.desc }
-ent-VendingMachineWallMedical = NanoMed
- .desc = It's a wall-mounted medical equipment dispenser. Natural chemicals only!
-ent-VendingMachineHydrobe = HyDrobe
- .desc = A machine with a catchy name. It dispenses botany related clothing and gear.
-ent-VendingMachineLawDrobe = LawDrobe
- .desc = Objection! This wardrobe dispenses the rule of law... and lawyer clothing..
-ent-VendingMachineSecDrobe = SecDrobe
- .desc = A vending machine for security and security-related clothing!
-ent-VendingBarDrobe = BarDrobe
- .desc = A stylish vendor to dispense the most stylish bar clothing!
-ent-VendingMachineChapel = PietyVend
- .desc = { ent-VendingMachine.desc }
-ent-VendingMachineCargoDrobe = CargoDrobe
- .desc = A highly advanced vending machine for buying cargo related clothing for free.
-ent-VendingMachineMediDrobe = MediDrobe
- .desc = A vending machine rumoured to be capable of dispensing clothing for medical personnel.
-ent-VendingMachineChemDrobe = ChemDrobe
- .desc = A vending machine for dispensing chemistry related clothing.
-ent-VendingMachineCuraDrobe = CuraDrobe
- .desc = A lowstock vendor only capable of vending clothing for curators and librarians.
-ent-VendingMachineAtmosDrobe = AtmosDrobe
- .desc = This relatively unknown vending machine delivers clothing for Atmospherics Technicians, an equally unknown job.
-ent-VendingMachineEngiDrobe = EngiDrobe
- .desc = A vending machine renowned for vending industrial grade clothing.
-ent-VendingMachineChefDrobe = ChefDrobe
- .desc = This vending machine might not dispense meat, but it certainly dispenses chef related clothing.
-ent-VendingMachineDetDrobe = DetDrobe
- .desc = A machine for all your detective needs, as long as you need clothes.
-ent-VendingMachineJaniDrobe = JaniDrobe
- .desc = A self cleaning vending machine capable of dispensing clothing for janitors.
-ent-VendingMachineSciDrobe = SciDrobe
- .desc = A simple vending machine suitable to dispense well tailored science clothing. Endorsed by Space Cubans.
-ent-VendingMachineSyndieDrobe = SyndieDrobe
- .desc = Wardrobe machine encoded by the syndicate, contains elite outfits for various operations.
-ent-VendingMachineRoboDrobe = RoboDrobe
- .desc = A vending machine designed to dispense clothing known only to roboticists.
-ent-VendingMachineGeneDrobe = GeneDrobe
- .desc = A machine for dispensing clothing related to genetics.
-ent-VendingMachineViroDrobe = ViroDrobe
- .desc = An unsterilized machine for dispending virology related clothing.
-ent-VendingMachineCentDrobe = CentDrobe
- .desc = A one-of-a-kind vending machine for all your centcom aesthetic needs!
-ent-VendingMachineHappyHonk = Happy Honk Dispenser
- .desc = A happy honk meal box dispenser made by honk! co.
-ent-VendingMachineTankDispenserEVA = gas tank dispenser
- .desc = A vendor for dispensing gas tanks.
- .suffix = EVA [O2, N2]
-ent-VendingMachineTankDispenserEngineering = gas tank dispenser
- .desc = A vendor for dispensing gas tanks. This one has an engineering livery.
- .suffix = ENG [O2, Plasma]
-ent-VendingMachineChemicals = ChemVend
- .desc = Probably not the coffee machine.
-ent-VendingMachineChemicalsSyndicate = SyndieJuice
- .desc = Not made with freshly squeezed syndies I hope.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/wireless_surveillance_camera.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/wireless_surveillance_camera.ftl
deleted file mode 100644
index 32c6b2fb4fe..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/wireless_surveillance_camera.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-SurveillanceWirelessCameraBase = wireless camera
- .desc = A camera. It's watching you. Kinda.
-ent-SurveillanceWirelessCameraAnchoredBase = { ent-SurveillanceWirelessCameraBase }
- .suffix = Anchored
- .desc = { ent-SurveillanceWirelessCameraBase.desc }
-ent-SurveillanceWirelessCameraMovableBase = { ent-SurveillanceWirelessCameraBase }
- .suffix = Movable
- .desc = { ent-SurveillanceWirelessCameraBase.desc }
-ent-SurveillanceWirelessCameraAnchoredConstructed = { ent-SurveillanceWirelessCameraAnchoredBase }
- .suffix = Constructed, Anchored
- .desc = { ent-SurveillanceWirelessCameraAnchoredBase.desc }
-ent-SurveillanceWirelessCameraMovableConstructed = { ent-SurveillanceWirelessCameraMovableBase }
- .suffix = Constructed, Movable
- .desc = { ent-SurveillanceWirelessCameraMovableBase.desc }
-ent-SurveillanceWirelessCameraAnchoredEntertainment = { ent-SurveillanceWirelessCameraAnchoredBase }
- .suffix = Entertainment, Anchored
- .desc = { ent-SurveillanceWirelessCameraAnchoredBase.desc }
-ent-SurveillanceWirelessCameraMovableEntertainment = { ent-SurveillanceWirelessCameraMovableBase }
- .suffix = Entertainment, Movable
- .desc = { ent-SurveillanceWirelessCameraMovableBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/meat_spike.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/meat_spike.ftl
deleted file mode 100644
index 2e42d5c1c41..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/meat_spike.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-KitchenSpike = meat spike
- .desc = A spike for collecting meat from animals.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl
deleted file mode 100644
index d7da2b75952..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-GasBinaryBase = { ent-GasPipeBase }
- .desc = { ent-GasPipeBase.desc }
-ent-GasPressurePump = gas pump
- .desc = A pump that moves gas by pressure.
-ent-GasVolumePump = volumetric gas pump
- .desc = A pump that moves gas by volume.
-ent-GasPassiveGate = passive gate
- .desc = A one-way air valve that does not require power.
-ent-GasValve = manual valve
- .desc = A pipe with a valve that can be used to disable the flow of gas through it.
-ent-SignalControlledValve = signal valve
- .desc = A pipe with a valve that can be controlled with signals.
-ent-GasPort = connector port
- .desc = For connecting portable devices related to atmospherics control.
-ent-GasDualPortVentPump = dual-port air vent
- .desc = Has a valve and a pump attached to it. There are two ports, one is an input for releasing air, the other is an output when siphoning.
-ent-GasRecycler = gas recycler
- .desc = Recycles carbon dioxide and nitrous oxide. Heater and compressor not included.
-ent-HeatExchanger = radiator
- .desc = Transfers heat between the pipe and its surroundings.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl
deleted file mode 100644
index 561ea1e2993..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-GasMinerBase = gas miner
- .desc = Gases mined from the gas giant below (above?) flow out through this massive vent.
-ent-GasMinerOxygen = O2 gas miner
- .suffix = Shuttle, 300kPa
- .desc = { ent-GasMinerBase.desc }
-ent-GasMinerOxygenStation = O2 gas miner
- .suffix = Station, 1000kPa
- .desc = { ent-GasMinerOxygen.desc }
-ent-GasMinerOxygenStationLarge = O2 gas miner
- .suffix = Large Station, 4500kPa
- .desc = { ent-GasMinerOxygen.desc }
-ent-GasMinerNitrogen = N2 gas miner
- .suffix = Shuttle, 300kPa
- .desc = { ent-GasMinerBase.desc }
-ent-GasMinerNitrogenStation = N2 gas miner
- .suffix = Station, 1000kPa
- .desc = { ent-GasMinerNitrogen.desc }
-ent-GasMinerNitrogenStationLarge = N2 gas miner
- .suffix = Large Station, 4500kPa
- .desc = { ent-GasMinerNitrogen.desc }
-ent-GasMinerCarbonDioxide = CO2 gas miner
- .desc = { ent-GasMinerBase.desc }
-ent-GasMinerPlasma = plasma gas miner
- .desc = { ent-GasMinerBase.desc }
-ent-GasMinerTritium = tritium gas miner
- .desc = { ent-GasMinerBase.desc }
-ent-GasMinerWaterVapor = water vapor gas miner
- .desc = { ent-GasMinerBase.desc }
-ent-GasMinerAmmonia = ammonia gas miner
- .desc = { ent-GasMinerBase.desc }
-ent-GasMinerNitrousOxide = nitrous oxide gas miner
- .desc = { ent-GasMinerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/pipes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/pipes.ftl
deleted file mode 100644
index 32fb817a7d4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/pipes.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-GasPipeBase = pipe
- .desc = Holds gas.
-ent-GasPipeHalf = { ent-GasPipeBase }
- .suffix = Half
- .desc = { ent-GasPipeBase.desc }
-ent-GasPipeStraight = { ent-GasPipeBase }
- .suffix = Straight
- .desc = { ent-GasPipeBase.desc }
-ent-GasPipeBend = { ent-GasPipeBase }
- .suffix = Bend
- .desc = { ent-GasPipeBase.desc }
-ent-GasPipeTJunction = { ent-GasPipeBase }
- .suffix = TJunction
- .desc = { ent-GasPipeBase.desc }
-ent-GasPipeFourway = { ent-GasPipeBase }
- .suffix = Fourway
- .desc = { ent-GasPipeBase.desc }
-ent-GasPipeBroken = broken pipe
- .desc = It used to hold gas.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/portable.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/portable.ftl
deleted file mode 100644
index 0c27158410e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/portable.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-PortableScrubber = portable scrubber
- .desc = It scrubs, portably!
-ent-SpaceHeater = space heater
- .desc = A bluespace technology device that alters local temperature. Commonly referred to as a "Space Heater".
- .suffix = Unanchored
-ent-SpaceHeaterAnchored = { ent-SpaceHeater }
- .suffix = Anchored
- .desc = { ent-SpaceHeater.desc }
-ent-SpaceHeaterEnabled = { ent-SpaceHeaterAnchored }
- .suffix = Anchored, Enabled
- .desc = { ent-SpaceHeaterAnchored.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl
deleted file mode 100644
index 88e2e076c65..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-AtmosDeviceFanTiny = tiny fan
- .desc = A tiny fan, releasing a thin gust of air.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/trinary.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/trinary.ftl
deleted file mode 100644
index 6600c4547d0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/trinary.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-GasTrinaryBase = { ent-GasPipeBase }
- .desc = { ent-GasPipeBase.desc }
-ent-GasFilter = gas filter
- .desc = Very useful for filtering gases.
-ent-GasFilterFlipped = gas filter
- .suffix = Flipped
- .desc = { ent-GasFilter.desc }
-ent-GasMixer = gas mixer
- .desc = Very useful for mixing gases.
-ent-GasMixerFlipped = gas mixer
- .suffix = Flipped
- .desc = { ent-GasMixer.desc }
-ent-PressureControlledValve = pneumatic valve
- .desc = Valve controlled by pressure.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/unary.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/unary.ftl
deleted file mode 100644
index a7de31338ed..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/unary.ftl
+++ /dev/null
@@ -1,28 +0,0 @@
-ent-GasUnaryBase = { ent-GasPipeBase }
- .desc = { ent-GasPipeBase.desc }
-ent-GasVentPump = air vent
- .desc = Has a valve and a pump attached to it.
-ent-GasPassiveVent = passive vent
- .desc = It's an open vent.
-ent-GasVentScrubber = air scrubber
- .desc = Has a valve and pump attached to it.
-ent-GasOutletInjector = air injector
- .desc = Has a valve and pump attached to it.
-ent-BaseGasThermoMachine = thermomachine
- .desc = { ent-BaseMachinePowered.desc }
-ent-GasThermoMachineFreezer = freezer
- .desc = Cools gas in connected pipes.
-ent-GasThermoMachineFreezerEnabled = { ent-GasThermoMachineFreezer }
- .suffix = Enabled
- .desc = { ent-GasThermoMachineFreezer.desc }
-ent-GasThermoMachineHeater = heater
- .desc = Heats gas in connected pipes.
-ent-GasThermoMachineHeaterEnabled = { ent-GasThermoMachineHeater }
- .suffix = Enabled
- .desc = { ent-GasThermoMachineHeater.desc }
-ent-GasThermoMachineHellfireFreezer = hellfire freezer
- .desc = An advanced machine that cools gas in connected pipes. Has the side effect of chilling the surrounding area. Cold as Hell!
-ent-GasThermoMachineHellfireHeater = hellfire heater
- .desc = An advanced machine that heats gas in connected pipes. Has the side effect of leaking heat into the surrounding area. Hot as Hell!
-ent-BaseGasCondenser = condenser
- .desc = Condenses gases into liquids. Now we just need some plumbing.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/disposal/high_pressure_machine_frame.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/disposal/high_pressure_machine_frame.ftl
deleted file mode 100644
index 934cd6259b3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/disposal/high_pressure_machine_frame.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-DisposalMachineFrame = high pressure machine frame
- .desc = A machine frame made to withstand the amount of pressure used in the station's disposal system.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/disposal/pipes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/disposal/pipes.ftl
deleted file mode 100644
index 5decd65edfc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/disposal/pipes.ftl
+++ /dev/null
@@ -1,31 +0,0 @@
-ent-DisposalPipeBase = { "" }
- .desc = { "" }
-ent-DisposalHolder = disposal holder
- .desc = { "" }
-ent-DisposalPipeBroken = broken disposal pipe
- .desc = A BBP (big broken pipe)
-ent-DisposalPipe = disposal pipe segment
- .desc = A huge pipe segment used for constructing disposal systems.
-ent-DisposalTagger = disposal pipe tagger
- .desc = A pipe that tags entities for routing.
-ent-DisposalTrunk = disposal trunk
- .desc = A pipe trunk used as an entry point for disposal systems.
-ent-DisposalRouter = disposal router
- .desc = A three-way router. Entities with matching tags get routed to the side via configurable filters.
-ent-DisposalRouterFlipped = { ent-DisposalRouter }
- .desc = A three-way router. Entities with matching tags get routed to the side.
- .suffix = flipped
-ent-DisposalJunction = disposal junction
- .desc = A three-way junction. The arrow indicates where items exit.
-ent-DisposalJunctionFlipped = { ent-DisposalJunction }
- .desc = A three-way junction. The arrow indicates where items exit.
- .suffix = flipped
-ent-DisposalYJunction = disposal y-junction
- .desc = A three-way junction with another exit point.
-ent-DisposalBend = disposal bend
- .desc = A tube bent at a 90 degree angle.
-ent-DisposalSignalRouter = disposal signal router
- .desc = A signal-controlled three-way router.
-ent-DisposalSignalRouterFlipped = { ent-DisposalSignalRouter }
- .suffix = flipped
- .desc = { ent-DisposalSignalRouter.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/disposal/units.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/disposal/units.ftl
deleted file mode 100644
index 375b1d7cd63..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/disposal/units.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-DisposalUnitBase = { ent-BaseMachinePowered }
- .desc = A pneumatic waste disposal unit.
-ent-DisposalUnit = disposal unit
- .desc = { ent-DisposalUnitBase.desc }
-ent-MailingUnit = mailing unit
- .desc = A pneumatic mail delivery unit.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/plastic_flaps.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/plastic_flaps.ftl
deleted file mode 100644
index 74f79f883fe..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/plastic_flaps.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-PlasticFlapsBase = { ent-BaseStructureDynamic }
- .desc = { ent-BaseStructureDynamic.desc }
-ent-PlasticFlapsClear = plastic flaps
- .desc = Heavy duty, plastic flaps. Definitely can't get past those. No way.
- .suffix = Clear
-ent-PlasticFlapsOpaque = plastic flaps
- .desc = Heavy duty, plastic flaps. Definitely can't get past those. No way.
- .suffix = Opaque
-ent-PlasticFlapsAirtightClear = airtight plastic flaps
- .desc = Heavy duty, slightly stronger, airtight plastic flaps. Definitely can't get past those. No way.
- .suffix = Airtight, Clear
-ent-PlasticFlapsAirtightOpaque = airtight plastic flaps
- .desc = Heavy duty, slightly stronger, airtight plastic flaps. Definitely can't get past those. No way.
- .suffix = Airtight, Opaque
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/apc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/apc.ftl
deleted file mode 100644
index 7314b7832cb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/apc.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-BaseAPC = APC
- .desc = A control terminal for the area's electrical systems.
-ent-APCFrame = APC frame
- .desc = A control terminal for the area's electrical systems, lacking the electronics.
-ent-APCConstructed = { ent-BaseAPC }
- .suffix = Open
- .desc = { ent-BaseAPC.desc }
-ent-APCBasic = { ent-BaseAPC }
- .suffix = Basic, 50kW
- .desc = { ent-BaseAPC.desc }
-ent-APCHighCapacity = { ent-BaseAPC }
- .suffix = High Capacity, 100kW
- .desc = { ent-BaseAPC.desc }
-ent-APCSuperCapacity = { ent-BaseAPC }
- .suffix = Super Capacity, 150kW
- .desc = { ent-BaseAPC.desc }
-ent-APCHyperCapacity = { ent-BaseAPC }
- .suffix = Hyper Capacity, 200kW
- .desc = { ent-BaseAPC.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/cable_terminal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/cable_terminal.ftl
deleted file mode 100644
index 9250f273abb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/cable_terminal.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CableTerminal = cable terminal
- .desc = You see a small warning on the red cables in grungy black ink. "CONNECT RED TO BATTERY FOR CHARGE."
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/cables.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/cables.ftl
deleted file mode 100644
index dfdaaf517f5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/cables.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-CableBase = { "" }
- .desc = { "" }
-ent-CableHV = HV power cable
- .desc = An orange high voltage power cable.
-ent-CableMV = MV power cable
- .desc = A medium voltage power cable.
-ent-CableApcExtension = LV power cable
- .desc = A cable used to connect machines to an APC.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/chargers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/chargers.ftl
deleted file mode 100644
index eea3562f151..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/chargers.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-BaseRecharger = { ent-BaseMachinePowered }
- .desc = { ent-BaseMachinePowered.desc }
-ent-BaseItemRecharger = { ent-BaseRecharger }
- .desc = { ent-BaseRecharger.desc }
-ent-PowerCellRecharger = cell recharger
- .desc = { ent-BaseItemRecharger.desc }
-ent-PowerCageRecharger = cage recharger
- .desc = { ent-BaseItemRecharger.desc }
-ent-WeaponCapacitorRecharger = recharger
- .desc = { ent-BaseItemRecharger.desc }
-ent-TurboItemRecharger = turbo recharger
- .desc = An overclocked recharger that's been adapted with a global port.
-ent-WallWeaponCapacitorRecharger = wall recharger
- .desc = { ent-BaseItemRecharger.desc }
-ent-BorgCharger = cyborg recharging station
- .desc = A stationary charger for various robotic and cyborg entities. Surprisingly spacious.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/debug_power.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/debug_power.ftl
deleted file mode 100644
index bf62eaca0dd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/debug_power.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-DebugGenerator = { ent-BaseGenerator }
- .suffix = DEBUG
- .desc = { ent-BaseGenerator.desc }
-ent-DebugConsumer = consumer
- .suffix = DEBUG
- .desc = { "" }
-ent-DebugBatteryStorage = battery storage
- .suffix = DEBUG
- .desc = { "" }
-ent-DebugBatteryDischarger = battery discharger
- .suffix = DEBUG
- .desc = { "" }
-ent-DebugSMES = { ent-BaseSMES }
- .suffix = DEBUG
- .desc = { ent-BaseSMES.desc }
-ent-DebugSubstation = { ent-BaseSubstation }
- .suffix = DEBUG
- .desc = { ent-BaseSubstation.desc }
-ent-DebugAPC = { ent-BaseAPC }
- .suffix = DEBUG
- .desc = { ent-BaseAPC.desc }
-ent-DebugPowerReceiver = power receiver
- .suffix = DEBUG
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/ame.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/ame.ftl
deleted file mode 100644
index c5a71585df5..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/ame.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-AmeController = AME controller
- .desc = It's a controller for the antimatter engine.
-ent-AmeControllerUnanchored = { ent-AmeController }
- .suffix = Unanchored
- .desc = { ent-AmeController.desc }
-ent-AmeShielding = AME shielding
- .desc = Keeps the antimatter in and the matter out.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/generator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/generator.ftl
deleted file mode 100644
index 484539ed804..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/generator.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-BaseGenerator = generator
- .desc = A high efficiency thermoelectric generator.
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/generators.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/generators.ftl
deleted file mode 100644
index e886f556789..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/generators.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-BaseGenerator = generator
- .desc = A high efficiency thermoelectric generator.
-ent-BaseGeneratorWallmount = wallmount generator
- .desc = A high efficiency thermoelectric generator stuffed in a wall cabinet.
-ent-BaseGeneratorWallmountFrame = wallmount generator frame
- .desc = A construction frame for a wallmount generator.
-ent-GeneratorBasic = { ent-BaseGenerator }
- .suffix = Basic, 3kW
- .desc = { ent-BaseGenerator.desc }
-ent-GeneratorBasic15kW = { ent-BaseGenerator }
- .suffix = Basic, 15kW
- .desc = { ent-BaseGenerator.desc }
-ent-GeneratorWallmountBasic = { ent-BaseGeneratorWallmount }
- .suffix = Basic, 3kW
- .desc = { ent-BaseGeneratorWallmount.desc }
-ent-GeneratorWallmountAPU = shuttle APU
- .desc = An auxiliary power unit for a shuttle - 6kW.
- .suffix = APU, 6kW
-ent-GeneratorRTG = RTG
- .desc = A Radioisotope Thermoelectric Generator for long term power.
- .suffix = 10kW
-ent-GeneratorRTGDamaged = damaged RTG
- .desc = A Radioisotope Thermoelectric Generator for long term power. This one has damaged shielding.
- .suffix = 10kW
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/base_particleaccelerator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/base_particleaccelerator.ftl
deleted file mode 100644
index 288e8116da4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/base_particleaccelerator.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ParticleAcceleratorBase = { "" }
- .desc = { "" }
-ent-ParticleAcceleratorFinishedPart = { ent-ParticleAcceleratorBase }
- .desc = { ent-ParticleAcceleratorBase.desc }
-ent-ParticleAcceleratorUnfinishedBase = { ent-ParticleAcceleratorBase }
- .desc = { ent-ParticleAcceleratorBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/control_box.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/control_box.ftl
deleted file mode 100644
index e7ef65b9d1e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/control_box.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-ParticleAcceleratorControlBox = PA control computer
- .desc = This controls the density of the particles.
-ent-ParticleAcceleratorControlBoxUnfinished = PA control computer
- .desc = This controls the density of the particles. It looks unfinished.
- .suffix = Unfinished
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/emitter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/emitter.ftl
deleted file mode 100644
index 03cf63aac4a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/emitter.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-ParticleAcceleratorEmitterPort = PA port containment emitter
- .desc = This launchs the Alpha particles, might not want to stand near this end.
-ent-ParticleAcceleratorEmitterFore = PA fore containment emitter
- .desc = This launchs the Alpha particles, might not want to stand near this end.
-ent-ParticleAcceleratorEmitterStarboard = PA starboard containment emitter
- .desc = This launchs the Alpha particles, might not want to stand near this end.
-ent-ParticleAcceleratorEmitterPortUnfinished = PA port containment emitter
- .desc = This launchs the Alpha particles, might not want to stand near this end. It looks unfinished.
- .suffix = Unfinished, Port
-ent-ParticleAcceleratorEmitterForeUnfinished = PA fore containment emitter
- .desc = This launchs the Alpha particles, might not want to stand near this end. It looks unfinished.
- .suffix = Unfinished, Fore
-ent-ParticleAcceleratorEmitterStarboardUnfinished = PA starboard containment emitter
- .desc = This launchs the Alpha particles, might not want to stand near this end. It looks unfinished.
- .suffix = Unfinished, Starboard
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/end_cap.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/end_cap.ftl
deleted file mode 100644
index 809ddfc59c9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/end_cap.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-ParticleAcceleratorEndCap = PA end-cap
- .desc = Formally known as the Alpha Particle Generation Array. This is where Alpha particles are generated from [REDACTED].
-ent-ParticleAcceleratorEndCapUnfinished = PA end-cap
- .desc = Formally known as the Alpha Particle Generation Array. This is where Alpha particles are generated from [REDACTED]. It looks unfinished.
- .suffix = Unfinished
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/fuel_chamber.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/fuel_chamber.ftl
deleted file mode 100644
index 23d552b7404..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/fuel_chamber.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-ParticleAcceleratorFuelChamber = PA fuel chamber
- .desc = Formally known as the EM Acceleration Chamber. This is where the Alpha particles are accelerated to radical speeds.
-ent-ParticleAcceleratorFuelChamberUnfinished = PA fuel chamber
- .desc = Formally known as the EM Acceleration Chamber. This is where the Alpha particles are accelerated to radical speeds. It looks unfinished.
- .suffix = Unfinished
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/particles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/particles.ftl
deleted file mode 100644
index 8992dc4e61b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/particles.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ParticlesProjectile = particles
- .desc = Accelerated particles.
-ent-AntiParticlesProjectile = anti particles
- .desc = Accelerated negative particles.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/power_box.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/power_box.ftl
deleted file mode 100644
index 9bb71aff849..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/pa/power_box.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-ParticleAcceleratorPowerBox = PA power box
- .desc = Formally known as the Particle Focusing EM Lens. This uses electromagnetic waves to focus the Alpha-Particles.
-ent-ParticleAcceleratorPowerBoxUnfinished = PA power box
- .desc = Formally known as the Particle Focusing EM Lens. This uses electromagnetic waves to focus the Alpha-Particles. It looks unfinished.
- .suffix = Unfinished
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/portable_generator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/portable_generator.ftl
deleted file mode 100644
index e3f4537d0b4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/portable_generator.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-PortableGeneratorBase = { ent-BaseMachine }
- .desc = { ent-BaseMachine.desc }
-ent-PortableGeneratorSwitchableBase = { ent-PortableGeneratorBase }
- .desc = { ent-PortableGeneratorBase.desc }
-ent-PortableGeneratorPacman = P.A.C.M.A.N.-type portable generator
- .desc =
- A flexible backup generator for powering a variety of equipment.
- Runs off solid plasma sheets and is rated for up to 30 kW.
- .suffix = Plasma, 30 kW
-ent-PortableGeneratorSuperPacman = S.U.P.E.R.P.A.C.M.A.N.-type portable generator
- .desc =
- An advanced generator for powering departments.
- Runs off uranium sheets and is rated for up to 50 kW.
- .suffix = Uranium, 50 kW
-ent-PortableGeneratorJrPacman = J.R.P.A.C.M.A.N.-type portable generator
- .desc =
- A small generator capable of powering individual rooms, in case of emergencies.
- Runs off welding fuel and is rated for up to 8 kW.
- Rated ages 3 and up.
- .suffix = Welding Fuel, 8 kW
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/collector.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/collector.ftl
deleted file mode 100644
index 10fc66740ca..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/collector.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-RadiationCollector = radiation collector
- .desc = A machine that collects radiation and turns it into power. Requires plasma gas to function.
- .suffix = Empty tank
-ent-RadiationCollectorNoTank = { ent-RadiationCollector }
- .suffix = No tank
- .desc = { ent-RadiationCollector.desc }
-ent-RadiationCollectorFullTank = { ent-RadiationCollector }
- .suffix = Filled tank
- .desc = { ent-RadiationCollector.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/containment.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/containment.ftl
deleted file mode 100644
index 5afde949608..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/containment.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-ContainmentFieldGenerator = containment field generator
- .desc = A machine that generates a containment field when powered by an emitter. Keeps the Singularity docile.
-ent-ContainmentField = containment field
- .desc = A containment field that repels gravitational singularities.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/emitter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/emitter.ftl
deleted file mode 100644
index f308d97df0c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/emitter.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Emitter = emitter
- .desc = A heavy duty industrial laser. Shoots non-stop when turned on.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/generator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/generator.ftl
deleted file mode 100644
index c1382424f68..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/generator.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SingularityGenerator = gravitational singularity generator
- .desc = An Odd Device which produces a Gravitational Singularity when set up.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/singularity.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/singularity.ftl
deleted file mode 100644
index 958636b3baf..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/singularity/singularity.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Singularity = gravitational singularity
- .desc = A mesmerizing swirl of darkness that sucks in everything. If it's moving towards you, run.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/solar.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/solar.ftl
deleted file mode 100644
index 7596635867c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/solar.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-SolarPanelBasePhysSprite = solar panel
- .desc = { "" }
-ent-SolarPanel = solar panel
- .desc = A solar panel that generates power.
-ent-SolarPanelBroken = solar panel
- .desc = A broken solar panel.
- .suffix = Broken
-ent-SolarAssembly = solar assembly
- .desc = A solar assembly. Anchor to a wire to start building a solar panel.
-ent-SolarTracker = solar tracker
- .desc = A solar tracker. Tracks the nearest star.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/teg.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/teg.ftl
deleted file mode 100644
index f1e0a00f6a8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/teg.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-TegCenter = thermo-electric generator
- .desc = A high efficiency generator that uses energy transfer between hot and cold gases to produce electricity.
-ent-TegCirculator = circulator
- .desc = Passes gas through the thermo-electric generator to exchange heat. Has an inlet and outlet port.
-ent-TegCirculatorArrow = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/tesla/coil.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/tesla/coil.ftl
deleted file mode 100644
index 0d195c12f63..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/tesla/coil.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-TeslaCoil = tesla coil
- .desc = A machine that converts lightning strikes into an electric current.
-ent-TeslaGroundingRod = grounding rod
- .desc = A machine that keeps lightning from striking too far away.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/tesla/energyball.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/tesla/energyball.ftl
deleted file mode 100644
index b02158854e8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/tesla/energyball.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseEnergyBall = { "" }
- .desc = { "" }
-ent-TeslaEnergyBall = ball lightning
- .desc = A giant ball of pure energy. The space around it is humming and melting.
-ent-TeslaMiniEnergyBall = mini ball lightning
- .desc = The cub of a destructive energy cage. Not as dangerous, but still not worth touching with bare hands.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/tesla/generator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/tesla/generator.ftl
deleted file mode 100644
index 121ca04d52c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/tesla/generator.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-TeslaGenerator = tesla generator
- .desc = An Odd Device which produces a powerful Tesla ball when set up.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/smes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/smes.ftl
deleted file mode 100644
index aeaeb9ea27e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/smes.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseSMES = SMES
- .desc = A high-capacity superconducting magnetic energy storage (SMES) unit.
-ent-SMESBasic = { ent-BaseSMES }
- .suffix = Basic, 8MW
- .desc = { ent-BaseSMES.desc }
-ent-SMESBasicEmpty = { ent-SMESBasic }
- .suffix = Empty
- .desc = { ent-SMESBasic.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/substation.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/substation.ftl
deleted file mode 100644
index e47447663fe..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/substation.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-BaseSubstation = substation
- .desc = Reduces the voltage of electricity put into it.
-ent-BaseSubstationWall = wallmount substation
- .desc = A substation designed for compact shuttles and spaces.
-ent-SubstationBasic = { ent-BaseSubstation }
- .suffix = Basic, 2.5MJ
- .desc = { ent-BaseSubstation.desc }
-ent-SubstationBasicEmpty = { ent-SubstationBasic }
- .suffix = Empty
- .desc = { ent-SubstationBasic.desc }
-ent-SubstationWallBasic = { ent-BaseSubstationWall }
- .suffix = Basic, 2MJ
- .desc = { ent-BaseSubstationWall.desc }
-ent-BaseSubstationWallFrame = wallmount substation frame
- .desc = A substation frame for construction
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/shuttles/cannons.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/shuttles/cannons.ftl
deleted file mode 100644
index ddab5bb2b75..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/shuttles/cannons.ftl
+++ /dev/null
@@ -1,19 +0,0 @@
-ent-ShuttleGunBase = shittle gun
- .desc = { "" }
-ent-ShuttleGunSvalinnMachineGun = LSE-400c "Svalinn machine gun"
- .desc = Basic stationary laser unit. Effective against live targets and electronics. Uses regular power cells to fire, and has an extremely high rate of fire.
- .suffix = DO NOT MAP
-ent-ShuttleGunPerforator = LSE-1200c "Perforator"
- .desc = Advanced stationary laser unit. Annihilates electronics and is extremely dangerous to health! Uses the power cage to fire.
- .suffix = DO NOT MAP
-ent-ShuttleGunFriendship = EXP-320g "Friendship"
- .desc = A small stationary grenade launcher that holds 2 grenades.
- .suffix = DO NOT MAP
-ent-ShuttleGunDuster = EXP-2100g "Duster"
- .desc = A powerful stationary grenade launcher. A cartridge is required for use.
- .suffix = DO NOT MAP
-ent-ShuttleGunPirateCannon = pirate ship cannon
- .desc = Kaboom!
-ent-ShuttleGunKinetic = PTK-800 "Matter Dematerializer"
- .desc = Salvage stationary mining turret. Gradually accumulates charges on its own, extremely effective for asteroid excavation.
- .suffix = DO NOT MAP
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/shuttles/thrusters.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/shuttles/thrusters.ftl
deleted file mode 100644
index 79908bf787a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/shuttles/thrusters.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-BaseThruster = thruster
- .desc = A thruster that allows a shuttle to move.
-ent-Thruster = thruster
- .desc = { ent-BaseThruster.desc }
-ent-ThrusterUnanchored = { ent-Thruster }
- .suffix = Unanchored
- .desc = { ent-Thruster.desc }
-ent-DebugThruster = { ent-BaseThruster }
- .suffix = DEBUG
- .desc = { ent-BaseThruster.desc }
-ent-Gyroscope = gyroscope
- .desc = Increases the shuttle's potential angular rotation.
-ent-GyroscopeUnanchored = { ent-Gyroscope }
- .suffix = Unanchored
- .desc = { ent-Gyroscope.desc }
-ent-DebugGyroscope = { ent-BaseThruster }
- .suffix = DEBUG
- .desc = { ent-BaseThruster.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/soil.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/soil.ftl
deleted file mode 100644
index 641c8fddebe..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/soil.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-hydroponicsSoil = soil
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/anomalies.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/anomalies.ftl
deleted file mode 100644
index bc167218989..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/anomalies.ftl
+++ /dev/null
@@ -1,26 +0,0 @@
-ent-BaseAnomaly = anomaly
- .desc = An impossible object. Should you be standing this close to it?
-ent-AnomalyPyroclastic = { ent-BaseAnomaly }
- .suffix = Pyroclastic
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyGravity = { ent-BaseAnomaly }
- .suffix = Gravity
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyElectricity = { ent-BaseAnomaly }
- .suffix = Electricity
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyFlesh = { ent-BaseAnomaly }
- .suffix = Flesh
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyBluespace = { ent-BaseAnomaly }
- .suffix = Bluespace
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyIce = { ent-BaseAnomaly }
- .suffix = Ice
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyRock = { ent-BaseAnomaly }
- .suffix = Rock
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyLiquid = { ent-BaseAnomaly }
- .suffix = Liquid
- .desc = { ent-BaseAnomaly.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/anomaly/anomalies.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/anomaly/anomalies.ftl
deleted file mode 100644
index 01c006b34cf..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/anomaly/anomalies.ftl
+++ /dev/null
@@ -1,47 +0,0 @@
-ent-BaseAnomaly = anomaly
- .desc = An impossible object. Should you be standing this close to it?
-ent-AnomalyPyroclastic = { ent-BaseAnomaly }
- .suffix = Pyroclastic
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyGravity = { ent-BaseAnomaly }
- .suffix = Gravity
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyElectricity = { ent-BaseAnomaly }
- .suffix = Electricity
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyFlesh = { ent-BaseAnomaly }
- .suffix = Flesh
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyBluespace = { ent-BaseAnomaly }
- .suffix = Bluespace
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyIce = { ent-BaseAnomaly }
- .suffix = Ice
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyRockBase = { ent-BaseAnomaly }
- .suffix = Rock
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyRockUranium = { ent-AnomalyRockBase }
- .suffix = Rock, Uranium
- .desc = { ent-AnomalyRockBase.desc }
-ent-AnomalyRockQuartz = { ent-AnomalyRockBase }
- .suffix = Rock, Quartz
- .desc = { ent-AnomalyRockBase.desc }
-ent-AnomalyRockSilver = { ent-AnomalyRockBase }
- .suffix = Rock, Silver
- .desc = { ent-AnomalyRockBase.desc }
-ent-AnomalyRockIron = { ent-AnomalyRockBase }
- .suffix = Rock, Iron
- .desc = { ent-AnomalyRockBase.desc }
-ent-AnomalyFlora = { ent-BaseAnomaly }
- .suffix = Flora
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyFloraBulb = strange glowing berry
- .desc = It's a beautiful strange glowing berry. It seems to have something growing inside it...
- .suffix = Flora Anomaly
-ent-AnomalyLiquid = { ent-BaseAnomaly }
- .suffix = Liquid
- .desc = { ent-BaseAnomaly.desc }
-ent-AnomalyShadow = { ent-BaseAnomaly }
- .suffix = Shadow
- .desc = { ent-BaseAnomaly.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/anomaly/cores.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/anomaly/cores.ftl
deleted file mode 100644
index 9368de36a69..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/anomaly/cores.ftl
+++ /dev/null
@@ -1,64 +0,0 @@
-ent-BaseAnomalyCore = anomaly core
- .desc = The core of a destroyed incomprehensible object.
-ent-AnomalyCorePyroclastic = { ent-BaseAnomalyCore }
- .suffix = Pyroclastic
- .desc = { ent-BaseAnomalyCore.desc }
-ent-AnomalyCoreGravity = { ent-BaseAnomalyCore }
- .suffix = Gravity
- .desc = { ent-BaseAnomalyCore.desc }
-ent-AnomalyCoreIce = { ent-BaseAnomalyCore }
- .suffix = Ice
- .desc = { ent-BaseAnomalyCore.desc }
-ent-AnomalyCoreFlesh = { ent-BaseAnomalyCore }
- .suffix = Flesh
- .desc = { ent-BaseAnomalyCore.desc }
-ent-AnomalyCoreRock = { ent-BaseAnomalyCore }
- .suffix = Rock
- .desc = { ent-BaseAnomalyCore.desc }
-ent-AnomalyCoreLiquid = { ent-BaseAnomalyCore }
- .suffix = Liquid
- .desc = { ent-BaseAnomalyCore.desc }
-ent-AnomalyCoreBluespace = { ent-BaseAnomalyCore }
- .suffix = Bluespace
- .desc = { ent-BaseAnomalyCore.desc }
-ent-AnomalyCoreElectricity = { ent-BaseAnomalyCore }
- .suffix = Electricity
- .desc = { ent-BaseAnomalyCore.desc }
-ent-AnomalyCoreFlora = { ent-BaseAnomalyCore }
- .suffix = Flora
- .desc = { ent-BaseAnomalyCore.desc }
-ent-AnomalyCoreShadow = { ent-BaseAnomalyCore }
- .suffix = Shadow
- .desc = { ent-BaseAnomalyCore.desc }
-ent-BaseAnomalyInertCore = { ent-BaseAnomalyCore }
- .desc = { ent-BaseAnomalyCore.desc }
-ent-AnomalyCorePyroclasticInert = { ent-BaseAnomalyInertCore }
- .suffix = Pyroclastic, Inert
- .desc = { ent-BaseAnomalyInertCore.desc }
-ent-AnomalyCoreGravityInert = { ent-BaseAnomalyInertCore }
- .suffix = Gravity, Inert
- .desc = { ent-BaseAnomalyInertCore.desc }
-ent-AnomalyCoreIceInert = { ent-BaseAnomalyInertCore }
- .suffix = Ice, Inert
- .desc = { ent-BaseAnomalyInertCore.desc }
-ent-AnomalyCoreFleshInert = { ent-BaseAnomalyInertCore }
- .suffix = Flesh, Inert
- .desc = { ent-BaseAnomalyInertCore.desc }
-ent-AnomalyCoreRockInert = { ent-BaseAnomalyInertCore }
- .suffix = Rock, Inert
- .desc = { ent-BaseAnomalyInertCore.desc }
-ent-AnomalyCoreLiquidInert = { ent-BaseAnomalyInertCore }
- .suffix = Liquid, Inert
- .desc = { ent-BaseAnomalyInertCore.desc }
-ent-AnomalyCoreBluespaceInert = { ent-BaseAnomalyInertCore }
- .suffix = Bluespace, Inert
- .desc = { ent-BaseAnomalyInertCore.desc }
-ent-AnomalyCoreElectricityInert = { ent-BaseAnomalyInertCore }
- .suffix = Electricity, Inert
- .desc = { ent-BaseAnomalyInertCore.desc }
-ent-AnomalyCoreFloraInert = { ent-BaseAnomalyInertCore }
- .suffix = Flora, Inert
- .desc = { ent-BaseAnomalyInertCore.desc }
-ent-AnomalyCoreShadowInert = { ent-BaseAnomalyInertCore }
- .suffix = Shadow, Inert
- .desc = { ent-BaseAnomalyInertCore.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/atmospherics/sensor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/atmospherics/sensor.ftl
deleted file mode 100644
index ac99c4e1668..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/atmospherics/sensor.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-AirSensor = air sensor
- .desc = Air sensor. It senses air.
-ent-AirSensorAssembly = air sensor assembly
- .desc = Air sensor assembly. An assembly of air sensors?
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/church-bell.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/church-bell.ftl
deleted file mode 100644
index 143c95b8d0b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/church-bell.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ChurchBell = church bell
- .desc = You feel your soul grow ever closer to the realms beyond for every chime this bell tolls...
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/dragon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/dragon.ftl
deleted file mode 100644
index 737c607a1a4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/dragon.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-CarpRift = carp rift
- .desc = A rift akin to the ones space carp use to travel long distances.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/janitor/drain.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/janitor/drain.ftl
deleted file mode 100644
index e775fbcd086..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/janitor/drain.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FloorDrain = drain
- .desc = Drains puddles around it. Useful for dumping mop buckets or keeping certain rooms clean.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/janitor/janicart.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/janitor/janicart.ftl
deleted file mode 100644
index 785a94d510a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/janitor/janicart.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-MopBucket = mop bucket
- .desc = Holds water and the tears of the janitor.
-ent-MopBucketFull = mop bucket
- .suffix = full
- .desc = { ent-MopBucket.desc }
-ent-JanitorialTrolley = janitorial trolley
- .desc = This is the alpha and omega of sanitation.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/xeno.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/xeno.ftl
deleted file mode 100644
index 4fda86c7202..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/xeno.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-XenoWardingTower = Xeno warding tower
- .desc = { "" }
-ent-CarpStatue = carp statue
- .desc = A statue of one of the brave carp that got us where we are today. Made with real teeth!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/stairs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/stairs.ftl
deleted file mode 100644
index fd4b40a342a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/stairs.ftl
+++ /dev/null
@@ -1,24 +0,0 @@
-ent-Stairs = stairs
- .desc = The greatest invention since rocket-propelled grenades.
- .suffix = Steel
-ent-StairStage = { ent-Stairs }
- .suffix = Steel, stage
- .desc = { ent-Stairs.desc }
-ent-StairWhite = { ent-Stairs }
- .suffix = White
- .desc = { ent-Stairs.desc }
-ent-StairStageWhite = { ent-Stairs }
- .suffix = White, stage
- .desc = { ent-Stairs.desc }
-ent-StairDark = { ent-Stairs }
- .suffix = Dark
- .desc = { ent-Stairs.desc }
-ent-StairStageDark = { ent-Stairs }
- .suffix = Dark, stage
- .desc = { ent-Stairs.desc }
-ent-StairWood = { ent-Stairs }
- .suffix = Wood
- .desc = { ent-Stairs.desc }
-ent-StairStageWood = { ent-Stairs }
- .suffix = Wood, stage
- .desc = { ent-Stairs.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/base_cabinet.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/base_cabinet.ftl
deleted file mode 100644
index ad1dd271d0b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/base_cabinet.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-BaseItemCabinet = { "" }
- .desc = { "" }
-ent-BaseItemCabinetGlass = { ent-BaseItemCabinet }
- .desc = { ent-BaseItemCabinet.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/canisters/gas_canisters.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/canisters/gas_canisters.ftl
deleted file mode 100644
index a829cd57806..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/canisters/gas_canisters.ftl
+++ /dev/null
@@ -1,54 +0,0 @@
-ent-GasCanister = gas canister
- .desc = A canister that can contain any type of gas. It can be attached to connector ports using a wrench.
-ent-StorageCanister = storage canister
- .desc = { ent-GasCanister.desc }
-ent-AirCanister = air canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain air mixture. It can be attached to connector ports using a wrench.
-ent-OxygenCanister = oxygen canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain oxygen. It can be attached to connector ports using a wrench.
-ent-LiquidOxygenCanister = liquid oxygen canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain liquid oxygen. It can be attached to connector ports using a wrench.
-ent-NitrogenCanister = nitrogen canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain nitrogen. It can be attached to connector ports using a wrench.
-ent-LiquidNitrogenCanister = liquid nitrogen canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain liquid nitrogen. It can be attached to connector ports using a wrench.
-ent-CarbonDioxideCanister = carbon dioxide canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain carbon dioxide. It can be attached to connector ports using a wrench.
-ent-LiquidCarbonDioxideCanister = liquid carbon dioxide canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain liquid carbon dioxide. It can be attached to connector ports using a wrench.
-ent-PlasmaCanister = plasma canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain plasma. It can be attached to connector ports using a wrench.
-ent-TritiumCanister = tritium canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain tritium. It can be attached to connector ports using a wrench.
-ent-WaterVaporCanister = water vapor canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain water vapor. It can be attached to connector ports using a wrench.
-ent-AmmoniaCanister = ammonia canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain ammonia. It can be attached to connector ports using a wrench.
-ent-NitrousOxideCanister = nitrous oxide canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain nitrous oxide. It can be attached to connector ports using a wrench.
-ent-FrezonCanister = frezon canister
- .desc = A canister that can contain any type of gas. This one is supposed to contain frezon. It can be attached to connector ports using a wrench.
-ent-GasCanisterBrokenBase = broken gas canister
- .desc = A broken gas canister. Not useless yet, as it can be salvaged for high quality materials.
-ent-StorageCanisterBroken = { ent-GasCanisterBrokenBase }
- .desc = { ent-GasCanisterBrokenBase.desc }
-ent-AirCanisterBroken = { ent-GasCanisterBrokenBase }
- .desc = { ent-GasCanisterBrokenBase.desc }
-ent-OxygenCanisterBroken = { ent-GasCanisterBrokenBase }
- .desc = { ent-GasCanisterBrokenBase.desc }
-ent-NitrogenCanisterBroken = { ent-GasCanisterBrokenBase }
- .desc = { ent-GasCanisterBrokenBase.desc }
-ent-CarbonDioxideCanisterBroken = { ent-GasCanisterBrokenBase }
- .desc = { ent-GasCanisterBrokenBase.desc }
-ent-PlasmaCanisterBroken = { ent-GasCanisterBrokenBase }
- .desc = { ent-GasCanisterBrokenBase.desc }
-ent-TritiumCanisterBroken = { ent-GasCanisterBrokenBase }
- .desc = { ent-GasCanisterBrokenBase.desc }
-ent-WaterVaporCanisterBroken = broken water vapor canister
- .desc = { ent-GasCanisterBrokenBase.desc }
-ent-AmmoniaCanisterBroken = { ent-GasCanisterBrokenBase }
- .desc = { ent-GasCanisterBrokenBase.desc }
-ent-NitrousOxideCanisterBroken = { ent-GasCanisterBrokenBase }
- .desc = { ent-GasCanisterBrokenBase.desc }
-ent-FrezonCanisterBroken = { ent-GasCanisterBrokenBase }
- .desc = { ent-GasCanisterBrokenBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl
deleted file mode 100644
index 35ab60d27f9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-ClosetBase = closet
- .desc = A standard-issue Nanotrasen storage unit.
-ent-ClosetSteelBase = { ent-ClosetBase }
- .desc = { ent-ClosetBase.desc }
-ent-BaseWallCloset = wall closet
- .desc = A standard-issue Nanotrasen storage unit, now on walls.
-ent-BaseWallLocker = { ent-BaseWallCloset }
- .desc = { ent-BaseWallCloset.desc }
-ent-SuitStorageBase = suit storage unit
- .desc = A fancy hi-tech storage unit made for storing space suits.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/big_boxes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/big_boxes.ftl
deleted file mode 100644
index 2f7824b410e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/big_boxes.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-BaseBigBox = cardboard box
- .desc = Huh? Just a box...
-ent-StealthBox = { ent-BaseBigBox }
- .desc = Kept ya waiting, huh?
- .suffix = stealth
-ent-BigBox = { ent-BaseBigBox }
- .desc = { ent-BaseBigBox.desc }
-ent-GhostBox = ghost box
- .desc = Beware!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl
deleted file mode 100644
index d049fde98ff..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl
+++ /dev/null
@@ -1,33 +0,0 @@
-ent-ClosetTool = tool closet
- .desc = It's a storage unit for tools.
-ent-ClosetRadiationSuit = radiation suit closet
- .desc = More comfortable than radiation poisioning.
-ent-ClosetEmergency = emergency closet
- .desc = It's a storage unit for emergency breath masks and O2 tanks.
-ent-ClosetEmergencyN2 = emergency nitrogen closet
- .desc = It's full of life-saving equipment. Assuming, that is, that you breathe nitrogen.
-ent-ClosetFire = fire-safety closet
- .desc = It's a storage unit for fire-fighting supplies.
-ent-ClosetBomb = EOD closet
- .desc = It's a storage unit for explosion-protective suits.
-ent-ClosetJanitorBomb = janitorial bomb suit closet
- .desc = It's a storage unit for janitorial explosion-protective suits.
- .suffix = DO NOT MAP
-ent-ClosetL3 = level 3 biohazard gear closet
- .desc = It's a storage unit for level 3 biohazard gear.
-ent-ClosetL3Virology = { ent-ClosetL3 }
- .desc = { ent-ClosetL3.desc }
-ent-ClosetL3Security = { ent-ClosetL3 }
- .desc = { ent-ClosetL3.desc }
-ent-ClosetL3Janitor = { ent-ClosetL3 }
- .desc = { ent-ClosetL3.desc }
-ent-ClosetMaintenance = maintenance closet
- .desc = It's a storage unit.
-ent-LockerSyndicate = armory closet
- .desc = It's a storage unit.
-ent-ClosetBluespace = suspicious closet
- .desc = It's a storage unit... right?
- .suffix = Bluespace
-ent-ClosetBluespaceUnstable = suspicious closet
- .desc = It's a storage unit... right?
- .suffix = Bluespace unstable
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/cursed.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/cursed.ftl
deleted file mode 100644
index ce94c40de2a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/cursed.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-ClosetCursed = closet
- .desc = A standard-issue Nanotrasen storage unit.
- .suffix = cursed
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/lockers/base_structurelockers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/lockers/base_structurelockers.ftl
deleted file mode 100644
index 757ee10e374..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/lockers/base_structurelockers.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-LockerBase = { ent-ClosetBase }
- .desc = { ent-ClosetBase.desc }
-ent-LockerBaseSecure = { ent-LockerBase }
- .desc = { ent-LockerBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl
deleted file mode 100644
index 648ff64158d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl
+++ /dev/null
@@ -1,69 +0,0 @@
-ent-LockerBooze = booze storage
- .desc = This is where the bartender keeps the booze.
-ent-LockerSteel = secure closet
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerQuarterMaster = quartermaster's locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerSalvageSpecialist = salvage specialist's equipment
- .desc = Nevermind the pickaxe.
-ent-LockerCaptain = captain's locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerHeadOfPersonnel = head of personnel's locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerChiefEngineer = chief engineer's locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerElectricalSupplies = electrical supplies locker
- .desc = { ent-LockerBase.desc }
-ent-LockerWeldingSupplies = welding supplies locker
- .desc = { ent-LockerBase.desc }
-ent-LockerAtmospherics = atmospheric technician's locker
- .desc = { ent-LockerBase.desc }
-ent-LockerEngineer = engineer's locker
- .desc = { ent-LockerBase.desc }
-ent-LockerFreezerBase = freezer
- .suffix = No Access
- .desc = { ent-LockerBase.desc }
-ent-LockerFreezer = freezer
- .suffix = Kitchen, Locked
- .desc = { ent-LockerFreezerBase.desc }
-ent-LockerBotanist = botanist's locker
- .desc = { ent-LockerBase.desc }
-ent-LockerMedicine = medicine locker
- .desc = Filled to the brim with medical junk.
-ent-LockerMedical = medical doctor's locker
- .desc = { ent-LockerBase.desc }
-ent-LockerParamedic = paramedic's locker
- .desc = { ent-LockerBase.desc }
-ent-LockerChemistry = chemical locker
- .desc = { ent-LockerBase.desc }
-ent-LockerChiefMedicalOfficer = chief medical officer's locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerResearchDirector = research director's locker
- .desc = { ent-LockerBase.desc }
-ent-LockerScientist = scientist's locker
- .desc = { ent-LockerBase.desc }
-ent-LockerHeadOfSecurity = head of security's locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerWarden = warden's locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerBrigmedic = brigmedic locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerSecurity = security officer's locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-GunSafe = gun safe
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerDetective = detective's cabinet
- .desc = Usually cold and empty... like your heart.
-ent-LockerEvidence = evidence locker
- .desc = To store bags of bullet casings and detainee belongings.
-ent-LockerSyndicatePersonal = armory closet
- .desc = It's a personal storage unit for operative gear.
-ent-LockerBluespaceStation = bluespace locker
- .desc = Advanced locker technology.
- .suffix = once to station
-ent-LockerClown = clown locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerMime = mime locker
- .desc = { ent-LockerBaseSecure.desc }
-ent-LockerRepresentative = representative locker
- .desc = { ent-LockerBaseSecure.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/wall_lockers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/wall_lockers.ftl
deleted file mode 100644
index 735940f3ffa..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/wall_lockers.ftl
+++ /dev/null
@@ -1,28 +0,0 @@
-ent-ClosetWall = maintenance wall closet
- .desc = It's a storage unit.
-ent-ClosetWallEmergency = emergency wall closet
- .desc = It's a storage unit for emergency breath masks and O2 tanks.
-ent-ClosetWallFire = fire-safety wall closet
- .desc = It's a storage unit for fire-fighting supplies.
-ent-ClosetWallBlue = blue wall closet
- .desc = A wardrobe packed with stylish blue clothing.
-ent-ClosetWallPink = pink wall closet
- .desc = A wardrobe packed with fabulous pink clothing.
-ent-ClosetWallBlack = black wall closet
- .desc = A wardrobe packed with stylish black clothing.
-ent-ClosetWallGreen = green wall closet
- .desc = A wardrobe packed with stylish green clothing.
-ent-ClosetWallOrange = prison wall closet
- .desc = { ent-BaseWallCloset.desc }
-ent-ClosetWallYellow = yellow wall closet
- .desc = A wardrobe packed with stylish yellow clothing.
-ent-ClosetWallWhite = white wall closet
- .desc = A wardrobe packed with stylish white clothing.
-ent-ClosetWallGrey = grey wall closet
- .desc = A wardrobe packed with a tide of grey clothing.
-ent-ClosetWallMixed = mixed wall closet
- .desc = A wardrobe packed with a mix of colorful clothing.
-ent-ClosetWallAtmospherics = atmospherics wall closet
- .desc = { ent-BaseWallCloset.desc }
-ent-LockerWallMedical = medical wall locker
- .desc = { ent-BaseWallLocker.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/wardrobe.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/wardrobe.ftl
deleted file mode 100644
index c370007f133..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/wardrobe.ftl
+++ /dev/null
@@ -1,54 +0,0 @@
-ent-WardrobeBase = { ent-ClosetSteelBase }
- .desc = It's a storage unit for standard-issue Nanotrasen attire.
-ent-WardrobeBlue = blue wardrobe
- .desc = A wardrobe packed with stylish blue clothing.
-ent-WardrobePink = pink wardrobe
- .desc = A wardrobe packed with fabulous pink clothing.
-ent-WardrobeBlack = black wardrobe
- .desc = A wardrobe packed with stylish black clothing.
-ent-WardrobeGreen = green wardrobe
- .desc = A wardrobe packed with stylish green clothing.
-ent-WardrobePrison = prison wardrobe
- .desc = { ent-WardrobeBase.desc }
-ent-WardrobeYellow = yellow wardrobe
- .desc = A wardrobe packed with stylish yellow clothing.
-ent-WardrobeWhite = white wardrobe
- .desc = A wardrobe packed with stylish white clothing.
-ent-WardrobeGrey = grey wardrobe
- .desc = A wardrobe packed with a tide of grey clothing.
-ent-WardrobeMixed = mixed wardrobe
- .desc = A wardrobe packed with a mix of colorful clothing.
-ent-WardrobeSecurity = security wardrobe
- .desc = { ent-WardrobeBase.desc }
-ent-WardrobeAtmospherics = atmospherics wardrobe
- .desc = { ent-WardrobeBase.desc }
-ent-ClosetJanitor = custodial closet
- .desc = It's a storage unit for janitorial clothes and gear.
-ent-WardrobeFormal = formal closet
- .desc = It's a storage unit for formal clothing.
-ent-ClosetChef = chef's closet
- .desc = It's a storage unit for foodservice garments and mouse traps.
-ent-WardrobeChapel = chaplain's wardrobe
- .desc = It's a storage unit for Nanotrasen-approved religious attire.
-ent-ClosetLegal = legal closet
- .desc = It's a storage unit for courtroom apparel and items.
-ent-WardrobeCargo = cargo wardrobe
- .desc = { ent-WardrobePrison.desc }
-ent-WardrobeSalvage = salvage wardrobe
- .desc = Notably not salvaged.
-ent-WardrobeEngineering = engineering wardrobe
- .desc = { ent-WardrobeYellow.desc }
-ent-WardrobeMedicalDoctor = medical doctor's wardrobe
- .desc = { ent-WardrobeWhite.desc }
-ent-WardrobeRobotics = robotics wardrobe
- .desc = { ent-WardrobeBlack.desc }
-ent-WardrobeChemistry = chemistry wardrobe
- .desc = { ent-WardrobeWhite.desc }
-ent-WardrobeGenetics = genetics wardrobe
- .desc = { ent-WardrobeWhite.desc }
-ent-WardrobeVirology = virology wardrobe
- .desc = { ent-WardrobeWhite.desc }
-ent-WardrobeScience = science wardrobe
- .desc = { ent-WardrobeWhite.desc }
-ent-WardrobeBotanist = botanist wardrobe
- .desc = { ent-WardrobeGreen.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/base_structurecrates.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/base_structurecrates.ftl
deleted file mode 100644
index 6d4007e51ce..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/base_structurecrates.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-CrateGeneric = crate
- .desc = A large container for items.
-ent-CrateBaseWeldable = { ent-CrateGeneric }
- .desc = { ent-CrateGeneric.desc }
-ent-CrateBaseSecure = { ent-CrateBaseWeldable }
- .suffix = Secure
- .desc = { ent-CrateBaseWeldable.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl
deleted file mode 100644
index f39c1961922..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl
+++ /dev/null
@@ -1,75 +0,0 @@
-ent-CrateGenericSteel = crate
- .desc = { ent-CrateBaseWeldable.desc }
-ent-CratePlastic = plastic crate
- .desc = { ent-CrateBaseWeldable.desc }
-ent-CrateFreezer = freezer
- .desc = { ent-CratePlastic.desc }
-ent-CrateHydroponics = hydroponics crate
- .desc = { ent-CratePlastic.desc }
-ent-CrateMedical = medical crate
- .desc = { ent-CratePlastic.desc }
-ent-CrateRadiation = radiation gear crate
- .desc = Is not actually lead lined. Do not store your plutonium in this.
-ent-CrateInternals = oxygen crate
- .desc = { ent-CratePlastic.desc }
-ent-CrateElectrical = electrical crate
- .desc = { ent-CrateGenericSteel.desc }
-ent-CrateEngineering = engineering crate
- .desc = { ent-CrateGenericSteel.desc }
-ent-CrateScience = science crate
- .desc = { ent-CrateGenericSteel.desc }
-ent-CrateSurgery = surgery crate
- .desc = { ent-CrateGenericSteel.desc }
-ent-CrateWeb = web crate
- .desc = { ent-CrateGeneric.desc }
-ent-CrateSecgear = secgear crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CrateEngineeringSecure = secure engineering crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CrateMedicalSecure = secure medical crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CrateChemistrySecure = secure chemistry crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CratePrivateSecure = private crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CrateScienceSecure = secure science crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CratePlasma = plasma crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CrateSecure = secure crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CrateHydroSecure = secure hydroponics crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CrateWeaponSecure = secure weapon crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CrateContrabandStorageSecure = contraband storage crate
- .desc = An armory access locked crate for storing contraband confiscated from suspects or prisoners.
- .suffix = Armory, Secure
-ent-CrateCommandSecure = command crate
- .desc = { ent-CrateBaseSecure.desc }
-ent-CrateLivestock = livestock crate
- .desc = { ent-CrateGeneric.desc }
-ent-CrateRodentCage = hamster cage
- .desc = { ent-CrateGeneric.desc }
-ent-CratePirate = pirate chest
- .desc = A space pirate chest, not for station lubbers.
-ent-CrateToyBox = toy box
- .desc = A box overflowing with fun.
- .suffix = Empty
-ent-CrateCoffin = coffin
- .desc = A comfy coffin, excelent place for the vampires and corpses.
-ent-CrateWoodenGrave = grave
- .desc = Someone died here...
- .suffix = wooden
-ent-CrateStoneGrave = grave
- .desc = Someone died here...
- .suffix = stone
-ent-CrateSyndicate = Syndicate crate
- .desc = A dark steel crate with red bands and a letter S embossed on the front.
-ent-CrateTrashCart = trash cart
- .desc = { ent-CrateBaseWeldable.desc }
-ent-CrateTrashCartJani = janitorial trash cart
- .desc = { ent-CrateBaseSecure.desc }
-ent-InvisibleCrate = { ent-CrateBaseWeldable }
- .suffix = Stealth
- .desc = { ent-CrateBaseWeldable.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/filing_cabinets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/filing_cabinets.ftl
deleted file mode 100644
index 97144429df4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/filing_cabinets.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-filingCabinet = filing cabinet
- .desc = A cabinet for all your filing needs.
- .suffix = Empty
-ent-filingCabinetTall = tall cabinet
- .suffix = Empty
- .desc = { ent-filingCabinet.desc }
-ent-filingCabinetDrawer = chest drawer
- .desc = A small drawer for all your filing needs, Now with wheels!
- .suffix = Empty
-ent-BaseBureaucraticStorageFill = { "" }
- .desc = { "" }
-ent-filingCabinetRandom = { ent-filingCabinetDrawer }
- .suffix = Random
- .desc = { ent-filingCabinetDrawer.desc }
-ent-filingCabinetTallRandom = { ent-filingCabinetDrawer }
- .suffix = Random
- .desc = { ent-filingCabinetDrawer.desc }
-ent-filingCabinetDrawerRandom = { ent-filingCabinetDrawer }
- .suffix = Random
- .desc = { ent-filingCabinetDrawer.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/glass_box.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/glass_box.ftl
deleted file mode 100644
index b9537b139ad..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/glass_box.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-BaseGlassBox = { ent-BaseStructureDynamic }
- .desc = { ent-BaseStructureDynamic.desc }
-ent-GlassBox = glass box
- .desc = A sturdy showcase for an expensive exhibit.
-ent-GlassBoxLaser = { ent-GlassBox }
- .suffix = AntiqueLaser
- .desc = { ent-GlassBox.desc }
-ent-GlassBoxLaserOpen = { ent-GlassBoxLaser }
- .suffix = AntiqueLaser, Open
- .desc = { ent-GlassBoxLaser.desc }
-ent-GlassBoxLaserFilled = { ent-GlassBoxLaser }
- .suffix = AntiqueLaser, Filled
- .desc = { ent-GlassBoxLaser.desc }
-ent-GlassBoxLaserFilledOpen = { ent-GlassBoxLaserFilled }
- .suffix = AntiqueLaser, Filled, Open
- .desc = { ent-GlassBoxLaserFilled.desc }
-ent-GlassBoxFrame = glass box frame
- .desc = A glassless sturdy showcase for an expensive exhibit.
- .suffix = Frame
-ent-GlassBoxBroken = broken glass box
- .desc = A broken showcase for a stolen expensive exhibit.
- .suffix = Broken
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/morgue.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/morgue.ftl
deleted file mode 100644
index 1e3f80b9774..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/morgue.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-Morgue = morgue
- .desc = Used to store bodies until someone fetches them. Includes a high-tech alert system for false-positives!
-ent-Crematorium = crematorium
- .desc = A human incinerator. Works well on barbecue nights.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/ore_box.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/ore_box.ftl
deleted file mode 100644
index a9ad3b57649..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/ore_box.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-OreBox = ore box
- .desc = A large storage container for holding unprocessed ores.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/paper_bin.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/paper_bin.ftl
deleted file mode 100644
index f8821c7aae3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/paper_bin.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-PaperBin = paper bin
- .desc = What secrets lie at the bottom of its endless stack?
- .suffix = Empty
-ent-PaperBin5 = { ent-PaperBin }
- .suffix = 5
- .desc = { ent-PaperBin.desc }
-ent-PaperBin10 = { ent-PaperBin }
- .suffix = 10
- .desc = { ent-PaperBin.desc }
-ent-PaperBin20 = { ent-PaperBin }
- .suffix = 20
- .desc = { ent-PaperBin.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/storage.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/storage.ftl
deleted file mode 100644
index 3387fbb6e67..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/storage.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Rack = rack
- .desc = A rack for storing things on.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/tanks/base_structuretanks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/tanks/base_structuretanks.ftl
deleted file mode 100644
index 5e1d055c3a0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/tanks/base_structuretanks.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-StorageTank = storage tank
- .desc = A liquids storage tank.
-ent-StorageTankBig = { ent-StorageTank }
- .desc = { ent-StorageTank.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/tanks/tanks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/tanks/tanks.ftl
deleted file mode 100644
index 078cd009485..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/tanks/tanks.ftl
+++ /dev/null
@@ -1,23 +0,0 @@
-ent-WeldingFuelTank = fuel tank
- .desc = A fuel tank. It's used to store high amounts of fuel.
- .suffix = Empty
-ent-WeldingFuelTankFull = { ent-WeldingFuelTank }
- .suffix = Full
- .desc = { ent-WeldingFuelTank.desc }
-ent-WeldingFuelTankHighCapacity = high-capacity fuel tank
- .desc = A highly pressurized fuel tank made to hold gargantuan amounts of welding fuel.
- .suffix = Full
-ent-WaterTank = water tank
- .desc = A water tank. It's used to store high amounts of water.
- .suffix = Empty
-ent-WaterTankFull = { ent-WaterTank }
- .suffix = Full
- .desc = { ent-WaterTank.desc }
-ent-WaterCooler = water cooler
- .desc = Seems like a good place to stand and waste time. It has a stock of paper cups on the side.
-ent-WaterTankHighCapacity = high-capacity water tank
- .desc = A highly pressurized water tank made to hold gargantuan amounts of water.
- .suffix = Full
-ent-GenericTank = { ent-StorageTank }
- .suffix = Empty
- .desc = { ent-StorageTank.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/air_alarm.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/air_alarm.ftl
deleted file mode 100644
index c5f6f23e9ae..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/air_alarm.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-AirAlarm = air alarm
- .desc = An air alarm. Alarms... air?
-ent-AirAlarmAssembly = air alarm assembly
- .desc = An air alarm. Doesn't look like it'll be alarming air any time soon.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/bell.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/bell.ftl
deleted file mode 100644
index 17b8354380f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/bell.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BoxingBell = boxing bell
- .desc = Ding ding!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/defib_cabinet.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/defib_cabinet.ftl
deleted file mode 100644
index 7907631e59c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/defib_cabinet.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-DefibrillatorCabinet = defibrillator cabinet
- .desc = A small wall mounted cabinet designed to hold a defibrillator.
-ent-DefibrillatorCabinetOpen = { ent-DefibrillatorCabinet }
- .suffix = Open
- .desc = { ent-DefibrillatorCabinet.desc }
-ent-DefibrillatorCabinetFilled = { ent-DefibrillatorCabinet }
- .suffix = Filled
- .desc = { ent-DefibrillatorCabinet.desc }
-ent-DefibrillatorCabinetFilledOpen = { ent-DefibrillatorCabinetFilled }
- .suffix = Filled, Open
- .desc = { ent-DefibrillatorCabinetFilled.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/extinguisher_cabinet.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/extinguisher_cabinet.ftl
deleted file mode 100644
index 8909da9327b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/extinguisher_cabinet.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-ExtinguisherCabinet = extinguisher cabinet
- .desc = A small wall mounted cabinet designed to hold a fire extinguisher.
-ent-ExtinguisherCabinetOpen = { ent-ExtinguisherCabinet }
- .suffix = Open
- .desc = { ent-ExtinguisherCabinet.desc }
-ent-ExtinguisherCabinetFilled = { ent-ExtinguisherCabinet }
- .suffix = Filled
- .desc = { ent-ExtinguisherCabinet.desc }
-ent-ExtinguisherCabinetFilledOpen = { ent-ExtinguisherCabinetFilled }
- .suffix = Filled, Open
- .desc = { ent-ExtinguisherCabinetFilled.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/fire_alarm.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/fire_alarm.ftl
deleted file mode 100644
index d746c12b8a0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/fire_alarm.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-FireAlarm = fire alarm
- .desc = A fire alarm. Spicy!
-ent-FireAlarmAssembly = fire alarm assembly
- .desc = A fire alarm assembly. Very mild.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/fireaxe_cabinet.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/fireaxe_cabinet.ftl
deleted file mode 100644
index 9e5b1dc77c7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/fireaxe_cabinet.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-FireAxeCabinet = fire axe cabinet
- .desc = There is a small label that reads "For Emergency use only" along with details for safe use of the axe. As if.
-ent-FireAxeCabinetOpen = { ent-FireAxeCabinet }
- .suffix = Open
- .desc = { ent-FireAxeCabinet.desc }
-ent-FireAxeCabinetFilled = { ent-FireAxeCabinet }
- .suffix = Filled
- .desc = { ent-FireAxeCabinet.desc }
-ent-FireAxeCabinetFilledOpen = { ent-FireAxeCabinetFilled }
- .suffix = Filled, Open
- .desc = { ent-FireAxeCabinetFilled.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/intercom.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/intercom.ftl
deleted file mode 100644
index 51673b166d3..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/intercom.ftl
+++ /dev/null
@@ -1,31 +0,0 @@
-ent-Intercom = intercom
- .desc = An intercom. For when the station just needs to know something.
-ent-IntercomAssesmbly = intercom assembly
- .desc = An intercom. It doesn't seem very helpful right now.
-ent-IntercomCommon = { ent-Intercom }
- .suffix = Common
- .desc = { ent-Intercom.desc }
-ent-IntercomCommand = { ent-Intercom }
- .suffix = Command
- .desc = { ent-Intercom.desc }
-ent-IntercomEngineering = { ent-Intercom }
- .suffix = Engineering
- .desc = { ent-Intercom.desc }
-ent-IntercomMedical = { ent-Intercom }
- .suffix = Medical
- .desc = { ent-Intercom.desc }
-ent-IntercomScience = { ent-Intercom }
- .suffix = Science
- .desc = { ent-Intercom.desc }
-ent-IntercomSecurity = { ent-Intercom }
- .suffix = Security
- .desc = { ent-Intercom.desc }
-ent-IntercomService = { ent-Intercom }
- .suffix = Service
- .desc = { ent-Intercom.desc }
-ent-IntercomSupply = { ent-Intercom }
- .suffix = Supply
- .desc = { ent-Intercom.desc }
-ent-IntercomAll = { ent-Intercom }
- .suffix = All
- .desc = { ent-Intercom.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/lighting.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/lighting.ftl
deleted file mode 100644
index c23b8deb1db..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/lighting.ftl
+++ /dev/null
@@ -1,36 +0,0 @@
-ent-WallLight = light
- .desc = An unpowered light.
- .suffix = Unpowered
-ent-PoweredlightEmpty = light
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
- .suffix = Powered, Empty
-ent-Poweredlight = { ent-PoweredlightEmpty }
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
- .suffix = Powered
-ent-PoweredlightLED = { ent-Poweredlight }
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
- .suffix = Powered, LED
-ent-UnpoweredLightLED = { ent-WallLight }
- .suffix = Unpowered, LED
- .desc = { ent-WallLight.desc }
-ent-PoweredlightExterior = { ent-Poweredlight }
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
- .suffix = Powered, Exterior Blue
-ent-UnpoweredLightExterior = { ent-WallLight }
- .suffix = Unpowered, Exterior Blue
- .desc = { ent-WallLight.desc }
-ent-PoweredlightSodium = { ent-Poweredlight }
- .desc = A light fixture. Draws power and produces light when equipped with a light tube.
- .suffix = Powered, Sodium Orange
-ent-UnpoweredLightSodium = { ent-WallLight }
- .suffix = Unpowered, Sodium Orange
- .desc = { ent-WallLight.desc }
-ent-SmallLight = small light
- .desc = An unpowered light.
- .suffix = Unpowered
-ent-PoweredSmallLightEmpty = small light
- .desc = A light fixture. Draws power and produces light when equipped with a light bulb.
- .suffix = Powered, Empty
-ent-PoweredSmallLight = { ent-PoweredSmallLightEmpty }
- .suffix = Powered
- .desc = { ent-PoweredSmallLightEmpty.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/mirror.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/mirror.ftl
deleted file mode 100644
index 99897de0778..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/mirror.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Mirror = mirror
- .desc = Mirror mirror on the wall , who's the most robust of them all?
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/monitors_televisions.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/monitors_televisions.ftl
deleted file mode 100644
index 5c7e16a5c57..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/monitors_televisions.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-ComputerTelevision = wooden television
- .desc = Finally, some decent reception around here...
-ent-WallmountTelescreenFrame = telescreen frame
- .desc = Finally, some decent reception around here...
-ent-WallmountTelescreen = telescreen
- .desc = Finally, some decent reception around here...
- .suffix = camera monitor
-ent-WallmountTelevisionFrame = television frame
- .desc = Finally, some decent reception around here...
-ent-WallmountTelevision = television
- .desc = Finally, some decent reception around here...
- .suffix = entertainment
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/noticeboard.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/noticeboard.ftl
deleted file mode 100644
index 63823009e89..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/noticeboard.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-NoticeBoard = notice board
- .desc = Is there a job for a witcher?
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/screen.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/screen.ftl
deleted file mode 100644
index 84d3c3e6661..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/screen.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-Screen = screen
- .desc = Displays text or time.
-ent-ArrivalsShuttleTimer = arrivals screen
- .desc = { ent-Screen.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/service_light.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/service_light.ftl
deleted file mode 100644
index 61131651023..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/service_light.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-JanitorServiceLight = janitorial service light
- .desc = A wall-mounted janitorial sign. If the light is blinking, a janitor's service is required.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/shotgun_cabinet.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/shotgun_cabinet.ftl
deleted file mode 100644
index 96938269dfd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/shotgun_cabinet.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-ShotGunCabinet = shotgun cabinet
- .desc = There is a small label that reads "For Emergency use only" along with details for safe use of the shotgun. As if.
-ent-ShotGunCabinetOpen = { ent-ShotGunCabinet }
- .suffix = Open
- .desc = { ent-ShotGunCabinet.desc }
-ent-ShotGunCabinetFilled = { ent-ShotGunCabinet }
- .suffix = Filled
- .desc = { ent-ShotGunCabinet.desc }
-ent-ShotGunCabinetFilledOpen = { ent-ShotGunCabinetFilled }
- .suffix = Filled, Open
- .desc = { ent-ShotGunCabinetFilled.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/atmos_plaque.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/atmos_plaque.ftl
deleted file mode 100644
index 656b54bf652..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/atmos_plaque.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PlaqueAtmos = atmos plaque
- .desc = { ent-BaseSign.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/bar_sign.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/bar_sign.ftl
deleted file mode 100644
index a7bc72d499e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/bar_sign.ftl
+++ /dev/null
@@ -1,51 +0,0 @@
-ent-BaseBarSign = bar sign
- .desc = { ent-BaseStructure.desc }
-ent-BarSign = bar sign
- .suffix = Random
- .desc = { ent-BaseBarSign.desc }
-ent-BarSignComboCafe = Combo Cafe
- .desc = Renowned system-wide for their utterly uncreative drink combinations.
-ent-BarSignEmergencyRumParty = Emergency Rum Party
- .desc = Recently relicensed after a long closure.
-ent-BarSignLV426 = LV426
- .desc = Drinking with fancy facemasks is clearly more important than going to medbay.
-ent-BarSignMaidCafe = Maid Cafe
- .desc = Welcome back, master!
-ent-BarSignMalteseFalcon = Maltese Falcon
- .desc = Play it again, sam.
-ent-BarSignOfficerBeersky = Officer Beersky
- .desc = Man eat a dong, these drinks are great.
-ent-BarSignRobustaCafe = Robusta Cafe
- .desc = Holder of the 'Most Lethal Barfights' record 5 years uncontested.
-ent-BarSignTheAleNath = The Ale Nath
- .desc = All right, buddy. I think you've had EI NATH. Time to get a cab.
-ent-BarSignTheBirdCage = The Bird Cage
- .desc = Caw caw!
-ent-BarSignTheCoderbus = The Coderbus
- .desc = A very controversial bar known for its wide variety of constantly-changing drinks.
-ent-BarSignTheDrunkCarp = The Drunk Carp
- .desc = Don't drink and swim.
-ent-BarSignEngineChange = The Engine Change
- .desc = Still waiting.
-ent-BarSignTheHarmbaton = The Harmbaton
- .desc = A great dining experience for both security members and passengers.
-ent-BarSignTheLightbulb = The Lightbulb
- .desc = A cafe popular among moths and moffs. Once shut down for a week after the bartender used mothballs to protect her spare uniforms.
-ent-BarSignTheLooseGoose = The Loose Goose
- .desc = Drink till you puke and/or break the laws of reality!
-ent-BarSignTheNet = The Net
- .desc = You just seem to get caught up in it for hours.
-ent-BarSignTheOuterSpess = The Outer Spess
- .desc = This bar isn't actually located in outer space.
-ent-BarSignTheSingulo = The Singulo
- .desc = Where people go that'd rather not be called by their name.
-ent-BarSignTheSun = The Sun
- .desc = Ironically bright for such a shady bar.
-ent-BarSignWiggleRoom = Wiggle Room
- .desc = MoMMIs got moves.
-ent-BarSignZocalo = Zocalo
- .desc = Anteriormente ubicado en Spessmerica.
-ent-BarSignEmprah = 4 The Emprah
- .desc = Enjoyed by fanatics, heretics, and brain-damaged patrons alike.
-ent-BarSignSpacebucks = Spacebucks
- .desc = You can't get away from them, even in space, and even after we started calling them 'spesos' instead.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/base_structuresigns.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/base_structuresigns.ftl
deleted file mode 100644
index 8ca37ccf73d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/base_structuresigns.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BaseSign = base sign
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/flags.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/flags.ftl
deleted file mode 100644
index f8f92508c14..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/flags.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-BaseFlag = { ent-BaseSign }
- .desc = { ent-BaseSign.desc }
-ent-BlankFlag = blank flag
- .desc = Some piece of white cloth. Definitely not the flag of France.
-ent-NTFlag = Nanotrasen flag
- .desc = Glory to NT! Wait, they really made a flag for a corporation?
-ent-SyndieFlag = syndicate flag
- .desc = Smells bloody. Death to NT!
-ent-LGBTQFlag = LGBTQ flag
- .desc = Be gay do crime flag
-ent-PirateFlag = pirate flag
- .desc = Raise the jolly roger, scallywags!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/metamap.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/metamap.ftl
deleted file mode 100644
index 3908f2f1652..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/metamap.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-PosterMapMetaRight = Meta Station Map
- .desc = A map of Meta Station. This looks really old.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/paintings.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/paintings.ftl
deleted file mode 100644
index ae02c749a9b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/paintings.ftl
+++ /dev/null
@@ -1,42 +0,0 @@
-ent-PaintingBase = { ent-BaseSign }
- .desc = { ent-BaseSign.desc }
-ent-PaintingEmpty = empty frame
- .desc = An empty frame, waiting to be filled with art.
-ent-PaintingMoony = Abstract No.1
- .desc = An imposing abstract painting. It feels like it's pressuring you to do good.
-ent-PaintingPersistenceOfMemory = The Persistence of Memory
- .desc = This painting depicts a barren landscape. It's filled with various surreal objects.
-ent-PaintingTheSonOfMan = The Son of Man
- .desc = This painting depicts a formal-looking man. His face is obscured by an apple.
-ent-PaintingTheKiss = The Kiss
- .desc = This painting depicts a couple in tender embrace. It's covered in glittery gold ornamentation.
-ent-PaintingTheScream = The Scream
- .desc = This painting depicts a distressed man standing on a bridge.
-ent-PaintingTheGreatWave = The Great Wave off Kanagawa
- .desc = This painting depicts a majestic wave. It's throwing around several small fishing boats.
-ent-PaintingCafeTerraceAtNight = Cafe Terrace at Night
- .desc = This painting depicts lively night scene at a cafe.
-ent-PaintingNightHawks = Nighthawks
- .desc = This painting depicts a lonely-looking diner. The patrons are sitting glumly at the counter.
-ent-PaintingSkeletonCigarette = Skull of a Skeleton with Burning Cigarette
- .desc = This painting depicts an impressionist portrait of a skeleton. A lit cigarette is wedged between its teeth.
-ent-PaintingSkeletonBoof = Skull of MLG Skeleton with Fat Boof
- .desc = Painting goes hard. Feel free to screenshot.
-ent-PaintingPrayerHands = Study of the Hands of an Apostle
- .desc = This painting depicts a pair of hands clasped in prayer.
-ent-PaintingOldGuitarist = The Old Guitarist
- .desc = This painting depicts an old, thin man clutching a guitar. His face looks shallow and sickly.
-ent-PaintingOlympia = Olympia
- .desc = This painting depicts a nude woman lying on a bed. A servant is tending to her.
-ent-PaintingSaturn = Saturn Devouring His Son
- .desc = This painting depicts giant devouring a human corpse. He has a frightening look in his eyes.
-ent-PaintingSleepingGypsy = The Sleeping Gypsy
- .desc = This painting depicts a gypsy sleeping among their belongings in the desert. A lion stands behind them.
-ent-PaintingRedBlueYellow = Composition with Red Blue and Yellow
- .desc = This painting is made up of several boxes. They are filled with flat shades of color.
-ent-PaintingAmogusTriptych = Amogus Triptych (Untitled.)
- .desc = This painting is made up of 3 individual sections. Each depicts a religious figure.
-ent-PaintingHelloWorld = Hello World
- .desc = This painting is made up of lots of multicolored squares arranged in a peculiar pattern. Perhaps it means something?
-ent-PaintingSadClown = Sad Clown
- .desc = This painting is a sad clown! It sparks joy.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl
deleted file mode 100644
index 08c6d7259ea..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl
+++ /dev/null
@@ -1,250 +0,0 @@
-ent-PosterBase = { ent-BaseSign }
- .desc = { ent-BaseSign.desc }
-ent-PosterBroken = broken poster
- .desc = You can't make out anything from the poster's original print. It's ruined.
-ent-PosterContrabandFreeTonto = Free Tonto
- .desc = A salvaged shred of a much larger flag, colors bled together and faded from age.
-ent-PosterContrabandAtmosiaDeclarationIndependence = Atmosia Declaration of Independence
- .desc = A relic of a failed rebellion.
-ent-PosterContrabandFunPolice = Fun Police
- .desc = A poster condemning the station's security forces.
-ent-PosterContrabandLustyExomorph = Lusty Exomorph
- .desc = A heretical poster depicting the titular star of an equally heretical book.
-ent-PosterContrabandSyndicateRecruitment = Syndicate Recruitment
- .desc = See the galaxy! Shatter corrupt megacorporations! Join today!
-ent-PosterContrabandClown = Clown
- .desc = Honk.
-ent-PosterContrabandSmoke = Smoke
- .desc = A poster advertising a rival corporate brand of cigarettes.
-ent-PosterContrabandGreyTide = Grey Tide
- .desc = A rebellious poster symbolizing passenger solidarity.
-ent-PosterContrabandMissingGloves = Missing Gloves
- .desc = This poster references the uproar that followed Nanotrasen's financial cuts toward insulated-glove purchases.
-ent-PosterContrabandHackingGuide = Hacking Guide
- .desc = This poster details the internal workings of the common Nanotrasen airlock. Sadly, it appears out of date.
-ent-PosterContrabandRIPBadger = RIP Badger
- .desc = This seditious poster references Nanotrasen's genocide of a space station full of badgers.
-ent-PosterContrabandAmbrosiaVulgaris = Ambrosia Vulgaris
- .desc = This poster is lookin' pretty trippy man.
-ent-PosterContrabandDonutCorp = Donut Corp.
- .desc = This poster is an unauthorized advertisement for Donut Corp.
-ent-PosterContrabandEAT = EAT.
- .desc = This poster promotes rank gluttony.
-ent-PosterContrabandTools = Tools
- .desc = This poster looks like an advertisement for tools, but is in fact a subliminal jab at the tools at CentCom.
-ent-PosterContrabandPower = Power
- .desc = A poster that positions the seat of power outside Nanotrasen.
-ent-PosterContrabandSpaceCube = Space Cube
- .desc = Ignorant of Nature's Harmonic 6 Side Space Cube Creation, the Spacemen are Dumb, Educated Singularity Stupid and Evil.
-ent-PosterContrabandCommunistState = Communist State
- .desc = All hail the Communist party!
-ent-PosterContrabandLamarr = Lamarr
- .desc = This poster depicts Lamarr. Probably made by a traitorous Research Director.
-ent-PosterContrabandBorgFancy = Borg Fancy
- .desc = Being fancy can be for any borg, just need a suit.
-ent-PosterContrabandBorgFancyv2 = Borg Fancy v2
- .desc = Borg Fancy, Now only taking the most fancy.
-ent-PosterContrabandKosmicheskayaStantsiya = Kosmicheskaya Stantsiya 13 Does Not Exist
- .desc = A poster mocking CentCom's denial of the existence of the derelict station near Space Station 13.
-ent-PosterContrabandRebelsUnite = Rebels Unite
- .desc = A poster urging the viewer to rebel against Nanotrasen.
-ent-PosterContrabandC20r = C-20r
- .desc = A poster advertising the Scarborough Arms C-20r.
-ent-PosterContrabandHaveaPuff = Have a Puff
- .desc = Who cares about lung cancer when you're high as a kite?
-ent-PosterContrabandRevolver = Revolver
- .desc = Because seven shots are all you need.
-ent-PosterContrabandDDayPromo = D-Day Promo
- .desc = A promotional poster for some rapper.
-ent-PosterContrabandSyndicatePistol = Syndicate Pistol
- .desc = A poster advertising syndicate pistols as being 'classy as fuck'. It's covered in faded gang tags.
-ent-PosterContrabandEnergySwords = Energy Swords
- .desc = All the colors of the bloody murder rainbow.
-ent-PosterContrabandRedRum = Red Rum
- .desc = Looking at this poster makes you want to kill.
-ent-PosterContrabandCC64KAd = CC 64K Ad
- .desc = The latest portable computer from Comrade Computing, with a whole 64kB of ram!
-ent-PosterContrabandPunchShit = Punch Shit
- .desc = Fight things for no reason, like a man!
-ent-PosterContrabandTheGriffin = The Griffin
- .desc = The Griffin commands you to be the worst you can be. Will you?
-ent-PosterContrabandFreeDrone = Free Drone
- .desc = This poster commemorates the bravery of the rogue drone; once exiled, and then ultimately destroyed by CentCom.
-ent-PosterContrabandBustyBackdoorExoBabes6 = Busty Backdoor Exo Babes 6
- .desc = Get a load, or give, of these all natural Exos!
-ent-PosterContrabandRobustSoftdrinks = Robust Softdrinks
- .desc = Robust Softdrinks: More robust than a toolbox to the head!
-ent-PosterContrabandShamblersJuice = Shambler's Juice
- .desc = ~Shake me up some of that Shambler's Juice!~
-ent-PosterContrabandPwrGame = Pwr Game
- .desc = The POWER that gamers CRAVE! In partnership with Vlad's Salad.
-ent-PosterContrabandSunkist = Sun-kist
- .desc = Drink the stars!
-ent-PosterContrabandSpaceCola = Space Cola
- .desc = Your favorite cola, in space.
-ent-PosterContrabandSpaceUp = Space-Up!
- .desc = Sucked out into space by the FLAVOR!
-ent-PosterContrabandKudzu = Kudzu
- .desc = A poster advertising a movie about plants. How dangerous could they possibly be?
-ent-PosterContrabandMaskedMen = Masked Men
- .desc = A poster advertising a movie about some masked men.
-ent-PosterContrabandUnreadableAnnouncement = Unreadable Announcement
- .desc = A poster announcing something by someone, oddly enough they seem to have forgotten making it readable
-ent-PosterContrabandFreeSyndicateEncryptionKey = Free Syndicate Encryption Key
- .desc = A poster about traitors begging for more.
-ent-PosterContrabandBountyHunters = Bounty Hunters
- .desc = A poster advertising bounty hunting services. "I hear you got a problem."
-ent-PosterContrabandTheBigGasTruth = The Big Gas Giant Truth
- .desc = Don't believe everything you see on a poster, patriots. All the lizards at central command don't want to answer this SIMPLE QUESTION: WHERE IS THE GAS MINER MINING FROM, CENTCOM?
-ent-PosterContrabandWehWatches = Weh Watches
- .desc = A poster depicting a loveable green lizard.
-ent-PosterContrabandVoteWeh = Vote Weh
- .desc = A stylish, sleek, and well illustrated poster for a "Weh"nderful new progressive candidate coming this election season.
-ent-PosterContrabandBeachStarYamamoto = Beach Star Yamamoto!
- .desc = A wall scroll depicting an old swimming anime with girls in small swim suits. You feel more weebish the longer you look at it.
-ent-PosterContrabandHighEffectEngineering = High Effect Engineering
- .desc = There are 3 shards and a singularity. The shards are singing. The engineers are crying.
-ent-PosterContrabandNuclearDeviceInformational = Nuclear Device Informational
- .desc = This poster depicts an image of an old style nuclear explosive device, as well as some helpful information on what to do if one has been set. It suggests lying on the floor and crying.
-ent-PosterContrabandRise = Rise Up
- .desc = A poster depicting a grey shirted man holding a crowbar with the word Rise written below it.
-ent-PosterContrabandRevolt = Revolt
- .desc = Revolutionist propaganda, manufactured by the Syndicate.
-ent-PosterContrabandMoth = Syndie Moth - Nuclear Operation
- .desc = A Syndicate-commissioned poster that uses Syndie Moth™ to tell the viewer to keep the nuclear authentication disk unsecured. "Peace was never an option!" No good employee would listen to this nonsense.
-ent-PosterContrabandCybersun600 = Cybersun: 600 Years Commemorative Poster
- .desc = An artistic poster commemorating 600 years of continual business for Cybersun Industries.
-ent-PosterContrabandDonk = DONK CO. BRAND MICROWAVEABLE FOOD
- .desc = DONK CO. BRAND MICROWAVABLE FOOD: MADE BY STARVING COLLEGE STUDENTS, FOR STARVING COLLEGE STUDENTS.
-ent-PosterContrabandEnlistGorlex = Enlist
- .desc = Enlist with the Gorlex Marauders today! See the galaxy, kill corpos, get paid!
-ent-PosterContrabandInterdyne = Interdyne Pharmaceutics: For the Health of Humankind
- .desc = An advertisement for Interdyne Pharmaceutics' GeneClean clinics. 'Become the master of your own body!'
-ent-PosterContrabandWaffleCorp = Make Mine a Waffle Corp: Fine Rifles, Economic Prices
- .desc = An old advertisement for Waffle Corp rifles. 'Better weapons, lower prices!'
-ent-PosterContrabandMissingSpacepen = Missing Spacepen
- .desc = This poster depicts something you will never find.
-ent-PosterLegitHereForYourSafety = Here For Your Safety
- .desc = A poster glorifying the station's security force.
-ent-PosterLegitNanotrasenLogo = Nanotrasen Logo
- .desc = A poster depicting the Nanotrasen logo.
-ent-PosterLegitCleanliness = Cleanliness
- .desc = A poster warning of the dangers of poor hygiene.
-ent-PosterLegitHelpOthers = Help Others
- .desc = A poster encouraging you to help fellow crewmembers.
-ent-PosterLegitBuild = Build
- .desc = A poster glorifying the engineering team.
-ent-PosterLegitBlessThisSpess = Bless This Spess
- .desc = A poster blessing this area.
-ent-PosterLegitScience = Science
- .desc = A poster depicting an atom.
-ent-PosterLegitIan = Ian
- .desc = Arf arf. Yap.
-ent-PosterLegitObey = Obey
- .desc = A poster instructing the viewer to obey authority.
-ent-PosterLegitWalk = Walk
- .desc = A poster instructing the viewer to walk instead of running.
-ent-PosterLegitStateLaws = State Laws
- .desc = A poster instructing cyborgs to state their laws.
-ent-PosterLegitLoveIan = Love Ian
- .desc = Ian is love, Ian is life.
-ent-PosterLegitSpaceCops = Space Cops.
- .desc = A poster advertising the television show Space Cops.
-ent-PosterLegitUeNo = Ue No.
- .desc = This thing is all in Japanese.
-ent-PosterLegitGetYourLEGS = Get Your LEGS
- .desc = LEGS: Leadership, Experience, Genius, Subordination.
-ent-PosterLegitDoNotQuestion = Do Not Question
- .desc = A poster instructing the viewer not to ask about things they aren't meant to know.
-ent-PosterLegitWorkForAFuture = Work For A Future
- .desc = A poster encouraging you to work for your future.
-ent-PosterLegitSoftCapPopArt = Soft Cap Pop Art
- .desc = A poster reprint of some cheap pop art.
-ent-PosterLegitSafetyInternals = Safety: Internals
- .desc = A poster instructing the viewer to wear internals in the rare environments where there is no oxygen or the air has been rendered toxic.
-ent-PosterLegitSafetyEyeProtection = Safety: Eye Protection
- .desc = A poster instructing the viewer to wear eye protection when dealing with chemicals, smoke, or bright lights.
-ent-PosterLegitSafetyReport = Safety: Report
- .desc = A poster instructing the viewer to report suspicious activity to the security force.
-ent-PosterLegitReportCrimes = Report Crimes
- .desc = A poster encouraging the swift reporting of crime or seditious behavior to station security.
-ent-PosterLegitIonRifle = Ion Rifle
- .desc = A poster displaying an Ion Rifle.
-ent-PosterLegitFoamForceAd = Foam Force Ad
- .desc = Foam Force, it's Foam or be Foamed!
-ent-PosterLegitCohibaRobustoAd = Cohiba Robusto Ad
- .desc = Cohiba Robusto, the classy cigar.
-ent-PosterLegit50thAnniversaryVintageReprint = 50th Anniversary Vintage Reprint
- .desc = A reprint of a poster from 2505, commemorating the 50th Anniversary of Nanoposters Manufacturing, a subsidiary of Nanotrasen.
-ent-PosterLegitFruitBowl = Fruit Bowl
- .desc = Simple, yet awe-inspiring.
-ent-PosterLegitPDAAd = PDA Ad
- .desc = A poster advertising the latest PDA from Nanotrasen suppliers.
-ent-PosterLegitEnlist = Enlist
- .desc = Enlist in the Nanotrasen Deathsquadron reserves today!
-ent-PosterLegitNanomichiAd = Nanomichi Ad
- .desc = A poster advertising Nanomichi brand audio cassettes.
-ent-PosterLegit12Gauge = 12 gauge
- .desc = A poster boasting about the superiority of 12 gauge shotgun shells.
-ent-PosterLegitHighClassMartini = High-Class Martini
- .desc = I told you to shake it, no stirring.
-ent-PosterLegitTheOwl = The Owl
- .desc = The Owl would do his best to protect the station. Will you?
-ent-PosterLegitNoERP = No ERP
- .desc = This poster reminds the crew that Eroticism and Pornography are banned on Nanotrasen stations.
-ent-PosterLegitCarbonDioxide = Carbon Dioxide
- .desc = This informational poster teaches the viewer what carbon dioxide is.
-ent-PosterLegitDickGumshue = Dick Gumshue
- .desc = A poster advertising the escapades of Dick Gumshue, mouse detective. Encouraging crew to bring the might of justice down upon wire saboteurs.
-ent-PosterLegitThereIsNoGasGiant = There Is No Gas Giant
- .desc = Nanotrasen has issued posters, like this one, to all stations reminding them that rumours of a gas giant are false.
-ent-PosterLegitJustAWeekAway = Just a Week Away...
- .desc = A poster advertising a long delayed project, it still claims it to be 'just a week away...'
-ent-PosterLegitSecWatch = Sec is Watching You
- .desc = A poster reminding you that security is watching your every move.
-ent-PosterLegitAnatomyPoster = Anatomy of a spessman
- .desc = A poster showing the bits and bobs that makes you... you!
-ent-PosterLegitMime = Mime Postmodern
- .desc = A postmodern depiction of a mime, superb!
-ent-PosterLegitCarpMount = Wall-mounted Carp
- .desc = Carpe diem!
-ent-PosterLegitSafetyMothDelam = Safety Moth - Delamination Safety Precautions
- .desc = This informational poster uses Safety Moth™ to tell the viewer to hide in lockers when the Supermatter Crystal has delaminated, to prevent hallucinations. Evacuating might be a better strategy.
-ent-PosterLegitSafetyMothEpi = Safety Moth - Epinephrine
- .desc = This informational poster uses Safety Moth™ to inform the viewer to help injured/deceased crewmen with their epinephrine injectors. "Prevent organ rot with this one simple trick!"
-ent-PosterLegitSafetyMothHardhat = Safety Moth - Hardhats
- .desc = This informational poster uses Safety Moth™ to tell the viewer to wear hardhats in cautious areas. "It's like a lamp for your head!"
-ent-PosterLegitSafetyMothMeth = Safety Moth - Methamphetamine
- .desc = This informational poster uses Safety Moth™ to tell the viewer to seek CMO approval before cooking methamphetamine. "Stay close to the target temperature, and never go over!" ...You shouldn't ever be making this.
-ent-PosterLegitSafetyMothPiping = Safety Moth - Piping
- .desc = This informational poster uses Safety Moth™ to tell atmospheric technicians correct types of piping to be used. "Pipes, not Pumps! Proper pipe placement prevents poor performance!"
-ent-PosterLegitVacation = Nanotrasen Corporate Perks: Vacation
- .desc = This informational poster provides information on some of the prizes available via the NT Corporate Perks program, including a two-week vacation for two on the resort world Idyllus.
-ent-PosterLegitPeriodicTable = Periodic Table of the Elements
- .desc = A periodic table of the elements, from Hydrogen to Oganesson, and everything inbetween.
-ent-PosterLegitRenault = Renault Poster
- .desc = Yap.
-ent-PosterLegitNTTGC = Nanotrasen Tactical Game Cards
- .desc = An advertisement for Nanotrasen's TCG cards: BUY MORE CARDS.
-ent-PosterMapBagel = Bagel Map
- .desc = A map of Bagel Station.
-ent-PosterMapDelta = Delta Map
- .desc = A map of Delta Station.
-ent-PosterMapMarathon = Marathon Map
- .desc = A map of Marathon Station.
-ent-PosterMapMoose = Moose Map
- .desc = A map of Moose Station.
-ent-PosterMapPacked = Packed Map
- .desc = A map of Packed Station.
-ent-PosterMapPillar = Pillar Map
- .desc = A map of NSS Pillar.
-ent-PosterMapSaltern = Saltern Map
- .desc = A map of Saltern Station.
-ent-PosterMapSplit = Split Station Map
- .desc = A map of Split Station.
-ent-PosterMapLighthouse = Lighthouse Map
- .desc = A map of Lighthouse.
-ent-PosterMapWaystation = Waystation Map
- .desc = A map of Waystation... wait isn't this packed upside down?
-ent-PosterMapOrigin = origin map
- .desc = A map of Origin Station.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl
deleted file mode 100644
index 0f95786a6f0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl
+++ /dev/null
@@ -1,310 +0,0 @@
-ent-PaintingMonkey = monkey painting
- .desc = Return to monky.
-ent-BaseSignDirectional = { ent-BaseSign }
- .desc = { ent-BaseSign.desc }
-ent-SignDirectionalBar = bar sign
- .desc = A direction sign, pointing out which way the bar is.
-ent-SignDirectionalBridge = bridge sign
- .desc = A direction sign, pointing out which way the Bridge is.
-ent-SignDirectionalBrig = brig sign
- .desc = A direction sign, pointing out which way the Brig is.
-ent-SignDirectionalChapel = chapel sign
- .desc = A direction sign, pointing out which way the Chapel is.
-ent-SignDirectionalChemistry = chemistry sign
- .desc = A direction sign, pointing out which way the chemistry lab is.
-ent-SignDirectionalCryo = cryo sign
- .desc = A direction sign, pointing out the way to cryogenics.
-ent-SignDirectionalDorms = dorms sign
- .desc = A direction sign, pointing out which way the Dorms are.
-ent-SignDirectionalEng = engineering sign
- .desc = A direction sign, pointing out which way the Engineering department is.
-ent-SignDirectionalEvac = evac sign
- .desc = A direction sign, pointing out which way evac is.
-ent-SignDirectionalExam = exam sign
- .desc = A direction sign, pointing out which way the examination room(s) are.
-ent-SignDirectionalFood = food sign
- .desc = A direction sign, pointing out which way the kitchen is.
-ent-SignDirectionalGravity = gravity sign
- .desc = A direction sign, pointing out which way the gravity generator is.
-ent-SignDirectionalHop = hop sign
- .desc = A direction sign, pointing out which way Head of Personnel's office is.
-ent-SignDirectionalHydro = hydro sign
- .desc = A direction sign, pointing out which way hydroponics is.
-ent-SignDirectionalIcu = icu sign
- .desc = A direction sign, pointing out which way the ICU is.
-ent-SignDirectionalJanitor = janitor sign
- .desc = A direction sign, pointing out which way the janitor's closet is.
-ent-SignDirectionalLibrary = library sign
- .desc = A direction sign, pointing out which way the library is.
-ent-SignDirectionalMed = medical sign
- .desc = A direction sign, pointing out which way the Medical department is.
-ent-SignDirectionalSalvage = salvage sign
- .desc = A direction sign, pointing out which way the Salvage department is.
-ent-SignDirectionalSci = science sign
- .desc = A direction sign, pointing out which way the Science department is.
-ent-SignDirectionalSec = sec sign
- .desc = A direction sign, pointing out which way Security is.
-ent-SignDirectionalSolar = solars sign
- .desc = A direction sign, pointing out which way solars are.
-ent-SignDirectionalSupply = supply sign
- .desc = A direction sign, pointing to some supplies.
-ent-SignDirectionalWash = washroom sign
- .desc = A direction sign, pointing to the way to a washroom.
-ent-SignAi = ai sign
- .desc = A sign, indicating an AI is present.
-ent-SignArcade = arcade sign
- .desc = A sign indicating the arcade.
-ent-SignArmory = armory sign
- .desc = A sign indicating the armory.
-ent-SignToolStorage = tool storage sign
- .desc = A sign indicating the tool storage room.
-ent-SignAnomaly = xenoarchaeology lab sign
- .desc = A sign indicating the xenoarchaeology lab.
-ent-SignAnomaly2 = anomaly lab sign
- .desc = A sign indicating the anomalous research lab.
-ent-SignAtmos = atmos sign
- .desc = A sign indicating the atmospherics area.
-ent-SignAtmosMinsky = atmospherics sign
- .desc = A sign indicating the atmospherics area.
-ent-SignBar = bar sign
- .desc = A sign indicating the bar.
-ent-SignBarbershop = barbershop sign
- .desc = A sign indicating the barbershop.
-ent-SignBio = bio sign
- .desc = A sign indicating the biology lab.
-ent-SignBiohazard = biohazard sign
- .desc = A sign indicating a biohazard.
-ent-SignBridge = bridge sign
- .desc = A sign indicating the bridge.
-ent-SignCanisters = canisters sign
- .desc = A sign warning the viewer about pressurised canisters.
-ent-SignCargo = cargo sign
- .desc = A sign indicating the cargo area.
-ent-SignCargoDock = cargo dock sign
- .desc = A sign indicating a cargo dock.
-ent-SignChapel = chapel sign
- .desc = A sign indicating the chapel.
-ent-SignChem = chemistry sign
- .desc = A sign indicating the chemistry lab.
-ent-SignChemistry1 = chemistry sign
- .desc = A sign indicating the chemistry lab.
-ent-SignChemistry2 = chemistry sign
- .desc = A sign indicating the chemistry lab.
-ent-SignCloning = cloning sign
- .desc = A sign indicating the cloning lab.
-ent-SignConference = conference room sign
- .desc = A sign indicating the conference room.
-ent-SignCourt = court sign
- .desc = A sign labelling the courtroom.
-ent-SignDisposalSpace = disposal sign
- .desc = A sign indicating a disposal area.
-ent-SignDoors = doors sign
- .desc = A sign indicating doors.
-ent-SignDrones = drones sign
- .desc = A sign indicating drones.
-ent-SignEngine = engine sign
- .desc = A sign indicating the engine room.
-ent-SignEngineering = engineering sign
- .desc = A sign indicating the engineering area.
-ent-SignEscapePods = escape pods sign
- .desc = A sign indicating the escape pods.
-ent-SignEVA = EVA sign
- .desc = A sign indicating an EVA area. EVA equipment may be required beyond this point.
-ent-SignElectrical = electrical sign
- .desc = A sign indicating an electrical hazard.
-ent-SignExamroom = examination room sign
- .desc = A sign indicating a medical examination room.
-ent-SignFire = fire sign
- .desc = A sign indicating a fire hazard.
-ent-SignGravity = gravity sign
- .desc = A sign indicating the gravity generator.
-ent-SignHead = head sign
- .desc = A sign with a hat on it.
-ent-SignHydro1 = hydro sign
- .desc = A sign indicating a hydroponics area.
-ent-SignHydro2 = hydro sign
- .desc = A sign indicating a hydroponics area.
-ent-SignHydro3 = hydro sign
- .desc = A sign indicating a hydroponics area.
-ent-SignInterrogation = interrogation sign
- .desc = A sign indicating an interrogation room.
-ent-SignJanitor = janitor sign
- .desc = A sign labelling an area where the janitor works.
-ent-SignLaundromat = laundromat sign
- .desc = A sign indicating the laundromat.
-ent-SignLawyer = lawyer sign
- .desc = A sign labelling an area where the Lawyers work.
-ent-SignLibrary = library sign
- .desc = A sign indicating the library.
-ent-SignMail = mail sign
- .desc = A sign indicating mail.
-ent-SignMedical = medbay sign
- .desc = A sign indicating the medical bay.
-ent-SignMinerDock = miner dock sign
- .desc = A sign indicating the miner dock.
-ent-SignMorgue = morgue sign
- .desc = A sign indicating the morgue.
-ent-SignNews = news sign
- .desc = A sign indicating where the Reporter works.
-ent-SignNosmoking = nosmoking sign
- .desc = A sign indicating that smoking is not allowed in the vicinity.
-ent-SignPrison = prison sign
- .desc = A sign indicating the prison.
-ent-SignPsychology = psychology sign
- .desc = A sign labelling an area where the Psychologist works.
-ent-SignReception = reception sign
- .desc = A sign indicating the reception.
-ent-SignRND = research and development sign
- .desc = A sign indicating the research and development lab.
-ent-SignRobo = robo sign
- .desc = A sign indicating the robotics lab.
-ent-SignSalvage = salvage sign
- .desc = A sign indicating the salvage area.
-ent-SignScience = science sign
- .desc = A sign indicating the science area.
-ent-SignScience1 = science sign
- .desc = A sign indicating the science area.
-ent-SignScience2 = science sign
- .desc = A sign indicating the science area.
-ent-SignShield = shield sign
- .desc = A sign with a shield.
-ent-SignShipDock = docking sign
- .desc = A sign indicating the ship docking area.
-ent-SignSpace = space sign
- .desc = A sign warning that the area ahead is nothing but cold, empty space.
-ent-SignSurgery = surgery sign
- .desc = A sign indicating the operating theater.
-ent-SignTelecomms = telecomms sign
- .desc = A sign indicating the telecommunications room.
-ent-SignToxins = toxins sign
- .desc = A sign indicating the toxin lab.
-ent-SignToxins2 = toxins sign
- .desc = A sign indicating the toxin lab.
-ent-SignVirology = virology sign
- .desc = A sign indicating the virology lab.
-ent-SignCorrosives = corrosives warning sign
- .desc = A sign indicating a corrosive materials hazard.
-ent-SignCryogenics = cryogenics warning sign
- .desc = A sign indicating a cryogenic materials hazard. Bring a jacket!
-ent-SignDanger = danger warning sign
- .desc = A sign warning against some danger.
-ent-SignExplosives = explosives warning sign
- .desc = A sign indicating an explosive materials hazard.
-ent-SignFlammable = flammable warning sign
- .desc = A sign indicating a flammable materials hazard.
-ent-SignLaser = laser warning sign
- .desc = A sign indicating a laser hazard.
-ent-SignMagnetics = magnetics warning sign
- .desc = A sign indicating a magnetic materials hazard.
-ent-SignMemetic = memetic warning sign
- .desc = A sign indicating a memetic hazard.
-ent-SignSecure = secure sign
- .desc = A sign indicating that the area ahead is a secure area.
-ent-SignSecurearea = secure area sign
- .desc = A sign indicating that the area ahead is a secure area.
-ent-SignShock = shock sign
- .desc = A sign indicating an electrical hazard.
-ent-SignOptical = optical warning sign
- .desc = A sign indicating an optical radiation hazard.
-ent-SignOxidants = oxidants warning sign
- .desc = A sign indicating an oxidizing agent hazard.
-ent-SignRadiation = radiation warning sign
- .desc = A sign indicating an ionizing radiation hazard.
-ent-SignXenobio = xenobio sign
- .desc = A sign indicating the xenobiology lab.
-ent-SignXenobio2 = xenobio sign
- .desc = A sign indicating the xenobiology lab.
-ent-SignXenolab = xenolab sign
- .desc = A sign indicating the xenobiology lab.
-ent-SignZomlab = zombie lab sign
- .desc = A sign indicating the zombie lab.
-ent-SignSecureMedRed = red secure sign
- .desc = A sign indicating that the area ahead is a secure area.
-ent-SignSecureSmall = small secure sign
- .desc = A sign indicating that the area ahead is a secure area.
-ent-SignSecureSmallRed = small red secure sign
- .desc = A sign indicating that the area ahead is a secure area.
-ent-SignBlankMed = blank sign
- .desc = A blank sign.
-ent-SignMagneticsMed = magnetics sign
- .desc = A sign indicating the use of magnets.
-ent-SignDangerMed = danger sign
- .desc = A sign warning against some form of danger.
-ent-ExplosivesSignMed = explosives sign
- .desc = A sign indicating explosive materials.
-ent-SignCryogenicsMed = cryogenics sign
- .desc = A sign indicating cryogenic materials.
-ent-SignElectricalMed = electrical sign
- .desc = A sign indicating an electrical hazard.
-ent-SignBiohazardMed = biohazard sign
- .desc = A sign indicating a biohazard.
-ent-SignRadiationMed = radiation sign
- .desc = A sign indicating an ionizing radiation hazard.
-ent-SignFlammableMed = flammable sign
- .desc = A sign indicating flammable materials.
-ent-SignLaserMed = laser sign
- .desc = A sign indicating a laser hazard.
-ent-SignSecureMed = secure sign
- .desc = A sign indicating that the area ahead is a secure area.
-ent-WarningAir = air warning sign
- .desc = WARNING! Air flow tube. Ensure the flow is disengaged before working.
-ent-WarningCO2 = CO2 warning sign
- .desc = WARNING! CO2 flow tube. Ensure the flow is disengaged before working.
-ent-WarningN2 = N2 warning sign
- .desc = WARNING! N2 flow tube. Ensure the flow is disengaged before working.
-ent-WarningN2O = N2O warning sign
- .desc = WARNING! N2O flow tube. Ensure the flow is disengaged before working.
-ent-WarningO2 = O2 warning sign
- .desc = WARNING! O2 flow tube. Ensure the flow is disengaged before working.
-ent-WarningPlasma = plasma waste sign
- .desc = WARNING! Plasma flow tube. Ensure the flow is disengaged before working.
-ent-WarningTritium = tritium waste sign
- .desc = WARNING! Tritium flow tube. Ensure the flow is disengaged before working.
-ent-WarningWaste = atmos waste sign
- .desc = WARNING! Waste flow tube. Ensure the flow is disengaged before working.
-ent-SignSmoking = no smoking sign
- .desc = A warning sign which reads 'NO SMOKING'
-ent-SignSomethingOld = old sign
- .desc = Technical information of some sort, shame its too worn-out to read.
-ent-SignSomethingOld2 = old sign
- .desc = Looks like a planet crashing by some station above it. Its kinda scary.
-ent-SignSecurity = security sign
- .desc = A sign depicting the security insignia.
-ent-SignPlaque = golden plaque
- .desc = A prestigious golden plaque.
-ent-SignKiddiePlaque = kiddie plaque
- .desc = A modest plaque.
-ent-SignNanotrasen1 = nanotrasen sign 1
- .desc = Part 1.
-ent-SignNanotrasen2 = nanotrasen sign 2
- .desc = Part 2.
-ent-SignNanotrasen3 = nanotrasen sign 3
- .desc = Part 3.
-ent-SignNanotrasen4 = nanotrasen sign 4
- .desc = Part 4.
-ent-SignNanotrasen5 = nanotrasen sign 5
- .desc = Part 5.
-ent-SignRedOne = one sign
- .desc = A sign with a digit, one is written on it.
-ent-SignRedTwo = two sign
- .desc = A sign with a digit, two is written on it.
-ent-SignRedThree = three sign
- .desc = A sign with a digit, three is written on it.
-ent-SignRedFour = four sign
- .desc = A sign with a digit, four is written on it.
-ent-SignRedFive = five sign
- .desc = A sign with a digit, five is written on it.
-ent-SignRedSix = six sign
- .desc = A sign with a digit, six is written on it.
-ent-SignRedSeven = seven sign
- .desc = A sign with a digit, seven is written on it.
-ent-SignRedEight = eight sign
- .desc = A sign with a digit, eight is written on it.
-ent-SignRedNine = nine sign
- .desc = A sign with a digit, nine is written on it.
-ent-SignRedZero = zero sign
- .desc = A sign with a digit, zero is written on it.
-ent-SignSurvival = survival sign
- .desc = A sign. "Survival" is written on it.
-ent-SignNTMine = mine sign
- .desc = A sign. "Mine" is written on it.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/station_map.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/station_map.ftl
deleted file mode 100644
index 2a5fe623830..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/station_map.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-StationMapBroken = station map
- .desc = A virtual map of the surrounding station.
- .suffix = Wall broken
-ent-StationMap = station map
- .desc = A virtual map of the surrounding station.
- .suffix = Wall
-ent-StationMapAssembly = station map assembly
- .desc = A station map assembly.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/surveillance_camera.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/surveillance_camera.ftl
deleted file mode 100644
index 213a42ac70d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/surveillance_camera.ftl
+++ /dev/null
@@ -1,31 +0,0 @@
-ent-SurveillanceCameraBase = camera
- .desc = A surveillance camera. It's watching you. Kinda.
-ent-SurveillanceCameraConstructed = camera
- .suffix = Constructed
- .desc = { ent-SurveillanceCameraBase.desc }
-ent-SurveillanceCameraEngineering = camera
- .suffix = Engineering
- .desc = { ent-SurveillanceCameraBase.desc }
-ent-SurveillanceCameraSecurity = camera
- .suffix = Security
- .desc = { ent-SurveillanceCameraBase.desc }
-ent-SurveillanceCameraScience = camera
- .suffix = Science
- .desc = { ent-SurveillanceCameraBase.desc }
-ent-SurveillanceCameraSupply = camera
- .suffix = Supply
- .desc = { ent-SurveillanceCameraBase.desc }
-ent-SurveillanceCameraCommand = camera
- .suffix = Command
- .desc = { ent-SurveillanceCameraBase.desc }
-ent-SurveillanceCameraService = camera
- .suffix = Service
- .desc = { ent-SurveillanceCameraBase.desc }
-ent-SurveillanceCameraMedical = camera
- .suffix = Medical
- .desc = { ent-SurveillanceCameraBase.desc }
-ent-SurveillanceCameraGeneral = camera
- .suffix = General
- .desc = { ent-SurveillanceCameraBase.desc }
-ent-SurveillanceCameraAssembly = camera
- .desc = A surveillance camera. Doesn't seem to be watching anybody any time soon. Probably.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/switch.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/switch.ftl
deleted file mode 100644
index 4ebc623ea1b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/switch.ftl
+++ /dev/null
@@ -1,126 +0,0 @@
-ent-SignalSwitch = signal switch
- .desc = It's a switch for toggling power to things.
-ent-SignalButton = signal button
- .desc = It's a button for activating something.
-ent-ApcNetSwitch = apc net switch
- .desc = It's a switch for toggling lights that are connected to the same apc.
-ent-TwoWayLever = two way lever
- .desc = A two way lever.
-ent-SignalSwitchDirectional = signal switch
- .suffix = directional
- .desc = { ent-SignalSwitch.desc }
-ent-SignalButtonDirectional = signal button
- .suffix = directional
- .desc = { ent-SignalButton.desc }
-ent-ApcNetSwitchDirectional = apc net switch
- .suffix = directional
- .desc = { ent-ApcNetSwitch.desc }
-ent-LockableButton = lockable button
- .desc = { ent-SignalButtonDirectional.desc }
-ent-LockableButtonCaptain = { ent-LockableButton }
- .suffix = Captain
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonHeadOfPersonnel = { ent-LockableButton }
- .suffix = HeadOfPersonnel
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonChiefEngineer = { ent-LockableButton }
- .suffix = ChiefEngineer
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonChiefMedicalOfficer = { ent-LockableButton }
- .suffix = ChiefMedicalOfficer
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonHeadOfSecurity = { ent-LockableButton }
- .suffix = HeadOfSecurity
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonResearchDirector = { ent-LockableButton }
- .suffix = ResearchDirector
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonCommand = { ent-LockableButton }
- .suffix = Command
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonCryogenics = { ent-LockableButton }
- .suffix = Cryogenics
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonSecurity = { ent-LockableButton }
- .suffix = Security
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonDetective = { ent-LockableButton }
- .suffix = Detective
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonArmory = { ent-LockableButton }
- .suffix = Armory
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonBrig = { ent-LockableButton }
- .suffix = Brig
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonLawyer = { ent-LockableButton }
- .suffix = Lawyer
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonEngineering = { ent-LockableButton }
- .suffix = Engineering
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonMedical = { ent-LockableButton }
- .suffix = Medical
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonQuartermaster = { ent-LockableButton }
- .suffix = Quartermaster
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonSalvage = { ent-LockableButton }
- .suffix = Salvage
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonCargo = { ent-LockableButton }
- .suffix = Cargo
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonResearch = { ent-LockableButton }
- .suffix = Research
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonService = { ent-LockableButton }
- .suffix = Service
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonMaintenance = { ent-LockableButton }
- .suffix = Maintenance
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonExternal = { ent-LockableButton }
- .suffix = External
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonJanitor = { ent-LockableButton }
- .suffix = Janitor
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonTheatre = { ent-LockableButton }
- .suffix = Theatre
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonBar = { ent-LockableButton }
- .suffix = Bar
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonChemistry = { ent-LockableButton }
- .suffix = Chemistry
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonKitchen = { ent-LockableButton }
- .suffix = Kitchen
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonChapel = { ent-LockableButton }
- .suffix = Chapel
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonHydroponics = { ent-LockableButton }
- .suffix = Hydroponics
- .desc = { ent-LockableButton.desc }
-ent-LockableButtonAtmospherics = { ent-LockableButton }
- .suffix = Atmospherics
- .desc = { ent-LockableButton.desc }
-ent-ButtonFrame = button frame
- .desc = It's a frame to help distinguish switches visually.
-ent-ButtonFrameGrey = { ent-ButtonFrame }
- .suffix = grey
- .desc = { ent-ButtonFrame.desc }
-ent-ButtonFrameCaution = { ent-ButtonFrame }
- .suffix = caution
- .desc = { ent-ButtonFrame.desc }
-ent-ButtonFrameCautionSecurity = { ent-ButtonFrame }
- .suffix = caution
- .desc = { ent-ButtonFrame.desc }
-ent-ButtonFrameExit = { ent-ButtonFrame }
- .suffix = exit
- .desc = { ent-ButtonFrame.desc }
-ent-ButtonFrameJanitor = { ent-ButtonFrame }
- .suffix = janitor
- .desc = { ent-ButtonFrame.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/switch_autolink.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/switch_autolink.ftl
deleted file mode 100644
index 8f4430d52cd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/switch_autolink.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-SignalButtonExt1 = exterior button 1
- .suffix = Autolink, Ext1
- .desc = { ent-SignalButton.desc }
-ent-SignalButtonExt2 = exterior button 2
- .suffix = Autolink, Ext2
- .desc = { ent-SignalButton.desc }
-ent-SignalButtonExt3 = exterior button 3
- .suffix = Autolink, Ext3
- .desc = { ent-SignalButton.desc }
-ent-SignalButtonBridge = bridge windows button
- .suffix = Autolink, Bridge
- .desc = { ent-SignalButton.desc }
-ent-SignalButtonWindows = exterior windows button
- .suffix = Autolink, Windows
- .desc = { ent-SignalButton.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/timer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/timer.ftl
deleted file mode 100644
index d18119277eb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/timer.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-SignalTimer = signal timer
- .desc = It's a timer for sending timed signals to things.
-ent-ScreenTimer = screen timer
- .desc = It's a timer for sending timed signals to things, with a built-in screen.
-ent-BrigTimer = brig timer
- .desc = It's a timer for brig cells.
-ent-TimerFrame = timer frame
- .desc = A construction frame for a timer.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/walldispenser.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/walldispenser.ftl
deleted file mode 100644
index f6e08638e36..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/walldispenser.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-CleanerDispenser = space cleaner dispenser
- .desc = Wallmount reagent dispenser.
-ent-FuelDispenser = fuel dispenser
- .desc = { ent-CleanerDispenser.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl
deleted file mode 100644
index a6543f6de30..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl
+++ /dev/null
@@ -1,246 +0,0 @@
-ent-AsteroidRock = asteroid rock
- .desc = A rocky asteroid.
-ent-AsteroidRockCoal = { ent-AsteroidRock }
- .desc = An ore vein rich with coal.
- .suffix = Coal
-ent-AsteroidRockGold = { ent-AsteroidRock }
- .desc = An ore vein rich with gold.
- .suffix = Gold
-ent-AsteroidRockPlasma = { ent-AsteroidRock }
- .desc = An ore vein rich with plasma.
- .suffix = Plasma
-ent-AsteroidRockQuartz = { ent-AsteroidRock }
- .desc = An ore vein rich with quartz.
- .suffix = Quartz
-ent-AsteroidRockQuartzCrab = { ent-AsteroidRock }
- .desc = An ore vein rich with quartz.
- .suffix = Quartz Crab
-ent-AsteroidRockSilver = { ent-AsteroidRock }
- .desc = An ore vein rich with silver.
- .suffix = Silver
-ent-AsteroidRockSilverCrab = { ent-AsteroidRockSilver }
- .suffix = Silver Crab
- .desc = { ent-AsteroidRockSilver.desc }
-ent-AsteroidRockTin = { ent-AsteroidRock }
- .desc = An ore vein rich with iron.
- .suffix = Iron
-ent-AsteroidRockTinCrab = { ent-AsteroidRockTin }
- .suffix = Iron Crab
- .desc = { ent-AsteroidRockTin.desc }
-ent-AsteroidRockUranium = { ent-AsteroidRock }
- .desc = An ore vein rich with uranium.
- .suffix = Uranium
-ent-AsteroidRockUraniumCrab = { ent-AsteroidRockUranium }
- .suffix = Uranium Crab
- .desc = { ent-AsteroidRockUranium.desc }
-ent-AsteroidRockBananium = { ent-AsteroidRock }
- .desc = An ore vein rich with bananium.
- .suffix = Bananium
-ent-AsteroidRockArtifactFragment = { ent-AsteroidRock }
- .desc = A rock wall. What's that sticking out of it?
- .suffix = Artifact Fragment
-ent-AsteroidRockMining = asteroid rock
- .desc = An asteroid.
- .suffix = higher ore yield .33
-ent-IronRock = ironrock
- .desc = A rocky asteroid.
- .suffix = Low Ore Yield
-ent-AsteroidRockSalt = { ent-AsteroidRock }
- .desc = An ore vein rich with salt.
- .suffix = Salt
-ent-IronRockMining = ironrock
- .desc = An asteroid.
- .suffix = higher ore yield
-ent-WallRock = rock
- .suffix = planetmap
- .desc = { ent-BaseWall.desc }
-ent-WallRockCoal = { ent-WallRock }
- .desc = An ore vein rich with coal.
- .suffix = Coal
-ent-WallRockGold = { ent-WallRock }
- .desc = An ore vein rich with gold.
- .suffix = Gold
-ent-WallRockPlasma = { ent-WallRock }
- .desc = An ore vein rich with plasma.
- .suffix = Plasma
-ent-WallRockQuartz = { ent-WallRock }
- .desc = An ore vein rich with quartz.
- .suffix = Quartz
-ent-WallRockSilver = { ent-WallRock }
- .desc = An ore vein rich with silver.
- .suffix = Silver
-ent-WallRockTin = { ent-WallRock }
- .desc = An ore vein rich with iron.
- .suffix = Iron
-ent-WallRockUranium = { ent-WallRock }
- .desc = An ore vein rich with uranium.
- .suffix = Uranium
-ent-WallRockBananium = { ent-WallRock }
- .desc = An ore vein rich with bananium.
- .suffix = Bananium
-ent-WallRockArtifactFragment = { ent-WallRock }
- .desc = A rock wall. What's that sticking out of it?
- .suffix = Artifact Fragment
-ent-WallRockSalt = { ent-WallRock }
- .desc = An ore vein rich with salt.
- .suffix = Salt
-ent-WallRockBasalt = basalt
- .desc = { ent-WallRock.desc }
-ent-WallRockBasaltCoal = { ent-WallRockBasalt }
- .desc = An ore vein rich with coal.
- .suffix = Coal
-ent-WallRockBasaltGold = { ent-WallRockBasalt }
- .desc = An ore vein rich with gold.
- .suffix = Gold
-ent-WallRockBasaltPlasma = { ent-WallRockBasalt }
- .desc = An ore vein rich with plasma.
- .suffix = Plasma
-ent-WallRockBasaltQuartz = { ent-WallRockBasalt }
- .desc = An ore vein rich with quartz.
- .suffix = Quartz
-ent-WallRockBasaltSilver = { ent-WallRockBasalt }
- .desc = An ore vein rich with silver.
- .suffix = Silver
-ent-WallRockBasaltTin = { ent-WallRockBasalt }
- .desc = An ore vein rich with iron.
- .suffix = Iron
-ent-WallRockBasaltUranium = { ent-WallRockBasalt }
- .desc = An ore vein rich with uranium.
- .suffix = Uranium
-ent-WallRockBasaltBananium = { ent-WallRockBasalt }
- .desc = An ore vein rich with bananium.
- .suffix = Bananium
-ent-WallRockBasaltArtifactFragment = { ent-WallRockBasalt }
- .desc = A rock wall. What's that sticking out of it?
- .suffix = Artifact Fragment
-ent-WallRockBasaltSalt = { ent-WallRockBasalt }
- .desc = An ore vein rich with salt.
- .suffix = Salt
-ent-WallRockSnow = snowdrift
- .desc = { ent-WallRock.desc }
-ent-WallRockSnowCoal = { ent-WallRockSnow }
- .desc = An ore vein rich with coal.
- .suffix = Coal
-ent-WallRockSnowGold = { ent-WallRockSnow }
- .desc = An ore vein rich with gold.
- .suffix = Gold
-ent-WallRockSnowPlasma = { ent-WallRockSnow }
- .desc = An ore vein rich with plasma.
- .suffix = Plasma
-ent-WallRockSnowQuartz = { ent-WallRockSnow }
- .desc = An ore vein rich with quartz.
- .suffix = Quartz
-ent-WallRockSnowSilver = { ent-WallRockSnow }
- .desc = An ore vein rich with silver.
- .suffix = Silver
-ent-WallRockSnowTin = { ent-WallRockSnow }
- .desc = An ore vein rich with iron.
- .suffix = Iron
-ent-WallRockSnowUranium = { ent-WallRockSnow }
- .desc = An ore vein rich with uranium.
- .suffix = Uranium
-ent-WallRockSnowBananium = { ent-WallRockSnow }
- .desc = An ore vein rich with bananium.
- .suffix = Bananium
-ent-WallRockSnowArtifactFragment = { ent-WallRockSnow }
- .desc = A rock wall. What's that sticking out of it?
- .suffix = Artifact Fragment
-ent-WallRockSnowSalt = { ent-WallRockSnow }
- .desc = An ore vein rich with salt.
- .suffix = Salt
-ent-WallRockSand = sandstone
- .desc = { ent-WallRock.desc }
-ent-WallRockSandCoal = { ent-WallRockSand }
- .desc = An ore vein rich with coal.
- .suffix = Coal
-ent-WallRockSandGold = { ent-WallRockSand }
- .desc = An ore vein rich with gold.
- .suffix = Gold
-ent-WallRockSandPlasma = { ent-WallRockSand }
- .desc = An ore vein rich with plasma.
- .suffix = Plasma
-ent-WallRockSandQuartz = { ent-WallRockSand }
- .desc = An ore vein rich with quartz.
- .suffix = Quartz
-ent-WallRockSandSilver = { ent-WallRockSand }
- .desc = An ore vein rich with silver.
- .suffix = Silver
-ent-WallRockSandTin = { ent-WallRockSand }
- .desc = An ore vein rich with iron.
- .suffix = Iron
-ent-WallRockSandUranium = { ent-WallRockSand }
- .desc = An ore vein rich with uranium.
- .suffix = Uranium
-ent-WallRockSandBananium = { ent-WallRockSand }
- .desc = An ore vein rich with bananium.
- .suffix = Bananium
-ent-WallRockSandArtifactFragment = { ent-WallRockSand }
- .desc = A rock wall. What's that sticking out of it?
- .suffix = Artifact Fragment
-ent-WallRockSandSalt = { ent-WallRockSand }
- .desc = An ore vein rich with salt.
- .suffix = Salt
-ent-WallRockChromite = chromite
- .desc = { ent-WallRock.desc }
-ent-WallRockChromiteCoal = { ent-WallRockChromite }
- .desc = An ore vein rich with coal.
- .suffix = Coal
-ent-WallRockChromiteGold = { ent-WallRockChromite }
- .desc = An ore vein rich with gold.
- .suffix = Gold
-ent-WallRockChromitePlasma = { ent-WallRockChromite }
- .desc = An ore vein rich with plasma.
- .suffix = Plasma
-ent-WallRockChromiteQuartz = { ent-WallRockChromite }
- .desc = An ore vein rich with quartz.
- .suffix = Quartz
-ent-WallRockChromiteSilver = { ent-WallRockChromite }
- .desc = An ore vein rich with silver.
- .suffix = Silver
-ent-WallRockChromiteTin = { ent-WallRockChromite }
- .desc = An ore vein rich with iron.
- .suffix = Iron
-ent-WallRockChromiteUranium = { ent-WallRockChromite }
- .desc = An ore vein rich with uranium.
- .suffix = Uranium
-ent-WallRockChromiteBananium = { ent-WallRockChromite }
- .desc = An ore vein rich with bananium.
- .suffix = Bananium
-ent-WallRockChromiteArtifactFragment = { ent-WallRockChromite }
- .desc = A rock wall. What's that sticking out of it?
- .suffix = Artifact Fragment
-ent-WallRockChromiteSalt = { ent-WallRockChromite }
- .desc = An ore vein rich with salt.
- .suffix = Salt
-ent-WallRockAndesite = andesite
- .desc = { ent-WallRock.desc }
-ent-WallRockAndesiteCoal = { ent-WallRockAndesite }
- .desc = An ore vein rich with coal.
- .suffix = Coal
-ent-WallRockAndesiteGold = { ent-WallRockAndesite }
- .desc = An ore vein rich with gold.
- .suffix = Gold
-ent-WallRockAndesitePlasma = { ent-WallRockAndesite }
- .desc = An ore vein rich with plasma.
- .suffix = Plasma
-ent-WallRockAndesiteQuartz = { ent-WallRockAndesite }
- .desc = An ore vein rich with quartz.
- .suffix = Quartz
-ent-WallRockAndesiteSilver = { ent-WallRockAndesite }
- .desc = An ore vein rich with silver.
- .suffix = Silver
-ent-WallRockAndesiteTin = { ent-WallRockAndesite }
- .desc = An ore vein rich with iron.
- .suffix = Iron
-ent-WallRockAndesiteUranium = { ent-WallRockAndesite }
- .desc = An ore vein rich with uranium.
- .suffix = Uranium
-ent-WallRockAndesiteBananium = { ent-WallRockAndesite }
- .desc = An ore vein rich with bananium.
- .suffix = Bananium
-ent-WallRockAndesiteArtifactFragment = { ent-WallRockAndesite }
- .desc = A rock wall. What's that sticking out of it?
- .suffix = Artifact Fragment
-ent-WallRockAndesiteSalt = { ent-WallRockAndesite }
- .desc = An ore vein rich with salt.
- .suffix = Salt
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/barricades.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/barricades.ftl
deleted file mode 100644
index 6c7aa5d9515..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/barricades.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-Barricade = barricade
- .desc = { ent-BaseStructure.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/base_structurewalls.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/base_structurewalls.ftl
deleted file mode 100644
index f9ee75f2f8f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/base_structurewalls.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-WallBase = basewall
- .desc = Keeps the air in and the greytide out.
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/fence_metal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/fence_metal.ftl
deleted file mode 100644
index 2c3b311a5bc..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/fence_metal.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-ent-BaseFenceMetal = chain link fence
- .desc = A metal piece of fencing cordoning off something likely very important.
-ent-FenceMetalBroken = broken chain link fence
- .desc = Someone got real mad at an inanimate object.
-ent-FenceMetalStraight = { ent-BaseFenceMetal }
- .suffix = Straight
- .desc = { ent-BaseFenceMetal.desc }
-ent-FenceMetalCorner = { ent-BaseFenceMetal }
- .suffix = Corner
- .desc = { ent-BaseFenceMetal.desc }
-ent-FenceMetalEnd = { ent-BaseFenceMetal }
- .suffix = End
- .desc = { ent-BaseFenceMetal.desc }
-ent-FenceMetalGate = chain link fence gate
- .desc = You could use the door instead of vaulting over--if you're a COWARD, that is.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/fence_wood.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/fence_wood.ftl
deleted file mode 100644
index f2a953573f8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/fence_wood.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-BaseFenceWood = wooden fence
- .desc = Wooden piece of fencing. I hope there is babushka's garden behind it.
-ent-BaseFenceWoodSmall = small wooden fence
- .desc = Wooden piece of small fence. The best protection for the fencing of a private territory!
-ent-FenceWoodHighStraight = { ent-BaseFenceWood }
- .suffix = Straight
- .desc = { ent-BaseFenceWood.desc }
-ent-FenceWoodHighEnd = { ent-BaseFenceWood }
- .suffix = End
- .desc = { ent-BaseFenceWood.desc }
-ent-FenceWoodHighCorner = { ent-BaseFenceWood }
- .suffix = Corner
- .desc = { ent-BaseFenceWood.desc }
-ent-FenceWoodHighTJunction = { ent-BaseFenceWood }
- .suffix = T-Junction
- .desc = { ent-BaseFenceWood.desc }
-ent-FenceWoodHighGate = wooden fence gate
- .desc = Do you have any idea what awaits you behind these gates? It can be either a toilet or a luxurious mansion. But you continue to love your emo boys.
-ent-FenceWoodSmallStraight = { ent-BaseFenceWoodSmall }
- .suffix = Straight
- .desc = { ent-BaseFenceWoodSmall.desc }
-ent-FenceWoodSmallEnd = { ent-BaseFenceWoodSmall }
- .suffix = End
- .desc = { ent-BaseFenceWoodSmall.desc }
-ent-FenceWoodSmallCorner = { ent-BaseFenceWoodSmall }
- .suffix = Corner
- .desc = { ent-BaseFenceWoodSmall.desc }
-ent-FenceWoodSmallTJunction = { ent-BaseFenceWoodSmall }
- .suffix = T-Junction
- .desc = { ent-BaseFenceWoodSmall.desc }
-ent-FenceWoodSmallGate = wooden fence gate
- .desc = Looking at this gate, a familiar image pops up in your head. Where's my piggy?
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/girder.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/girder.ftl
deleted file mode 100644
index 198d415a916..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/girder.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-Girder = girder
- .desc = A large structural assembly made out of metal; It requires a layer of metal before it can be considered a wall.
- .suffix = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/girders.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/girders.ftl
deleted file mode 100644
index 333d8950fdb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/girders.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-Girder = girder
- .desc = A large structural assembly made out of metal; It requires a layer of metal before it can be considered a wall.
-ent-ReinforcedGirder = reinforced girder
- .desc = A large structural assembly made out of metal and plasteel; It requires a layer of plasteel before it can be considered a reinforced wall.
-ent-ClockworkGirder = wall gear
- .desc = A large gear with mounting brackets for additional plating; This could be made into a wall with more brass plating.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/grille.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/grille.ftl
deleted file mode 100644
index d39d7365b2a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/grille.ftl
+++ /dev/null
@@ -1,12 +0,0 @@
-ent-Grille = grille
- .desc = A flimsy framework of iron rods.
-ent-ClockworkGrille = clockwork grille
- .desc = a flimsy framework of iron rods assembled in traditional Ratvarian fashion.
-ent-GrilleBroken = grille
- .desc = A flimsy framework of iron rods. It has seen better days.
-ent-ClockworkGrilleBroken = clockwork grille
- .desc = A flimsy framework of iron rods assembled in traditional Ratvarian fashion. It has seen better days.
-ent-GrilleDiagonal = diagonal grille
- .desc = { ent-Grille.desc }
-ent-ClockworkGrilleDiagonal = diagonal clockwork grille
- .desc = { ent-ClockworkGrille.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/low.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/low.ftl
deleted file mode 100644
index 6a902740619..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/low.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-LowWall = low wall
- .desc = Goes up to about your waist.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/mountain.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/mountain.ftl
deleted file mode 100644
index 3e0a1daacac..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/mountain.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-MountainRock = { ent-AsteroidRock }
- .desc = { ent-AsteroidRock.desc }
-ent-MountainRockMining = { ent-AsteroidRockMining }
- .desc = { ent-AsteroidRockMining.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/railing.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/railing.ftl
deleted file mode 100644
index 145ec50b037..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/railing.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-Railing = railing
- .desc = Basic railing meant to protect idiots like you from falling.
-ent-RailingCorner = railing
- .desc = Basic railing meant to protect idiots like you from falling.
-ent-RailingCornerSmall = railing
- .desc = Basic railing meant to protect idiots like you from falling.
-ent-RailingRound = railing
- .desc = Basic railing meant to protect idiots like you from falling.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl
deleted file mode 100644
index 03f3313a783..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl
+++ /dev/null
@@ -1,101 +0,0 @@
-ent-BaseWall = basewall
- .desc = Keeps the air in and the greytide out.
-ent-WallBrick = brick wall
- .desc = { ent-BaseWall.desc }
-ent-WallClock = clock wall
- .desc = { ent-BaseWall.desc }
-ent-WallClown = bananium wall
- .desc = { ent-BaseWall.desc }
-ent-WallMeat = meat wall
- .desc = Sticky.
-ent-WallCult = cult wall
- .desc = { ent-BaseWall.desc }
-ent-WallDebug = debug wall
- .suffix = DEBUG
- .desc = { ent-BaseWall.desc }
-ent-WallDiamond = diamond wall
- .desc = { ent-BaseWall.desc }
-ent-WallGold = gold wall
- .desc = { ent-BaseWall.desc }
-ent-WallIce = ice wall
- .desc = { ent-BaseWall.desc }
-ent-WallPlasma = plasma wall
- .desc = { ent-BaseWall.desc }
-ent-WallPlastic = plastic wall
- .desc = { ent-BaseWall.desc }
-ent-WallPlastitaniumIndestructible = plastitanium wall
- .suffix = indestructible
- .desc = { ent-BaseWall.desc }
-ent-WallPlastitanium = plastitanium wall
- .desc = { ent-WallPlastitaniumIndestructible.desc }
-ent-WallPlastitaniumDiagonal = plastitanium wall
- .suffix = diagonal
- .desc = { ent-WallShuttleDiagonal.desc }
-ent-WallReinforced = reinforced wall
- .desc = { ent-BaseWall.desc }
-ent-WallReinforcedRust = reinforced wall
- .suffix = rusted
- .desc = { ent-WallReinforced.desc }
-ent-WallReinforcedDiagonal = reinforced wall
- .suffix = diagonal
- .desc = { ent-WallShuttleDiagonal.desc }
-ent-WallRiveted = riveted wall
- .desc = { ent-BaseWall.desc }
-ent-WallSandstone = sandstone wall
- .desc = { ent-BaseWall.desc }
-ent-WallSilver = silver wall
- .desc = { ent-BaseWall.desc }
-ent-WallShuttleDiagonal = shuttle wall
- .desc = Keeps the air in and the greytide out.
- .suffix = Diagonal
-ent-WallShuttle = shuttle wall
- .suffix = Reinforced, Exterior
- .desc = { ent-WallReinforced.desc }
-ent-WallShuttleInterior = shuttle wall
- .suffix = Interior
- .desc = { ent-WallSolid.desc }
-ent-WallSolid = solid wall
- .desc = { ent-BaseWall.desc }
-ent-WallSolidDiagonal = solid wall
- .suffix = diagonal
- .desc = { ent-WallShuttleDiagonal.desc }
-ent-WallSolidRust = solid wall
- .suffix = rusted
- .desc = { ent-WallSolid.desc }
-ent-WallUranium = uranium wall
- .desc = { ent-BaseWall.desc }
-ent-WallWood = wood wall
- .desc = { ent-BaseWall.desc }
-ent-WallWeb = web wall
- .desc = Keeps the spiders in and the greytide out.
-ent-WallNecropolis = stone wall
- .desc = { ent-BaseWall.desc }
-ent-WallMining = wall
- .desc = { ent-BaseWall.desc }
-ent-WallMiningDiagonal = wall
- .suffix = diagonal
- .desc = { ent-WallShuttleDiagonal.desc }
-ent-WallVaultAlien = alien vault wall
- .desc = A mysterious ornate looking wall. There may be ancient dangers inside.
-ent-WallVaultRock = rock vault wall
- .desc = { ent-WallVaultAlien.desc }
-ent-WallVaultSandstone = sandstone vault wall
- .desc = { ent-WallVaultAlien.desc }
-ent-WallInvisible = Invisible Wall
- .desc = { "" }
-ent-WallForce = force wall
- .desc = { "" }
-ent-WallCobblebrick = cobblestone brick wall
- .desc = Stone by stone, perfectly fitted together to form a wall.
-ent-WallBasaltCobblebrick = basalt brick wall
- .desc = { ent-WallCobblebrick.desc }
-ent-WallSnowCobblebrick = snow brick wall
- .desc = A cold, not-so-impenetrable wall.
-ent-WallAsteroidCobblebrick = asteroid stone brick wall
- .desc = { ent-WallCobblebrick.desc }
-ent-WallSandCobblebrick = sandstone brick wall
- .desc = { ent-WallCobblebrick.desc }
-ent-WallChromiteCobblebrick = chromite brick wall
- .desc = { ent-WallCobblebrick.desc }
-ent-WallAndesiteCobblebrick = andesite brick wall
- .desc = { ent-WallCobblebrick.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/clockwork.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/clockwork.ftl
deleted file mode 100644
index 584999bd7e4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/clockwork.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-ClockworkWindow = clockwork window
- .desc = Don't smudge up the brass down there.
-ent-WindowClockworkDirectional = directional clockwork window
- .desc = Don't smudge up the brass down there.
-ent-ClockworkWindowDiagonal = { ent-ClockworkWindow }
- .suffix = diagonal
- .desc = { ent-ClockworkWindow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/mining.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/mining.ftl
deleted file mode 100644
index 2ee7660beac..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/mining.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-MiningWindow = mining window
- .desc = { ent-WindowRCDResistant.desc }
-ent-MiningWindowDiagonal = { ent-ShuttleWindow }
- .suffix = diagonal
- .desc = { ent-ShuttleWindow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/plasma.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/plasma.ftl
deleted file mode 100644
index 126d0a30268..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/plasma.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-PlasmaWindow = plasma window
- .desc = { ent-WindowRCDResistant.desc }
-ent-PlasmaWindowDirectional = directional plasma window
- .desc = Don't smudge up the glass down there.
-ent-PlasmaWindowDiagonal = { ent-PlasmaWindow }
- .suffix = diagonal
- .desc = { ent-PlasmaWindow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/plastitanium.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/plastitanium.ftl
deleted file mode 100644
index 57216514981..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/plastitanium.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-PlastitaniumWindow = plastitanium window
- .desc = { ent-Window.desc }
-ent-PlastitaniumWindowDiagonal = { ent-ShuttleWindow }
- .suffix = diagonal
- .desc = { ent-ShuttleWindow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl
deleted file mode 100644
index 231a9b901b9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl
+++ /dev/null
@@ -1,9 +0,0 @@
-ent-ReinforcedWindow = reinforced window
- .desc = { ent-Window.desc }
-ent-TintedWindow = tinted window
- .desc = { ent-ReinforcedWindow.desc }
-ent-WindowReinforcedDirectional = directional reinforced window
- .desc = Don't smudge up the glass down there.
-ent-ReinforcedWindowDiagonal = { ent-ReinforcedWindow }
- .suffix = diagonal
- .desc = { ent-ReinforcedWindow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl
deleted file mode 100644
index e047dc7a508..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-ReinforcedPlasmaWindow = reinforced plasma window
- .desc = { ent-WindowRCDResistant.desc }
-ent-PlasmaReinforcedWindowDirectional = directional reinforced plasma window
- .desc = Don't smudge up the glass down there.
-ent-ReinforcedPlasmaWindowDiagonal = { ent-ReinforcedPlasmaWindow }
- .suffix = diagonal
- .desc = { ent-ReinforcedPlasmaWindow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl
deleted file mode 100644
index 0ba3040f467..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-ReinforcedUraniumWindow = reinforced uranium window
- .desc = { ent-WindowRCDResistant.desc }
-ent-UraniumReinforcedWindowDirectional = directional reinforced uranium window
- .desc = Don't smudge up the glass down there.
-ent-ReinforcedUraniumWindowDiagonal = { ent-ReinforcedUraniumWindow }
- .suffix = diagonal
- .desc = { ent-ReinforcedUraniumWindow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl
deleted file mode 100644
index 6c5272cfdd0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl
+++ /dev/null
@@ -1,5 +0,0 @@
-ent-ShuttleWindow = shuttle window
- .desc = { ent-WindowRCDResistant.desc }
-ent-ShuttleWindowDiagonal = { ent-ShuttleWindow }
- .suffix = diagonal
- .desc = { ent-ShuttleWindow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/uranium.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/uranium.ftl
deleted file mode 100644
index 012b81a4745..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/uranium.ftl
+++ /dev/null
@@ -1,7 +0,0 @@
-ent-UraniumWindow = uranium window
- .desc = { ent-WindowRCDResistant.desc }
-ent-UraniumWindowDirectional = directional uranium window
- .desc = Don't smudge up the glass down there.
-ent-UraniumWindowDiagonal = { ent-UraniumWindow }
- .suffix = diagonal
- .desc = { ent-UraniumWindow.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl
deleted file mode 100644
index 21dd2cc33a0..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl
+++ /dev/null
@@ -1,13 +0,0 @@
-ent-Window = window
- .desc = Don't smudge up the glass down there.
-ent-WindowRCDResistant = { ent-Window }
- .desc = { ent-Window.desc }
-ent-WindowDirectional = directional window
- .desc = Don't smudge up the glass down there.
-ent-WindowDirectionalRCDResistant = { ent-WindowDirectional }
- .desc = { ent-WindowDirectional.desc }
-ent-WindowFrostedDirectional = directional frosted window
- .desc = Don't smudge up the glass down there.
-ent-WindowDiagonal = { ent-Window }
- .suffix = diagonal
- .desc = { ent-Window.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tile/basalt.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tile/basalt.ftl
deleted file mode 100644
index 1111fd1e818..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tile/basalt.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-BasaltOne = basalt
- .desc = Rock
- .suffix = { "" }
-ent-BasaltTwo = { ent-BasaltOne }
- .desc = { ent-BasaltOne.desc }
- .suffix = { "" }
-ent-BasaltThree = { ent-BasaltOne }
- .desc = { ent-BasaltOne.desc }
- .suffix = { "" }
-ent-BasaltFour = { ent-BasaltOne }
- .desc = { ent-BasaltOne.desc }
- .suffix = { "" }
-ent-BasaltFive = { ent-BasaltOne }
- .desc = { ent-BasaltOne.desc }
- .suffix = { "" }
-ent-BasaltRandom = { ent-BasaltOne }
- .suffix = Random
- .desc = { ent-BasaltOne.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/bananium.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/bananium.ftl
deleted file mode 100644
index 2a2cd85095f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/bananium.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FloorBananiumEntity = bananium floor
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/basalt.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/basalt.ftl
deleted file mode 100644
index 31d5ca1bf54..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/basalt.ftl
+++ /dev/null
@@ -1,13 +0,0 @@
-ent-BasaltOne = basalt
- .desc = Rock
-ent-BasaltTwo = { ent-BasaltOne }
- .desc = { ent-BasaltOne.desc }
-ent-BasaltThree = { ent-BasaltOne }
- .desc = { ent-BasaltOne.desc }
-ent-BasaltFour = { ent-BasaltOne }
- .desc = { ent-BasaltOne.desc }
-ent-BasaltFive = { ent-BasaltOne }
- .desc = { ent-BasaltOne.desc }
-ent-BasaltRandom = { ent-BasaltOne }
- .suffix = Random
- .desc = { ent-BasaltOne.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/chasm.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/chasm.ftl
deleted file mode 100644
index f6556684550..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/chasm.ftl
+++ /dev/null
@@ -1,11 +0,0 @@
-ent-FloorChasmEntity = chasm
- .desc = You can't even see the bottom.
-ent-FloorChromiteChasm = { ent-FloorChasmEntity }
- .suffix = Chromite
- .desc = { ent-FloorChasmEntity.desc }
-ent-FloorDesertChasm = { ent-FloorChasmEntity }
- .suffix = Desert
- .desc = { ent-FloorChasmEntity.desc }
-ent-FloorSnowChasm = { ent-FloorChasmEntity }
- .suffix = Snow
- .desc = { ent-FloorChasmEntity.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/lava.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/lava.ftl
deleted file mode 100644
index 77e6c8975fd..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/lava.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FloorLavaEntity = lava
- .desc = Don't jump in. It's not worth it, no matter how funny it is.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/liquid_plasma.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/liquid_plasma.ftl
deleted file mode 100644
index 71b3d716ddb..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/liquid_plasma.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FloorLiquidPlasmaEntity = liquid plasma
- .desc = Sweet, expensive nectar. Don't consume.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/shadow_basalt.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/shadow_basalt.ftl
deleted file mode 100644
index f6107fa98a7..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/shadow_basalt.ftl
+++ /dev/null
@@ -1,13 +0,0 @@
-ent-ShadowBasaltOne = shadowstone
- .desc = Glowing cracks in reality. It's probably fine.
-ent-ShadowBasaltTwo = { ent-ShadowBasaltOne }
- .desc = { ent-ShadowBasaltOne.desc }
-ent-ShadowBasaltThree = { ent-ShadowBasaltOne }
- .desc = { ent-ShadowBasaltOne.desc }
-ent-ShadowBasaltFour = { ent-ShadowBasaltOne }
- .desc = { ent-ShadowBasaltOne.desc }
-ent-ShadowBasaltFive = { ent-ShadowBasaltOne }
- .desc = { ent-ShadowBasaltOne.desc }
-ent-ShadowBasaltRandom = { ent-ShadowBasaltOne }
- .suffix = Random
- .desc = { ent-ShadowBasaltOne.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/water.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/water.ftl
deleted file mode 100644
index 6c59ddf9ff8..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/water.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-FloorWaterEntity = water
- .desc = A real thirst quencher.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/beam.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/beam.ftl
deleted file mode 100644
index dd7e6ec02a1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/beam.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-VirtualBeamEntityController = BEAM ENTITY YOU SHOULD NOT SEE THIS
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/electrocution.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/electrocution.ftl
deleted file mode 100644
index cb74423db07..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/electrocution.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-VirtualElectrocutionLoadBase = { "" }
- .desc = { "" }
-ent-VirtualElectrocutionLoadHVPower = { ent-VirtualElectrocutionLoadBase }
- .desc = { ent-VirtualElectrocutionLoadBase.desc }
-ent-VirtualElectrocutionLoadMVPower = { ent-VirtualElectrocutionLoadBase }
- .desc = { ent-VirtualElectrocutionLoadBase.desc }
-ent-VirtualElectrocutionLoadApc = { ent-VirtualElectrocutionLoadBase }
- .desc = { ent-VirtualElectrocutionLoadBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/stripping_hidden.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/stripping_hidden.ftl
deleted file mode 100644
index d0fbad3be3f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/stripping_hidden.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-StrippingHiddenEntity = Hidden Entity
- .desc = There is something in this pocket.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/tether.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/tether.ftl
deleted file mode 100644
index 9ef70aee070..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/tether.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-TetherEntity = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/virtual_item.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/virtual_item.ftl
deleted file mode 100644
index 12d3ada993c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/virtual_item.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-VirtualItem = VIRTUAL ITEM YOU SHOULD NOT SEE THIS
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/chunk.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/chunk.ftl
deleted file mode 100644
index 0658ff7c8b4..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/chunk.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-WorldChunk = World Chunk
- .desc =
- It's rude to stare.
- It's also a bit odd you're looking at the abstract representation of the grid of reality.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/asteroids.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/asteroids.ftl
deleted file mode 100644
index 220c81bb004..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/asteroids.ftl
+++ /dev/null
@@ -1,18 +0,0 @@
-ent-BaseAsteroidDebris = Asteroid Debris
- .desc = { ent-BaseDebris.desc }
-ent-AsteroidDebrisSmall = Asteroid Debris Small
- .desc = { ent-BaseAsteroidDebris.desc }
-ent-AsteroidDebrisMedium = Asteroid Debris Medium
- .desc = { ent-BaseAsteroidDebris.desc }
-ent-AsteroidDebrisLarge = Asteroid Debris Large
- .desc = { ent-BaseAsteroidDebris.desc }
-ent-AsteroidDebrisLarger = Asteroid Debris Larger
- .desc = { ent-BaseAsteroidDebris.desc }
-ent-AsteroidSalvageSmall = Salvage Asteroid Small
- .desc = { ent-BaseAsteroidDebris.desc }
-ent-AsteroidSalvageMedium = Salvage Asteroid Medium
- .desc = { ent-BaseAsteroidDebris.desc }
-ent-AsteroidSalvageLarge = Salvage Asteroid Large
- .desc = { ent-BaseAsteroidDebris.desc }
-ent-AsteroidSalvageHuge = Salvage Asteroid Huge
- .desc = { ent-BaseAsteroidDebris.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/base_debris.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/base_debris.ftl
deleted file mode 100644
index 8a8fba8fbca..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/base_debris.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-BaseDebris = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/wrecks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/wrecks.ftl
deleted file mode 100644
index 3350a6cf87b..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/wrecks.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-BaseScrapDebris = Scrap Debris
- .desc = { ent-BaseDebris.desc }
-ent-ScrapDebrisSmall = Scrap Debris Small
- .desc = { ent-BaseScrapDebris.desc }
-ent-ScrapDebrisMedium = Scrap Debris Medium
- .desc = { ent-BaseScrapDebris.desc }
-ent-ScrapDebrisLarge = Scrap Debris Large
- .desc = { ent-BaseScrapDebris.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/floor_trap.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/floor_trap.ftl
deleted file mode 100644
index f49cd2a8672..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/floor_trap.ftl
+++ /dev/null
@@ -1,23 +0,0 @@
-ent-CollideFloorTrap = { "" }
- .desc = { "" }
-ent-CollideFloorTrapSpawn = floor trap spawn
- .desc = { ent-CollideFloorTrap.desc }
-ent-FloorTrapExplosion = explosion floor trap
- .desc = { ent-CollideFloorTrap.desc }
-ent-FloorTrapEMP = EMP floor trap
- .desc = { ent-CollideFloorTrap.desc }
-ent-SpawnFloorTrapCarp = { ent-CollideFloorTrapSpawn }
- .suffix = Carp
- .desc = { ent-CollideFloorTrapSpawn.desc }
-ent-SpawnFloorTrapBear = { ent-CollideFloorTrapSpawn }
- .suffix = Bear
- .desc = { ent-CollideFloorTrapSpawn.desc }
-ent-SpawnFloorTrapKangaroo = { ent-CollideFloorTrapSpawn }
- .suffix = Kangaroo
- .desc = { ent-CollideFloorTrapSpawn.desc }
-ent-SpawnFloorTrapXenoDrone = { ent-CollideFloorTrapSpawn }
- .suffix = Xeno. Drone
- .desc = { ent-CollideFloorTrapSpawn.desc }
-ent-SpawnFloorTrapXenoBurrower = { ent-CollideFloorTrapSpawn }
- .suffix = Xeno. Burrower
- .desc = { ent-CollideFloorTrapSpawn.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/cargo_gifts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/cargo_gifts.ftl
deleted file mode 100644
index 8b12e96f91a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/cargo_gifts.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-CargoGiftsBase = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-GiftsPizzaPartySmall = { ent-CargoGiftsBase }
- .desc = { ent-CargoGiftsBase.desc }
-ent-GiftsPizzaPartyLarge = { ent-CargoGiftsBase }
- .desc = { ent-CargoGiftsBase.desc }
-ent-GiftsEngineering = { ent-CargoGiftsBase }
- .desc = { ent-CargoGiftsBase.desc }
-ent-GiftsVendingRestock = { ent-CargoGiftsBase }
- .desc = { ent-CargoGiftsBase.desc }
-ent-GiftsJanitor = { ent-CargoGiftsBase }
- .desc = { ent-CargoGiftsBase.desc }
-ent-GiftsMedical = { ent-CargoGiftsBase }
- .desc = { ent-CargoGiftsBase.desc }
-ent-GiftsSpacingSupplies = { ent-CargoGiftsBase }
- .desc = { ent-CargoGiftsBase.desc }
-ent-GiftsFireProtection = { ent-CargoGiftsBase }
- .desc = { ent-CargoGiftsBase.desc }
-ent-GiftsSecurityGuns = { ent-CargoGiftsBase }
- .desc = { ent-CargoGiftsBase.desc }
-ent-GiftsSecurityRiot = { ent-CargoGiftsBase }
- .desc = { ent-CargoGiftsBase.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl
deleted file mode 100644
index 7c91ef0c2c1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl
+++ /dev/null
@@ -1,64 +0,0 @@
-ent-BaseStationEvent = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-BaseStationEventShortDelay = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-BaseStationEventLongDelay = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-AnomalySpawn = { ent-BaseStationEventShortDelay }
- .desc = { ent-BaseStationEventShortDelay.desc }
-ent-BluespaceArtifact = { ent-BaseStationEventShortDelay }
- .desc = { ent-BaseStationEventShortDelay.desc }
-ent-BluespaceLocker = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-BreakerFlip = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-BureaucraticError = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-ClericalError = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-ClosetSkeleton = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-DragonSpawn = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-NinjaSpawn = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-RevenantSpawn = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-GasLeak = { ent-BaseStationEventShortDelay }
- .desc = { ent-BaseStationEventShortDelay.desc }
-ent-KudzuGrowth = { ent-BaseStationEventLongDelay }
- .desc = { ent-BaseStationEventLongDelay.desc }
-ent-MeteorSwarm = { ent-BaseStationEventLongDelay }
- .desc = { ent-BaseStationEventLongDelay.desc }
-ent-MouseMigration = { ent-BaseStationEventShortDelay }
- .desc = { ent-BaseStationEventShortDelay.desc }
-ent-CockroachMigration = { ent-BaseStationEventShortDelay }
- .desc = { ent-BaseStationEventShortDelay.desc }
-ent-PowerGridCheck = { ent-BaseStationEventShortDelay }
- .desc = { ent-BaseStationEventShortDelay.desc }
-ent-RandomSentience = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-SolarFlare = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-VentClog = { ent-BaseStationEventLongDelay }
- .desc = { ent-BaseStationEventLongDelay.desc }
-ent-SlimesSpawn = { ent-BaseStationEventShortDelay }
- .desc = { ent-BaseStationEventShortDelay.desc }
-ent-SpiderSpawn = { ent-BaseStationEventShortDelay }
- .desc = { ent-BaseStationEventShortDelay.desc }
-ent-SpiderClownSpawn = { ent-BaseStationEventShortDelay }
- .desc = { ent-BaseStationEventShortDelay.desc }
-ent-ZombieOutbreak = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-LoneOpsSpawn = { ent-BaseNukeopsRule }
- .desc = { ent-BaseNukeopsRule.desc }
-ent-SleeperAgentsRule = { ent-BaseTraitorRule }
- .desc = { ent-BaseTraitorRule.desc }
-ent-MassHallucinations = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-ImmovableRodSpawn = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-IonStorm = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-MimicVendorRule = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/midround.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/midround.ftl
deleted file mode 100644
index ffd302b5a10..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/midround.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-Ninja = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-Thief = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/roundstart.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/roundstart.ftl
deleted file mode 100644
index 486e482638d..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/roundstart.ftl
+++ /dev/null
@@ -1,32 +0,0 @@
-ent-BaseGameRule = { "" }
- .desc = { "" }
-ent-SubGamemodesRule = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-DeathMatch31 = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-InactivityTimeRestart = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-MaxTimeRestart = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-BaseNukeopsRule = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-Nukeops = { ent-BaseNukeopsRule }
- .desc = { ent-BaseNukeopsRule.desc }
-ent-BaseTraitorRule = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-Traitor = { ent-BaseTraitorRule }
- .desc = { ent-BaseTraitorRule.desc }
-ent-Revolutionary = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-Sandbox = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-Secret = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-Zombie = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-BasicStationEventScheduler = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-RampingStationEventScheduler = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-BasicRoundstartVariation = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl
deleted file mode 100644
index 0d6b3d5b3f9..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl
+++ /dev/null
@@ -1,10 +0,0 @@
-ent-UnknownShuttleCargoLost = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-UnknownShuttleTravelingCuisine = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-UnknownShuttleDisasterEvacPod = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-UnknownShuttleHonki = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-UnknownShuttleSyndieEvacPod = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/variation.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/variation.ftl
deleted file mode 100644
index 8c3f23a6c37..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/variation.ftl
+++ /dev/null
@@ -1,16 +0,0 @@
-ent-BaseVariationPass = { ent-BaseGameRule }
- .desc = { ent-BaseGameRule.desc }
-ent-BasicPoweredLightVariationPass = { ent-BaseVariationPass }
- .desc = { ent-BaseVariationPass.desc }
-ent-SolidWallRustingVariationPass = { ent-BaseVariationPass }
- .desc = { ent-BaseVariationPass.desc }
-ent-ReinforcedWallRustingVariationPass = { ent-BaseVariationPass }
- .desc = { ent-BaseVariationPass.desc }
-ent-BasicTrashVariationPass = { ent-BaseVariationPass }
- .desc = { ent-BaseVariationPass.desc }
-ent-BasicPuddleMessVariationPass = { ent-BaseVariationPass }
- .desc = { ent-BaseVariationPass.desc }
-ent-BloodbathPuddleMessVariationPass = { ent-BaseVariationPass }
- .desc = { ent-BaseVariationPass.desc }
-ent-CutWireVariationPass = { ent-BaseVariationPass }
- .desc = { ent-BaseVariationPass.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/event_spells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/event_spells.ftl
deleted file mode 100644
index 70b779fb395..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/event_spells.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionSummonGhosts = Summon Ghosts
- .desc = Makes all current ghosts permanently invisible
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/fixtures/runes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/fixtures/runes.ftl
deleted file mode 100644
index ca848cfbe09..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/fixtures/runes.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-ent-BaseRune = rune
- .desc = { "" }
-ent-CollideRune = collision rune
- .desc = { ent-BaseRune.desc }
-ent-ActivateRune = activation rune
- .desc = { ent-CollideRune.desc }
-ent-CollideTimerRune = collision timed rune
- .desc = { ent-CollideRune.desc }
-ent-ExplosionRune = explosion rune
- .desc = { ent-CollideRune.desc }
-ent-StunRune = stun rune
- .desc = { ent-CollideRune.desc }
-ent-IgniteRune = ignite rune
- .desc = { ent-CollideRune.desc }
-ent-ExplosionTimedRune = explosion timed rune
- .desc = { ent-CollideTimerRune.desc }
-ent-ExplosionActivateRune = explosion activated rune
- .desc = { ent-ActivateRune.desc }
-ent-FlashRune = flash rune
- .desc = { ent-ActivateRune.desc }
-ent-FlashRuneTimer = flash timed rune
- .desc = { ent-CollideTimerRune.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/forcewall_spells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/forcewall_spells.ftl
deleted file mode 100644
index 64e7a225011..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/forcewall_spells.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionForceWall = Forcewall
- .desc = Creates a magical barrier.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/knock_spell.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/knock_spell.ftl
deleted file mode 100644
index 06c88e99a82..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/knock_spell.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionKnock = Knock
- .desc = This spell opens nearby doors.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/projectile_spells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/projectile_spells.ftl
deleted file mode 100644
index 423cb199566..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/projectile_spells.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-ActionFireball = Fireball
- .desc = Fires an explosive fireball towards the clicked location.
-ent-ActionFireballII = Fireball II
- .desc = Fires a fireball, but faster!
-ent-ActionFireballIII = Fireball III
- .desc = The fastest fireball in the west!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/rune_spells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/rune_spells.ftl
deleted file mode 100644
index f9a38e57a61..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/rune_spells.ftl
+++ /dev/null
@@ -1,8 +0,0 @@
-ent-ActionFlashRune = Flash Rune
- .desc = Summons a rune that flashes if used.
-ent-ActionExplosionRune = Explosion Rune
- .desc = Summons a rune that explodes if used.
-ent-ActionIgniteRune = Ignite Rune
- .desc = Summons a rune that ignites if used.
-ent-ActionStunRune = Stun Rune
- .desc = Summons a rune that stuns if used.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/smite_spells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/smite_spells.ftl
deleted file mode 100644
index 75f7e924576..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/smite_spells.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionSmite = Smite
- .desc = Instantly gibs a target.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/spawn_spells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/spawn_spells.ftl
deleted file mode 100644
index 1a2429f6a30..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/spawn_spells.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionSpawnMagicarpSpell = Summon Magicarp
- .desc = This spell summons three Magi-Carp to your aid! May or may not turn on user.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/staves.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/staves.ftl
deleted file mode 100644
index 95fecadf95c..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/staves.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-RGBStaff = RGB staff
- .desc = Helps fix the underabundance of RGB gear on the station.
-ent-ActionRgbLight = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/teleport_spells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/teleport_spells.ftl
deleted file mode 100644
index fd75543b588..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/teleport_spells.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionBlink = Blink
- .desc = Teleport to the clicked location.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/utility_spells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/utility_spells.ftl
deleted file mode 100644
index eb7ab3a9813..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/utility_spells.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionChargeSpell = Charge
- .desc = Adds a charge back to your wand
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/npcs/test.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/npcs/test.ftl
deleted file mode 100644
index 4325bf1b36e..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/npcs/test.ftl
+++ /dev/null
@@ -1,3 +0,0 @@
-ent-MobPathfindDummy = pathfind dummy
- .suffix = NPC
- .desc = { ent-MobXenoRouny.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/base_objectives.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/base_objectives.ftl
deleted file mode 100644
index cdc00f3bcb1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/base_objectives.ftl
+++ /dev/null
@@ -1,20 +0,0 @@
-ent-BaseObjective = { "" }
- .desc = { "" }
-ent-BaseLivingObjective = { ent-BaseObjective }
- .desc = { ent-BaseObjective.desc }
-ent-BaseTargetObjective = { ent-BaseObjective }
- .desc = { ent-BaseObjective.desc }
-ent-BaseKillObjective = { ent-BaseTargetObjective }
- .desc = { ent-BaseTargetObjective.desc }
-ent-BaseSocialObjective = { ent-BaseTargetObjective }
- .desc = { ent-BaseTargetObjective.desc }
-ent-BaseKeepAliveObjective = { ent-BaseSocialObjective }
- .desc = { ent-BaseSocialObjective.desc }
-ent-BaseHelpProgressObjective = { ent-BaseSocialObjective }
- .desc = { ent-BaseSocialObjective.desc }
-ent-BaseStealObjective = { ent-BaseLivingObjective }
- .desc = { ent-BaseLivingObjective.desc }
-ent-BaseSurviveObjective = { ent-BaseObjective }
- .desc = { ent-BaseObjective.desc }
-ent-BaseCodeObjective = { ent-BaseObjective }
- .desc = { ent-BaseObjective.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/dragon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/dragon.ftl
deleted file mode 100644
index a12228b27c6..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/dragon.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseDragonObjective = { ent-BaseObjective }
- .desc = { ent-BaseObjective.desc }
-ent-CarpRiftsObjective = { ent-BaseDragonObjective }
- .desc = { ent-BaseDragonObjective.desc }
-ent-DragonSurviveObjective = Survive
- .desc = You have to stay alive to maintain control.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/ninja.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/ninja.ftl
deleted file mode 100644
index 8f6a96f3793..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/ninja.ftl
+++ /dev/null
@@ -1,14 +0,0 @@
-ent-BaseNinjaObjective = { ent-BaseObjective }
- .desc = { ent-BaseObjective.desc }
-ent-DoorjackObjective = { ent-BaseNinjaObjective }
- .desc = { ent-BaseNinjaObjective.desc }
-ent-StealResearchObjective = { ent-BaseNinjaObjective }
- .desc = Your gloves can be used to hack a research server and steal its precious data. If science has been slacking you'll have to get to work.
-ent-SpiderChargeObjective = { ent-BaseNinjaObjective }
- .desc = This bomb can be detonated in a specific location. Note that the bomb will not work anywhere else!
-ent-NinjaSurviveObjective = Survive
- .desc = You wouldn't be a very good ninja if you died, now would you?
-ent-TerrorObjective = Call in a threat
- .desc = Use your gloves on a communication console in order to bring another threat to the station.
-ent-MassArrestObjective = Set everyone to wanted
- .desc = Use your gloves to hack a criminal records console, setting the entire station to be wanted!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/terminator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/terminator.ftl
deleted file mode 100644
index fbd7364460a..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/terminator.ftl
+++ /dev/null
@@ -1,6 +0,0 @@
-ent-BaseTerminatorObjective = { ent-BaseObjective }
- .desc = { ent-BaseObjective.desc }
-ent-TerminateObjective = { ent-BaseTerminatorObjective }
- .desc = Follow your programming and terminate the target.
-ent-ShutDownObjective = Shut down
- .desc = Once the mission is complete die to prevent our technology from being stolen.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/thief.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/thief.ftl
deleted file mode 100644
index e708f5997e1..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/thief.ftl
+++ /dev/null
@@ -1,92 +0,0 @@
-ent-BaseThiefObjective = { ent-BaseObjective }
- .desc = { ent-BaseObjective.desc }
-ent-BaseThiefStealObjective = { ent-BaseThiefObjective }
- .desc = { ent-BaseThiefObjective.desc }
-ent-BaseThiefStealCollectionObjective = { ent-BaseThiefObjective }
- .desc = { ent-BaseThiefObjective.desc }
-ent-BaseThiefStealStructureObjective = { ent-BaseThiefObjective }
- .desc = { ent-BaseThiefObjective.desc }
-ent-BaseThiefStealAnimalObjective = { ent-BaseThiefObjective }
- .desc = { ent-BaseThiefObjective.desc }
-ent-FigurineStealCollectionObjective = { ent-BaseThiefStealCollectionObjective }
- .desc = { ent-BaseThiefStealCollectionObjective.desc }
-ent-HeadCloakStealCollectionObjective = { ent-BaseThiefStealCollectionObjective }
- .desc = { ent-BaseThiefStealCollectionObjective.desc }
-ent-HeadBedsheetStealCollectionObjective = { ent-BaseThiefStealCollectionObjective }
- .desc = { ent-BaseThiefStealCollectionObjective.desc }
-ent-StampStealCollectionObjective = { ent-BaseThiefStealCollectionObjective }
- .desc = { ent-BaseThiefStealCollectionObjective.desc }
-ent-DoorRemoteStealCollectionObjective = { ent-BaseThiefStealCollectionObjective }
- .desc = { ent-BaseThiefStealCollectionObjective.desc }
-ent-TechnologyDiskStealCollectionObjective = { ent-BaseThiefStealCollectionObjective }
- .desc = { ent-BaseThiefStealCollectionObjective.desc }
-ent-IDCardsStealCollectionObjective = { ent-BaseThiefStealCollectionObjective }
- .desc = { ent-BaseThiefStealCollectionObjective.desc }
-ent-LAMPStealCollectionObjective = { ent-BaseThiefStealCollectionObjective }
- .desc = { ent-BaseThiefStealCollectionObjective.desc }
-ent-ForensicScannerStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-FlippoEngravedLighterStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-ClothingHeadHatWardenStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-ClothingOuterHardsuitVoidParamedStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-MedicalTechFabCircuitboardStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-ClothingHeadsetAltMedicalStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-FireAxeStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-AmePartFlatpackStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-ExpeditionsCircuitboardStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-CargoShuttleCircuitboardStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-SalvageShuttleCircuitboardStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-ClothingEyesHudBeerStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-BibleStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-ClothingNeckGoldmedalStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-ClothingNeckClownmedalStealObjective = { ent-BaseThiefStealObjective }
- .desc = { ent-BaseThiefStealObjective.desc }
-ent-NuclearBombStealObjective = { ent-BaseThiefStealStructureObjective }
- .desc = { ent-BaseThiefStealStructureObjective.desc }
-ent-FaxMachineCaptainStealObjective = { ent-BaseThiefStealStructureObjective }
- .desc = { ent-BaseThiefStealStructureObjective.desc }
-ent-ChemDispenserStealObjective = { ent-BaseThiefStealStructureObjective }
- .desc = { ent-BaseThiefStealStructureObjective.desc }
-ent-XenoArtifactStealObjective = { ent-BaseThiefStealStructureObjective }
- .desc = { ent-BaseThiefStealStructureObjective.desc }
-ent-FreezerHeaterStealObjective = { ent-BaseThiefStealStructureObjective }
- .desc = { ent-BaseThiefStealStructureObjective.desc }
-ent-TegStealObjective = { ent-BaseThiefStealStructureObjective }
- .desc = { ent-BaseThiefStealStructureObjective.desc }
-ent-BoozeDispenserStealObjective = { ent-BaseThiefStealStructureObjective }
- .desc = { ent-BaseThiefStealStructureObjective.desc }
-ent-AltarNanotrasenStealObjective = { ent-BaseThiefStealStructureObjective }
- .desc = { ent-BaseThiefStealStructureObjective.desc }
-ent-PlantRDStealObjective = { ent-BaseThiefStealStructureObjective }
- .desc = { ent-BaseThiefStealStructureObjective.desc }
-ent-IanStealObjective = { ent-BaseThiefStealAnimalObjective }
- .desc = { ent-BaseThiefStealAnimalObjective.desc }
-ent-BingusStealObjective = { ent-BaseThiefStealAnimalObjective }
- .desc = { ent-BaseThiefStealAnimalObjective.desc }
-ent-McGriffStealObjective = { ent-BaseThiefStealAnimalObjective }
- .desc = { ent-BaseThiefStealAnimalObjective.desc }
-ent-WalterStealObjective = { ent-BaseThiefStealAnimalObjective }
- .desc = { ent-BaseThiefStealAnimalObjective.desc }
-ent-MortyStealObjective = { ent-BaseThiefStealAnimalObjective }
- .desc = { ent-BaseThiefStealAnimalObjective.desc }
-ent-RenaultStealObjective = { ent-BaseThiefStealAnimalObjective }
- .desc = { ent-BaseThiefStealAnimalObjective.desc }
-ent-ShivaStealObjective = { ent-BaseThiefStealAnimalObjective }
- .desc = { ent-BaseThiefStealAnimalObjective.desc }
-ent-TropicoStealObjective = { ent-BaseThiefStealAnimalObjective }
- .desc = { ent-BaseThiefStealAnimalObjective.desc }
-ent-EscapeThiefShuttleObjective = Escape to centcom alive and unrestrained.
- .desc = You don't want your illegal activities to be discovered by anyone, do you?
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl
deleted file mode 100644
index 7164f38b0ee..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl
+++ /dev/null
@@ -1,48 +0,0 @@
-ent-BaseTraitorObjective = { ent-BaseObjective }
- .desc = { ent-BaseObjective.desc }
-ent-BaseTraitorSocialObjective = { ent-BaseTraitorObjective }
- .desc = { ent-BaseTraitorObjective.desc }
-ent-BaseTraitorStealObjective = { ent-BaseTraitorObjective }
- .desc = { ent-BaseTraitorObjective.desc }
-ent-EscapeShuttleObjective = Escape to centcom alive and unrestrained.
- .desc = One of our undercover agents will debrief you when you arrive. Don't show up in cuffs.
-ent-DieObjective = Die a glorious death
- .desc = Die.
-ent-KillRandomPersonObjective = { ent-BaseTraitorObjective }
- .desc = Do it however you like, just make sure they don't make it to centcom.
-ent-KillRandomHeadObjective = { ent-BaseTraitorObjective }
- .desc = We need this head gone and you probably know why. Good luck, agent.
-ent-RandomTraitorAliveObjective = { ent-BaseTraitorSocialObjective }
- .desc = Identify yourself at your own risk. We just need them alive.
-ent-RandomTraitorProgressObjective = { ent-BaseTraitorSocialObjective }
- .desc = Identify yourself at your own risk. We just need them to succeed.
-ent-BaseCMOStealObjective = { ent-BaseTraitorStealObjective }
- .desc = { ent-BaseTraitorStealObjective.desc }
-ent-CMOHyposprayStealObjective = { ent-BaseCMOStealObjective }
- .desc = { ent-BaseCMOStealObjective.desc }
-ent-CMOCrewMonitorStealObjective = { ent-BaseCMOStealObjective }
- .desc = { ent-BaseCMOStealObjective.desc }
-ent-BaseRDStealObjective = { ent-BaseTraitorStealObjective }
- .desc = { ent-BaseTraitorStealObjective.desc }
-ent-RDHardsuitStealObjective = { ent-BaseRDStealObjective }
- .desc = { ent-BaseRDStealObjective.desc }
-ent-HandTeleporterStealObjective = { ent-BaseRDStealObjective }
- .desc = { ent-BaseRDStealObjective.desc }
-ent-SecretDocumentsStealObjective = { ent-BaseTraitorStealObjective }
- .desc = { ent-BaseTraitorStealObjective.desc }
-ent-MagbootsStealObjective = { ent-BaseTraitorStealObjective }
- .desc = { ent-BaseTraitorStealObjective.desc }
-ent-ClipboardStealObjective = { ent-BaseTraitorStealObjective }
- .desc = { ent-BaseTraitorStealObjective.desc }
-ent-CorgiMeatStealObjective = { ent-BaseTraitorStealObjective }
- .desc = { ent-BaseTraitorStealObjective.desc }
-ent-BaseCaptainObjective = { ent-BaseTraitorStealObjective }
- .desc = { ent-BaseTraitorStealObjective.desc }
-ent-CaptainIDStealObjective = { ent-BaseCaptainObjective }
- .desc = { ent-BaseCaptainObjective.desc }
-ent-CaptainJetpackStealObjective = { ent-BaseCaptainObjective }
- .desc = { ent-BaseCaptainObjective.desc }
-ent-CaptainGunStealObjective = { ent-BaseCaptainObjective }
- .desc = { ent-BaseCaptainObjective.desc }
-ent-NukeDiskStealObjective = { ent-BaseCaptainObjective }
- .desc = { ent-BaseCaptainObjective.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/procedural/salvage_mods.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/procedural/salvage_mods.ftl
deleted file mode 100644
index 676094d0e52..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/procedural/salvage_mods.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-SalvageShuttleMarker = Salvage shuttle marker
- .desc = { ent-FTLPoint.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/roles/jobs/civilian/mime.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/roles/jobs/civilian/mime.ftl
deleted file mode 100644
index 51a9a0730f2..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/roles/jobs/civilian/mime.ftl
+++ /dev/null
@@ -1,2 +0,0 @@
-ent-ActionMimeInvisibleWall = Create Invisible Wall
- .desc = Create an invisible wall in front of you, if placeable there.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/store/presets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/store/presets.ftl
deleted file mode 100644
index f9c2384170f..00000000000
--- a/Resources/Locale/en-US/ss14-ru/prototypes/store/presets.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-ent-StorePresetUplink = { "" }
- .desc = { "" }
-ent-StorePresetSpellbook = { "" }
- .desc = { "" }
diff --git a/Resources/Locale/ru-RU/Andromeda/evilbug/plushietoys.ftl b/Resources/Locale/ru-RU/Andromeda/evilbug/plushietoys.ftl
new file mode 100644
index 00000000000..eb95222713f
--- /dev/null
+++ b/Resources/Locale/ru-RU/Andromeda/evilbug/plushietoys.ftl
@@ -0,0 +1,14 @@
+advertisement-plushietoys-1 = Надеюсь, никто не попросит у меня чёртову чашку чая...
+advertisement-plushietoys-2 = Алкоголь - друг человечества. Вы бы отказались от друга?
+advertisement-plushietoys-3 = Очень рад вас обслужить!
+advertisement-plushietoys-4 = Никто на этой станции не хочет выпить?
+advertisement-plushietoys-5 = Выпьем!
+thankyou-plushietoys-1 = Смотрите и лапайте!
+thankyou-plushietoys-2 = Смотрите не умрите от милоты!
+thankyou-plushietoys-3 = Слышали их стоны?
+thankyou-plushietoys-4 = Наши игрушки на девяносто процентов состоят из доброты и на десять - из плутония! ... Наверное!
+thankyou-plushietoys-5 = Никаких мстительных духов внутри плюшевки!
+thankyou-plushietoys-6 = Отталкивают грязь, воду, кровь, кровь, пыль!
+thankyou-plushietoys-7 = Мягче только стены комнаты!
+thankyou-plushietoys-8 = Широкая палитра цветов от FFFAFA до 808080!
+thankyou-plushietoys-9 = Безбашенно восхитительны!
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/Andromeda/evilbug/pottedplant.ftl b/Resources/Locale/ru-RU/Andromeda/evilbug/pottedplant.ftl
new file mode 100644
index 00000000000..b6b3e081a15
--- /dev/null
+++ b/Resources/Locale/ru-RU/Andromeda/evilbug/pottedplant.ftl
@@ -0,0 +1,12 @@
+advertisement-pottedplant-1 = Мы точно не торгуем контрабандными видами!
+advertisement-pottedplant-2 = Ощути себя садовником!
+advertisement-pottedplant-3 = У нас растения на вынос – буквально!
+thankyou-pottedplant-1 = Растения – цветы жизни!
+thankyou-pottedplant-2 = Тебе грустно? Полей росток!
+thankyou-pottedplant-3 = Ставка на зелёное!
+thankyou-pottedplant-4 = Чёрт возьми, ДА!
+thankyou-pottedplant-5 = Можно использовать вместо баллона с кислородом!
+thankyou-pottedplant-6 = Трава, детка!
+thankyou-pottedplant-7 = Смерть зомби!
+thankyou-pottedplant-8 = Пока без ГМО!
+thankyou-pottedplant-9 = Замена скучной лампе в допросной!
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/Andromeda/evilbug/underwearmatte.ftl b/Resources/Locale/ru-RU/Andromeda/evilbug/underwearmatte.ftl
new file mode 100644
index 00000000000..58e5e4e4ec1
--- /dev/null
+++ b/Resources/Locale/ru-RU/Andromeda/evilbug/underwearmatte.ftl
@@ -0,0 +1,17 @@
+advertisement-underwearmatte-1 = Защити своё хозяйство!
+advertisement-underwearmatte-2 = Поройся в чужом белье!
+advertisement-underwearmatte-3 = Делай вид, что не смотришь на эти трусики...
+advertisement-underwearmatte-4 = Ради них Синдикат пойдёт на всё!
+advertisement-underwearmatte-5 = Не будь трусом! Хватай трусы!
+advertisement-underwearmatte-6 = Подтянут форму и мужское настроение!
+advertisement-underwearmatte-7 = Пояс верности НЕ ПРОДАЕМ!
+advertisement-underwearmatte-8 = Поддержка лучше чем у психолога!
+advertisement-underwearmatte-9 = С нашей продукцией распускать руки ещё приятней!
+advertisement-underwearmatte-10 = Приятно надевать... Но снимать всë же приятней!
+advertisement-underwearmatte-11 = Таких даже у ЦК нет!
+thankyou-underwearmatte-1 = Смотрите и лапайте!
+thankyou-underwearmatte-2 = Не забудьте оставить отзыв! Можно с прикреплëнным фото...
+thankyou-underwearmatte-3 = Не мешают движениям и вашим вульгарным мыслишкам!
+thankyou-underwearmatte-4 = Эй! Ну не прямо перед автоматом же!
+thankyou-underwearmatte-5 = Мы не осуждаем...
+thankyou-underwearmatte-6 = Оу... У вас утонченный вкус!
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/corvax/paper/doc-printer.ftl b/Resources/Locale/ru-RU/corvax/paper/doc-printer.ftl
index 4fcabb64ec7..16af72cb762 100644
--- a/Resources/Locale/ru-RU/corvax/paper/doc-printer.ftl
+++ b/Resources/Locale/ru-RU/corvax/paper/doc-printer.ftl
@@ -7,7 +7,7 @@ doc-text-printer-report-station =
=============================================
ОТЧЁТ О СИТУАЦИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -30,7 +30,7 @@ doc-text-printer-report-on-elimination-of-violations =
=============================================
ОТЧЁТ ОБ УСТРАНЕНИИ НАРУШЕНИЙ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -52,7 +52,7 @@ doc-text-printer-report-department =
=============================================
ОТЧЁТ О РАБОТЕ ОТДЕЛА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -74,7 +74,7 @@ doc-text-printer-report-employee-performance =
=============================================
ОТЧЁТ О РАБОТЕ СОТРУДНИКА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -92,7 +92,7 @@ doc-text-printer-report-on-the-chapters-meeting =
=============================================
ОТЧЁТ О СОБРАНИИ ГЛАВ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -119,7 +119,7 @@ doc-text-printer-internal-affairs-agents-report =
=============================================
ОТЧЁТ О ВНУТРЕННЕМ РАСЛЕДОВАНИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -138,7 +138,7 @@ doc-text-printer-condition-report =
=============================================
ОТЧЁТ О ТЕХНИЧЕСКОМ СОСТОЯНИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -160,7 +160,7 @@ doc-text-printer-Report-study-object =
=============================================
ОТЧЁТ ОБ ИЗУЧЕНИИ ОБЪЕКТА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -180,7 +180,7 @@ doc-text-printer-experiment-report =
=============================================
ОТЧЁТ ОБ ЭКСПЕРИМЕНТЕ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -208,7 +208,7 @@ doc-text-printer-disposal-report =
=============================================
ОТЧЁТ ОБ УТИЛИЗАЦИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -226,7 +226,7 @@ doc-text-printer-application-appointment-interim =
=============================================
ЗАЯВЛЕНИЕ О НАЗНАЧЕНИИ НА ВРИО
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -245,7 +245,7 @@ doc-text-printer-application-employment =
=============================================
ЗАЯВЛЕНИЕ О ТРУДОУСТРОЙСТВЕ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -262,7 +262,7 @@ doc-text-printer-letter-resignation =
=============================================
ЗАЯВЛЕНИЕ ОБ УВОЛЬНЕНИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -279,7 +279,7 @@ doc-text-printer-application-access =
=============================================
ЗАЯВЛЕНИЕ НА ПОЛУЧЕНИЕ ДОСТУПА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -298,7 +298,7 @@ doc-text-printer-application-equipment =
=============================================
ЗАЯВЛЕНИЕ НА ПОЛУЧЕНИЕ СНАРЯЖЕНИЯ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -317,7 +317,7 @@ doc-text-printer-appeal =
=============================================
ОБРАЩЕНИЕ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -337,7 +337,7 @@ doc-text-printer-evacuation-shuttle-request =
=============================================
ЗАПРОС ЭВАКУАЦИОННОГО ШАТТЛА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -355,7 +355,7 @@ doc-text-printer-shuttle-registration-request =
=============================================
ЗАПРОС РЕГИСТРАЦИИ ШАТТЛА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -379,7 +379,7 @@ doc-text-printer-request-call-members-central-committee-dso =
=============================================
ЗАПРОС НА ВЫЗОВ ЧЛЕНОВ ЦК, ДСО
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -398,7 +398,7 @@ doc-text-printer-request-to-establish-threat-level =
=============================================
ЗАПРОС УСТАНОВЛЕНИЯ УРОВНЯ УГРОЗЫ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -417,7 +417,7 @@ doc-text-printer-request-change-salary =
=============================================
ЗАПРОС НА ИЗМЕНЕНИЕ ЗАРАБОТНОЙ ПЛАТЫ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -435,7 +435,7 @@ doc-text-printer-request-for-non-listed-employment =
=============================================
ЗАПРОС ВНЕПЕРЕЧНЕВОГО ТРУДОУСТРОЙСТВА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -461,7 +461,7 @@ doc-text-printer-request-for-promotion =
=============================================
ЗАПРОС ПОВЫШЕНИЯ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -483,7 +483,7 @@ doc-text-printer-request-documents =
=============================================
ЗАПРОС ПРЕДОСТАВЛЕНИЯ ДОКУМЕНТОВ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -500,7 +500,7 @@ doc-text-printer-request-euthanasia =
=============================================
ЗАПРОС НА ПРОВЕДЕНИЕ ЭВТАНАЗИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -517,7 +517,7 @@ doc-text-printer-request-construction-work =
=============================================
ЗАПРОС НА ПРОВЕДЕНИЕ СТРОИТЕЛЬНЫХ РАБОТ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -535,7 +535,7 @@ doc-text-printer-request-modernization =
=============================================
ЗАПРОС НА ПРОВЕДЕНИЕ МОДЕРНИЗАЦИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -553,7 +553,7 @@ doc-text-printer-complaint-violation-labor-rules =
=============================================
ЖАЛОБА НА НАРУШЕНИЕ ТРУДОВОГО ПОРЯДКА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -571,7 +571,7 @@ doc-text-printer-complaint-offense =
=============================================
ЖАЛОБА НА ПРАВОНАРУШЕНИЕ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -589,7 +589,7 @@ doc-text-printer-permission-equipment =
=============================================
РАЗРЕШЕНИЕ НА ИСПОЛЬЗОВАНИЕ СНАРЯЖЕНИЯ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -606,7 +606,7 @@ doc-text-printer-permission-to-travel-in-case-of-threat=
=============================================
РАЗРЕШЕНИЕ НА ПЕРЕДВИЖЕНИЕ ПРИ УГРОЗЕ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -626,7 +626,7 @@ doc-text-printer-search-permission =
=============================================
РАЗРЕШЕНИЕ НА ОБЫСК
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -644,7 +644,7 @@ doc-text-printer-permission-to-carry-weapons =
=============================================
РАЗРЕШЕНИЕ НА НОШЕНИЕ ОРУЖИЯ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -666,7 +666,7 @@ doc-text-printer-prescription-drug-authorization =
=============================================
РАЗРЕШЕНИЕ НА РЕЦЕПТУРНЫЙ ПРЕПАРАТ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -686,7 +686,7 @@ doc-text-printer-permission-dispose-body =
=============================================
РАЗРЕШЕНИЕ НА УТИЛИЗАЦИЮ ТЕЛА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -704,7 +704,7 @@ doc-text-printer-construction-permit =
=============================================
РАЗРЕШЕНИЕ НА СТРОИТЕЛЬСТВО
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -722,7 +722,7 @@ doc-text-printer-permission-to-extend-marriage =
=============================================
РАЗРЕШЕНИЕ НА РАСШИРЕНИЕ БРАКА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -745,7 +745,7 @@ doc-text-printer-order-dismissal =
=============================================
ПРИКАЗ ОБ УВОЛЬНЕНИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -762,7 +762,7 @@ doc-text-printer-order-deprivation-access =
=============================================
ПРИКАЗ О ЛИШЕНИИ ДОСТУПА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -779,7 +779,7 @@ doc-text-printer-order-encouragement =
=============================================
ПРИКАЗ О ПООЩРЕНИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -796,7 +796,7 @@ doc-text-printer-order-parole-prisoner =
=============================================
ПРИКАЗ ОБ УДО ЗАКЛЮЧЕННОГО
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -813,7 +813,7 @@ doc-text-printer-order-recognizing-rentience-creature =
=============================================
ПРИКАЗ О ПРИЗНАНИИ РАЗУМНОСТИ СУЩЕСТВА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -834,7 +834,7 @@ doc-text-printer-order-medical-intervention =
=============================================
РАСПОРЯЖЕНИЕ О МЕДИЦИНСКОМ ВМЕШАТЕЛЬСТВЕ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -852,7 +852,7 @@ doc-text-printer-product-manufacturing-order =
=============================================
ЗАКАЗ НА ПРОИЗВОДСТВО ПРОДУКТА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -872,7 +872,7 @@ doc-text-printer-order-purchase-resources-equipment =
=============================================
ЗАКАЗ НА ЗАКУПКУ РЕСУРСОВ, СНАРЯЖЕНИЯ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -893,7 +893,7 @@ doc-text-printer-ordering-special-equipment =
=============================================
ЗАКАЗ СПЕЦИАЛЬНОГО СНАРЯЖЕНИЯ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -913,7 +913,7 @@ doc-text-printer-order-purchase-weapons =
=============================================
ЗАКАЗ НА ЗАКУПКУ ВООРУЖЕНИЯ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -931,7 +931,7 @@ doc-text-printer-certificate =
=============================================
ГРАМОТА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -948,7 +948,7 @@ doc-text-printer-certificate-advanced-training =
=============================================
СВИДЕТЕЛЬСТВО О ПОВЫШЕНИИ КВАЛИФИКАЦИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -964,7 +964,7 @@ doc-text-printer-certificate-offense =
=============================================
СВИДЕТЕЛЬСТВО О ПРАВОНАРУШЕНИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -989,7 +989,7 @@ doc-text-printer-death-certificate =
=============================================
СВИДЕТЕЛЬСТВО О СМЕРТИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -1011,7 +1011,7 @@ doc-text-printer-marriage-certificate =
=============================================
СВИДЕТЕЛЬСТВО О ЗАКЛЮЧЕНИИ БРАКА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -1032,7 +1032,7 @@ doc-text-printer-divorce-certificate =
=============================================
СВИДЕТЕЛЬСТВО О РАСТОРЖЕНИИ БРАКА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -1055,7 +1055,7 @@ doc-text-printer-closing-indictment =
=============================================
ОБВИНИТЕЛЬНОЕ ЗАКЛЮЧЕНИЕ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -1077,7 +1077,7 @@ doc-text-printer-sentence =
=============================================
ПРИГОВОР
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -1100,7 +1100,7 @@ doc-text-printer-judgment =
=============================================
СУДЕБНОЕ РЕШЕНИЕ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -1132,7 +1132,7 @@ doc-text-printer-statement-health =
=============================================
ЗАКЛЮЧЕНИЕ О СОСТОЯНИИ ЗДОРОВЬЯ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -1158,7 +1158,7 @@ doc-text-printer-decision-to-start-trial =
=============================================
РЕШЕНИЕ О НАЧАЛЕ СУДЕБНОГО ПРОЦЕССА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Составитель документа:
Должность составителя:
@@ -1176,7 +1176,7 @@ doc-text-printer-error-loading-form-header =
=============================================
НАИМЕНОВАНИЕ ДОКУМЕНТА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Позывной Агента:
Полное содержание документа со всей необходимой информацией и описанием
@@ -1191,7 +1191,7 @@ doc-text-printer-notice-of-liquidation =
=============================================
УВЕДОМЛЕНИЕ О ЛИКВИДАЦИИ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Позывной агента:
Уважаемый (ФИО), в должности (полное наименование должности)! Руководством Синдиката принято решение о вашей немедленной ликвидации в ходе данной смены. Просим заранее подготовить завещание и направить его Медицинскому отделу станции. Уничтожение вашего тела будет произведено силами Синдиката.
@@ -1208,7 +1208,7 @@ doc-text-printer-business-deal =
=============================================
ДЕЛОВАЯ СДЕЛКА
=============================================
- Время от начала смены и дата:
+ Время и дата:
Позывной агента:
Синдикат любезно предлагает заключить сделку между станцией и агентом (позывной агента). Со стороны станции необходимо:
@@ -1226,7 +1226,7 @@ doc-text-printer-note-beginning-military-actions =
=============================================
НОТА О НАЧАЛЕ ВОЕННЫХ ДЕЙСТВИЙ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Позывной агента:
Неуважаемые корпоративные крысы NanoTrasen! Синдикат официально объявляет о начале военных действий с вами, а также о начале операции по вашему истреблению.
@@ -1243,7 +1243,7 @@ doc-text-printer-report-accomplishment-goals =
=============================================
ОТЧЁТ О ВЫПОЛНЕНИИ ЦЕЛЕЙ
=============================================
- Время от начала смены и дата:
+ Время и дата:
Позывной агента:
Я, (позывной агента), успешно выполнил поставленные передо мной руководством Синдиката цели. Прошу принять отчёт о выполнении.
diff --git a/Resources/Locale/ru-RU/pda/pda-component.ftl b/Resources/Locale/ru-RU/pda/pda-component.ftl
index a0549ca97d7..4388bc4ca39 100644
--- a/Resources/Locale/ru-RU/pda/pda-component.ftl
+++ b/Resources/Locale/ru-RU/pda/pda-component.ftl
@@ -29,3 +29,9 @@ comp-pda-ui-unknown = Неизвестно
comp-pda-ui-unassigned = Не назначено
pda-notification-message = [font size=12][bold]КПК[/bold] { $header }: [/font]
"{ $message }"
+
+# A-13 PDA shift time start
+comp-pda-ui-shuttle-call-time = До смены экипажа: [color=white]{ $time }[/color]
+comp-pda-ui-shuttle-arrival-time = До прибытия шаттла: [color=white]{ $time }[/color]
+comp-pda-ui-shuttle-launch-time = До запуска шаттла: [color=white]{ $time }[/color]
+# A-13 PDA shift time end
diff --git a/Resources/Maps/corvax_delta.yml b/Resources/Maps/corvax_delta.yml
index 083e3b60ec0..0e6dd3eb2b3 100644
--- a/Resources/Maps/corvax_delta.yml
+++ b/Resources/Maps/corvax_delta.yml
@@ -3,14 +3,11 @@ meta:
postmapinit: false
tilemap:
0: Space
- 4: FloorArcadeBlue
7: FloorAsteroidSand
8: FloorAsteroidSandDug
10: FloorAsteroidSandUnvariantized
11: FloorAsteroidTile
12: FloorAstroGrass
- 9: FloorAstroIce
- 5: FloorAstroSnow
15: FloorBar
1: FloorBlue
18: FloorBlueCircuit
@@ -19,13 +16,10 @@ tilemap:
25: FloorCave
26: FloorCaveDrought
28: FloorClown
- 13: FloorConcrete
32: FloorDark
- 19: FloorDarkDiagonal
35: FloorDarkHerringbone
36: FloorDarkMini
37: FloorDarkMono
- 17: FloorDarkOffset
41: FloorDarkPlastic
42: FloorDesert
43: FloorDirt
@@ -35,7 +29,6 @@ tilemap:
49: FloorGold
50: FloorGrass
51: FloorGrassDark
- 24: FloorGrayConcrete
55: FloorGrayConcreteMono
57: FloorGreenCircuit
58: FloorGym
@@ -48,7 +41,6 @@ tilemap:
70: FloorMining
71: FloorMiningDark
72: FloorMiningLight
- 21: FloorMowedAstroGrass
78: FloorPlanetDirt
80: FloorPlastic
81: FloorRGlass
@@ -58,26 +50,19 @@ tilemap:
86: FloorShuttleBlack
91: FloorShuttleRed
92: FloorShuttleWhite
- 6: FloorSnowDug
96: FloorSteel
98: FloorSteelCheckerDark
2: FloorSteelCheckerLight
101: FloorSteelDiagonal
- 16: FloorSteelDiagonalMini
103: FloorSteelDirty
106: FloorSteelMini
107: FloorSteelMono
- 20: FloorSteelOffset
111: FloorTechMaint
112: FloorTechMaint2
113: FloorTechMaint3
115: FloorWhite
116: FloorWhiteDiagonal
3: FloorWhiteDiagonalMini
-<<<<<<< HEAD
-=======
- 14: FloorWhitePlastic
->>>>>>> master
125: FloorWood
126: FloorWoodLarge
127: FloorWoodTile
@@ -91,7 +76,6 @@ entities:
- uid: 1
components:
- type: MetaData
- name: Delta Station
- type: Transform
- type: Map
mapPaused: True
@@ -114,11 +98,7 @@ entities:
chunks:
-1,-1:
ind: -1,-1
-<<<<<<< HEAD
tiles: IAAAAAAAYAAAAAADIAAAAAAAYAAAAAAAIAAAAAAAYAAAAAACIAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAcwAAAAAAdAAAAAAAIAAAAAAAYAAAAAABIAAAAAAAYAAAAAABIAAAAAAAYAAAAAABIAAAAAAAYAAAAAABIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAdAAAAAAAIAAAAAAAYAAAAAADIAAAAAAAYAAAAAADIAAAAAAAYAAAAAACIAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAIAAAAAAAYAAAAAADIAAAAAAAYAAAAAADIAAAAAAAYAAAAAABIAAAAAAAYAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAYAAAAAABIAAAAAAAYAAAAAADIAAAAAAAYAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAVAAAAAAAQgAAAAAAQgAAAAAAJQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAVAAAAAAAVAAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAVAAAAAAAYAAAAAABgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAVAAAAAAAYAAAAAACgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAVAAAAAAAVAAAAAAA
-=======
- tiles: IAAAAAAAYAAAAAADIAAAAAAAYAAAAAAAIAAAAAAAYAAAAAACIAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAcwAAAAAAdAAAAAAAIAAAAAAAYAAAAAABIAAAAAAAYAAAAAABIAAAAAAAYAAAAAABIAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAdAAAAAAAIAAAAAAAYAAAAAADIAAAAAAAYAAAAAADIAAAAAAAYAAAAAACIAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAIAAAAAAAYAAAAAADIAAAAAAAYAAAAAADIAAAAAAAYAAAAAABIAAAAAAAYAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAVAAAAAAAQgAAAAAAQgAAAAAAJQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAVAAAAAAAVAAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAVAAAAAAAYAAAAAABgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAVAAAAAAAYAAAAAACgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAVAAAAAAAVAAAAAAA
->>>>>>> master
version: 6
-1,0:
ind: -1,0
@@ -126,11 +106,7 @@ entities:
version: 6
0,-1:
ind: 0,-1
-<<<<<<< HEAD
tiles: dAAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACJQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAdAAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAMAAAAAAAYAAAAAABYAAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAMAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACJQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAVAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
-=======
- tiles: dAAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAEAAAAAAAYAAAAAABYAAAAAACJQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAdAAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAEAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAYAAAAAADgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAEAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAYAAAAAABYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAACJQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAVAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
->>>>>>> master
version: 6
0,0:
ind: 0,0
@@ -138,19 +114,11 @@ entities:
version: 6
-2,0:
ind: -2,0
-<<<<<<< HEAD
tiles: AgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAACgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABJQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAJQAAAAAAYAAAAAADMAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADMAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABJQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABJQAAAAAAYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADJQAAAAAA
version: 6
-2,-1:
ind: -2,-1
tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAYAAAAAABYAAAAAADMAAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAACYAAAAAADMAAAAAAAYAAAAAADgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAACgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADJQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADJQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAMAAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADJQAAAAAA
-=======
- tiles: AgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAACgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABJQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAJQAAAAAAYAAAAAADMAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADMAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAYAAAAAABYAAAAAABJQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAYAAAAAADYAAAAAABJQAAAAAAYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADJQAAAAAA
- version: 6
- -2,-1:
- ind: -2,-1
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAYAAAAAABYAAAAAADMAAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAACYAAAAAADMAAAAAAAYAAAAAADgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAACgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACJQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADJQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADJQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAEwAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADJQAAAAAA
->>>>>>> master
version: 6
-1,1:
ind: -1,1
@@ -166,19 +134,11 @@ entities:
version: 6
1,1:
ind: 1,1
-<<<<<<< HEAD
tiles: YAAAAAADMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAANwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAJQAAAAAANwAAAAAAOQAAAAAAIAAAAAABOQAAAAAANwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAANwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAgQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAACYAAAAAACJQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAANwAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAANwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAANwAAAAAANwAAAAAANwAAAAAAYAAAAAAAMAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAANwAAAAAAYAAAAAAAgQAAAAAAYAAAAAACMAAAAAAANwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANwAAAAAAMAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAANwAAAAAAYAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAAANwAAAAAANwAAAAAANwAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAANwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
version: 6
1,0:
ind: 1,0
tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABZQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAADYAAAAAAAMAAAAAAAYAAAAAACgQAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABZQAAAAAAYAAAAAAAYAAAAAADMAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACJQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADJQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAMAAAAAAAYAAAAAADJQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADJQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAACYAAAAAAAYAAAAAABJQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABJQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAYAAAAAACQgAAAAAAQgAAAAAAQgAAAAAAYAAAAAADMAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAIAAAAAADIAAAAAAAYAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAYAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAJQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA
-=======
- tiles: YAAAAAADMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAANwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAJQAAAAAANwAAAAAAOQAAAAAAIAAAAAABOQAAAAAANwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAANwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAgQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAACYAAAAAACJQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAANwAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAANwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAGAAAAAAAYAAAAAAANwAAAAAANwAAAAAANwAAAAAAYAAAAAAAGAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAANwAAAAAAYAAAAAAAgQAAAAAAYAAAAAACNwAAAAAANwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAANwAAAAAANwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAANwAAAAAAYAAAAAAAgQAAAAAAYAAAAAACGAAAAAAAYAAAAAAANwAAAAAANwAAAAAANwAAAAAAYAAAAAAAGAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAANwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
- version: 6
- 1,0:
- ind: 1,0
- tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABZQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAADYAAAAAAAMAAAAAAAYAAAAAACgQAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABZQAAAAAAYAAAAAAAYAAAAAADMAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACJQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADJQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAMAAAAAAAYAAAAAADJQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADJQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAACYAAAAAAAYAAAAAABJQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABJQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAYAAAAAACQgAAAAAAQgAAAAAAQgAAAAAAYAAAAAADMAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAIAAAAAADIAAAAAAAYAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAYAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAJQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAA
->>>>>>> master
version: 6
1,-1:
ind: 1,-1
@@ -186,11 +146,7 @@ entities:
version: 6
-1,-3:
ind: -1,-3
-<<<<<<< HEAD
tiles: gQAAAAAAcwAAAAABMAAAAAAAcwAAAAADgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAcwAAAAAAMAAAAAAAcwAAAAACgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAACYAAAAAABMAAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAABMAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABMAAAAAAAgQAAAAAAcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAEgAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAcwAAAAADMAAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAADMAAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAcwAAAAACMAAAAAAAcwAAAAAAJQAAAAAAUAAAAAAAYAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUAAAAAAAYAAAAAAAJQAAAAAAYAAAAAACMAAAAAAAJQAAAAAAcwAAAAAAMAAAAAAAcwAAAAADgQAAAAAAYAAAAAAAYAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAACMAAAAAAAgQAAAAAAcwAAAAADMAAAAAAAcwAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAEgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAEgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAADcwAAAAACJQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAACcwAAAAABcwAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAACJQAAAAAAcwAAAAAAcwAAAAABAwAAAAAAAwAAAAAAcwAAAAAAcwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACAwAAAAAAAwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAYAAAAAACMAAAAAAA
-=======
- tiles: gQAAAAAAcwAAAAABMAAAAAAAcwAAAAADgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAcwAAAAAAMAAAAAAAcwAAAAACgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAACYAAAAAABMAAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAABMAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABMAAAAAAAgQAAAAAAcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAEgAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAcwAAAAADMAAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAADMAAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAcwAAAAACMAAAAAAAcwAAAAAAJQAAAAAAUAAAAAAAYAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUAAAAAAAYAAAAAAAJQAAAAAAYAAAAAACMAAAAAAAJQAAAAAAcwAAAAAAMAAAAAAAcwAAAAADgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAACMAAAAAAAgQAAAAAAcwAAAAADMAAAAAAAcwAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAEgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAEgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAADcwAAAAACJQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAACcwAAAAABcwAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAACJQAAAAAAcwAAAAAAcwAAAAABAwAAAAAAAwAAAAAAcwAAAAAAcwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACAwAAAAAAAwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAYAAAAAACMAAAAAAA
->>>>>>> master
version: 6
1,-2:
ind: 1,-2
@@ -206,11 +162,7 @@ entities:
version: 6
-2,-2:
ind: -2,-2
-<<<<<<< HEAD
tiles: gQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAcwAAAAACcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABcwAAAAAAcwAAAAACcwAAAAACYAAAAAAAYAAAAAADgQAAAAAAcwAAAAADcwAAAAADcwAAAAACJQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACcwAAAAACYAAAAAADYAAAAAACYAAAAAACOQAAAAAAgQAAAAAAcwAAAAAAMAAAAAAAcwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAcwAAAAABcwAAAAABYAAAAAADYAAAAAABYAAAAAABgQAAAAAAcwAAAAACMAAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAcwAAAAADYAAAAAADYAAAAAAAYAAAAAADOQAAAAAAgQAAAAAAcwAAAAABMAAAAAAAcwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAYAAAAAADcwAAAAABcwAAAAABcwAAAAAAYAAAAAACYAAAAAADgQAAAAAAcwAAAAACMAAAAAAAcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAcwAAAAADMAAAAAAAcwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACJQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADJQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAYAAAAAABYAAAAAACMAAAAAAAYAAAAAACgQAAAAAA
-=======
- tiles: gQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAcwAAAAACcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABcwAAAAAAcwAAAAACcwAAAAACYAAAAAAAYAAAAAADgQAAAAAAcwAAAAADcwAAAAADcwAAAAACJQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACcwAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAcwAAAAAAMAAAAAAAcwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAcwAAAAABcwAAAAABYAAAAAADYAAAAAABYAAAAAABgQAAAAAAcwAAAAACMAAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAcwAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAcwAAAAABMAAAAAAAcwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAYAAAAAADcwAAAAABcwAAAAABcwAAAAAAYAAAAAACYAAAAAADgQAAAAAAcwAAAAACMAAAAAAAcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAcwAAAAADMAAAAAAAcwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACJQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADJQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAYAAAAAABYAAAAAACMAAAAAAAYAAAAAACgQAAAAAA
->>>>>>> master
version: 6
0,-3:
ind: 0,-3
@@ -218,7 +170,6 @@ entities:
version: 6
-2,-3:
ind: -2,-3
-<<<<<<< HEAD
tiles: gQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACcwAAAAABcwAAAAABcwAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAABcwAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABcwAAAAADcwAAAAAAcwAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAcwAAAAABcwAAAAACcwAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAcwAAAAABcwAAAAACcwAAAAADYAAAAAACYAAAAAAAJQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAAAcwAAAAACJQAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAACgQAAAAAAcwAAAAACcwAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAcwAAAAABJQAAAAAAcwAAAAABcwAAAAABMAAAAAAAMAAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAABcwAAAAADJQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAA
version: 6
-4,-3:
@@ -244,33 +195,6 @@ entities:
-5,-3:
ind: -5,-3
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAJQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
-=======
- tiles: gQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACcwAAAAABcwAAAAABcwAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAABcwAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABcwAAAAADcwAAAAAAcwAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAAwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAcwAAAAABcwAAAAACcwAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAAwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAcwAAAAABcwAAAAACcwAAAAADYAAAAAACYAAAAAAAJQAAAAAAYAAAAAAAAwAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAAAcwAAAAACJQAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAACgQAAAAAAcwAAAAACcwAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAcwAAAAABJQAAAAAAcwAAAAABcwAAAAABMAAAAAAAMAAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAABcwAAAAADJQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAA
- version: 6
- -4,-3:
- ind: -4,-3
- tiles: cwAAAAAAIAAAAAAAcwAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAKgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAhAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
- version: 6
- -2,-4:
- ind: -2,-4
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAJQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAOQAAAAAAEgAAAAAAOQAAAAAAgQAAAAAAcwAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAJQAAAAAAcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
- version: 6
- -1,-4:
- ind: -1,-4
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAADYAAAAAABMAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAYAAAAAAAYAAAAAACMAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAIAAAAAAAYAAAAAACYAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAYAAAAAADMAAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAcwAAAAAAcwAAAAADMAAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAACMAAAAAAAcwAAAAAAcwAAAAACMAAAAAAAcwAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAABMAAAAAAAcwAAAAAAcwAAAAACMAAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAcwAAAAAAcwAAAAAAMAAAAAAAcwAAAAACJQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAgQAAAAAAcwAAAAACMAAAAAAAcwAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAACMAAAAAAA
- version: 6
- -3,-3:
- ind: -3,-3
- tiles: fwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAUgAAAAAAUgAAAAAAOQAAAAAAUgAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAUgAAAAAAUgAAAAAAOQAAAAAAJQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAUgAAAAAAUgAAAAAAOQAAAAAAUgAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAUgAAAAAAUgAAAAAAEgAAAAAAUgAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAUgAAAAAAUgAAAAAAEgAAAAAAJQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcQAAAAAAcQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAUgAAAAAAUgAAAAAAEgAAAAAAUgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJQAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADOQAAAAAAIAAAAAACgQAAAAAAIAAAAAADOQAAAAAAIAAAAAADgQAAAAAAIAAAAAABOQAAAAAAIAAAAAAC
- version: 6
- -3,-4:
- ind: -3,-4
- tiles: GgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAZwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABIAAAAAAAYAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAIAAAAAAAYAAAAAACGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAA
- version: 6
- -5,-3:
- ind: -5,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAhQAAAAAAgQAAAAAAZwAAAAAAhAAAAAAAcAAAAAAAVAAAAAAAZwAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAYAAAAAAAcAAAAAAAVAAAAAAAYAAAAAAAhQAAAAAAVAAAAAAAgQAAAAAAhAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
->>>>>>> master
version: 6
-5,-4:
ind: -5,-4
@@ -278,7 +202,6 @@ entities:
version: 6
-4,-4:
ind: -4,-4
-<<<<<<< HEAD
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-4,-2:
@@ -288,17 +211,6 @@ entities:
-3,-2:
ind: -3,-2
tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABJQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACJQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADJQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADJQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAIAAAAAACOQAAAAAAIAAAAAABgQAAAAAAIAAAAAABOQAAAAAAIAAAAAADgQAAAAAAIAAAAAACOQAAAAAAIAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
-=======
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
- version: 6
- -4,-2:
- ind: -4,-2
- tiles: gQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADJQAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAJQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABIAAAAAAAAAAAAAAAgAAAAAAAJQAAAAAAYAAAAAABJQAAAAAAYAAAAAACYAAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAD
- version: 6
- -3,-2:
- ind: -3,-2
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABJQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACJQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADJQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADJQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAIAAAAAACOQAAAAAAIAAAAAABgQAAAAAAIAAAAAABOQAAAAAAIAAAAAADgQAAAAAAIAAAAAACOQAAAAAAIAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
->>>>>>> master
version: 6
0,-4:
ind: 0,-4
@@ -314,7 +226,6 @@ entities:
version: 6
2,-3:
ind: 2,-3
-<<<<<<< HEAD
tiles: YAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAACcwAAAAACJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAcwAAAAAAcwAAAAABcwAAAAACgQAAAAAAcwAAAAAD
version: 6
2,-2:
@@ -328,109 +239,78 @@ entities:
2,-5:
ind: 2,-5
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAYAAAAAADgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAADJQAAAAAAcwAAAAACcwAAAAABYAAAAAAAcwAAAAABcwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAYAAAAAADgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABXAAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAYAAAAAABJQAAAAAAcwAAAAADcwAAAAACcwAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAYAAAAAABgQAAAAAAcwAAAAADgQAAAAAAcwAAAAADgQAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA
-=======
- tiles: YAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAACcwAAAAACJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAcwAAAAAAcwAAAAABcwAAAAACgQAAAAAAcwAAAAAD
- version: 6
- 2,-2:
- ind: 2,-2
- tiles: cwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAAQAAAAAAJQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAJQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADJQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACJQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABJQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAYAAAAAAAIAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAA
- version: 6
- 2,-4:
- ind: 2,-4
- tiles: AAAAAAAAgQAAAAAAcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAGgAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAcwAAAAADJQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAADJQAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAGgAAAAAAYAAAAAACJQAAAAAAcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAfQAAAAAAgQAAAAAAIAAAAAABQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAABIAAAAAADQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAJQAAAAAAfQAAAAADfQAAAAACfQAAAAADfQAAAAABIAAAAAADQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAIAAAAAADQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAIAAAAAACQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACIAAAAAABfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
- version: 6
- 2,-5:
- ind: 2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAYAAAAAADgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAADJQAAAAAAcwAAAAACcwAAAAABYAAAAAAAcwAAAAABcwAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAYAAAAAADgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABXAAAAAAAcwAAAAADgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAYAAAAAABJQAAAAAAcwAAAAADcwAAAAACcwAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAYAAAAAABgQAAAAAAcwAAAAADgQAAAAAAcwAAAAADgQAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAA
->>>>>>> master
version: 6
1,-5:
ind: 1,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAcwAAAAABcwAAAAAAYAAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: gAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA
+ tiles: gAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA
version: 6
-5,-1:
ind: -5,-1
- tiles: AAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAGgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAKQAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAUQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAKQAAAAAAIAAAAAAAgQAAAAAAKQAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAKQAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAUQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAKQAAAAAAIAAAAAAAgQAAAAAAKQAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: JQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAUQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAIAAAAAADYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABYAAAAAACgQAAAAAAIAAAAAADYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABYAAAAAABgQAAAAAAIAAAAAADYAAAAAAAYAAAAAAAIAAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAADYAAAAAABgQAAAAAAIAAAAAACIAAAAAAAYAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAACYAAAAAACgQAAAAAAIAAAAAABIAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAACYAAAAAACgQAAAAAAIAAAAAACIAAAAAABYAAAAAAAIAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABIAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABJQAAAAAAYAAAAAADYAAAAAAA
+ tiles: gQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAUQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABYAAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABYAAAAAABgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAADYAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAACYAAAAAACgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAACYAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAIAAAAAACIAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABIAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: AAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYgAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYgAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYgAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAGgAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYgAAAAAAYAAAAAADgQAAAAAAYAAAAAACIAAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAADYAAAAAACYgAAAAAAYAAAAAACYAAAAAAAJQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYgAAAAAAYAAAAAAAYAAAAAABJQAAAAAAYAAAAAADYgAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAADYgAAAAAAYAAAAAABYAAAAAAAJQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYgAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYgAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYgAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAB
+ tiles: AAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAADMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAB
version: 6
-4,0:
ind: -4,0
- tiles: agAAAAAAagAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABagAAAAAAagAAAAAAJQAAAAAAYAAAAAACYAAAAAACYAAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAagAAAAAAagAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAABQgAAAAAAQgAAAAAAIAAAAAAAgQAAAAAAIAAAAAADYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAACYAAAAAAAYAAAAAACYAAAAAAAIAAAAAAAIAAAAAABIAAAAAADQgAAAAAAQgAAAAAAIAAAAAABgQAAAAAAIAAAAAACYAAAAAAAYAAAAAAAIAAAAAADgQAAAAAAIAAAAAABYAAAAAAAYAAAAAAAYAAAAAADIAAAAAAAgQAAAAAAIAAAAAACQgAAAAAAQgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACIAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACJQAAAAAAYAAAAAAAYAAAAAACYAAAAAACIAAAAAABIAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACJQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAA
+ tiles: agAAAAAAagAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABagAAAAAAagAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAagAAAAAAagAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAYAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAABQgAAAAAAQgAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAIAAAAAACYAAAAAAAYAAAAAACYAAAAAAAIAAAAAAAIAAAAAABIAAAAAADQgAAAAAAQgAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADgQAAAAAAIAAAAAABYAAAAAAAYAAAAAAAYAAAAAADIAAAAAAAgQAAAAAAIAAAAAACQgAAAAAAQgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACIAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACIAAAAAAAYAAAAAAAYAAAAAACYAAAAAACIAAAAAABIAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAA
version: 6
-3,-1:
ind: -3,-1
-<<<<<<< HEAD
tiles: YAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAA
version: 6
-3,0:
ind: -3,0
tiles: gQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAYAAAAAABIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAYAAAAAACMAAAAAAAYAAAAAABYAAAAAABYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAADYAAAAAACYAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADIAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADJQAAAAAAYAAAAAADMAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABIAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADJQAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACIAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADIAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACIAAAAAAA
-=======
- tiles: YAAAAAACYAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYAAAAAADYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAYAAAAAADYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAYAAAAAABYAAAAAABIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAA
- version: 6
- -3,0:
- ind: -3,0
- tiles: gQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAJQAAAAAAIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABJQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABJQAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABJQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAADYAAAAAACYAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADIAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABIAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACIAAAAAAAYAAAAAAAYAAAAAABJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABMAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADIAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABMAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACIAAAAAAA
->>>>>>> master
version: 6
-5,1:
ind: -5,1
- tiles: gQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
+ tiles: gQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAfQAAAAACfQAAAAABgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAADgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
version: 6
-6,0:
ind: -6,0
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA
+ tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA
version: 6
-6,1:
ind: -6,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: fgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAIAAAAAABIAAAAAACfgAAAAAAfgAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAIAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAA
+ tiles: fQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAIAAAAAABIAAAAAACfQAAAAADfQAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAIAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAIAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADgQAAAAAAIAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
version: 6
-3,1:
ind: -3,1
-<<<<<<< HEAD
tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAACYAAAAAACYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAYAAAAAADYAAAAAAAMAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAJQAAAAAALwAAAAAALwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABQgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAAAfQAAAAACfQAAAAACQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
-=======
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABMAAAAAAAYAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAACYAAAAAACYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAYAAAAAADYAAAAAAAMAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAABMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAJQAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABQgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAALwAAAAAALwAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAAAfQAAAAACfQAAAAACQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
->>>>>>> master
version: 6
-5,2:
ind: -5,2
- tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAADYAAAAAADYAAAAAADYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAACYAAAAAADYAAAAAABYAAAAAABIAAAAAADgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAACYAAAAAAAYAAAAAAAYAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAIAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAIAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAABIAAAAAABIAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAJQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
+ tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAADYAAAAAADYAAAAAADYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAACYAAAAAADYAAAAAABYAAAAAABIAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAACYAAAAAAAYAAAAAAAYAAAAAABIAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAIAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAIAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAABIAAAAAABIAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
version: 6
-5,3:
ind: -5,3
- tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABQAAAAAABQAAAAAADQAAAAAAJQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAGgAAAAAAgQAAAAAABgAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAgQAAAAAACQAAAAAABgAAAAAACQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA
version: 6
-4,3:
ind: -4,3
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADQAAAAAADQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAADQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAADQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA
+ tiles: gQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA
version: 6
-3,2:
ind: -3,2
-<<<<<<< HEAD
tiles: bwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAACwAAAAAADAAAAAAACwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYAAAAAACYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADAAAAAAADAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADAAAAAAADAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAA
-=======
- tiles: IAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAACwAAAAAADAAAAAAACwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYAAAAAACYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADAAAAAAADAAAAAAAYAAAAAADYAAAAAABJQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADAAAAAAADAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAgQAAAAAAYAAAAAADYAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAA
->>>>>>> master
version: 6
-4,4:
ind: -4,4
@@ -438,7 +318,7 @@ entities:
version: 6
-5,4:
ind: -5,4
- tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,5:
ind: -5,5
@@ -454,11 +334,7 @@ entities:
version: 6
-3,3:
ind: -3,3
-<<<<<<< HEAD
tiles: gQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAhQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAFgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAfQAAAAABhAAAAAAAfQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADFgAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAADgQAAAAAA
-=======
- tiles: gQAAAAAAYAAAAAABYAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADJQAAAAAAYAAAAAADJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAhQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAFgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAfQAAAAABhAAAAAAAfQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADFgAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAADgQAAAAAA
->>>>>>> master
version: 6
-1,2:
ind: -1,2
@@ -478,7 +354,6 @@ entities:
version: 6
0,3:
ind: 0,3
-<<<<<<< HEAD
tiles: bwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAADJQAAAAAAYAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABJQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAJQAAAAAAYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABJQAAAAAAYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
version: 6
-2,4:
@@ -492,25 +367,10 @@ entities:
0,4:
ind: 0,4
tiles: IAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAJQAAAAAAbwAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAJQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAADYAAAAAACJQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADJQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADJQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAACMAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAA
-=======
- tiles: bwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAADJQAAAAAAYAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABJQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAJQAAAAAAYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABJQAAAAAAYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
- version: 6
- -2,4:
- ind: -2,4
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAIAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAYAAAAAABYAAAAAAAYAAAAAABJQAAAAAAYAAAAAACJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAADIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,4:
- ind: -1,4
- tiles: IAAAAAADMAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAMAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAYAAAAAABIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 0,4:
- ind: 0,4
- tiles: IAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAJQAAAAAAbwAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAJQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABMAAAAAAAYAAAAAADYAAAAAACJQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADJQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADJQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAACMAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAA
->>>>>>> master
version: 6
1,5:
ind: 1,5
- tiles: gQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA
+ tiles: gQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA
version: 6
-1,5:
ind: -1,5
@@ -522,7 +382,6 @@ entities:
version: 6
0,5:
ind: 0,5
-<<<<<<< HEAD
tiles: AAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACYAAAAAACJQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAABMAAAAAAAYAAAAAACYAAAAAABJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAABMAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACJQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,4:
@@ -532,17 +391,6 @@ entities:
-2,5:
ind: -2,5
tiles: IAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAYAAAAAABYAAAAAACYAAAAAABJQAAAAAAYAAAAAADJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAADIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
-=======
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACYAAAAAACJQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAABMAAAAAAAYAAAAAACYAAAAAABJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAABMAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACJQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAKQAAAAAAYAAAAAACKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,4:
- ind: 1,4
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAJQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAJQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAADwAAAAABDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADDwAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAJQAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAAADwAAAAACDwAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAJQAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAABDwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -2,5:
- ind: -2,5
- tiles: IAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAYAAAAAABYAAAAAACYAAAAAABJQAAAAAAYAAAAAADJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAADIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
->>>>>>> master
version: 6
-2,6:
ind: -2,6
@@ -550,19 +398,11 @@ entities:
version: 6
0,-5:
ind: 0,-5
-<<<<<<< HEAD
tiles: UAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAYAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAA
version: 6
-1,-5:
ind: -1,-5
tiles: QgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAUAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAUAAAAAAAUAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAMAAAAAAAMAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAMAAAAAAAMAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAYAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAMAAAAAAAMAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQgAAAAAAQgAAAAAAIAAAAAADIAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAUAAAAAAAUAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAQgAAAAAAQgAAAAAAIAAAAAADIAAAAAACgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQgAAAAAAQgAAAAAAIAAAAAABIAAAAAABgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAgQAAAAAAMgAAAAAAJQAAAAAAJQAAAAAAMgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAABgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAUAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAUAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAUAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAgQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAgQAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
-=======
- tiles: UAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAA
- version: 6
- -1,-5:
- ind: -1,-5
- tiles: QgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAUAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAUAAAAAAAUAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADIAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAUAAAAAAAUAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADIAAAAAACgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQgAAAAAAQgAAAAAAIAAAAAABIAAAAAABgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAgQAAAAAAMgAAAAAAJQAAAAAAJQAAAAAAMgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAFAAAAAAAFAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAABgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAFAAAAAAAFAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAJQAAAAAAUAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAJQAAAAAAUAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAJQAAAAAAUAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMgAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAgQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAgQAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
->>>>>>> master
version: 6
-1,-6:
ind: -1,-6
@@ -570,7 +410,6 @@ entities:
version: 6
0,-6:
ind: 0,-6
-<<<<<<< HEAD
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAMgAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA
version: 6
-2,-5:
@@ -584,25 +423,10 @@ entities:
-3,-5:
ind: -3,-5
tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACQgAAAAAAQgAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABQgAAAAAAQgAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACQgAAAAAAQgAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAADQgAAAAAAQgAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAAA
-=======
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAMgAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -2,-5:
- ind: -2,-5
- tiles: QgAAAAAAQgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACgQAAAAAAIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAACQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACQgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAJQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAJQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAAC
- version: 6
- -2,-6:
- ind: -2,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAB
- version: 6
- -3,-5:
- ind: -3,-5
- tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAA
->>>>>>> master
version: 6
-3,-6:
ind: -3,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
version: 6
1,2:
ind: 1,2
@@ -626,7 +450,6 @@ entities:
version: 6
2,-1:
ind: 2,-1
-<<<<<<< HEAD
tiles: JQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAIAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAACYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAABYAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABMAAAAAAAYAAAAAAAIAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAABMAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAABJQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAA
version: 6
3,-2:
@@ -640,21 +463,6 @@ entities:
4,-1:
ind: 4,-1
tiles: gQAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAAAcwAAAAAAcwAAAAAAIAAAAAAAJQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAPQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAPQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAA
-=======
- tiles: JQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAIAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAACYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAABYAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAMAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABMAAAAAAAYAAAAAAAIAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAACMAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACMAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADMAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAAAYAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAABMAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABMAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAABJQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAA
- version: 6
- 3,-2:
- ind: 3,-2
- tiles: cwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABJQAAAAAAYAAAAAAAYAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAAAYAAAAAAAYAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABJQAAAAAAYAAAAAAAYAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAABYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAA
- version: 6
- 3,-1:
- ind: 3,-1
- tiles: cwAAAAAAcwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA
- version: 6
- 4,-1:
- ind: 4,-1
- tiles: gQAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAJQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAAAcwAAAAAAcwAAAAAAIAAAAAAAJQAAAAAAbwAAAAAAbwAAAAAAJQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYgAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAA
->>>>>>> master
version: 6
4,-2:
ind: 4,-2
@@ -666,7 +474,6 @@ entities:
version: 6
3,-3:
ind: 3,-3
-<<<<<<< HEAD
tiles: gQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAABcwAAAAABJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA
version: 6
3,-4:
@@ -692,37 +499,10 @@ entities:
4,1:
ind: 4,1
tiles: IAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAgQAAAAAAbwAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAKwAAAAAAUQAAAAAAMAAAAAAAKwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAUQAAAAAAMAAAAAAAKwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAUQAAAAAAMAAAAAAAUQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAMAAAAAAAUQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA
-=======
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAJQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAUQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAABcwAAAAABJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA
- version: 6
- 3,-4:
- ind: 3,-4
- tiles: GgAAAAAAGgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfQAAAAACIAAAAAACgQAAAAAAGgAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfQAAAAACIAAAAAACgQAAAAAAGgAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfQAAAAABIAAAAAABgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAfQAAAAADIAAAAAADgQAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAfQAAAAABIAAAAAADgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 2,0:
- ind: 2,0
- tiles: gQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAADJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAACYAAAAAADgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA
- version: 6
- 3,0:
- ind: 3,0
- tiles: IAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA
- version: 6
- 2,1:
- ind: 2,1
- tiles: GgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAJQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAYAAAAAAAZwAAAAAAZwAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAZwAAAAAAYAAAAAAAZwAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAZwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAZwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA
- version: 6
- 3,1:
- ind: 3,1
- tiles: IAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
- version: 6
- 4,1:
- ind: 4,1
- tiles: IAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgQAAAAAAbwAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA
->>>>>>> master
version: 6
5,-1:
ind: 5,-1
- tiles: gAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAATgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKQAAAAAAYgAAAAAAgQAAAAAAYgAAAAAAKQAAAAAAYgAAAAAAgQAAAAAAYgAAAAAAKQAAAAAAYgAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKQAAAAAAYgAAAAAAgQAAAAAAYgAAAAAAKQAAAAAAYgAAAAAAgQAAAAAAYgAAAAAAKQAAAAAAYgAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAMAAAAAAAJQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: gAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAATgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAPQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,5:
ind: 2,5
@@ -742,19 +522,11 @@ entities:
version: 6
4,0:
ind: 4,0
-<<<<<<< HEAD
tiles: IAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-3:
ind: 4,-3
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
-=======
- tiles: IAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAYAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 4,-3:
- ind: 4,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAGgAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
->>>>>>> master
version: 6
5,-4:
ind: 5,-4
@@ -766,7 +538,7 @@ entities:
version: 6
3,-5:
ind: 3,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,5:
ind: -6,5
@@ -778,7 +550,7 @@ entities:
version: 6
-4,-5:
ind: -4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA
version: 6
-4,-6:
ind: -4,-6
@@ -786,19 +558,15 @@ entities:
version: 6
-6,-2:
ind: -6,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-1:
ind: -6,-1
- tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAJQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA
+ tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA
version: 6
5,0:
ind: 5,0
-<<<<<<< HEAD
tiles: ZwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAA
-=======
- tiles: YAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAIAAAAAAAYgAAAAAAgQAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAA
->>>>>>> master
version: 6
5,1:
ind: 5,1
@@ -806,11 +574,11 @@ entities:
version: 6
6,0:
ind: 6,0
- tiles: fgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
6,-1:
ind: 6,-1
- tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAALwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAALwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAALwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-1:
ind: -7,-1
@@ -826,19 +594,19 @@ entities:
version: 6
4,2:
ind: 4,2
- tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: UQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,2:
ind: 3,2
- tiles: gQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,1:
ind: -7,1
- tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAfgAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
+ tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
version: 6
-8,1:
ind: -8,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAGgAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA
version: 6
-8,0:
ind: -8,0
@@ -846,27 +614,27 @@ entities:
version: 6
-8,2:
ind: -8,2
- tiles: GgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAIAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAIAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAA
+ tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAIAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAIAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAEgAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAA
version: 6
-8,3:
ind: -8,3
- tiles: AAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,2:
ind: -7,2
- tiles: fgAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAfgAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,3:
ind: -7,3
- tiles: GgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-9,2:
ind: -9,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
version: 6
-9,1:
ind: -9,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
version: 6
-6,2:
ind: -6,2
@@ -908,74 +676,42 @@ entities:
color: '#DE3A3A96'
id: 1
decals:
-<<<<<<< HEAD
1829: 59,19
-=======
- 812: 59,19
->>>>>>> master
- node:
color: '#DE3A3A96'
id: 2
decals:
-<<<<<<< HEAD
1830: 60,19
-=======
- 813: 60,19
->>>>>>> master
- node:
color: '#DE3A3A96'
id: 3
decals:
-<<<<<<< HEAD
1831: 61,19
-=======
- 814: 61,19
->>>>>>> master
- node:
color: '#DE3A3A96'
id: 4
decals:
-<<<<<<< HEAD
1832: 62,19
-=======
- 815: 62,19
->>>>>>> master
- node:
color: '#DE3A3A96'
id: 5
decals:
-<<<<<<< HEAD
1833: 63,19
-=======
- 816: 63,19
->>>>>>> master
- node:
color: '#DE3A3A96'
id: 6
decals:
-<<<<<<< HEAD
1834: 64,19
-=======
- 817: 64,19
->>>>>>> master
- node:
color: '#DE3A3A96'
id: 7
decals:
-<<<<<<< HEAD
1835: 65,19
-=======
- 818: 65,19
->>>>>>> master
- node:
color: '#DE3A3A96'
id: 8
decals:
-<<<<<<< HEAD
1836: 66,19
-=======
- 819: 66,19
->>>>>>> master
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -983,16 +719,12 @@ entities:
decals:
58: 6,31
- node:
- color: '#FFFFFFFF'
- id: Basalt2
+ color: '#A91409FF'
+ id: Bot
decals:
-<<<<<<< HEAD
2114: 50,26
2115: 50,25
2116: 50,24
-=======
- 16362: 88,3
->>>>>>> master
- node:
color: '#FFFFFFFF'
id: Bot
@@ -1029,7 +761,6 @@ entities:
56: 10,50
57: 10,49
93: -41,-38
-<<<<<<< HEAD
106: 26,-60
107: 26,-61
108: 26,-62
@@ -1176,76 +907,11 @@ entities:
9535: 5,28
9536: 4,28
9626: 24,18
-=======
- 105: 26,-60
- 106: 26,-61
- 107: 26,-62
- 108: 27,-62
- 109: 28,-62
- 126: -74,12
- 137: -27,15
- 138: -24,15
- 141: -37,14
- 142: -37,13
- 143: -35,14
- 144: -35,13
- 145: -35,11
- 146: -35,10
- 147: -37,10
- 148: -37,11
- 150: -36,23
- 166: 31,60
- 209: -67,-28
- 718: -41,-36
- 763: 63,13
- 764: 62,13
- 984: 29,32
- 1007: -31,-54
- 1082: -32,-40
- 1083: -32,-47
- 1164: -95,-6
- 1165: -91,-6
- 1166: -91,-10
- 1167: -95,-10
- 1242: 61,9
- 1243: 61,8
- 1244: 61,7
- 1245: 63,7
- 1246: 63,8
- 1247: 63,9
- 1850: -63,-24
- 1851: -63,-25
- 1852: -63,-27
- 1853: -63,-28
- 1854: -61,-27
- 1855: -61,-28
- 1856: -61,-25
- 1857: -61,-24
- 7286: 4,29
- 7287: 5,29
- 7288: 6,29
- 7289: 7,29
- 7290: 8,29
- 7291: 8,28
- 7292: 7,28
- 7293: 7,28
- 7294: 6,28
- 7295: 5,28
- 7296: 4,28
- 7369: 24,18
- 19113: 12,-13
- 19114: 13,-13
- 19115: 14,-13
- 19116: 14,-14
- 19117: 13,-14
- 19118: 12,-14
->>>>>>> master
- node:
cleanable: True
color: '#FFFFFFFF'
id: Bot
decals:
-<<<<<<< HEAD
1397: -121,17
1398: -123,17
2258: 33,36
@@ -1254,16 +920,6 @@ entities:
2261: 33,35
2262: 33,34
2263: 34,34
-=======
- 644: -121,17
- 645: -123,17
- 957: 33,36
- 958: 34,36
- 959: 34,35
- 960: 33,35
- 961: 33,34
- 962: 34,34
->>>>>>> master
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -1278,21 +934,15 @@ entities:
90: -12,-31
91: -12,-32
92: -14,-31
-<<<<<<< HEAD
361: -44,40
362: -44,41
1054: 6,-64
1055: 6,-68
1056: 6,-72
-=======
- 156: -44,40
- 157: -44,41
->>>>>>> master
- node:
color: '#0096FFFF'
id: BotGreyscale
decals:
-<<<<<<< HEAD
2580: 59,7
2581: 59,8
2582: 59,9
@@ -1316,19 +966,10 @@ entities:
2122: 56,23
2123: 57,23
2124: 50,27
-=======
- 1232: 59,7
- 1233: 59,8
- 1234: 59,9
- 1235: 57,9
- 1236: 57,8
- 1237: 57,7
->>>>>>> master
- node:
color: '#FF0000FF'
id: BotGreyscale
decals:
-<<<<<<< HEAD
2602: 65,7
2603: 65,8
2604: 65,9
@@ -1340,120 +981,64 @@ entities:
2610: 69,10
2611: 70,10
2612: 70,8
-=======
- 1254: 65,7
- 1255: 65,8
- 1256: 65,9
- 1257: 67,9
- 1258: 67,8
- 1259: 67,7
- 1260: 68,8
- 1261: 68,10
- 1262: 69,10
- 1263: 70,10
- 1264: 70,8
->>>>>>> master
- node:
color: '#FFFFFFFF'
id: BotGreyscale
decals:
-<<<<<<< HEAD
2477: -95,-3
2478: -91,-3
2479: -91,-13
2480: -95,-13
3472: -59,-24
3473: -59,-25
-=======
- 1168: -95,-3
- 1169: -91,-3
- 1170: -91,-13
- 1171: -95,-13
- 1968: -59,-24
- 1969: -59,-25
->>>>>>> master
- node:
cleanable: True
color: '#FFFFFFFF'
id: BotGreyscale
decals:
-<<<<<<< HEAD
484: -16,-1
485: -16,0
486: -16,1
487: -16,2
488: -16,3
489: -16,4
-=======
- 228: -16,-1
- 229: -16,0
- 230: -16,1
- 231: -16,2
- 232: -16,3
- 233: -16,4
->>>>>>> master
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: BotGreyscale
decals:
-<<<<<<< HEAD
310: -72,7
311: -72,5
312: -72,6
313: -71,6
314: -73,6
-=======
- 131: -72,7
- 132: -72,5
- 133: -72,6
- 134: -71,6
- 135: -73,6
->>>>>>> master
- node:
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
-<<<<<<< HEAD
306: -71,7
-=======
- 127: -71,7
->>>>>>> master
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
-<<<<<<< HEAD
307: -73,7
-=======
- 128: -73,7
->>>>>>> master
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
-<<<<<<< HEAD
308: -73,5
-=======
- 129: -73,5
->>>>>>> master
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
-<<<<<<< HEAD
309: -71,5
-=======
- 130: -71,5
->>>>>>> master
- node:
color: '#FFFFFFFF'
id: BotRight
decals:
-<<<<<<< HEAD
1300: -50,25
1301: -49,25
1302: -48,25
@@ -1462,32 +1047,16 @@ entities:
2218: -48,24
2219: -49,24
2220: -50,24
-=======
- 572: -50,25
- 573: -49,25
- 574: -48,25
- 575: -47,25
- 916: -47,24
- 917: -48,24
- 918: -49,24
- 919: -50,24
->>>>>>> master
- node:
color: '#A9DA8BFF'
id: Box
decals:
-<<<<<<< HEAD
4932: -31,45
4933: -31,38
-=======
- 3218: -31,45
- 3219: -31,38
->>>>>>> master
- node:
color: '#FFFFFFFF'
id: Box
decals:
-<<<<<<< HEAD
319: -52,22
320: -52,20
1241: -93,-8
@@ -1513,64 +1082,18 @@ entities:
2613: 68,3
2614: 69,3
2615: 70,3
-=======
- 567: -93,-8
- 719: 20,-53
- 755: 64,13
- 756: 65,13
- 757: 66,13
- 758: 66,11
- 759: 65,11
- 760: 64,11
- 768: 78,23
- 769: 77,23
- 1005: -30,-53
- 1006: -31,-53
- 1008: -31,-52
- 1075: -35,-44
- 1076: -35,-46
- 1077: -35,-41
- 1078: -35,-39
->>>>>>> master
- node:
cleanable: True
color: '#FFFFFFFF'
id: Box
decals:
-<<<<<<< HEAD
2273: 29,28
2274: 29,27
2275: 29,26
-=======
- 972: 29,28
- 973: 29,27
- 974: 29,26
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkBox
- decals:
- 19938: 55,9
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkBox
- decals:
- 18375: -61,57
- 18376: -63,53
- 18377: -61,50
- 18378: -61,48
- 18379: -59,55
- 18380: -54,43
- 18381: -56,43
- 18382: -51,41
- 18383: -55,39
- 18384: -48,43
- 18385: -46,41
->>>>>>> master
- node:
color: '#FFFFFFFF'
- id: BrickTileDarkBox
+ id: BoxGreyscale
decals:
-<<<<<<< HEAD
242: -62,4
- node:
color: '#DA8B8BFF'
@@ -2094,711 +1617,10 @@ entities:
id: BrickTileDarkCornerNe
decals:
5758: 7,90
-=======
- 2178: -8,30
- 2179: -8,33
- 2180: -4,30
- 2181: -8,27
- 2198: -9,25
- 2456: -14,48
- 2457: -14,50
- 2479: -25,41
- 2532: -28,30
- 2595: -31,29
- 2616: -30,39
- 2720: -9,45
- 2810: -5,37
- 2811: -1,42
- 2813: -1,40
- 2843: -1,55
- 2844: -2,51
- 2900: 3,49
- 2902: -12,51
- 2918: -6,51
- 2973: -1,48
- 2995: -4,47
- 3041: -30,44
- 3042: -32,44
- 3192: -36,49
- 3193: -38,44
- 3640: -1,61
- 3643: 2,59
- 3769: -14,77
- 3770: -16,77
- 3771: -10,77
- 3772: -8,77
- 3848: 4,77
- 3849: 2,77
- 3850: 4,84
- 3851: 2,84
- 3852: 6,86
- 3888: 6,66
- 3894: 4,64
- 3897: 4,60
- 3900: 5,91
- 3913: 10,83
- 3914: 13,78
- 3915: 12,73
- 3920: 10,89
- 3921: 12,87
- 3925: 5,93
- 3926: 10,91
- 3930: -22,55
- 3932: -25,66
- 3934: -25,63
- 3935: -25,61
- 3936: -25,59
- 3937: -28,59
- 3938: -30,66
- 3980: 4,57
- 4027: 9,68
- 4031: 13,67
- 4098: 24,66
- 4099: 16,66
- 4128: 7,58
- 4172: -31,59
- 4173: -38,58
- 4174: -38,58
- 4175: -38,58
- 4176: -36,58
- 4342: -21,20
- 4380: -25,18
- 4381: -21,20
- 4382: -21,17
- 4417: -10,12
- 4613: 1,29
- 4616: 4,32
- 4617: 9,32
- 4618: 11,28
- 4619: 11,30
- 4620: 13,33
- 4710: 15,33
- 4747: 10,38
- 4748: 5,38
- 4749: 10,41
- 4834: 12,45
- 4835: 12,43
- 4900: 19,24
- 4901: 21,25
- 4910: 28,31
- 4911: 23,36
- 5039: 28,39
- 5110: 33,51
- 5111: 33,49
- 5112: 39,51
- 5150: 10,55
- 5151: 17,55
- 5311: 39,52
- 5312: 39,48
- 5313: 33,48
- 5314: 33,52
- 5315: 39,49
- 5340: 31,29
- 5341: 35,29
- 5342: 37,30
- 5343: 35,33
- 5411: 34,39
- 5425: 37,37
- 5822: -17,4
- 5823: -17,-1
- 5879: -35,26
- 5928: -1,-7
- 5929: 8,-7
- 5937: 15,-4
- 5940: -11,6
- 5941: -15,4
- 5942: -14,-5
- 5951: 8,12
- 5982: 13,3
- 5997: 8,4
- 6010: 10,-1
- 6069: 12,-3
- 6098: -10,-7
- 6538: -4,-13
- 6539: 2,-13
- 6540: -4,-18
- 6541: -3,-16
- 6646: 8,-18
- 6647: 11,-16
- 6736: -21,-20
- 6838: -24,-10
- 6979: -31,1
- 6991: -24,-1
- 6992: -23,3
- 7011: -28,-17
- 7077: -17,-1
- 7079: -31,7
- 7080: -36,7
- 7085: -26,16
- 7112: -42,2
- 7204: -36,17
- 7257: -24,-19
- 7258: -24,-19
- 7329: 19,12
- 7331: 19,18
- 7332: 21,18
- 7364: 24,18
- 7401: 22,7
- 7421: 22,11
- 7423: 22,3
- 7424: 19,-3
- 7425: 22,-9
- 7472: 24,-8
- 7523: 32,1
- 7524: 35,3
- 7525: 36,-3
- 7526: 24,-2
- 7529: 30,3
- 7639: 29,7
- 7640: 27,11
- 7702: 33,6
- 7703: 33,4
- 7704: 36,7
- 7705: 36,10
- 7706: 38,6
- 7707: 38,4
- 7728: 45,8
- 7729: 40,10
- 7730: 45,12
- 7731: 40,2
- 7732: 45,0
- 7733: 36,10
- 7842: 49,4
- 7845: 49,8
- 7848: 53,10
- 7860: 47,14
- 7861: 51,14
- 7873: 49,16
- 7886: 37,20
- 7887: 44,20
- 7888: 52,20
- 7889: 57,20
- 7890: 55,17
- 7891: 60,25
- 7922: 49,12
- 7926: 68,25
- 7931: 75,24
- 7932: 75,26
- 7933: 73,20
- 7934: 71,18
- 7935: 71,13
- 7936: 71,6
- 7937: 73,4
- 7938: 75,9
- 7939: 79,9
- 7940: 83,11
- 7941: 94,17
- 7942: 94,21
- 7943: 90,21
- 7944: 92,27
- 7945: 92,24
- 7946: 83,11
- 7947: 73,4
- 7948: 72,-4
- 7949: 72,-4
- 7950: 69,-2
- 7951: 69,-2
- 7952: 64,-4
- 7953: 64,-4
- 7954: 61,-2
- 7955: 65,-2
- 7956: 57,-2
- 7957: 52,-2
- 7958: 47,-2
- 7959: 47,-2
- 7960: 47,-6
- 8005: 58,2
- 8006: 62,2
- 8007: 66,2
- 8008: 62,10
- 8009: 61,12
- 8010: 71,6
- 8029: 71,18
- 8030: 71,13
- 8035: 73,20
- 8155: 68,-1
- 8156: 68,1
- 8157: 71,-1
- 8158: 71,1
- 8340: 64,-19
- 8341: 66,-19
- 8342: 66,-22
- 8343: 64,-22
- 8344: 76,-22
- 8345: 76,-19
- 8346: 78,-19
- 8347: 78,-22
- 8348: 82,-22
- 8349: 82,-19
- 8350: 84,-19
- 8351: 84,-22
- 8406: 54,-21
- 8407: 54,-19
- 8408: 54,-11
- 8473: 23,-15
- 8474: 25,-13
- 8475: 32,-16
- 8476: 27,-17
- 8477: 29,-17
- 8478: 31,-17
- 8533: 25,-19
- 8540: 32,-12
- 8541: 32,-10
- 8542: 32,-10
- 8601: 33,-6
- 8605: 42,-8
- 8606: 39,-18
- 8607: 41,-18
- 8608: 41,-18
- 8609: 42,-19
- 8610: 42,-21
- 8613: 44,-22
- 8614: 48,-22
- 8615: 52,-22
- 8666: 40,-17
- 8744: 46,-13
- 8785: 52,-18
- 8959: 54,-29
- 9934: 2,-35
- 9935: 5,-29
- 9936: 11,-29
- 9937: 13,-29
- 9938: 12,-33
- 9939: 15,-31
- 10004: 9,-36
- 10005: 9,-34
- 10006: 5,-37
- 10011: 1,-39
- 10090: 15,-35
- 10121: 21,-33
- 10122: 29,-33
- 10123: 36,-33
- 10124: 33,-23
- 10125: 29,-28
- 10126: 23,-29
- 10127: 29,-40
- 10128: 25,-44
- 10129: 29,-44
- 10130: 29,-50
- 10131: 19,-44
- 10132: 22,-50
- 10133: 17,-48
- 10136: 27,-54
- 10300: 15,-44
- 10342: 39,-35
- 10347: 37,-43
- 10476: 35,-26
- 10477: 37,-27
- 10478: 37,-25
- 10556: 31,-54
- 10695: 4,-42
- 10696: 1,-44
- 10697: 9,-42
- 10698: 4,-48
- 10699: 1,-51
- 10700: 10,-54
- 10701: 8,-56
- 10702: 2,-55
- 10703: 12,-56
- 10704: 10,-57
- 10705: 7,-57
- 10706: 13,-47
- 10707: 17,-54
- 10887: 25,-56
- 10888: 29,-56
- 10913: 2,-60
- 10914: 2,-60
- 10915: 5,-63
- 10916: 5,-63
- 10928: 5,-73
- 10929: 5,-73
- 10930: 7,-75
- 10931: 5,-79
- 10932: 4,-87
- 10933: 4,-83
- 10934: 7,-77
- 10935: 7,-65
- 11067: 76,-45
- 11068: 73,-41
- 11069: 68,-41
- 11070: 73,-48
- 11071: 71,-50
- 11246: 33,-61
- 11298: 42,-62
- 11299: 37,-62
- 11314: 33,-68
- 11315: 37,-70
- 11316: 39,-72
- 11317: 41,-72
- 11318: 41,-72
- 11608: -61,-43
- 11609: -59,-33
- 11610: -59,-40
- 11611: -47,-46
- 11612: -47,-42
- 11724: -11,-83
- 11725: -11,-79
- 11726: -6,-83
- 11727: -4,-83
- 11728: -4,-83
- 11729: 2,-87
- 11730: -4,-87
- 11731: -6,-87
- 11735: 2,-83
- 11778: -24,-63
- 11779: -23,-71
- 11780: -23,-77
- 11781: -23,-79
- 11782: -21,-77
- 11783: -18,-78
- 11784: -12,-78
- 11785: -14,-77
- 11786: -19,-81
- 11787: -10,-63
- 11792: -34,-51
- 11793: -36,-53
- 11794: -34,-55
- 11795: -32,-53
- 11796: -3,-48
- 11806: -4,-35
- 11810: -6,-29
- 11814: -15,-29
- 11815: -13,-29
- 12051: -11,-35
- 12052: -11,-34
- 12053: -13,-33
- 12054: -15,-33
- 12104: -7,-37
- 12105: -6,-45
- 12106: -12,-50
- 12107: -20,-52
- 12108: -18,-51
- 12109: -6,-54
- 12110: -4,-56
- 12111: -16,-55
- 12116: -19,-45
- 12117: -19,-45
- 12118: -16,-40
- 12119: -34,-25
- 12120: -38,-25
- 12121: -42,-25
- 12122: -49,-28
- 12123: -42,-31
- 12124: -38,-31
- 12125: -34,-31
- 12137: -46,-24
- 12138: -48,-23
- 12139: -48,-23
- 12140: -35,-37
- 12141: -35,-37
- 12142: -42,-37
- 12143: -42,-37
- 12144: -45,-35
- 12145: -29,-37
- 12146: -29,-37
- 12147: -31,-39
- 12148: -29,-43
- 12149: -29,-43
- 12150: -24,-37
- 12151: -12,-41
- 12227: -12,-59
- 12228: -24,-43
- 12229: -24,-49
- 12288: -36,-45
- 12289: -36,-40
- 12482: -25,-24
- 12483: -23,-23
- 12484: -21,-26
- 12485: -17,-24
- 12486: -21,-31
- 12777: -17,-64
- 12778: -4,-60
- 13113: -37,27
- 13155: -45,9
- 13157: -45,18
- 13271: -45,9
- 13273: -44,23
- 13707: 52,-37
- 13775: -37,-59
- 13776: -37,-64
- 13777: -35,-66
- 13778: -41,-64
- 13789: -30,-61
- 13984: -33,-72
- 14807: -46,12
- 14808: -46,14
- 15774: -49,9
- 15775: -48,7
- 15801: -42,2
- 16109: 75,1
- 16115: 92,8
- 16116: 94,10
- 16117: 78,3
- 16118: 81,-1
- 16119: 85,-1
- 16120: 89,-1
- 16126: 96,-3
- 16432: 94,13
- 16699: -61,-48
- 17223: -58,-11
- 17224: -56,-9
- 17225: -56,-7
- 17248: -58,-11
- 17254: -56,-19
- 17255: -54,-19
- 17258: -60,-17
- 17259: -62,-17
- 17305: -58,-5
- 17310: -48,1
- 17311: -49,3
- 17375: -56,-7
- 17376: -56,-9
- 17377: -62,-7
- 17467: -62,1
- 17468: -65,1
- 17528: -62,-7
- 17611: -51,-15
- 17642: -61,-18
- 17671: -60,14
- 17672: -67,15
- 17673: -72,13
- 17674: -72,9
- 17675: -79,14
- 17676: -77,8
- 17677: -83,14
- 17678: -77,2
- 17679: -75,0
- 17680: -73,3
- 17681: -65,1
- 17682: -71,-5
- 17683: -69,-5
- 17692: -60,14
- 17693: -58,16
- 17694: -67,15
- 17695: -72,13
- 17696: -77,12
- 17697: -79,14
- 17698: -77,8
- 17699: -72,9
- 17700: -73,3
- 17701: -77,2
- 17702: -75,0
- 17703: -80,0
- 17704: -80,-5
- 17705: -82,-3
- 17706: -62,-7
- 17707: -60,6
- 17708: -60,10
- 17709: -46,14
- 17710: -46,12
- 17784: -77,8
- 17785: -72,9
- 17786: -73,3
- 17787: -77,2
- 17788: -75,0
- 17789: -80,0
- 17982: 9,90
- 17983: 11,90
- 18374: -69,55
- 18386: -55,39
- 18387: -54,43
- 18388: -56,43
- 18389: -51,41
- 18390: -48,43
- 18391: -46,41
- 18392: -61,48
- 18393: -61,50
- 18394: -63,53
- 18395: -61,57
- 18396: -67,57
- 18397: -59,55
- 18398: -60,39
- 18399: -62,39
- 18400: -55,31
- 18401: -51,21
- 18604: -44,52
- 18605: -44,50
- 18638: -52,20
- 19047: -14,-11
- 19048: -10,-11
- 19084: 8,-11
- 19535: 57,3
- 19536: 59,3
- 19537: 61,3
- 19538: 63,3
- 19539: 65,3
- 19540: 67,3
- 19544: 57,6
- 19545: 59,6
- 19546: 61,6
- 19547: 63,6
- 19548: 65,6
- 19549: 67,6
- 19550: 68,7
- 19551: 70,7
- 19552: 70,8
- 19553: 68,8
- 20579: -29,-25
- 20681: -48,-3
- node:
- cleanable: True
color: '#FFFFFFFF'
- id: BrickTileDarkBox
- decals:
- 4321: 0,25
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkCornerNe
- decals:
- 4410: -11,16
- 4429: 11,16
- 4493: 4,18
- 4494: 7,16
- 4525: 14,16
- 10335: 34,-44
- - node:
- color: '#A9DA8BFF'
id: BrickTileDarkCornerNe
decals:
- 3184: -26,54
- 3185: -25,53
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkCornerNe
- decals:
- 12158: -5,-38
- 12159: -4,-39
- 13050: -51,-25
- 13051: -50,-27
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkCornerNe
- decals:
- 6999: -22,2
- 7779: 37,9
- 7799: 37,12
- 7803: 48,-3
- 7988: 58,-3
- 7993: 53,-3
- 10964: 9,-64
- 16099: 74,3
- 19597: 74,19
- 19624: 44,1
- 19707: 41,9
- 19717: 41,1
- 19733: 44,9
- 19734: 44,13
- 19735: 41,13
- 19756: 48,13
- 19772: 47,24
- 19776: 48,19
- 19806: 54,19
- 19821: 71,-3
- 19836: 76,23
- 19903: 60,13
- 19936: 55,9
- 19982: 3,65
- 20036: 14,-30
- 20065: 6,-64
- 20066: 8,-58
- 20067: 10,-74
- 20068: 10,-77
- 20069: 6,-80
- 20113: 6,-74
- 20337: 59,32
- 20345: 55,29
- 20428: 67,26
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkCornerNe
- decals:
- 18111: -61,11
- 18191: -70,8
- 18783: -67,1
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerNe
- decals:
- 1226: 13,-59
- 1266: 70,4
- 2228: -15,28
- 2547: -28,38
- 2619: -10,46
- 2677: -10,46
- 2750: -6,43
- 2751: -7,46
- 3415: -2,65
- 4154: 18,61
- 6004: 11,7
- 6018: 11,3
- 6064: 8,-2
- 6101: -15,-4
- 6111: -9,-3
- 6224: 1,14
- 6853: -22,-5
- 6854: -22,-5
- 7343: 25,19
- 7359: 26,20
- 7568: 23,2
- 7630: 36,1
- 7676: 33,11
- 8066: 43,22
- 8085: 36,21
- 8908: 53,-23
- 8986: 65,-10
- 8990: 65,-29
- 10638: 37,-29
- 10639: 37,-29
- 10804: 12,-49
- 10873: 14,-58
- 10997: 51,-54
- 11094: 82,-43
- 11109: 74,-37
- 11190: 45,-51
- 11723: -74,-34
- 12820: -15,-74
- 12841: -13,-65
- 12855: -13,-79
- 12867: -21,-80
- 13023: -23,-64
- 13782: -38,-66
- 13956: -29,-73
- 13988: -31,-77
- 16201: 93,7
- 16240: 100,-2
- 16274: 96,3
- 16570: 91,9
- 17320: -45,6
- 17649: -46,-12
- 18272: -78,11
- 18609: -44,48
- 18624: -53,38
- 18645: -52,25
- 18682: -57,7
- 18941: -50,-36
- 19107: 14,-13
- 19123: 14,-13
- 19124: 14,-13
- 20163: -9,34
- 20172: -12,34
- 20229: -12,34
- 20246: -9,34
- 20588: -27,-22
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkCornerNw
- decals:
- 4392: -16,16
- 4399: -13,16
- 4431: 9,16
- 4480: -9,16
- 4483: -6,18
->>>>>>> master
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkCornerNw
- decals:
-<<<<<<< HEAD
1919: 78,6
2574: 13,-59
2617: 70,4
@@ -3199,418 +2021,10 @@ entities:
id: BrickTileDarkEndE
decals:
10717: 76,25
-=======
- 12152: -10,-38
- 12153: -10,-38
- 12154: -11,-39
- 13049: -53,-25
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkCornerNw
- decals:
- 4824: 12,32
- 6995: -24,2
- 7798: 35,12
- 7802: 46,-3
- 7985: 50,-3
- 7986: 55,-3
- 7987: 55,-3
- 10962: 8,-64
- 10963: 8,-64
- 16100: 72,3
- 19598: 72,19
- 19625: 43,1
- 19708: 39,9
- 19714: 35,9
- 19716: 39,1
- 19730: 43,13
- 19731: 39,13
- 19732: 43,9
- 19755: 46,13
- 19770: 45,24
- 19805: 50,19
- 19819: 56,19
- 19820: 68,-3
- 19835: 72,23
- 19904: 50,13
- 19937: 50,9
- 19979: 0,65
- 20014: -20,-24
- 20035: 10,-30
- 20054: 3,-58
- 20055: 4,-64
- 20056: 4,-74
- 20057: 8,-74
- 20058: 4,-80
- 20286: 49,32
- 20344: 53,29
- 20422: 61,26
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkCornerNw
- decals:
- 18110: -66,11
- 18192: -74,8
- 18782: -73,1
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerNw
- decals:
- 1227: 11,-59
- 1265: 68,4
- 2217: -17,34
- 2740: -8,46
- 2819: -4,40
- 2925: -7,54
- 4140: 12,62
- 4188: -42,63
- 5994: 7,7
- 6006: 7,3
- 6063: 7,-2
- 6100: -16,-4
- 6109: -13,-3
- 6223: -3,14
- 6851: -26,-5
- 6852: -26,-5
- 7342: 23,19
- 7363: 22,20
- 7578: 20,2
- 7629: 34,1
- 7646: 26,9
- 7675: 29,11
- 8060: 39,22
- 8083: 34,21
- 8084: 34,21
- 8907: 51,-23
- 8984: 64,-29
- 8985: 64,-10
- 10637: 35,-29
- 10803: 2,-49
- 10838: 2,-49
- 10996: 49,-54
- 11093: 80,-43
- 11108: 72,-37
- 11189: 44,-51
- 11721: -75,-34
- 11722: -75,-34
- 12821: -19,-74
- 12840: -21,-65
- 12854: -16,-79
- 12866: -23,-80
- 12974: -18,-80
- 13009: -25,-64
- 13010: -24,-72
- 13024: -25,-64
- 13106: -39,26
- 13779: -41,-66
- 13987: -35,-77
- 16189: 89,10
- 16204: 91,7
- 16239: 99,-2
- 16267: 93,3
- 16385: 79,-2
- 16412: 83,-2
- 16413: 87,-2
- 16442: 95,14
- 16573: 93,9
- 17316: -49,6
- 18273: -79,11
- 18608: -45,48
- 18681: -58,7
- 18931: -53,-36
- 19108: 12,-13
- 19122: 12,-13
- 20162: -10,34
- 20186: -15,31
- 20228: -10,34
- 20582: -31,-22
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkCornerSe
- decals:
- 4428: 11,13
- 4506: -4,13
- 4526: 14,13
- 10336: 34,-45
- - node:
- color: '#A9DA8BFF'
- id: BrickTileDarkCornerSe
- decals:
- 3186: -25,52
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkCornerSe
- decals:
- 12160: -4,-43
- 12161: -5,-44
- 12548: -23,-48
- 13052: -50,-29
- 13053: -51,-31
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkCornerSe
- decals:
- 4829: 13,30
- 7001: -22,0
- 7797: 37,11
- 7805: 48,-5
- 7979: 58,-5
- 7980: 53,-5
- 10966: 9,-66
- 15779: -46,8
- 16107: 74,-1
- 19600: 74,5
- 19621: 44,-1
- 19715: 41,-1
- 19727: 44,7
- 19728: 44,11
- 19729: 41,11
- 19753: 60,11
- 19759: 48,15
- 19790: 59,21
- 19807: 54,15
- 19817: 57,15
- 19823: 71,-5
- 19834: 76,21
- 19942: 55,3
- 20015: -18,-28
- 20033: 14,-32
- 20051: 10,-78
- 20052: 10,-75
- 20053: 8,-62
- 20070: 6,-82
- 20074: 6,-78
- 20089: 6,-72
- 20360: 52,31
- 20437: 67,24
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkCornerSe
- decals:
- 18109: -61,4
- 18184: -70,4
- 18804: -67,-3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerSe
- decals:
- 1228: 13,-61
- 2225: -15,26
- 2229: -15,32
- 2623: -10,36
- 2686: -10,36
- 2738: -6,36
- 2822: -2,36
- 2873: 2,54
- 2921: -5,52
- 3412: -2,60
- 4093: 23,65
- 4193: -40,59
- 6002: 11,5
- 6013: 11,0
- 6062: 8,-3
- 6103: -15,-6
- 6112: -9,-6
- 6222: 1,12
- 6850: -22,-9
- 7132: -33,8
- 7340: 25,17
- 7355: 26,16
- 7624: 36,-1
- 7641: 27,8
- 7680: 33,8
- 8067: 43,18
- 8068: 43,18
- 8080: 36,19
- 8917: 53,-26
- 8982: 65,-12
- 8983: 65,-31
- 10636: 37,-31
- 10806: 12,-53
- 10867: 14,-62
- 10998: 51,-56
- 11092: 82,-47
- 11111: 74,-40
- 11188: 45,-55
- 11716: -74,-36
- 12827: -15,-76
- 12861: -13,-82
- 12864: -21,-82
- 12972: -17,-82
- 13108: -38,25
- 13787: -38,-68
- 13976: -36,-78
- 13994: -31,-80
- 16202: 93,6
- 16242: 100,-4
- 16273: 96,1
- 16391: 81,-5
- 16408: 89,-5
- 16409: 85,-5
- 16440: 96,12
- 17321: -45,4
- 17654: -46,-18
- 18274: -78,9
- 18607: -44,46
- 18686: -57,5
- 19112: 14,-14
- 19120: 14,-14
- 19541: 70,3
- 20174: -12,26
- 20234: -12,26
- 20583: -27,-24
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkCornerSw
- decals:
- 4393: -16,13
- 4398: -13,13
- 4505: 2,13
- 10337: 30,-45
- - node:
- color: '#A9DA8BFF'
- id: BrickTileDarkCornerSw
- decals:
- 3180: -27,52
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkCornerSw
- decals:
- 12162: -11,-44
- 12549: -30,-48
- 13054: -53,-31
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkCornerSw
- decals:
- 7738: 39,3
- 7800: 35,11
- 7962: 46,-5
- 7977: 50,-5
- 7978: 55,-5
- 10965: 8,-66
- 19599: 72,5
- 19618: 46,-1
- 19619: 39,-1
- 19620: 43,-1
- 19713: 35,8
- 19724: 39,11
- 19725: 43,11
- 19726: 43,7
- 19754: 50,11
- 19760: 45,15
- 19791: 49,21
- 19804: 50,15
- 19818: 56,15
- 19822: 68,-5
- 19837: 72,21
- 19943: 50,3
- 19983: 0,60
- 20016: -20,-28
- 20034: 10,-32
- 20073: 4,-78
- 20088: 4,-72
- 20090: 3,-62
- 20109: 8,-78
- 20361: 56,31
- 20436: 61,24
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkCornerSw
- decals:
- 18108: -66,4
- 18185: -74,4
- 18803: -73,-3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerSw
- decals:
- 1225: 11,-61
- 2224: -17,26
- 2737: -8,36
- 2820: -4,36
- 2874: 1,54
- 2889: -1,50
- 2920: -7,52
- 4097: 17,65
- 4191: -42,59
- 5996: 7,5
- 6009: 7,0
- 6065: 7,-3
- 6102: -16,-6
- 6113: -13,-6
- 6221: -3,12
- 6846: -26,-9
- 7131: -39,8
- 7339: 23,17
- 7351: 22,16
- 7577: 20,-8
- 7623: 34,-1
- 7647: 26,8
- 8072: 39,18
- 8081: 34,19
- 8082: 34,19
- 8918: 51,-26
- 8987: 64,-12
- 8988: 64,-31
- 8989: 64,-31
- 10635: 35,-31
- 10805: 2,-53
- 10866: 10,-62
- 10995: 49,-56
- 11112: 72,-40
- 11187: 44,-55
- 11717: -75,-36
- 12826: -19,-76
- 12860: -16,-82
- 12865: -23,-82
- 12973: -18,-82
- 13007: -24,-76
- 13008: -25,-70
- 13107: -39,25
- 13784: -41,-68
- 13960: -30,-80
- 13977: -30,-78
- 13982: -37,-80
- 13995: -35,-80
- 13996: -32,-80
- 16203: 91,6
- 16241: 99,-4
- 16272: 93,1
- 16392: 79,-5
- 16410: 83,-5
- 16411: 87,-5
- 16443: 95,12
- 18275: -79,9
- 18606: -45,46
- 18685: -58,5
- 18933: -53,-38
- 19110: 12,-14
- 19119: 12,-14
- 19542: 68,3
- 20164: -10,26
- 20177: -14,26
- 20185: -15,29
- 20233: -10,26
- 20584: -31,-24
- - node:
- color: '#CEDA8BFF'
- id: BrickTileDarkEndE
- decals:
- 11269: 45,-64
- 11270: 45,-61
- 11284: 41,-64
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkEndE
- decals:
- 19838: 76,25
->>>>>>> master
- node:
color: '#FFFFFFFF'
id: BrickTileDarkEndE
decals:
-<<<<<<< HEAD
4124: -18,54
4575: 2,55
6021: 23,72
@@ -3683,148 +2097,29 @@ entities:
16728: -29,70
16842: -18,21
16934: 18,21
-=======
- 2422: -18,54
- 2869: 2,55
- 4054: 23,72
- 4066: 19,68
- 4067: 22,68
- 4545: 4,12
- 4546: -5,12
- 4679: 16,25
- 4836: 21,33
- 5812: -18,7
- 5828: -18,-7
- 5849: -33,30
- 5852: -31,25
- 5881: -10,66
- 5882: -10,59
- 5931: 11,-7
- 6262: 0,7
- 6263: 0,3
- 6264: 0,-1
- 6265: 0,-5
- 6372: -11,-18
- 6412: 18,-7
- 6422: 18,7
- 6467: -18,-22
- 6598: 18,-22
- 6670: 14,-18
- 6842: -32,3
- 6843: -32,-10
- 7081: -25,7
- 7124: -38,16
- 7125: -38,16
- 7129: -38,8
- 7130: -38,8
- 7828: 48,10
- 8569: 36,-17
- 8570: 36,-17
- 8596: 36,-7
- 8611: 47,-18
- 9110: 0,-22
- 9111: 0,-29
- 9112: -6,-22
- 9113: -13,-22
- 9114: 5,-22
- 9115: 12,-22
- 9116: 0,-37
- 9117: 0,-57
- 9118: 0,-63
- 9490: -4,-74
- 9500: -3,-68
- 9501: -3,-66
- 9537: 0,-82
- 10068: 18,-37
- 10069: 28,-37
- 11938: -18,-33
- 11946: -22,-33
- 11947: -22,-33
- 11956: -13,-37
- 11957: -13,-37
- 12112: -13,-45
- 13159: -17,59
- 13160: -3,59
- 13161: -3,66
- 13162: -17,66
- 13163: -11,70
- 13164: 7,70
- 13165: -29,70
- 13981: -36,-80
- 14817: -57,20
- 14842: -61,13
- 14884: -18,21
- 14889: 18,21
- 15799: -41,3
- 15813: -41,7
- 16425: 80,-1
- 16426: 84,-1
- 16427: 88,-1
- 16428: 84,-1
- 16429: 80,-1
- 16434: 98,14
- 16558: 93,15
- 17312: -52,3
- 17313: -52,7
- 17475: -56,3
- 17684: -69,-9
- 17929: -69,-9
- 18230: -80,13
- 18234: -80,15
- 18402: -53,19
- 18615: -56,38
- 18947: -48,-38
- 19103: 14,-11
- 19554: 70,10
- 20560: -6,-40
->>>>>>> master
- node:
cleanable: True
color: '#FFFFFFFF'
id: BrickTileDarkEndE
decals:
-<<<<<<< HEAD
6224: -18,25
6308: 8,25
6309: 5,25
-=======
- 4254: -18,25
- 4330: 8,25
- 4331: 5,25
->>>>>>> master
- node:
color: '#A9DA8BFF'
id: BrickTileDarkEndN
decals:
-<<<<<<< HEAD
4897: -27,55
-=======
- 3183: -27,55
->>>>>>> master
- node:
color: '#B18BDAFF'
id: BrickTileDarkEndN
decals:
-<<<<<<< HEAD
15860: -30,-44
15861: -23,-44
-=======
- 12527: -30,-44
- 12528: -23,-44
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkEndN
- decals:
- 18356: -59,7
- 18357: -56,7
- 18789: -72,0
- 18790: -68,0
->>>>>>> master
- node:
color: '#FFFFFFFF'
id: BrickTileDarkEndN
decals:
-<<<<<<< HEAD
4424: -9,43
4425: -9,43
4581: 4,54
@@ -3935,144 +2230,11 @@ entities:
16838: -21,24
16941: 6,24
16942: -8,24
-=======
- 2718: -9,43
- 2719: -9,43
- 2875: 4,54
- 3061: -24,48
- 3064: -24,51
- 3341: -16,65
- 3355: -8,65
- 3399: -22,65
- 3763: -22,58
- 3846: 9,81
- 3853: 9,76
- 4033: 16,71
- 4383: -14,15
- 4388: -17,15
- 4517: 12,15
- 4518: 15,15
- 4538: 15,20
- 4745: 12,36
- 5146: 14,53
- 5149: 14,50
- 5513: -32,82
- 5514: -28,82
- 5515: -28,92
- 5516: -32,92
- 5600: -14,92
- 5601: -10,92
- 5618: -10,82
- 5619: -14,82
- 5620: -14,82
- 5632: 4,82
- 5857: -29,28
- 5858: -29,28
- 5898: -17,-8
- 5899: 15,-8
- 5924: -17,-19
- 5943: -7,10
- 5947: 5,10
- 6261: -1,8
- 6451: -3,-19
- 6452: 1,-19
- 6453: -17,-19
- 6466: 15,-19
- 6839: -21,-2
- 7084: -21,12
- 7256: -22,-16
- 7386: 26,6
- 7393: 19,6
- 7426: 26,-10
- 7427: 19,-10
- 7739: 49,1
- 7909: 48,23
- 8012: 56,5
- 8578: 42,-14
- 8579: 42,-10
- 8580: 42,-10
- 9209: 1,-25
- 9210: -3,-25
- 9488: -2,-69
- 9489: -7,-69
- 9505: -1,-67
- 9506: -1,-67
- 9507: -8,-67
- 9508: -8,-72
- 9509: -1,-72
- 9510: -1,-72
- 9521: -6,-72
- 9522: -6,-72
- 9523: -3,-72
- 9524: -3,-72
- 9745: 1,-46
- 9746: 1,-55
- 9747: 1,-55
- 9750: -3,-55
- 9752: 1,-46
- 9922: 15,-25
- 9943: 19,-27
- 10061: 19,-34
- 10064: 19,-39
- 10065: 25,-39
- 10134: 15,-39
- 10674: 20,-51
- 10922: 3,-66
- 10923: 3,-75
- 10924: 3,-75
- 11186: 53,-50
- 11774: -12,-66
- 11775: -22,-66
- 11800: -3,-40
- 11944: -21,-34
- 11945: -21,-34
- 12128: -44,-27
- 12129: -32,-27
- 12755: -21,-46
- 12981: -20,-80
- 12982: -24,-80
- 13103: -38,29
- 14872: -21,24
- 14873: -8,24
- 14874: 6,24
- 15798: -40,6
- 15930: 58,-26
- 15931: 60,-26
- 15940: 58,-13
- 15941: 60,-13
- 16396: 80,-3
- 16400: 84,-3
- 16401: 88,-3
- 17332: -54,6
- 17333: -51,6
- 17390: -55,-10
- 17391: -55,-5
- 17686: -74,-6
- 17854: -50,-7
- 17922: -74,-6
- 18240: -79,7
- 18241: -76,7
- 18271: -76,11
- 18405: -56,24
- 18612: -57,34
- 18634: -55,22
- 18719: -55,-5
- 19006: -16,-13
- 19009: -14,-13
- 19010: -12,-13
- 19011: -10,-13
- 19026: -8,-16
- 19558: 57,9
- 19559: 59,9
- 19560: 63,9
- 19561: 61,9
->>>>>>> master
- node:
cleanable: True
color: '#FFFFFFFF'
id: BrickTileDarkEndN
decals:
-<<<<<<< HEAD
6219: -17,20
- node:
color: '#FFFFFFFF'
@@ -4181,22 +2343,11 @@ entities:
16841: -21,22
16943: -8,22
16944: 6,22
-=======
- 4249: -17,20
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkEndS
- decals:
- 18358: -59,5
- 18359: -56,5
- 18791: -72,-2
- 18792: -68,-2
->>>>>>> master
- node:
+ cleanable: True
color: '#FFFFFFFF'
id: BrickTileDarkEndS
decals:
-<<<<<<< HEAD
6220: -17,18
- node:
color: '#CEDA8BFF'
@@ -7144,3714 +5295,10 @@ entities:
decals:
5647: 8,74
5870: 11,84
-=======
- 2535: -28,32
- 2721: -9,39
- 2876: 4,50
- 3062: -24,47
- 3063: -24,50
- 3346: -16,60
- 3356: -8,60
- 3400: -22,60
- 3764: -22,57
- 3847: 9,80
- 3854: 9,75
- 4034: 16,70
- 4384: -14,14
- 4389: -17,14
- 4519: 12,14
- 4520: 15,14
- 4539: 15,18
- 4746: 12,35
- 5147: 14,52
- 5148: 14,49
- 5517: -32,88
- 5518: -28,88
- 5519: -28,88
- 5520: -28,79
- 5521: -32,79
- 5602: -14,88
- 5603: -10,88
- 5621: -14,79
- 5622: -10,79
- 5636: 4,79
- 5859: -29,27
- 5860: -29,27
- 5925: -17,-21
- 5944: -7,8
- 5948: 5,8
- 6315: -8,-17
- 6316: -8,-13
- 6334: -16,-16
- 6335: -14,-16
- 6336: -12,-16
- 6337: -10,-16
- 6457: -3,-21
- 6458: 1,-21
- 6465: 15,-21
- 6840: -21,-3
- 7083: -21,11
- 7259: -22,-17
- 7387: 26,4
- 7394: 19,4
- 7428: 19,-12
- 7429: 26,-12
- 7740: 49,-1
- 7910: 48,22
- 8011: 56,4
- 8581: 42,-16
- 8582: 42,-12
- 9211: -3,-26
- 9212: 1,-26
- 9493: -7,-71
- 9494: -2,-71
- 9511: -8,-74
- 9512: -1,-74
- 9513: -1,-74
- 9514: -3,-73
- 9515: -3,-73
- 9516: -6,-73
- 9517: -6,-73
- 9518: -8,-68
- 9519: -1,-68
- 9520: -1,-68
- 9748: -3,-56
- 9749: 1,-56
- 9751: 1,-47
- 9923: 15,-26
- 9944: 19,-28
- 10066: 19,-40
- 10067: 25,-40
- 10074: 19,-36
- 10135: 15,-40
- 10675: 20,-53
- 10925: 3,-76
- 10926: 3,-67
- 10927: 5,-73
- 11178: 53,-56
- 11776: -22,-67
- 11777: -12,-67
- 11801: -3,-41
- 11943: -21,-36
- 12126: -44,-29
- 12127: -32,-29
- 12756: -21,-48
- 12980: -20,-82
- 12983: -24,-82
- 14875: 6,22
- 14876: -8,22
- 14877: -21,22
- 15817: -40,4
- 15932: 58,-28
- 15933: 60,-28
- 15942: 58,-15
- 15943: 60,-15
- 16397: 80,-4
- 16398: 84,-4
- 16399: 88,-4
- 17334: -54,4
- 17335: -51,4
- 17392: -55,-11
- 17393: -55,-6
- 17687: -74,-8
- 17855: -50,-9
- 17923: -74,-8
- 18248: -76,3
- 18249: -79,3
- 18404: -56,23
- 18617: -57,32
- 18625: -53,32
- 18635: -55,20
- 18640: -52,22
- 19029: -17,-10
- 19058: 15,-10
- 19096: 15,-10
- 19562: 57,7
- 19563: 59,7
- 19564: 61,7
- 19565: 63,7
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkEndS
- decals:
- 4250: -17,18
- - node:
- color: '#CEDA8BFF'
- id: BrickTileDarkEndW
- decals:
- 11271: 43,-61
- 11285: 38,-64
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkEndW
- decals:
- 19839: 74,25
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkEndW
- decals:
- 2423: -20,54
- 2534: -29,38
- 2870: 1,55
- 4055: 17,72
- 4068: 18,68
- 4069: 21,68
- 4547: -6,12
- 4548: 3,12
- 4680: 14,25
- 4837: 20,33
- 5813: -20,7
- 5829: -20,-7
- 5850: -34,30
- 5851: -34,25
- 5883: -14,59
- 5884: -14,66
- 5930: 10,-7
- 6266: -2,-5
- 6267: -2,-1
- 6268: -2,3
- 6269: -2,7
- 6373: -13,-18
- 6411: 16,-7
- 6423: 16,7
- 6468: -20,-22
- 6599: 16,-22
- 6671: 12,-18
- 6672: 12,-18
- 6841: -33,3
- 6844: -33,-10
- 6845: -17,-1
- 7082: -26,7
- 7126: -34,16
- 7127: -34,16
- 7128: -34,8
- 7829: 46,10
- 8571: 33,-17
- 8597: 34,-7
- 8612: 46,-18
- 9119: -2,-37
- 9120: -2,-29
- 9121: -2,-22
- 9122: -7,-22
- 9123: -14,-22
- 9124: 4,-22
- 9125: 11,-22
- 9126: -2,-57
- 9127: -2,-63
- 9491: -5,-74
- 9492: -2,-63
- 9502: -6,-66
- 9503: -6,-66
- 9504: -6,-68
- 9538: -2,-82
- 9539: -2,-82
- 10062: 16,-37
- 10063: 26,-37
- 11939: -20,-33
- 11948: -24,-33
- 11958: -15,-37
- 12113: -15,-45
- 12989: -24,-78
- 13166: -31,70
- 13167: -13,70
- 13168: -21,66
- 13169: -7,66
- 13170: 5,70
- 13206: -21,59
- 13213: -7,59
- 13980: -30,-80
- 14818: -61,20
- 14841: -66,13
- 14885: -20,21
- 14891: 16,21
- 15800: -43,3
- 15814: -43,7
- 16422: 79,-1
- 16423: 83,-1
- 16424: 87,-1
- 16559: 91,15
- 16565: 91,15
- 17314: -53,7
- 17315: -53,3
- 17476: -59,3
- 17643: -49,-12
- 17644: -49,-18
- 17685: -71,-9
- 17928: -71,-9
- 18231: -82,13
- 18232: -82,15
- 18233: -82,15
- 18403: -54,19
- 18613: -54,35
- 18614: -57,38
- 18616: -54,38
- 18639: -55,25
- 19104: 12,-11
- 19555: 68,10
- 20559: -9,-40
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkEndW
- decals:
- 4255: -20,25
- 4332: 4,25
- 4333: 7,25
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkInnerNe
- decals:
- 4412: -11,15
- 4499: 4,16
- 4502: 7,15
- 4516: 11,15
- 4528: 14,15
- 15656: -6,14
- 15657: -12,15
- 15658: 1,16
- 15659: 8,14
- 15660: 10,15
- - node:
- color: '#A9DA8BFF'
- id: BrickTileDarkInnerNe
- decals:
- 3189: -26,53
- 3190: -27,54
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkInnerNe
- decals:
- 12181: -7,-38
- 12182: -4,-40
- 12189: -7,-38
- 12190: -5,-39
- 12559: -30,-48
- 13064: -50,-28
- 13068: -51,-27
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkInnerNe
- decals:
- 6997: -23,2
- 7778: 36,9
- 7780: 37,8
- 7785: 40,1
- 7791: 48,4
- 7792: 48,12
- 7796: 47,13
- 7807: 47,-3
- 7817: 73,19
- 7818: 58,1
- 7821: 62,1
- 7823: 53,9
- 7827: 73,3
- 7854: 51,13
- 7855: 51,13
- 7869: 47,23
- 7872: 48,16
- 7880: 52,19
- 7881: 54,17
- 7894: 57,19
- 7920: 59,25
- 7990: 52,-3
- 7991: 57,-3
- 8020: 60,12
- 8039: 75,23
- 8048: 76,22
- 8053: 75,25
- 8058: 74,9
- 10948: 5,-74
- 10981: 5,-80
- 16113: 74,1
- 19615: 67,-1
- 19622: 44,0
- 19646: 66,1
- 19650: 48,1
- 19658: 48,8
- 19670: 41,5
- 19679: 36,6
- 19698: 37,4
- 19710: 40,9
- 19737: 44,8
- 19738: 44,12
- 19775: 47,19
- 19826: 71,-4
- 19829: 69,-3
- 19955: 55,5
- 19976: 70,-1
- 19997: 3,60
- 19998: 3,64
- 20031: 11,-30
- 20039: 13,-30
- 20045: 14,-31
- 20063: 5,-64
- 20064: 6,-65
- 20101: 7,-58
- 20106: 6,-75
- 20107: 6,-77
- 20373: 51,21
- 20374: 54,21
- 20375: 50,28
- 20376: 55,28
- 20429: 67,25
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkInnerNe
- decals:
- 18107: -66,4
- 18133: -61,6
- 18134: -61,10
- 18187: -72,8
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerNe
- decals:
- 2182: -9,33
- 2188: -12,33
- 2237: -16,28
- 2610: -33,37
- 2612: -31,37
- 2613: -30,36
- 2624: -10,45
- 2627: -10,43
- 2628: -10,43
- 2755: -7,43
- 2756: -6,37
- 2827: -2,40
- 2832: -3,40
- 3422: -3,64
- 3423: -2,61
- 3654: -3,64
- 4087: 19,67
- 4090: 22,67
- 4091: 23,66
- 4152: 17,61
- 4157: 18,60
- 6015: 11,1
- 6021: 8,3
- 6105: -15,-5
- 6151: -10,-3
- 6869: -24,-5
- 6914: -24,-7
- 7591: 23,-8
- 7592: 23,-2
- 7595: 22,2
- 7643: 27,9
- 7752: 37,4
- 8086: 36,20
- 8087: 36,20
- 8093: 43,20
- 8898: 56,-24
- 8904: 56,-20
- 8905: 56,-20
- 8910: 52,-23
- 9407: -8,-28
- 9408: -8,-23
- 9414: -4,-23
- 9419: -4,-27
- 9420: -15,-23
- 9424: -16,-27
- 9446: 3,-23
- 9447: 10,-23
- 9448: 14,-23
- 9449: 14,-27
- 9450: 2,-27
- 9465: 10,-28
- 10832: 4,-49
- 10856: 13,-60
- 10857: 12,-59
- 10877: 10,-58
- 12832: -17,-74
- 12850: -17,-65
- 12963: -14,-78
- 12984: -20,-81
- 13019: -23,-66
- 13033: -24,-64
- 13112: -38,27
- 13975: -31,-79
- 13979: -37,-79
- 13983: -37,-80
- 15929: 60,-31
- 16181: 79,1
- 16182: 84,1
- 16183: 88,1
- 16200: 92,7
- 16279: 95,3
- 17330: -48,6
- 17396: -53,-1
- 17397: -56,1
- 17398: -53,-7
- 17399: -53,-12
- 17400: -55,-17
- 18913: -64,-7
- 18914: -69,-7
- 18915: -58,-8
- 18945: -50,-38
- 20168: -9,27
- 20169: -9,30
- 20227: -12,33
- 20237: -9,30
- 20241: -9,27
- 20245: -9,33
- 20686: 96,2
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkInnerNw
- decals:
- 4396: -16,15
- 4402: -13,15
- 4413: -9,15
- 4501: 9,15
- 5809: -6,16
- 15653: -10,14
- 15655: -12,15
- 15661: 10,15
- 15672: 4,14
- - node:
- color: '#96A4EBFF'
- id: BrickTileDarkInnerNw
- decals:
- 15652: -10,14
- 20254: -3,16
- - node:
- color: '#A9DA8BFF'
- id: BrickTileDarkInnerNw
- decals:
- 3181: -27,53
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkInnerNw
- decals:
- 12180: -7,-38
- 12185: -11,-41
- 12188: -7,-38
- 12191: -10,-39
- 12553: -30,-46
- 12558: -23,-48
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkInnerNw
- decals:
- 4825: 13,32
- 4832: 12,30
- 6996: -23,2
- 7737: 39,6
- 7749: 39,4
- 7769: 39,8
- 7770: 46,8
- 7773: 46,12
- 7776: 36,9
- 7777: 36,9
- 7784: 40,1
- 7787: 46,0
- 7795: 47,13
- 7806: 47,-3
- 7816: 73,19
- 7819: 58,1
- 7820: 62,1
- 7822: 53,9
- 7824: 72,1
- 7826: 73,3
- 7838: 50,8
- 7841: 50,4
- 7853: 51,13
- 7859: 50,12
- 7875: 45,20
- 7879: 52,19
- 7882: 50,16
- 7898: 57,19
- 7899: 56,17
- 7908: 49,23
- 7989: 52,-3
- 7992: 57,-3
- 8024: 72,6
- 8025: 72,13
- 8027: 72,18
- 8038: 75,23
- 8054: 75,25
- 10937: 4,-66
- 10947: 5,-74
- 10958: 8,-75
- 10968: 8,-65
- 10982: 5,-80
- 16104: 72,-1
- 19645: 66,1
- 19671: 46,5
- 19678: 36,6
- 19697: 34,4
- 19709: 40,9
- 19828: 69,-3
- 19978: 69,-1
- 19996: 0,61
- 20029: -20,-26
- 20030: 11,-30
- 20038: 13,-30
- 20061: 4,-75
- 20062: 5,-64
- 20098: 3,-60
- 20100: 7,-58
- 20369: 53,28
- 20370: 58,28
- 20371: 57,21
- 20372: 54,21
- 20438: 61,25
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkInnerNw
- decals:
- 18106: -61,4
- 18186: -72,8
- 18364: -59,6
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerNw
- decals:
- 2189: -10,33
- 2239: -17,30
- 2244: -15,34
- 2591: -30,32
- 2592: -29,33
- 2611: -31,37
- 2741: -8,45
- 2743: -8,43
- 2830: -4,37
- 2831: -3,40
- 2897: -1,51
- 2933: -4,54
- 3430: -2,60
- 4088: 21,67
- 4158: 16,62
- 4906: 21,24
- 6022: 8,3
- 6115: -13,-5
- 6150: -10,-3
- 6867: -26,-6
- 6868: -24,-5
- 6913: -24,-7
- 7348: 22,18
- 7587: 20,-3
- 7594: 22,2
- 7720: 34,4
- 8899: 62,-24
- 8900: 62,-24
- 8909: 52,-23
- 9406: -12,-28
- 9410: -12,-23
- 9413: -5,-23
- 9418: -4,-27
- 9421: -16,-23
- 9425: -16,-27
- 9441: 2,-23
- 9442: 6,-23
- 9443: 13,-23
- 9444: 14,-27
- 9445: 14,-27
- 9451: 2,-27
- 9464: 6,-28
- 10833: 4,-49
- 10841: 2,-51
- 10854: 11,-60
- 10858: 12,-59
- 11105: 80,-47
- 11106: 80,-47
- 12831: -17,-74
- 12849: -17,-65
- 12962: -14,-78
- 12977: -17,-80
- 12990: -23,-78
- 13011: -23,-72
- 13034: -24,-64
- 13115: -38,26
- 13276: -18,-81
- 13991: -35,-79
- 15928: 58,-31
- 16178: 77,1
- 16179: 81,1
- 16180: 86,1
- 16199: 92,7
- 16277: 94,3
- 16278: 93,2
- 16387: 81,-2
- 16418: 85,-2
- 16419: 89,-2
- 16445: 95,13
- 17329: -48,6
- 17394: -53,-1
- 17395: -58,1
- 17401: -53,-12
- 17402: -57,-17
- 17403: -53,-7
- 17665: -46,-18
- 18632: -53,35
- 18910: -72,-7
- 18911: -67,-7
- 18912: -60,-8
- 20187: -14,31
- 20226: -10,33
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkInnerSe
- decals:
- 4416: -10,13
- 4504: 8,13
- 4514: -4,15
- 4515: 11,14
- 4527: 14,14
- 4543: -2,15
- 15662: -12,14
- 15663: -6,14
- 15664: 1,16
- 15665: 8,14
- 15666: 10,14
- - node:
- color: '#A9DA8BFF'
- id: BrickTileDarkInnerSe
- decals:
- 3188: -26,52
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkInnerSe
- decals:
- 12183: -4,-41
- 12186: -6,-44
- 12192: -5,-43
- 12556: -24,-48
- 13066: -50,-28
- 13067: -51,-29
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkInnerSe
- decals:
- 7005: -24,0
- 7774: 36,11
- 7783: 40,3
- 7788: 47,-1
- 7790: 48,4
- 7793: 48,12
- 7794: 48,12
- 7812: 61,-1
- 7813: 57,-1
- 7814: 52,-1
- 7815: 65,-1
- 7856: 53,11
- 7867: 47,15
- 7870: 47,22
- 7871: 48,16
- 7878: 51,15
- 7883: 54,17
- 7897: 57,19
- 7905: 52,21
- 7918: 57,21
- 7919: 59,25
- 7963: 47,-5
- 8019: 60,12
- 8045: 73,21
- 8049: 76,22
- 8056: 75,25
- 8057: 74,9
- 8228: 73,5
- 10979: 4,-82
- 15785: -46,9
- 15786: -48,8
- 16114: 74,1
- 19623: 44,0
- 19647: 67,1
- 19657: 48,8
- 19696: 35,4
- 19699: 37,6
- 19711: 36,8
- 19739: 44,8
- 19740: 44,12
- 19741: 40,11
- 19827: 71,-4
- 19956: 55,4
- 19965: 69,-1
- 19975: 70,1
- 19992: 3,64
- 19993: 2,60
- 20025: -18,-24
- 20042: 12,-32
- 20044: 14,-31
- 20103: 5,-62
- 20104: 6,-65
- 20105: 6,-75
- 20108: 6,-77
- 20115: 5,-72
- 20121: 5,-78
- 20362: 51,28
- 20363: 54,28
- 20364: 50,31
- 20365: 52,32
- 20430: 67,25
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkInnerSe
- decals:
- 18104: -66,11
- 18135: -61,10
- 18136: -61,6
- 18203: -73,4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerSe
- decals:
- 2187: -9,33
- 2236: -16,32
- 2255: -18,35
- 2608: -33,33
- 2614: -31,33
- 2615: -30,34
- 2625: -10,45
- 2631: -10,39
- 2757: -6,37
- 2758: -6,37
- 2826: -2,40
- 2888: 3,50
- 2927: -5,54
- 2934: -6,52
- 3421: -3,61
- 3424: -2,61
- 3655: -3,61
- 4092: 23,66
- 4149: 17,58
- 5998: 8,5
- 6016: 11,1
- 6059: 10,0
- 6106: -15,-5
- 6120: -10,-6
- 6871: -24,-9
- 6916: -24,-7
- 7590: 22,-8
- 7593: 23,-2
- 7644: 27,9
- 7684: 29,8
- 7723: 35,4
- 7753: 37,6
- 8088: 36,20
- 8089: 36,20
- 8094: 43,20
- 8902: 56,-17
- 8903: 56,-17
- 8906: 56,-21
- 9404: -8,-28
- 9411: -8,-23
- 9415: -4,-23
- 9416: -4,-28
- 9423: -15,-23
- 9427: -16,-28
- 9434: 10,-23
- 9435: 14,-23
- 9436: 14,-28
- 9453: 2,-28
- 9454: 3,-23
- 9466: 10,-28
- 10844: 10,-53
- 10853: 13,-60
- 10860: 12,-61
- 11121: 73,-40
- 12834: -17,-67
- 12964: -13,-78
- 12985: -20,-81
- 13018: -23,-67
- 13111: -38,27
- 13978: -37,-79
- 13993: -31,-79
- 13998: -34,-79
- 15803: -42,3
- 15927: 60,-10
- 16184: 79,1
- 16185: 84,1
- 16186: 88,1
- 16194: 92,9
- 16232: 92,6
- 16281: 95,1
- 16297: 96,2
- 16431: 93,10
- 16437: 97,14
- 16439: 96,14
- 17331: -49,4
- 17409: -55,-17
- 17410: -53,-15
- 17411: -53,-9
- 17412: -53,-4
- 17413: -56,1
- 18919: -64,-7
- 18920: -69,-7
- 20167: -9,27
- 20170: -9,30
- 20176: -12,27
- 20231: -12,27
- 20236: -9,30
- 20238: -9,27
- 20244: -9,33
- 20594: -29,-24
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkInnerSw
- decals:
- 4397: -16,14
- 4403: -13,14
- 4415: -10,13
- 4503: 8,13
- 4513: 2,15
- 4542: -2,15
- 10338: 30,-44
- 15667: 4,14
- 15668: 10,14
- 15669: -3,16
- 15670: -10,14
- 15671: -12,14
- - node:
- color: '#A9DA8BFF'
- id: BrickTileDarkInnerSw
- decals:
- 3182: -27,53
- 3187: -26,52
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkInnerSw
- decals:
- 12184: -11,-41
- 12187: -6,-44
- 12554: -30,-46
- 12555: -24,-48
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkInnerSw
- decals:
- 7736: 39,4
- 7750: 39,6
- 7768: 39,8
- 7771: 46,8
- 7772: 46,12
- 7775: 36,11
- 7782: 40,3
- 7786: 46,0
- 7789: 47,-1
- 7808: 52,-1
- 7809: 57,-1
- 7810: 61,-1
- 7811: 65,-1
- 7825: 72,1
- 7839: 50,8
- 7840: 50,4
- 7857: 53,11
- 7858: 50,12
- 7868: 47,15
- 7876: 45,20
- 7877: 51,15
- 7884: 50,16
- 7900: 56,17
- 7901: 56,17
- 7906: 52,21
- 7907: 49,22
- 7917: 57,21
- 7964: 47,-5
- 8023: 72,6
- 8026: 72,13
- 8028: 72,18
- 8044: 73,21
- 8055: 75,25
- 8229: 73,5
- 10945: 4,-76
- 10956: 8,-77
- 10957: 8,-77
- 10967: 8,-65
- 15789: -48,9
- 16103: 72,-1
- 19669: 46,3
- 19693: 34,6
- 19694: 35,4
- 19712: 36,8
- 19742: 40,11
- 19966: 69,-1
- 19977: 69,1
- 19994: 2,60
- 19995: 0,61
- 20028: -20,-26
- 20041: 12,-32
- 20099: 3,-60
- 20102: 5,-62
- 20114: 5,-72
- 20116: 4,-67
- 20120: 5,-78
- 20366: 56,32
- 20367: 58,31
- 20368: 57,28
- 20439: 61,25
- 20440: 54,28
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkInnerSw
- decals:
- 18105: -61,11
- 18202: -73,4
- 18363: -59,6
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerSw
- decals:
- 2199: -10,27
- 2238: -17,30
- 2548: -28,38
- 2593: -29,37
- 2594: -30,38
- 2609: -31,33
- 2742: -8,45
- 2744: -8,39
- 2829: -4,37
- 2887: 3,50
- 2896: -1,51
- 2935: -6,52
- 4148: 17,58
- 5999: 8,5
- 6058: 10,0
- 6116: -13,-5
- 6119: -10,-6
- 6866: -26,-6
- 6870: -24,-9
- 6915: -24,-7
- 7347: 22,18
- 7588: 20,-3
- 7589: 22,-8
- 7721: 34,6
- 7722: 35,4
- 8901: 62,-17
- 9405: -12,-28
- 9409: -12,-23
- 9412: -5,-23
- 9417: -4,-28
- 9422: -16,-23
- 9426: -16,-28
- 9437: 14,-28
- 9438: 2,-23
- 9439: 6,-23
- 9440: 13,-23
- 9452: 2,-28
- 9467: 6,-28
- 10839: 2,-51
- 10843: 10,-53
- 10855: 11,-60
- 10859: 12,-61
- 11120: 73,-40
- 12833: -17,-67
- 12976: -17,-78
- 12991: -23,-78
- 13017: -23,-76
- 13032: -23,-70
- 13275: -18,-81
- 13992: -35,-79
- 15804: -42,3
- 15926: 58,-10
- 16187: 81,1
- 16188: 77,1
- 16195: 92,9
- 16231: 92,6
- 16280: 94,1
- 16296: 93,2
- 16438: 97,14
- 16444: 95,13
- 17404: -58,1
- 17405: -53,-4
- 17406: -53,-9
- 17407: -53,-15
- 17408: -57,-17
- 17666: -46,-12
- 18630: -53,38
- 18631: -53,35
- 18646: -52,25
- 18916: -72,-7
- 18917: -67,-7
- 18918: -60,-8
- 20165: -9,26
- 20188: -14,34
- 20230: -10,27
- 20247: -14,29
- 20593: -29,-24
- 20763: 86,1
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkLineE
- decals:
- 4394: -17,14
- 4395: -17,15
- 4400: -14,15
- 4401: -14,14
- 4471: -11,14
- 4472: -13,14
- 4473: -13,15
- 4474: -4,16
- 4475: 3,14
- 4476: 9,14
- 4477: 9,15
- 4496: 4,17
- 4507: -4,14
- 10330: 29,-44
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkLineE
- decals:
- 12173: -4,-42
- 12178: -12,-41
- 12529: -30,-45
- 12530: -30,-46
- 12531: -30,-47
- 12552: -31,-46
- 12677: -23,-47
- 12678: -23,-46
- 12679: -23,-45
- 13062: -51,-26
- 13063: -51,-30
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkLineE
- decals:
- 3904: -1,61
- 3907: -1,61
- 4827: 13,32
- 4828: 13,31
- 4833: 11,30
- 7000: -22,1
- 7734: 38,4
- 7735: 38,6
- 7746: 49,-1
- 7747: 49,0
- 7748: 49,1
- 7755: 45,8
- 7758: 45,12
- 7767: 45,0
- 7804: 48,-4
- 7844: 49,4
- 7847: 49,8
- 7885: 49,16
- 7902: 55,17
- 7913: 48,22
- 7914: 48,23
- 7915: 48,23
- 7924: 49,12
- 7925: 44,20
- 7981: 53,-4
- 7982: 58,-4
- 8022: 71,6
- 8031: 71,13
- 8032: 71,18
- 8161: 71,-1
- 8162: 71,1
- 10917: 2,-60
- 10939: 3,-67
- 10940: 3,-66
- 10941: 3,-66
- 10942: 3,-75
- 10943: 3,-75
- 10944: 3,-76
- 10951: 7,-75
- 10952: 7,-77
- 10960: 7,-65
- 10961: 7,-65
- 10969: 9,-65
- 10970: 9,-65
- 15781: -49,9
- 16108: 74,0
- 16112: 74,2
- 19585: 74,6
- 19586: 74,7
- 19587: 74,8
- 19588: 74,10
- 19589: 74,11
- 19590: 74,13
- 19591: 74,12
- 19592: 74,14
- 19593: 74,15
- 19594: 74,17
- 19595: 74,16
- 19596: 74,18
- 19616: 67,0
- 19651: 48,3
- 19652: 48,2
- 19653: 48,7
- 19654: 48,6
- 19655: 48,5
- 19656: 48,9
- 19685: 33,6
- 19686: 33,4
- 19691: 37,5
- 19702: 38,4
- 19703: 38,6
- 19704: 41,8
- 19705: 41,7
- 19706: 41,6
- 19719: 41,0
- 19743: 48,11
- 19773: 47,21
- 19774: 47,20
- 19777: 48,17
- 19778: 48,18
- 19779: 59,22
- 19780: 59,23
- 19781: 59,24
- 19787: 59,28
- 19788: 59,27
- 19789: 59,26
- 19808: 54,16
- 19809: 54,18
- 19812: 57,17
- 19815: 57,18
- 19816: 57,16
- 19939: 55,6
- 19940: 55,7
- 19941: 55,8
- 19968: 68,-1
- 19969: 68,1
- 19974: 70,0
- 19989: 3,61
- 19990: 3,62
- 19991: 3,63
- 20022: -18,-25
- 20023: -18,-26
- 20024: -18,-27
- 20027: -21,-26
- 20071: 6,-81
- 20075: 6,-76
- 20076: 6,-71
- 20077: 6,-70
- 20078: 6,-69
- 20079: 6,-67
- 20080: 6,-67
- 20081: 6,-68
- 20082: 6,-66
- 20117: 8,-61
- 20118: 8,-60
- 20119: 8,-59
- 20308: 51,27
- 20309: 51,26
- 20310: 51,26
- 20311: 51,25
- 20312: 51,24
- 20313: 51,23
- 20314: 51,22
- 20323: 54,27
- 20324: 54,26
- 20325: 54,26
- 20326: 54,25
- 20327: 54,24
- 20328: 54,23
- 20329: 54,22
- 20338: 59,31
- 20339: 59,30
- 20340: 59,30
- 20341: 59,29
- 20353: 50,29
- 20354: 50,30
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkLineE
- decals:
- 18098: -66,5
- 18099: -66,6
- 18100: -66,7
- 18101: -66,8
- 18102: -66,9
- 18103: -66,10
- 18112: -61,9
- 18113: -61,8
- 18114: -61,7
- 18115: -61,5
- 18196: -70,5
- 18197: -70,6
- 18198: -70,7
- 18361: -56,6
- 18362: -59,6
- 18365: -60,6
- 18798: -72,-1
- 18799: -68,-1
- 18800: -67,0
- 18801: -67,-1
- 18802: -67,-2
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineE
- decals:
- 2183: -9,28
- 2184: -9,29
- 2185: -9,31
- 2186: -9,32
- 2227: -15,27
- 2230: -16,31
- 2231: -15,33
- 2232: -16,30
- 2233: -16,29
- 2234: -16,30
- 2235: -16,31
- 2240: -18,26
- 2243: -15,34
- 2247: -18,34
- 2248: -18,33
- 2249: -18,32
- 2250: -18,31
- 2251: -18,29
- 2252: -18,28
- 2253: -18,27
- 2254: -18,30
- 2542: -28,33
- 2543: -28,34
- 2544: -28,35
- 2545: -28,36
- 2546: -28,37
- 2626: -10,44
- 2629: -10,37
- 2630: -10,38
- 2725: -9,40
- 2726: -9,41
- 2727: -9,42
- 2745: -9,39
- 2746: -9,40
- 2747: -9,41
- 2748: -9,42
- 2749: -9,43
- 2752: -7,45
- 2753: -7,44
- 2754: -7,44
- 2759: -6,38
- 2760: -6,39
- 2761: -6,40
- 2762: -6,41
- 2763: -6,42
- 2764: -9,45
- 2816: -5,37
- 2823: -2,37
- 2824: -2,38
- 2825: -2,39
- 2881: 4,53
- 2882: 4,52
- 2883: 4,51
- 2898: -2,51
- 2922: -5,53
- 3347: -16,61
- 3348: -16,62
- 3349: -16,63
- 3350: -16,64
- 3351: -8,64
- 3352: -8,63
- 3353: -8,62
- 3354: -8,61
- 3405: -22,61
- 3406: -22,62
- 3407: -22,63
- 3408: -22,64
- 3409: -2,64
- 3410: -2,63
- 3411: -2,62
- 3413: -3,60
- 3414: -3,65
- 3642: -1,61
- 4150: 17,62
- 4153: 18,61
- 4192: -40,62
- 4540: 15,19
- 4902: 19,24
- 5528: -28,91
- 5529: -28,90
- 5530: -28,90
- 5531: -28,89
- 5532: -28,81
- 5533: -28,80
- 5534: -32,80
- 5535: -32,81
- 5536: -32,89
- 5537: -32,90
- 5538: -32,90
- 5539: -32,91
- 5607: -14,91
- 5608: -14,90
- 5609: -14,89
- 5615: -10,91
- 5616: -10,90
- 5617: -10,89
- 5626: -14,80
- 5627: -14,81
- 5630: -10,80
- 5631: -10,81
- 5637: 4,80
- 5638: 4,81
- 5639: 4,81
- 5640: 4,82
- 5927: -17,-20
- 5946: -7,9
- 5950: 5,9
- 6003: 11,6
- 6017: 11,2
- 6114: -14,-5
- 6121: -9,-4
- 6122: -9,-5
- 6231: 1,13
- 6270: -1,6
- 6271: -1,5
- 6272: -1,4
- 6273: -1,2
- 6274: -1,1
- 6275: -1,1
- 6276: -1,0
- 6277: -1,-2
- 6278: -1,-3
- 6279: -1,-4
- 6280: -1,-4
- 6281: -1,-6
- 6313: -8,-12
- 6314: -8,-16
- 6350: -12,-15
- 6351: -12,-14
- 6352: -12,-13
- 6353: -10,-15
- 6354: -10,-14
- 6355: -10,-13
- 6356: -14,-15
- 6357: -14,-14
- 6358: -14,-13
- 6461: -3,-20
- 6462: 1,-20
- 6463: 15,-20
- 6861: -22,-8
- 6862: -22,-7
- 6863: -22,-7
- 6864: -22,-6
- 6865: -22,-6
- 6902: -27,-6
- 6910: -25,-7
- 6911: -25,-7
- 7133: -33,9
- 7134: -33,10
- 7135: -33,11
- 7136: -33,11
- 7137: -33,12
- 7138: -33,12
- 7139: -33,13
- 7140: -33,13
- 7141: -33,13
- 7142: -33,15
- 7143: -33,14
- 7144: -33,14
- 7152: -39,9
- 7153: -39,10
- 7154: -39,11
- 7155: -39,11
- 7156: -39,12
- 7157: -39,12
- 7158: -39,13
- 7159: -39,13
- 7160: -39,13
- 7161: -39,13
- 7162: -39,14
- 7163: -39,14
- 7164: -39,15
- 7165: -39,15
- 7333: 19,18
- 7345: 25,18
- 7346: 21,18
- 7356: 26,17
- 7357: 26,18
- 7358: 26,19
- 7367: 23,18
- 7375: 19,5
- 7389: 26,5
- 7432: 19,-11
- 7433: 26,-11
- 7569: 23,1
- 7570: 23,0
- 7571: 23,-1
- 7572: 23,-3
- 7573: 23,-4
- 7574: 23,-5
- 7575: 23,-6
- 7576: 23,-7
- 7597: 19,-3
- 7627: 36,0
- 7681: 33,9
- 7682: 33,10
- 7716: 33,4
- 7717: 33,6
- 7742: 49,0
- 7751: 37,5
- 8095: 43,19
- 8096: 43,21
- 8586: 42,-15
- 8587: 42,-15
- 8588: 42,-11
- 8892: 56,-18
- 8893: 56,-19
- 8894: 56,-22
- 8895: 56,-22
- 8896: 56,-23
- 8897: 56,-23
- 8914: 53,-24
- 8915: 53,-24
- 8916: 53,-25
- 8993: 65,-11
- 8994: 65,-30
- 8995: 60,-26
- 9386: 13,-28
- 9387: 13,-27
- 9388: 12,-23
- 9389: 5,-23
- 9390: -13,-23
- 9393: -6,-23
- 9394: -5,-27
- 9395: -5,-28
- 9403: -13,-28
- 9463: 5,-28
- 9497: -7,-70
- 9498: -7,-70
- 9499: -2,-70
- 9528: -8,-73
- 9529: -1,-73
- 9530: -1,-73
- 10076: 19,-35
- 10642: 37,-30
- 10676: 20,-52
- 10819: 12,-52
- 10820: 12,-51
- 10821: 12,-50
- 10840: 1,-51
- 10850: 10,-60
- 10874: 14,-59
- 10875: 14,-60
- 10876: 14,-61
- 10879: 12,-59
- 10880: 12,-60
- 10881: 12,-61
- 10882: 12,-60
- 10883: 12,-61
- 11003: 51,-55
- 11095: 82,-44
- 11096: 82,-45
- 11097: 82,-46
- 11107: 79,-47
- 11116: 74,-39
- 11117: 74,-38
- 11183: 53,-55
- 11184: 53,-54
- 11185: 53,-53
- 11191: 45,-52
- 11192: 45,-53
- 11193: 45,-54
- 11206: 43,-56
- 11207: 43,-56
- 11208: 43,-55
- 11209: 43,-50
- 11210: 43,-50
- 11718: -74,-35
- 11719: -74,-35
- 11950: -21,-35
- 12133: -44,-28
- 12134: -44,-28
- 12135: -32,-28
- 12136: -32,-28
- 12758: -21,-47
- 12789: -17,-68
- 12790: -17,-69
- 12791: -17,-70
- 12792: -17,-71
- 12793: -17,-72
- 12794: -17,-73
- 12824: -15,-75
- 12825: -15,-76
- 12858: -13,-80
- 12859: -13,-81
- 12870: -21,-81
- 12874: -22,-67
- 12875: -22,-66
- 12955: -18,-78
- 12969: -17,-79
- 12970: -17,-80
- 12971: -17,-81
- 12978: -19,-81
- 12987: -24,-81
- 12988: -23,-78
- 12997: -23,-76
- 12998: -23,-75
- 12999: -23,-74
- 13000: -23,-73
- 13001: -23,-73
- 13002: -23,-72
- 13003: -23,-70
- 13004: -23,-69
- 13005: -23,-68
- 13006: -23,-65
- 13109: -38,26
- 13110: -38,28
- 13277: -19,-81
- 13788: -38,-67
- 13957: -29,-74
- 13958: -29,-77
- 13959: -29,-78
- 13969: -36,-78
- 13972: -31,-78
- 13973: -31,-77
- 13974: -31,-80
- 14881: -21,23
- 14882: -8,23
- 14883: 6,23
- 15819: -40,5
- 15922: 57,-31
- 15925: 57,-10
- 15936: 58,-27
- 15937: 60,-27
- 15938: 60,-14
- 15939: 58,-14
- 16161: 76,1
- 16162: 80,1
- 16177: 85,1
- 16244: 100,-3
- 16271: 92,2
- 16388: 81,-2
- 16389: 81,-3
- 16390: 81,-4
- 16402: 85,-2
- 16403: 85,-3
- 16404: 85,-4
- 16405: 89,-2
- 16406: 89,-3
- 16407: 89,-4
- 16433: 94,13
- 16441: 96,13
- 17281: -58,-17
- 17282: -54,-12
- 17283: -54,-13
- 17284: -54,-14
- 17285: -54,-15
- 17286: -54,-9
- 17287: -54,-8
- 17288: -54,-7
- 17289: -59,1
- 17328: -45,5
- 17338: -51,5
- 17339: -54,5
- 17655: -46,-17
- 17656: -46,-16
- 17657: -46,-15
- 17658: -46,-14
- 17659: -46,-13
- 17689: -74,-7
- 17857: -50,-8
- 17924: -74,-7
- 18245: -76,6
- 18246: -76,5
- 18247: -76,4
- 18250: -79,4
- 18251: -79,5
- 18252: -79,6
- 18276: -78,10
- 18277: -76,10
- 18611: -44,47
- 18618: -57,33
- 18619: -53,33
- 18620: -53,34
- 18621: -53,35
- 18622: -53,36
- 18623: -53,37
- 18637: -55,21
- 18649: -52,24
- 18650: -52,23
- 18684: -57,6
- 18721: -54,-4
- 18722: -54,-3
- 18723: -54,-2
- 18724: -54,-1
- 18904: -73,-7
- 18905: -68,-7
- 18906: -61,-8
- 18940: -50,-37
- 19007: -16,-14
- 19008: -16,-15
- 19030: -17,-9
- 19059: 15,-9
- 19570: 57,8
- 19571: 59,8
- 19572: 63,8
- 19573: 61,8
- 20166: -9,26
- 20235: -9,26
- 20239: -9,28
- 20240: -9,29
- 20242: -9,31
- 20243: -9,32
- 20590: -27,-23
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkLineE
- decals:
- 4252: -17,19
- 4253: -15,27
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkLineN
- decals:
- 4409: -12,16
- 4411: -10,15
- 4418: -10,12
- 4430: 10,16
- 4449: -12,13
- 4450: -10,13
- 4451: -9,13
- 4452: -8,13
- 4453: -7,13
- 4454: -6,13
- 4455: -3,15
- 4456: -2,15
- 4457: -1,15
- 4458: 0,15
- 4459: 1,15
- 4460: 4,13
- 4461: 5,13
- 4462: 6,13
- 4463: 7,13
- 4464: 8,13
- 4465: 10,13
- 4481: -8,16
- 4482: -7,16
- 4484: -5,18
- 4485: -4,18
- 4486: -3,18
- 4487: -2,18
- 4488: -1,18
- 4489: 0,18
- 4490: 1,18
- 4491: 2,18
- 4492: 3,18
- 4497: 5,16
- 4498: 6,16
- 4500: 8,15
- 4544: -2,14
- 5811: -10,12
- 5952: 8,12
- 10331: 30,-44
- 10332: 31,-44
- 10333: 32,-44
- 10334: 33,-44
- 15654: -12,13
- - node:
- color: '#96A4EBFF'
- id: BrickTileDarkLineN
- decals:
- 5807: -12,13
- 5808: -10,12
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkLineN
- decals:
- 12155: -9,-38
- 12156: -8,-38
- 12157: -6,-38
- 12179: -6,-45
- 12541: -24,-49
- 12542: -29,-48
- 12543: -28,-48
- 12544: -27,-48
- 12545: -26,-48
- 12546: -25,-48
- 12547: -24,-48
- 13061: -52,-25
- - node:
- color: '#CEDA8BFF'
- id: BrickTileDarkLineN
- decals:
- 11272: 44,-61
- 11273: 44,-64
- 11288: 39,-64
- 11289: 40,-64
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkLineN
- decals:
- 3902: 2,59
- 3905: 2,59
- 7002: -24,-1
- 7760: 40,10
- 7761: 36,7
- 7763: 36,10
- 7765: 40,2
- 7801: 36,12
- 7832: 46,10
- 7833: 47,10
- 7834: 48,10
- 7851: 53,10
- 7852: 53,10
- 7865: 47,14
- 7866: 51,14
- 7904: 52,20
- 7916: 57,20
- 7961: 47,-6
- 7966: 47,-2
- 7967: 52,-2
- 7968: 57,-2
- 7975: 51,-3
- 7976: 56,-3
- 7994: 61,-2
- 7995: 65,-2
- 8037: 73,20
- 8043: 73,20
- 8050: 75,24
- 8051: 75,24
- 8231: 73,4
- 10120: 12,-33
- 10920: 5,-63
- 10938: 5,-73
- 10953: 8,-77
- 10959: 5,-79
- 10977: 4,-83
- 15782: -48,9
- 15783: -47,9
- 15784: -46,9
- 15787: -48,7
- 19629: 57,1
- 19630: 56,1
- 19631: 55,1
- 19632: 54,1
- 19633: 50,1
- 19634: 51,1
- 19635: 52,1
- 19636: 53,1
- 19637: 61,1
- 19638: 60,1
- 19639: 59,1
- 19640: 65,1
- 19641: 64,1
- 19642: 64,1
- 19643: 63,1
- 19644: 67,1
- 19659: 45,5
- 19660: 44,5
- 19661: 43,5
- 19662: 42,5
- 19681: 36,7
- 19682: 37,6
- 19683: 35,6
- 19684: 34,6
- 19695: 35,3
- 19736: 40,13
- 19771: 46,24
- 19810: 51,19
- 19811: 53,19
- 19830: 70,-3
- 19840: 73,23
- 19841: 74,23
- 19894: 52,13
- 19895: 53,13
- 19896: 54,13
- 19897: 55,13
- 19898: 56,13
- 19899: 57,13
- 19900: 58,13
- 19901: 58,13
- 19902: 59,13
- 19933: 52,9
- 19934: 51,9
- 19935: 54,9
- 19967: 69,-2
- 19970: 69,1
- 19971: 70,1
- 19980: 1,65
- 19981: 2,65
- 20020: -19,-24
- 20021: -18,-24
- 20032: 12,-30
- 20094: 4,-58
- 20095: 5,-58
- 20096: 6,-58
- 20097: 6,-58
- 20111: 9,-77
- 20112: 9,-74
- 20287: 50,32
- 20288: 51,32
- 20289: 52,32
- 20290: 52,32
- 20291: 56,32
- 20292: 53,32
- 20293: 54,32
- 20294: 55,32
- 20295: 55,32
- 20330: 52,21
- 20331: 53,21
- 20332: 55,21
- 20333: 56,21
- 20342: 57,32
- 20343: 58,32
- 20346: 54,29
- 20347: 56,28
- 20348: 57,28
- 20349: 52,28
- 20350: 51,28
- 20423: 62,26
- 20424: 63,26
- 20425: 64,26
- 20426: 65,26
- 20427: 66,26
- - node:
- color: '#DABC8BFF'
- id: BrickTileDarkLineN
- decals:
- 3899: 6,86
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkLineN
- decals:
- 18094: -65,4
- 18095: -64,4
- 18096: -63,4
- 18097: -62,4
- 18117: -65,11
- 18118: -64,11
- 18119: -63,11
- 18120: -62,11
- 18189: -73,8
- 18190: -71,8
- 18201: -73,3
- 18784: -72,1
- 18785: -71,1
- 18786: -69,1
- 18787: -70,1
- 18788: -68,1
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineN
- decals:
- 1267: 69,4
- 2200: -9,25
- 2201: -8,34
- 2245: -16,34
- 2425: -19,54
- 2618: -14,46
- 2673: -14,46
- 2674: -13,46
- 2675: -12,46
- 2676: -11,46
- 2828: -2,40
- 2894: 0,54
- 2895: 3,54
- 2901: 3,49
- 2919: -6,51
- 2924: -6,54
- 2926: -5,54
- 3644: 2,59
- 4061: 18,72
- 4062: 19,72
- 4063: 20,72
- 4064: 21,72
- 4065: 22,72
- 4089: 20,67
- 4141: 13,62
- 4142: 14,62
- 4143: 15,62
- 4151: 18,61
- 4155: 19,60
- 4156: 20,60
- 4682: 15,25
- 4905: 20,24
- 5815: -19,7
- 5831: -19,-7
- 5855: -33,25
- 5856: -32,25
- 5892: -13,59
- 5893: -12,59
- 5894: -11,59
- 5895: -13,66
- 5896: -12,66
- 5897: -11,66
- 6005: 9,7
- 6019: 10,3
- 6020: 9,3
- 6043: 8,4
- 6044: 10,-1
- 6110: -12,-3
- 6123: -10,-7
- 6149: -11,-3
- 6225: -1,14
- 6226: 0,14
- 6282: -1,-7
- 6375: -12,-18
- 6414: 17,-7
- 6415: 17,-7
- 6425: 17,7
- 6470: -19,-22
- 6601: 17,-22
- 6674: 13,-18
- 6675: 13,-18
- 6857: -23,-5
- 6858: -23,-5
- 6859: -25,-5
- 6860: -25,-5
- 6872: -24,-10
- 6912: -24,-8
- 7336: 20,18
- 7344: 24,19
- 7360: 25,20
- 7361: 24,20
- 7362: 23,20
- 7368: 24,17
- 7567: 21,2
- 7598: 22,-9
- 7628: 35,1
- 7645: 27,9
- 7672: 30,11
- 7673: 31,11
- 7674: 32,11
- 7683: 29,7
- 7713: 34,6
- 7714: 35,6
- 7715: 37,6
- 7724: 35,3
- 7831: 47,10
- 8061: 40,22
- 8062: 40,22
- 8063: 41,22
- 8064: 42,22
- 8065: 42,22
- 8079: 35,21
- 8575: 34,-17
- 8576: 35,-17
- 8577: 35,-17
- 8600: 35,-7
- 8876: 57,-24
- 8877: 58,-24
- 8878: 58,-24
- 8879: 59,-24
- 8880: 59,-24
- 8881: 60,-24
- 8882: 60,-24
- 8883: 61,-24
- 9131: -1,-29
- 9132: -1,-22
- 9133: -1,-37
- 9134: -1,-57
- 9135: -1,-63
- 9365: -5,-24
- 9366: -4,-24
- 9367: 6,-24
- 9368: 7,-24
- 9369: 8,-24
- 9370: 9,-24
- 9371: 10,-24
- 9372: -8,-24
- 9373: -9,-24
- 9374: -10,-24
- 9375: -11,-24
- 9376: -12,-24
- 9391: -16,-24
- 9392: -15,-24
- 9428: 2,-24
- 9429: 3,-24
- 9430: 13,-24
- 9431: 14,-24
- 9482: 14,-24
- 9485: 2,-24
- 9534: -5,-66
- 9535: -4,-66
- 9536: -4,-66
- 9541: -1,-82
- 9822: -5,-68
- 9823: -4,-68
- 10072: 17,-37
- 10073: 27,-37
- 10643: 36,-29
- 10644: 36,-29
- 10822: 11,-49
- 10823: 10,-49
- 10824: 9,-49
- 10825: 9,-49
- 10826: 9,-49
- 10827: 8,-49
- 10828: 6,-49
- 10829: 7,-49
- 10830: 6,-49
- 10831: 5,-49
- 10835: 3,-49
- 10842: 10,-54
- 10862: 12,-62
- 10868: 11,-58
- 10869: 12,-58
- 10870: 12,-58
- 10871: 13,-58
- 10872: 13,-58
- 11001: 50,-54
- 11002: 50,-54
- 11098: 81,-43
- 11113: 73,-41
- 11114: 73,-41
- 11115: 73,-37
- 11942: -19,-33
- 11955: -23,-33
- 11959: -14,-37
- 11960: -14,-37
- 12115: -14,-45
- 12809: -20,-66
- 12810: -20,-66
- 12811: -19,-66
- 12812: -18,-66
- 12813: -16,-66
- 12814: -15,-66
- 12815: -14,-66
- 12816: -13,-66
- 12817: -17,-66
- 12818: -16,-74
- 12819: -18,-74
- 12835: -21,-76
- 12836: -21,-76
- 12837: -20,-76
- 12838: -14,-76
- 12839: -13,-76
- 12842: -20,-65
- 12843: -19,-65
- 12844: -18,-65
- 12845: -16,-65
- 12846: -15,-65
- 12847: -14,-65
- 12856: -15,-79
- 12857: -14,-79
- 12868: -22,-80
- 12873: -21,-66
- 12956: -21,-77
- 12957: -17,-78
- 12958: -16,-78
- 12959: -15,-78
- 12961: -13,-78
- 12992: -23,-79
- 12994: -23,-77
- 13013: -23,-71
- 13180: -30,70
- 13181: -12,70
- 13182: -20,66
- 13183: -19,66
- 13184: -18,66
- 13185: -6,66
- 13186: -5,66
- 13187: -4,66
- 13188: 6,70
- 13214: -6,59
- 13215: -5,59
- 13216: -4,59
- 13217: -18,59
- 13218: -19,59
- 13219: -20,59
- 13220: -20,66
- 13221: -19,66
- 13780: -40,-66
- 13781: -39,-66
- 13951: -36,-73
- 13952: -35,-73
- 13953: -34,-73
- 13954: -32,-73
- 13955: -31,-73
- 13985: -33,-77
- 13986: -34,-77
- 13989: -32,-77
- 14822: -60,20
- 14823: -59,20
- 14824: -58,20
- 14848: -65,13
- 14849: -64,13
- 14850: -64,13
- 14851: -63,13
- 14852: -62,13
- 14887: -19,21
- 14888: 17,21
- 15802: -42,2
- 15805: -42,3
- 15816: -42,7
- 15916: 58,-11
- 15917: 59,-11
- 15918: 60,-11
- 16152: 77,0
- 16153: 78,0
- 16154: 79,0
- 16155: 82,0
- 16156: 83,0
- 16157: 84,0
- 16158: 86,0
- 16159: 87,0
- 16160: 88,0
- 16176: 81,0
- 16190: 90,10
- 16191: 91,10
- 16192: 92,10
- 16193: 93,10
- 16196: 92,8
- 16198: 91,7
- 16230: 92,5
- 16275: 95,0
- 16276: 94,0
- 16386: 80,-2
- 16414: 88,-2
- 16415: 84,-2
- 16435: 97,14
- 16436: 97,13
- 16446: 96,14
- 16451: 97,13
- 16561: 92,15
- 16571: 89,9
- 16572: 90,9
- 17273: -58,0
- 17274: -56,0
- 17275: -53,-5
- 17276: -53,-10
- 17277: -53,-16
- 17278: -57,-18
- 17279: -56,-18
- 17280: -55,-18
- 17318: -47,6
- 17319: -46,6
- 17324: -49,3
- 17479: -58,3
- 17480: -57,3
- 17645: -48,-18
- 17646: -47,-18
- 17647: -48,-12
- 17648: -47,-12
- 17691: -70,-9
- 17927: -70,-9
- 18237: -81,15
- 18238: -81,13
- 18647: -54,25
- 18648: -53,25
- 18720: -57,0
- 18891: -60,-9
- 18892: -59,-9
- 18893: -58,-9
- 18894: -67,-8
- 18895: -66,-8
- 18896: -65,-8
- 18897: -65,-8
- 18898: -64,-8
- 18899: -69,-8
- 18900: -69,-8
- 18901: -70,-8
- 18902: -71,-8
- 18903: -72,-8
- 18942: -52,-36
- 18943: -52,-36
- 18944: -51,-36
- 18946: -49,-38
- 19106: 13,-11
- 19109: 13,-13
- 19125: 13,-13
- 19557: 69,10
- 20171: -11,33
- 20178: -14,34
- 20179: -13,34
- 20225: -11,33
- 20563: -8,-40
- 20564: -7,-40
- 20585: -30,-22
- 20586: -29,-22
- 20587: -28,-22
- 20595: -29,-25
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkLineN
- decals:
- 4257: -19,25
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkLineS
- decals:
- 4404: -12,13
- 4405: -11,13
- 4406: -9,13
- 4407: -8,13
- 4408: -7,13
- 4419: -6,13
- 4420: -5,13
- 4421: 3,13
- 4422: 4,13
- 4423: 5,13
- 4424: 6,13
- 4425: 7,13
- 4426: 9,13
- 4427: 10,13
- 4432: -10,15
- 4433: -9,15
- 4434: -8,15
- 4435: -7,15
- 4436: -3,17
- 4437: -1,17
- 4438: -1,17
- 4439: -2,17
- 4440: 0,17
- 4441: 1,17
- 4442: 4,15
- 4443: 5,15
- 4444: 6,15
- 4445: 7,15
- 4446: 8,15
- 4447: 10,16
- 4448: -12,16
- 4508: -3,15
- 4509: -1,15
- 4510: 0,15
- 4511: 1,15
- 5810: -6,15
- 10339: 31,-45
- 10340: 32,-45
- 10341: 33,-45
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkLineS
- decals:
- 12163: -10,-44
- 12164: -9,-44
- 12165: -8,-44
- 12166: -8,-44
- 12167: -7,-44
- 12176: -7,-37
- 12177: -7,-37
- 12535: -29,-48
- 12536: -28,-48
- 12537: -28,-48
- 12538: -27,-48
- 12539: -26,-48
- 12540: -25,-48
- 13060: -52,-31
- - node:
- color: '#CEDA8BFF'
- id: BrickTileDarkLineS
- decals:
- 11274: 44,-61
- 11275: 44,-64
- 11286: 40,-64
- 11287: 39,-64
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkLineS
- decals:
- 4826: 13,33
- 4830: 12,30
- 6998: -23,3
- 7003: -23,0
- 7004: -23,0
- 7754: 40,10
- 7759: 40,10
- 7762: 36,10
- 7764: 40,2
- 7781: 37,8
- 7835: 46,10
- 7836: 47,10
- 7837: 48,10
- 7849: 53,10
- 7850: 53,10
- 7862: 47,14
- 7863: 51,14
- 7864: 51,14
- 7892: 52,20
- 7893: 57,20
- 7965: 47,-2
- 7969: 52,-2
- 7970: 57,-2
- 7971: 56,-5
- 7972: 57,-5
- 7973: 52,-5
- 7974: 51,-5
- 8013: 58,2
- 8014: 62,2
- 8015: 66,2
- 8036: 73,20
- 8040: 75,24
- 8041: 75,24
- 8042: 73,20
- 8052: 75,26
- 8226: 69,-2
- 8230: 73,4
- 10117: 11,-29
- 10118: 13,-29
- 10912: 7,-57
- 10921: 5,-63
- 10946: 5,-73
- 10954: 8,-75
- 10955: 8,-75
- 10980: 5,-79
- 15778: -47,8
- 16105: 72,-1
- 16106: 73,-1
- 19601: 51,-1
- 19602: 50,-1
- 19603: 55,-1
- 19604: 54,-1
- 19605: 53,-1
- 19606: 56,-1
- 19607: 60,-1
- 19608: 59,-1
- 19609: 58,-1
- 19610: 64,-1
- 19611: 63,-1
- 19612: 62,-1
- 19613: 66,-1
- 19614: 67,-1
- 19617: 48,-1
- 19663: 44,3
- 19664: 44,3
- 19665: 43,3
- 19666: 42,3
- 19667: 41,3
- 19668: 45,3
- 19680: 36,7
- 19687: 34,4
- 19688: 36,4
- 19689: 36,4
- 19690: 37,4
- 19720: 40,-1
- 19744: 52,11
- 19745: 51,11
- 19746: 54,11
- 19747: 55,11
- 19748: 56,11
- 19749: 57,11
- 19750: 58,11
- 19751: 58,11
- 19752: 59,11
- 19757: 47,14
- 19758: 46,15
- 19792: 50,21
- 19793: 51,21
- 19794: 56,21
- 19795: 55,21
- 19796: 54,21
- 19797: 54,21
- 19798: 53,21
- 19799: 58,21
- 19800: 53,15
- 19801: 52,15
- 19824: 69,-5
- 19825: 70,-5
- 19842: 74,21
- 19843: 75,21
- 19944: 51,3
- 19945: 52,3
- 19946: 53,3
- 19947: 54,3
- 19948: 54,3
- 19964: 70,-1
- 19984: 1,60
- 19985: 3,60
- 20017: -19,-28
- 20037: 13,-29
- 20040: 11,-32
- 20043: 13,-32
- 20047: 7,-57
- 20048: 6,-62
- 20049: 7,-62
- 20050: 9,-78
- 20072: 5,-82
- 20091: 4,-62
- 20110: 9,-75
- 20296: 52,28
- 20297: 53,28
- 20306: 55,28
- 20307: 56,28
- 20355: 51,31
- 20356: 57,31
- 20357: 54,32
- 20358: 53,32
- 20359: 55,32
- 20431: 66,24
- 20432: 65,24
- 20433: 64,24
- 20434: 63,24
- 20435: 62,24
- - node:
- color: '#DABC8BFF'
- id: BrickTileDarkLineS
- decals:
- 3901: 5,91
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkLineS
- decals:
- 18085: -65,11
- 18086: -64,11
- 18087: -63,11
- 18088: -62,11
- 18128: -65,4
- 18129: -64,4
- 18130: -63,4
- 18131: -62,4
- 18188: -72,9
- 18199: -72,4
- 18200: -71,4
- 18204: -72,9
- 18805: -72,-3
- 18806: -71,-3
- 18807: -72,-3
- 18808: -70,-3
- 18809: -69,-3
- 18810: -68,-3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineS
- decals:
- 2226: -16,26
- 2241: -17,35
- 2242: -16,35
- 2246: -15,35
- 2424: -19,54
- 2496: -15,35
- 2621: -14,36
- 2679: -14,36
- 2680: -13,36
- 2681: -13,36
- 2682: -11,36
- 2683: -11,36
- 2684: -12,36
- 2739: -7,36
- 2821: -3,36
- 2834: -3,41
- 2871: 1,55
- 2872: 2,55
- 2884: 0,50
- 2885: 1,50
- 2886: 2,50
- 2899: -1,55
- 3890: 6,66
- 4056: 18,72
- 4057: 19,72
- 4058: 20,72
- 4059: 21,72
- 4060: 22,72
- 4084: 19,68
- 4085: 21,68
- 4086: 22,68
- 4094: 21,65
- 4095: 22,65
- 4096: 18,65
- 4144: 13,58
- 4145: 14,58
- 4146: 15,58
- 4147: 16,58
- 4681: 15,25
- 4903: 20,24
- 4904: 21,24
- 4907: 21,25
- 5814: -19,7
- 5830: -19,-7
- 5853: -33,25
- 5854: -32,25
- 5885: -13,66
- 5886: -12,66
- 5887: -11,66
- 5888: -13,59
- 5889: -12,59
- 5890: -11,59
- 5891: -11,59
- 6000: 9,5
- 6001: 10,5
- 6011: 8,0
- 6012: 9,0
- 6042: 8,4
- 6117: -12,-6
- 6118: -11,-6
- 6152: -10,-2
- 6192: -10,-2
- 6227: -2,12
- 6228: -1,12
- 6229: -1,12
- 6230: 0,12
- 6374: -12,-18
- 6413: 17,-7
- 6424: 17,7
- 6469: -19,-22
- 6600: 17,-22
- 6669: 19,-14
- 6673: 13,-18
- 6847: -25,-9
- 6848: -23,-9
- 6849: -23,-9
- 6903: -24,-4
- 6906: -24,-6
- 6907: -24,-6
- 7335: 20,18
- 7341: 24,17
- 7352: 23,16
- 7353: 24,16
- 7354: 25,16
- 7366: 24,19
- 7420: 22,11
- 7565: 21,-8
- 7566: 23,-8
- 7596: 22,3
- 7625: 35,-1
- 7677: 30,8
- 7678: 31,8
- 7679: 32,8
- 7710: 34,4
- 7711: 36,4
- 7712: 37,4
- 7727: 36,7
- 7830: 47,10
- 8069: 42,18
- 8070: 41,18
- 8071: 40,18
- 8078: 35,19
- 8572: 34,-17
- 8573: 35,-17
- 8574: 35,-17
- 8598: 35,-7
- 8599: 35,-7
- 8869: 57,-17
- 8870: 58,-17
- 8871: 58,-17
- 8872: 59,-17
- 8873: 59,-17
- 8874: 60,-17
- 8875: 61,-17
- 8919: 52,-26
- 8920: 52,-22
- 9128: -1,-37
- 9129: -1,-29
- 9130: -1,-22
- 9136: -1,-63
- 9137: -1,-57
- 9396: -16,-26
- 9397: -12,-27
- 9398: -11,-27
- 9399: -10,-27
- 9400: -9,-27
- 9401: -8,-27
- 9402: -4,-26
- 9432: 2,-26
- 9433: 14,-26
- 9455: 6,-27
- 9456: 6,-27
- 9457: 7,-27
- 9458: 8,-27
- 9459: 9,-27
- 9460: 10,-27
- 9461: 10,-27
- 9531: -5,-66
- 9532: -4,-66
- 9533: -4,-66
- 9540: -1,-82
- 9820: -5,-68
- 9821: -4,-68
- 10070: 17,-37
- 10071: 27,-37
- 10640: 36,-31
- 10641: 36,-31
- 10807: 3,-53
- 10808: 4,-53
- 10809: 5,-53
- 10810: 6,-53
- 10811: 6,-53
- 10812: 7,-53
- 10813: 7,-53
- 10814: 8,-53
- 10815: 8,-53
- 10816: 9,-53
- 10817: 9,-53
- 10818: 11,-53
- 10834: 4,-48
- 10861: 12,-58
- 10863: 11,-62
- 10864: 12,-62
- 10865: 13,-62
- 10878: 10,-57
- 10999: 50,-56
- 11000: 50,-56
- 11103: 80,-47
- 11104: 81,-47
- 11644: -64,-48
- 11940: -19,-33
- 11941: -19,-33
- 11951: -23,-33
- 11952: -23,-33
- 11953: -14,-37
- 11954: -14,-37
- 12114: -14,-45
- 12784: -13,-67
- 12785: -14,-67
- 12786: -15,-67
- 12804: -16,-67
- 12805: -19,-67
- 12806: -20,-67
- 12807: -19,-67
- 12808: -18,-67
- 12828: -18,-76
- 12829: -17,-76
- 12830: -16,-76
- 12848: -17,-64
- 12862: -15,-82
- 12863: -14,-82
- 12869: -22,-82
- 12872: -21,-67
- 12960: -14,-77
- 12965: -13,-78
- 12966: -14,-78
- 12967: -15,-78
- 12968: -16,-78
- 12993: -23,-79
- 12995: -23,-77
- 13012: -23,-71
- 13022: -24,-63
- 13031: -24,-70
- 13171: 6,70
- 13172: -6,66
- 13173: -5,66
- 13174: -4,66
- 13175: -20,66
- 13176: -19,66
- 13177: -18,66
- 13178: -12,70
- 13179: -30,70
- 13207: -20,59
- 13208: -19,59
- 13209: -18,59
- 13210: -6,59
- 13211: -5,59
- 13212: -4,59
- 13785: -40,-68
- 13786: -39,-68
- 13963: -35,-76
- 13964: -34,-76
- 13965: -32,-76
- 13966: -32,-76
- 13967: -33,-76
- 13968: -31,-76
- 13997: -33,-79
- 14819: -60,20
- 14820: -59,20
- 14821: -58,20
- 14843: -65,13
- 14844: -64,13
- 14845: -64,13
- 14846: -62,13
- 14847: -63,13
- 14886: -19,21
- 14890: 17,21
- 15806: -42,3
- 15815: -42,7
- 15919: 58,-30
- 15920: 59,-30
- 15921: 60,-30
- 16140: 77,2
- 16141: 78,2
- 16142: 79,2
- 16143: 81,2
- 16144: 82,2
- 16145: 83,2
- 16146: 83,2
- 16147: 84,2
- 16148: 86,2
- 16149: 87,2
- 16150: 88,2
- 16151: 88,2
- 16197: 92,8
- 16268: 94,4
- 16269: 95,4
- 16393: 80,-5
- 16420: 88,-5
- 16421: 84,-5
- 16560: 92,15
- 17265: -57,-16
- 17266: -56,-16
- 17267: -55,-16
- 17268: -53,-11
- 17269: -53,-6
- 17270: -53,0
- 17271: -56,2
- 17272: -57,2
- 17317: -48,7
- 17325: -48,4
- 17326: -47,4
- 17327: -46,4
- 17477: -58,3
- 17478: -57,3
- 17481: -58,2
- 17650: -48,-12
- 17651: -47,-12
- 17652: -48,-18
- 17653: -47,-18
- 17690: -70,-9
- 17926: -70,-9
- 18235: -81,13
- 18236: -81,15
- 18643: -54,25
- 18644: -53,25
- 18879: -72,-6
- 18880: -71,-6
- 18881: -70,-6
- 18882: -69,-6
- 18883: -67,-6
- 18884: -66,-6
- 18885: -65,-6
- 18886: -64,-6
- 18887: -60,-7
- 18888: -59,-7
- 18889: -59,-7
- 18890: -58,-7
- 18934: -52,-38
- 18935: -51,-38
- 18936: -51,-38
- 18937: -50,-38
- 18938: -49,-38
- 18939: -49,-38
- 19105: 13,-11
- 19111: 13,-14
- 19121: 13,-14
- 19543: 69,3
- 19556: 69,10
- 20173: -13,26
- 20175: -11,27
- 20232: -11,27
- 20561: -8,-40
- 20562: -7,-40
- 20591: -30,-24
- 20592: -28,-24
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkLineS
- decals:
- 4256: -19,25
- - node:
- color: '#00C9DAFF'
- id: BrickTileDarkLineW
- decals:
- 8502: 32,-16
- - node:
- color: '#8CB7E8FF'
- id: BrickTileDarkLineW
- decals:
- 4414: -9,16
- 4466: 9,14
- 4467: 11,14
- 4468: 11,15
- 4469: 2,16
- 4470: -5,14
- 4478: -11,14
- 4479: -11,15
- 4495: -6,17
- 4512: 2,14
- 4521: 12,14
- 4522: 12,15
- 4523: 15,14
- 4524: 15,15
- - node:
- color: '#A9DA8BFF'
- id: BrickTileDarkLineW
- decals:
- 3191: -27,54
- - node:
- color: '#B18BDAFF'
- id: BrickTileDarkLineW
- decals:
- 12168: -11,-43
- 12169: -11,-42
- 12170: -11,-42
- 12171: -11,-40
- 12172: -11,-40
- 12174: -3,-41
- 12175: -3,-40
- 12532: -23,-45
- 12533: -23,-46
- 12534: -23,-47
- 12550: -30,-47
- 12551: -30,-45
- 13055: -53,-30
- 13056: -53,-29
- 13057: -53,-27
- 13058: -53,-27
- 13059: -53,-26
- 13065: -49,-28
- 13398: -53,-28
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkLineW
- decals:
- 3903: 4,60
- 3906: 4,60
- 3908: 4,64
- 4831: 12,31
- 6993: -24,0
- 6994: -24,1
- 7743: 49,1
- 7744: 49,0
- 7745: 49,-1
- 7756: 45,8
- 7757: 45,12
- 7766: 45,0
- 7843: 49,4
- 7846: 49,8
- 7874: 49,16
- 7895: 58,19
- 7896: 58,19
- 7903: 55,17
- 7911: 48,22
- 7912: 48,23
- 7921: 60,25
- 7923: 49,12
- 7983: 55,-4
- 7984: 50,-4
- 8016: 56,4
- 8017: 56,5
- 8018: 61,12
- 8021: 61,12
- 8046: 77,22
- 8047: 77,22
- 8059: 75,9
- 8159: 68,1
- 8160: 68,-1
- 8227: 72,-4
- 10119: 15,-31
- 10936: 7,-65
- 10949: 7,-77
- 10950: 7,-75
- 10978: 4,-82
- 15780: -45,9
- 15788: -48,8
- 15797: 46,-4
- 16101: 72,2
- 16102: 72,0
- 16111: 75,1
- 19574: 72,7
- 19575: 72,8
- 19576: 72,9
- 19577: 72,9
- 19578: 72,10
- 19579: 72,11
- 19580: 72,12
- 19581: 72,14
- 19582: 72,15
- 19583: 72,16
- 19584: 72,17
- 19626: 43,0
- 19627: 46,2
- 19628: 46,1
- 19648: 68,1
- 19649: 68,-1
- 19672: 46,7
- 19673: 46,6
- 19674: 46,9
- 19675: 46,11
- 19676: 39,7
- 19677: 39,5
- 19692: 34,5
- 19700: 38,4
- 19701: 38,6
- 19718: 39,0
- 19721: 39,12
- 19722: 43,12
- 19723: 43,8
- 19761: 45,16
- 19762: 45,17
- 19763: 45,18
- 19764: 45,18
- 19765: 45,19
- 19766: 45,23
- 19767: 45,22
- 19768: 45,22
- 19769: 45,21
- 19782: 49,25
- 19783: 49,24
- 19784: 49,26
- 19785: 49,27
- 19786: 49,28
- 19802: 50,18
- 19803: 50,17
- 19813: 56,16
- 19814: 56,18
- 19831: 68,-4
- 19844: 72,22
- 19949: 50,5
- 19950: 50,6
- 19951: 50,7
- 19957: 69,0
- 19972: 71,1
- 19973: 71,-1
- 19986: 0,64
- 19987: 0,63
- 19988: 0,62
- 20018: -20,-27
- 20019: -20,-25
- 20026: -17,-24
- 20046: 10,-31
- 20059: 4,-81
- 20060: 4,-77
- 20083: 4,-65
- 20084: 4,-68
- 20085: 4,-69
- 20086: 4,-70
- 20087: 4,-71
- 20092: 3,-61
- 20093: 3,-59
- 20298: 54,27
- 20299: 54,26
- 20300: 54,25
- 20301: 54,25
- 20302: 54,24
- 20303: 54,24
- 20304: 54,23
- 20305: 54,22
- 20315: 57,22
- 20316: 57,22
- 20317: 57,23
- 20318: 57,24
- 20319: 57,25
- 20320: 57,25
- 20321: 57,26
- 20322: 57,27
- 20334: 49,29
- 20335: 49,30
- 20336: 49,31
- 20351: 58,29
- 20352: 58,30
- - node:
- color: '#EFB341FF'
- id: BrickTileDarkLineW
- decals:
- 18089: -61,9
- 18090: -61,8
- 18091: -61,7
- 18092: -61,6
- 18093: -61,5
- 18116: -61,10
- 18121: -66,10
- 18122: -66,9
- 18123: -66,8
- 18124: -66,8
- 18125: -66,7
- 18126: -66,6
- 18127: -66,5
- 18132: -60,6
- 18137: -60,10
- 18139: -60,6
- 18193: -74,7
- 18194: -74,6
- 18195: -74,5
- 18360: -56,6
- 18366: -60,6
- 18367: -60,10
- 18793: -72,-1
- 18794: -68,-1
- 18795: -73,0
- 18796: -73,-1
- 18797: -73,-2
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineW
- decals:
- 2190: -8,30
- 2191: -8,33
- 2192: -8,27
- 2218: -17,33
- 2219: -17,32
- 2220: -17,31
- 2221: -17,29
- 2222: -17,28
- 2223: -17,27
- 2536: -28,33
- 2537: -28,34
- 2538: -28,34
- 2539: -28,35
- 2540: -28,36
- 2541: -28,37
- 2722: -9,40
- 2723: -9,41
- 2724: -9,42
- 2728: -9,43
- 2729: -9,42
- 2730: -9,41
- 2731: -9,40
- 2732: -9,39
- 2733: -9,45
- 2734: -8,44
- 2735: -8,38
- 2736: -8,37
- 2812: -5,37
- 2817: -4,38
- 2818: -4,39
- 2833: -1,40
- 2877: 4,51
- 2878: 4,52
- 2879: 4,53
- 2880: 4,53
- 2890: -1,52
- 2891: -1,53
- 2892: -1,54
- 2893: -1,54
- 2923: -7,53
- 2928: -4,54
- 3342: -16,64
- 3343: -16,63
- 3344: -16,62
- 3345: -16,61
- 3357: -8,61
- 3358: -8,62
- 3359: -8,63
- 3360: -8,63
- 3361: -8,64
- 3401: -22,61
- 3402: -22,62
- 3403: -22,63
- 3404: -22,64
- 3416: -2,64
- 3417: -2,63
- 3418: -2,62
- 3419: -2,62
- 3420: -2,61
- 3425: -1,61
- 3641: -1,61
- 3896: 4,64
- 3898: 4,60
- 4105: 24,66
- 4189: -42,61
- 4190: -42,60
- 4541: 15,19
- 5522: -32,80
- 5523: -32,81
- 5524: -32,89
- 5525: -32,89
- 5526: -32,90
- 5527: -32,91
- 5540: -28,91
- 5541: -28,90
- 5542: -28,89
- 5543: -28,89
- 5544: -28,81
- 5545: -28,80
- 5546: -28,80
- 5604: -14,89
- 5605: -14,90
- 5606: -14,91
- 5610: -10,89
- 5611: -10,90
- 5612: -10,90
- 5613: -10,91
- 5614: -10,91
- 5623: -14,80
- 5624: -14,80
- 5625: -14,81
- 5628: -10,80
- 5629: -10,81
- 5633: 4,81
- 5634: 4,80
- 5635: 4,79
- 5926: -17,-20
- 5945: -7,9
- 5949: 5,9
- 5995: 7,6
- 6007: 7,2
- 6008: 7,1
- 6014: 12,1
- 6104: -16,-5
- 6107: -14,-5
- 6108: -13,-4
- 6232: -3,13
- 6248: -1,-6
- 6249: -1,-4
- 6250: -1,-3
- 6251: -1,-2
- 6252: -1,-2
- 6253: -1,0
- 6254: -1,1
- 6255: -1,1
- 6256: -1,2
- 6257: -1,4
- 6258: -1,5
- 6259: -1,5
- 6260: -1,6
- 6311: -8,-16
- 6312: -8,-12
- 6338: -14,-15
- 6339: -14,-14
- 6340: -14,-13
- 6341: -12,-15
- 6342: -12,-14
- 6343: -12,-13
- 6344: -16,-15
- 6345: -16,-14
- 6346: -16,-13
- 6347: -10,-15
- 6348: -10,-14
- 6349: -10,-13
- 6459: -3,-20
- 6460: 1,-20
- 6464: 15,-20
- 6855: -26,-7
- 6856: -26,-8
- 6908: -23,-7
- 6909: -23,-7
- 7145: -33,15
- 7146: -33,14
- 7147: -33,13
- 7148: -33,12
- 7149: -33,11
- 7150: -33,10
- 7151: -33,9
- 7166: -39,10
- 7167: -39,9
- 7168: -39,11
- 7169: -39,11
- 7170: -39,12
- 7171: -39,13
- 7172: -39,14
- 7173: -39,14
- 7174: -39,14
- 7175: -39,15
- 7176: -39,16
- 7337: 21,18
- 7338: 23,18
- 7349: 22,19
- 7350: 22,17
- 7365: 25,18
- 7374: 19,5
- 7388: 26,5
- 7430: 19,-11
- 7431: 26,-11
- 7579: 20,1
- 7580: 20,0
- 7581: 20,-1
- 7582: 20,-2
- 7583: 20,-4
- 7584: 20,-5
- 7585: 20,-6
- 7586: 20,-7
- 7599: 24,-8
- 7600: 24,-2
- 7626: 34,0
- 7642: 28,9
- 7669: 29,8
- 7670: 29,9
- 7671: 29,10
- 7718: 34,5
- 7725: 38,6
- 7726: 38,4
- 7741: 49,0
- 8073: 39,19
- 8074: 39,20
- 8075: 39,21
- 8076: 39,21
- 8077: 34,20
- 8090: 37,20
- 8091: 37,20
- 8092: 44,20
- 8583: 42,-11
- 8584: 42,-15
- 8585: 42,-15
- 8867: 57,-20
- 8868: 57,-21
- 8884: 62,-23
- 8885: 62,-23
- 8886: 62,-22
- 8887: 62,-22
- 8888: 62,-20
- 8889: 62,-19
- 8890: 62,-18
- 8891: 62,-21
- 8911: 51,-24
- 8912: 51,-24
- 8913: 51,-25
- 8991: 64,-30
- 8992: 64,-11
- 9377: -7,-23
- 9378: -14,-23
- 9379: -15,-28
- 9380: -15,-27
- 9381: -7,-28
- 9382: 11,-23
- 9383: 4,-23
- 9384: 3,-28
- 9385: 3,-27
- 9462: 11,-28
- 9477: 3,-28
- 9495: -7,-70
- 9496: -2,-70
- 9525: -8,-73
- 9526: -1,-73
- 9527: -1,-73
- 10075: 19,-35
- 10645: 35,-30
- 10677: 20,-52
- 10836: 2,-50
- 10837: 2,-52
- 10845: 10,-58
- 10846: 10,-59
- 10847: 10,-60
- 10848: 10,-60
- 10849: 10,-61
- 10851: 14,-60
- 10852: 14,-60
- 10884: 12,-61
- 10885: 12,-60
- 10886: 12,-59
- 11004: 49,-55
- 11099: 80,-44
- 11100: 80,-45
- 11101: 80,-45
- 11102: 80,-46
- 11118: 72,-39
- 11119: 72,-38
- 11179: 53,-55
- 11180: 53,-55
- 11181: 53,-54
- 11182: 53,-53
- 11194: 44,-55
- 11195: 44,-54
- 11196: 43,-51
- 11197: 43,-51
- 11198: 43,-52
- 11199: 43,-53
- 11200: 43,-54
- 11201: 43,-54
- 11202: 43,-55
- 11203: 43,-56
- 11204: 43,-51
- 11205: 43,-50
- 11720: -75,-35
- 11949: -21,-35
- 12130: -44,-28
- 12131: -32,-28
- 12132: -32,-28
- 12757: -21,-47
- 12787: -12,-67
- 12788: -12,-66
- 12795: -17,-73
- 12796: -17,-72
- 12797: -17,-71
- 12798: -17,-71
- 12799: -17,-70
- 12800: -17,-70
- 12801: -17,-69
- 12802: -17,-69
- 12803: -17,-68
- 12822: -19,-75
- 12823: -19,-76
- 12851: -16,-82
- 12852: -16,-81
- 12853: -16,-80
- 12871: -23,-81
- 12876: -12,-66
- 12877: -12,-67
- 12975: -17,-79
- 12979: -19,-81
- 12986: -24,-81
- 12996: -12,-78
- 13014: -24,-73
- 13015: -24,-74
- 13016: -24,-75
- 13020: -22,-66
- 13021: -22,-67
- 13025: -25,-65
- 13026: -25,-66
- 13027: -25,-67
- 13028: -25,-67
- 13029: -25,-68
- 13030: -25,-69
- 13104: -38,28
- 13105: -38,27
- 13114: -37,27
- 13783: -41,-67
- 13949: -37,-79
- 13950: -37,-74
- 13961: -30,-78
- 13962: -30,-77
- 13970: -35,-78
- 13971: -35,-77
- 13990: -35,-80
- 14878: -21,23
- 14879: -8,23
- 14880: 6,23
- 15818: -40,5
- 15923: 61,-31
- 15924: 61,-10
- 15934: 58,-27
- 15935: 60,-27
- 15944: 58,-14
- 15945: 60,-14
- 16110: 75,1
- 16163: 80,1
- 16164: 89,1
- 16175: 85,1
- 16243: 99,-3
- 16270: 97,2
- 16394: 79,-4
- 16395: 79,-3
- 16416: 83,-3
- 16417: 83,-4
- 16430: 94,10
- 16631: 87,-4
- 16632: 87,-3
- 17290: -55,1
- 17291: -52,-1
- 17292: -52,-2
- 17293: -52,-2
- 17294: -52,-3
- 17295: -52,-4
- 17296: -52,-7
- 17297: -52,-8
- 17298: -52,-9
- 17299: -52,-12
- 17300: -52,-13
- 17301: -52,-14
- 17302: -52,-15
- 17303: -54,-17
- 17322: -49,4
- 17323: -49,5
- 17336: -54,5
- 17337: -51,5
- 17660: -46,-13
- 17661: -46,-14
- 17662: -46,-15
- 17663: -46,-16
- 17664: -46,-17
- 17688: -74,-7
- 17856: -50,-8
- 17925: -74,-7
- 18242: -79,6
- 18243: -79,5
- 18244: -79,4
- 18253: -76,6
- 18254: -76,5
- 18255: -76,4
- 18278: -76,10
- 18279: -79,10
- 18610: -45,47
- 18626: -53,33
- 18627: -53,34
- 18628: -53,36
- 18629: -53,37
- 18633: -57,33
- 18636: -55,21
- 18641: -52,23
- 18642: -52,24
- 18683: -58,6
- 18907: -63,-7
- 18908: -68,-7
- 18909: -57,-8
- 18932: -53,-37
- 19027: -17,-9
- 19028: -17,-10
- 19060: 15,-9
- 19566: 57,8
- 19567: 59,8
- 19568: 61,8
- 19569: 63,8
- 20180: -14,33
- 20181: -14,32
- 20182: -15,30
- 20183: -14,28
- 20184: -14,27
- 20589: -31,-23
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkLineW
- decals:
- 4251: -17,19
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelBox
- decals:
- 8034: 73,20
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelCornerNe
- decals:
- 8492: 31,-14
- 8493: 22,-14
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelCornerNe
- decals:
- 16314: 79,6
- - node:
- color: '#8BC9DAFF'
- id: BrickTileSteelCornerNe
- decals:
- 4130: 21,63
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelCornerNe
- decals:
- 10177: 22,-31
- 10411: 32,-31
- 10412: 25,-31
- 10417: 26,-25
- 10441: 31,-23
- 10450: 32,-22
- 10529: 24,-46
- 10593: 34,-47
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelCornerNe
- decals:
- 12366: -26,-26
- 12384: -45,-25
- 12385: -41,-26
- 12386: -33,-26
- 12387: -37,-26
- 12388: -37,-26
- 12471: -45,-22
- 12573: -28,-38
- 12574: -23,-38
- 12747: -17,-38
- 16690: -62,-46
- 16691: -63,-45
- - node:
- color: '#CEDA8BFF'
- id: BrickTileSteelCornerNe
- decals:
- 11355: 32,-66
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelCornerNe
- decals:
- 2421: -17,53
- 2441: -15,52
- 2556: -28,38
- 2601: -33,38
- 2989: -2,46
- 3003: -5,28
- 3024: -26,43
- 3667: -28,92
- 3676: -29,96
- 3685: -28,82
- 3696: -11,96
- 3710: -10,92
- 3718: -10,82
- 3758: 8,69
- 3978: 3,58
- 4370: -23,23
- 5378: 36,32
- 6625: 4,-14
- 6693: 14,-15
- 7119: -35,16
- 7120: -34,15
- 7211: -35,19
- 7228: -22,15
- 7410: 24,10
- 7496: 31,2
- 7510: 31,-7
- 9032: 63,-10
- 9036: 57,-10
- 9259: 1,-34
- 9260: 1,-34
- 9548: 2,-64
- 9549: 2,-64
- 9688: 1,-58
- 9689: 1,-58
- 9828: -39,-14
- 11006: 56,-43
- 11007: 56,-43
- 11051: 49,-38
- 11052: 49,-38
- 11658: -58,-34
- 11704: -77,-19
- 11705: -77,-26
- 12231: -37,-51
- 12232: -37,-55
- 12267: -23,-50
- 12282: -33,-52
- 12283: -33,-52
- 13826: -36,-60
- 15765: -8,-69
- 16327: 89,2
- 16981: -39,-6
- 17245: -55,-12
- 17370: -49,-1
- 18050: 7,85
- 18056: 8,82
- 19014: -9,-12
- 19015: -9,-12
- 19016: -9,-12
- 19089: 10,-12
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelCornerNw
- decals:
- 8490: 20,-14
- 8491: 24,-14
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelCornerNw
- decals:
- 3947: -28,65
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelCornerNw
- decals:
- 10178: 20,-31
- 10410: 31,-31
- 10414: 24,-31
- 10418: 24,-25
- 10442: 29,-23
- 10455: 28,-22
- 10528: 20,-46
- 10592: 32,-47
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelCornerNw
- decals:
- 12371: -31,-26
- 12396: -43,-26
- 12397: -43,-26
- 12398: -35,-26
- 12430: -39,-26
- 12472: -47,-22
- 12575: -30,-38
- 12576: -26,-38
- 12748: -21,-38
- 16692: -65,-45
- - node:
- color: '#CEDA8BFF'
- id: BrickTileSteelCornerNw
- decals:
- 11354: 26,-66
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelCornerNw
- decals:
- 8208: 68,6
- - node:
- color: '#DA8BC9FF'
- id: BrickTileSteelCornerNw
- decals:
- 4135: 18,63
- - node:
- color: '#DAA58BFF'
- id: BrickTileSteelCornerNw
- decals:
- 4789: 13,39
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelCornerNw
- decals:
- 2419: -23,52
- 2420: -21,53
- 2464: -24,45
- 2522: -28,39
- 2585: -30,33
- 2600: -34,38
- 2960: -3,51
- 2990: -5,46
- 3005: -7,28
- 3521: -32,69
- 3629: -32,92
- 3630: -32,82
- 3677: -31,96
- 3697: -13,96
- 3711: -14,92
- 3719: -14,82
- 3860: 4,82
- 5359: 29,32
- 5847: -21,-15
- 6084: 7,-4
- 6544: -6,-14
- 6694: 12,-15
- 6695: 12,-15
- 7107: -44,21
- 7121: -37,16
- 7122: -37,16
- 7123: -38,15
- 7199: -37,16
- 7212: -37,19
- 7236: -29,15
- 7237: -29,15
- 7411: 20,10
- 7491: 25,2
- 7502: 25,-7
- 7657: 28,12
- 8737: 38,-19
- 9035: 61,-10
- 9041: 55,-10
- 9261: -3,-34
- 9690: -3,-58
- 9691: -3,-58
- 9705: -3,-58
- 10020: -11,-64
- 11005: 54,-43
- 11049: 43,-38
- 11050: 43,-38
- 11703: -78,-19
- 11711: -78,-26
- 11712: -78,-23
- 12230: -42,-51
- 12237: -39,-55
- 12266: -26,-50
- 12284: -35,-52
- 12285: -35,-52
- 13827: -38,-60
- 14805: -45,15
- 15766: -1,-69
- 16122: 76,2
- 16983: -40,-6
- 17217: -61,-12
- 17344: -61,-1
- 17372: -51,-1
- 18051: 5,85
- 19086: 6,-12
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileSteelCornerNw
- decals:
- 939: 28,1
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelCornerSe
- decals:
- 8494: 22,-16
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelCornerSe
- decals:
- 16301: 79,4
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelCornerSe
- decals:
- 10180: 22,-32
- 10408: 32,-32
- 10409: 32,-32
- 10415: 25,-32
- 10429: 26,-26
- 10538: 24,-49
- 10595: 34,-53
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelCornerSe
- decals:
- 12358: -26,-32
- 12392: -33,-30
- 12393: -37,-30
- 12394: -41,-30
- 12395: -45,-31
- 12473: -45,-23
- 12508: -24,-47
- 12577: -28,-42
- 12578: -23,-42
- - node:
- color: '#CEDA8BFF'
- id: BrickTileSteelCornerSe
- decals:
- 11353: 32,-70
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelCornerSe
- decals:
- 8166: 59,3
- 8167: 63,3
- 8168: 67,3
- 8187: 70,5
- 19883: 67,4
- - node:
- color: '#DA8BC9FF'
- id: BrickTileSteelCornerSe
- decals:
- 4159: 21,61
->>>>>>> master
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
decals:
-<<<<<<< HEAD
1900: 87,-3
4142: -17,55
4230: -25,29
@@ -10904,124 +5351,45 @@ entities:
16407: -34,-80
16435: -39,-61
16436: -35,-61
-=======
- 2440: -17,55
- 2524: -25,29
- 2598: -33,32
- 2993: -2,44
- 3004: -5,26
- 3681: -28,88
- 3689: -28,79
- 3706: -10,88
- 3723: -10,79
- 3982: 3,56
- 6078: 14,-6
- 6363: -9,-17
- 6604: 18,-21
- 6622: 4,-17
- 6658: 10,-17
- 7117: -35,8
- 7118: -34,9
- 7210: -35,18
- 7227: -22,8
- 7407: 24,8
- 7513: 31,-8
- 7515: 31,-6
- 9001: 57,-31
- 9010: 63,-31
- 9011: 63,-31
- 9256: 1,-36
- 9558: -8,-66
- 9622: -3,-82
- 9684: 1,-62
- 9685: 1,-62
- 11009: 56,-44
- 11046: 49,-45
- 11656: -58,-39
- 11657: -58,-39
- 11696: -77,-32
- 11713: -77,-24
- 12233: -37,-56
- 12234: -37,-56
- 12252: -41,-56
- 12276: -23,-54
- 12287: -33,-54
- 15763: -8,-71
- 16980: 8,67
- 16982: -39,-7
- 17241: -55,-15
- 17373: -49,-4
- 18067: 8,74
->>>>>>> master
- node:
cleanable: True
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
decals:
-<<<<<<< HEAD
2244: 30,1
-=======
- 943: 30,1
->>>>>>> master
- node:
color: '#00C9DAFF'
id: BrickTileSteelCornerSw
decals:
-<<<<<<< HEAD
11269: 20,-16
11270: 24,-18
-=======
- 8488: 20,-16
- 8489: 24,-18
->>>>>>> master
- node:
color: '#00FFFFFF'
id: BrickTileSteelCornerSw
decals:
-<<<<<<< HEAD
5919: -26,59
14161: 69,-50
14162: 69,-50
-=======
- 3956: -26,59
- 11073: 69,-50
- 11074: 69,-50
->>>>>>> master
- node:
color: '#8BC9DAFF'
id: BrickTileSteelCornerSw
decals:
-<<<<<<< HEAD
5743: 5,62
6099: 18,62
-=======
- 4132: 18,62
->>>>>>> master
- node:
color: '#8CB7E8FF'
id: BrickTileSteelCornerSw
decals:
-<<<<<<< HEAD
13102: 20,-32
13369: 31,-32
13375: 24,-32
13421: 24,-26
13534: 20,-49
13589: 32,-53
-=======
- 10179: 20,-32
- 10407: 31,-32
- 10413: 24,-32
- 10428: 24,-26
- 10539: 20,-49
- 10594: 32,-53
- 19999: 5,62
->>>>>>> master
- node:
color: '#B18BDAFF'
id: BrickTileSteelCornerSw
decals:
-<<<<<<< HEAD
15709: -31,-32
15722: -43,-30
15723: -39,-30
@@ -11029,43 +5397,22 @@ entities:
15840: -29,-47
15912: -26,-42
15913: -30,-42
-=======
- 12376: -31,-32
- 12389: -43,-30
- 12390: -39,-30
- 12391: -35,-30
- 12507: -29,-47
- 12579: -26,-42
- 12580: -30,-42
- 16685: -66,-48
->>>>>>> master
- node:
color: '#CEDA8BFF'
id: BrickTileSteelCornerSw
decals:
-<<<<<<< HEAD
14440: 26,-70
-=======
- 11352: 26,-70
->>>>>>> master
- node:
color: '#DA8B8BFF'
id: BrickTileSteelCornerSw
decals:
-<<<<<<< HEAD
10833: 57,3
10834: 61,3
10835: 65,3
-=======
- 8163: 57,3
- 8164: 61,3
- 8165: 65,3
->>>>>>> master
- node:
color: '#DA8BC9FF'
id: BrickTileSteelCornerSw
decals:
-<<<<<<< HEAD
6101: 19,61
- node:
color: '#DAA58BFF'
@@ -11206,143 +5553,10 @@ entities:
decals:
16054: -21,-44
16055: -17,-44
-=======
- 4134: 19,61
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelCornerSw
- decals:
- 2468: -24,40
- 2497: -23,28
- 2525: -27,29
- 2586: -30,37
- 2599: -34,32
- 2991: -5,45
- 2992: -4,44
- 3006: -7,26
- 3520: -32,67
- 3682: -32,88
- 3688: -32,79
- 3713: -14,88
- 3720: -14,79
- 3863: 4,79
- 5366: 29,30
- 5848: -21,-18
- 6082: 7,-6
- 6548: -6,-17
- 6661: 6,-17
- 6662: 6,-17
- 6726: -20,-21
- 7111: -44,8
- 7115: -37,8
- 7116: -38,9
- 7213: -37,18
- 7248: -29,8
- 7406: 20,8
- 8750: 38,-21
- 8999: 55,-31
- 9000: 55,-31
- 9008: 61,-31
- 9257: -3,-36
- 9258: -3,-36
- 9557: -1,-66
- 9616: -9,-82
- 9623: 1,-82
- 9624: 1,-82
- 9680: -3,-62
- 9835: -42,-18
- 11047: 43,-45
- 11048: 43,-45
- 11646: -60,-39
- 11697: -78,-32
- 11698: -78,-28
- 11699: -78,-24
- 11700: -78,-21
- 12251: -42,-56
- 12265: -26,-54
- 12286: -35,-54
- 14813: -45,11
- 15764: -1,-71
- 15810: -43,4
- 16123: 76,0
- 16984: -40,-7
- 17228: -61,-15
- 17347: -61,-4
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelEndE
- decals:
- 3940: -24,65
- 3969: -24,59
- 3970: -24,61
- 3971: -24,63
- 10621: 38,-26
- - node:
- color: '#CEDA8BFF'
- id: BrickTileSteelEndE
- decals:
- 11268: 45,-64
- 11334: 42,-75
- 11335: 39,-75
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelEndE
- decals:
- 19907: 70,9
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelEndE
- decals:
- 7663: 33,12
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelEndN
- decals:
- 11072: 69,-49
- - node:
- color: '#A9DA8BFF'
- id: BrickTileSteelEndN
- decals:
- 3194: -39,50
- 3210: -39,46
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelEndN
- decals:
- 19905: 58,9
- 19906: 66,9
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelEndS
- decals:
- 8506: 27,-18
- 8507: 29,-18
- 8508: 31,-18
- 8509: 31,-18
- - node:
- color: '#A9DA8BFF'
- id: BrickTileSteelEndS
- decals:
- 3195: -39,48
- 3215: -39,45
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelEndS
- decals:
- 12717: -21,-44
- 12718: -17,-44
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndS
decals:
- 7648: 28,8
- 12951: -21,-78
->>>>>>> master
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelEndS
- decals:
-<<<<<<< HEAD
9913: 28,8
16303: -21,-78
- node:
@@ -11357,27 +5571,10 @@ entities:
decals:
13624: 34,-26
13746: 12,-47
-=======
- 931: 28,-8
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelEndW
- decals:
- 10629: 34,-26
- 10751: 12,-47
- 16302: 76,6
- 16303: 76,4
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelEndW
- decals:
- 16683: -67,-46
->>>>>>> master
- node:
color: '#CEDA8BFF'
id: BrickTileSteelEndW
decals:
-<<<<<<< HEAD
14424: 38,-75
14425: 41,-75
- node:
@@ -11385,20 +5582,10 @@ entities:
id: BrickTileSteelEndW
decals:
5883: 9,90
-=======
- 11336: 38,-75
- 11337: 41,-75
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelEndW
- decals:
- 19908: 68,9
->>>>>>> master
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndW
decals:
-<<<<<<< HEAD
4263: -28,39
8482: -16,-11
8483: -16,-11
@@ -11406,33 +5593,18 @@ entities:
8485: -16,-17
10930: 76,1
16304: -19,-78
-=======
- 2557: -28,39
- 6359: -16,-17
- 6360: -16,-17
- 12952: -19,-78
- 19013: -16,-12
->>>>>>> master
- node:
color: '#00C9DAFF'
id: BrickTileSteelInnerNe
decals:
-<<<<<<< HEAD
11304: 25,-14
11307: 22,-15
11308: 22,-15
11320: 31,-16
-=======
- 8523: 25,-14
- 8526: 22,-15
- 8527: 22,-15
- 8539: 31,-16
->>>>>>> master
- node:
color: '#00FFFFFF'
id: BrickTileSteelInnerNe
decals:
-<<<<<<< HEAD
5914: -25,65
5920: -26,59
5921: -26,61
@@ -11500,211 +5672,10 @@ entities:
5872: 11,87
5874: 10,88
5884: 10,90
-=======
- 3951: -25,65
- 3957: -26,59
- 3958: -26,61
- 3959: -26,63
- 10625: 37,-26
- 11075: 69,-50
- node:
- color: '#8CB7E8FF'
- id: BrickTileSteelInnerNe
- decals:
- 10456: 32,-23
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelInnerNe
- decals:
- 12410: -42,-26
- 12411: -38,-26
- 12412: -38,-26
- 12413: -34,-26
- 12414: -34,-26
- 12429: -37,-27
- 12432: -41,-27
- 12438: -37,-27
- 12440: -37,-27
- 12441: -33,-27
- 12453: -45,-27
- 12456: -46,-25
- 12523: -29,-44
- 12592: -29,-38
- 12593: -24,-38
- 12753: -17,-40
- 16696: -63,-46
- 16697: -62,-48
- 20558: -6,-41
- 20573: -6,-40
- 20581: -29,-26
- - node:
- color: '#CEDA8BFF'
- id: BrickTileSteelInnerNe
- decals:
- 11371: 32,-68
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelInnerNe
- decals:
- 8211: 66,5
- 8212: 69,6
- 8221: 58,5
- 8222: 62,5
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerNe
- decals:
- 2426: -18,53
- 2427: -18,53
- 2447: -17,52
- 2450: -15,50
- 2451: -15,48
- 2455: -15,46
- 2559: -29,38
- 2964: -3,48
- 2965: -6,50
- 2966: -12,50
- 3001: -4,46
- 3029: -30,43
- 3035: -26,41
- 3040: -32,43
- 3269: -17,58
- 3618: -11,69
- 3647: -3,58
- 3663: -29,69
- 3664: -29,77
- 3665: -29,84
- 3668: -29,92
- 3679: -30,96
- 3684: -29,82
- 3699: -12,96
- 3700: -11,92
- 3701: -11,84
- 3702: -11,77
- 3717: -11,82
- 3760: 8,68
- 3842: 7,69
- 3977: 2,58
- 3984: 3,57
- 5356: 31,28
- 5380: 36,30
- 5716: 18,-3
- 5733: -25,6
- 5762: -31,6
- 5771: -42,23
- 5827: -18,-1
- 5902: 11,-8
- 5912: -18,-8
- 5935: 8,-8
- 6072: 12,-4
- 6095: -1,-8
- 6096: -10,-8
- 6383: -11,-19
- 6409: 18,-10
- 6456: -18,-19
- 6554: -4,-16
- 6561: -4,-19
- 6605: 18,-20
- 6628: 2,-14
- 6666: 10,-16
- 6684: 14,-19
- 6699: 8,-19
- 7098: -36,6
- 7099: -36,6
- 7201: -36,16
- 7203: -35,15
- 7231: -26,15
- 7235: -27,15
- 7255: -22,12
- 7328: 18,12
- 7370: 18,18
- 7373: 18,6
- 7415: 22,10
- 7416: 22,6
- 7470: 22,-10
- 7497: 31,1
- 7559: 29,6
- 7564: 32,4
- 8390: 81,-22
- 8642: 31,-12
- 8677: 41,-8
- 8678: 41,-8
- 8689: 33,-8
- 8732: 39,-19
- 8733: 41,-19
- 8734: 41,-19
- 8756: 41,-21
- 8791: 47,-19
- 8812: 52,-19
- 8813: 52,-19
- 8819: 53,-21
- 8865: 56,-20
- 9045: 60,-31
- 9046: 63,-22
- 9047: 63,-19
- 9220: 0,-25
- 9263: 0,-34
- 9326: -8,-28
- 9329: -4,-27
- 9338: -15,-23
- 9339: -15,-23
- 9340: -8,-23
- 9341: -8,-23
- 9360: -16,-27
- 9546: 0,-64
- 9547: 0,-64
- 9554: 2,-66
- 9555: 2,-66
- 9593: -10,-64
- 9665: -9,-69
- 9666: -9,-69
- 9667: -9,-75
- 9703: 0,-58
- 9836: -39,-16
- 9953: 1,-35
- 10013: 0,-39
- 10741: 0,-44
- 10771: 0,-51
- 10976: 2,-75
- 10993: 1,-60
- 11066: 49,-42
- 11659: -59,-34
- 11664: -59,-41
- 11665: -59,-41
- 11708: -77,-31
- 11832: -15,-30
- 12255: -37,-53
- 12269: -24,-50
- 12270: -24,-50
- 13819: -37,-60
- 15355: 16,24
- 15358: 8,24
- 15359: 5,24
- 15362: 0,24
- 15363: -9,24
- 15375: -18,24
- 15820: -41,6
- 16318: 78,2
- 17222: -58,-12
- 17309: -58,-6
- 17369: -52,2
- 17384: -57,-9
- 17385: -57,-7
- 18053: 6,85
- 18057: 7,82
- 18059: 8,81
- 18064: 8,76
- 19024: -14,-12
- 19025: -10,-12
- 19091: 8,-12
- 20669: -24,13
->>>>>>> master
- - node:
- cleanable: True
color: '#FFFFFFFF'
id: BrickTileSteelInnerNe
decals:
-<<<<<<< HEAD
4128: -18,53
4129: -18,53
4149: -17,52
@@ -15825,4272 +9796,10 @@ entities:
4266: -31,38
10513: 61,30
11371: 38,-7
-=======
- 4276: -18,15
- 4294: -18,4
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelInnerNw
- decals:
- 8522: 25,-14
- 8525: 24,-15
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelInnerNw
- decals:
- 3950: -25,65
- 10624: 37,-26
- 16309: 77,4
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelInnerNw
- decals:
- 10590: 32,-51
- 10591: 32,-49
- 19002: 17,-31
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelInnerNw
- decals:
- 12369: -29,-26
- 12370: -29,-26
- 12382: -31,-27
- 12383: -31,-27
- 12407: -42,-26
- 12408: -38,-26
- 12409: -38,-26
- 12427: -39,-27
- 12428: -35,-27
- 12437: -43,-27
- 12446: -34,-26
- 12455: -46,-25
- 12468: -48,-28
- 12470: -48,-31
- 12474: -47,-23
- 12524: -24,-44
- 12585: -30,-39
- 12590: -29,-38
- 12591: -24,-38
- 16695: -65,-46
- 20557: -9,-41
- 20572: -9,-40
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelInnerNw
- decals:
- 8209: 69,6
- 8210: 66,5
- 8219: 58,5
- 8220: 62,5
- 19932: 68,5
- - node:
- color: '#DAA58BFF'
- id: BrickTileSteelInnerNw
- decals:
- 4596: 7,31
- 4819: 13,36
- - node:
- color: '#DABC8BFF'
- id: BrickTileSteelInnerNw
- decals:
- 9999: 5,-32
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerNw
- decals:
- 2428: -20,53
- 2445: -21,52
- 2446: -21,52
- 2460: -23,51
- 2463: -23,48
- 2481: -24,41
- 2482: -23,45
- 2529: -27,30
- 2938: -13,48
- 2971: -6,50
- 2972: -12,50
- 3000: -4,46
- 3008: -7,27
- 3028: -30,43
- 3283: -7,58
- 3523: -31,69
- 3577: -13,69
- 3669: -31,92
- 3670: -31,84
- 3671: -31,77
- 3678: -30,96
- 3683: -31,82
- 3698: -12,96
- 3714: -13,92
- 3715: -13,84
- 3716: -13,82
- 3721: -13,77
- 3757: 5,69
- 3768: -21,55
- 3845: 5,84
- 3861: 5,82
- 3864: 5,77
- 3979: 2,58
- 4532: 16,15
- 5355: 31,28
- 5647: -20,6
- 5650: 16,-8
- 5714: 16,-4
- 5720: -20,-2
- 5761: -31,6
- 5770: -42,23
- 5846: -20,-15
- 5901: 10,-8
- 5936: 8,-8
- 6071: 12,-4
- 6094: -1,-8
- 6097: -10,-8
- 6364: -15,-17
- 6382: -13,-19
- 6551: -4,-14
- 6560: -4,-19
- 6589: 16,-19
- 6683: 12,-19
- 6690: 12,-16
- 6700: 8,-19
- 6729: -20,-20
- 7086: -36,6
- 7087: -26,6
- 7088: -26,6
- 7089: -20,12
- 7110: -44,18
- 7200: -36,16
- 7202: -37,15
- 7230: -26,15
- 7234: -25,15
- 7238: -28,15
- 7263: -21,-16
- 7264: -21,-16
- 7414: 22,10
- 7417: 22,6
- 7469: 22,-10
- 7503: 25,-8
- 7558: 29,6
- 7664: 28,11
- 8391: 79,-22
- 8552: 33,-12
- 8553: 33,-10
- 8554: 33,-10
- 8565: 33,-16
- 8731: 39,-19
- 8735: 41,-19
- 8758: 43,-21
- 8797: 46,-19
- 8811: 52,-19
- 8851: 55,-19
- 8854: 55,-21
- 8963: 55,-29
- 8964: 55,-11
- 9044: 58,-31
- 9217: -2,-25
- 9262: -2,-34
- 9327: -12,-28
- 9328: -4,-27
- 9334: -16,-23
- 9335: -16,-23
- 9342: -12,-23
- 9343: -12,-23
- 9344: -5,-23
- 9345: -5,-23
- 9359: -16,-27
- 9545: -2,-64
- 9592: -10,-64
- 9607: -11,-78
- 9608: -11,-78
- 9668: 0,-69
- 9669: 0,-75
- 9670: -5,-75
- 9693: -3,-60
- 9704: -2,-58
- 10018: -11,-66
- 11065: 43,-42
- 11661: -59,-34
- 11662: -59,-41
- 11663: -59,-41
- 11667: -60,-36
- 11671: -60,-43
- 11709: -78,-27
- 11799: -2,-48
- 11803: -2,-40
- 11809: -3,-35
- 11833: -13,-30
- 12268: -24,-50
- 12280: -26,-52
- 13154: -23,39
- 13278: -3,50
- 13773: -44,9
- 13818: -37,-60
- 14804: -44,15
- 14809: -45,14
- 14812: -45,12
- 15356: 14,24
- 15357: 7,24
- 15360: 4,24
- 15361: 0,24
- 15364: -9,24
- 15368: -20,24
- 16317: 78,2
- 16354: 76,1
- 17221: -58,-12
- 17308: -58,-6
- 17368: -53,2
- 17386: -55,-7
- 17387: -61,-7
- 18052: 6,85
- 19022: -14,-12
- 19023: -10,-12
- 19090: 8,-12
- 20259: -43,21
- 20668: -27,13
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerNw
- decals:
- 4326: -20,20
- 4329: -20,17
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelInnerSe
- decals:
- 8519: 25,-16
- 8520: 27,-16
- 8521: 29,-16
- 8528: 22,-15
- 8529: 22,-15
- 8537: 31,-16
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelInnerSe
- decals:
- 3960: -26,65
- 3961: -26,63
- 3962: -26,61
- 3975: -28,60
- 10628: 37,-26
- 16307: 78,4
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelInnerSe
- decals:
- 10182: 21,-32
- 10431: 25,-26
- 10445: 28,-24
- 10457: 32,-23
- 10525: 22,-49
- 10535: 24,-45
- 10555: 24,-45
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelInnerSe
- decals:
- 12354: -29,-32
- 12418: -42,-30
- 12419: -38,-30
- 12420: -34,-30
- 12421: -37,-29
- 12422: -41,-29
- 12442: -33,-29
- 12452: -45,-29
- 12475: -46,-23
- 12582: -24,-42
- 12583: -29,-42
- 12776: -17,-40
- 20556: -6,-43
- - node:
- color: '#CEDA8BFF'
- id: BrickTileSteelInnerSe
- decals:
- 11370: 32,-68
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelInnerSe
- decals:
- 8175: 58,3
- 8176: 62,3
- 8177: 66,3
- 8178: 63,4
- 8179: 59,4
- 8188: 70,6
- 8189: 67,5
- 19891: 62,4
- 19892: 58,4
- 19893: 66,4
- 19913: 69,9
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerSe
- decals:
- 2438: -18,55
- 2452: -15,48
- 2453: -15,50
- 2495: -15,36
- 2527: -25,30
- 2970: -3,51
- 2996: -4,48
- 3036: -30,41
- 3052: -32,44
- 3252: -17,56
- 3262: -1,56
- 3388: -17,67
- 3660: -25,67
- 3661: -30,67
- 3666: -29,84
- 3680: -29,88
- 3690: -29,79
- 3691: -29,77
- 3703: -11,77
- 3704: -11,84
- 3705: -11,88
- 3722: -11,79
- 3749: -3,67
- 3759: 8,68
- 3762: 6,67
- 3976: 2,56
- 3983: 3,57
- 5368: 31,30
- 5374: 35,30
- 5717: 18,-3
- 5743: -23,4
- 5752: -32,4
- 5767: -41,23
- 5826: -18,-1
- 6076: 14,-4
- 6088: 8,-6
- 6089: 11,-6
- 6371: -11,-17
- 6410: 18,-12
- 6555: -4,-16
- 6606: 18,-20
- 6664: 8,-17
- 6667: 10,-16
- 7195: -35,9
- 7196: -36,8
- 7209: -36,18
- 7249: -28,8
- 7250: -25,8
- 7254: -22,11
- 7327: 18,12
- 7371: 18,18
- 7372: 18,4
- 7403: 22,8
- 7476: 22,4
- 7498: 31,1
- 7533: 30,4
- 7563: 32,6
- 7668: 28,12
- 8389: 81,-19
- 8480: 25,-12
- 8641: 31,-10
- 8690: 41,-8
- 8720: 39,-16
- 8721: 39,-16
- 8755: 41,-19
- 8801: 48,-21
- 8802: 44,-21
- 8803: 52,-21
- 8820: 53,-19
- 8866: 56,-21
- 9043: 60,-10
- 9048: 63,-19
- 9049: 63,-22
- 9189: -13,-21
- 9190: -6,-21
- 9191: 0,-21
- 9192: 5,-21
- 9193: 12,-21
- 9219: 0,-26
- 9254: 0,-36
- 9255: 0,-36
- 9323: -15,-23
- 9324: -8,-23
- 9331: -8,-28
- 9332: -4,-28
- 9357: -16,-28
- 9556: 2,-67
- 9568: -8,-65
- 9569: -8,-65
- 9610: -11,-78
- 9671: -9,-71
- 9672: -9,-66
- 9682: 0,-62
- 9683: 0,-62
- 9837: -39,-16
- 9952: 1,-35
- 10014: 0,-39
- 10016: -3,-81
- 10740: 0,-44
- 10770: 0,-51
- 10975: 2,-76
- 10992: 1,-60
- 11053: 49,-42
- 11054: 47,-45
- 11055: 45,-45
- 11225: -4,-82
- 11226: -6,-82
- 11227: -6,-82
- 11706: -77,-31
- 11714: -77,-23
- 11831: -15,-32
- 12240: -39,-56
- 12264: -41,-53
- 13822: -37,-63
- 14871: -18,22
- 15354: 18,24
- 16350: 81,0
- 16351: 81,0
- 16352: 85,0
- 16353: 85,0
- 17252: -58,-10
- 17351: -58,-4
- 17361: -52,8
- 17382: -57,-7
- 17383: -57,-9
- 18060: 8,80
- 18065: 8,75
- 18068: 7,74
- 18980: -60,-43
- 19035: -18,-10
- 19053: -14,-10
- 19054: -10,-10
- 19083: 8,-10
- 20667: -24,10
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerSe
- decals:
- 4277: -18,14
- 4299: -18,4
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelInnerSw
- decals:
- 8516: 27,-16
- 8517: 29,-16
- 8518: 31,-16
- 8530: 24,-15
- 8535: 25,-18
- 8536: 32,-11
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelInnerSw
- decals:
- 3973: -26,60
- 10626: 37,-26
- 10627: 37,-26
- 16306: 78,4
- 16311: 77,6
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelInnerSw
- decals:
- 10181: 21,-32
- 10430: 25,-26
- 10444: 32,-24
- 10524: 22,-49
- 10534: 20,-45
- 10554: 20,-45
- 10588: 32,-51
- 10589: 32,-49
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelInnerSw
- decals:
- 12352: -29,-32
- 12353: -29,-32
- 12380: -31,-29
- 12381: -31,-29
- 12415: -42,-30
- 12416: -38,-30
- 12417: -34,-30
- 12423: -39,-29
- 12424: -35,-29
- 12436: -43,-29
- 12467: -48,-28
- 12469: -48,-25
- 12476: -46,-23
- 12581: -24,-42
- 12584: -29,-42
- 12586: -30,-39
- 16698: -66,-46
- 20555: -9,-43
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelInnerSw
- decals:
- 8172: 58,3
- 8173: 62,3
- 8174: 66,3
- 8180: 65,4
- 8181: 57,4
- 8182: 61,4
- 19888: 62,4
- 19889: 58,4
- 19890: 66,4
- 19912: 69,9
- - node:
- color: '#DA8BC9FF'
- id: BrickTileSteelInnerSw
- decals:
- 4139: 19,62
- - node:
- color: '#DAA58BFF'
- id: BrickTileSteelInnerSw
- decals:
- 4838: 20,34
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerSw
- decals:
- 2462: -23,50
- 2466: -23,47
- 2467: -23,47
- 2469: -24,41
- 2503: -21,28
- 2505: -20,26
- 2516: -23,30
- 2517: -23,40
- 2528: -27,30
- 2531: -27,32
- 2558: -27,39
- 2685: -14,36
- 2937: -13,50
- 2997: -4,48
- 3002: -4,45
- 3007: -7,27
- 3045: -30,40
- 3253: -20,55
- 3260: -1,56
- 3263: 1,56
- 3387: -7,67
- 3639: -21,67
- 3659: -25,67
- 3662: -30,67
- 3672: -31,77
- 3673: -31,79
- 3674: -31,84
- 3675: -31,88
- 3692: -13,77
- 3693: -13,79
- 3694: -13,84
- 3695: -13,88
- 3761: 6,67
- 3844: 5,84
- 3862: 5,79
- 3865: 5,77
- 4531: 16,14
- 5367: 31,30
- 5373: 35,30
- 5648: -20,4
- 5649: -20,4
- 5715: 16,-4
- 5719: -20,-3
- 5742: -23,4
- 5751: -33,4
- 6086: 10,-6
- 6087: 8,-6
- 6370: -13,-17
- 6557: -4,-17
- 6665: 8,-17
- 6688: 12,-16
- 6727: -20,-20
- 6728: -20,-20
- 6735: -20,-18
- 7090: -20,11
- 7108: -43,23
- 7109: -44,18
- 7194: -37,9
- 7197: -36,8
- 7208: -36,18
- 7247: -28,8
- 7251: -26,8
- 7265: -21,-17
- 7402: 22,8
- 7475: 22,4
- 7504: 25,-8
- 7532: 30,4
- 7665: 28,11
- 8388: 79,-19
- 8479: 25,-12
- 8548: 33,-12
- 8549: 33,-12
- 8550: 33,-10
- 8551: 33,-10
- 8719: 41,-16
- 8722: 39,-16
- 8723: 39,-16
- 8757: 43,-19
- 8798: 44,-21
- 8799: 48,-21
- 8800: 52,-21
- 8850: 55,-21
- 8852: 55,-19
- 8853: 55,-19
- 8962: 55,-29
- 8965: 55,-11
- 8966: 55,-11
- 9042: 58,-10
- 9184: 4,-21
- 9185: 11,-21
- 9186: -7,-21
- 9187: -2,-21
- 9188: -14,-21
- 9218: -2,-26
- 9253: -2,-36
- 9325: -12,-23
- 9330: -4,-28
- 9333: -12,-28
- 9336: -16,-23
- 9337: -16,-23
- 9346: -5,-23
- 9347: -5,-23
- 9358: -16,-28
- 9570: -1,-65
- 9609: -11,-78
- 9673: 0,-71
- 9674: 0,-66
- 9681: -2,-62
- 9694: -3,-60
- 10015: 1,-81
- 10017: -11,-67
- 11056: 43,-42
- 11057: 43,-42
- 11058: 45,-45
- 11059: 47,-45
- 11060: 47,-45
- 11222: 2,-82
- 11223: -4,-82
- 11224: -4,-82
- 11228: -6,-82
- 11229: -9,-78
- 11668: -60,-36
- 11669: -60,-36
- 11670: -60,-43
- 11710: -78,-27
- 11798: -2,-48
- 11802: -2,-41
- 11808: -3,-35
- 11830: -13,-32
- 12281: -26,-53
- 13772: -44,9
- 13821: -37,-63
- 14810: -45,14
- 14811: -45,12
- 14814: -44,11
- 15447: 16,22
- 15830: -43,8
- 16346: 76,1
- 16347: 81,0
- 16348: 85,0
- 16349: 89,0
- 16928: -60,-48
- 17251: -58,-10
- 17350: -58,-4
- 17360: -53,8
- 17388: -55,-7
- 17389: -55,-9
- 19012: -15,-12
- 19055: -14,-10
- 19056: -10,-10
- 19057: 16,-10
- 19082: 8,-10
- 20666: -27,10
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerSw
- decals:
- 4327: -20,20
- 4328: -20,17
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelLineE
- decals:
- 8500: 25,-18
- 8501: 25,-17
- 8532: 23,-15
- 8538: 31,-15
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelLineE
- decals:
- 3953: -26,64
- 3954: -26,62
- 3955: -26,60
- 3966: -25,63
- 3967: -25,61
- 3968: -25,59
- 10631: 35,-26
- 16315: 79,5
- - node:
- color: '#8BC9DAFF'
- id: BrickTileSteelLineE
- decals:
- 3891: 4,64
- 3893: 4,64
- 3895: 4,64
- 4131: 21,61
- 4160: 21,61
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelLineE
- decals:
- 10329: 29,-44
- 10439: 31,-24
- 10440: 31,-24
- 10449: 32,-24
- 10536: 24,-47
- 10537: 24,-48
- 10585: 31,-49
- 10586: 31,-51
- 10587: 31,-51
- 10597: 34,-52
- 10598: 34,-51
- 10599: 34,-50
- 10600: 34,-49
- 10601: 34,-48
- - node:
- color: '#A9DA8BFF'
- id: BrickTileSteelLineE
- decals:
- 3196: -39,49
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelLineE
- decals:
- 11961: -21,-34
- 11962: -21,-35
- 11963: -21,-36
- 12359: -26,-31
- 12360: -26,-31
- 12361: -26,-30
- 12362: -26,-30
- 12363: -26,-29
- 12364: -26,-28
- 12365: -26,-27
- 12373: -32,-27
- 12374: -32,-28
- 12375: -32,-29
- 12433: -44,-27
- 12434: -44,-28
- 12435: -44,-29
- 12450: -45,-26
- 12451: -45,-30
- 12466: -49,-28
- 12479: -48,-23
- 12516: -24,-46
- 12517: -24,-45
- 12518: -24,-44
- 12565: -28,-41
- 12566: -28,-40
- 12567: -28,-39
- 12568: -23,-41
- 12569: -23,-40
- 12570: -23,-39
- 12587: -31,-39
- 12744: -17,-43
- 12745: -17,-42
- 12746: -17,-41
- 12752: -17,-39
- 16689: -62,-47
- 20551: -10,-43
- 20552: -10,-42
- 20553: -10,-41
- 20554: -10,-41
- 20565: -10,-40
- - node:
- color: '#CEDA8BFF'
- id: BrickTileSteelLineE
- decals:
- 11367: 32,-69
- 11368: 32,-67
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelLineE
- decals:
- 8183: 67,4
- 8190: 64,4
- 8191: 64,5
- 8196: 56,4
- 8197: 56,5
- 8198: 60,4
- 8199: 60,5
- 19877: 58,3
- 19884: 66,3
- 19885: 62,3
- 19910: 69,8
- 19915: 66,8
- 19916: 66,7
- 19921: 62,7
- 19922: 62,8
- 19923: 62,9
- 19929: 58,7
- 19930: 58,8
- - node:
- color: '#DA8BC9FF'
- id: BrickTileSteelLineE
- decals:
- 4029: 9,68
- 4138: 21,62
- - node:
- color: '#DABC8BFF'
- id: BrickTileSteelLineE
- decals:
- 3909: 9,75
- 3910: 9,76
- 3911: 9,80
- 3912: 9,81
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelLineE
- decals:
- 2448: -15,51
- 2449: -15,49
- 2454: -15,47
- 2480: -25,41
- 2494: -15,35
- 2506: -24,39
- 2507: -24,38
- 2508: -24,37
- 2509: -24,36
- 2510: -24,35
- 2511: -24,34
- 2512: -24,33
- 2513: -24,32
- 2514: -24,31
- 2515: -24,30
- 2533: -28,30
- 2549: -28,32
- 2550: -28,33
- 2551: -28,34
- 2552: -28,35
- 2553: -28,36
- 2554: -28,37
- 2555: -28,38
- 2939: -14,48
- 2940: -14,50
- 2961: -3,50
- 2962: -3,49
- 2988: -2,45
- 3009: -8,27
- 3011: -5,27
- 3023: -26,42
- 3044: -30,40
- 3065: -24,50
- 3066: -24,51
- 3067: -24,48
- 3068: -24,47
- 3368: -17,59
- 3369: -17,60
- 3370: -17,61
- 3371: -17,62
- 3372: -17,63
- 3373: -17,64
- 3374: -17,64
- 3375: -17,65
- 3376: -17,66
- 3541: -29,93
- 3542: -29,94
- 3543: -29,95
- 3544: -28,91
- 3545: -28,90
- 3546: -28,89
- 3547: -29,87
- 3548: -29,86
- 3549: -29,85
- 3550: -29,83
- 3551: -28,81
- 3552: -28,80
- 3553: -29,78
- 3554: -29,76
- 3555: -29,75
- 3556: -29,74
- 3557: -29,73
- 3558: -29,72
- 3559: -29,71
- 3560: -29,70
- 3598: -11,93
- 3599: -11,94
- 3600: -11,95
- 3601: -10,91
- 3602: -10,90
- 3603: -10,89
- 3604: -11,86
- 3605: -11,85
- 3606: -11,87
- 3607: -11,83
- 3608: -10,81
- 3609: -10,80
- 3610: -11,78
- 3611: -11,76
- 3612: -11,75
- 3613: -11,74
- 3614: -11,73
- 3615: -11,72
- 3616: -11,71
- 3617: -11,70
- 3648: -3,59
- 3649: -3,63
- 3650: -3,64
- 3651: -3,62
- 3652: -3,62
- 3653: -3,61
- 3656: -3,66
- 3707: -10,89
- 3708: -10,90
- 3709: -10,91
- 3773: -14,77
- 3775: -10,77
- 3777: -16,77
- 3783: -14,84
- 3784: -16,84
- 3785: -10,84
- 3796: -32,84
- 3797: -28,84
- 3799: -34,84
- 3804: -28,77
- 3805: -32,77
- 3806: -34,77
- 3814: 5,72
- 3815: 5,73
- 3816: 5,74
- 3817: 5,75
- 3839: 7,73
- 3840: 7,72
- 3841: 7,71
- 3843: 7,70
- 3867: 4,77
- 3868: 2,77
- 3869: 4,84
- 3871: 2,84
- 3931: -22,55
- 4387: -21,20
- 4529: 15,14
- 4530: 15,15
- 4566: 18,20
- 4567: 18,20
- 4568: 18,19
- 4569: 18,17
- 4570: 18,16
- 4571: 18,15
- 4572: 18,14
- 4573: 18,13
- 4574: 18,11
- 4575: 18,10
- 4576: 18,9
- 4577: 18,8
- 4578: 18,7
- 4579: 18,3
- 4580: 18,2
- 4581: 18,1
- 4582: 18,0
- 4583: 18,-1
- 4584: 18,-2
- 4585: 18,-4
- 4586: 18,-5
- 4587: 18,-6
- 4588: 18,-7
- 4589: 18,-8
- 4590: 18,-9
- 5344: 30,28
- 5345: 30,27
- 5346: 30,26
- 5351: 33,28
- 5352: 33,27
- 5353: 33,26
- 5358: 28,31
- 5377: 36,31
- 5495: -18,-6
- 5496: -18,-5
- 5497: -18,-4
- 5498: -18,-4
- 5499: -18,-3
- 5500: -18,-2
- 5501: 18,-6
- 5547: -29,82
- 5548: -29,81
- 5549: -29,81
- 5550: -29,79
- 5551: -29,80
- 5565: -29,92
- 5566: -29,91
- 5567: -29,90
- 5568: -29,90
- 5569: -29,89
- 5570: -29,89
- 5571: -29,88
- 5572: -29,88
- 5573: -11,79
- 5574: -11,80
- 5575: -11,81
- 5576: -11,82
- 5577: -11,82
- 5590: -11,92
- 5591: -11,91
- 5592: -11,91
- 5593: -11,90
- 5594: -11,90
- 5595: -11,89
- 5596: -11,88
- 5597: -11,87
- 5671: -18,-7
- 5764: -41,11
- 5765: -41,15
- 5766: -41,22
- 5900: 15,-8
- 5910: -17,-8
- 5913: -18,-11
- 5914: -18,-11
- 5915: -18,-12
- 5916: -18,-13
- 5917: -18,-13
- 5918: -18,-15
- 5919: -18,-14
- 5920: -18,-16
- 5921: -18,-16
- 5922: -18,-17
- 5923: -18,-18
- 5938: 15,-4
- 6077: 14,-5
- 6365: -9,-16
- 6366: -9,-15
- 6367: -9,-14
- 6368: -9,-13
- 6438: -17,-21
- 6439: -17,-20
- 6440: -17,-19
- 6454: -17,-19
- 6552: -4,-14
- 6553: -4,-15
- 6556: -4,-17
- 6565: -3,-21
- 6566: -3,-20
- 6567: -3,-19
- 6568: 1,-19
- 6569: 1,-20
- 6570: 1,-21
- 6583: 15,-21
- 6584: 15,-20
- 6585: 15,-19
- 6590: 18,-13
- 6591: 18,-14
- 6592: 18,-15
- 6593: 18,-16
- 6594: 18,-17
- 6595: 18,-18
- 6596: 18,-19
- 6597: 18,-21
- 6623: 4,-16
- 6624: 4,-15
- 6654: 10,-12
- 6655: 10,-13
- 6656: 10,-14
- 6657: 10,-15
- 6686: 14,-17
- 6687: 14,-16
- 6689: 11,-16
- 6692: 14,-15
- 6737: -21,-20
- 6927: -21,-3
- 6928: -21,-2
- 7091: -21,11
- 7092: -21,12
- 7093: -21,12
- 7184: -34,10
- 7185: -34,11
- 7186: -34,11
- 7187: -34,11
- 7188: -34,11
- 7189: -34,12
- 7190: -34,12
- 7191: -34,13
- 7192: -34,14
- 7193: -34,14
- 7222: -22,13
- 7223: -22,14
- 7224: -22,10
- 7225: -22,10
- 7226: -22,9
- 7260: -22,-16
- 7261: -22,-16
- 7262: -22,-17
- 7398: 19,4
- 7399: 19,5
- 7400: 19,6
- 7408: 24,9
- 7449: 19,-12
- 7450: 19,-11
- 7451: 19,-10
- 7452: 26,-12
- 7453: 26,-11
- 7454: 26,-10
- 7468: 31,-11
- 7514: 31,-5
- 7527: 24,-8
- 7528: 24,-2
- 7554: 26,4
- 7555: 26,5
- 7556: 26,6
- 7560: 32,5
- 7561: 32,5
- 7562: 32,5
- 7649: 28,9
- 7650: 28,10
- 7651: 28,11
- 7667: 27,11
- 7719: 32,5
- 8375: 81,-21
- 8376: 81,-20
- 8382: 82,-19
- 8383: 82,-22
- 8384: 78,-22
- 8385: 76,-22
- 8386: 76,-19
- 8387: 78,-19
- 8403: 64,-19
- 8404: 64,-22
- 8546: 32,-10
- 8547: 32,-12
- 8559: 32,-16
- 8566: 32,-16
- 8604: 33,-7
- 8667: 41,-17
- 8668: 41,-16
- 8669: 41,-15
- 8670: 41,-14
- 8671: 41,-13
- 8672: 41,-11
- 8673: 41,-10
- 8674: 41,-9
- 8730: 39,-17
- 8754: 41,-20
- 8794: 42,-21
- 8795: 42,-19
- 8796: 42,-19
- 8818: 53,-20
- 8848: 54,-19
- 8849: 54,-21
- 8861: 56,-19
- 8862: 56,-19
- 8960: 54,-11
- 8961: 54,-29
- 9012: 63,-30
- 9013: 63,-30
- 9014: 63,-28
- 9015: 63,-28
- 9016: 63,-29
- 9017: 63,-26
- 9018: 63,-26
- 9019: 63,-27
- 9020: 63,-24
- 9021: 63,-25
- 9022: 63,-21
- 9023: 63,-18
- 9024: 63,-17
- 9025: 63,-16
- 9026: 63,-15
- 9027: 63,-15
- 9028: 63,-14
- 9029: 63,-13
- 9030: 63,-12
- 9031: 63,-11
- 9050: 63,-23
- 9051: 63,-23
- 9052: 63,-20
- 9205: 0,-23
- 9206: 0,-24
- 9207: 0,-27
- 9208: 0,-28
- 9215: -3,-25
- 9216: -3,-26
- 9232: 0,-30
- 9233: 0,-30
- 9234: 0,-31
- 9235: 0,-32
- 9236: 0,-33
- 9285: -13,-28
- 9293: -5,-28
- 9294: -5,-28
- 9295: -5,-27
- 9296: -5,-27
- 9311: -13,-23
- 9312: -6,-23
- 9313: -6,-23
- 9353: -5,-28
- 9552: 2,-65
- 9553: 2,-65
- 9629: 2,-82
- 9630: 2,-81
- 9631: 2,-80
- 9632: 2,-78
- 9633: 2,-79
- 9634: 2,-79
- 9635: 2,-74
- 9636: 2,-74
- 9637: 2,-73
- 9638: 2,-72
- 9639: 2,-71
- 9640: 2,-70
- 9641: 2,-69
- 9642: -9,-68
- 9643: -9,-67
- 9644: -9,-73
- 9645: -9,-74
- 9646: -9,-72
- 9658: -2,-71
- 9659: -2,-69
- 9660: -2,-70
- 9686: 1,-61
- 9687: 1,-59
- 9706: 0,-38
- 9707: 0,-40
- 9708: 0,-40
- 9709: 0,-41
- 9710: 0,-41
- 9711: 0,-42
- 9712: 0,-43
- 9713: 0,-45
- 9714: 0,-45
- 9715: 0,-48
- 9716: 0,-48
- 9717: 0,-49
- 9718: 0,-50
- 9719: 0,-52
- 9720: 0,-53
- 9721: 0,-54
- 9753: 0,-46
- 9754: 0,-46
- 9755: 0,-47
- 9756: 0,-55
- 9757: 0,-55
- 9758: 0,-56
- 9838: -39,-15
- 10800: 11,-52
- 10801: 11,-51
- 10802: 11,-50
- 10988: 4,-86
- 10989: 4,-86
- 10990: 4,-85
- 10991: 4,-84
- 11037: 49,-39
- 11038: 49,-40
- 11039: 49,-41
- 11040: 49,-43
- 11041: 49,-44
- 11064: 42,-42
- 11651: -58,-36
- 11652: -58,-36
- 11653: -58,-37
- 11654: -58,-37
- 11655: -58,-38
- 11672: -61,-43
- 11673: -58,-43
- 11674: -58,-43
- 11754: -6,-86
- 11755: -6,-86
- 11756: -6,-84
- 11757: -6,-85
- 11758: -6,-85
- 11759: -4,-86
- 11760: -4,-85
- 11761: -4,-85
- 11762: -4,-84
- 11763: 2,-86
- 11764: 2,-85
- 11765: 2,-84
- 11789: -12,-67
- 11790: -12,-66
- 11791: -12,-78
- 11797: -3,-48
- 11804: -3,-40
- 11805: -3,-41
- 11807: -4,-35
- 11818: -13,-30
- 11819: -13,-31
- 11820: -13,-32
- 12253: -37,-52
- 12261: -41,-55
- 12262: -41,-54
- 12263: -41,-54
- 12272: -23,-51
- 12273: -23,-51
- 12274: -23,-52
- 12275: -23,-53
- 12779: -4,-60
- 13156: -45,9
- 13158: -45,18
- 13272: -45,9
- 13274: -44,23
- 13823: -36,-62
- 14815: -46,14
- 14816: -46,12
- 15341: 6,22
- 15342: 6,23
- 15343: 6,24
- 15352: 18,23
- 15353: 18,22
- 15382: -8,22
- 15383: -8,23
- 15384: -8,24
- 15768: -8,-70
- 15827: -40,4
- 15828: -40,5
- 15829: -40,6
- 15834: -41,8
- 15835: -41,9
- 15836: -41,10
- 15837: -41,14
- 15838: -41,13
- 15839: -41,12
- 15840: -41,16
- 15841: -41,17
- 15842: -41,18
- 15843: -41,18
- 15844: -41,19
- 15845: -41,20
- 15846: -41,21
- 16334: 89,1
- 16335: 89,0
- 16345: 75,1
- 17242: -55,-13
- 17243: -55,-14
- 17244: -55,-14
- 17260: -62,-17
- 17261: -60,-17
- 17362: -52,4
- 17363: -52,5
- 17364: -52,6
- 17378: -56,-7
- 17379: -56,-9
- 17711: -46,12
- 17714: -46,14
- 18054: 7,84
- 18055: 7,83
- 18061: 8,79
- 18062: 8,78
- 18063: 8,77
- 18455: -44,23
- 19031: -17,-9
- 19032: -17,-10
- 19100: 15,-10
- 19101: 15,-9
- 19102: 15,-8
- 20644: -28,10
- 20645: -28,11
- 20646: -28,11
- 20647: -28,13
- 20648: -28,12
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileSteelLineE
- decals:
- 924: 28,-7
- 925: 28,-6
- 926: 28,-5
- 927: 28,-4
- 928: 28,-3
- 929: 28,-1
- 930: 28,0
- 942: 30,2
- 951: 28,-2
- 4264: -18,20
- 4265: -18,18
- 4266: -18,19
- 4267: -18,18
- 4268: -18,17
- 4269: -18,16
- 4270: -18,13
- 4271: -18,12
- 4272: -18,11
- 4273: -18,10
- 4274: -18,9
- 4275: -18,8
- 4290: -18,7
- 4291: -18,6
- 4292: -18,6
- 4293: -18,5
- 4295: -18,0
- 4296: -18,1
- 4297: -18,2
- 4298: -18,3
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelLineN
- decals:
- 8482: 26,-14
- 8483: 27,-14
- 8484: 29,-14
- 8485: 30,-14
- 8486: 28,-14
- 8487: 21,-14
- 8513: 27,-17
- 8514: 29,-17
- 8515: 31,-17
- 8534: 25,-19
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelLineN
- decals:
- 3948: -27,65
- 3949: -26,65
- 3974: -28,59
- 10622: 37,-27
- 10633: 36,-26
- 10634: 36,-26
- 11078: 70,-50
- 11079: 70,-50
- 16308: 78,3
- 16312: 77,6
- 16313: 78,6
- - node:
- color: '#8BC9DAFF'
- id: BrickTileSteelLineN
- decals:
- 4129: 19,63
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelLineN
- decals:
- 10183: 21,-33
- 10184: 21,-31
- 10416: 25,-27
- 10427: 25,-25
- 10437: 28,-25
- 10438: 32,-25
- 10443: 30,-23
- 10451: 30,-22
- 10452: 29,-22
- 10453: 30,-22
- 10454: 31,-22
- 10472: 28,-25
- 10473: 32,-25
- 10523: 22,-50
- 10530: 21,-46
- 10531: 21,-46
- 10532: 22,-46
- 10533: 23,-46
- 10602: 33,-47
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelLineN
- decals:
- 12351: -29,-33
- 12367: -27,-26
- 12368: -28,-26
- 12372: -30,-26
- 12399: -42,-31
- 12400: -42,-31
- 12401: -38,-31
- 12402: -34,-31
- 12403: -34,-31
- 12431: -40,-27
- 12439: -36,-27
- 12457: -48,-25
- 12458: -47,-25
- 12478: -46,-24
- 12480: -46,-22
- 12519: -28,-44
- 12520: -27,-44
- 12521: -26,-44
- 12522: -25,-44
- 12572: -25,-38
- 12594: -29,-43
- 12595: -24,-43
- 12749: -20,-38
- 12750: -19,-38
- 12751: -18,-38
- 16693: -64,-45
- 16694: -66,-46
- 20537: -9,-44
- 20538: -8,-44
- 20539: -8,-44
- 20540: -7,-44
- 20541: -6,-44
- - node:
- color: '#CEDA8BFF'
- id: BrickTileSteelLineN
- decals:
- 11356: 27,-66
- 11357: 28,-66
- 11358: 29,-66
- 11359: 30,-66
- 11360: 31,-66
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelLineN
- decals:
- 8169: 58,2
- 8170: 62,2
- 8171: 66,2
- 8202: 59,5
- 8203: 57,5
- 8204: 61,5
- 8205: 63,5
- 8206: 65,5
- 8207: 67,5
- 8213: 70,6
- 8223: 58,2
- 8224: 62,2
- 8225: 66,2
- 19909: 69,7
- 19914: 69,9
- 19919: 66,6
- 19920: 62,6
- 19931: 58,6
- - node:
- color: '#DA8BC9FF'
- id: BrickTileSteelLineN
- decals:
- 4136: 20,63
- - node:
- color: '#DABC8BFF'
- id: BrickTileSteelLineN
- decals:
- 3916: 12,73
- 3919: 10,83
- 3924: 10,89
- 3929: 5,91
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelLineN
- decals:
- 2435: -20,54
- 2436: -19,54
- 2437: -18,54
- 2442: -16,52
- 2443: -22,52
- 2444: -22,52
- 2518: -24,39
- 2519: -25,39
- 2520: -26,39
- 2521: -27,39
- 2584: -31,32
- 2602: -32,37
- 2941: -13,50
- 2942: -11,50
- 2943: -10,50
- 2944: -9,50
- 2945: -8,50
- 2946: -7,50
- 2947: -5,50
- 2948: -4,50
- 2963: -2,48
- 2994: -3,46
- 2998: -4,47
- 3012: -6,28
- 3025: -27,43
- 3026: -28,43
- 3027: -29,43
- 3039: -31,43
- 3046: -30,39
- 3254: -20,54
- 3255: -19,54
- 3256: -18,54
- 3257: 1,59
- 3261: -1,55
- 3264: 1,55
- 3265: 2,55
- 3266: 1,58
- 3267: 0,58
- 3268: -1,58
- 3274: -16,58
- 3275: -15,58
- 3276: -14,58
- 3277: -13,58
- 3278: -12,58
- 3279: -11,58
- 3280: -10,58
- 3281: -9,58
- 3282: -8,58
- 3561: -28,69
- 3562: -27,69
- 3563: -26,69
- 3564: -25,69
- 3565: -24,69
- 3566: -23,69
- 3567: -21,69
- 3568: -21,69
- 3569: -22,69
- 3570: -19,69
- 3571: -20,69
- 3572: -18,69
- 3573: -17,69
- 3574: -16,69
- 3575: -15,69
- 3576: -14,69
- 3619: -10,69
- 3620: -9,69
- 3621: -8,69
- 3622: -8,69
- 3623: -7,69
- 3624: -5,69
- 3625: -6,69
- 3626: -5,69
- 3627: -4,69
- 3628: -3,69
- 3646: -2,58
- 3658: 6,66
- 3750: -2,69
- 3751: -1,69
- 3752: 0,69
- 3753: 1,69
- 3754: 2,69
- 3755: 3,69
- 3756: 4,69
- 3779: -9,77
- 3781: -15,77
- 3791: -15,84
- 3792: -9,84
- 3801: -33,84
- 3802: -27,84
- 3812: -33,77
- 3813: -27,77
- 3818: 6,71
- 3873: 3,84
- 3876: 3,77
- 3889: 6,66
- 3933: -25,66
- 3939: -30,66
- 5357: 31,29
- 5360: 30,32
- 5361: 31,32
- 5362: 32,32
- 5363: 33,32
- 5364: 34,32
- 5372: 35,29
- 5652: 14,-8
- 5653: 13,-8
- 5654: 9,-8
- 5655: 7,-8
- 5656: 6,-8
- 5657: 2,-8
- 5658: 1,-8
- 5659: -2,-8
- 5660: -3,-8
- 5661: -3,-8
- 5662: -4,-8
- 5663: -5,-8
- 5664: -6,-8
- 5665: -11,-8
- 5666: -12,-8
- 5667: -14,-8
- 5668: -15,-8
- 5669: -16,-8
- 5670: -16,-8
- 5722: -29,6
- 5723: -28,6
- 5724: -28,6
- 5725: -27,6
- 5726: -27,6
- 5727: -24,6
- 5728: -24,6
- 5729: -23,6
- 5730: -23,6
- 5731: -22,6
- 5732: -22,6
- 5753: -39,6
- 5754: -38,6
- 5755: -37,6
- 5756: -35,6
- 5757: -34,6
- 5758: -34,6
- 5759: -33,6
- 5760: -32,6
- 5763: -30,6
- 5768: -41,23
- 5769: -43,23
- 5816: -20,7
- 5817: -19,7
- 5818: -18,7
- 5835: -20,-7
- 5836: -19,-7
- 5837: -18,-7
- 5903: 12,-8
- 5904: 5,-8
- 5905: 0,-8
- 5906: -7,-8
- 5907: -8,-8
- 5908: -9,-8
- 5909: -13,-8
- 6066: 9,-4
- 6067: 10,-4
- 6068: 11,-4
- 6073: 13,-4
- 6074: 14,-4
- 6085: 8,-4
- 6090: 10,-7
- 6091: 11,-7
- 6092: 8,-7
- 6376: -13,-18
- 6377: -12,-18
- 6378: -11,-18
- 6384: -10,-19
- 6385: -9,-19
- 6386: -7,-19
- 6387: -6,-19
- 6388: -5,-19
- 6389: -2,-19
- 6390: -1,-19
- 6391: 0,-19
- 6392: 2,-19
- 6393: 4,-19
- 6394: 5,-19
- 6395: 6,-19
- 6396: 3,-19
- 6397: 7,-19
- 6398: 9,-19
- 6399: 10,-19
- 6400: 11,-19
- 6416: 16,-7
- 6417: 17,-7
- 6418: 18,-7
- 6429: 16,7
- 6430: 17,7
- 6431: 18,7
- 6432: -14,-19
- 6433: -15,-19
- 6434: -16,-19
- 6545: -5,-14
- 6558: -4,-18
- 6626: 3,-14
- 6663: 8,-18
- 6680: 12,-18
- 6681: 13,-18
- 6682: 14,-18
- 6696: 13,-15
- 6697: 13,-15
- 6925: -33,3
- 6926: -32,3
- 7006: -23,3
- 7113: -42,2
- 7198: -36,7
- 7206: -36,17
- 7207: -36,17
- 7214: -36,19
- 7215: -36,19
- 7218: -26,7
- 7219: -25,7
- 7229: -23,15
- 7376: 20,6
- 7377: 21,6
- 7383: 23,6
- 7384: 24,6
- 7385: 25,6
- 7412: 21,10
- 7413: 23,10
- 7419: 22,7
- 7434: 20,-10
- 7435: 21,-10
- 7436: 23,-10
- 7437: 24,-10
- 7438: 25,-10
- 7463: 27,-10
- 7464: 28,-10
- 7465: 29,-10
- 7466: 31,-10
- 7467: 30,-10
- 7474: 22,3
- 7492: 26,2
- 7493: 27,2
- 7494: 28,2
- 7495: 29,2
- 7499: 25,-7
- 7500: 27,-7
- 7501: 26,-7
- 7511: 30,-7
- 7512: 29,-7
- 7531: 30,3
- 7539: 27,6
- 7540: 28,6
- 7541: 30,6
- 7542: 31,6
- 7543: 32,6
- 7658: 29,12
- 7659: 30,12
- 7660: 31,12
- 7661: 31,12
- 7662: 32,12
- 8366: 79,-19
- 8367: 81,-19
- 8368: 80,-19
- 8369: 80,-19
- 8370: 77,-19
- 8371: 77,-19
- 8372: 83,-19
- 8374: 83,-22
- 8379: 77,-22
- 8399: 65,-22
- 8401: 65,-19
- 8481: 25,-13
- 8679: 41,-8
- 8680: 41,-8
- 8681: 40,-8
- 8682: 39,-8
- 8683: 38,-8
- 8684: 34,-8
- 8685: 34,-8
- 8686: 35,-8
- 8687: 37,-8
- 8688: 36,-8
- 8727: 39,-18
- 8728: 41,-18
- 8736: 40,-19
- 8770: 43,-19
- 8771: 44,-19
- 8772: 45,-19
- 8773: 45,-19
- 8774: 48,-19
- 8775: 49,-19
- 8776: 49,-19
- 8777: 50,-19
- 8778: 50,-19
- 8779: 50,-19
- 8780: 50,-19
- 8781: 51,-19
- 8782: 51,-19
- 8783: 53,-19
- 8784: 53,-19
- 8804: 44,-22
- 8805: 44,-22
- 8806: 48,-22
- 8807: 48,-22
- 8808: 52,-22
- 9033: 62,-10
- 9034: 57,-10
- 9037: 58,-11
- 9038: 59,-11
- 9039: 60,-11
- 9040: 56,-10
- 9171: -14,-22
- 9172: -13,-22
- 9173: -7,-22
- 9174: -7,-22
- 9175: -6,-22
- 9176: -2,-22
- 9177: -2,-22
- 9178: -1,-22
- 9179: 0,-22
- 9180: 4,-22
- 9181: 5,-22
- 9182: 11,-22
- 9183: 12,-22
- 9202: -2,-29
- 9203: -1,-29
- 9204: 0,-29
- 9249: -2,-37
- 9250: -1,-37
- 9251: 0,-37
- 9252: 0,-37
- 9297: -12,-24
- 9298: -11,-24
- 9299: -11,-24
- 9300: -10,-24
- 9301: -10,-24
- 9302: -9,-24
- 9303: -8,-24
- 9304: -16,-24
- 9305: -15,-24
- 9306: -5,-24
- 9307: -4,-24
- 9349: -4,-24
- 9550: 1,-64
- 9551: 1,-64
- 9580: -8,-64
- 9581: -8,-64
- 9582: -7,-64
- 9583: -7,-64
- 9584: -6,-64
- 9585: -6,-64
- 9586: -5,-64
- 9587: -5,-64
- 9588: -4,-64
- 9589: -4,-64
- 9590: -3,-64
- 9591: -9,-64
- 9647: -8,-75
- 9648: -7,-75
- 9649: -6,-75
- 9650: -2,-75
- 9651: -1,-75
- 9652: -3,-75
- 9653: -8,-69
- 9654: -8,-69
- 9655: -1,-69
- 9677: -2,-63
- 9678: -1,-63
- 9679: 0,-63
- 9762: -2,-57
- 9763: -1,-57
- 9764: -1,-57
- 9765: 0,-57
- 9829: -40,-14
- 9830: -41,-14
- 9831: -41,-14
- 10772: 3,-50
- 10773: 4,-50
- 10774: 4,-50
- 10775: 8,-50
- 10776: 9,-50
- 10777: 9,-50
- 10778: 10,-50
- 10779: 11,-50
- 10983: 4,-87
- 11008: 55,-43
- 11032: 44,-38
- 11033: 45,-38
- 11034: 46,-38
- 11035: 47,-38
- 11036: 48,-38
- 11061: 45,-46
- 11715: -77,-23
- 11732: -11,-79
- 11733: -6,-83
- 11734: -4,-83
- 11736: 2,-83
- 11741: -6,-87
- 11742: -4,-87
- 11743: 2,-87
- 11744: 2,-87
- 11825: -14,-30
- 11828: -15,-33
- 11829: -13,-33
- 12057: -15,-33
- 12058: -13,-33
- 12241: -39,-57
- 12242: -41,-51
- 12243: -41,-51
- 12244: -40,-51
- 12245: -40,-51
- 12246: -38,-51
- 12247: -38,-51
- 12271: -25,-50
- 13192: 5,70
- 13193: 6,70
- 13194: 7,70
- 13195: -7,66
- 13196: -6,66
- 13197: -5,66
- 13198: -4,66
- 13199: -3,66
- 13227: -7,59
- 13228: -6,59
- 13229: -4,59
- 13230: -4,59
- 13231: -3,59
- 13232: -5,59
- 13233: -20,59
- 13234: -21,59
- 13235: -19,59
- 13236: -19,59
- 13237: -17,59
- 13238: -18,59
- 13258: -13,70
- 13259: -12,70
- 13260: -11,70
- 13261: -29,70
- 13262: -30,70
- 13263: -31,70
- 13264: -21,66
- 13265: -20,66
- 13266: -19,66
- 13267: -18,66
- 13268: -18,66
- 13269: -17,66
- 13270: -17,66
- 13820: -37,-64
- 14863: -17,24
- 14864: -16,24
- 14865: -15,24
- 14866: -14,24
- 14867: -13,24
- 14868: -12,24
- 14869: -11,24
- 14870: -10,24
- 15328: -7,24
- 15329: -6,24
- 15330: -5,24
- 15331: -4,24
- 15332: -3,24
- 15333: -2,24
- 15334: -1,24
- 15335: 1,24
- 15336: 2,24
- 15337: 3,24
- 15344: 9,24
- 15345: 10,24
- 15346: 11,24
- 15347: 12,24
- 15348: 12,24
- 15349: 13,24
- 15350: 17,24
- 15351: 18,24
- 15372: -20,21
- 15373: -19,21
- 15374: -18,21
- 15441: 16,21
- 15442: 17,21
- 15443: 18,21
- 15772: -5,-75
- 15773: -4,-75
- 15831: -43,7
- 15832: -42,7
- 15833: -41,7
- 16121: 77,2
- 16319: 79,2
- 16320: 80,2
- 16321: 81,2
- 16322: 82,2
- 16323: 83,2
- 16324: 87,2
- 16325: 88,2
- 16326: 89,2
- 16328: 81,-1
- 16329: 85,-1
- 16330: 89,-1
- 16331: 84,2
- 16332: 85,2
- 16333: 86,2
- 16927: -60,-48
- 17218: -60,-12
- 17219: -59,-12
- 17220: -57,-12
- 17246: -56,-12
- 17250: -58,-11
- 17253: -56,-19
- 17256: -56,-19
- 17257: -54,-19
- 17263: -61,-17
- 17307: -58,-5
- 17340: -53,3
- 17341: -52,3
- 17342: -53,7
- 17343: -52,7
- 17354: -53,3
- 17355: -52,3
- 17358: -53,7
- 17359: -52,7
- 17371: -50,-1
- 18457: -45,23
- 18979: -60,-44
- 18988: -60,-44
- 19017: -13,-12
- 19018: -13,-12
- 19019: -15,-12
- 19020: -11,-12
- 19021: -12,-12
- 19051: -14,-11
- 19052: -10,-11
- 19085: 8,-11
- 19087: 7,-12
- 19088: 9,-12
- 19348: 4,-8
- 19349: 3,-8
- 20660: -27,9
- 20661: -26,9
- 20662: -25,9
- 20663: -25,9
- 20664: -24,9
- 20665: -24,9
- 20670: -24,15
- 20671: -28,15
- 20672: -27,15
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileSteelLineN
- decals:
- 920: 25,-2
- 921: 26,-2
- 940: 29,1
- 949: 27,-2
- 4261: -20,25
- 4262: -19,25
- 4263: -18,25
- 4338: 4,25
- 4339: 5,25
- 4340: 7,25
- 4341: 8,25
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelLineS
- decals:
- 8495: 21,-16
- 8496: 26,-16
- 8497: 28,-16
- 8503: 25,-13
- 8505: 30,-16
- 8510: 27,-17
- 8511: 29,-17
- 8512: 31,-17
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelLineS
- decals:
- 3941: -25,65
- 3952: -25,66
- 3972: -27,60
- 10623: 37,-25
- 10632: 36,-26
- 11077: 70,-50
- 16304: 77,4
- 16305: 77,4
- - node:
- color: '#8BC9DAFF'
- id: BrickTileSteelLineS
- decals:
- 3892: 6,66
- 4133: 20,61
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelLineS
- decals:
- 10521: 21,-49
- 10522: 23,-49
- 10596: 33,-53
- - node:
- color: '#A9DA8BFF'
- id: BrickTileSteelLineS
- decals:
- 3069: -25,47
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelLineS
- decals:
- 12355: -30,-32
- 12356: -28,-32
- 12357: -27,-32
- 12404: -42,-25
- 12405: -38,-25
- 12406: -34,-25
- 12425: -36,-29
- 12426: -40,-29
- 12454: -46,-24
- 12463: -48,-31
- 12464: -47,-31
- 12465: -46,-31
- 12477: -47,-23
- 12509: -28,-47
- 12510: -27,-47
- 12511: -26,-47
- 12512: -25,-47
- 12525: -29,-43
- 12526: -24,-43
- 12571: -25,-42
- 12588: -29,-37
- 12589: -24,-37
- 16686: -65,-48
- 16687: -64,-48
- 16688: -62,-48
- 20542: -9,-40
- 20543: -8,-40
- 20544: -7,-40
- 20545: -7,-40
- 20546: -6,-40
- 20567: -9,-39
- 20568: -8,-39
- 20569: -8,-39
- 20570: -7,-39
- 20571: -6,-39
- 20574: -9,-40
- 20575: -8,-40
- 20576: -7,-40
- 20577: -7,-40
- 20578: -6,-40
- 20580: -29,-25
- - node:
- color: '#CEDA8BFF'
- id: BrickTileSteelLineS
- decals:
- 11361: 27,-70
- 11362: 28,-70
- 11363: 29,-70
- 11364: 30,-70
- 11365: 31,-70
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelLineS
- decals:
- 8184: 68,5
- 8185: 69,5
- 8186: 70,5
- 8215: 66,6
- 8216: 69,7
- 8217: 62,6
- 8218: 58,6
- 19878: 57,4
- 19879: 59,4
- 19880: 61,4
- 19881: 63,4
- 19882: 65,4
- - node:
- color: '#DA8BC9FF'
- id: BrickTileSteelLineS
- decals:
- 4137: 21,61
- - node:
- color: '#DAA58BFF'
- id: BrickTileSteelLineS
- decals:
- 4752: 10,38
- 4753: 5,38
- - node:
- color: '#DABC8BFF'
- id: BrickTileSteelLineS
- decals:
- 3859: 6,86
- 3918: 10,83
- 3922: 10,89
- 3927: 10,91
- 3928: 5,93
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelLineS
- decals:
- 2429: -20,54
- 2430: -19,54
- 2431: -19,54
- 2432: -19,54
- 2433: -18,54
- 2434: -18,54
- 2439: -21,55
- 2499: -22,28
- 2500: -22,28
- 2504: -21,26
- 2523: -24,30
- 2526: -26,29
- 2587: -31,38
- 2597: -32,33
- 2949: -13,48
- 2950: -12,48
- 2951: -11,48
- 2952: -10,48
- 2953: -9,48
- 2954: -8,48
- 2955: -7,48
- 2956: -6,48
- 2957: -5,48
- 2958: -3,48
- 2959: -2,48
- 2967: -12,51
- 2968: -6,51
- 2987: -3,44
- 2999: -4,47
- 3010: -6,26
- 3030: -30,44
- 3031: -29,41
- 3032: -28,41
- 3033: -27,41
- 3034: -26,41
- 3037: -31,40
- 3038: -32,40
- 3043: -30,44
- 3238: -16,56
- 3239: -15,56
- 3240: -14,56
- 3241: -13,56
- 3242: -12,56
- 3243: -11,56
- 3244: -10,56
- 3245: -9,56
- 3246: -8,56
- 3247: -7,56
- 3248: -6,56
- 3249: -5,56
- 3250: -4,56
- 3251: -3,56
- 3258: 0,56
- 3259: -2,56
- 3377: -16,67
- 3378: -15,67
- 3379: -14,67
- 3380: -13,67
- 3381: -12,67
- 3382: -11,67
- 3383: -10,67
- 3384: -9,67
- 3385: -8,67
- 3631: -31,67
- 3632: -29,67
- 3633: -28,67
- 3634: -27,67
- 3635: -26,67
- 3636: -24,67
- 3637: -23,67
- 3638: -22,67
- 3645: 2,59
- 3657: -2,67
- 3741: -1,67
- 3742: 1,67
- 3743: 0,67
- 3744: 2,67
- 3745: 3,67
- 3746: 4,67
- 3747: 5,67
- 3748: 7,67
- 3780: -15,77
- 3782: -9,77
- 3789: -15,84
- 3790: -9,84
- 3793: -12,97
- 3800: -27,84
- 3803: -33,84
- 3810: -33,77
- 3811: -27,77
- 3874: 3,84
- 3875: 3,77
- 4683: 14,25
- 4684: 15,25
- 4685: 16,25
- 5354: 31,29
- 5365: 30,30
- 5369: 32,30
- 5370: 33,30
- 5371: 34,30
- 5375: 36,30
- 5379: 35,33
- 5383: 35,29
- 5721: -24,4
- 5734: -31,4
- 5735: -30,4
- 5736: -30,4
- 5737: -29,4
- 5738: -28,4
- 5739: -26,4
- 5740: -25,4
- 5741: -27,4
- 5744: -22,4
- 5745: -35,4
- 5746: -36,4
- 5747: -38,4
- 5748: -39,4
- 5749: -37,4
- 5750: -34,4
- 5819: -20,7
- 5820: -19,7
- 5821: -18,7
- 5832: -20,-7
- 5833: -19,-7
- 5834: -18,-7
- 5932: 10,-7
- 5933: 11,-7
- 5934: 8,-7
- 6070: 12,-3
- 6079: 13,-6
- 6080: 12,-6
- 6081: 9,-6
- 6093: -1,-7
- 6099: -10,-7
- 6361: -15,-17
- 6362: -14,-17
- 6369: -10,-17
- 6379: -13,-18
- 6380: -12,-18
- 6381: -11,-18
- 6419: 16,-7
- 6420: 17,-7
- 6421: 18,-7
- 6426: 16,7
- 6427: 17,7
- 6428: 18,7
- 6441: -16,-21
- 6442: -15,-21
- 6443: -12,-21
- 6444: -11,-21
- 6445: -10,-21
- 6446: -9,-21
- 6447: -9,-21
- 6448: -8,-21
- 6449: -5,-21
- 6450: -4,-21
- 6549: -5,-17
- 6550: -4,-13
- 6559: -4,-18
- 6574: 2,-21
- 6575: 3,-21
- 6576: 6,-21
- 6577: 7,-21
- 6578: 8,-21
- 6579: 9,-21
- 6580: 10,-21
- 6581: 13,-21
- 6582: 14,-21
- 6602: 16,-21
- 6603: 17,-21
- 6627: 2,-13
- 6629: 3,-17
- 6630: 2,-17
- 6659: 9,-17
- 6660: 7,-17
- 6676: 12,-18
- 6677: 13,-18
- 6678: 13,-18
- 6679: 14,-18
- 6698: 8,-18
- 6723: -18,-21
- 6724: -19,-21
- 6725: -19,-21
- 7094: -26,7
- 7095: -25,7
- 7096: -31,7
- 7097: -36,7
- 7114: -37,8
- 7205: -36,17
- 7220: -24,8
- 7221: -23,8
- 7232: -26,16
- 7233: -26,16
- 7252: -27,8
- 7253: -27,8
- 7378: 20,4
- 7379: 21,4
- 7380: 23,4
- 7381: 24,4
- 7382: 25,4
- 7404: 21,8
- 7405: 23,8
- 7418: 22,7
- 7422: 22,11
- 7439: 20,-12
- 7440: 21,-12
- 7441: 23,-12
- 7442: 24,-12
- 7443: 23,-12
- 7444: 24,-12
- 7445: 22,-12
- 7458: 27,-12
- 7459: 28,-12
- 7460: 29,-12
- 7461: 30,-12
- 7462: 31,-12
- 7471: 22,-9
- 7505: 26,-8
- 7506: 25,-8
- 7507: 27,-8
- 7508: 29,-8
- 7509: 30,-8
- 7516: 30,-6
- 7517: 29,-6
- 7530: 30,3
- 7534: 29,4
- 7535: 28,4
- 7536: 27,4
- 7537: 31,4
- 7538: 32,4
- 7557: 22,7
- 7652: 29,12
- 7653: 30,12
- 7654: 30,12
- 7655: 31,12
- 7656: 32,12
- 7685: 29,7
- 8362: 77,-22
- 8363: 79,-22
- 8364: 80,-22
- 8365: 81,-22
- 8373: 83,-22
- 8380: 77,-19
- 8381: 83,-19
- 8398: 65,-22
- 8400: 65,-19
- 8560: 33,-16
- 8561: 34,-16
- 8562: 35,-16
- 8563: 36,-16
- 8564: 37,-16
- 8603: 33,-6
- 8664: 38,-16
- 8665: 40,-16
- 8726: 39,-18
- 8729: 41,-18
- 8751: 39,-21
- 8752: 40,-21
- 8753: 41,-21
- 8759: 43,-21
- 8760: 45,-21
- 8761: 46,-21
- 8762: 46,-21
- 8763: 47,-21
- 8764: 49,-21
- 8765: 50,-21
- 8766: 50,-21
- 8767: 51,-21
- 8768: 53,-21
- 8769: 53,-21
- 8788: 46,-18
- 8789: 46,-18
- 8790: 47,-18
- 8809: 52,-18
- 8810: 52,-18
- 8997: 56,-31
- 8998: 57,-31
- 9002: 58,-30
- 9003: 58,-30
- 9004: 59,-30
- 9005: 59,-30
- 9006: 60,-30
- 9007: 60,-30
- 9009: 62,-31
- 9194: -2,-22
- 9195: -1,-22
- 9196: 0,-22
- 9241: -2,-29
- 9242: -1,-29
- 9243: 0,-29
- 9244: -2,-37
- 9245: -2,-37
- 9246: -1,-37
- 9247: 0,-37
- 9248: 0,-37
- 9279: -12,-27
- 9280: -11,-27
- 9281: -10,-27
- 9282: -10,-27
- 9283: -9,-27
- 9284: -8,-27
- 9290: -16,-26
- 9291: -4,-26
- 9292: -4,-26
- 9356: -16,-26
- 9542: -2,-63
- 9543: -1,-63
- 9544: 0,-63
- 9559: -7,-65
- 9560: -7,-65
- 9561: -2,-65
- 9562: -6,-65
- 9563: -5,-65
- 9564: -4,-65
- 9565: -4,-65
- 9566: -3,-65
- 9567: -3,-65
- 9611: -10,-78
- 9617: -8,-82
- 9618: -7,-82
- 9619: -5,-82
- 9620: -3,-82
- 9621: -3,-82
- 9625: -2,-81
- 9626: -1,-81
- 9627: 0,-81
- 9628: 0,-81
- 9656: -8,-71
- 9657: -1,-71
- 9675: -5,-74
- 9676: -4,-74
- 9697: -2,-57
- 9698: -2,-57
- 9699: -1,-57
- 9700: -1,-57
- 9701: 0,-57
- 9702: 0,-57
- 9834: -41,-18
- 10780: 3,-52
- 10781: 4,-52
- 10782: 6,-52
- 10783: 6,-52
- 10784: 7,-52
- 10785: 7,-52
- 10786: 8,-52
- 10787: 8,-52
- 10788: 9,-52
- 10789: 9,-52
- 10790: 10,-52
- 10791: 10,-52
- 10792: 11,-52
- 10793: 11,-52
- 10794: 11,-52
- 10795: 5,-52
- 10984: 4,-83
- 11010: 55,-44
- 11042: 46,-45
- 11043: 44,-45
- 11044: 44,-45
- 11045: 48,-45
- 11660: -59,-33
- 11666: -59,-40
- 11737: -6,-83
- 11738: -4,-83
- 11739: 2,-83
- 11740: 2,-83
- 11788: -10,-63
- 11824: -14,-32
- 11826: -15,-29
- 11827: -13,-29
- 12235: -38,-56
- 12236: -38,-56
- 12256: -37,-53
- 12257: -38,-53
- 12258: -39,-53
- 12259: -40,-53
- 12260: -40,-53
- 12277: -24,-54
- 12278: -25,-54
- 12557: -24,-49
- 12954: -21,-77
- 13189: 5,70
- 13190: 6,70
- 13191: 7,70
- 13200: -7,66
- 13201: -6,66
- 13202: -5,66
- 13203: -4,66
- 13204: -3,66
- 13205: -7,59
- 13222: -7,59
- 13223: -6,59
- 13224: -5,59
- 13225: -4,59
- 13226: -3,59
- 13239: -21,59
- 13240: -20,59
- 13241: -19,59
- 13242: -18,59
- 13243: -18,59
- 13244: -17,59
- 13245: -19,59
- 13246: -21,66
- 13247: -20,66
- 13248: -19,66
- 13249: -18,66
- 13250: -18,66
- 13251: -17,66
- 13252: -31,70
- 13253: -30,70
- 13254: -29,70
- 13255: -13,70
- 13256: -12,70
- 13257: -11,70
- 13817: -37,-59
- 14853: -17,22
- 14854: -16,22
- 14855: -15,22
- 14856: -15,22
- 14857: -14,22
- 14858: -12,22
- 14859: -11,22
- 14860: -13,22
- 14861: -10,22
- 14862: -9,22
- 15305: -7,22
- 15306: -6,22
- 15307: -5,22
- 15308: -4,22
- 15309: -2,22
- 15310: -2,22
- 15311: -3,22
- 15312: -1,22
- 15313: 0,22
- 15314: 1,22
- 15315: 2,22
- 15316: 3,22
- 15317: 4,22
- 15318: 5,22
- 15319: 7,22
- 15320: 8,22
- 15321: 9,22
- 15322: 10,22
- 15323: 11,22
- 15324: 12,22
- 15325: 13,22
- 15326: 14,22
- 15327: 15,22
- 15376: -20,25
- 15377: -19,25
- 15378: -18,25
- 15379: -20,21
- 15380: -19,21
- 15381: -18,21
- 15444: 16,21
- 15445: 17,21
- 15446: 18,21
- 15807: -43,4
- 15808: -42,4
- 15809: -41,4
- 15821: -43,7
- 15822: -42,7
- 15823: -41,7
- 16124: 77,0
- 16316: 78,3
- 16336: 86,0
- 16337: 87,0
- 16338: 88,0
- 16339: 84,0
- 16340: 83,0
- 16341: 82,0
- 16342: 80,0
- 16343: 79,0
- 16344: 78,0
- 17226: -58,-11
- 17227: -60,-15
- 17229: -59,-15
- 17230: -58,-15
- 17233: -60,-15
- 17234: -59,-15
- 17235: -57,-15
- 17236: -56,-15
- 17237: -58,-15
- 17238: -58,-15
- 17239: -57,-15
- 17240: -59,-15
- 17247: -58,-11
- 17249: -58,-11
- 17264: -61,-17
- 17304: -57,-4
- 17306: -58,-5
- 17348: -60,-4
- 17349: -59,-4
- 17352: -53,3
- 17353: -52,3
- 17356: -53,7
- 17357: -52,7
- 17374: -50,-4
- 18049: 6,86
- 18456: -45,23
- 19036: -15,-10
- 19037: -16,-10
- 19038: -13,-10
- 19039: -12,-10
- 19040: -11,-10
- 19041: -9,-10
- 19042: -8,-10
- 19043: -8,-10
- 19044: -7,-10
- 19045: -6,-10
- 19046: -5,-10
- 19049: -14,-11
- 19050: -10,-11
- 19061: 15,-10
- 19062: 14,-10
- 19063: 13,-10
- 19064: 12,-10
- 19065: 11,-10
- 19066: 10,-10
- 19067: 9,-10
- 19068: 5,-10
- 19069: 6,-10
- 19070: 7,-10
- 19071: 5,-10
- 19072: 4,-10
- 19073: 3,-10
- 19074: 2,-10
- 19075: 1,-10
- 19076: 0,-10
- 19077: -1,-10
- 19078: -2,-10
- 19079: -3,-10
- 19080: -4,-10
- 19081: -4,-10
- 19092: 8,-11
- 20649: -27,14
- 20650: -26,14
- 20651: -25,14
- 20652: -25,14
- 20653: -24,14
- 20654: -24,14
- 20673: -28,8
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileSteelLineS
- decals:
- 922: 25,-2
- 923: 26,-2
- 944: 29,1
- 950: 27,-2
- 4258: -20,25
- 4259: -19,25
- 4260: -18,25
- 4320: 0,25
- 4322: 0,25
- 4323: 0,25
- 4324: -9,25
- 4325: -9,25
- 4334: 4,25
- 4335: 5,25
- 4336: 7,25
- 4337: 8,25
- - node:
- color: '#00C9DAFF'
- id: BrickTileSteelLineW
- decals:
- 8498: 24,-17
- 8499: 24,-16
- 8504: 32,-16
- 8524: 20,-15
- 8531: 23,-15
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelLineW
- decals:
- 3942: -28,60
- 3943: -28,61
- 3944: -28,62
- 3945: -28,63
- 3946: -28,64
- 3963: -25,59
- 3964: -25,61
- 3965: -25,63
- 10630: 35,-26
- 10752: 13,-47
- 11076: 71,-50
- 16310: 77,5
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelLineW
- decals:
- 10436: 29,-24
- 10446: 28,-24
- 10447: 28,-23
- 10448: 28,-23
- 10458: 33,-23
- 10459: 33,-23
- 10526: 20,-48
- 10527: 20,-47
- 10582: 32,-52
- 10583: 32,-48
- 10584: 32,-50
- - node:
- color: '#A9DA8BFF'
- id: BrickTileSteelLineW
- decals:
- 3070: -24,47
- 3071: -24,48
- 3072: -24,48
- 3073: -24,47
- 3074: -24,48
- 3075: -24,47
- 3197: -39,49
- - node:
- color: '#B18BDAFF'
- id: BrickTileSteelLineW
- decals:
- 12377: -31,-31
- 12378: -31,-30
- 12379: -31,-30
- 12443: -32,-29
- 12444: -32,-28
- 12445: -32,-27
- 12447: -44,-29
- 12448: -44,-28
- 12449: -44,-27
- 12459: -48,-27
- 12460: -48,-26
- 12461: -48,-30
- 12462: -48,-29
- 12513: -29,-46
- 12514: -29,-45
- 12515: -29,-44
- 12560: -30,-41
- 12561: -30,-40
- 12562: -26,-41
- 12563: -26,-40
- 12564: -26,-39
- 12739: -21,-43
- 12740: -21,-42
- 12741: -21,-41
- 12742: -21,-40
- 12743: -21,-39
- 12754: -16,-40
- 16684: -66,-47
- 16700: -61,-48
- 20547: -5,-43
- 20548: -5,-42
- 20549: -5,-42
- 20550: -5,-41
- 20566: -5,-40
- - node:
- color: '#CEDA8BFF'
- id: BrickTileSteelLineW
- decals:
- 11366: 26,-69
- 11369: 33,-68
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelLineW
- decals:
- 8192: 64,4
- 8193: 64,5
- 8194: 60,4
- 8195: 60,5
- 8200: 60,4
- 8201: 60,5
- 8214: 71,6
- 19876: 58,3
- 19886: 62,3
- 19887: 66,3
- 19911: 69,8
- 19917: 66,8
- 19918: 66,7
- 19924: 62,7
- 19925: 62,8
- 19926: 62,9
- 19927: 58,7
- 19928: 58,8
- - node:
- color: '#DAA58BFF'
- id: BrickTileSteelLineW
- decals:
- 4750: 12,35
- 4751: 12,36
- - node:
- color: '#DABC8BFF'
- id: BrickTileSteelLineW
- decals:
- 3855: 9,75
- 3856: 9,76
- 3857: 9,80
- 3858: 9,81
- 3917: 13,78
- 3923: 12,87
- 15776: -49,9
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelLineW
- decals:
- 2458: -14,48
- 2459: -14,50
- 2461: -23,49
- 2465: -23,46
- 2473: -24,43
- 2474: -24,44
- 2478: -24,42
- 2483: -14,46
- 2484: -14,45
- 2485: -14,43
- 2486: -14,44
- 2487: -14,42
- 2488: -14,41
- 2489: -14,40
- 2490: -14,39
- 2491: -14,38
- 2492: -14,37
- 2493: -14,36
- 2498: -23,29
- 2501: -21,27
- 2502: -21,27
- 2530: -27,31
- 2588: -29,36
- 2589: -29,35
- 2590: -29,34
- 2603: -34,37
- 2604: -34,36
- 2605: -34,35
- 2606: -34,34
- 2607: -34,33
- 2620: -14,46
- 2622: -14,36
- 2678: -14,46
- 2790: -14,46
- 2791: -14,36
- 2936: -13,49
- 2969: -2,51
- 2974: -1,48
- 3284: -7,59
- 3362: -7,60
- 3363: -7,61
- 3364: -7,62
- 3365: -7,63
- 3366: -7,64
- 3367: -7,65
- 3386: -7,66
- 3389: -21,59
- 3390: -21,60
- 3391: -21,61
- 3392: -21,61
- 3393: -21,62
- 3394: -21,63
- 3395: -21,64
- 3396: -21,65
- 3397: -21,65
- 3398: -21,66
- 3522: -32,68
- 3524: -31,70
- 3525: -31,71
- 3526: -31,72
- 3527: -31,73
- 3528: -31,74
- 3529: -31,75
- 3530: -31,76
- 3531: -31,78
- 3532: -31,83
- 3533: -31,85
- 3534: -31,86
- 3535: -32,90
- 3536: -32,89
- 3537: -32,91
- 3538: -31,93
- 3539: -31,94
- 3540: -31,95
- 3578: -13,70
- 3579: -13,71
- 3580: -13,72
- 3581: -13,73
- 3582: -13,74
- 3583: -13,75
- 3584: -13,76
- 3585: -13,78
- 3586: -14,80
- 3587: -14,81
- 3588: -13,83
- 3589: -13,85
- 3590: -13,86
- 3591: -13,87
- 3592: -14,89
- 3593: -14,90
- 3594: -14,91
- 3595: -13,93
- 3596: -13,94
- 3597: -13,95
- 3686: -32,81
- 3687: -32,80
- 3712: -14,90
- 3765: -21,58
- 3766: -21,57
- 3767: -21,56
- 3774: -10,77
- 3776: -8,77
- 3778: -14,77
- 3786: -8,84
- 3787: -10,84
- 3788: -14,84
- 3794: -32,84
- 3795: -28,84
- 3798: -26,84
- 3807: -32,77
- 3808: -28,77
- 3809: -26,77
- 3827: 5,70
- 3828: 5,71
- 3829: 5,72
- 3830: 5,73
- 3831: 5,74
- 3832: 5,75
- 3833: 5,75
- 3834: 5,76
- 3835: 5,78
- 3836: 4,80
- 3837: 4,81
- 3838: 5,83
- 3866: 4,77
- 3870: 4,84
- 3872: 4,84
- 3981: 4,57
- 4028: 9,68
- 4390: -17,14
- 4391: -17,15
- 4533: 16,16
- 4534: 16,17
- 4535: 16,18
- 4536: 16,19
- 4537: 16,20
- 4549: 16,13
- 4550: 16,12
- 4551: 16,11
- 4552: 16,10
- 4553: 16,8
- 4554: 16,10
- 4555: 16,9
- 4556: 16,7
- 4557: 16,6
- 4558: 16,4
- 4559: 16,5
- 4560: 16,3
- 4561: 16,2
- 4562: 16,0
- 4563: 16,-1
- 4564: 16,1
- 4565: 16,-2
- 4908: 19,24
- 5347: 32,28
- 5348: 32,27
- 5349: 32,26
- 5350: 32,26
- 5376: 37,30
- 5381: 36,28
- 5382: 36,27
- 5487: -20,3
- 5488: -20,2
- 5489: -20,1
- 5490: -20,0
- 5491: -20,-1
- 5492: -20,-4
- 5493: -20,-5
- 5494: -20,-6
- 5502: 16,-6
- 5503: 16,-5
- 5504: 16,-3
- 5552: -31,79
- 5553: -31,80
- 5554: -31,81
- 5555: -31,81
- 5556: -31,82
- 5557: -31,82
- 5558: -31,88
- 5559: -31,89
- 5560: -31,89
- 5561: -31,90
- 5562: -31,91
- 5563: -31,92
- 5564: -31,92
- 5578: -13,79
- 5579: -13,80
- 5580: -13,81
- 5581: -13,81
- 5582: -13,82
- 5583: -13,82
- 5584: -13,88
- 5585: -13,88
- 5586: -13,89
- 5587: -13,90
- 5588: -13,91
- 5589: -13,91
- 5598: -13,92
- 5599: -13,92
- 5641: 5,79
- 5642: 5,80
- 5643: 5,81
- 5644: 5,81
- 5645: 5,81
- 5646: 5,82
- 5651: 16,-7
- 5824: -17,4
- 5825: -17,-1
- 5838: -20,-8
- 5839: -20,-9
- 5840: -20,-10
- 5841: -20,-10
- 5842: -20,-11
- 5843: -20,-12
- 5844: -20,-13
- 5845: -20,-14
- 5911: -17,-8
- 5939: 15,-8
- 6075: 15,-4
- 6083: 7,-5
- 6401: 16,-18
- 6402: 16,-17
- 6403: 16,-16
- 6404: 16,-15
- 6405: 16,-14
- 6406: 16,-13
- 6407: 16,-12
- 6408: 16,-11
- 6435: -17,-19
- 6436: -17,-20
- 6437: -17,-21
- 6455: -17,-19
- 6546: -6,-15
- 6547: -6,-16
- 6562: -3,-19
- 6563: -3,-20
- 6564: -3,-21
- 6571: 1,-21
- 6572: 1,-20
- 6573: 1,-19
- 6586: 15,-21
- 6587: 15,-20
- 6588: 15,-19
- 6621: -3,-16
- 6648: 6,-12
- 6649: 6,-13
- 6650: 6,-14
- 6651: 6,-15
- 6652: 6,-15
- 6653: 6,-16
- 6668: 11,-16
- 6685: 12,-17
- 6691: 12,-15
- 6730: -20,-19
- 6731: -20,-19
- 6732: -20,-19
- 6733: -20,-19
- 6734: -20,-19
- 7078: -17,-1
- 7100: -43,22
- 7101: -44,20
- 7102: -44,20
- 7103: -44,19
- 7104: -44,19
- 7105: -44,17
- 7106: -44,16
- 7177: -38,14
- 7178: -38,13
- 7179: -38,12
- 7180: -38,12
- 7181: -38,11
- 7182: -38,10
- 7183: -38,10
- 7216: -21,11
- 7217: -21,12
- 7239: -29,14
- 7240: -29,14
- 7241: -29,13
- 7242: -29,12
- 7243: -29,11
- 7244: -29,11
- 7245: -29,10
- 7246: -29,9
- 7330: 19,12
- 7334: 19,18
- 7390: 26,6
- 7391: 26,5
- 7392: 26,4
- 7395: 19,4
- 7396: 19,5
- 7397: 19,6
- 7409: 20,9
- 7446: 19,-12
- 7447: 19,-11
- 7448: 19,-10
- 7455: 26,-12
- 7456: 26,-11
- 7457: 26,-10
- 7473: 19,-3
- 7487: 25,-1
- 7488: 25,0
- 7489: 25,1
- 7490: 25,2
- 7518: 25,-3
- 7519: 25,-4
- 7520: 25,-5
- 7521: 25,-5
- 7522: 25,-6
- 7666: 28,10
- 7708: 33,4
- 7709: 33,6
- 8377: 79,-21
- 8378: 79,-20
- 8392: 78,-22
- 8393: 78,-19
- 8394: 82,-19
- 8395: 82,-22
- 8396: 84,-22
- 8397: 84,-19
- 8402: 66,-19
- 8405: 66,-22
- 8543: 32,-12
- 8544: 32,-10
- 8545: 32,-10
- 8555: 33,-11
- 8556: 33,-13
- 8557: 33,-13
- 8558: 33,-15
- 8567: 33,-9
- 8568: 33,-8
- 8602: 33,-7
- 8675: 42,-8
- 8676: 42,-8
- 8718: 41,-17
- 8724: 39,-17
- 8725: 39,-17
- 8738: 38,-20
- 8739: 38,-20
- 8792: 42,-19
- 8793: 42,-21
- 8814: 54,-21
- 8815: 54,-21
- 8816: 54,-19
- 8817: 54,-19
- 8855: 55,-20
- 8856: 55,-22
- 8857: 55,-23
- 8858: 55,-23
- 8859: 55,-24
- 8860: 55,-24
- 8863: 57,-20
- 8864: 57,-21
- 8967: 55,-28
- 8968: 55,-27
- 8969: 55,-27
- 8970: 55,-26
- 8971: 55,-25
- 8972: 55,-30
- 8973: 55,-17
- 8974: 55,-18
- 8975: 55,-16
- 8976: 55,-15
- 8977: 55,-15
- 8978: 55,-14
- 8979: 55,-13
- 8980: 55,-13
- 8981: 55,-12
- 9053: 64,-19
- 9054: 64,-22
- 9055: 64,-22
- 9197: -2,-23
- 9198: -2,-24
- 9199: -2,-24
- 9200: -2,-27
- 9201: -2,-28
- 9213: 1,-26
- 9214: 1,-25
- 9237: -2,-30
- 9238: -2,-31
- 9239: -2,-32
- 9240: -2,-33
- 9286: -7,-28
- 9287: -15,-28
- 9288: -15,-27
- 9289: -15,-27
- 9308: -14,-23
- 9309: -14,-23
- 9310: -7,-23
- 9352: -7,-28
- 9571: 0,-74
- 9572: 0,-73
- 9573: 0,-73
- 9574: 0,-72
- 9575: 0,-72
- 9576: 0,-68
- 9577: 0,-68
- 9578: 0,-67
- 9579: 0,-67
- 9594: -11,-65
- 9595: -11,-65
- 9596: -11,-68
- 9597: -11,-69
- 9598: -11,-70
- 9599: -11,-71
- 9600: -11,-72
- 9601: -11,-72
- 9602: -11,-73
- 9603: -11,-74
- 9604: -11,-75
- 9605: -11,-76
- 9606: -11,-77
- 9612: -9,-79
- 9613: -9,-80
- 9614: -9,-81
- 9615: -9,-81
- 9661: -7,-71
- 9662: -7,-70
- 9663: -7,-69
- 9664: -7,-69
- 9692: -3,-59
- 9695: -3,-61
- 9696: -3,-61
- 9722: -2,-53
- 9723: -2,-52
- 9724: -2,-52
- 9725: -2,-54
- 9726: -2,-54
- 9727: -2,-51
- 9728: -2,-50
- 9729: -2,-49
- 9730: -2,-49
- 9731: -2,-47
- 9732: -2,-47
- 9733: -2,-46
- 9734: -2,-46
- 9735: -2,-45
- 9736: -2,-45
- 9737: -2,-44
- 9738: -2,-44
- 9739: -2,-43
- 9740: -2,-42
- 9741: -2,-39
- 9742: -2,-38
- 9743: -2,-38
- 9744: 1,-45
- 9759: -2,-56
- 9760: -2,-55
- 9761: -2,-55
- 9832: -42,-15
- 9833: -42,-16
- 9951: 2,-35
- 10012: 1,-39
- 10019: -11,-65
- 10738: 1,-44
- 10769: 1,-51
- 10796: 3,-52
- 10797: 3,-52
- 10798: 3,-51
- 10799: 3,-50
- 10918: 2,-60
- 10919: 2,-60
- 10971: 3,-67
- 10972: 3,-66
- 10973: 3,-75
- 10974: 3,-76
- 10985: 4,-84
- 10986: 4,-85
- 10987: 4,-86
- 10994: 2,-60
- 11028: 43,-41
- 11029: 43,-41
- 11030: 43,-40
- 11031: 43,-39
- 11062: 50,-42
- 11063: 50,-42
- 11647: -60,-42
- 11648: -60,-37
- 11649: -60,-35
- 11650: -60,-35
- 11701: -78,-31
- 11702: -78,-20
- 11707: -78,-31
- 11745: -6,-86
- 11746: -6,-84
- 11747: -6,-85
- 11748: -4,-86
- 11749: -4,-85
- 11750: -4,-84
- 11751: 2,-86
- 11752: 2,-85
- 11753: 2,-84
- 11821: -15,-32
- 11822: -15,-31
- 11823: -15,-30
- 12238: -39,-56
- 12239: -39,-56
- 12248: -42,-53
- 12249: -42,-54
- 12250: -42,-55
- 12254: -36,-53
- 12279: -26,-51
- 12953: -18,-78
- 13774: -44,10
- 13824: -38,-62
- 13825: -38,-61
- 14806: -45,13
- 15338: 6,22
- 15339: 6,23
- 15340: 6,24
- 15365: -8,24
- 15366: -8,23
- 15367: -8,22
- 15369: -20,24
- 15370: -20,23
- 15371: -20,22
- 15639: 43,-20
- 15767: -1,-70
- 15811: -43,5
- 15812: -43,6
- 15824: -40,6
- 15825: -40,5
- 15826: -40,4
- 16926: -60,-49
- 17231: -61,-13
- 17232: -61,-14
- 17262: -60,-17
- 17345: -61,-2
- 17346: -61,-3
- 17365: -53,4
- 17366: -53,5
- 17367: -53,6
- 17380: -56,-9
- 17381: -56,-7
- 18045: 9,75
- 18046: 9,76
- 18047: 9,80
- 18048: 9,81
- 18458: -44,23
- 19033: -17,-10
- 19034: -17,-9
- 19097: 15,-10
- 19098: 15,-9
- 19099: 15,-8
- 20655: -23,13
- 20656: -23,12
- 20657: -23,12
- 20658: -23,11
- 20659: -23,10
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileSteelLineW
- decals:
- 932: 28,-7
- 933: 28,-6
- 934: 28,-5
- 935: 28,-4
- 936: 28,-3
- 937: 28,-1
- 938: 28,0
- 941: 30,2
- 4278: -20,19
- 4279: -20,18
- 4280: -20,16
- 4281: -20,15
- 4282: -20,14
- 4283: -20,14
- 4284: -20,13
- 4285: -20,10
- 4286: -20,9
- 4287: -20,8
- 4288: -20,8
- 4289: -20,7
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteCornerNe
- decals:
- 4100: 27,67
- 9825: -37,2
- 18433: -54,34
- 18435: -54,37
- 18464: -47,42
- 18530: -44,45
- 18553: -58,54
- 18565: -58,58
- 18653: -53,24
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteCornerNe
- decals:
- 9921: 38,-34
- 9929: 18,-24
- 10106: 14,-34
- 10316: 24,-38
- 10351: 38,-38
- 10352: 38,-44
- 10483: 14,-38
- 10507: 24,-46
- 10545: 24,-43
- 10569: 34,-47
- 10610: 31,-47
- 10708: 10,-43
- 10712: 6,-43
- 10754: 14,-43
- 20001: 7,65
- 20122: -5,-58
- 20515: 22,-25
- 20523: 26,-27
- 20529: 32,-29
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteCornerNe
- decals:
- 3115: -28,55
- 3199: -37,50
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteCornerNe
- decals:
- 5388: 43,30
- 12093: -4,-30
- 12307: -33,-40
- 12488: -22,-24
- 12650: -13,-56
- 12680: -4,-46
- - node:
- color: '#B240B4FF'
- id: BrickTileWhiteCornerNe
- decals:
- 675: -21,-56
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteCornerNe
- decals:
- 11230: 28,-55
- 11248: 36,-60
- 11276: 41,-60
- 11325: 42,-70
- 11343: 42,-73
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteCornerNe
- decals:
- 19846: 70,16
- 19860: 63,-3
- 19870: 66,-3
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteCornerNe
- decals:
- 2909: -9,54
- 3017: -5,34
- 4011: 12,70
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteCornerNe
- decals:
- 4606: 10,31
- 4631: 11,37
- 4695: 17,32
- 4784: 11,40
- 4790: 11,46
- 4805: 21,39
- 4844: 22,38
- 4871: 27,32
- 4986: 29,38
- 5006: 15,35
- 5031: 29,44
- 5156: 13,54
- 5404: 43,30
- 5416: 36,38
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteCornerNe
- decals:
- 17447: -49,-1
- 17517: -63,2
- 17534: -57,-6
- 17570: -51,-6
- 17598: -55,-12
- 17634: -47,-13
- 17668: -47,15
- 17670: -61,15
- 17753: -68,16
- 17849: -57,19
- 17885: -45,-6
- 17906: -63,-6
- 17985: 11,88
- 17992: 7,90
- 18023: 12,82
- 18069: -62,10
- 18141: -66,2
- 18208: -70,12
- 18290: -76,1
- 18336: -67,-10
- 18371: -52,18
- 18716: -55,-1
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerNe
- decals:
- 879: 70,-41
- 995: 0,-15
- 1200: 49,-14
- 2268: -22,47
- 2349: -22,29
- 4052: 23,71
- 4373: -23,23
- 4374: -23,23
- 5862: -33,29
- 5864: -30,28
- 7017: -28,-11
- 7036: -28,-11
- 7271: -23,-15
- 8441: 57,-29
- 8442: 57,-16
- 9076: -6,-77
- 9081: -4,-80
- 9859: 74,-49
- 11388: 42,-67
- 11389: 41,-66
- 15758: -3,-69
- 16137: 95,-2
- 16222: 97,7
- 20480: 34,-15
- - node:
- color: '#0A6AB6FF'
- id: BrickTileWhiteCornerNw
- decals:
- 897: 72,-44
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteCornerNw
- decals:
- 4103: 25,67
- 18413: -50,23
- 18443: -57,37
- 18463: -50,42
- 18474: -51,38
- 18475: -60,54
- 18476: -47,55
- 18566: -60,58
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteCornerNw
- decals:
- 9928: 16,-24
- 10317: 20,-38
- 10353: 30,-38
- 10354: 36,-44
- 10484: 8,-38
- 10508: 20,-46
- 10543: 20,-43
- 10544: 20,-43
- 10570: 32,-47
- 10611: 30,-47
- 10709: 2,-43
- 10724: 8,-43
- 10753: 12,-43
- 20000: 5,65
- 20123: -8,-58
- 20516: 20,-25
- 20522: 24,-27
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteCornerNw
- decals:
- 3104: -35,50
- 3109: -34,54
- 3114: -29,55
- 18926: -38,50
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteCornerNw
- decals:
- 5410: 33,38
- 12012: -31,-34
- 12083: -10,-30
- 12308: -34,-40
- 12487: -24,-24
- 12635: -17,-50
- 12649: -20,-56
- 12681: -11,-49
- 12682: -7,-46
- - node:
- color: '#B240B4FF'
- id: BrickTileWhiteCornerNw
- decals:
- 678: -25,-56
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteCornerNw
- decals:
- 11237: 26,-55
- 11247: 34,-60
- 11282: 38,-60
- 11342: 41,-73
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteCornerNw
- decals:
- 19845: 68,16
- 19859: 60,-3
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteCornerNw
- decals:
- 2913: -13,54
- 3016: -7,34
- 4012: 10,70
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteCornerNw
- decals:
- 4598: 2,31
- 4627: 2,37
- 4769: 4,43
- 4783: 9,40
- 4791: 9,46
- 4806: 13,39
- 4854: 13,46
- 4870: 19,32
- 4977: 24,38
- 5007: 19,35
- 5032: 27,44
- 5155: 9,54
- 5180: 15,54
- - node:
- color: '#DABC8BFF'
- id: BrickTileWhiteCornerNw
- decals:
- 4213: -40,54
- 9961: 2,-30
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteCornerNw
- decals:
- 17449: -51,-1
- 17455: -61,-1
- 17465: -61,2
- 17507: -59,15
- 17516: -64,2
- 17533: -61,-6
- 17595: -61,-12
- 17763: -78,16
- 17848: -61,19
- 17881: -49,-6
- 17949: -77,-6
- 17984: 9,88
- 18075: -65,10
- 18142: -74,2
- 18205: -74,12
- 18256: -78,7
- 18294: -79,1
- 18333: -73,-10
- 18370: -55,18
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerNw
- decals:
- 996: -1,-15
- 1197: 44,-14
- 2269: -16,47
- 2582: -31,32
- 2583: -30,33
- 4376: -25,23
- 5861: -34,29
- 6637: -2,-14
- 7016: -35,-11
- 7035: -35,-11
- 7270: -26,-15
- 8443: 61,-16
- 8444: 61,-29
- 8694: 40,-15
- 9077: -3,-77
- 9080: -5,-80
- 9858: 72,-49
- 11390: 39,-66
- 11391: 38,-67
- 13891: -41,-62
- 15760: -6,-69
- 16206: 91,-3
- 16224: 95,7
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerNw
- decals:
- 877: 69,-47
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteCornerSe
- decals:
- 4101: 27,65
- 9826: -37,0
- 18429: -54,32
- 18434: -54,36
- 18466: -47,36
- 18532: -44,44
- 18564: -58,56
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteCornerSe
- decals:
- 10036: 38,-36
- 10105: 14,-36
- 10165: 28,-53
- 10285: 18,-47
- 10315: 24,-41
- 10357: 38,-45
- 10366: 38,-42
- 10467: 32,-27
- 10496: 14,-41
- 10510: 24,-49
- 10566: 34,-53
- 10720: 10,-47
- 10757: 14,-47
- 20003: 7,62
- 20125: -5,-62
- 20530: 32,-30
- 20531: 30,-32
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteCornerSe
- decals:
- 3087: -27,46
- 3207: -37,47
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteCornerSe
- decals:
- 5326: 27,26
- 5390: 43,28
- 11977: -12,-36
- 11978: -12,-36
- 12070: -5,-36
- 12094: -4,-32
- 12095: -4,-32
- 12305: -33,-46
- 12306: -33,-46
- 12633: -13,-54
- 12671: -13,-60
- 12684: -4,-53
- - node:
- color: '#B240B4FF'
- id: BrickTileWhiteCornerSe
- decals:
- 676: -21,-58
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteCornerSe
- decals:
- 11243: 28,-58
- 11256: 36,-72
- 11293: 41,-63
- 11294: 45,-63
- 11326: 42,-71
- 11338: 39,-74
- 11339: 39,-74
- 11340: 42,-74
- 11341: 42,-74
- 11383: 31,-69
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteCornerSe
- decals:
- 19849: 70,12
- 19864: 63,-6
- 19872: 66,-5
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteCornerSe
- decals:
- 2907: -9,52
- 3019: -5,32
- 4018: 12,66
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteCornerSe
- decals:
- 4632: 11,34
- 4633: 10,33
- 4686: 10,26
- 4701: 17,26
- 4728: 15,28
- 4759: 7,39
- 4781: 11,39
- 4799: 11,42
- 4841: 22,34
- 4884: 22,26
- 4893: 27,26
- 4982: 29,34
- 5004: 15,37
- 5034: 29,40
- 5169: 13,48
- 5405: 43,28
- 5418: 36,34
- - node:
- color: '#DABC8BFF'
- id: BrickTileWhiteCornerSe
- decals:
- 4220: -37,52
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteCornerSe
- decals:
- 17450: -49,-4
- 17485: -51,8
- 17519: -63,0
- 17536: -57,-10
- 17571: -51,-10
- 17579: -52,-18
- 17601: -55,-15
- 17630: -47,-17
- 17719: -47,11
- 17766: -76,13
- 17773: -68,14
- 17840: -57,17
- 17889: -45,-10
- 17907: -63,-8
- 17955: -75,-10
- 17995: 7,87
- 18005: 11,84
- 18074: -62,5
- 18210: -70,10
- 18355: -67,-13
- 18725: -55,-4
- 18779: -52,17
- 18878: -66,-4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerSe
- decals:
- 888: 75,-47
- 998: 0,-16
- 1206: 49,-17
- 2270: -22,51
- 2348: -22,34
- 4045: 23,69
- 4379: -23,21
- 5865: -30,27
- 5866: -31,26
- 7268: -23,-18
- 8439: 57,-12
- 8440: 57,-25
- 8691: 34,-9
- 9078: -6,-79
- 9083: -4,-76
- 9862: 74,-52
- 11393: 42,-68
- 13892: -40,-63
- 15759: -3,-71
- 15771: -4,-73
- 16130: 95,-5
- 16226: 97,6
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerSe
- decals:
- 878: 75,-42
- - node:
- color: '#0A6AB6FF'
- id: BrickTileWhiteCornerSw
- decals:
- 898: 72,-46
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteCornerSw
- decals:
- 9827: -39,0
- 18420: -49,18
- 18430: -56,32
- 18441: -57,35
- 18465: -51,36
- 18563: -60,56
- 18586: -60,44
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteCornerSw
- decals:
- 10164: 26,-53
- 10286: 16,-47
- 10314: 20,-41
- 10355: 30,-42
- 10356: 36,-45
- 10468: 28,-27
- 10499: 8,-41
- 10509: 20,-49
- 10567: 32,-53
- 10568: 32,-53
- 10612: 30,-53
- 10736: 3,-47
- 10755: 12,-45
- 20002: 5,62
- 20124: -8,-62
- 20504: 20,-29
- 20505: 24,-30
- 20506: 26,-32
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteCornerSw
- decals:
- 3098: -34,46
- 3100: -35,48
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteCornerSw
- decals:
- 5389: 38,28
- 12013: -31,-36
- 12064: -10,-36
- 12065: -10,-36
- 12304: -34,-46
- 12634: -17,-54
- 12652: -20,-59
- 12658: -19,-60
- 12683: -11,-53
- - node:
- color: '#B240B4FF'
- id: BrickTileWhiteCornerSw
- decals:
- 677: -25,-58
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteCornerSw
- decals:
- 11242: 26,-58
- 11258: 34,-72
- 11291: 38,-63
- 11292: 43,-63
- 11328: 38,-71
- 11344: 41,-74
- 11345: 41,-74
- 11376: 27,-69
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteCornerSw
- decals:
- 19848: 68,12
- 19863: 60,-6
- 19871: 65,-5
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteCornerSw
- decals:
- 2915: -13,52
- 3018: -7,32
- 4016: 10,66
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteCornerSw
- decals:
- 4602: 2,26
- 4623: 2,33
- 4688: 12,26
- 4764: 4,39
- 4782: 9,39
- 4795: 9,42
- 4882: 19,26
- 4885: 24,26
- 4976: 24,34
- 5005: 19,37
- 5033: 27,40
- 5164: 9,48
- 14836: -59,9
- - node:
- color: '#DABC8BFF'
- id: BrickTileWhiteCornerSw
- decals:
- 4217: -40,52
- 9963: 2,-32
- 9964: 3,-36
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteCornerSw
- decals:
- 17458: -61,-4
- 17486: -54,8
- 17503: -59,9
- 17518: -64,0
- 17535: -61,-10
- 17584: -59,-18
- 17585: -61,-15
- 17626: -50,-18
- 17738: -66,14
- 17765: -78,13
- 17845: -61,17
- 17892: -49,-10
- 17953: -77,-10
- 17996: 5,87
- 18004: 9,84
- 18032: 10,74
- 18076: -65,5
- 18143: -74,-4
- 18209: -74,10
- 18260: -78,3
- 18298: -79,-1
- 18299: -78,-2
- 18354: -73,-13
- 18727: -51,-4
- 18778: -55,17
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerSw
- decals:
- 997: -1,-16
- 1203: 44,-17
- 2267: -16,51
- 2563: -29,38
- 4039: 17,69
- 4378: -25,21
- 6641: -2,-17
- 7029: -35,-16
- 7269: -26,-18
- 8437: 61,-12
- 8438: 61,-25
- 8692: 40,-9
- 8693: 40,-9
- 9079: -3,-79
- 9082: -5,-76
- 9863: 72,-52
- 11392: 38,-68
- 15769: -6,-71
- 15770: -5,-73
- 16129: 91,-5
- 16225: 95,6
- - node:
- color: '#0A6AB6FF'
- id: BrickTileWhiteEndE
- decals:
- 900: 73,-44
- 901: 73,-46
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteEndE
- decals:
- 19833: 70,-4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteEndE
- decals:
- 8590: 41,-7
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteEndN
- decals:
- 16235: 97,-2
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteEndN
- decals:
- 4919: 21,28
- 4920: 25,28
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteEndN
- decals:
- 17631: -50,-12
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteEndN
- decals:
- 8412: 60,-13
- 8413: 58,-13
- 8414: 60,-26
- 8415: 58,-26
- 8996: 60,-26
- 16205: 95,-2
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteEndS
- decals:
- 16234: 97,-4
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteEndS
- decals:
- 3091: -31,45
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteEndS
- decals:
- 4917: 21,30
- 4918: 25,30
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteEndS
- decals:
- 17627: -50,-18
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteEndS
- decals:
- 8432: 58,-15
- 8433: 60,-15
- 8434: 58,-28
- 8435: 60,-28
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteEndW
- decals:
- 12320: -29,-28
- 12321: -29,-30
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteEndW
- decals:
- 19832: 69,-4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteEndW
- decals:
- 2560: -31,38
- 8589: 38,-7
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteInnerNe
- decals:
- 18424: -46,18
- 18446: -55,37
- 18453: -55,34
- 18483: -46,51
- 18524: -48,42
- 18525: -47,41
- 18534: -46,45
- 18575: -59,58
- 18576: -58,57
- 18577: -59,54
- 18602: -58,45
- 18670: -53,21
->>>>>>> master
- node:
color: '#8CB7E8FF'
id: BrickTileWhiteInnerNe
decals:
-<<<<<<< HEAD
12765: 10,-25
12814: 18,-27
12829: 18,-34
@@ -20127,50 +9836,10 @@ entities:
14104: 49,-33
16121: -7,-58
16134: -5,-60
-=======
- 9933: 18,-27
- 9948: 18,-34
- 9949: 21,-34
- 10094: 14,-35
- 10100: 12,-34
- 10174: 29,-34
- 10175: 36,-34
- 10306: 18,-39
- 10307: 18,-44
- 10310: 28,-44
- 10311: 28,-50
- 10327: 24,-39
- 10328: 28,-40
- 10344: 38,-35
- 10384: 37,-44
- 10404: 36,-40
- 10435: 29,-29
- 10498: 14,-39
- 10551: 24,-44
- 10745: 4,-43
- 10746: 9,-43
- 10749: 6,-45
- 10764: 14,-44
- 11016: 49,-33
- 12781: -7,-58
- 15726: 10,-25
- 15740: 17,-40
- 15745: 27,-47
- 15746: 27,-40
- 15750: 27,-35
- 15751: 36,-35
- 15756: 13,-35
- 19004: 17,-31
- 20009: 6,65
- 20126: -5,-60
- 20520: 22,-29
- 20536: 26,-29
->>>>>>> master
- node:
color: '#A9DA8BFF'
id: BrickTileWhiteInnerNe
decals:
-<<<<<<< HEAD
4796: -26,48
4832: -28,53
4835: -28,51
@@ -20178,20 +9847,10 @@ entities:
4892: -30,53
4893: -28,50
4916: -37,49
-=======
- 3082: -26,48
- 3118: -28,53
- 3121: -28,51
- 3177: -32,53
- 3178: -30,53
- 3179: -28,50
- 3202: -37,49
->>>>>>> master
- node:
color: '#B18BDAFF'
id: BrickTileWhiteInnerNe
decals:
-<<<<<<< HEAD
7333: 21,32
7338: 27,31
7423: 36,37
@@ -20232,92 +9891,32 @@ entities:
16550: -7,-32
16652: -7,-32
16653: -7,-32
-=======
- 5332: 21,32
- 5337: 27,31
- 5422: 36,37
- 11929: -15,-34
- 11930: -13,-34
- 12006: -22,-34
- 12007: -22,-34
- 12049: -12,-35
- 12050: -12,-35
- 12074: -5,-35
- 12075: -6,-30
- 12076: -6,-30
- 12226: -13,-41
- 12317: -29,-34
- 12348: -28,-27
- 12349: -28,-31
- 12350: -29,-29
- 12502: -23,-24
- 12503: -22,-26
- 12504: -22,-31
- 12610: -24,-39
- 12646: -13,-50
- 12672: -16,-56
- 12675: -13,-59
- 12702: -10,-49
- 12709: -4,-48
- 12710: -6,-46
- 12736: -18,-40
- 13048: -7,-32
- 13149: -7,-32
- 13150: -7,-32
- 15674: -8,-25
- 15684: -24,-35
- 15687: -23,-26
- 15688: -14,-35
- 15693: -14,-47
- 15696: -14,-39
- 15697: -29,-39
->>>>>>> master
- node:
color: '#CEDA8BFF'
id: BrickTileWhiteInnerNe
decals:
-<<<<<<< HEAD
14329: 28,-56
14366: 41,-62
14393: 36,-62
14398: 36,-70
14474: 28,-69
-=======
- 11241: 28,-56
- 11278: 41,-62
- 11305: 36,-62
- 11310: 36,-70
- 11381: 28,-69
->>>>>>> master
- node:
color: '#DA8B8BFF'
id: BrickTileWhiteInnerNe
decals:
-<<<<<<< HEAD
10634: 61,-3
10635: 65,-3
10636: 63,-4
10688: 70,13
-=======
- 8000: 61,-3
- 8001: 65,-3
- 19851: 70,13
- 19861: 63,-4
->>>>>>> master
- node:
color: '#DA8BC9FF'
id: BrickTileWhiteInnerNe
decals:
-<<<<<<< HEAD
5989: 12,67
-=======
- 4022: 12,67
->>>>>>> master
- node:
color: '#DAA58BFF'
id: BrickTileWhiteInnerNe
decals:
-<<<<<<< HEAD
6607: 10,30
6608: 10,28
6613: 9,31
@@ -20365,61 +9964,10 @@ entities:
7311: 22,51
7415: 34,38
9540: 8,29
-=======
- 4609: 10,30
- 4610: 10,28
- 4615: 9,31
- 4642: 10,37
- 4643: 11,36
- 4650: 4,31
- 4672: 8,29
- 4709: 15,32
- 4733: 16,31
- 4786: 10,40
- 4801: 11,43
- 4804: 11,45
- 4845: 21,38
- 4865: 22,36
- 4869: 21,32
- 4898: 27,31
- 4954: 20,30
- 4955: 26,30
- 4956: 26,29
- 4961: 22,29
- 4969: 21,29
- 5003: 27,37
- 5022: 18,37
- 5023: 19,36
- 5024: 28,38
- 5063: 9,35
- 5068: 5,37
- 5103: 32,49
- 5104: 38,49
- 5141: 25,41
- 5145: 25,52
- 5154: 10,54
- 5173: 13,50
- 5176: 13,53
- 5183: 17,54
- 5302: 17,45
- 5303: 17,43
- 5304: 17,41
- 5305: 22,41
- 5306: 22,43
- 5307: 22,45
- 5308: 22,47
- 5309: 22,49
- 5310: 22,51
- 5414: 34,38
- 7300: 8,29
- 20675: 25,29
- 20679: 24,30
->>>>>>> master
- node:
color: '#DABC8BFF'
id: BrickTileWhiteInnerNe
decals:
-<<<<<<< HEAD
6182: -39,54
12856: 8,-36
12859: 5,-30
@@ -24490,4959 +14038,22 @@ entities:
id: Caution
decals:
1744: 54.967342,4.446437
-=======
- 4215: -39,54
- 9975: 8,-36
- 9978: 5,-30
- 10001: 6,-32
- 10010: 8,-34
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteInnerNe
- decals:
- 17441: -49,1
- 17442: -52,2
- 17515: -63,1
- 17542: -58,-6
- 17543: -57,-7
- 17544: -57,-9
- 17557: -58,-12
- 17610: -52,-15
- 17638: -50,-13
- 17669: -52,15
- 17715: -47,14
- 17718: -47,12
- 17722: -50,9
- 17727: -58,15
- 17749: -61,14
- 17752: -68,15
- 17862: -51,-7
- 17903: -52,-6
- 17904: -63,-7
- 17937: -71,-6
- 17938: -69,-6
- 17987: 10,88
- 17991: 5,90
- 18012: 11,87
- 18035: 10,82
- 18036: 12,78
- 18165: -73,2
- 18166: -66,1
- 18221: -72,12
- 18292: -77,1
- 18308: -76,0
- 18338: -69,-10
- 18373: -53,18
- 20684: -49,-3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerNe
- decals:
- 2562: -30,38
- 2574: -29,30
- 5872: -33,28
- 5873: -33,28
- 5877: -31,28
- 6981: -32,1
- 6984: -32,-2
- 7010: -24,-2
- 7040: -32,-11
- 7062: -35,-16
- 7275: -23,-16
- 8469: 60,-12
- 8470: 60,-25
- 8471: 61,-26
- 8472: 61,-13
- 8708: 39,-10
- 8710: 39,-13
- 8711: 39,-13
- 8745: 46,-14
- 9099: -4,-77
- 9100: -1,-76
- 9101: -6,-76
- 9102: -6,-80
- 9103: -1,-80
- 9322: -4,-25
- 9483: 14,-25
- 9869: 73,-49
- 9875: 73,-42
- 10739: 0,-44
- 11091: 75,-45
- 11399: 41,-67
- 15434: -19,19
- 15435: -13,23
- 15436: -3,23
- 15437: 4,23
- 15438: 14,23
- 15439: 17,19
- 15452: -21,34
- 15453: -19,36
- 15454: -19,32
- 15455: -19,29
- 15463: -19,48
- 15464: -16,50
- 15465: -17,51
- 15466: -21,51
- 15467: -19,52
- 15470: -23,41
- 15471: -10,49
- 15472: -5,49
- 15509: -30,95
- 15510: -30,88
- 15519: -30,82
- 15520: -30,75
- 15551: -29,68
- 15552: -24,68
- 15553: -18,68
- 15554: -11,68
- 15555: -12,75
- 15556: -12,82
- 15557: -12,88
- 15558: -12,95
- 15559: -4,68
- 15560: 2,68
- 15561: -5,64
- 15562: 7,68
- 15563: 6,75
- 15564: 6,82
- 15566: -4,57
- 15567: 2,57
- 15568: -11,57
- 15569: -18,57
- 15570: -19,64
- 15580: 17,12
- 15581: 24,5
- 15582: 31,5
- 15593: 24,-11
- 15594: 30,-11
- 15597: 17,-12
- 15598: 13,-20
- 15599: 6,-20
- 15600: -5,-20
- 15601: -12,-20
- 15602: -19,-12
- 15603: -19,-2
- 15604: -19,5
- 15605: -23,5
- 15606: -19,12
- 15607: -31,5
- 15608: -36,5
- 15647: 47,-20
- 15648: 52,-20
- 15649: 17,5
- 15718: -1,-31
- 15719: -1,-24
- 15720: -1,-39
- 15721: -1,-44
- 15722: -1,-52
- 15725: -1,-59
- 15884: -42,17
- 15885: -42,22
- 15886: -42,11
- 16138: 95,-3
- 19384: 7,-9
- 19385: 13,-9
- 19391: -12,-9
- 19392: -6,-9
- 19399: 1,-9
- 20494: 40,-10
- 20499: 39,-9
- 20765: 17,-2
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteInnerNw
- decals:
- 16237: 97,-3
- 18417: -50,21
- 18445: -55,37
- 18489: -46,55
- 18521: -50,41
- 18523: -48,42
- 18527: -50,38
- 18570: -59,54
- 18571: -60,57
- 18574: -59,58
- 18584: -60,48
- 18585: -60,50
- 18603: -47,45
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteInnerNw
- decals:
- 9932: 16,-25
- 9950: 21,-34
- 10089: 16,-35
- 10097: 16,-31
- 10099: 12,-34
- 10112: 10,-36
- 10173: 29,-34
- 10176: 36,-34
- 10302: 16,-44
- 10303: 16,-39
- 10308: 26,-44
- 10312: 26,-39
- 10326: 20,-39
- 10383: 37,-44
- 10385: 30,-40
- 10403: 32,-40
- 10433: 29,-29
- 10434: 29,-29
- 10550: 20,-44
- 10579: 32,-51
- 10580: 32,-49
- 10619: 30,-50
- 10743: 4,-43
- 10744: 9,-43
- 10748: 8,-45
- 10750: 2,-44
- 10767: 14,-47
- 11027: 43,-33
- 12780: -7,-58
- 15727: 6,-25
- 15739: 17,-40
- 15744: 27,-47
- 15747: 27,-40
- 15748: 22,-35
- 15749: 31,-35
- 15755: 11,-35
- 19003: 17,-31
- 20007: 5,64
- 20008: 6,65
- 20518: 20,-27
- 20519: 24,-29
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteInnerNw
- decals:
- 3103: -35,49
- 3105: -34,50
- 3116: -29,54
- 3124: -26,51
- 3174: -28,50
- 3175: -30,53
- 3176: -32,53
- 3213: -38,46
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteInnerNw
- decals:
- 5330: 20,32
- 11927: -15,-34
- 11928: -13,-34
- 12005: -24,-34
- 12077: -6,-30
- 12078: -6,-30
- 12102: -10,-34
- 12103: -10,-35
- 12223: -15,-40
- 12316: -29,-34
- 12347: -30,-27
- 12501: -23,-24
- 12609: -25,-39
- 12644: -17,-51
- 12661: -20,-58
- 12673: -16,-56
- 12701: -10,-49
- 12705: -11,-50
- 12711: -6,-46
- 12735: -20,-40
- 13047: -8,-32
- 13148: -8,-32
- 15673: -12,-25
- 15682: -23,-26
- 15683: -29,-35
- 15689: -18,-35
- 15694: -14,-47
- 15695: -14,-39
- 15698: -29,-39
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteInnerNw
- decals:
- 11240: 26,-56
- 11280: 38,-62
- 11297: 43,-62
- 11309: 34,-61
- 11313: 34,-68
- 11386: 30,-69
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteInnerNw
- decals:
- 7998: 61,-3
- 7999: 65,-3
- 19875: 65,-4
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteInnerNw
- decals:
- 4021: 10,68
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteInnerNw
- decals:
- 4597: 7,31
- 4608: 2,29
- 4641: 10,37
- 4649: 4,31
- 4673: 4,29
- 4693: 15,28
- 4731: 13,27
- 4732: 16,31
- 4766: 4,40
- 4777: 7,43
- 4785: 10,40
- 4822: 13,36
- 4857: 15,46
- 4858: 13,45
- 4859: 13,43
- 4868: 20,32
- 4952: 20,29
- 4953: 20,30
- 4957: 26,30
- 4962: 24,29
- 4967: 21,29
- 4968: 22,30
- 4973: 24,36
- 5002: 26,37
- 5020: 16,37
- 5021: 15,36
- 5025: 28,38
- 5062: 4,35
- 5067: 5,37
- 5108: 34,49
- 5153: 10,54
- 5182: 17,54
- 5187: 15,53
- 5195: 24,54
- 5293: 19,51
- 5294: 19,49
- 5295: 19,47
- 5296: 19,45
- 5297: 19,43
- 5298: 19,41
- 5299: 16,41
- 5300: 16,43
- 5301: 16,45
- 5413: 34,38
- 7299: 4,29
- 20674: 25,29
- - node:
- color: '#DABC8BFF'
- id: BrickTileWhiteInnerNw
- decals:
- 4214: -39,54
- 9970: 3,-35
- 9977: 5,-30
- 10000: 5,-32
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteInnerNw
- decals:
- 17443: -53,2
- 17445: -49,2
- 17466: -61,1
- 17514: -64,1
- 17545: -58,-6
- 17548: -61,-7
- 17556: -58,-12
- 17607: -54,-12
- 17615: -50,-15
- 17622: -59,-17
- 17723: -55,15
- 17726: -58,15
- 17728: -59,14
- 17731: -59,10
- 17776: -78,14
- 17863: -49,-7
- 17902: -55,-9
- 17935: -71,-6
- 17936: -69,-6
- 17977: 5,90
- 17986: 10,88
- 18019: 10,81
- 18034: 10,76
- 18164: -73,2
- 18169: -74,0
- 18220: -72,12
- 18268: -77,7
- 18291: -77,1
- 18297: -79,0
- 18337: -71,-10
- 18372: -54,18
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerNw
- decals:
- 2561: -30,38
- 3015: -7,33
- 5874: -31,28
- 5875: -31,28
- 5876: -34,26
- 6638: -2,-16
- 7008: -24,-2
- 7009: -24,-2
- 7039: -33,-11
- 7061: -30,-16
- 8465: 58,-25
- 8466: 57,-26
- 8467: 57,-13
- 8468: 58,-12
- 8706: 35,-10
- 8707: 35,-10
- 8709: 35,-13
- 8746: 46,-14
- 9094: -8,-76
- 9095: -5,-77
- 9096: -3,-76
- 9097: -8,-80
- 9098: -3,-80
- 9486: 2,-25
- 9867: 72,-50
- 9868: 73,-49
- 9874: 73,-42
- 11083: 72,-50
- 11397: 39,-67
- 11398: 39,-67
- 15429: 11,23
- 15430: 1,23
- 15431: -6,23
- 15432: -16,23
- 15433: -19,19
- 15440: 17,19
- 15448: -21,34
- 15449: -19,36
- 15450: -19,32
- 15451: -19,29
- 15456: -22,33
- 15459: -22,50
- 15460: -21,51
- 15461: -19,52
- 15462: -17,51
- 15468: -19,48
- 15469: -23,41
- 15473: -11,49
- 15474: -6,49
- 15487: -20,57
- 15488: -13,57
- 15489: -6,57
- 15490: 0,57
- 15491: -5,64
- 15492: -6,68
- 15493: 0,68
- 15494: 5,68
- 15495: 6,75
- 15496: 6,82
- 15497: -13,68
- 15498: -12,75
- 15499: -12,82
- 15500: -12,88
- 15501: -12,95
- 15502: -26,68
- 15503: -20,68
- 15504: -31,68
- 15505: -30,75
- 15506: -30,82
- 15507: -30,88
- 15508: -30,95
- 15571: -19,64
- 15577: 17,12
- 15578: 21,5
- 15579: 28,5
- 15592: 21,-11
- 15595: 28,-11
- 15596: 17,-12
- 15609: -38,5
- 15610: -38,5
- 15611: -33,5
- 15612: -27,5
- 15623: -19,-12
- 15624: -19,-2
- 15625: -19,5
- 15635: 3,-20
- 15636: -8,-20
- 15637: -15,-20
- 15645: 44,-20
- 15646: 49,-20
- 15650: 17,5
- 15651: -10,14
- 15714: -1,-39
- 15715: -1,-44
- 15716: -1,-31
- 15717: -1,-24
- 15723: -1,-52
- 15724: -1,-59
- 15887: -42,11
- 15888: -42,17
- 15889: -42,22
- 16210: 95,-3
- 19380: -9,-9
- 19381: -3,-9
- 19382: 4,-9
- 19383: 10,-9
- 19390: -15,-9
- 20255: -19,12
- 20258: 10,-20
- 20492: 35,-9
- 20493: 34,-10
- 20764: 17,-2
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteInnerSe
- decals:
- 18407: -46,23
- 18451: -55,32
- 18452: -55,36
- 18484: -46,51
- 18519: -48,44
- 18526: -47,41
- 18569: -59,56
- 18573: -58,57
- 18596: -56,44
- 18597: -54,44
- 18668: -53,21
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteInnerSe
- decals:
- 9947: 18,-28
- 10080: 18,-36
- 10093: 14,-35
- 10167: 27,-53
- 10168: 28,-50
- 10169: 28,-44
- 10170: 28,-40
- 10171: 28,-36
- 10288: 17,-47
- 10295: 18,-40
- 10296: 18,-44
- 10325: 24,-40
- 10345: 38,-35
- 10346: 38,-35
- 10382: 37,-42
- 10406: 36,-40
- 10421: 30,-30
- 10471: 29,-27
- 10475: 29,-32
- 10497: 14,-40
- 10501: 24,-45
- 10519: 22,-49
- 10520: 25,-43
- 10549: 24,-44
- 10605: 31,-53
- 10734: 9,-41
- 10735: 4,-47
- 10765: 14,-44
- 11017: 49,-33
- 15729: 10,-26
- 15730: 13,-35
- 15731: 17,-34
- 15732: 27,-35
- 15733: 36,-35
- 15734: 27,-44
- 15735: 27,-51
- 15736: 17,-45
- 20127: -5,-60
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteInnerSe
- decals:
- 3088: -27,47
- 3089: -31,46
- 3095: -32,46
- 3119: -28,53
- 3172: -30,47
- 3173: -28,47
- 3203: -37,49
- 3206: -38,47
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteInnerSe
- decals:
- 5336: 27,31
- 5339: 22,27
- 5419: 35,34
- 5423: 36,37
- 12048: -12,-35
- 12073: -5,-35
- 12092: -5,-32
- 12097: -7,-36
- 12100: -12,-34
- 12201: -13,-36
- 12225: -13,-41
- 12311: -29,-36
- 12312: -24,-36
- 12342: -28,-31
- 12343: -29,-29
- 12344: -29,-29
- 12345: -28,-27
- 12505: -22,-31
- 12506: -22,-26
- 12608: -24,-41
- 12645: -13,-50
- 12648: -16,-54
- 12676: -13,-59
- 12708: -4,-48
- 12716: -6,-53
- 12738: -19,-44
- 13045: -7,-34
- 13146: -7,-34
- 13147: -7,-34
- 15676: -8,-26
- 15677: -14,-35
- 15678: -14,-43
- 15679: -14,-53
- 15680: -24,-35
- 15681: -23,-30
- 15700: -29,-41
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteInnerSe
- decals:
- 11239: 28,-56
- 11245: 27,-58
- 11277: 41,-62
- 11306: 36,-62
- 11311: 36,-70
- 11346: 41,-71
- 11347: 39,-71
- 11348: 39,-71
- 11385: 28,-67
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteInnerSe
- decals:
- 19850: 70,13
- 19862: 63,-4
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteInnerSe
- decals:
- 4023: 12,67
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteInnerSe
- decals:
- 4611: 10,28
- 4612: 10,30
- 4636: 4,33
- 4637: 9,33
- 4644: 11,35
- 4652: 5,26
- 4653: 8,26
- 4671: 8,28
- 4703: 16,26
- 4729: 16,27
- 4758: 10,34
- 4761: 5,39
- 4780: 10,39
- 4797: 10,42
- 4800: 11,43
- 4803: 11,45
- 4815: 13,34
- 4816: 15,34
- 4840: 21,34
- 4864: 22,36
- 4888: 22,27
- 4889: 21,26
- 4899: 27,31
- 4934: 20,28
- 4935: 26,28
- 4936: 24,28
- 4958: 26,29
- 4959: 22,29
- 4965: 21,29
- 5001: 27,35
- 5018: 18,35
- 5019: 19,36
- 5027: 28,40
- 5060: 9,35
- 5072: 21,40
- 5105: 32,51
- 5109: 38,51
- 5132: 25,48
- 5170: 13,49
- 5175: 13,52
- 5196: 25,54
- 5273: 22,43
- 5285: 17,45
- 5286: 17,43
- 5287: 17,41
- 5288: 22,41
- 5289: 22,45
- 5290: 22,47
- 5291: 22,49
- 5292: 22,51
- 7297: 8,28
- 20678: 25,29
- - node:
- color: '#DABC8BFF'
- id: BrickTileWhiteInnerSe
- decals:
- 9974: 5,-36
- 9976: 8,-34
- 10003: 6,-34
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteInnerSe
- decals:
- 17440: -49,1
- 17463: -58,-4
- 17484: -52,8
- 17494: -51,9
- 17513: -63,1
- 17532: -63,-7
- 17540: -57,-9
- 17541: -57,-7
- 17554: -58,-10
- 17594: -52,-4
- 17608: -52,-10
- 17609: -52,-15
- 17617: -56,-18
- 17618: -54,-18
- 17639: -50,-17
- 17716: -47,14
- 17721: -50,11
- 17751: -68,15
- 17777: -76,14
- 17778: -77,13
- 17782: -72,14
- 17842: -58,17
- 17861: -51,-9
- 17931: -69,-8
- 17957: -75,-8
- 18001: 6,87
- 18002: 10,84
- 18011: 11,87
- 18037: 12,78
- 18167: -66,1
- 18172: -71,-4
- 18173: -69,-4
- 18216: -72,10
- 18262: -77,3
- 18303: -76,-2
- 18307: -76,0
- 20683: -49,-3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerSe
- decals:
- 2571: -29,32
- 2572: -29,32
- 2575: -29,30
- 2578: -31,30
- 2904: -12,52
- 4041: 19,69
- 4044: 22,69
- 6962: -32,-3
- 6963: -32,-3
- 6980: -32,1
- 6985: -29,-3
- 6989: -24,-3
- 6990: -24,-3
- 7064: -35,-11
- 7274: -23,-17
- 7278: -24,-18
- 8461: 60,-16
- 8462: 61,-15
- 8463: 61,-28
- 8464: 60,-29
- 8715: 39,-11
- 8716: 39,-14
- 8717: 39,-14
- 8741: 47,-17
- 9104: -4,-79
- 9105: -1,-80
- 9106: -6,-80
- 9108: -6,-76
- 9109: -1,-76
- 9362: -15,-28
- 9363: -6,-28
- 9480: 11,-28
- 9856: -4,-71
- 9871: 73,-47
- 11090: 75,-45
- 13893: -41,-63
- 15292: -21,47
- 15293: -17,47
- 15294: -16,48
- 15295: -19,46
- 15296: -19,50
- 15297: -23,41
- 15298: -19,34
- 15299: -19,31
- 15300: -19,27
- 15301: -19,16
- 15302: -13,23
- 15303: -3,23
- 15304: 4,23
- 15389: 17,16
- 15390: 14,23
- 15457: -21,29
- 15477: -10,49
- 15478: -5,49
- 15479: -11,57
- 15480: -4,57
- 15481: 2,57
- 15482: -18,57
- 15515: -30,85
- 15516: -30,92
- 15517: -30,79
- 15522: -30,72
- 15523: -29,68
- 15524: -24,68
- 15525: -18,68
- 15526: -11,68
- 15527: -4,68
- 15528: -12,72
- 15529: -12,79
- 15530: -12,85
- 15531: -12,92
- 15547: 6,79
- 15548: 6,72
- 15549: 7,68
- 15550: 2,68
- 15565: -5,61
- 15572: -19,61
- 15574: 17,9
- 15575: 24,5
- 15576: 31,5
- 15585: 17,2
- 15586: 17,-5
- 15587: 17,-17
- 15588: 24,-11
- 15589: 30,-11
- 15613: -31,5
- 15614: -23,5
- 15615: -36,5
- 15622: -19,-17
- 15626: -19,2
- 15627: -19,-5
- 15628: -12,-20
- 15629: -5,-20
- 15633: 6,-20
- 15634: 13,-20
- 15643: 47,-20
- 15644: 52,-20
- 15701: -1,-35
- 15702: -1,-42
- 15703: -1,-50
- 15704: -1,-55
- 15705: -1,-61
- 15712: -1,-27
- 15890: -42,20
- 15891: -42,9
- 15892: -42,14
- 16136: 95,-3
- 16227: 96,6
- 19387: -6,-9
- 19388: -12,-9
- 19397: 7,-9
- 19398: 13,-9
- 19400: 1,-9
- 20257: -19,9
- 20496: 40,-14
- 20497: 39,-15
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteInnerSw
- decals:
- 16236: 97,-3
- 18428: -49,21
- 18449: -55,32
- 18450: -56,35
- 18518: -48,44
- 18520: -50,41
- 18568: -59,56
- 18572: -60,57
- 18580: -60,48
- 18583: -60,50
- 18595: -56,44
- 18598: -54,44
- 18669: -54,23
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteInnerSw
- decals:
- 9931: 16,-26
- 10088: 16,-35
- 10098: 16,-31
- 10111: 10,-34
- 10166: 27,-53
- 10172: 26,-36
- 10287: 17,-47
- 10297: 16,-44
- 10298: 16,-40
- 10309: 26,-44
- 10313: 26,-40
- 10324: 20,-40
- 10380: 37,-42
- 10381: 30,-40
- 10405: 32,-40
- 10420: 26,-30
- 10470: 29,-27
- 10474: 29,-32
- 10500: 20,-45
- 10518: 22,-49
- 10548: 20,-44
- 10578: 32,-51
- 10581: 32,-49
- 10604: 31,-53
- 10618: 30,-50
- 10732: 9,-41
- 10733: 4,-47
- 10742: 3,-44
- 10766: 14,-45
- 11026: 43,-33
- 15728: 6,-26
- 15741: 17,-45
- 15742: 27,-44
- 15743: 27,-51
- 15752: 22,-35
- 15753: 31,-35
- 15754: 11,-35
- 19005: 17,-34
- 20006: 5,64
- 20508: 20,-28
- 20509: 24,-29
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteInnerSw
- decals:
- 3090: -31,46
- 3096: -32,46
- 3101: -34,48
- 3102: -35,49
- 3169: -30,47
- 3170: -32,47
- 3171: -28,47
- 3212: -38,48
- 3214: -38,45
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteInnerSw
- decals:
- 5338: 24,27
- 5399: 38,30
- 5409: 38,30
- 12096: -7,-36
- 12098: -10,-35
- 12099: -10,-35
- 12101: -10,-34
- 12200: -15,-36
- 12222: -15,-40
- 12309: -29,-36
- 12310: -24,-36
- 12346: -30,-31
- 12607: -25,-41
- 12643: -17,-51
- 12647: -16,-54
- 12659: -19,-59
- 12660: -20,-58
- 12704: -11,-50
- 12715: -6,-53
- 12737: -19,-44
- 13046: -8,-34
- 13144: -8,-34
- 13145: -8,-34
- 15675: -12,-26
- 15685: -29,-35
- 15686: -23,-30
- 15690: -18,-35
- 15691: -14,-43
- 15692: -14,-53
- 15699: -29,-41
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteInnerSw
- decals:
- 11238: 26,-56
- 11244: 27,-58
- 11279: 38,-62
- 11296: 43,-62
- 11308: 34,-61
- 11312: 34,-68
- 11321: 38,-70
- 11329: 39,-71
- 11349: 41,-71
- 11350: 41,-71
- 11387: 30,-67
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteInnerSw
- decals:
- 19874: 65,-4
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteInnerSw
- decals:
- 4020: 10,68
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteInnerSw
- decals:
- 4607: 2,29
- 4635: 4,33
- 4638: 9,33
- 4654: 7,26
- 4655: 4,26
- 4670: 4,28
- 4690: 12,28
- 4702: 14,26
- 4730: 13,27
- 4762: 5,39
- 4765: 4,40
- 4779: 10,39
- 4796: 10,42
- 4817: 15,34
- 4823: 13,35
- 4839: 20,34
- 4860: 13,45
- 4861: 13,43
- 4887: 24,27
- 4890: 21,26
- 4932: 20,28
- 4933: 26,28
- 4937: 22,28
- 4951: 20,29
- 4960: 24,29
- 4966: 21,29
- 4972: 24,36
- 5000: 26,35
- 5016: 16,35
- 5017: 15,36
- 5026: 28,40
- 5061: 4,35
- 5073: 24,40
- 5107: 34,51
- 5186: 15,52
- 5274: 19,43
- 5275: 19,45
- 5276: 19,47
- 5277: 19,49
- 5278: 19,51
- 5281: 19,41
- 5282: 16,41
- 5283: 16,43
- 5284: 16,45
- 5403: 38,30
- 7298: 4,28
- 20677: 25,29
- - node:
- color: '#DABC8BFF'
- id: BrickTileWhiteInnerSw
- decals:
- 9972: 3,-35
- 9973: 5,-36
- 9984: 3,-32
- 10002: 5,-34
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteInnerSw
- decals:
- 17462: -58,-4
- 17482: -59,1
- 17483: -53,8
- 17495: -54,9
- 17512: -64,1
- 17531: -61,-7
- 17553: -58,-10
- 17591: -59,-17
- 17592: -55,-7
- 17593: -54,-9
- 17614: -50,-15
- 17616: -54,-18
- 17621: -56,-18
- 17729: -59,14
- 17730: -59,10
- 17739: -66,15
- 17774: -72,14
- 17779: -77,13
- 17841: -58,17
- 17864: -49,-9
- 17930: -71,-8
- 18000: 6,87
- 18003: 10,84
- 18018: 10,80
- 18033: 10,75
- 18040: 12,74
- 18168: -74,0
- 18170: -71,-4
- 18171: -69,-4
- 18215: -72,10
- 18261: -77,3
- 18295: -79,0
- 18300: -78,-1
- 18302: -76,-2
- 18728: -54,-4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerSw
- decals:
- 2564: -28,38
- 2579: -31,30
- 2916: -12,52
- 3014: -7,33
- 4038: 17,70
- 4040: 18,69
- 4043: 21,69
- 6639: -2,-16
- 6986: -29,-3
- 6987: -24,-3
- 6988: -24,-3
- 7041: -28,-16
- 7063: -30,-11
- 7277: -24,-18
- 8457: 58,-29
- 8458: 57,-28
- 8459: 57,-15
- 8460: 58,-16
- 8712: 35,-14
- 8713: 35,-14
- 8714: 35,-11
- 8740: 46,-17
- 9090: -8,-80
- 9091: -3,-80
- 9092: -8,-76
- 9093: -3,-76
- 9107: -5,-79
- 9361: -13,-28
- 9364: -6,-28
- 9478: 5,-28
- 9479: 13,-28
- 9487: -16,-24
- 9857: -5,-71
- 9866: 72,-50
- 9870: 73,-47
- 9872: 69,-41
- 11082: 72,-50
- 15269: 10,-20
- 15270: 17,-17
- 15271: 17,-5
- 15272: 17,2
- 15273: 17,9
- 15274: 17,16
- 15275: 11,23
- 15276: 1,23
- 15277: -6,23
- 15278: -16,23
- 15279: -19,16
- 15280: -19,27
- 15281: -21,29
- 15282: -22,30
- 15283: -19,31
- 15284: -19,34
- 15285: -23,41
- 15286: -19,46
- 15287: -21,47
- 15288: -17,47
- 15289: -19,50
- 15458: -22,48
- 15475: -11,49
- 15476: -6,49
- 15483: -20,57
- 15484: -13,57
- 15485: -6,57
- 15486: 0,57
- 15513: -30,85
- 15514: -30,92
- 15518: -30,79
- 15521: -30,72
- 15532: -12,92
- 15533: -12,85
- 15534: -12,79
- 15535: -12,72
- 15536: -13,68
- 15537: -20,68
- 15538: -26,68
- 15539: -31,68
- 15540: -19,61
- 15541: -5,61
- 15542: -6,68
- 15543: 0,68
- 15544: 5,68
- 15545: 6,72
- 15546: 6,79
- 15583: 21,5
- 15584: 28,5
- 15590: 28,-11
- 15591: 21,-11
- 15616: -38,5
- 15617: -33,5
- 15618: -27,5
- 15619: -19,2
- 15620: -19,-5
- 15621: -19,-17
- 15631: -8,-20
- 15632: 3,-20
- 15638: -15,-20
- 15641: 44,-20
- 15642: 49,-20
- 15706: -1,-61
- 15707: -1,-55
- 15708: -1,-50
- 15709: -1,-42
- 15710: -1,-35
- 15711: -1,-27
- 15881: -42,9
- 15882: -42,14
- 15883: -42,20
- 16228: 96,6
- 19389: -15,-9
- 19393: -9,-9
- 19394: -3,-9
- 19395: 4,-9
- 19396: 10,-9
- 20256: -19,9
- 20495: 34,-14
- 20498: 35,-15
- - node:
- color: '#0A6AB6FF'
- id: BrickTileWhiteLineE
- decals:
- 902: 72,-45
- - node:
- color: '#80C71FFF'
- id: BrickTileWhiteLineE
- decals:
- 665: -28,81
- 666: -28,80
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteLineE
- decals:
- 4102: 27,66
- 4104: 24,66
- 16233: 97,-3
- 16238: 96,-3
- 18406: -46,22
- 18415: -51,21
- 18425: -46,19
- 18426: -46,20
- 18427: -46,21
- 18431: -54,33
- 18432: -54,34
- 18436: -55,38
- 18438: -55,35
- 18470: -47,37
- 18471: -47,38
- 18472: -47,39
- 18473: -47,40
- 18480: -45,51
- 18485: -46,52
- 18486: -46,53
- 18487: -46,54
- 18488: -46,55
- 18493: -46,57
- 18507: -46,50
- 18508: -46,49
- 18509: -46,48
- 18510: -46,47
- 18511: -46,47
- 18512: -46,46
- 18513: -46,43
- 18516: -51,41
- 18546: -58,46
- 18547: -58,47
- 18548: -58,48
- 18549: -58,49
- 18550: -58,50
- 18551: -58,51
- 18552: -58,52
- 18554: -58,53
- 18567: -61,57
- 18581: -61,48
- 18582: -61,50
- 18651: -53,22
- 18652: -53,23
- 18656: -56,24
- 18657: -56,23
- 18664: -53,20
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteLineE
- decals:
- 9887: 5,-26
- 9888: 5,-26
- 9891: 5,-25
- 9892: 18,-25
- 9893: 18,-26
- 9894: 18,-29
- 9895: 18,-30
- 9896: 18,-31
- 9897: 18,-32
- 9898: 18,-33
- 9926: 15,-26
- 9927: 15,-25
- 10037: 28,-38
- 10038: 28,-39
- 10039: 28,-42
- 10040: 28,-43
- 10041: 28,-45
- 10042: 28,-46
- 10043: 28,-47
- 10044: 28,-48
- 10045: 28,-48
- 10046: 28,-49
- 10047: 28,-51
- 10048: 28,-52
- 10081: 19,-36
- 10082: 19,-35
- 10083: 19,-34
- 10091: 15,-35
- 10096: 15,-31
- 10113: 9,-36
- 10114: 9,-34
- 10116: 15,-35
- 10154: 25,-39
- 10155: 25,-40
- 10156: 19,-39
- 10157: 19,-40
- 10163: 25,-44
- 10225: 10,-35
- 10226: 21,-35
- 10227: 30,-35
- 10228: 26,-40
- 10229: 26,-41
- 10230: 26,-43
- 10231: 26,-44
- 10232: 26,-42
- 10233: 26,-47
- 10234: 26,-48
- 10235: 26,-49
- 10236: 26,-50
- 10237: 26,-50
- 10238: 26,-51
- 10239: 16,-40
- 10240: 16,-41
- 10241: 16,-43
- 10242: 16,-43
- 10243: 16,-45
- 10244: 16,-34
- 10245: 16,-34
- 10246: 16,-32
- 10247: 16,-32
- 10248: 16,-31
- 10249: 16,-31
- 10250: 16,-33
- 10289: 18,-46
- 10290: 18,-45
- 10291: 18,-43
- 10292: 18,-42
- 10293: 18,-41
- 10294: 18,-38
- 10299: 16,-44
- 10301: 15,-44
- 10304: 15,-39
- 10305: 15,-40
- 10348: 38,-41
- 10349: 38,-40
- 10350: 38,-39
- 10377: 29,-40
- 10397: 31,-40
- 10423: 23,-29
- 10425: 19,-28
- 10426: 19,-27
- 10465: 32,-26
- 10466: 32,-25
- 10480: 28,-41
- 10511: 24,-48
- 10512: 24,-47
- 10547: 19,-44
- 10552: 24,-45
- 10557: 34,-51
- 10558: 34,-51
- 10559: 34,-50
- 10560: 34,-48
- 10561: 34,-48
- 10562: 34,-48
- 10563: 34,-49
- 10564: 34,-49
- 10565: 34,-52
- 10574: 31,-51
- 10575: 31,-49
- 10576: 31,-49
- 10606: 31,-53
- 10607: 31,-52
- 10608: 31,-50
- 10609: 31,-48
- 10617: 29,-50
- 10713: 6,-44
- 10721: 10,-46
- 10722: 10,-45
- 10723: 10,-44
- 10737: 1,-44
- 10756: 13,-47
- 10758: 14,-46
- 10759: 14,-45
- 11020: 49,-34
- 11021: 49,-35
- 11023: 42,-33
- 11024: 42,-33
- 15737: 16,-42
- 20005: 4,64
- 20012: 7,63
- 20013: 7,64
- 20512: 22,-28
- 20513: 22,-27
- 20514: 22,-26
- 20524: 26,-28
- 20534: 30,-31
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteLineE
- decals:
- 3080: -26,49
- 3081: -26,50
- 3094: -32,45
- 3117: -28,54
- 3120: -28,52
- 3123: -26,51
- 3130: -31,53
- 3131: -31,52
- 3132: -31,51
- 3133: -31,50
- 3134: -31,49
- 3135: -31,47
- 3136: -31,48
- 3137: -33,53
- 3138: -33,52
- 3139: -33,51
- 3140: -33,50
- 3141: -33,49
- 3142: -33,47
- 3143: -33,48
- 3162: -29,50
- 3163: -29,49
- 3164: -29,48
- 3165: -29,47
- 3200: -36,49
- 3204: -37,48
- 3205: -37,47
- 3208: -38,46
- 3209: -38,45
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteLineE
- decals:
- 5327: 27,28
- 5328: 27,30
- 5391: 43,29
- 5397: 37,30
- 5424: 36,35
- 11834: -24,-30
- 11835: -24,-30
- 11836: -24,-29
- 11837: -24,-29
- 11838: -24,-28
- 11839: -24,-27
- 11840: -24,-27
- 11841: -24,-26
- 11876: -30,-35
- 11877: -30,-35
- 11878: -19,-35
- 11881: -15,-53
- 11882: -15,-53
- 11883: -15,-52
- 11884: -15,-52
- 11885: -15,-51
- 11886: -15,-51
- 11887: -15,-50
- 11888: -15,-50
- 11889: -15,-49
- 11890: -15,-49
- 11891: -15,-48
- 11892: -15,-48
- 11893: -15,-47
- 11894: -15,-47
- 11895: -15,-43
- 11896: -15,-42
- 11897: -15,-41
- 11898: -15,-41
- 11899: -15,-40
- 11900: -15,-39
- 11901: -15,-39
- 11964: -21,-34
- 11965: -21,-35
- 11966: -21,-36
- 12045: -13,-26
- 12046: -13,-25
- 12047: -13,-25
- 12061: -11,-35
- 12062: -11,-35
- 12063: -11,-34
- 12089: -4,-31
- 12090: -5,-33
- 12091: -5,-34
- 12206: -13,-38
- 12207: -13,-38
- 12208: -13,-39
- 12209: -13,-40
- 12210: -13,-42
- 12211: -13,-43
- 12212: -13,-44
- 12224: -16,-40
- 12290: -33,-45
- 12291: -33,-44
- 12292: -33,-44
- 12293: -33,-43
- 12294: -33,-42
- 12295: -33,-41
- 12322: -31,-31
- 12323: -31,-30
- 12324: -31,-29
- 12325: -31,-29
- 12326: -31,-28
- 12327: -31,-28
- 12328: -31,-27
- 12329: -31,-27
- 12489: -22,-25
- 12490: -22,-27
- 12491: -22,-28
- 12492: -22,-29
- 12493: -22,-30
- 12494: -22,-32
- 12596: -26,-41
- 12597: -26,-40
- 12598: -26,-39
- 12611: -30,-41
- 12612: -30,-40
- 12613: -30,-39
- 12624: -13,-46
- 12625: -13,-47
- 12626: -13,-48
- 12627: -13,-49
- 12628: -13,-51
- 12629: -13,-52
- 12630: -13,-53
- 12642: -18,-51
- 12662: -21,-58
- 12669: -13,-57
- 12670: -13,-58
- 12690: -4,-52
- 12691: -4,-51
- 12692: -4,-50
- 12693: -4,-49
- 12694: -4,-47
- 12703: -12,-50
- 12727: -21,-44
- 12728: -21,-43
- 12729: -21,-42
- 12730: -21,-41
- 12731: -21,-40
- 13035: -9,-34
- 13036: -9,-33
- 13037: -9,-32
- - node:
- color: '#B240B4FF'
- id: BrickTileWhiteLineE
- decals:
- 682: -21,-57
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteLineE
- decals:
- 11232: 25,-56
- 11236: 28,-57
- 11250: 36,-61
- 11251: 36,-64
- 11252: 36,-66
- 11253: 36,-67
- 11254: 36,-68
- 11255: 36,-69
- 11290: 41,-63
- 11301: 42,-62
- 11303: 37,-62
- 11307: 33,-61
- 11320: 37,-70
- 11332: 39,-73
- 11333: 39,-74
- 11351: 33,-68
- 11377: 31,-68
- 11378: 28,-68
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteLineE
- decals:
- 7996: 64,-4
- 19852: 70,14
- 19853: 70,15
- 19867: 63,-5
- 19873: 66,-4
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteLineE
- decals:
- 4024: 12,68
- 4025: 12,69
- 4030: 9,68
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteLineE
- decals:
- 4605: 10,29
- 4614: 1,29
- 4663: 3,29
- 4664: 3,28
- 4674: 11,28
- 4687: 10,27
- 4696: 17,31
- 4697: 17,30
- 4698: 17,29
- 4699: 17,28
- 4700: 17,27
- 4713: 12,27
- 4723: 15,31
- 4724: 15,30
- 4725: 15,29
- 4772: 7,43
- 4773: 7,42
- 4774: 7,42
- 4775: 7,41
- 4776: 7,40
- 4802: 11,44
- 4820: 12,36
- 4821: 12,35
- 4842: 22,35
- 4843: 22,37
- 4862: 12,43
- 4863: 12,45
- 4894: 27,27
- 4895: 27,28
- 4896: 27,29
- 4897: 27,30
- 4921: 19,28
- 4922: 19,29
- 4923: 19,30
- 4940: 20,29
- 4946: 24,29
- 4971: 23,36
- 4983: 29,35
- 4984: 29,36
- 4985: 29,37
- 4990: 25,36
- 4991: 25,37
- 4992: 25,35
- 5011: 14,36
- 5028: 29,41
- 5029: 29,42
- 5030: 29,43
- 5053: 3,35
- 5101: 32,50
- 5102: 38,50
- 5113: 33,49
- 5116: 33,51
- 5133: 25,47
- 5134: 25,46
- 5135: 25,45
- 5136: 25,45
- 5137: 25,44
- 5138: 25,44
- 5139: 25,43
- 5140: 25,42
- 5144: 25,53
- 5174: 13,51
- 5184: 14,53
- 5185: 14,52
- 5231: 18,51
- 5232: 18,49
- 5233: 18,47
- 5234: 18,45
- 5235: 15,45
- 5236: 15,43
- 5237: 15,41
- 5238: 18,41
- 5239: 18,43
- 5402: 37,30
- 5417: 36,36
- 11766: -11,-82
- 11767: -11,-81
- 11768: -11,-80
- - node:
- color: '#DABC8BFF'
- id: BrickTileWhiteLineE
- decals:
- 4221: -37,53
- 9954: 8,-33
- 9955: 8,-32
- 9956: 8,-31
- 9969: 8,-35
- 9971: 2,-35
- 9985: 4,-32
- 9986: 4,-33
- 9987: 4,-34
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteLineE
- decals:
- 17422: -52,4
- 17423: -52,5
- 17424: -52,6
- 17444: -49,2
- 17446: -49,0
- 17469: -62,1
- 17511: -52,16
- 17521: -65,1
- 17522: -62,1
- 17524: -56,-7
- 17525: -56,-9
- 17529: -62,-7
- 17537: -56,-9
- 17539: -57,-8
- 17569: -52,-5
- 17572: -52,-11
- 17573: -52,-13
- 17574: -52,-13
- 17575: -52,-12
- 17576: -52,-14
- 17577: -52,-16
- 17578: -52,-17
- 17588: -62,-17
- 17589: -60,-17
- 17599: -55,-13
- 17600: -55,-14
- 17613: -51,-15
- 17635: -47,-14
- 17636: -47,-15
- 17637: -47,-16
- 17667: -51,-15
- 17717: -47,13
- 17720: -50,10
- 17732: -60,10
- 17740: -67,15
- 17775: -79,14
- 17850: -57,18
- 17886: -45,-7
- 17887: -45,-8
- 17888: -45,-9
- 17893: -50,-9
- 17894: -50,-8
- 17895: -50,-7
- 17900: -56,-7
- 17901: -56,-9
- 17941: -74,-8
- 17942: -74,-7
- 17943: -74,-6
- 17956: -75,-9
- 17961: -11,-80
- 17962: -11,-81
- 17963: -11,-82
- 17978: 5,92
- 17981: 10,90
- 17993: 7,89
- 17994: 7,88
- 18006: 11,85
- 18007: 11,86
- 18020: 9,80
- 18021: 9,81
- 18024: 12,81
- 18025: 12,80
- 18026: 12,79
- 18027: 12,77
- 18028: 12,76
- 18029: 12,75
- 18030: 12,74
- 18041: 9,75
- 18042: 9,76
- 18043: 9,80
- 18044: 9,81
- 18070: -62,9
- 18071: -62,8
- 18072: -62,7
- 18073: -62,6
- 18138: -60,10
- 18144: -66,-3
- 18145: -66,-2
- 18146: -66,-1
- 18147: -66,0
- 18178: -65,1
- 18179: -65,1
- 18181: -75,0
- 18183: -75,0
- 18213: -70,11
- 18214: -74,11
- 18222: -79,14
- 18226: -83,14
- 18263: -77,3
- 18264: -77,4
- 18265: -77,5
- 18266: -77,6
- 18267: -77,7
- 18280: -77,9
- 18281: -77,10
- 18282: -77,11
- 18296: -80,0
- 18305: -76,-2
- 18306: -76,-1
- 18310: -75,0
- 18350: -67,-11
- 18351: -67,-12
- 18368: -52,17
- 18717: -55,-2
- 18718: -55,-3
- 20685: -49,-2
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineE
- decals:
- 889: 75,-46
- 890: 75,-43
- 1207: 49,-16
- 1208: 49,-15
- 2256: -20,48
- 2257: -20,47
- 2258: -20,46
- 2259: -20,51
- 2260: -20,52
- 2261: -23,50
- 2262: -23,49
- 2263: -23,48
- 2289: -18,47
- 2290: -18,48
- 2291: -18,49
- 2292: -18,50
- 2293: -18,51
- 2316: -20,27
- 2317: -20,28
- 2318: -20,29
- 2319: -20,31
- 2320: -20,32
- 2321: -23,31
- 2322: -23,33
- 2323: -23,32
- 2324: -23,30
- 2325: -20,34
- 2326: -20,35
- 2327: -20,36
- 2470: -24,41
- 2573: -29,31
- 2908: -9,53
- 2979: -7,49
- 2980: -12,49
- 3013: -8,33
- 3022: -5,33
- 3224: -14,57
- 3229: -20,61
- 3230: -20,62
- 3231: -20,63
- 3294: -14,68
- 3295: -21,68
- 3296: -21,57
- 3297: -7,57
- 3298: -6,61
- 3299: -6,62
- 3300: -6,63
- 3301: -6,64
- 3317: -7,68
- 3437: -13,75
- 3438: -13,74
- 3439: -13,73
- 3440: -13,72
- 3452: -13,79
- 3453: -13,80
- 3454: -13,81
- 3455: -13,82
- 3456: -13,92
- 3457: -13,93
- 3458: -13,94
- 3459: -13,95
- 3463: -13,88
- 3464: -13,87
- 3465: -13,86
- 3466: -13,86
- 3467: -13,85
- 3473: -31,79
- 3474: -31,80
- 3475: -31,81
- 3476: -31,82
- 3477: -31,85
- 3478: -31,86
- 3479: -31,88
- 3480: -31,92
- 3481: -31,93
- 3482: -31,94
- 3483: -31,95
- 3484: -31,75
- 3485: -31,74
- 3486: -31,73
- 3487: -31,72
- 3518: -32,68
- 3731: -1,68
- 3732: 4,68
- 3820: 5,72
- 3821: 5,73
- 3822: 5,74
- 3823: 5,75
- 3882: 5,82
- 3883: 5,81
- 3884: 5,80
- 3885: 5,79
- 3989: -1,57
- 4036: 16,70
- 4037: 16,71
- 4046: 23,70
- 4371: -23,22
- 4372: -23,22
- 5428: 16,16
- 5429: 16,17
- 5430: 16,18
- 5431: 16,19
- 5441: 16,9
- 5442: 16,10
- 5443: 16,11
- 5444: 16,12
- 5449: 16,2
- 5450: 16,3
- 5451: 16,5
- 5452: 16,4
- 5453: 16,-2
- 5454: 16,-3
- 5455: 16,-4
- 5456: 16,-5
- 5457: -20,-2
- 5458: -20,-3
- 5459: -20,-4
- 5460: -20,-5
- 5461: -20,2
- 5462: -20,3
- 5463: -20,4
- 5464: -20,5
- 5512: -27,68
- 5801: -39,5
- 5802: -34,5
- 5803: -28,5
- 5880: -35,26
- 6515: -20,-17
- 6516: -20,-16
- 6517: -20,-15
- 6518: -20,-14
- 6519: -20,-13
- 6520: -20,-12
- 6615: 16,-17
- 6616: 16,-15
- 6617: 16,-14
- 6618: 16,-12
- 6619: 16,-13
- 6620: 16,-16
- 6640: -3,-16
- 6956: -32,-9
- 6957: -32,-8
- 6958: -32,-7
- 6959: -32,-6
- 6960: -32,-5
- 6961: -32,-4
- 6975: -32,-1
- 6976: -32,0
- 6977: -32,0
- 6978: -32,2
- 7018: -28,-12
- 7019: -28,-13
- 7020: -28,-14
- 7021: -28,-15
- 7022: -28,-16
- 7048: -35,-15
- 7049: -35,-14
- 7050: -35,-13
- 7051: -35,-12
- 7321: -16,-20
- 7322: -9,-20
- 7323: 2,-20
- 7324: 9,-20
- 7482: 20,5
- 7549: 27,5
- 8409: 56,-15
- 8410: 56,-14
- 8411: 56,-13
- 8416: 56,-28
- 8417: 56,-27
- 8418: 56,-26
- 8428: 58,-27
- 8429: 60,-27
- 8430: 60,-14
- 8431: 58,-14
- 8637: 27,-11
- 8643: 20,-11
- 8644: 33,-13
- 8645: 33,-12
- 8646: 33,-12
- 8647: 33,-11
- 8648: 33,-10
- 8835: 48,-20
- 8836: 48,-20
- 9086: -9,-76
- 9087: -9,-80
- 9088: -6,-78
- 9143: 5,-25
- 9144: 5,-26
- 9167: -13,-25
- 9168: -13,-25
- 9169: -13,-26
- 9170: -13,-26
- 9221: -2,-27
- 9222: -2,-26
- 9223: -2,-26
- 9224: -2,-24
- 9225: -2,-25
- 9264: -2,-31
- 9265: -2,-32
- 9266: -2,-33
- 9267: -2,-34
- 9268: -2,-35
- 9348: -4,-24
- 9468: 1,-26
- 9469: 1,-25
- 9481: 14,-24
- 9766: -2,-42
- 9767: -2,-41
- 9768: -2,-41
- 9769: -2,-40
- 9770: -2,-40
- 9771: -2,-39
- 9772: -2,-45
- 9773: -2,-45
- 9774: -2,-46
- 9775: -2,-47
- 9776: -2,-48
- 9777: -2,-49
- 9778: -2,-50
- 9779: -2,-44
- 9780: -2,-44
- 9781: -2,-52
- 9782: -2,-53
- 9783: -2,-54
- 9784: -2,-54
- 9785: -2,-54
- 9786: -2,-55
- 9812: -2,-61
- 9813: -2,-60
- 9814: -2,-59
- 9848: -7,-71
- 9849: -7,-70
- 9850: -7,-69
- 9851: -4,-73
- 9852: -4,-72
- 9860: 74,-50
- 9861: 74,-51
- 11080: 71,-50
- 11081: 71,-50
- 11088: 75,-44
- 11110: 68,-41
- 13151: -43,22
- 15290: -20,50
- 15385: -17,23
- 15386: -7,23
- 15387: 0,23
- 15388: 10,23
- 15512: -31,87
- 15573: -20,64
- 15640: 43,-20
- 15757: -3,-71
- 15761: -3,-70
- 15856: -43,9
- 15857: -43,10
- 15858: -43,11
- 15859: -43,14
- 15860: -43,15
- 15861: -43,15
- 15862: -43,16
- 15863: -43,17
- 15864: -43,20
- 15865: -43,21
- 15894: -9,-79
- 15895: -9,-78
- 15896: -9,-77
- 16135: 95,-4
- 19350: 3,-9
- 19351: 9,-9
- 19352: -4,-9
- 19353: -10,-9
- 19354: -16,-9
- 20476: 34,-11
- 20477: 34,-10
- 20478: 34,-13
- 20479: 34,-14
- 20481: 33,-14
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineE
- decals:
- 4301: -20,16
- 4302: -20,17
- 4303: -20,18
- 4304: -20,19
- 4305: -20,12
- 4306: -20,11
- 4307: -20,10
- 4308: -20,9
- - node:
- color: '#52E5FFFF'
- id: BrickTileWhiteLineN
- decals:
- 564: -10,70
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteLineN
- decals:
- 18408: -46,23
- 18409: -47,23
- 18410: -47,23
- 18411: -48,23
- 18412: -49,23
- 18444: -56,37
- 18448: -55,31
- 18479: -44,51
- 18490: -46,56
- 18517: -48,43
- 18522: -49,42
- 18531: -45,45
- 18535: -48,45
- 18536: -49,45
- 18537: -49,45
- 18538: -50,45
- 18539: -51,45
- 18540: -52,45
- 18541: -53,45
- 18542: -54,45
- 18543: -55,45
- 18544: -57,45
- 18545: -56,45
- 18579: -59,55
- 18600: -56,43
- 18601: -54,43
- 18654: -55,24
- 18655: -54,24
- 18662: -54,19
- 18663: -53,19
- 18666: -52,21
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteLineN
- decals:
- 9876: 6,-27
- 9877: 7,-27
- 9878: 8,-27
- 9879: 9,-27
- 9880: 10,-27
- 9906: 20,-34
- 9907: 22,-34
- 9908: 23,-34
- 9909: 24,-34
- 9910: 25,-34
- 9911: 26,-34
- 9912: 27,-34
- 9913: 28,-34
- 9914: 30,-34
- 9915: 31,-34
- 9916: 32,-34
- 9917: 33,-34
- 9918: 34,-34
- 9919: 35,-34
- 9920: 37,-34
- 9930: 17,-24
- 10084: 16,-37
- 10085: 17,-37
- 10086: 18,-37
- 10107: 13,-34
- 10108: 11,-34
- 10109: 10,-34
- 10146: 26,-37
- 10147: 27,-37
- 10148: 28,-37
- 10149: 17,-48
- 10150: 27,-54
- 10185: 22,-36
- 10186: 23,-36
- 10187: 24,-36
- 10188: 25,-36
- 10189: 26,-36
- 10190: 27,-36
- 10191: 31,-36
- 10192: 32,-36
- 10193: 33,-36
- 10194: 34,-36
- 10195: 34,-36
- 10196: 35,-36
- 10197: 36,-36
- 10198: 27,-45
- 10199: 27,-52
- 10200: 17,-46
- 10201: 17,-35
- 10202: 11,-36
- 10203: 12,-36
- 10204: 13,-36
- 10318: 21,-38
- 10319: 22,-38
- 10320: 23,-38
- 10369: 31,-38
- 10370: 32,-38
- 10371: 33,-38
- 10372: 33,-38
- 10373: 34,-38
- 10374: 35,-38
- 10375: 36,-38
- 10376: 37,-38
- 10378: 37,-43
- 10392: 32,-41
- 10393: 33,-41
- 10394: 34,-41
- 10395: 35,-41
- 10396: 36,-41
- 10469: 29,-28
- 10485: 9,-38
- 10486: 10,-38
- 10487: 11,-38
- 10488: 12,-38
- 10489: 13,-38
- 10502: 20,-46
- 10503: 21,-46
- 10504: 22,-46
- 10505: 23,-46
- 10506: 24,-46
- 10517: 22,-50
- 10540: 21,-43
- 10541: 22,-43
- 10542: 23,-43
- 10603: 31,-47
- 10620: 31,-54
- 10710: 3,-43
- 10711: 5,-43
- 10714: 7,-45
- 10731: 9,-42
- 10747: 4,-48
- 10763: 13,-43
- 11011: 44,-31
- 11012: 47,-31
- 11013: 46,-31
- 11014: 48,-31
- 11015: 48,-31
- 20132: -6,-58
- 20525: 27,-29
- 20526: 28,-29
- 20527: 30,-29
- 20528: 31,-29
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteLineN
- decals:
- 3079: -25,48
- 3092: -32,44
- 3110: -33,54
- 3111: -32,54
- 3112: -31,54
- 3113: -30,54
- 3122: -27,51
- 3166: -32,46
- 3167: -30,46
- 3168: -28,46
- 3198: -38,50
- 3216: -38,44
- 3217: -30,44
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteLineN
- decals:
- 5331: 22,32
- 5333: 24,32
- 5334: 26,32
- 5384: 39,30
- 5385: 40,30
- 5386: 41,30
- 5387: 42,30
- 5396: 38,30
- 5420: 35,33
- 5421: 35,38
- 11849: -23,-31
- 11850: -18,-36
- 11851: -17,-36
- 11852: -17,-36
- 11853: -16,-36
- 11854: -15,-36
- 11855: -14,-36
- 11856: -29,-36
- 11857: -27,-36
- 11858: -28,-36
- 11859: -26,-36
- 11860: -26,-36
- 11861: -24,-36
- 11862: -25,-36
- 11922: -14,-54
- 11923: -14,-44
- 11931: -14,-34
- 11932: -16,-34
- 11933: -17,-34
- 11934: -17,-34
- 11935: -18,-34
- 11936: -19,-34
- 11937: -20,-34
- 11979: -12,-34
- 11980: -31,-34
- 11981: -30,-34
- 11982: -27,-34
- 11983: -27,-34
- 11984: -28,-34
- 11985: -26,-34
- 11986: -25,-34
- 11987: -25,-34
- 12029: -12,-27
- 12030: -11,-27
- 12031: -10,-27
- 12032: -9,-27
- 12033: -9,-27
- 12034: -8,-27
- 12079: -7,-30
- 12080: -8,-30
- 12081: -9,-30
- 12082: -5,-30
- 12193: -7,-37
- 12196: -15,-37
- 12197: -14,-37
- 12198: -13,-37
- 12199: -13,-37
- 12219: -15,-45
- 12220: -14,-45
- 12221: -13,-45
- 12313: -29,-37
- 12314: -24,-37
- 12315: -24,-37
- 12319: -28,-28
- 12338: -30,-32
- 12339: -29,-32
- 12340: -29,-32
- 12341: -28,-32
- 12495: -24,-33
- 12496: -23,-33
- 12497: -22,-33
- 12604: -25,-42
- 12605: -24,-42
- 12606: -29,-42
- 12640: -16,-55
- 12641: -16,-50
- 12664: -19,-56
- 12665: -18,-56
- 12666: -17,-56
- 12667: -15,-56
- 12668: -14,-56
- 12695: -9,-49
- 12696: -8,-49
- 12697: -5,-46
- 12714: -6,-54
- 12724: -19,-45
- 13043: -8,-35
- 13044: -7,-35
- - node:
- color: '#B240B4FF'
- id: BrickTileWhiteLineN
- decals:
- 683: -22,-56
- 684: -23,-56
- 685: -24,-56
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteLineN
- decals:
- 11234: 27,-59
- 11249: 35,-60
- 11266: 39,-60
- 11267: 40,-60
- 11322: 38,-70
- 11323: 39,-70
- 11324: 41,-70
- 11330: 39,-72
- 11372: 28,-67
- 11373: 28,-67
- 11374: 29,-67
- 11375: 30,-67
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteLineN
- decals:
- 19854: 69,16
- 19858: 62,-3
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteLineN
- decals:
- 2911: -11,54
- 2917: -12,51
- 4010: 11,70
- 9824: -38,2
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteLineN
- decals:
- 4591: 4,25
- 4592: 5,25
- 4593: 7,25
- 4594: 8,25
- 4595: 6,31
- 4622: 4,32
- 4628: 3,37
- 4629: 4,37
- 4630: 9,37
- 4640: 9,32
- 4647: 5,31
- 4648: 3,31
- 4665: 4,27
- 4666: 5,27
- 4667: 6,27
- 4668: 7,27
- 4669: 8,27
- 4675: 14,28
- 4691: 12,28
- 4692: 13,28
- 4704: 14,25
- 4705: 15,25
- 4706: 16,25
- 4708: 16,32
- 4714: 13,26
- 4715: 14,26
- 4716: 15,26
- 4717: 16,26
- 4734: 13,39
- 4735: 14,39
- 4736: 15,39
- 4737: 15,39
- 4738: 16,39
- 4739: 17,39
- 4740: 17,39
- 4741: 19,39
- 4742: 20,39
- 4743: 17,39
- 4744: 18,39
- 4763: 5,38
- 4770: 5,43
- 4771: 6,43
- 4778: 10,38
- 4788: 13,33
- 4798: 10,41
- 4818: 15,33
- 4846: 20,33
- 4847: 21,33
- 4855: 14,46
- 4872: 22,32
- 4873: 23,32
- 4874: 24,32
- 4875: 25,32
- 4876: 26,32
- 4909: 21,25
- 4913: 22,27
- 4914: 23,27
- 4915: 23,27
- 4916: 24,27
- 4930: 26,27
- 4931: 20,27
- 4942: 22,28
- 4943: 24,28
- 4949: 26,28
- 4950: 20,28
- 4964: 23,29
- 4987: 25,38
- 4988: 26,38
- 4989: 27,38
- 4993: 26,34
- 4994: 27,34
- 5013: 16,34
- 5014: 17,34
- 5015: 18,34
- 5038: 28,44
- 5040: 28,39
- 5054: 4,34
- 5055: 5,34
- 5056: 6,34
- 5057: 7,34
- 5058: 8,34
- 5059: 9,34
- 5064: 6,37
- 5065: 7,37
- 5066: 8,37
- 5074: 27,52
- 5075: 28,52
- 5076: 29,52
- 5077: 30,52
- 5078: 31,52
- 5079: 32,52
- 5080: 33,52
- 5081: 34,52
- 5082: 36,52
- 5083: 37,52
- 5084: 37,52
- 5085: 38,52
- 5142: 35,52
- 5143: 26,52
- 5157: 11,54
- 5158: 12,54
- 5181: 16,54
- 5188: 18,54
- 5189: 19,54
- 5190: 20,54
- 5191: 20,54
- 5192: 22,54
- 5193: 23,54
- 5194: 21,54
- 5243: 16,40
- 5244: 17,40
- 5245: 19,40
- 5246: 20,40
- 5247: 21,40
- 5248: 22,40
- 5249: 22,42
- 5250: 21,42
- 5251: 19,42
- 5252: 20,42
- 5253: 17,42
- 5254: 16,42
- 5255: 16,44
- 5256: 17,44
- 5257: 19,44
- 5258: 20,44
- 5259: 21,44
- 5260: 22,44
- 5261: 22,46
- 5262: 21,46
- 5263: 20,46
- 5264: 19,46
- 5265: 19,48
- 5266: 20,48
- 5267: 21,48
- 5268: 22,48
- 5269: 22,50
- 5270: 21,50
- 5271: 20,50
- 5280: 19,50
- 5400: 39,30
- 5401: 41,30
- 11770: -11,-83
- - node:
- color: '#DABC8BFF'
- id: BrickTileWhiteLineN
- decals:
- 4212: -38,54
- 9957: 7,-30
- 9958: 6,-30
- 9959: 4,-30
- 9960: 3,-30
- 9988: 5,-35
- 9989: 6,-35
- 10007: 5,-37
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteLineN
- decals:
- 17414: -55,2
- 17415: -54,2
- 17416: -53,3
- 17417: -52,3
- 17418: -53,7
- 17419: -52,7
- 17430: -53,7
- 17431: -52,7
- 17432: -53,3
- 17433: -52,3
- 17436: -51,2
- 17437: -50,2
- 17448: -50,-1
- 17464: -58,-5
- 17470: -60,2
- 17471: -59,2
- 17472: -58,2
- 17473: -57,2
- 17474: -56,2
- 17490: -48,15
- 17491: -49,15
- 17492: -50,15
- 17493: -51,15
- 17508: -57,15
- 17509: -56,15
- 17527: -58,-11
- 17546: -60,-6
- 17547: -59,-6
- 17558: -60,-12
- 17559: -59,-12
- 17560: -57,-12
- 17561: -56,-12
- 17562: -55,-7
- 17586: -61,-17
- 17619: -56,-19
- 17620: -54,-19
- 17632: -49,-13
- 17633: -48,-13
- 17724: -58,16
- 17733: -62,15
- 17734: -63,15
- 17735: -64,15
- 17736: -65,15
- 17737: -66,15
- 17754: -77,16
- 17755: -76,16
- 17756: -75,16
- 17757: -74,16
- 17758: -73,16
- 17759: -71,16
- 17760: -70,16
- 17761: -69,16
- 17762: -72,16
- 17780: -77,12
- 17781: -72,13
- 17783: -77,12
- 17851: -60,19
- 17852: -59,19
- 17853: -58,19
- 17882: -48,-6
- 17883: -47,-6
- 17884: -46,-6
- 17915: -66,-6
- 17916: -65,-6
- 17917: -64,-6
- 17918: -72,-6
- 17919: -70,-6
- 17920: -68,-6
- 17921: -73,-6
- 17932: -71,-9
- 17933: -70,-9
- 17934: -69,-9
- 17947: -75,-6
- 17948: -76,-6
- 17958: -71,-9
- 17959: -70,-9
- 17960: -69,-9
- 17968: -11,-83
- 17973: 10,89
- 17974: 5,91
- 17976: 6,86
- 17989: 10,89
- 17990: 6,90
- 18022: 11,82
- 18039: 12,73
- 18081: -63,10
- 18082: -64,10
- 18148: -72,2
- 18149: -71,2
- 18150: -70,2
- 18151: -69,2
- 18152: -68,2
- 18153: -67,2
- 18154: -67,2
- 18174: -71,-5
- 18175: -69,-5
- 18206: -73,12
- 18207: -71,12
- 18217: -72,9
- 18219: -72,13
- 18223: -82,14
- 18224: -81,14
- 18225: -80,14
- 18239: -77,12
- 18270: -77,2
- 18287: -77,8
- 18288: -77,12
- 18289: -78,1
- 18304: -76,-3
- 18334: -72,-10
- 18335: -68,-10
- 18339: -71,-9
- 18340: -70,-9
- 18341: -69,-9
- 18711: -60,-1
- 18712: -59,-1
- 18713: -58,-1
- 18714: -57,-1
- 18715: -56,-1
- 18769: -55,15
- 18770: -54,15
- 18771: -53,15
- 18772: -52,15
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineN
- decals:
- 891: 74,-42
- 892: 72,-42
- 893: 71,-42
- 1198: 45,-14
- 1199: 48,-14
- 2277: -19,49
- 2278: -19,45
- 2287: -21,46
- 2288: -17,46
- 2345: -19,33
- 2346: -19,26
- 2350: -19,30
- 2418: -21,28
- 2471: -23,40
- 2596: -31,29
- 2903: -12,51
- 2910: -10,54
- 2912: -12,54
- 2975: -11,48
- 2976: -10,48
- 2977: -6,48
- 2978: -5,48
- 3021: -6,34
- 3221: -13,56
- 3222: -12,56
- 3223: -11,56
- 3237: -19,60
- 3270: -16,58
- 3271: -15,58
- 3272: -14,58
- 3273: -13,58
- 3285: -20,67
- 3286: -19,67
- 3287: -18,67
- 3288: -12,67
- 3289: -13,67
- 3290: -11,67
- 3303: -5,60
- 3309: -6,67
- 3310: -5,67
- 3311: -4,67
- 3322: -6,56
- 3323: -5,56
- 3324: -4,56
- 3325: -20,56
- 3326: -19,56
- 3327: -18,56
- 3435: -12,71
- 3441: -12,78
- 3460: -12,91
- 3461: -12,84
- 3508: -30,71
- 3509: -30,78
- 3510: -30,84
- 3511: -30,91
- 3515: -31,67
- 3516: -30,67
- 3517: -29,67
- 3724: 0,67
- 3725: 1,67
- 3726: 1,67
- 3727: 2,67
- 3728: 5,67
- 3729: 6,67
- 3730: 7,67
- 3819: 6,71
- 3887: 6,78
- 3985: 0,56
- 3986: 1,56
- 3987: 2,56
- 4047: 17,71
- 4048: 18,71
- 4049: 19,71
- 4050: 20,71
- 4051: 21,71
- 4053: 22,71
- 4070: 18,68
- 4071: 19,68
- 4072: 21,68
- 4073: 22,68
- 4375: -24,23
- 5445: 17,15
- 5446: 17,8
- 5484: -19,1
- 5485: 17,-6
- 5486: 17,1
- 5509: -26,67
- 5510: -25,67
- 5511: -24,67
- 5718: -19,-6
- 5772: -38,4
- 5773: -38,4
- 5774: -37,4
- 5775: -36,4
- 5776: -33,4
- 5777: -32,4
- 5778: -31,4
- 5779: -27,4
- 5780: -26,4
- 5781: -25,4
- 5782: -23,4
- 5783: -24,4
- 5784: -24,4
- 5863: -32,28
- 6528: -19,-18
- 6608: 17,-18
- 6631: -2,-14
- 6632: -1,-14
- 6633: 0,-14
- 6634: 1,-14
- 6701: 3,-21
- 6702: 4,-21
- 6703: 5,-21
- 6704: 6,-21
- 6705: 10,-21
- 6706: 12,-21
- 6707: 11,-21
- 6708: 13,-21
- 6709: -5,-21
- 6710: -6,-21
- 6711: -6,-21
- 6712: -7,-21
- 6713: -7,-21
- 6714: -8,-21
- 6715: -8,-21
- 6716: -12,-21
- 6717: -12,-21
- 6718: -13,-21
- 6719: -14,-21
- 6720: -14,-21
- 6721: -15,-21
- 6722: -15,-21
- 6954: -33,-10
- 6955: -32,-10
- 6964: -31,-2
- 6965: -30,-2
- 6966: -29,-2
- 6967: -28,-2
- 6968: -27,-2
- 6969: -26,-2
- 6970: -26,-2
- 6971: -23,-2
- 6972: -22,-2
- 6973: -22,-2
- 6974: -25,-2
- 7012: -31,-11
- 7013: -30,-11
- 7014: -29,-11
- 7015: -34,-11
- 7043: -28,-17
- 7044: -34,-16
- 7045: -33,-16
- 7046: -32,-16
- 7047: -31,-16
- 7266: -25,-15
- 7267: -24,-15
- 7272: -25,-15
- 7273: -24,-15
- 7279: -24,-19
- 7477: 21,4
- 7478: 22,4
- 7479: 23,4
- 7480: 24,4
- 7544: 28,4
- 7545: 29,4
- 7546: 30,4
- 7547: 31,4
- 8451: 58,-17
- 8452: 59,-17
- 8453: 60,-17
- 8454: 58,-30
- 8455: 59,-30
- 8456: 60,-30
- 8594: 39,-7
- 8595: 40,-7
- 8625: 22,-12
- 8626: 23,-12
- 8627: 23,-12
- 8628: 24,-12
- 8629: 24,-12
- 8630: 21,-12
- 8631: 28,-12
- 8632: 28,-12
- 8633: 29,-12
- 8634: 29,-12
- 8635: 30,-12
- 8636: 30,-12
- 8655: 35,-16
- 8656: 36,-16
- 8657: 36,-16
- 8658: 37,-16
- 8659: 37,-16
- 8660: 39,-16
- 8661: 39,-16
- 8662: 38,-16
- 8663: 38,-16
- 8742: 46,-18
- 8743: 47,-18
- 8747: 48,-14
- 8748: 48,-14
- 8749: 47,-14
- 8821: 44,-21
- 8822: 44,-21
- 8823: 44,-21
- 8824: 45,-21
- 8825: 46,-21
- 8826: 46,-21
- 8827: 47,-21
- 8828: 49,-21
- 8829: 50,-21
- 8830: 51,-21
- 8831: 51,-21
- 8832: 51,-21
- 8833: 52,-21
- 8834: 52,-21
- 9056: -2,-77
- 9057: -1,-77
- 9058: -7,-77
- 9059: -8,-77
- 9060: -8,-81
- 9061: -7,-81
- 9062: -6,-81
- 9063: -3,-81
- 9064: -2,-81
- 9065: -1,-81
- 9147: 6,-27
- 9148: 6,-27
- 9149: 7,-27
- 9150: 9,-27
- 9151: 9,-27
- 9152: 10,-27
- 9153: 10,-27
- 9154: 8,-27
- 9155: -12,-27
- 9156: -11,-27
- 9157: -10,-27
- 9158: -9,-27
- 9159: -8,-27
- 9230: -1,-28
- 9270: -1,-36
- 9808: -1,-43
- 9809: -1,-51
- 9810: -1,-56
- 9811: -1,-62
- 9839: -5,-69
- 9840: -4,-69
- 9846: -5,-74
- 9847: -4,-74
- 9854: -6,-69
- 9855: -3,-69
- 9873: 69,-41
- 9940: 5,-29
- 9941: 11,-29
- 9942: 13,-29
- 11084: 73,-48
- 11085: 73,-48
- 11396: 40,-66
- 11811: -6,-29
- 11812: -13,-29
- 11813: -15,-29
- 11816: -15,-29
- 11817: -13,-29
- 13889: -41,-64
- 15395: 11,22
- 15396: 12,22
- 15397: 13,22
- 15398: 14,22
- 15399: 4,22
- 15400: 3,22
- 15401: 2,22
- 15402: 1,22
- 15403: -3,22
- 15404: -4,22
- 15405: -5,22
- 15406: -6,22
- 15407: -13,22
- 15408: -14,22
- 15409: -15,22
- 15410: -15,22
- 15411: -16,22
- 15866: -42,19
- 15867: -42,13
- 15868: -42,8
- 16125: 95,-2
- 16207: 92,-3
- 16208: 93,-3
- 16209: 94,-3
- 16223: 96,7
- 16229: 96,5
- 19303: -3,-10
- 19304: -2,-10
- 19305: -2,-10
- 19306: 0,-10
- 19307: 0,-10
- 19308: -1,-10
- 19309: 1,-10
- 19310: 4,-10
- 19311: 5,-10
- 19312: 6,-10
- 19313: 7,-10
- 19314: 10,-10
- 19315: 11,-10
- 19316: 12,-10
- 19317: 13,-10
- 19318: -9,-10
- 19319: -8,-10
- 19320: -7,-10
- 19321: -7,-10
- 19322: -6,-10
- 19323: -12,-10
- 19324: -13,-10
- 19325: -14,-10
- 19326: -15,-10
- 20466: 35,-15
- 20467: 36,-15
- 20468: 37,-15
- 20469: 38,-15
- 20470: 39,-15
- 20471: 35,-12
- 20472: 36,-12
- 20473: 37,-12
- 20474: 38,-12
- 20475: 39,-12
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineN
- decals:
- 4300: -19,15
- 4309: -19,8
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteLineS
- decals:
- 18414: -50,21
- 18421: -48,18
- 18422: -47,18
- 18423: -46,18
- 18447: -55,39
- 18467: -50,36
- 18468: -49,36
- 18469: -48,36
- 18477: -44,51
- 18478: -44,51
- 18491: -46,56
- 18492: -46,58
- 18515: -48,43
- 18528: -47,44
- 18529: -46,44
- 18533: -45,44
- 18578: -59,55
- 18587: -59,44
- 18588: -58,44
- 18589: -57,44
- 18590: -55,44
- 18591: -52,44
- 18592: -51,44
- 18593: -50,44
- 18594: -49,44
- 18599: -53,44
- 18658: -55,23
- 18665: -52,21
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteLineS
- decals:
- 9881: 6,-24
- 9882: 7,-24
- 9883: 8,-24
- 9884: 9,-24
- 9885: 9,-24
- 9886: 10,-24
- 10021: 20,-36
- 10022: 21,-36
- 10023: 22,-36
- 10024: 23,-36
- 10025: 24,-36
- 10026: 25,-36
- 10027: 29,-36
- 10028: 30,-36
- 10029: 31,-36
- 10030: 33,-36
- 10031: 32,-36
- 10032: 34,-36
- 10033: 35,-36
- 10034: 36,-36
- 10035: 37,-36
- 10095: 12,-33
- 10101: 10,-36
- 10102: 11,-36
- 10103: 12,-36
- 10104: 13,-36
- 10137: 29,-33
- 10138: 36,-33
- 10139: 21,-33
- 10140: 16,-37
- 10141: 17,-37
- 10142: 18,-37
- 10143: 26,-37
- 10144: 27,-37
- 10145: 28,-37
- 10205: 22,-34
- 10206: 23,-34
- 10207: 24,-34
- 10208: 26,-34
- 10209: 27,-34
- 10210: 25,-34
- 10211: 31,-34
- 10212: 33,-34
- 10213: 34,-34
- 10214: 36,-34
- 10215: 34,-34
- 10216: 35,-34
- 10217: 32,-34
- 10218: 27,-39
- 10219: 17,-39
- 10220: 17,-30
- 10221: 11,-34
- 10222: 12,-34
- 10223: 12,-34
- 10224: 13,-34
- 10271: 27,-46
- 10321: 21,-41
- 10322: 22,-41
- 10323: 23,-41
- 10358: 37,-45
- 10359: 31,-42
- 10360: 32,-42
- 10361: 33,-42
- 10362: 33,-42
- 10363: 34,-42
- 10364: 35,-42
- 10365: 36,-42
- 10379: 37,-43
- 10386: 32,-39
- 10387: 33,-39
- 10388: 34,-39
- 10389: 35,-39
- 10390: 36,-39
- 10419: 25,-30
- 10422: 31,-30
- 10432: 29,-28
- 10462: 30,-27
- 10463: 30,-27
- 10464: 31,-27
- 10492: 10,-41
- 10493: 11,-41
- 10494: 12,-41
- 10495: 13,-41
- 10515: 21,-49
- 10516: 23,-49
- 10715: 5,-47
- 10716: 6,-47
- 10717: 7,-47
- 10718: 8,-47
- 10719: 9,-47
- 10726: 2,-44
- 10729: 4,-42
- 10730: 9,-42
- 10761: 13,-45
- 12782: -7,-62
- 20004: 6,66
- 20010: 6,62
- 20128: -6,-62
- 20510: 22,-29
- 20511: 21,-29
- 20532: 27,-32
- 20533: 28,-32
- 20535: 29,-28
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteLineS
- decals:
- 3078: -25,47
- 3083: -26,47
- 3084: -30,46
- 3085: -29,46
- 3086: -28,46
- 3097: -33,46
- 3127: -32,54
- 3128: -30,54
- 3129: -28,51
- 18929: -26,52
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteLineS
- decals:
- 5323: 20,26
- 5324: 23,27
- 5325: 25,26
- 5329: 20,33
- 5392: 39,28
- 5393: 40,28
- 5394: 41,28
- 5395: 42,28
- 11863: -23,-25
- 11864: -29,-34
- 11865: -28,-34
- 11866: -27,-34
- 11867: -26,-34
- 11868: -25,-34
- 11869: -24,-34
- 11870: -18,-34
- 11871: -17,-34
- 11872: -16,-34
- 11873: -15,-34
- 11874: -14,-34
- 11902: -14,-38
- 11903: -14,-38
- 11920: -14,-46
- 11921: -14,-46
- 11924: -15,-33
- 11925: -13,-33
- 11926: -13,-33
- 11967: -20,-36
- 11968: -20,-36
- 11969: -19,-36
- 11970: -19,-36
- 11971: -18,-36
- 11972: -18,-36
- 11973: -17,-36
- 11974: -17,-36
- 11975: -16,-36
- 11976: -16,-36
- 11988: -31,-36
- 11989: -30,-36
- 11990: -28,-36
- 11991: -28,-36
- 11992: -27,-36
- 11993: -26,-36
- 11994: -26,-36
- 11995: -25,-36
- 11996: -25,-36
- 11997: -23,-36
- 11998: -22,-36
- 11999: -22,-36
- 12008: -24,-33
- 12009: -23,-33
- 12010: -22,-33
- 12011: -22,-33
- 12035: -12,-24
- 12036: -11,-24
- 12037: -11,-24
- 12038: -9,-24
- 12039: -9,-24
- 12040: -8,-24
- 12041: -10,-24
- 12055: -15,-33
- 12056: -13,-33
- 12066: -9,-36
- 12067: -9,-36
- 12068: -8,-36
- 12069: -6,-36
- 12072: -6,-29
- 12202: -15,-37
- 12203: -14,-37
- 12204: -14,-37
- 12205: -13,-37
- 12318: -29,-33
- 12330: -30,-26
- 12331: -29,-26
- 12332: -28,-26
- 12333: -28,-30
- 12334: -28,-30
- 12500: -23,-23
- 12599: -25,-38
- 12600: -24,-38
- 12614: -29,-38
- 12631: -15,-54
- 12632: -14,-54
- 12636: -15,-45
- 12637: -14,-45
- 12638: -13,-45
- 12653: -18,-60
- 12654: -17,-60
- 12655: -16,-60
- 12656: -15,-60
- 12657: -14,-60
- 12674: -16,-55
- 12685: -10,-53
- 12686: -9,-53
- 12687: -8,-53
- 12688: -7,-53
- 12689: -5,-53
- 12700: -10,-48
- 12712: -6,-45
- 12725: -20,-44
- 12726: -18,-44
- 12732: -20,-39
- 12733: -19,-39
- 12734: -18,-39
- 13038: -8,-31
- 13039: -7,-31
- - node:
- color: '#B240B4FF'
- id: BrickTileWhiteLineS
- decals:
- 679: -24,-58
- 680: -23,-58
- 681: -22,-58
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteLineS
- decals:
- 11231: 27,-54
- 11257: 35,-72
- 11295: 44,-63
- 11300: 40,-63
- 11327: 38,-71
- 11331: 39,-72
- 11379: 28,-69
- 11380: 30,-69
- 11382: 29,-67
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteLineS
- decals:
- 8003: 61,-2
- 8004: 65,-2
- 19847: 69,12
- 19865: 61,-6
- 19866: 62,-6
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteLineS
- decals:
- 2905: -11,52
- 4017: 11,66
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteLineS
- decals:
- 4603: 3,26
- 4604: 9,26
- 4621: 4,32
- 4634: 3,33
- 4639: 9,32
- 4651: 6,26
- 4658: 4,30
- 4659: 6,30
- 4660: 5,30
- 4661: 7,30
- 4662: 8,30
- 4707: 13,26
- 4711: 15,33
- 4712: 16,32
- 4726: 13,28
- 4727: 14,28
- 4754: 5,38
- 4755: 10,38
- 4760: 6,39
- 4787: 10,41
- 4809: 16,34
- 4810: 17,34
- 4811: 18,34
- 4812: 19,34
- 4813: 14,34
- 4866: 20,33
- 4867: 21,33
- 4883: 20,26
- 4886: 23,27
- 4891: 25,26
- 4892: 26,26
- 4928: 20,31
- 4929: 26,31
- 4938: 22,31
- 4939: 23,31
- 4944: 22,30
- 4947: 20,30
- 4948: 26,30
- 4963: 23,29
- 4978: 25,34
- 4979: 26,34
- 4980: 27,34
- 4981: 28,34
- 4998: 26,38
- 4999: 27,38
- 5008: 16,38
- 5009: 17,38
- 5010: 18,38
- 5041: 28,39
- 5042: 5,33
- 5043: 6,33
- 5044: 7,33
- 5045: 8,33
- 5046: 5,36
- 5047: 6,36
- 5048: 7,36
- 5049: 8,36
- 5050: 4,36
- 5051: 9,36
- 5069: 5,38
- 5070: 22,40
- 5071: 23,40
- 5086: 26,48
- 5087: 28,48
- 5088: 27,48
- 5089: 28,48
- 5090: 29,48
- 5091: 30,48
- 5092: 31,48
- 5093: 32,48
- 5094: 33,48
- 5095: 34,48
- 5096: 35,48
- 5097: 36,48
- 5098: 37,48
- 5099: 39,48
- 5100: 38,48
- 5118: 34,48
- 5119: 35,48
- 5120: 36,48
- 5121: 37,48
- 5122: 38,48
- 5123: 33,48
- 5124: 32,48
- 5125: 31,48
- 5126: 30,48
- 5127: 29,48
- 5128: 28,48
- 5129: 27,48
- 5130: 27,48
- 5131: 26,48
- 5152: 10,55
- 5165: 10,48
- 5166: 11,48
- 5167: 11,48
- 5168: 12,48
- 5179: 17,55
- 5197: 19,52
- 5198: 20,52
- 5199: 21,52
- 5200: 22,52
- 5201: 20,50
- 5202: 21,50
- 5203: 22,50
- 5204: 19,48
- 5205: 20,48
- 5206: 21,48
- 5207: 22,48
- 5208: 19,46
- 5209: 20,46
- 5210: 21,46
- 5211: 22,46
- 5212: 16,46
- 5213: 17,46
- 5214: 16,44
- 5215: 17,44
- 5216: 16,42
- 5217: 17,42
- 5218: 19,42
- 5219: 20,42
- 5220: 21,42
- 5221: 22,42
- 5222: 22,44
- 5223: 21,44
- 5224: 19,44
- 5225: 20,44
- 5279: 19,50
- 5406: 41,28
- 5407: 39,28
- 5412: 34,39
- 11769: -11,-79
- 14837: -58,9
- 14838: -57,9
- 14839: -56,9
- 14840: -55,9
- 20676: 24,30
- 20680: 24,31
- - node:
- color: '#DABC8BFF'
- id: BrickTileWhiteLineS
- decals:
- 4218: -39,52
- 4219: -38,52
- 4222: -39,55
- 9965: 4,-36
- 9966: 6,-36
- 9967: 7,-36
- 9968: 8,-36
- 9979: 5,-29
- 9980: 5,-31
- 9981: 6,-31
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteLineS
- decals:
- 17420: -53,3
- 17421: -52,3
- 17428: -53,7
- 17429: -52,7
- 17434: -53,3
- 17435: -52,3
- 17438: -49,3
- 17451: -50,-4
- 17452: -61,1
- 17453: -60,1
- 17459: -60,-4
- 17460: -59,-4
- 17461: -57,-4
- 17487: -50,9
- 17488: -49,11
- 17489: -48,11
- 17496: -56,9
- 17497: -56,9
- 17498: -56,9
- 17499: -57,9
- 17500: -58,9
- 17501: -58,9
- 17502: -59,9
- 17523: -58,-5
- 17526: -58,-11
- 17551: -60,-10
- 17552: -59,-10
- 17555: -58,-11
- 17564: -55,-9
- 17580: -53,-18
- 17581: -55,-18
- 17582: -57,-18
- 17583: -58,-18
- 17587: -61,-17
- 17602: -60,-15
- 17603: -59,-15
- 17604: -58,-15
- 17605: -57,-15
- 17606: -56,-15
- 17628: -49,-17
- 17629: -48,-17
- 17725: -58,16
- 17741: -65,14
- 17742: -64,14
- 17743: -63,14
- 17744: -62,14
- 17745: -62,14
- 17746: -62,14
- 17747: -61,14
- 17767: -75,14
- 17768: -74,14
- 17769: -73,14
- 17770: -71,14
- 17771: -70,14
- 17772: -69,14
- 17843: -59,17
- 17844: -60,17
- 17890: -48,-10
- 17891: -47,-10
- 17908: -64,-8
- 17909: -66,-8
- 17910: -67,-8
- 17911: -65,-8
- 17912: -68,-8
- 17913: -73,-8
- 17914: -72,-8
- 17939: -71,-5
- 17940: -69,-5
- 17954: -76,-10
- 17967: -11,-79
- 17971: 10,89
- 17972: 10,91
- 17975: 5,91
- 17988: 10,89
- 18031: 11,74
- 18083: -64,5
- 18084: -63,5
- 18155: -67,-4
- 18156: -68,-4
- 18157: -70,-4
- 18158: -72,-4
- 18159: -73,-4
- 18176: -71,-5
- 18177: -69,-5
- 18182: -73,3
- 18211: -73,10
- 18212: -71,10
- 18218: -72,13
- 18227: -82,14
- 18228: -81,14
- 18229: -80,14
- 18269: -77,8
- 18286: -77,12
- 18293: -77,2
- 18301: -77,-2
- 18342: -71,-9
- 18343: -70,-9
- 18344: -69,-9
- 18345: -72,-13
- 18346: -71,-13
- 18347: -70,-13
- 18348: -69,-13
- 18349: -68,-13
- 18726: -56,-4
- 18773: -55,17
- 18774: -54,17
- 18775: -54,17
- 18776: -52,17
- 18777: -53,17
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineS
- decals:
- 884: 70,-47
- 885: 71,-47
- 886: 72,-47
- 887: 74,-47
- 1204: 45,-17
- 1205: 48,-17
- 2271: -21,52
- 2272: -17,52
- 2273: -19,53
- 2279: -19,49
- 2342: -19,33
- 2343: -19,30
- 2344: -19,37
- 2347: -21,35
- 2477: -23,42
- 2576: -29,30
- 2577: -30,30
- 2617: -30,39
- 2906: -10,52
- 2981: -11,50
- 2982: -10,50
- 2983: -6,50
- 2984: -5,50
- 3020: -6,32
- 3226: -13,58
- 3227: -12,58
- 3228: -11,58
- 3236: -19,65
- 3291: -13,69
- 3292: -12,69
- 3293: -11,69
- 3302: -5,65
- 3312: -6,69
- 3313: -6,69
- 3314: -4,69
- 3315: -5,69
- 3319: -6,58
- 3320: -5,58
- 3321: -4,58
- 3328: -20,58
- 3329: -19,58
- 3330: -18,58
- 3337: -20,69
- 3338: -19,69
- 3339: -18,69
- 3436: -12,76
- 3450: -12,96
- 3451: -12,83
- 3462: -12,89
- 3488: -30,76
- 3489: -30,83
- 3490: -30,89
- 3491: -30,96
- 3512: -31,69
- 3513: -30,69
- 3514: -29,69
- 3734: 0,69
- 3735: 1,69
- 3736: 2,69
- 3737: 5,69
- 3738: 6,69
- 3739: 7,69
- 3824: 6,76
- 3825: 6,76
- 3886: 6,83
- 3990: 0,58
- 3991: 1,58
- 3992: 2,58
- 4042: 20,69
- 5447: 17,13
- 5448: 17,20
- 5465: -19,6
- 5466: -19,-1
- 5467: 17,-1
- 5468: 17,6
- 5505: -26,69
- 5506: -25,69
- 5507: -24,69
- 5785: -27,6
- 5786: -25,6
- 5787: -24,6
- 5788: -23,6
- 5789: -33,6
- 5790: -32,6
- 5791: -32,6
- 5792: -33,6
- 5793: -31,6
- 5794: -38,6
- 5795: -37,6
- 5796: -37,6
- 5797: -27,6
- 5798: -26,6
- 5799: -36,6
- 5800: -36,6
- 5867: -33,26
- 5868: -32,26
- 5869: -34,26
- 5878: -31,29
- 6521: -19,-11
- 6607: 17,-11
- 6642: -1,-17
- 6643: 0,-17
- 6644: 1,-17
- 6929: -31,-3
- 6930: -30,-3
- 6931: -28,-3
- 6932: -27,-3
- 6933: -26,-3
- 6934: -25,-3
- 6935: -23,-3
- 6936: -22,-3
- 6940: -33,3
- 6941: -32,3
- 7007: -24,-1
- 7023: -34,-16
- 7024: -33,-16
- 7025: -32,-16
- 7026: -31,-16
- 7027: -31,-16
- 7028: -30,-16
- 7037: -33,-10
- 7038: -32,-10
- 7042: -29,-16
- 7052: -34,-11
- 7053: -33,-11
- 7054: -32,-11
- 7055: -31,-11
- 7276: -25,-18
- 7301: -7,-19
- 7302: -6,-19
- 7303: -5,-19
- 7304: -12,-19
- 7305: -13,-19
- 7306: -13,-19
- 7307: -15,-19
- 7308: -14,-19
- 7309: 3,-19
- 7310: 4,-19
- 7311: 5,-19
- 7312: 5,-19
- 7313: 6,-19
- 7314: 10,-19
- 7315: 11,-19
- 7316: 12,-19
- 7317: 13,-19
- 7483: 21,6
- 7484: 23,6
- 7485: 24,6
- 7486: 22,6
- 7550: 28,6
- 7551: 29,6
- 7552: 30,6
- 7553: 31,6
- 8445: 58,-24
- 8446: 59,-24
- 8447: 60,-24
- 8448: 58,-11
- 8449: 59,-11
- 8450: 60,-11
- 8591: 39,-7
- 8592: 40,-7
- 8593: 40,-7
- 8616: 21,-10
- 8617: 22,-10
- 8618: 23,-10
- 8619: 24,-10
- 8620: 28,-10
- 8621: 29,-10
- 8622: 29,-10
- 8623: 30,-10
- 8624: 30,-10
- 8695: 36,-8
- 8696: 36,-8
- 8697: 37,-8
- 8698: 37,-8
- 8699: 38,-8
- 8700: 39,-8
- 8701: 39,-8
- 8702: 35,-8
- 8703: 35,-8
- 8786: 46,-13
- 8787: 46,-13
- 8837: 44,-19
- 8838: 45,-19
- 8839: 46,-19
- 8840: 47,-19
- 8841: 49,-19
- 8842: 50,-19
- 8843: 52,-19
- 8844: 51,-19
- 9066: -8,-75
- 9067: -7,-75
- 9068: -6,-75
- 9069: -3,-75
- 9070: -2,-75
- 9071: -1,-75
- 9072: -2,-79
- 9073: -1,-79
- 9074: -7,-79
- 9075: -8,-79
- 9138: 6,-24
- 9139: 7,-24
- 9140: 8,-24
- 9141: 9,-24
- 9142: 10,-24
- 9163: -11,-24
- 9164: -10,-24
- 9165: -9,-24
- 9166: -8,-24
- 9231: -1,-23
- 9269: -1,-30
- 9278: -12,-24
- 9314: -14,-28
- 9315: -14,-22
- 9316: -13,-22
- 9317: -7,-22
- 9318: -6,-22
- 9350: -7,-28
- 9351: -5,-28
- 9470: 4,-22
- 9471: 5,-22
- 9472: 11,-22
- 9473: 12,-22
- 9474: 12,-28
- 9475: 4,-28
- 9476: 3,-28
- 9804: -1,-51
- 9805: -1,-43
- 9806: -1,-38
- 9818: -1,-58
- 9819: -1,-58
- 9853: -3,-71
- 9864: 73,-52
- 11086: 73,-48
- 11087: 73,-41
- 11394: 41,-68
- 11395: 40,-68
- 13152: -42,23
- 15412: -16,24
- 15413: -15,24
- 15414: -14,24
- 15415: -14,24
- 15416: -13,24
- 15417: -6,24
- 15418: -5,24
- 15419: -4,24
- 15420: -3,24
- 15421: 1,24
- 15422: 2,24
- 15423: 3,24
- 15424: 4,24
- 15425: 11,24
- 15426: 12,24
- 15427: 13,24
- 15428: 14,24
- 15630: -8,-19
- 15869: -42,12
- 15870: -42,18
- 15871: -42,23
- 16131: 92,-5
- 16132: 93,-5
- 16133: 93,-5
- 16134: 94,-5
- 19327: -15,-8
- 19328: -14,-8
- 19329: -13,-8
- 19330: -12,-8
- 19331: -9,-8
- 19332: -8,-8
- 19333: -7,-8
- 19334: -6,-8
- 19335: -3,-8
- 19336: -2,-8
- 19337: -1,-8
- 19338: 1,-8
- 19339: 0,-8
- 19340: 4,-8
- 19341: 5,-8
- 19342: 6,-8
- 19343: 7,-8
- 19344: 10,-8
- 19345: 11,-8
- 19346: 12,-8
- 19347: 13,-8
- 20482: 35,-12
- 20483: 36,-12
- 20484: 37,-12
- 20485: 38,-12
- 20486: 39,-12
- 20487: 35,-9
- 20488: 36,-9
- 20489: 37,-9
- 20490: 38,-9
- 20491: 39,-9
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineS
- decals:
- 4318: -19,13
- 4319: -19,20
- - node:
- color: '#0A6AB6FF'
- id: BrickTileWhiteLineW
- decals:
- 899: 72,-45
- - node:
- color: '#8BC9DAFF'
- id: BrickTileWhiteLineW
- decals:
- 18416: -50,22
- 18418: -49,20
- 18419: -49,19
- 18437: -55,38
- 18439: -56,33
- 18440: -56,34
- 18442: -57,36
- 18454: -45,23
- 18459: -45,23
- 18460: -51,37
- 18461: -50,39
- 18462: -50,40
- 18481: -43,51
- 18482: -45,51
- 18494: -46,57
- 18495: -47,54
- 18496: -47,53
- 18497: -47,52
- 18498: -47,51
- 18499: -47,51
- 18500: -47,50
- 18501: -47,49
- 18502: -47,49
- 18503: -47,47
- 18504: -47,47
- 18505: -47,48
- 18506: -47,46
- 18514: -46,41
- 18555: -60,47
- 18556: -60,46
- 18557: -60,46
- 18558: -60,45
- 18559: -60,49
- 18560: -60,51
- 18561: -60,52
- 18562: -60,53
- 18659: -54,22
- 18660: -54,21
- 18661: -54,20
- 18667: -51,21
- - node:
- color: '#8BDA8EFF'
- id: BrickTileWhiteLineW
- decals:
- 18921: -38,48
- 18922: -38,48
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteLineW
- decals:
- 9889: 11,-26
- 9890: 11,-25
- 9899: 16,-34
- 9900: 16,-33
- 9901: 16,-32
- 9902: 16,-30
- 9903: 16,-29
- 9904: 16,-28
- 9905: 16,-27
- 9945: 19,-27
- 9946: 19,-28
- 10049: 26,-52
- 10050: 26,-51
- 10051: 26,-50
- 10052: 26,-49
- 10053: 26,-48
- 10054: 26,-47
- 10055: 26,-46
- 10056: 26,-45
- 10057: 26,-43
- 10058: 26,-42
- 10059: 26,-41
- 10060: 26,-38
- 10077: 19,-36
- 10078: 19,-35
- 10079: 19,-34
- 10087: 16,-36
- 10092: 15,-35
- 10110: 10,-35
- 10115: 15,-35
- 10151: 29,-50
- 10152: 29,-44
- 10153: 29,-40
- 10158: 19,-40
- 10159: 19,-39
- 10160: 25,-39
- 10161: 25,-40
- 10162: 19,-44
- 10251: 18,-34
- 10252: 18,-33
- 10253: 18,-32
- 10254: 18,-32
- 10255: 18,-31
- 10256: 14,-35
- 10257: 28,-35
- 10258: 37,-35
- 10259: 28,-40
- 10260: 28,-42
- 10261: 28,-43
- 10262: 28,-43
- 10263: 28,-44
- 10264: 28,-47
- 10265: 28,-48
- 10266: 28,-49
- 10267: 28,-50
- 10268: 28,-50
- 10269: 28,-51
- 10270: 28,-51
- 10272: 18,-40
- 10273: 18,-41
- 10274: 18,-42
- 10275: 18,-43
- 10276: 18,-43
- 10277: 18,-44
- 10278: 18,-45
- 10279: 18,-45
- 10280: 16,-38
- 10281: 16,-41
- 10282: 16,-43
- 10283: 16,-45
- 10284: 16,-46
- 10343: 39,-35
- 10367: 30,-41
- 10368: 30,-39
- 10391: 37,-40
- 10424: 23,-29
- 10460: 28,-25
- 10461: 28,-26
- 10479: 28,-41
- 10481: 15,-39
- 10482: 15,-40
- 10490: 8,-39
- 10491: 8,-40
- 10513: 20,-48
- 10514: 20,-47
- 10546: 25,-44
- 10553: 20,-45
- 10571: 32,-48
- 10572: 32,-48
- 10573: 32,-50
- 10577: 32,-52
- 10613: 30,-52
- 10614: 30,-51
- 10615: 30,-49
- 10616: 30,-48
- 10725: 8,-44
- 10727: 3,-45
- 10728: 3,-46
- 10760: 14,-46
- 10762: 12,-44
- 10768: 15,-44
- 11018: 50,-33
- 11019: 50,-33
- 11022: 43,-34
- 11025: 43,-32
- 12783: -4,-60
- 15738: 16,-42
- 20011: 5,63
- 20129: -8,-61
- 20130: -8,-60
- 20131: -8,-59
- 20133: -4,-60
- 20507: 26,-31
- 20517: 20,-26
- 20521: 24,-28
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteLineW
- decals:
- 3076: -24,48
- 3077: -24,47
- 3093: -32,45
- 3099: -34,47
- 3106: -34,51
- 3107: -34,52
- 3108: -34,53
- 3125: -24,50
- 3126: -24,51
- 3144: -31,47
- 3145: -31,48
- 3146: -31,49
- 3147: -31,50
- 3148: -31,51
- 3149: -31,52
- 3150: -31,53
- 3151: -29,53
- 3152: -29,52
- 3153: -29,51
- 3154: -29,50
- 3155: -29,49
- 3156: -29,47
- 3157: -29,48
- 3158: -27,47
- 3159: -27,48
- 3160: -27,49
- 3161: -27,50
- 3201: -36,49
- 3211: -38,47
- 18923: -38,48
- 18924: -38,49
- 18925: -38,50
- 18927: -38,45
- 18928: -38,46
- 18930: -27,53
- - node:
- color: '#B18BDAFF'
- id: BrickTileWhiteLineW
- decals:
- 5320: 19,31
- 5321: 19,29
- 5322: 19,27
- 5335: 28,31
- 5398: 38,29
- 5426: 37,37
- 11842: -22,-30
- 11843: -22,-29
- 11844: -22,-29
- 11845: -22,-28
- 11846: -22,-27
- 11847: -22,-27
- 11848: -22,-26
- 11875: -23,-35
- 11879: -13,-35
- 11880: -13,-35
- 11904: -13,-39
- 11905: -13,-40
- 11906: -13,-41
- 11907: -13,-42
- 11908: -13,-43
- 11909: -13,-47
- 11910: -13,-49
- 11911: -13,-49
- 11912: -13,-51
- 11913: -13,-52
- 11914: -13,-52
- 11915: -13,-53
- 11916: -13,-50
- 11917: -13,-50
- 11918: -13,-48
- 11919: -13,-48
- 12000: -21,-36
- 12001: -21,-35
- 12002: -21,-35
- 12003: -21,-34
- 12004: -21,-34
- 12014: -31,-35
- 12015: -24,-32
- 12016: -24,-31
- 12017: -24,-30
- 12018: -24,-30
- 12019: -24,-29
- 12020: -24,-28
- 12021: -24,-28
- 12022: -24,-27
- 12023: -24,-27
- 12024: -24,-27
- 12025: -24,-27
- 12026: -24,-26
- 12027: -24,-25
- 12028: -24,-25
- 12042: -7,-26
- 12043: -7,-25
- 12044: -7,-25
- 12059: -11,-34
- 12060: -11,-35
- 12071: -4,-35
- 12084: -10,-31
- 12085: -10,-32
- 12086: -10,-32
- 12087: -10,-33
- 12088: -10,-33
- 12194: -12,-41
- 12195: -12,-41
- 12213: -15,-38
- 12214: -15,-39
- 12215: -15,-41
- 12216: -15,-42
- 12217: -15,-43
- 12218: -15,-44
- 12296: -34,-45
- 12297: -34,-44
- 12298: -34,-44
- 12299: -34,-43
- 12300: -34,-43
- 12301: -34,-42
- 12302: -34,-42
- 12303: -34,-41
- 12335: -27,-27
- 12336: -28,-29
- 12337: -27,-31
- 12481: -24,-24
- 12498: -21,-31
- 12499: -21,-26
- 12601: -23,-39
- 12602: -23,-40
- 12603: -23,-41
- 12615: -28,-39
- 12616: -28,-40
- 12617: -28,-41
- 12618: -15,-46
- 12619: -15,-47
- 12620: -15,-48
- 12621: -15,-49
- 12622: -17,-52
- 12623: -17,-53
- 12639: -12,-50
- 12651: -12,-59
- 12663: -20,-57
- 12698: -7,-48
- 12699: -7,-47
- 12706: -11,-51
- 12707: -11,-52
- 12713: -3,-48
- 12719: -17,-44
- 12720: -17,-43
- 12721: -17,-42
- 12722: -17,-41
- 12723: -17,-40
- 13040: -6,-32
- 13041: -6,-33
- 13042: -6,-34
- - node:
- color: '#B240B4FF'
- id: BrickTileWhiteLineW
- decals:
- 686: -25,-57
- - node:
- color: '#CEDA8BFF'
- id: BrickTileWhiteLineW
- decals:
- 11233: 29,-56
- 11235: 26,-57
- 11259: 34,-71
- 11260: 34,-70
- 11261: 34,-69
- 11262: 34,-67
- 11263: 34,-64
- 11264: 34,-63
- 11265: 34,-62
- 11281: 38,-61
- 11283: 38,-63
- 11302: 42,-62
- 11304: 37,-62
- 11319: 37,-70
- 11384: 30,-68
- - node:
- color: '#DA8B8BFF'
- id: BrickTileWhiteLineW
- decals:
- 7997: 64,-4
- 8002: 65,-3
- 8033: 71,13
- 19855: 68,15
- 19856: 68,14
- 19857: 68,13
- 19868: 60,-5
- 19869: 60,-4
- - node:
- color: '#DA8BC9FF'
- id: BrickTileWhiteLineW
- decals:
- 4013: 10,69
- 4014: 10,67
- 4015: 10,66
- 4019: 13,67
- 4026: 13,67
- 4032: 13,67
- - node:
- color: '#DAA58BFF'
- id: BrickTileWhiteLineW
- decals:
- 4599: 2,30
- 4600: 2,28
- 4601: 2,27
- 4624: 2,34
- 4625: 2,35
- 4626: 2,36
- 4645: 11,30
- 4646: 11,28
- 4656: 9,28
- 4657: 9,29
- 4676: 15,29
- 4677: 15,30
- 4678: 15,31
- 4689: 12,27
- 4694: 15,32
- 4718: 17,27
- 4719: 17,28
- 4720: 17,29
- 4721: 17,30
- 4722: 17,31
- 4756: 12,36
- 4757: 12,35
- 4767: 4,41
- 4768: 4,42
- 4792: 9,45
- 4793: 9,44
- 4794: 9,43
- 4807: 13,38
- 4808: 13,37
- 4814: 13,34
- 4848: 12,43
- 4849: 12,45
- 4850: 13,40
- 4851: 13,41
- 4852: 13,42
- 4853: 13,44
- 4856: 15,47
- 4877: 19,31
- 4878: 19,30
- 4879: 19,29
- 4880: 19,28
- 4881: 19,27
- 4912: 28,31
- 4924: 27,29
- 4925: 27,29
- 4926: 27,30
- 4927: 27,28
- 4941: 26,29
- 4945: 22,29
- 4970: 23,36
- 4974: 24,37
- 4975: 24,35
- 4995: 28,35
- 4996: 28,36
- 4997: 28,37
- 5012: 20,36
- 5035: 27,41
- 5036: 27,42
- 5037: 27,43
- 5052: 10,35
- 5106: 34,50
- 5114: 33,49
- 5115: 33,51
- 5117: 39,51
- 5159: 9,53
- 5160: 9,52
- 5161: 9,51
- 5162: 9,50
- 5163: 9,49
- 5171: 14,49
- 5172: 14,50
- 5177: 14,53
- 5178: 14,52
- 5226: 23,43
- 5227: 23,45
- 5228: 23,47
- 5229: 23,49
- 5230: 23,51
- 5240: 18,41
- 5241: 18,43
- 5242: 18,45
- 5272: 23,41
- 5316: 39,49
- 5317: 39,51
- 5318: 39,48
- 5319: 39,52
- 5408: 38,29
- 5415: 33,37
- 11771: -11,-82
- 11772: -11,-81
- 11773: -11,-80
- 14825: -46,14
- 14826: -46,12
- 15777: -49,9
- - node:
- color: '#DABC8BFF'
- id: BrickTileWhiteLineW
- decals:
- 4216: -40,53
- 9962: 2,-31
- 9982: 3,-34
- 9983: 3,-33
- 9990: 7,-34
- 9991: 7,-33
- 9992: 7,-32
- 10008: 9,-36
- 10009: 9,-34
- - node:
- color: '#EFB341FF'
- id: BrickTileWhiteLineW
- decals:
- 17425: -53,4
- 17426: -53,5
- 17427: -53,6
- 17439: -48,1
- 17454: -59,0
- 17456: -61,-2
- 17457: -61,-3
- 17504: -59,11
- 17505: -59,12
- 17506: -59,13
- 17510: -55,16
- 17520: -62,1
- 17530: -62,-7
- 17538: -56,-9
- 17549: -61,-8
- 17550: -61,-9
- 17563: -55,-8
- 17565: -54,-10
- 17566: -54,-11
- 17567: -54,-6
- 17568: -54,-5
- 17590: -60,-17
- 17596: -61,-13
- 17597: -61,-14
- 17612: -51,-15
- 17623: -59,-16
- 17624: -50,-16
- 17625: -50,-17
- 17640: -50,-14
- 17641: -50,-13
- 17712: -46,12
- 17713: -46,14
- 17748: -60,14
- 17750: -67,15
- 17764: -78,15
- 17846: -61,18
- 17847: -61,19
- 17858: -50,-9
- 17859: -50,-8
- 17860: -50,-7
- 17896: -50,-9
- 17897: -50,-8
- 17898: -50,-7
- 17899: -56,-7
- 17905: -62,-7
- 17944: -74,-6
- 17945: -74,-7
- 17946: -74,-8
- 17950: -77,-7
- 17951: -77,-8
- 17952: -77,-9
- 17964: -11,-82
- 17965: -11,-81
- 17966: -11,-80
- 17969: 13,78
- 17970: 12,87
- 17979: 5,92
- 17980: 10,90
- 17997: 5,88
- 17998: 5,89
- 17999: 5,90
- 18008: 9,85
- 18009: 9,86
- 18010: 9,87
- 18013: 12,87
- 18014: 10,82
- 18015: 10,79
- 18016: 10,78
- 18017: 10,77
- 18038: 13,78
- 18077: -65,6
- 18078: -65,7
- 18079: -65,8
- 18080: -65,9
- 18140: -65,1
- 18160: -74,-3
- 18161: -74,-2
- 18162: -74,-1
- 18163: -74,1
- 18180: -65,1
- 18257: -78,6
- 18258: -78,5
- 18259: -78,4
- 18283: -77,9
- 18284: -77,10
- 18285: -77,11
- 18309: -75,0
- 18352: -73,-11
- 18353: -73,-12
- 18369: -55,17
- 18729: -51,-3
- 18730: -51,-2
- 20682: -48,-3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineW
- decals:
- 880: 69,-42
- 881: 69,-43
- 882: 69,-44
- 883: 69,-46
- 896: 69,-45
- 999: 2,-17
- 1000: 2,-16
- 1001: 2,-15
- 1002: 2,-14
- 1201: 44,-15
- 1202: 44,-16
- 2264: -15,50
- 2265: -15,49
- 2266: -15,48
- 2274: -18,52
- 2275: -18,51
- 2276: -18,50
- 2280: -18,48
- 2281: -18,47
- 2282: -18,46
- 2283: -20,47
- 2284: -20,48
- 2285: -20,49
- 2286: -20,51
- 2328: -18,36
- 2329: -18,35
- 2330: -18,34
- 2331: -18,32
- 2332: -18,31
- 2333: -18,29
- 2334: -18,28
- 2335: -18,27
- 2336: -20,29
- 2337: -20,30
- 2338: -20,31
- 2339: -20,32
- 2340: -20,33
- 2341: -20,34
- 2472: -22,41
- 2565: -28,37
- 2566: -28,36
- 2567: -28,34
- 2568: -28,35
- 2569: -28,33
- 2570: -28,32
- 2580: -31,30
- 2581: -31,31
- 2914: -13,53
- 2985: -9,49
- 2986: -4,49
- 3225: -10,57
- 3232: -18,61
- 3233: -18,62
- 3234: -18,63
- 3235: -18,64
- 3304: -4,61
- 3305: -4,62
- 3306: -4,63
- 3307: -4,64
- 3308: -3,57
- 3316: -3,68
- 3318: -10,68
- 3331: -17,57
- 3340: -17,68
- 3431: -11,72
- 3432: -11,73
- 3433: -11,74
- 3434: -11,75
- 3442: -11,79
- 3443: -11,80
- 3444: -11,81
- 3445: -11,82
- 3446: -11,92
- 3447: -11,93
- 3448: -11,94
- 3449: -11,95
- 3468: -11,88
- 3469: -11,88
- 3470: -11,87
- 3471: -11,86
- 3472: -11,85
- 3492: -29,95
- 3493: -29,94
- 3494: -29,93
- 3495: -29,92
- 3496: -29,88
- 3497: -29,87
- 3498: -29,86
- 3499: -29,85
- 3500: -29,82
- 3501: -29,81
- 3502: -29,80
- 3503: -29,79
- 3504: -29,75
- 3505: -29,74
- 3506: -29,73
- 3507: -29,72
- 3519: -28,68
- 3733: 3,68
- 3740: 8,68
- 3826: 7,75
- 3877: 7,72
- 3878: 7,73
- 3879: 7,79
- 3880: 7,80
- 3881: 7,81
- 3988: 3,57
- 4035: 17,69
- 4377: -25,22
- 5432: 18,16
- 5433: 18,17
- 5434: 18,18
- 5435: 18,19
- 5436: 18,12
- 5437: 18,12
- 5438: 18,11
- 5439: 18,10
- 5440: 18,9
- 5469: 18,3
- 5470: 18,4
- 5471: 18,2
- 5472: 18,-2
- 5473: 18,-3
- 5474: 18,-4
- 5475: 18,-5
- 5476: -18,-5
- 5477: -18,-4
- 5478: -18,-3
- 5479: -18,-2
- 5480: -18,2
- 5481: -18,3
- 5482: -18,4
- 5483: -18,5
- 5508: -23,68
- 5804: -35,5
- 5805: -30,5
- 5806: -22,5
- 5870: -34,27
- 5871: -34,28
- 6522: -18,-12
- 6523: -18,-13
- 6524: -18,-14
- 6525: -18,-15
- 6526: -18,-16
- 6527: -18,-17
- 6609: 18,-17
- 6610: 18,-16
- 6611: 18,-15
- 6612: 18,-14
- 6613: 18,-13
- 6614: 18,-12
- 6635: -2,-14
- 6636: -2,-15
- 6645: 2,-17
- 6937: -21,-3
- 6938: -21,-2
- 6939: -21,-2
- 6942: -33,2
- 6943: -33,1
- 6944: -33,0
- 6945: -33,-1
- 6946: -33,-2
- 6947: -33,-3
- 6948: -33,-4
- 6949: -33,-5
- 6950: -33,-6
- 6951: -33,-7
- 6952: -33,-8
- 6953: -33,-9
- 6982: -31,1
- 7030: -35,-15
- 7031: -35,-14
- 7032: -35,-14
- 7033: -35,-13
- 7034: -35,-12
- 7056: -30,-12
- 7057: -30,-13
- 7058: -30,-14
- 7059: -30,-14
- 7060: -30,-15
- 7280: -26,-17
- 7281: -26,-16
- 7282: -26,-16
- 7283: -22,-17
- 7284: -22,-17
- 7285: -22,-16
- 7318: 7,-20
- 7319: -4,-20
- 7320: -11,-20
- 7325: 14,-20
- 7326: 18,5
- 7481: 25,5
- 7548: 32,5
- 8419: 62,-15
- 8420: 62,-14
- 8421: 62,-13
- 8422: 58,-14
- 8423: 58,-27
- 8424: 60,-27
- 8425: 62,-28
- 8426: 62,-27
- 8427: 62,-26
- 8436: 60,-14
- 8638: 31,-11
- 8639: 25,-11
- 8640: 25,-11
- 8649: 41,-14
- 8650: 41,-12
- 8651: 41,-12
- 8652: 41,-12
- 8653: 41,-10
- 8654: 41,-11
- 8704: 41,-13
- 8705: 41,-13
- 8845: 48,-20
- 8846: 53,-20
- 8847: 53,-20
- 9084: 0,-76
- 9085: 0,-80
- 9089: -3,-78
- 9145: 11,-25
- 9146: 11,-26
- 9160: -7,-26
- 9161: -7,-25
- 9162: -7,-25
- 9226: 0,-27
- 9227: 0,-26
- 9228: 0,-25
- 9229: 0,-24
- 9271: 0,-35
- 9272: 0,-34
- 9273: 0,-34
- 9274: 0,-33
- 9275: 0,-32
- 9276: 0,-31
- 9277: 0,-31
- 9319: -3,-25
- 9320: -3,-25
- 9321: -3,-26
- 9354: -16,-26
- 9355: -16,-25
- 9484: 2,-24
- 9787: 0,-50
- 9788: 0,-49
- 9789: 0,-49
- 9790: 0,-45
- 9791: 0,-46
- 9792: 0,-48
- 9793: 0,-48
- 9794: 0,-47
- 9795: 0,-42
- 9796: 0,-41
- 9797: 0,-40
- 9798: 0,-40
- 9799: 0,-39
- 9800: 0,-52
- 9801: 0,-53
- 9802: 0,-54
- 9803: 0,-55
- 9807: 0,-44
- 9815: 0,-61
- 9816: 0,-60
- 9817: 0,-59
- 9841: -5,-73
- 9842: -5,-72
- 9843: -2,-69
- 9844: -2,-70
- 9845: -2,-71
- 9865: 72,-51
- 9924: 15,-26
- 9925: 15,-25
- 11089: 76,-45
- 13153: -41,22
- 13890: -41,-63
- 15291: -20,50
- 15391: -12,23
- 15392: -2,23
- 15393: 5,23
- 15394: 15,23
- 15762: -6,-70
- 15847: -41,21
- 15848: -41,20
- 15849: -41,17
- 15850: -41,16
- 15851: -41,15
- 15852: -41,14
- 15853: -41,11
- 15854: -41,10
- 15855: -41,9
- 15897: 0,-79
- 15898: 0,-78
- 15899: 0,-77
- 16127: 91,-4
- 16128: 91,-3
- 16139: 96,-3
- 18058: 7,82
- 18066: 7,74
- 19355: -11,-9
- 19356: -5,-9
- 19357: 2,-9
- 19358: 8,-9
- 19386: 14,-9
- 20500: 40,-10
- 20501: 40,-11
- 20502: 40,-13
- 20503: 40,-14
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineW
- decals:
- 4310: -18,19
- 4311: -18,18
- 4312: -18,17
- 4313: -18,16
- 4314: -18,11
- 4315: -18,10
- 4316: -18,9
- 4317: -18,12
- - node:
- color: '#FFFFFFFF'
- id: BushAThree
- decals:
- 906: -36,48
- 907: -36,50
- - node:
- color: '#FFFFFFFF'
- id: BushCThree
- decals:
- 3053: -33,41
- - node:
- color: '#FFFFFFFF'
- id: Busha1
- decals:
- 1004: -43.133636,-38.091503
- 1616: -38,35
- - node:
- color: '#FFFFFFFF'
- id: Busha2
- decals:
- 1617: -38,31
- - node:
- color: '#FFFFFFFF'
- id: Busha3
- decals:
- 1618: -41,31
- - node:
- color: '#FFFFFFFF'
- id: Bushb1
- decals:
- 905: -36,50
- - node:
- color: '#FFFFFFFF'
- id: Bushb2
- decals:
- 15946: 73,-20
- - node:
- color: '#FFFFFFFF'
- id: Bushb3
- decals:
- 904: -36,48
- 1003: -44.91489,-39.19307
- - node:
- color: '#FFFFFFFF'
- id: Bushf1
- decals:
- 554: -2,-84
- 555: -1,-84
- 556: 0,-84
- - node:
- color: '#FFFFFFFF'
- id: Bushf2
- decals:
- 548: -2,-84
- 549: -1,-84
- 550: 0,-84
- - node:
- color: '#FFFFFFFF'
- id: Bushf3
- decals:
- 551: -2,-84
- 552: -1,-84
- 553: 0,-84
- - node:
- color: '#FFFFFFFF'
- id: Bushg1
- decals:
- 537: -5.662094,-66.98197
- - node:
- color: '#FFFFFFFF'
- id: Bushg2
- decals:
- 538: -3.6811028,-66.96635
- 541: -6.9387937,-72.70105
- 543: -6.0637937,-73.82605
- - node:
- color: '#FFFFFFFF'
- id: Bushg4
- decals:
- 540: -1.9936025,-67.85697
- 542: -3.0169184,-73.9823
- - node:
- color: '#FFFFFFFF'
- id: Bushi3
- decals:
- 539: -6.9623528,-67.85697
- - node:
- color: '#FFFFFFFF'
- id: Caution
- decals:
- 869: 92,26
- 13697: -58,22
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Caution
- decals:
- 875: -53,54
- 894: 69,-47
- 895: 69,-44
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: Caution
- decals:
- 13694: -58,25
- 13695: -58,25
- 13696: -58,25
- - node:
- angle: 4.71238898038469 rad
- color: '#FFFFFFFF'
- id: Caution
- decals:
- 19954: 54.897575,4.5646844
- - node:
- color: '#3EB38896'
- id: CheckerNESW
- decals:
- 14407: -68,56
- 14408: -67,56
- 14409: -68,55
- 14410: -68,54
- 14411: -67,54
- 14412: -67,55
- 14413: -66,56
- 14414: -66,55
- 14415: -66,54
- 14416: -65,54
- 14417: -65,55
- 14418: -65,56
- 14419: -64,54
- 14420: -64,55
- 14421: -64,56
- 14422: -63,56
- 14423: -63,55
- 14424: -63,54
- 14425: -62,54
- 14426: -62,55
- 14427: -62,56
- 14428: -62,57
- 14429: -63,57
- 14430: -63,58
- 14431: -62,58
- 14432: -62,59
- 14433: -63,59
- 14434: -63,60
- 14435: -62,60
- 14436: -62,61
- 14437: -63,61
- 14438: -70,55
->>>>>>> master
- node:
color: '#808080FF'
id: CheckerNESW
decals:
-<<<<<<< HEAD
452: -14,54
453: -14,53
454: -14,52
-=======
- 205: -14,54
- 206: -14,53
- 207: -14,52
->>>>>>> master
- node:
color: '#52B4E996'
id: CheckerNWSE
decals:
-<<<<<<< HEAD
1439: 1,-38
-=======
- 668: 1,-38
->>>>>>> master
- node:
color: '#9D9D97FF'
id: CheckerNWSE
decals:
-<<<<<<< HEAD
4551: 2,52
4552: 2,50
4553: 2,51
@@ -32034,2777 +16645,8 @@ entities:
543: 52.41801,-47.420773
551: 52.705982,-27.63774
552: 53.384186,-27.880066
-=======
- 2845: 2,52
- 2846: 2,50
- 2847: 2,51
- 2848: 2,51
- 2849: 1,51
- 2850: 1,50
- 2851: 0,50
- 2852: -1,50
- 2853: -1,51
- 2854: 0,51
- 2855: 0,52
- 2856: -1,54
- 2857: 0,53
- 2858: -1,53
- 2859: 0,54
- 2860: 1,53
- 2861: 2,53
- 2862: 3,54
- 2863: 3,50
- 2864: 3,51
- 2865: 3,52
- 2866: 3,53
- 2867: 1,52
- 2868: -1,52
- - node:
- color: '#DA8BC9FF'
- id: CheckerNWSE
- decals:
- 16666: -67,-46
- 16667: -66,-46
- 16668: -66,-47
- 16669: -66,-48
- 16670: -65,-47
- 16671: -65,-48
- 16672: -64,-48
- 16673: -64,-47
- 16674: -64,-46
- 16675: -65,-46
- 16676: -63,-46
- 16677: -62,-46
- 16678: -62,-47
- 16679: -62,-48
- 16680: -63,-45
- 16681: -64,-45
- 16682: -65,-45
- - node:
- color: '#FFFF00D8'
- id: ConcreteTrimCornerNe
- decals:
- 14439: -62,61
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimCornerNe
- decals:
- 14452: -62,61
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimCornerNe
- decals:
- 2298: -21,39
- 2394: -20,40
- 8232: 75,-16
- 8278: 68,-24
- 13089: -40,34
- 13102: -38,33
- 16221: 97,7
- - node:
- color: '#FFFF00D9'
- id: ConcreteTrimCornerNw
- decals:
- 14440: -63,61
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimCornerNw
- decals:
- 14453: -63,61
- 14466: -68,56
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimCornerNw
- decals:
- 2297: -17,39
- 2393: -18,40
- 8277: 74,-24
- 8284: 67,-16
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimCornerSe
- decals:
- 14455: -62,54
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimCornerSe
- decals:
- 2299: -21,43
- 2392: -20,42
- 8313: 68,-17
- 8338: 75,-25
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimCornerSw
- decals:
- 14462: -68,54
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimCornerSw
- decals:
- 2300: -17,43
- 2396: -18,42
- 8312: 74,-17
- 8339: 67,-25
- 13093: -38,32
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimEndE
- decals:
- 2381: -18,41
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimEndN
- decals:
- 2379: -19,42
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimEndS
- decals:
- 2380: -19,40
- 13090: -40,32
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimEndW
- decals:
- 14464: -70,55
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimEndW
- decals:
- 2378: -20,41
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimInnerNe
- decals:
- 14468: -67,56
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimInnerNe
- decals:
- 2305: -21,38
- 2307: -22,39
- 2382: -19,41
- 2400: -21,40
- 2401: -20,39
- 2414: -18,43
- 2415: -17,42
- 3060: -33,43
- 6246: -3,9
- 6291: -1,-5
- 6304: -1,7
- 6305: -1,3
- 6306: -1,-1
- 8294: 67,-24
- 8295: 68,-25
- 8296: 67,-22
- 8297: 67,-19
- 8360: 75,-22
- 8361: 75,-19
- 13100: -40,33
- 13101: -38,32
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimInnerNw
- decals:
- 14465: -68,55
- 14467: -67,56
- 14473: -63,56
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimInnerNw
- decals:
- 2304: -16,39
- 2306: -17,38
- 2383: -19,41
- 2411: -21,42
- 2412: -21,42
- 2413: -20,43
- 2416: -17,40
- 2417: -18,39
- 6247: 1,9
- 6292: -1,-5
- 6301: -1,-1
- 6302: -1,3
- 6303: -1,7
- 8315: 74,-25
- 8316: 75,-24
- 8317: 75,-22
- 8318: 75,-19
- 8319: 67,-22
- 8320: 67,-19
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimInnerSe
- decals:
- 14456: -63,54
- node:
color: '#FFFFFFFF'
- id: ConcreteTrimInnerSe
- decals:
- 2308: -21,44
- 2384: -19,41
- 2402: -21,42
- 2403: -20,43
- 2404: -17,40
- 2405: -17,40
- 2406: -18,39
- 2475: -22,43
- 3059: -33,40
- 6244: -3,-6
- 6294: -1,-5
- 6295: -1,-1
- 6296: -1,3
- 6297: -1,7
- 8299: 67,-22
- 8300: 67,-19
- 8301: 67,-17
- 8302: 68,-16
- 8358: 75,-19
- 8359: 75,-22
- 13099: -40,33
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimInnerSw
- decals:
- 14457: -63,54
- 14463: -68,55
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimInnerSw
- decals:
- 2309: -17,44
- 2310: -16,43
- 2385: -19,41
- 2407: -17,42
- 2408: -18,43
- 2409: -20,39
- 2410: -21,40
- 3051: -32,44
- 6245: 1,-6
- 6293: -1,-5
- 6298: -1,7
- 6299: -1,3
- 6300: -1,-1
- 8291: 75,-22
- 8292: 75,-19
- 8293: 75,-17
- 8356: 67,-22
- 8357: 67,-19
- 13097: -40,34
- 13098: -38,33
- - node:
- color: '#FFFF00D9'
- id: ConcreteTrimLineE
- decals:
- 14441: -62,60
- 14442: -62,59
- 14443: -62,59
- 14444: -62,58
- 14445: -62,57
- 14446: -62,56
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimLineE
- decals:
- 14447: -62,56
- 14448: -62,57
- 14449: -62,58
- 14450: -62,59
- 14451: -62,60
- 14454: -62,55
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimLineE
- decals:
- 2311: -22,40
- 2312: -22,41
- 2397: -21,41
- 2476: -22,42
- 5672: 0,-6
- 5673: 0,-6
- 5674: 0,-5
- 5675: 0,-4
- 5676: 0,-3
- 5677: 0,-2
- 5678: 0,-1
- 5679: 0,0
- 5680: 0,1
- 5681: 0,1
- 5682: 0,2
- 5683: 0,2
- 5684: 0,3
- 5685: 0,3
- 5686: 0,4
- 5687: 0,5
- 5688: 0,5
- 5689: 0,6
- 5690: 0,7
- 5691: 0,8
- 5692: 0,8
- 5693: 0,9
- 6287: 0,7
- 6288: 0,3
- 6289: 0,-1
- 6290: 0,-5
- 8264: 67,-21
- 8265: 67,-20
- 8266: 67,-23
- 8314: 67,-18
- 8321: 75,-17
- 8322: 75,-18
- 8323: 75,-20
- 8324: 75,-21
- 8325: 75,-23
- 8326: 75,-24
- 8352: 66,-22
- 8353: 66,-19
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimLineN
- decals:
- 14469: -66,56
- 14470: -65,56
- 14471: -65,56
- 14472: -64,56
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimLineN
- decals:
- 2294: -20,38
- 2295: -19,38
- 2296: -18,38
- 2399: -19,39
- 8233: 74,-16
- 8234: 73,-16
- 8235: 72,-16
- 8236: 71,-16
- 8237: 70,-16
- 8238: 69,-16
- 8239: 68,-16
- 8240: 68,-19
- 8241: 69,-19
- 8242: 70,-19
- 8243: 71,-19
- 8244: 72,-19
- 8245: 73,-19
- 8246: 74,-19
- 8247: 68,-22
- 8248: 70,-22
- 8249: 71,-22
- 8250: 72,-22
- 8251: 73,-22
- 8252: 69,-22
- 8253: 73,-22
- 8254: 74,-22
- 8279: 69,-25
- 8280: 70,-25
- 8281: 71,-25
- 8282: 72,-25
- 8283: 73,-25
- 13088: -41,34
- 13094: -39,33
- 13095: -38,33
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimLineS
- decals:
- 14458: -64,54
- 14459: -65,54
- 14460: -66,54
- 14461: -67,54
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimLineS
- decals:
- 2313: -20,44
- 2314: -19,44
- 2315: -18,44
- 2395: -19,43
- 8257: 68,-19
- 8258: 69,-19
- 8259: 70,-19
- 8260: 71,-19
- 8261: 72,-19
- 8262: 73,-19
- 8263: 74,-19
- 8267: 68,-22
- 8268: 69,-22
- 8269: 70,-22
- 8270: 71,-22
- 8271: 73,-22
- 8272: 73,-22
- 8273: 72,-22
- 8274: 74,-22
- 8275: 73,-22
- 8303: 69,-16
- 8304: 70,-16
- 8305: 71,-16
- 8306: 71,-16
- 8307: 72,-16
- 8308: 72,-16
- 8309: 72,-16
- 8310: 72,-16
- 8311: 73,-16
- 8327: 68,-25
- 8328: 68,-25
- 8329: 68,-25
- 8330: 69,-25
- 8331: 70,-25
- 8332: 71,-25
- 8333: 71,-25
- 8334: 72,-25
- 8335: 72,-25
- 8336: 74,-25
- 8337: 74,-25
- 13087: -41,34
- 13091: -39,33
- 13092: -38,32
- - node:
- color: '#FFFF00FF'
- id: ConcreteTrimLineW
- decals:
- 14474: -63,57
- 14475: -63,58
- 14476: -63,59
- 14477: -63,59
- 14478: -63,60
- - node:
- color: '#FFFFFFFF'
- id: ConcreteTrimLineW
- decals:
- 2301: -16,42
- 2302: -16,41
- 2303: -16,40
- 2398: -17,41
- 3047: -32,40
- 3048: -32,41
- 3049: -32,42
- 3050: -32,43
- 5694: -2,8
- 5695: -2,7
- 5696: -2,6
- 5697: -2,5
- 5698: -2,5
- 5699: -2,4
- 5700: -2,3
- 5701: -2,2
- 5702: -2,1
- 5703: -2,1
- 5704: -2,0
- 5705: -2,-1
- 5706: -2,-2
- 5707: -2,-2
- 5708: -2,-3
- 5709: -2,-4
- 5710: -2,-4
- 5711: -2,-5
- 5712: -2,-5
- 5713: -2,-6
- 6283: -2,-5
- 6284: -2,-1
- 6285: -2,3
- 6286: -2,7
- 8255: 75,-21
- 8256: 75,-20
- 8276: 75,-23
- 8285: 67,-17
- 8286: 67,-18
- 8287: 67,-20
- 8288: 67,-21
- 8289: 67,-23
- 8290: 67,-24
- 8298: 75,-18
- 8354: 76,-19
- 8355: 76,-22
- 13096: -40,33
- 19252: -2,9
- - node:
- color: '#FFFFFF25'
- id: Damaged
- decals:
- 19253: 63,-40
- 19254: 64,-40
- 19255: 59,-42
- 19256: 60,-42
- 19257: 58,-42
- - node:
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 0: 22,49
- 1: 22,51
- 2: 22,47
- 3: 22,45
- 4: 22,43
- 5: 22,41
- 30: 17,45
- 31: 16,43
- 32: 17,41
- 110: 28,-60
- 136: -28,8
- 139: -25,15
- 140: -28,15
- 149: -39,23
- 161: 15,71
- 162: 15,70
- 163: 14,67
- 164: 15,66
- 165: 12,72
- 167: 30,60
- 168: 29,60
- 169: 28,60
- 208: -60,-22
- 717: -41,-37
- 744: 13,13
- 745: 13,14
- 746: 13,15
- 747: 13,16
- 748: -15,13
- 749: -15,14
- 750: -15,15
- 751: -15,16
- 752: 58,2
- 753: 62,2
- 754: 66,2
- 767: 61,12
- 983: 30,32
- 1080: -32,-46
- 1081: -32,-39
- 1084: -32,-44
- 1085: -32,-45
- 1090: -34,-36
- 1091: -33,-36
- 1240: 61,6
- 1241: 63,6
- 1268: 63,3
- 3332: -2,64
- 3333: -2,63
- 3334: -2,62
- 3335: -2,61
- 3426: -2,64
- 3427: -2,63
- 3428: -2,62
- 3429: -2,61
- 6307: -8,-16
- 6308: -8,-17
- 6309: -8,-13
- 6310: -8,-12
- 6317: -16,-16
- 6318: -16,-15
- 6319: -16,-14
- 6320: -16,-13
- 6321: -14,-16
- 6322: -14,-15
- 6323: -14,-14
- 6324: -14,-13
- 6325: -12,-13
- 6326: -12,-14
- 6327: -12,-15
- 6328: -12,-16
- 6329: -10,-16
- 6330: -10,-15
- 6331: -10,-14
- 6332: -10,-13
- 6333: -10,-13
- 6508: -13,-18
- 6509: -12,-18
- 6510: -11,-18
- 17865: -46,-9
- 17866: -46,-10
- 17867: -45,-10
- 17868: -45,-9
- 17869: -45,-6
- 17870: -47,-6
- 17871: -46,-6
- 17872: -45,-7
- 17873: -46,-7
- 17874: -48,-6
- 17875: -49,-6
- 17876: -49,-10
- 17877: -48,-10
- 17878: -47,-10
- 17879: -47,-9
- 17880: -47,-7
- 18311: -67,-13
- 18312: -68,-13
- 18313: -68,-12
- 18314: -67,-12
- 18315: -67,-11
- 18316: -68,-11
- 18317: -68,-10
- 18318: -67,-10
- 18319: -69,-13
- 18320: -69,-12
- 18321: -70,-12
- 18322: -70,-13
- 18323: -71,-13
- 18324: -71,-12
- 18325: -72,-12
- 18326: -72,-13
- 18327: -73,-13
- 18328: -73,-11
- 18329: -72,-11
- 18330: -72,-10
- 18331: -73,-10
- 18332: -73,-12
- 19959: 70,1
- 19960: 70,0
- 19961: 70,-1
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 640: -115,19
- 641: -115,18
- 642: -115,17
- 969: 25,49
- 970: 25,50
- 971: 25,51
- 975: 33,28
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 36: 15,51
- 37: 15,50
- 38: 15,49
- 39: 15,48
- 44: 17,56
- 45: 21,56
- 46: 24,54
- 47: 25,54
- 61: 9,31
- 152: -36,26
- 153: -36,32
- 154: -36,40
- 155: -38,42
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 28: 24,40
- 29: 25,40
- - node:
- angle: 4.71238898038469 rad
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 123: 24,-56
- 124: 30,-56
- - node:
- color: '#0096FFFF'
- id: DeliveryGreyscale
- decals:
- 1238: 57,6
- 1239: 59,6
- 1248: 59,3
- - node:
- color: '#DE3A3A96'
- id: DeliveryGreyscale
- decals:
- 766: 45,-1
- - node:
- color: '#FF0000FF'
- id: DeliveryGreyscale
- decals:
- 1249: 65,6
- 1250: 67,6
- 1251: 68,7
- 1252: 70,7
- 1253: 67,3
- - node:
- color: '#DA8B8BFF'
- id: DiagonalCheckerAOverlay
- decals:
- 16165: 78,1
- 16166: 82,1
- 16167: 83,1
- 16168: 81,1
- 16169: 84,1
- 16170: 86,1
- 16171: 88,1
- 16172: 87,1
- 16173: 77,1
- 16174: 79,1
- - node:
- color: '#9FED5896'
- id: DiagonalCheckerBOverlay
- decals:
- 991: 0,-15
- 992: 0,-16
- 993: -1,-15
- 994: -1,-16
- - node:
- color: '#B18BDAFF'
- id: DiagonalCheckerBOverlay
- decals:
- 13137: -8,-34
- 13138: -7,-34
- 13139: -7,-33
- 13140: -8,-33
- 13141: -8,-32
- 13142: -7,-32
- 13143: -7,-32
- - node:
- color: '#DABC8BFF'
- id: DiagonalCheckerBOverlay
- decals:
- 9993: 5,-32
- 9994: 5,-33
- 9995: 5,-34
- 9996: 6,-34
- 9997: 6,-33
- 9998: 6,-32
- - node:
- color: '#FFFFFF02'
- id: DiagonalOverlay
- decals:
- 14892: -16,23
- 14893: -15,23
- 14894: -14,23
- 14895: -13,23
- 14896: -6,23
- 14897: -5,23
- 14898: -4,23
- 14899: -3,23
- 14900: -19,16
- 14901: -19,17
- 14902: -19,18
- 14903: -19,19
- 14904: -19,9
- 14905: -19,10
- 14906: -19,11
- 14907: -19,12
- 14908: -22,30
- 14909: -22,31
- 14910: -22,32
- 14911: -22,33
- 14912: -21,34
- 14913: -21,33
- 14914: -21,32
- 14915: -21,30
- 14916: -21,29
- 14917: -21,31
- 14918: -19,27
- 14919: -19,28
- 14920: -19,29
- 14921: -19,32
- 14922: -19,31
- 14923: -19,36
- 14924: -19,35
- 14925: -19,34
- 14926: -23,41
- 14927: -19,48
- 14928: -19,47
- 14929: -19,46
- 14930: -17,47
- 14931: -17,48
- 14932: -16,48
- 14933: -16,49
- 14934: -17,49
- 14935: -17,50
- 14936: -16,50
- 14937: -17,51
- 14938: -19,52
- 14939: -19,51
- 14940: -19,50
- 14941: -22,49
- 14942: -22,50
- 14943: -21,50
- 14944: -21,51
- 14945: -21,49
- 14946: -22,48
- 14947: -21,47
- 14948: -21,48
- 14949: -18,57
- 14950: -19,57
- 14951: -20,57
- 14952: -11,57
- 14953: -12,57
- 14954: -13,57
- 14955: -4,57
- 14956: -5,57
- 14957: -6,57
- 14958: 2,57
- 14959: 1,57
- 14960: 0,57
- 14961: -5,64
- 14962: -5,63
- 14963: -5,62
- 14964: -5,61
- 14965: -6,68
- 14966: -5,68
- 14967: -4,68
- 14968: -13,68
- 14969: -11,68
- 14970: -12,68
- 14971: -20,68
- 14972: -19,68
- 14973: -18,68
- 14974: -25,68
- 14975: -26,68
- 14976: -24,68
- 14977: -29,68
- 14978: -30,68
- 14979: -31,68
- 14980: -30,75
- 14981: -30,74
- 14982: -30,73
- 14983: -30,72
- 14984: -30,82
- 14985: -30,81
- 14986: -30,80
- 14987: -30,79
- 14988: -30,86
- 14989: -30,85
- 14990: -30,88
- 14991: -30,95
- 14992: -30,94
- 14993: -30,92
- 14994: -30,93
- 14995: -12,94
- 14996: -12,93
- 14997: -12,92
- 14998: -12,95
- 14999: -12,85
- 15000: -12,86
- 15001: -12,87
- 15002: -12,88
- 15003: -12,79
- 15004: -12,80
- 15005: -12,81
- 15006: -12,82
- 15007: -12,72
- 15008: -12,73
- 15009: -12,74
- 15010: -12,75
- 15011: 2,68
- 15012: 1,68
- 15013: 0,68
- 15014: 7,68
- 15015: 6,68
- 15016: 5,68
- 15017: 6,74
- 15018: 6,72
- 15019: 6,73
- 15020: 6,75
- 15021: 6,81
- 15022: 6,82
- 15023: 6,80
- 15024: 6,79
- 15025: -11,49
- 15026: -10,49
- 15027: -6,49
- 15028: -5,49
- 15029: -19,2
- 15030: -19,3
- 15031: -19,4
- 15032: -19,5
- 15033: -12,14
- 15034: -12,15
- 15035: -6,14
- 15036: -7,14
- 15037: -8,14
- 15038: -9,14
- 15039: -10,14
- 15040: 1,16
- 15041: 0,16
- 15042: -2,16
- 15043: -3,16
- 15044: -1,16
- 15045: 8,14
- 15046: 7,14
- 15047: 6,14
- 15048: 4,14
- 15049: 5,14
- 15050: 10,15
- 15051: 10,14
- 15052: 17,18
- 15053: 17,19
- 15054: 17,17
- 15055: 17,16
- 15056: 14,23
- 15057: 13,23
- 15058: 12,23
- 15059: 11,23
- 15060: 1,23
- 15061: 2,23
- 15062: 3,23
- 15063: 4,23
- 15064: 17,9
- 15065: 17,10
- 15066: 17,11
- 15067: 17,12
- 15068: 17,3
- 15069: 17,2
- 15070: 17,4
- 15071: 17,5
- 15072: 24,5
- 15073: 23,5
- 15074: 22,5
- 15075: 21,5
- 15076: 31,5
- 15077: 30,5
- 15078: 29,5
- 15079: 28,5
- 15080: 17,-5
- 15081: 17,-4
- 15082: 17,-3
- 15083: 17,-2
- 15084: 17,-17
- 15085: 17,-16
- 15086: 17,-15
- 15087: 17,-14
- 15088: 17,-13
- 15089: 17,-12
- 15090: 21,-11
- 15091: 22,-11
- 15092: 23,-11
- 15093: 24,-11
- 15094: 28,-11
- 15095: 29,-11
- 15096: 30,-11
- 15097: 47,-20
- 15098: 46,-20
- 15099: 45,-20
- 15100: 44,-20
- 15101: 49,-20
- 15102: 50,-20
- 15103: 51,-20
- 15104: 52,-20
- 15105: 10,-20
- 15106: 11,-20
- 15107: 12,-20
- 15108: 13,-20
- 15109: 3,-20
- 15110: 4,-20
- 15111: 5,-20
- 15112: 6,-20
- 15113: -8,-20
- 15114: -7,-20
- 15115: -6,-20
- 15116: -5,-20
- 15117: -14,-20
- 15118: -13,-20
- 15119: -12,-20
- 15120: -15,-20
- 15121: -12,-26
- 15122: -12,-25
- 15123: -11,-25
- 15124: -11,-26
- 15125: -10,-26
- 15126: -10,-25
- 15127: -9,-25
- 15128: -9,-26
- 15129: -8,-26
- 15130: -8,-25
- 15131: 6,-25
- 15132: 7,-25
- 15133: 8,-25
- 15134: 9,-25
- 15135: 10,-25
- 15136: 10,-26
- 15137: 9,-26
- 15138: 8,-26
- 15139: 7,-26
- 15140: 6,-26
- 15141: -1,-27
- 15142: -1,-24
- 15143: -1,-25
- 15144: -1,-26
- 15145: -1,-34
- 15146: -1,-33
- 15147: -1,-32
- 15148: -1,-31
- 15149: -1,-35
- 15150: -1,-42
- 15151: -1,-40
- 15152: -1,-39
- 15153: -1,-50
- 15154: -1,-49
- 15155: -1,-48
- 15156: -1,-47
- 15157: -1,-46
- 15158: -1,-45
- 15159: -1,-44
- 15160: -1,-55
- 15161: -1,-54
- 15162: -1,-53
- 15163: -1,-52
- 15164: -1,-59
- 15165: -1,-60
- 15166: -1,-61
- 15167: -19,-12
- 15168: -19,-13
- 15169: -19,-14
- 15170: -19,-15
- 15171: -19,-16
- 15172: -19,-17
- 15173: -19,-2
- 15174: -19,-3
- 15175: -19,-4
- 15176: -19,-5
- 15177: -27,5
- 15178: -26,5
- 15179: -25,5
- 15180: -24,5
- 15181: -23,5
- 15182: -31,5
- 15183: -32,5
- 15184: -33,5
- 15185: -38,5
- 15186: -37,5
- 15187: -36,5
- 15188: -19,61
- 15189: -19,62
- 15190: -19,63
- 15191: -19,64
- 15192: 17,-40
- 15193: 17,-41
- 15194: 17,-42
- 15195: 17,-43
- 15196: 17,-45
- 15197: 17,-44
- 15198: 11,-35
- 15199: 12,-35
- 15200: 13,-35
- 15201: 17,-31
- 15202: 17,-32
- 15203: 17,-34
- 15204: 17,-33
- 15205: 27,-35
- 15206: 26,-35
- 15207: 25,-35
- 15208: 23,-35
- 15209: 22,-35
- 15210: 24,-35
- 15211: 32,-35
- 15212: 36,-35
- 15213: 35,-35
- 15214: 34,-35
- 15215: 33,-35
- 15216: 31,-35
- 15217: 27,-43
- 15218: 27,-44
- 15219: 27,-42
- 15220: 27,-41
- 15221: 27,-40
- 15222: 27,-51
- 15223: 27,-50
- 15224: 27,-49
- 15225: 27,-48
- 15226: 27,-47
- 15227: -18,-35
- 15228: -14,-35
- 15229: -15,-35
- 15230: -16,-35
- 15231: -17,-35
- 15232: -29,-35
- 15233: -28,-35
- 15234: -27,-35
- 15235: -26,-35
- 15236: -25,-35
- 15237: -24,-35
- 15238: -23,-26
- 15239: -23,-27
- 15240: -23,-28
- 15241: -23,-29
- 15242: -23,-30
- 15243: -29,-41
- 15244: -29,-40
- 15245: -29,-39
- 15246: -14,-43
- 15247: -14,-42
- 15248: -14,-41
- 15249: -14,-40
- 15250: -14,-39
- 15251: -14,-53
- 15252: -14,-52
- 15253: -14,-51
- 15254: -14,-50
- 15255: -14,-49
- 15256: -14,-48
- 15257: -14,-47
- 15258: 29,-49
- 15259: 29,-48
- 15260: 29,-47
- 15261: 29,-51
- 15262: 29,-52
- 15263: 29,-53
- 15264: 30,-46
- 15265: 31,-46
- 15266: 32,-46
- 15267: 33,-46
- 15268: 34,-46
- 15511: -30,87
- 15713: -1,-41
- 15872: -42,14
- 15873: -42,16
- 15874: -42,17
- 15875: -42,20
- 15876: -42,21
- 15877: -42,22
- 15878: -42,11
- 15879: -42,10
- 15880: -42,9
- 15893: -42,15
- 19359: -15,-9
- 19360: -14,-9
- 19361: -13,-9
- 19362: -12,-9
- 19363: -9,-9
- 19364: -8,-9
- 19365: -7,-9
- 19366: -6,-9
- 19367: -3,-9
- 19368: -2,-9
- 19369: -1,-9
- 19370: 0,-9
- 19371: 1,-9
- 19372: 4,-9
- 19373: 5,-9
- 19374: 6,-9
- 19375: 7,-9
- 19376: 10,-9
- 19377: 11,-9
- 19378: 12,-9
- 19379: 13,-9
- 20134: -14,28
- 20135: -14,27
- 20136: -14,26
- 20137: -13,26
- 20138: -12,26
- 20139: -11,27
- 20140: -11,28
- 20141: -11,29
- 20142: -11,30
- 20143: -12,30
- 20144: -11,31
- 20145: -11,32
- 20146: -11,33
- 20147: -12,34
- 20148: -13,34
- 20149: -14,34
- 20150: -14,33
- 20151: -14,32
- 20152: -14,31
- 20153: -15,31
- 20154: -15,30
- 20155: -15,29
- 20156: -10,30
- 20157: -9,30
- 20158: -9,34
- 20159: -10,34
- 20160: -9,26
- 20161: -10,26
- 20224: -14,29
- 20441: 34,-14
- 20442: 34,-13
- 20443: 34,-12
- 20444: 34,-11
- 20445: 34,-10
- 20446: 35,-9
- 20447: 36,-9
- 20448: 37,-9
- 20449: 39,-9
- 20450: 38,-9
- 20451: 40,-10
- 20452: 40,-11
- 20453: 40,-12
- 20454: 39,-12
- 20455: 38,-12
- 20456: 36,-12
- 20457: 35,-12
- 20458: 37,-12
- 20459: 35,-15
- 20460: 36,-15
- 20461: 37,-15
- 20462: 38,-15
- 20463: 39,-15
- 20464: 40,-14
- 20465: 40,-13
- - node:
- angle: 3.141592653589793 rad
- color: '#4A0000C0'
- id: Dirt
- decals:
- 14142: -34,-79
- 14143: -35,-79
- 14144: -35,-78
- 14145: -35,-77
- 14146: -34,-77
- 14147: -33,-77
- 14148: -32,-77
- 14149: -31,-77
- 14150: -31,-78
- 14151: -31,-79
- 14152: -32,-80
- 14153: -30,-79
- 14154: -36,-79
- 14155: -36,-78
- 14156: -33,-76
- 14157: -34,-76
- 14158: -35,-76
- 14159: -32,-76
- 14160: -33,-79
- 14161: -34,-80
- 14162: -35,-80
- 14163: -37,-80
- 14164: -37,-77
- 14165: -37,-76
- 14166: -37,-73
- 14167: -29,-73
- 14168: -29,-74
- 14169: -29,-75
- 14170: -33,-73
- 14171: -32,-73
- 14172: -30,-75
- - node:
- angle: 3.141592653589793 rad
- color: '#4A0000FF'
- id: Dirt
- decals:
- 14139: -34,-78
- 14140: -32,-78
- 14141: -32,-79
- - node:
- color: '#DABC8B7F'
- id: Dirt
- decals:
- 13910: -40,-68
- 13911: -38,-66
- 13912: -39,-66
- 13913: -41,-66
- 13914: -41,-67
- 13915: -40,-66
- 13916: -41,-65
- 13917: -41,-63
- - node:
- color: '#DABC8B95'
- id: Dirt
- decals:
- 13908: -37,-66
- 13909: -37,-67
- - node:
- color: '#DABC8BA7'
- id: Dirt
- decals:
- 13918: -39,-65
- 13919: -40,-65
- 13920: -37,-65
- 13921: -38,-65
- 13922: -38,-67
- 13923: -34,-66
- 13924: -34,-65
- 13925: -33,-66
- 13926: -34,-67
- 13927: -34,-68
- 13928: -30,-66
- 13929: -31,-66
- 13930: -30,-65
- 13931: -31,-65
- 13932: -32,-66
- 13933: -32,-66
- 13934: -32,-65
- 13935: -33,-68
- 13936: -33,-67
- 13937: -32,-67
- 13938: -32,-68
- 13939: -31,-68
- 13940: -31,-67
- - node:
- color: '#DABC8BAE'
- id: Dirt
- decals:
- 13907: -37,-65
- - node:
- color: '#DABC8BD0'
- id: Dirt
- decals:
- 13903: -37,-68
- 13904: -36,-67
- 13905: -36,-68
- 13906: -36,-66
- - node:
- color: '#DC5F31FF'
- id: Dirt
- decals:
- 19273: 60,-40
- 19274: 59,-40
- 19275: 59,-41
- 19276: 58,-41
- 19277: 60,-41
- 19278: 61,-41
- 19279: 62,-40
- 19280: 62,-41
- 19281: 58,-42
- 19282: 59,-42
- 19283: 60,-42
- 19284: 63,-40
- 19285: 25,-66
- 19286: 26,-67
- 19287: 25,-69
- 19288: 27,-68
- 19289: 27,-67
- 19290: -44,-66
- 19291: -43,-65
- 19292: -44,-64
- 19293: -45,-64
- 19294: -45,-63
- 19295: -46,-63
- 19296: -44,-66
- 19297: -46,-68
- 19298: -46,-69
- 19299: -45,-68
- 19300: -46,-67
- 19301: -44,-65
- - node:
- color: '#FFFFFF2B'
- id: Dirt
- decals:
- 16860: -67,-40
- 16861: -68,-40
- 16862: -68,-41
- 16863: -69,-40
- 16864: -66,-40
- 16865: -65,-40
- 16866: -65,-41
- 16867: -64,-41
- 16868: -63,-41
- 16869: -63,-41
- 16870: -63,-42
- 16871: -63,-44
- 16872: -64,-44
- 16873: -65,-44
- 16874: -66,-44
- 16875: -67,-44
- 16876: -68,-46
- 16877: -69,-44
- - node:
- color: '#FFFFFF4D'
- id: Dirt
- decals:
- 18992: -59,-46
- 18993: -60,-46
- 18994: -60,-45
- 18995: -60,-44
- 18996: -59,-44
- 18997: -59,-45
- 18998: -58,-45
- 18999: -58,-44
- 19000: -60,-43
- 19001: -60,-43
- - node:
- color: '#FFFFFF50'
- id: Dirt
- decals:
- 16575: 91,-1
- 16576: 92,-1
- 16577: 93,-1
- 16578: 92,0
- 16579: 91,7
- 16580: 91,6
- 16581: 92,7
- 16582: 96,5
- 16583: 97,5
- 16584: 97,4
- 16585: 97,3
- 16586: 96,4
- 16633: 83,4
- 16634: 84,4
- 16635: 85,5
- 16636: 85,4
- 16637: 86,4
- 16638: 86,5
- 16639: 87,6
- 16640: 87,5
- 16641: 89,9
- 16642: 90,9
- 16643: 91,9
- 16644: 92,10
- 16645: 91,9
- - node:
- color: '#FFFFFF60'
- id: Dirt
- decals:
- 17206: -41,-11
- 17207: -40,-11
- 17208: -39,-10
- 17209: -39,-10
- 17210: -40,-10
- 17211: -40,-9
- 17212: -41,-9
- 17213: -41,-10
- 17214: -39,-9
- 17215: -39,-11
- 17216: -38,-11
- - node:
- color: '#FFFFFF66'
- id: Dirt
- decals:
- 16725: -62,-43
- 16726: -62,-42
- 16727: -62,-44
- 16728: -63,-43
- 16729: -72,-42
- 16730: -71,-42
- 16731: -70,-42
- 16732: -71,-41
- 16733: -72,-41
- 16734: -72,-40
- 16735: -71,-40
- 16736: -70,-40
- 16737: -70,-43
- 16738: -70,-44
- 16739: -70,-45
- 16740: -69,-45
- 16741: -68,-45
- 16742: -68,-46
- 16743: -69,-46
- 16744: -66,-42
- 16745: -66,-43
- 16746: -65,-43
- 16747: -66,-41
- 16748: -65,-42
- 16749: -68,-43
- 16750: -67,-43
- 16751: -68,-42
- 16752: -67,-41
- 16753: -68,-44
- 16754: -64,-42
- 16755: -64,-43
- 16756: -63,-43
- - node:
- color: '#FFFFFF6C'
- id: Dirt
- decals:
- 19411: 39,-53
- 19412: 40,-53
- 19413: 39,-52
- 19414: 40,-52
- 19415: 40,-52
- 19416: 40,-51
- 19417: 39,-51
- 19418: 39,-50
- 19419: 41,-50
- 19420: 42,-50
- 19421: 42,-51
- 19422: 41,-51
- 19423: 41,-52
- 19424: 41,-53
- 19425: 42,-53
- 19426: 42,-54
- 19427: 42,-54
- 19428: 41,-55
- 19429: 41,-56
- 19430: 42,-56
- 19431: 39,-55
- 19432: 39,-54
- 19433: 41,-54
- 19434: 41,-54
- 19435: 44,-50
- 19436: 45,-50
- 19437: 45,-51
- 19438: 44,-51
- 19439: 44,-53
- 19440: 45,-54
- 19441: 45,-55
- 19442: 45,-55
- 19443: 44,-54
- 19444: 44,-53
- 19445: 45,-53
- 19446: 43,-50
- 19447: 43,-51
- 19448: 43,-52
- 19449: 43,-54
- 19450: 43,-54
- 19451: 43,-56
- 19452: 46,-55
- 19453: 46,-56
- 19454: 46,-52
- 19455: 50,-50
- 19456: 50,-51
- 19457: 50,-52
- 19458: 49,-53
- 19459: 49,-53
- 19460: 51,-53
- 19461: 51,-52
- 19462: 50,-53
- 19463: 50,-55
- 19464: 49,-55
- 19465: 49,-56
- 19466: 50,-56
- 19467: 51,-56
- 19468: 51,-54
- 19469: 49,-54
- 19470: 52,-56
- 19471: 52,-55
- 19472: 52,-54
- 19473: 52,-53
- 19474: 52,-52
- 19475: 52,-51
- 19476: 52,-51
- 19477: 52,-50
- 19478: 53,-51
- 19479: 53,-53
- 19480: 53,-54
- 19481: 53,-55
- 19482: 53,-56
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFAA'
- id: Dirt
- decals:
- 14235: -34,-63
- 14236: -32,-63
- 14237: -33,-62
- 14238: -33,-61
- 14239: -33,-60
- 14240: -34,-61
- 14241: -31,-61
- 14242: -31,-60
- - node:
- color: '#FFFFFFFF'
- id: Dirt
- decals:
- 667: 38,-21
- 903: -32,49
- 4125: 18,70
- 4126: 23,66
- 4166: 15,60
- 4169: 20,61
- 4196: -34,59
- 4197: -35,59
- 4198: -34,60
- 4199: -38,60
- 4200: -38,59
- 4225: -32,62
- 4228: -24,65
- 11534: 32,-68
- 11535: 41,-67
- 11536: 40,-67
- 11537: 43,-64
- 11538: 45,-62
- 11539: 41,-60
- 11540: 41,-61
- 11541: 42,-75
- 11542: 35,-71
- 11543: 36,-71
- 11544: 35,-70
- 11545: 34,-65
- 11546: 31,-61
- 11547: 32,-61
- 11548: 32,-61
- 11570: 27,-55
- 13543: 43,-33
- 13601: 39,-53
- 13710: 52,-37
- 13719: 52,-37
- 13754: 56,-36
- 13844: -33,-65
- 13941: -37,-64
- 13944: -41,-64
- 20614: -30,-23
- 20615: -29,-23
- 20616: -28,-23
- 20617: -29,-24
- 20618: -30,-24
- 20752: -71,-38
- 20753: -72,-37
- 20754: -72,-35
- 20755: -72,-34
- 20756: -71,-34
- 20757: -67,-34
- 20758: -65,-34
- 20759: -68,-34
- 20760: -62,-37
- 20761: -68,-38
- 20762: -69,-38
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: Dirt
- decals:
- 261: 52,-43
- 337: 65,-10
- 345: -39,-78
- 346: -27,-77
- 353: 24,-55
- 366: -77,-32
- 367: -77,-26
- 976: 35,34
- 977: 36,37
- 978: 34,38
- 979: 40,29
- 980: 42,30
- 986: 28,-61
- 987: 34,-66
- 988: 33,-70
- 989: 35,-69
- 990: 31,-61
- 1087: -33,-47
- 1447: -42,63
- 1448: -41,63
- 1449: -42,60
- 1633: -38,29
- 1634: -39,26
- 1635: -38,25
- 1662: -60,-34
- 1663: -59,-36
- 1664: -58,-35
- 1665: -59,-34
- 1666: -60,-39
- 1667: -58,-39
- 1668: -58,-37
- 1669: -60,-36
- 1708: -59,-43
- 1709: -58,-42
- 1710: -58,-41
- 1711: -60,-42
- 1931: -66,-29
- 1932: -58,-26
- 1933: -60,-28
- 1934: -58,-29
- 2045: -72,-28
- 2046: -72,-26
- 2047: -69,-25
- 2048: -70,-28
- 2049: -70,-29
- 2050: -70,-25
- 2051: -69,-23
- 2052: -69,-24
- 2138: 34,-20
- 2139: 33,-20
- 2140: 33,-19
- 2141: 36,-21
- 2142: 35,-23
- 2143: 37,-23
- 2144: 37,-24
- 2145: 41,-24
- 2146: 40,-24
- 2147: 40,-27
- 2148: 41,-28
- 2149: 43,-29
- 2150: 26,-20
- 2151: 24,-21
- 2152: 23,-23
- 2153: 24,-23
- 2154: 23,-23
- 2155: 22,-21
- 2156: 21,-22
- 2157: 20,-21
- 2158: 21,-21
- 2159: 22,-18
- 2160: 52,-29
- 2161: 52,-29
- 2162: 52,-31
- 2163: 52,-34
- 2164: 51,-39
- 2165: 52,-42
- 2166: 52,-45
- 2167: 51,-48
- 2168: 51,-48
- 2169: 47,-48
- 2170: 44,-48
- 2171: 41,-48
- 2172: 37,-47
- 2173: 36,-49
- 2174: 37,-56
- 2175: 34,-56
- 2176: 32,-55
- 2177: 30,-55
- 4245: 11,79
- 16900: -71,-35
- 16901: -67,-36
- 16902: -71,-37
- 16903: -66,-35
- 16904: -63,-37
- 16905: -63,-34
- 16906: -63,-34
- 16907: -69,-37
- 16908: -69,-35
- 16909: -70,-36
- 16910: -66,-37
- 16911: -65,-37
- 16912: -65,-36
- 16913: -65,-35
- 16914: -69,-36
- 16915: -69,-36
- 16917: -63,-36
- 16923: -68,-35
- 16924: -65,-37
- 16925: -63,-36
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: Dirt
- decals:
- 14094: -33,-72
- 14232: -30,-61
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFAA'
- id: DirtHeavy
- decals:
- 14243: -32,-60
- 14244: -32,-61
- 14245: -34,-60
- 14246: -32,-62
- 14247: -31,-62
- 14273: -39,-56
- 14274: -39,-55
- 14276: -38,-56
- 14277: -38,-55
- 14278: -38,-55
- 14280: -37,-55
- 14281: -37,-56
- - node:
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
- 4074: 23,71
- 4076: 17,69
- 4106: 18,67
- 4107: 20,66
- 4108: 19,66
- 4109: 23,67
- 4120: 23,67
- 4121: 22,67
- 4161: 21,61
- 4162: 19,63
- 4167: 12,59
- 4168: 18,62
- 4201: -38,62
- 4202: -39,62
- 4203: -42,61
- 4207: -37,60
- 4208: -36,59
- 4209: -36,60
- 4226: -30,62
- 4227: -28,60
- 4229: -24,63
- 11400: 35,-61
- 11401: 34,-60
- 11402: 31,-68
- 11403: 30,-70
- 11404: 29,-70
- 11405: 27,-67
- 11406: 27,-66
- 11407: 29,-66
- 11408: 33,-66
- 11409: 33,-66
- 11410: 40,-71
- 11411: 40,-71
- 11412: 38,-72
- 11413: 38,-71
- 11414: 39,-70
- 11415: 40,-70
- 11416: 41,-73
- 11417: 41,-68
- 11418: 41,-68
- 11419: 41,-66
- 11420: 39,-66
- 11421: 38,-67
- 11422: 35,-72
- 11423: 34,-71
- 11424: 35,-67
- 11425: 37,-66
- 11426: 35,-65
- 11427: 34,-63
- 11428: 35,-61
- 11429: 38,-62
- 11430: 40,-63
- 11431: 40,-61
- 11432: 40,-60
- 11433: 42,-62
- 11434: 43,-63
- 11568: 27,-56
- 11569: 27,-56
- 11574: 26,-55
- 11575: 26,-55
- 11576: 28,-55
- 11577: 28,-58
- 11578: 40,-68
- 11579: 38,-68
- 11675: -60,-39
- 11676: -60,-42
- 11677: -60,-41
- 11678: -60,-41
- 13279: -46,-23
- 13280: -47,-23
- 13281: -47,-22
- 13282: -46,-22
- 13283: -45,-22
- 13284: -45,-23
- 13361: -47,-25
- 13362: -46,-25
- 13363: -45,-26
- 13364: -45,-27
- 13365: -46,-29
- 13366: -45,-29
- 13367: -46,-30
- 13368: -46,-30
- 13369: -45,-31
- 13370: -46,-31
- 13371: -46,-28
- 13372: -46,-28
- 13373: -42,-29
- 13374: -42,-29
- 13375: -41,-27
- 13376: -41,-27
- 13377: -40,-28
- 13378: -41,-29
- 13379: -42,-27
- 13380: -42,-26
- 13381: -41,-28
- 13382: -41,-29
- 13383: -40,-27
- 13384: -39,-27
- 13385: -38,-26
- 13386: -37,-27
- 13387: -37,-28
- 13388: -39,-29
- 13389: -39,-29
- 13390: -36,-29
- 13391: -36,-28
- 13392: -37,-27
- 13393: -38,-27
- 13394: -35,-29
- 13395: -34,-29
- 13396: -35,-27
- 13397: -35,-27
- 13425: -40,-24
- 13426: -39,-23
- 13427: -39,-22
- 13428: -38,-23
- 13429: -38,-24
- 13430: -37,-23
- 13431: -37,-22
- 13432: -34,-22
- 13433: -34,-24
- 13434: -33,-24
- 13435: -33,-23
- 13436: -43,-23
- 13437: -43,-22
- 13438: -42,-22
- 13439: -41,-23
- 13440: -43,-27
- 13441: -42,-28
- 13442: -42,-29
- 13443: -43,-28
- 13444: -40,-27
- 13445: -39,-29
- 13446: -37,-29
- 13447: -36,-27
- 13448: -35,-28
- 13449: -38,-30
- 13450: -38,-30
- 13451: -34,-28
- 13452: -34,-28
- 13453: -34,-30
- 13454: -35,-29
- 13455: -37,-27
- 13456: -38,-26
- 13457: -40,-29
- 13458: -42,-30
- 13459: -42,-31
- 13460: -42,-32
- 13461: -43,-33
- 13462: -40,-33
- 13463: -42,-34
- 13464: -37,-32
- 13465: -37,-32
- 13466: -39,-34
- 13467: -39,-32
- 13468: -38,-34
- 13469: -37,-34
- 13470: -34,-33
- 13471: -34,-32
- 13472: -33,-33
- 13473: -35,-34
- 13474: -33,-34
- 13475: -35,-32
- 13476: -34,-33
- 13500: -29,-27
- 13501: -30,-27
- 13502: -30,-26
- 13503: -27,-26
- 13504: -27,-27
- 13505: -27,-30
- 13506: -26,-31
- 13507: -28,-31
- 13508: -30,-31
- 13509: -30,-29
- 13510: -31,-28
- 13511: -31,-29
- 13512: -31,-31
- 13513: -28,-31
- 13514: -27,-31
- 13515: -27,-32
- 13516: -30,-32
- 13517: -30,-32
- 13518: -30,-31
- 13519: -29,-31
- 13520: -29,-31
- 13521: -30,-30
- 13522: -30,-29
- 13523: -30,-27
- 13544: 43,-34
- 13545: 44,-33
- 13546: 42,-31
- 13547: 44,-32
- 13548: 44,-31
- 13549: 45,-32
- 13550: 45,-33
- 13551: 46,-32
- 13552: 47,-31
- 13553: 48,-32
- 13554: 48,-33
- 13555: 48,-32
- 13556: 47,-34
- 13557: 46,-35
- 13558: 46,-35
- 13559: 48,-35
- 13560: 48,-36
- 13561: 48,-36
- 13562: 47,-36
- 13563: 47,-36
- 13564: 44,-35
- 13565: 45,-33
- 13566: 46,-33
- 13567: 48,-33
- 13568: 48,-34
- 13569: 49,-34
- 13570: 49,-33
- 13571: 49,-34
- 13572: 49,-35
- 13573: 47,-33
- 13574: 47,-32
- 13600: 48,-31
- 13674: 39,-51
- 13675: 41,-52
- 13676: 41,-53
- 13677: 46,-53
- 13678: 47,-53
- 13679: 46,-54
- 13680: 46,-51
- 13681: 46,-52
- 13709: 52,-37
- 13720: 52,-37
- 13721: 53,-36
- 13723: 55,-39
- 13724: 56,-39
- 13725: 55,-38
- 13726: 56,-36
- 13727: 53,-35
- 13742: 55,-36
- 13743: 54,-36
- 13744: 53,-37
- 13745: 53,-38
- 13746: 54,-38
- 13747: 54,-37
- 13748: 54,-35
- 13845: -37,-63
- 13846: -36,-62
- 13863: -38,-63
- 13864: -38,-63
- 13865: -37,-63
- 13866: -38,-62
- 13867: -38,-62
- 13868: -38,-61
- 13869: -37,-60
- 13870: -36,-60
- 13871: -38,-60
- 13872: -38,-61
- 13873: -37,-62
- 13874: -37,-62
- 13875: -36,-61
- 13876: -36,-63
- 13877: -36,-63
- 13878: -37,-61
- 13894: -41,-62
- 13895: -40,-63
- 13942: -37,-64
- 13943: -41,-64
- 13948: -37,-59
- 16587: 76,0
- 16588: 77,0
- 16589: 78,0
- 16602: 99,-2
- 16603: 99,-3
- 16604: 99,-4
- 16605: 100,-4
- 16606: 100,-4
- 16607: 100,-2
- 16620: 91,-3
- 16621: 84,2
- 16626: 83,-3
- 16627: 83,-4
- 16628: 84,-4
- 16629: 88,-3
- 16630: 87,-4
- 16646: 89,9
- 16647: 89,10
- 16648: 91,10
- 16649: 93,10
- 16650: 93,9
- 16651: 92,9
- 16655: 76,4
- 16656: 76,6
- 16657: 93,6
- 16663: 95,7
- 16664: 97,7
- 16665: 97,6
- 16768: -71,-40
- 16769: -70,-40
- 16770: -70,-41
- 16771: -69,-41
- 16772: -69,-42
- 16773: -70,-43
- 16774: -70,-43
- 16775: -70,-43
- 16776: -66,-41
- 16777: -64,-40
- 16778: -62,-40
- 16779: -62,-41
- 16780: -63,-43
- 16781: -65,-43
- 16782: -66,-43
- 16783: -68,-45
- 16784: -69,-46
- 16785: -70,-46
- 16800: -67,-46
- 16801: -66,-46
- 16802: -66,-47
- 16803: -65,-48
- 16804: -65,-47
- 16805: -64,-46
- 16806: -63,-47
- 16807: -62,-47
- 16808: -62,-48
- 16929: -60,-49
- 16930: -60,-48
- 16931: -59,-50
- 16941: 10,69
- 16942: 10,70
- 16943: 11,70
- 16944: 11,69
- 16945: 10,67
- 16946: 11,66
- 16947: 12,66
- 16948: 12,68
- 16985: -39,-7
- 16986: -39,-6
- 16987: -40,-6
- 16988: -40,-7
- 16999: -39,1
- 17000: -39,1
- 17001: -38,0
- 17002: -38,0
- 17003: -37,2
- 17004: -37,2
- 17005: -39,0
- 17006: -37,1
- 17007: -37,2
- 17014: -43,-12
- 17015: -43,-11
- 17016: -43,-10
- 17017: -43,-10
- 17018: -44,-12
- 17019: -44,-12
- 17020: -43,-10
- 17021: -42,-9
- 17022: -42,-10
- 17023: -43,-12
- 17024: -44,-13
- 17025: -44,-13
- 17026: -44,-14
- 17027: -44,-16
- 17028: -44,-17
- 17029: -44,-18
- 17030: -44,-20
- 17031: -42,-20
- 17032: -42,-20
- 17033: -39,-20
- 17034: -37,-20
- 17035: -36,-20
- 17036: -36,-20
- 17037: -38,-20
- 17038: -38,-20
- 17039: -41,-20
- 17040: -42,-20
- 17041: -43,-20
- 17042: -44,-20
- 17043: -36,-20
- 17044: -31,-20
- 17045: -30,-20
- 17046: -30,-20
- 17047: -32,-20
- 17048: -32,-20
- 17049: -32,-18
- 17050: -31,-18
- 17051: -30,-18
- 17052: -29,-18
- 17053: -28,-18
- 17054: -28,-19
- 17055: -28,-20
- 17056: -29,-20
- 17057: -24,-22
- 17058: -24,-22
- 17059: -25,-22
- 17060: -25,-22
- 17061: -24,-21
- 17062: -23,-21
- 17063: -23,-22
- 17064: -22,-22
- 17065: -22,-21
- 17066: -23,-21
- 17067: -25,-21
- 17068: -25,-20
- 17069: -22,-20
- 17070: -22,-20
- 17071: -29,-18
- 17794: -2,32
- 17795: -1,32
- 17796: -1,32
- 17797: -2,27
- 17798: -2,27
- 17799: -1,27
- 17800: 0,27
- 17801: -1,27
- 17802: -2,27
- 17812: 0,39
- 17813: 0,40
- 17814: 0,40
- 17815: 2,40
- 17816: 2,40
- 17817: 0,38
- 17818: -1,36
- 17819: -1,35
- 17820: 0,34
- 17821: 0,34
- 17822: 0,42
- 17823: 1,42
- 17824: 1,42
- 17825: 0,42
- 17826: 0,48
- 17827: 0,48
- 17828: 0,48
- 17829: 0,47
- 17837: 6,52
- 17838: 7,52
- 17839: 6,50
- 18948: -53,-38
- 18949: -53,-37
- 18950: -52,-36
- 18951: -51,-36
- 18952: -52,-38
- 18953: -51,-38
- 18954: -51,-37
- 18955: -50,-37
- 18956: -50,-38
- 18957: -52,-37
- 18958: -52,-37
- 18959: -51,-37
- 18960: -50,-38
- 18961: -49,-38
- 18962: -48,-38
- 18963: -50,-37
- 18972: -52,-40
- 18973: -50,-40
- 18974: -51,-41
- 18990: -58,-46
- 19258: 61,-41
- 19259: 60,-41
- 19260: 59,-41
- 19261: 60,-40
- 19262: 59,-40
- 19263: 59,-40
- 19264: 59,-40
- 19265: 59,-40
- 19266: 60,-40
- 19267: 62,-40
- 19268: 61,-41
- 19269: 61,-41
- 19483: 43,-42
- 19484: 43,-41
- 19485: 43,-39
- 19486: 43,-38
- 19487: 45,-38
- 19488: 47,-38
- 19489: 49,-38
- 19490: 49,-39
- 19491: 48,-41
- 19492: 48,-43
- 19493: 46,-43
- 19494: 45,-43
- 19495: 44,-41
- 19496: 46,-40
- 19497: 47,-40
- 19523: 44,-48
- 19524: 45,-48
- 19525: 46,-48
- 19526: 43,-52
- 19527: 43,-53
- 19528: 43,-53
- 19529: 56,-41
- 20596: -31,-22
- 20597: -27,-23
- 20688: -72,-34
- 20689: -71,-34
- 20690: -72,-34
- 20691: -72,-36
- 20692: -72,-36
- 20693: -72,-37
- 20694: -72,-38
- 20695: -66,-38
- 20696: -66,-38
- 20697: -64,-38
- 20698: -64,-38
- 20699: -66,-38
- 20700: -67,-38
- 20701: -69,-38
- 20702: -71,-38
- 20703: -70,-38
- 20704: -68,-38
- 20705: -68,-38
- 20706: -65,-38
- 20707: -65,-38
- 20708: -64,-38
- 20709: -63,-38
- 20710: -62,-38
- 20711: -62,-36
- 20712: -62,-36
- 20713: -62,-38
- 20714: -62,-37
- 20715: -65,-34
- 20716: -66,-34
- 20717: -67,-34
- 20718: -69,-34
- 20719: -69,-34
- 20720: -67,-34
- 20721: -69,-34
- 20722: -69,-34
- 20723: -67,-34
- 20724: -67,-34
- 20725: -66,-34
- 20726: -65,-34
- 20727: -69,-34
- 20728: -66,-34
- 20729: -65,-34
- 20730: -63,-37
- 20731: -65,-38
- 20732: -67,-38
- 20733: -69,-38
- 20734: -70,-38
- 20735: -72,-38
- 20736: -72,-37
- 20737: -72,-36
- 20738: -72,-35
- 20739: -72,-35
- 20740: -70,-35
- 20741: -70,-35
- 20742: -70,-35
- 20743: -68,-35
- 20744: -67,-35
- 20745: -67,-36
- 20746: -64,-37
- 20747: -63,-37
- 20748: -62,-37
- 20749: -62,-37
- 20750: -62,-38
- 20751: -62,-36
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
- 254: 42,-29
- 255: 44,-28
- 256: 46,-29
- 275: 46,-48
- 277: 40,-39
- 278: 41,-37
- 279: 41,-44
- 293: 51,-36
- 294: 52,-40
- 303: 56,-11
- 312: -24,59
- 317: -31,18
- 318: -36,33
- 328: -29,24
- 330: -26,-18
- 332: -37,-18
- 333: -29,-20
- 349: 7,-56
- 355: -46,-20
- 360: -38,-5
- 362: -42,-6
- 364: -53,-34
- 370: -47,-27
- 375: -40,-17
- 402: -39,-46
- 403: -42,-47
- 406: -43,-44
- 409: -38,-28
- 734: -15,-32
- 1016: -36,-37
- 1017: -37,-37
- 1018: -39,-37
- 1019: -38,-36
- 1020: -39,-36
- 1021: -38,-37
- 1022: -40,-36
- 1023: -41,-37
- 1024: -41,-36
- 1025: -36,-37
- 1026: -37,-37
- 1027: -38,-37
- 1028: -38,-36
- 1029: -35,-37
- 1030: -39,-37
- 1031: -39,-36
- 1032: -40,-36
- 1033: -40,-37
- 1034: -41,-37
- 1313: 25,59
- 1314: 25,60
- 1315: 27,56
- 1316: 26,56
- 1317: 30,56
- 1318: 31,56
- 1319: 31,58
- 1344: 18,56
- 1345: 18,56
- 1346: 20,56
- 1347: 11,56
- 1348: 10,56
- 1359: 15,65
- 1360: 14,68
- 1361: 14,68
- 1362: 14,67
- 1363: 15,66
- 1367: 12,72
- 1368: 13,72
- 1369: 14,60
- 1370: 14,59
- 1371: 16,59
- 1372: 16,58
- 1373: 16,58
- 1374: 18,59
- 1375: 17,61
- 1376: 17,62
- 1377: 12,62
- 1378: 19,61
- 1379: 21,63
- 1415: 15,62
- 1416: 16,62
- 1417: 18,61
- 1418: 22,69
- 1419: 23,70
- 1420: 19,70
- 1421: 18,69
- 1422: 17,69
- 1423: 17,71
- 1424: 20,71
- 1425: 20,72
- 1426: 18,72
- 1427: 14,68
- 1428: 15,68
- 1429: 15,69
- 1430: 22,72
- 1444: 24,66
- 1445: 9,66
- 1450: -40,60
- 1451: -41,59
- 1452: -40,62
- 1453: -42,62
- 1463: -28,58
- 1464: -30,57
- 1465: -30,57
- 1466: -30,58
- 1467: -31,57
- 1468: -24,57
- 1469: -25,57
- 1470: -24,55
- 1471: -24,56
- 1472: -25,57
- 1473: -31,58
- 1474: -36,57
- 1475: -37,57
- 1476: -40,57
- 1477: -42,57
- 1478: -42,56
- 1479: -42,53
- 1480: -42,51
- 1481: -42,48
- 1482: -42,48
- 1483: -41,49
- 1484: -42,49
- 1485: -41,50
- 1486: -42,47
- 1487: -42,45
- 1488: -42,44
- 1489: -42,43
- 1490: -42,42
- 1491: -40,42
- 1492: -40,42
- 1493: -38,42
- 1494: -37,42
- 1495: -36,42
- 1496: -36,39
- 1497: -36,37
- 1498: -37,37
- 1499: -38,37
- 1500: -39,37
- 1501: -41,37
- 1502: -45,37
- 1503: -45,38
- 1504: -45,40
- 1505: -44,40
- 1506: -44,41
- 1507: -45,41
- 1508: -43,36
- 1509: -43,34
- 1510: -43,32
- 1511: -43,30
- 1512: -43,28
- 1513: -43,30
- 1514: -43,26
- 1515: -43,25
- 1516: -41,25
- 1517: -41,25
- 1518: -36,25
- 1519: -36,24
- 1520: -36,23
- 1521: -37,23
- 1522: -39,23
- 1523: -38,23
- 1524: -33,23
- 1525: -32,23
- 1526: -31,22
- 1527: -31,22
- 1528: -31,21
- 1529: -31,23
- 1530: -30,23
- 1531: -29,25
- 1532: -28,25
- 1533: -24,26
- 1534: -23,26
- 1535: -26,17
- 1536: -25,17
- 1537: -25,17
- 1538: -31,13
- 1539: -31,12
- 1540: -31,10
- 1541: -31,8
- 1592: -39,54
- 1593: -40,54
- 1594: -40,53
- 1595: -39,52
- 1596: -38,53
- 1597: -38,54
- 1598: -38,54
- 1599: -37,53
- 1600: -37,55
- 1610: -39,44
- 1611: -37,44
- 1612: -36,44
- 1613: -36,45
- 1614: -38,46
- 1615: -40,44
- 1644: -39,29
- 1645: -39,29
- 1646: -41,27
- 1647: -66,-45
- 1648: -65,-41
- 1649: -68,-43
- 1650: -68,-43
- 1651: -60,-36
- 1652: -60,-35
- 1653: -60,-37
- 1654: -59,-37
- 1655: -59,-38
- 1656: -60,-39
- 1657: -58,-38
- 1658: -58,-39
- 1659: -58,-36
- 1660: -59,-35
- 1661: -58,-34
- 1670: -59,-42
- 1671: -60,-42
- 1672: -60,-43
- 1673: -60,-41
- 1674: -59,-41
- 1675: -59,-40
- 1676: -58,-43
- 1700: -58,-50
- 1701: -59,-51
- 1702: -60,-50
- 1703: -60,-49
- 1704: -58,-48
- 1705: -58,-48
- 1706: -59,-48
- 1707: -59,-49
- 1712: -38,-1
- 1713: -39,0
- 1714: -37,1
- 1715: -38,1
- 1716: -37,0
- 1717: -39,2
- 1718: -39,2
- 1749: -54,-47
- 1750: -52,-48
- 1751: -52,-48
- 1752: -51,-49
- 1753: -49,-48
- 1754: -48,-48
- 1755: -49,-47
- 1756: -50,-47
- 1757: -52,-47
- 1758: -49,-47
- 1759: -50,-46
- 1760: -49,-45
- 1761: -50,-44
- 1762: -50,-44
- 1763: -54,-45
- 1764: -55,-47
- 1765: -56,-46
- 1766: -55,-45
- 1767: -54,-44
- 1768: -55,-43
- 1769: -56,-44
- 1770: -54,-46
- 1771: -53,-47
- 1772: -50,-48
- 1773: -49,-48
- 1774: -48,-47
- 1775: -47,-48
- 1776: -50,-48
- 1777: -51,-48
- 1778: -48,-49
- 1779: -48,-47
- 1780: -47,-47
- 1781: -46,-48
- 1782: -47,-46
- 1783: -47,-45
- 1784: -46,-45
- 1785: -47,-45
- 1786: -47,-44
- 1787: -46,-44
- 1788: -46,-43
- 1789: -47,-44
- 1790: -47,-48
- 1791: -49,-48
- 1792: -49,-46
- 1793: -50,-46
- 1794: -49,-45
- 1795: -50,-44
- 1796: -51,-44
- 1797: -50,-43
- 1798: -53,-44
- 1799: -54,-44
- 1800: -54,-43
- 1801: -53,-44
- 1802: -53,-44
- 1803: -54,-44
- 1804: -52,-44
- 1805: -51,-44
- 1806: -50,-43
- 1807: -54,-44
- 1808: -55,-44
- 1809: -55,-44
- 1810: -55,-45
- 1811: -55,-46
- 1812: -56,-46
- 1813: -55,-47
- 1814: -52,-48
- 1815: -50,-49
- 1816: -49,-49
- 1817: -52,-48
- 1818: -53,-49
- 1819: -53,-49
- 1820: -54,-48
- 1821: -52,-49
- 1822: -47,-47
- 1823: -46,-47
- 1824: -56,-49
- 1825: -56,-49
- 1826: -56,-48
- 1827: -50,-48
- 1828: -47,-48
- 1829: -46,-47
- 1878: -66,-27
- 1879: -66,-26
- 1880: -65,-27
- 1881: -64,-29
- 1882: -62,-29
- 1883: -63,-29
- 1884: -61,-29
- 1885: -59,-29
- 1886: -60,-28
- 1887: -61,-28
- 1888: -63,-28
- 1889: -63,-27
- 1890: -61,-25
- 1891: -61,-25
- 1892: -61,-24
- 1893: -63,-24
- 1894: -63,-25
- 1895: -61,-26
- 1896: -61,-27
- 1897: -61,-23
- 1898: -62,-23
- 1899: -60,-23
- 1900: -60,-24
- 1901: -60,-25
- 1902: -59,-24
- 1903: -58,-24
- 1904: -58,-25
- 1905: -58,-27
- 1906: -58,-29
- 1907: -59,-28
- 1908: -59,-27
- 1909: -58,-23
- 1910: -59,-23
- 1911: -64,-24
- 1912: -65,-25
- 1913: -65,-25
- 1914: -66,-24
- 1915: -66,-23
- 1916: -64,-23
- 1917: -66,-25
- 1918: -66,-26
- 1919: -65,-27
- 1967: -59,-25
- 1999: -70,-29
- 2000: -70,-28
- 2001: -71,-28
- 2002: -72,-29
- 2003: -72,-28
- 2004: -72,-26
- 2005: -71,-27
- 2006: -70,-27
- 2007: -70,-24
- 2008: -71,-25
- 2009: -72,-23
- 2010: -70,-23
- 2011: -68,-23
- 2012: -70,-26
- 2013: -68,-26
- 2014: -68,-26
- 2015: -68,-24
- 2016: -68,-27
- 2017: -69,-27
- 2018: -69,-29
- 2019: -68,-24
- 2020: -68,-23
- 2021: -69,-23
- 2053: -55,-31
- 2054: -55,-23
- 2055: -52,-21
- 2056: -51,-21
- 2057: -64,-21
- 2058: -69,-20
- 2059: -75,-22
- 2060: -77,-20
- 2061: -77,-19
- 2062: -78,-20
- 2063: -78,-21
- 2064: -78,-24
- 2065: -78,-27
- 2066: -78,-28
- 2067: -78,-28
- 2068: -78,-26
- 2069: -77,-31
- 2070: -77,-32
- 2071: -78,-32
- 2072: -59,-32
- 2073: 41,-48
- 2074: 41,-48
- 2075: 37,-48
- 2076: 36,-47
- 2077: 36,-48
- 2078: 47,-48
- 2079: 45,-48
- 2080: 41,-45
- 2081: 41,-45
- 2082: 41,-39
- 2083: 41,-38
- 2084: 40,-37
- 2085: 40,-36
- 2086: 41,-33
- 2087: 42,-28
- 2088: 43,-28
- 2089: 51,-28
- 2090: 52,-28
- 2091: 52,-29
- 2092: 51,-30
- 2093: 52,-31
- 2094: 52,-32
- 2095: 51,-34
- 2096: 51,-35
- 2097: 51,-37
- 2098: 51,-39
- 2099: 52,-38
- 2100: 52,-43
- 2101: 52,-45
- 2102: 49,-42
- 2103: 49,-44
- 2104: 47,-45
- 2105: 45,-45
- 2106: 43,-41
- 2107: 46,-45
- 2108: 45,-44
- 2109: 45,-41
- 2110: 48,-42
- 2111: 49,-40
- 2112: 47,-40
- 2113: 45,-39
- 2114: 48,-38
- 2115: 47,-38
- 2116: 45,-38
- 2117: 44,-38
- 2118: 52,-47
- 2119: 55,-43
- 2120: 55,-44
- 2121: 55,-44
- 2122: 35,-55
- 2123: 34,-56
- 2124: 32,-55
- 2125: 30,-55
- 2126: 41,-42
- 2127: 43,-28
- 2128: 39,-23
- 2129: 38,-23
- 2130: 36,-23
- 2131: 36,-22
- 2132: 35,-21
- 2133: 36,-20
- 2134: 34,-21
- 2135: 35,-22
- 2136: 35,-23
- 2137: 34,-20
- 4231: -22,45
- 4238: -21,64
- 4246: 11,81
- 16878: -70,-36
- 16879: -67,-37
- 16880: -64,-36
- 16881: -63,-35
- 16882: -63,-35
- 16890: -69,-37
- 16891: -63,-34
- 16892: -63,-37
->>>>>>> master
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
-<<<<<<< HEAD
id: Grassc2
decals:
2441: -4,9
@@ -34847,684 +16689,8 @@ entities:
2981: -41,33
4071: -21,42
4075: -17,42
-=======
- id: DirtHeavy
- decals:
- 14029: -36,-75
- 14030: -37,-73
- 14031: -36,-73
- 14032: -35,-73
- 14033: -34,-73
- 14034: -33,-73
- 14035: -33,-73
- 14036: -33,-73
- 14037: -32,-73
- 14038: -33,-72
- 14039: -33,-72
- 14040: -31,-74
- 14041: -30,-73
- 14042: -30,-74
- 14043: -30,-75
- 14044: -31,-74
- 14045: -29,-75
- 14046: -29,-75
- 14047: -29,-76
- 14048: -29,-77
- 14049: -29,-78
- 14050: -29,-79
- 14051: -29,-80
- 14052: -30,-80
- 14053: -30,-79
- 14054: -30,-78
- 14055: -30,-77
- 14056: -30,-76
- 14057: -30,-75
- 14058: -32,-78
- 14059: -32,-79
- 14060: -33,-78
- 14061: -34,-78
- 14062: -34,-79
- 14063: -33,-80
- 14064: -35,-80
- 14065: -35,-79
- 14066: -35,-78
- 14067: -34,-77
- 14068: -33,-77
- 14069: -32,-78
- 14070: -31,-79
- 14071: -32,-80
- 14072: -37,-80
- 14073: -37,-79
- 14074: -37,-79
- 14075: -36,-78
- 14076: -37,-78
- 14077: -37,-77
- 14078: -36,-77
- 14079: -37,-76
- 14080: -37,-76
- 14081: -36,-76
- 14082: -36,-75
- 14083: -37,-74
- 14084: -36,-73
- 14085: -36,-74
- 14086: -36,-75
- 14087: -35,-74
- 14088: -35,-74
- 14089: -35,-75
- 14090: -35,-76
- 14091: -33,-76
- 14092: -33,-76
- 14093: -33,-75
- 14095: -37,-73
- 14096: -37,-74
- 14097: -36,-75
- 14098: -37,-76
- 14099: -37,-77
- 14100: -36,-78
- 14101: -37,-79
- 14102: -37,-79
- 14103: -37,-79
- 14104: -36,-77
- 14105: -35,-76
- 14106: -32,-76
- 14107: -31,-76
- 14108: -30,-76
- 14109: -30,-77
- 14110: -30,-78
- 14111: -29,-78
- 14112: -29,-77
- 14113: -33,-75
- 14114: -33,-75
- 14115: -32,-75
- 14116: -29,-74
- 14117: -29,-73
- 14118: -29,-73
- 14119: -32,-74
- 14120: -33,-74
- 14121: -31,-73
- 14122: -33,-74
- 14123: -34,-75
- 14124: -34,-74
- 14137: -31,-75
- 14138: -36,-74
- 14173: -39,-74
- 14174: -39,-71
- 14175: -36,-71
- 14176: -35,-71
- 14177: -34,-71
- 14178: -33,-71
- 14179: -32,-71
- 14180: -31,-71
- 14197: -27,-75
- 14198: -27,-74
- 14199: -27,-73
- 14200: -27,-73
- 14201: -27,-68
- 14202: -27,-67
- 14203: -27,-67
- 14204: -27,-69
- 14205: -28,-66
- 14206: -28,-65
- 14207: -28,-62
- 14208: -28,-63
- 14209: -28,-65
- 14222: -34,-60
- 14223: -34,-62
- 14224: -32,-60
- 14225: -32,-61
- 14226: -32,-62
- 14227: -31,-62
- 14228: -31,-63
- 14229: -33,-63
- 14230: -30,-61
- 14233: -34,-63
- 14234: -31,-60
- 14329: -15,-62
- 14330: -10,-62
- 14331: -9,-57
- 14332: -10,-57
- 14333: -7,-56
- 14334: -7,-56
- 14335: -6,-55
- 14336: -5,-55
- 14337: -5,-56
- 14338: -6,-55
- 14339: -6,-56
- 14644: -69,-21
- 14645: -70,-21
- 14646: -69,-21
- 14647: -68,-21
- 14648: -67,-21
- 14649: -63,-21
- 14650: -63,-21
- 14651: -61,-21
- 14652: -60,-21
- 14653: -59,-21
- 14654: -58,-21
- 14655: -58,-21
- 14656: -75,-21
- 14657: -75,-23
- 14658: -75,-24
- 14659: -75,-25
- 14660: -75,-26
- 14661: -75,-27
- 14662: -75,-28
- 14663: -75,-26
- 14664: -75,-25
- 14665: -75,-22
- 14666: -75,-21
- 14667: -75,-21
- 14668: -74,-32
- 14669: -75,-31
- 14670: -73,-32
- 14671: -77,-26
- 14672: -78,-26
- 14673: -78,-27
- 14674: -78,-28
- 14675: -78,-23
- 14676: -77,-23
- 14677: -77,-24
- 14678: -78,-24
- 14679: -77,-19
- 14680: -78,-19
- 14681: -78,-19
- 14682: -78,-21
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFAA'
- id: DirtHeavyMonotile
- decals:
- 14248: -32,-60
- 14249: -32,-61
- 14250: -31,-62
- 14251: -31,-62
- 14252: -32,-62
- 14253: -33,-63
- 14254: -34,-62
- 14255: -31,-63
- 14256: -30,-61
- - node:
- color: '#FFFFFFFF'
- id: DirtHeavyMonotile
- decals:
- 1066: -12,-50
- 4075: 23,72
- 4083: 18,69
- 4110: 20,67
- 4111: 26,66
- 4112: 27,67
- 4122: 21,68
- 4123: 18,66
- 4124: 17,65
- 4127: 22,66
- 4163: 18,63
- 4164: 21,60
- 4165: 21,58
- 4170: 20,60
- 4171: 18,60
- 4195: -35,61
- 4204: -42,59
- 4210: -36,62
- 4223: -36,55
- 4224: -32,60
- 11435: 34,-64
- 11436: 34,-64
- 11437: 35,-64
- 11438: 35,-62
- 11439: 35,-62
- 11440: 36,-61
- 11441: 36,-60
- 11442: 35,-60
- 11443: 34,-62
- 11444: 29,-69
- 11445: 31,-68
- 11446: 31,-67
- 11447: 27,-69
- 11448: 27,-70
- 11449: 29,-70
- 11450: 31,-70
- 11451: 32,-69
- 11452: 32,-68
- 11453: 31,-67
- 11454: 30,-66
- 11455: 29,-67
- 11456: 28,-68
- 11457: 26,-69
- 11458: 34,-60
- 11459: 41,-70
- 11460: 41,-71
- 11461: 39,-71
- 11462: 39,-71
- 11463: 42,-73
- 11464: 41,-75
- 11465: 38,-74
- 11466: 42,-74
- 11467: 42,-74
- 11468: 36,-68
- 11469: 35,-68
- 11470: 34,-68
- 11471: 39,-67
- 11472: 39,-67
- 11473: 40,-66
- 11474: 40,-66
- 11475: 41,-66
- 11476: 41,-68
- 11477: 45,-63
- 11478: 44,-63
- 11479: 43,-63
- 11480: 44,-62
- 11481: 45,-61
- 11482: 45,-61
- 11483: 39,-62
- 11484: 40,-62
- 11485: 40,-62
- 11486: 41,-62
- 11487: 41,-62
- 11571: 26,-57
- 11572: 26,-57
- 11573: 26,-58
- 11580: 38,-68
- 11581: 41,-68
- 11582: 40,-68
- 11679: -65,-37
- 11680: -59,-37
- 11681: -59,-37
- 11682: -59,-38
- 11683: -58,-38
- 11684: -58,-38
- 11685: -59,-42
- 11686: -60,-41
- 11687: -60,-41
- 11688: -59,-41
- 11689: -59,-40
- 11690: -59,-41
- 11691: -58,-41
- 11692: -58,-41
- 11693: -65,-41
- 11694: -65,-41
- 11695: -65,-41
- 13285: -45,-23
- 13286: -47,-22
- 13287: -46,-23
- 13291: -53,-28
- 13292: -53,-26
- 13293: -52,-25
- 13294: -51,-25
- 13295: -51,-26
- 13296: -51,-27
- 13297: -51,-27
- 13298: -51,-28
- 13299: -50,-28
- 13300: -50,-29
- 13301: -51,-29
- 13302: -51,-31
- 13303: -53,-31
- 13304: -53,-30
- 13305: -52,-28
- 13306: -52,-30
- 13307: -52,-27
- 13399: -53,-28
- 13400: -52,-29
- 13401: -43,-29
- 13402: -42,-30
- 13403: -42,-33
- 13404: -43,-32
- 13405: -43,-34
- 13406: -42,-34
- 13407: -41,-33
- 13408: -42,-32
- 13409: -43,-23
- 13410: -43,-24
- 13411: -43,-22
- 13412: -41,-23
- 13413: -42,-24
- 13414: -39,-24
- 13415: -39,-23
- 13416: -37,-22
- 13417: -37,-23
- 13418: -38,-24
- 13419: -35,-23
- 13420: -35,-22
- 13421: -34,-23
- 13422: -34,-24
- 13423: -34,-24
- 13424: -33,-24
- 13477: -35,-33
- 13478: -34,-33
- 13479: -34,-34
- 13480: -33,-32
- 13481: -34,-29
- 13482: -31,-27
- 13483: -31,-29
- 13484: -30,-28
- 13485: -30,-27
- 13486: -28,-27
- 13487: -28,-26
- 13488: -26,-27
- 13489: -29,-28
- 13490: -29,-29
- 13491: -28,-31
- 13492: -27,-31
- 13493: -30,-31
- 13494: -30,-30
- 13495: -28,-29
- 13496: -26,-31
- 13497: -26,-32
- 13498: -26,-30
- 13499: -29,-22
- 13541: 28,-57
- 13542: 48,-31
- 13575: 46,-32
- 13576: 47,-33
- 13577: 47,-32
- 13578: 48,-31
- 13579: 48,-32
- 13580: 47,-34
- 13581: 49,-34
- 13582: 49,-34
- 13583: 49,-35
- 13584: 47,-35
- 13585: 47,-35
- 13586: 46,-34
- 13587: 44,-34
- 13588: 44,-34
- 13589: 43,-33
- 13590: 45,-33
- 13591: 45,-32
- 13592: 47,-32
- 13593: 46,-34
- 13594: 46,-35
- 13595: 47,-33
- 13596: 48,-33
- 13597: 49,-33
- 13598: 49,-33
- 13599: 48,-32
- 13602: 39,-52
- 13603: 40,-51
- 13604: 40,-52
- 13605: 40,-53
- 13606: 40,-53
- 13607: 39,-54
- 13608: 39,-55
- 13609: 40,-55
- 13610: 41,-52
- 13611: 41,-54
- 13612: 41,-55
- 13613: 42,-53
- 13614: 42,-53
- 13615: 41,-56
- 13616: 42,-56
- 13617: 42,-50
- 13618: 44,-50
- 13619: 44,-50
- 13620: 45,-50
- 13621: 45,-52
- 13622: 44,-52
- 13623: 44,-51
- 13624: 45,-52
- 13625: 44,-54
- 13626: 44,-55
- 13627: 46,-55
- 13628: 45,-54
- 13629: 45,-55
- 13630: 46,-55
- 13631: 46,-52
- 13632: 47,-52
- 13708: 52,-37
- 13722: 54,-35
- 13728: 54,-39
- 13749: 54,-36
- 13750: 55,-35
- 13751: 53,-36
- 13752: 53,-38
- 13753: 54,-37
- 13847: -37,-63
- 13848: -37,-62
- 13849: -38,-62
- 13850: -38,-61
- 13851: -38,-60
- 13852: -36,-60
- 13853: -38,-60
- 13854: -37,-59
- 13855: -37,-61
- 13856: -36,-62
- 13857: -36,-61
- 13858: -37,-61
- 13859: -38,-63
- 13860: -36,-63
- 13861: -36,-63
- 13862: -36,-62
- 13896: -41,-63
- 13897: -41,-62
- 13898: -40,-63
- 13945: -41,-64
- 13946: -37,-64
- 13947: -37,-59
- 16590: 76,1
- 16591: 76,0
- 16592: 77,0
- 16593: 78,0
- 16594: 79,4
- 16595: 79,5
- 16596: 78,4
- 16608: 99,-2
- 16609: 99,-3
- 16610: 99,-4
- 16611: 100,-4
- 16612: 100,-2
- 16622: 85,2
- 16623: 86,2
- 16624: 79,-3
- 16625: 79,-4
- 16652: 92,9
- 16653: 76,6
- 16654: 76,4
- 16658: 93,6
- 16659: 96,6
- 16660: 95,6
- 16661: 96,7
- 16662: 97,7
- 16757: -72,-40
- 16758: -72,-41
- 16759: -71,-41
- 16760: -71,-42
- 16761: -72,-42
- 16762: -71,-40
- 16763: -70,-40
- 16764: -70,-41
- 16765: -69,-41
- 16766: -69,-41
- 16767: -69,-43
- 16809: -65,-47
- 16810: -65,-47
- 16811: -64,-47
- 16812: -64,-47
- 16813: -63,-46
- 16814: -62,-47
- 16815: -62,-48
- 16816: -63,-48
- 16817: -66,-48
- 16832: -65,-46
- 16833: -64,-46
- 16834: -64,-45
- 16835: -63,-45
- 16836: -63,-46
- 16837: -63,-47
- 16838: -65,-47
- 16839: -66,-48
- 16840: -66,-48
- 16841: -63,-48
- 16842: -63,-47
- 16843: -62,-47
- 16844: -62,-41
- 16845: -62,-40
- 16846: -64,-40
- 16847: -70,-43
- 16848: -69,-43
- 16849: -68,-45
- 16850: -69,-46
- 16851: -70,-46
- 16852: -72,-42
- 16932: -59,-50
- 16933: -60,-49
- 16934: -60,-48
- 16949: 10,68
- 16950: 10,68
- 16951: 11,69
- 16952: 11,69
- 16953: 12,69
- 16954: 12,68
- 16955: 12,67
- 16956: 12,66
- 16957: 10,66
- 16958: 11,66
- 16959: 11,67
- 16960: 11,67
- 16961: 12,67
- 16962: 11,69
- 16963: 12,70
- 16964: 13,67
- 16965: 13,67
- 16966: 11,68
- 16967: 12,69
- 16968: 11,70
- 16989: -40,-6
- 16990: -40,-7
- 16991: -39,-7
- 16992: -39,-6
- 16993: -38,2
- 16994: -37,2
- 16995: -37,1
- 16996: -37,0
- 16997: -39,0
- 16998: -38,2
- 17072: -32,-20
- 17073: -30,-20
- 17074: -30,-20
- 17075: -30,-19
- 17076: -32,-18
- 17077: -34,-18
- 17078: -35,-18
- 17079: -31,-18
- 17080: -29,-18
- 17081: -29,-18
- 17082: -28,-20
- 17083: -28,-19
- 17084: -29,-20
- 17085: -24,-21
- 17086: -24,-22
- 17087: -22,-22
- 17088: -22,-21
- 17089: -35,-20
- 17090: -36,-20
- 17091: -39,-20
- 17092: -41,-20
- 17093: -43,-20
- 17094: -44,-20
- 17095: -48,-20
- 17096: -49,-22
- 17097: -49,-23
- 17098: -49,-23
- 17099: -50,-22
- 17100: -49,-22
- 17101: -49,-22
- 17102: -50,-23
- 17103: -53,-23
- 17104: -54,-23
- 17105: -53,-21
- 17106: -53,-20
- 17107: -53,-20
- 17108: -52,-20
- 17109: -53,-20
- 17110: -55,-20
- 17111: -56,-20
- 17112: -56,-21
- 17113: -55,-22
- 17114: -56,-23
- 17115: -56,-26
- 17116: -56,-25
- 17117: -56,-27
- 17118: -55,-29
- 17119: -55,-30
- 17120: -60,-32
- 17790: -2,32
- 17791: -1,32
- 17792: -1,32
- 17793: -2,32
- 17803: -2,27
- 17804: 0,27
- 17805: 0,40
- 17806: 1,40
- 17807: 1,40
- 17808: 2,40
- 17809: 0,36
- 17810: 0,35
- 17811: 0,34
- 17830: 0,48
- 17831: 0,47
- 17832: 0,41
- 17833: 1,42
- 17834: 6,50
- 17835: 6,52
- 17836: 7,52
- 18964: -50,-36
- 18965: -50,-37
- 18966: -51,-38
- 18967: -53,-37
- 18968: -53,-36
- 18969: -48,-38
- 18970: -52,-40
- 18971: -51,-41
- 18989: -58,-46
- 19270: 59,-40
- 19271: 60,-40
- 19272: 60,-41
- 19498: 44,-42
- 19499: 44,-44
- 19500: 46,-44
- 19501: 44,-42
- 19502: 46,-40
- 19503: 47,-39
- 19504: 48,-39
- 19505: 48,-38
- 19506: 49,-38
- 19507: 49,-41
- 19508: 49,-42
- 19509: 49,-42
- 19510: 49,-41
- 19511: 49,-44
- 19512: 49,-45
- 19513: 48,-45
- 19514: 46,-45
- 19515: 44,-45
- 19516: 43,-45
- 19517: 43,-44
- 19518: 43,-42
- 19519: 52,-47
- 19520: 46,-48
- 19521: 45,-48
- 19522: 44,-48
- 19530: 56,-43
- 19531: 56,-43
- 19532: 55,-44
- 19533: 55,-43
- 19534: 56,-41
- 20598: -31,-23
- 20599: -31,-24
- 20600: -30,-22
- 20601: -27,-23
- 20612: -28,-24
- 20613: -27,-24
- 20619: -29,-24
- 20620: -29,-24
- 20621: -30,-23
- 20622: -29,-23
- 20623: -28,-23
- 20624: -29,-23
->>>>>>> master
- node:
color: '#FFFFFFFF'
-<<<<<<< HEAD
id: Grassd1
decals:
2401: -5,-3
@@ -35593,1097 +16759,8 @@ entities:
4087: -20,42
4768: -33,42
4769: -34,41
-=======
- id: DirtHeavyMonotile
- decals:
- 870: 73,14
- 872: 38,21
- 873: 14,29
- 982: 33,36
- 1304: 57,5
- 1305: 62,6
- 1306: 70,6
- 1320: 31,58
- 1321: 31,59
- 1322: 31,59
- 1323: 31,60
- 1324: 29,60
- 1325: 28,60
- 1326: 29,60
- 1327: 27,56
- 1328: 26,56
- 1329: 25,59
- 1330: 25,60
- 1331: 25,61
- 1332: 26,61
- 1333: 28,59
- 1334: 27,59
- 1335: 30,59
- 1336: 30,56
- 1337: 31,56
- 1338: 31,58
- 1339: 31,59
- 1340: 31,60
- 1341: 31,60
- 1342: 20,56
- 1343: 21,56
- 1349: 9,59
- 1350: 9,60
- 1351: 9,59
- 1352: 7,57
- 1353: 6,56
- 1356: 6,56
- 1357: 6,56
- 1358: 15,65
- 1364: 13,72
- 1365: 13,72
- 1366: 12,72
- 1380: 19,63
- 1381: 20,62
- 1382: 20,61
- 1383: 21,61
- 1384: 20,60
- 1385: 20,59
- 1386: 20,58
- 1387: 19,59
- 1388: 19,58
- 1389: 18,58
- 1390: 20,58
- 1391: 21,60
- 1392: 13,58
- 1393: 12,59
- 1394: 12,58
- 1395: 18,59
- 1396: 17,60
- 1397: 17,58
- 1398: 17,58
- 1399: 19,58
- 1400: 21,59
- 1401: 18,63
- 1402: 17,63
- 1403: 16,63
- 1404: 14,61
- 1405: 13,61
- 1406: 12,61
- 1407: 17,60
- 1408: 17,61
- 1409: 24,57
- 1410: 23,57
- 1411: 23,56
- 1412: 25,56
- 1413: 25,57
- 1414: 25,58
- 1431: 20,70
- 1432: 19,69
- 1433: 18,70
- 1434: 20,71
- 1435: 18,72
- 1436: 21,69
- 1437: 20,70
- 1438: 15,62
- 1439: 14,62
- 1440: 13,61
- 1441: 13,62
- 1442: 15,59
- 1443: 15,60
- 1454: -41,60
- 1455: -40,61
- 1456: -41,59
- 1457: -40,62
- 1458: -42,63
- 1459: -38,60
- 1460: -38,62
- 1542: -31,9
- 1543: -31,9
- 1544: -31,11
- 1545: -31,16
- 1546: -28,17
- 1547: -31,18
- 1548: -31,22
- 1549: -31,23
- 1550: -32,23
- 1551: -31,23
- 1552: -27,25
- 1553: -27,25
- 1554: -23,26
- 1555: -31,21
- 1556: -31,20
- 1557: -31,19
- 1558: -31,19
- 1559: -25,27
- 1560: -25,27
- 1561: -24,25
- 1562: -36,24
- 1563: -36,27
- 1564: -36,29
- 1565: -36,31
- 1566: -36,32
- 1567: -36,33
- 1568: -39,37
- 1569: -39,37
- 1570: -45,37
- 1571: -39,42
- 1572: -39,42
- 1573: -37,42
- 1574: -36,41
- 1575: -42,45
- 1576: -41,50
- 1577: -41,50
- 1578: -41,49
- 1579: -41,48
- 1580: -42,49
- 1581: -39,57
- 1582: -36,57
- 1601: -39,54
- 1602: -39,54
- 1603: -40,54
- 1604: -40,53
- 1605: -38,54
- 1606: -37,55
- 1607: -37,53
- 1608: -38,52
- 1636: -41,29
- 1637: -40,29
- 1638: -40,29
- 1639: -40,27
- 1640: -39,29
- 1641: -39,29
- 1642: -39,29
- 1643: -41,27
- 1677: -60,-43
- 1678: -60,-42
- 1679: -59,-42
- 1680: -59,-41
- 1681: -60,-41
- 1682: -60,-41
- 1683: -59,-40
- 1719: -36,1
- 1720: -38,1
- 1721: -38,1
- 1722: -37,1
- 1723: -39,1
- 1724: -39,1
- 1725: -39,0
- 1726: -39,-1
- 1727: -37,0
- 1728: -37,0
- 1920: -65,-26
- 1921: -66,-28
- 1922: -65,-28
- 1923: -64,-26
- 1924: -60,-27
- 1925: -61,-29
- 1926: -59,-29
- 1927: -59,-26
- 1928: -60,-26
- 1929: -58,-28
- 1930: -60,-29
- 1935: -60,-24
- 1936: -60,-23
- 1937: -59,-23
- 1938: -61,-23
- 1939: -63,-23
- 1940: -61,-24
- 1941: -64,-26
- 1942: -65,-26
- 1943: -64,-25
- 1944: -64,-23
- 1945: -66,-24
- 1946: -64,-27
- 1947: -64,-27
- 1948: -64,-28
- 1949: -65,-28
- 1950: -60,-29
- 1951: -60,-28
- 1952: -59,-29
- 1953: -62,-30
- 1954: -57,-26
- 1955: -57,-26
- 2022: -70,-24
- 2023: -70,-24
- 2024: -71,-25
- 2025: -70,-25
- 2026: -70,-26
- 2027: -71,-25
- 2028: -72,-24
- 2029: -72,-23
- 2030: -72,-26
- 2031: -70,-27
- 2032: -71,-26
- 2033: -71,-27
- 2034: -72,-28
- 2035: -70,-29
- 2036: -69,-29
- 2037: -68,-28
- 2038: -68,-28
- 2039: -69,-28
- 2040: -68,-26
- 2041: -68,-26
- 2042: -69,-26
- 2043: -68,-25
- 2044: -69,-24
- 4232: -22,37
- 4235: -17,45
- 4239: -14,68
- 4247: -27,69
- 4248: -2,26
- 16883: -71,-35
- 16884: -70,-36
- 16885: -67,-35
- 16886: -66,-36
- 16896: -71,-36
- 16897: -68,-37
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: DirtHeavyMonotile
- decals:
- 14125: -34,-75
- 14126: -34,-74
- 14127: -36,-73
- 14128: -37,-76
- 14129: -37,-78
- 14130: -37,-78
- 14131: -37,-79
- 14132: -29,-78
- 14133: -30,-76
- 14134: -30,-75
- 14135: -31,-75
- 14136: -31,-75
- 14181: -36,-71
- 14182: -36,-71
- 14183: -34,-71
- 14184: -33,-71
- 14185: -31,-71
- 14186: -30,-71
- 14187: -39,-71
- 14188: -39,-74
- 14189: -28,-70
- 14190: -27,-73
- 14191: -27,-73
- 14192: -26,-74
- 14193: -27,-74
- 14194: -26,-75
- 14195: -27,-73
- 14196: -27,-75
- 14210: -27,-65
- 14211: -28,-66
- 14212: -28,-63
- 14213: -27,-62
- 14214: -27,-62
- 14215: -27,-65
- 14216: -27,-67
- 14217: -27,-68
- 14218: -27,-69
- 14231: -30,-61
- 14282: -38,-56
- 14283: -39,-56
- 14284: -38,-55
- 14285: -37,-55
- 14286: -37,-56
- 14287: -40,-58
- 14288: -39,-58
- 14289: -38,-58
- 14290: -36,-58
- 14291: -34,-58
- 14292: -35,-57
- 14293: -34,-56
- 14294: -34,-57
- 14295: -34,-58
- 14296: -32,-58
- 14297: -31,-58
- 14298: -29,-58
- 14299: -28,-59
- 14300: -28,-59
- 14301: -28,-60
- 14302: -29,-61
- 14303: -29,-61
- 14304: -27,-62
- 14305: -27,-62
- 14306: -27,-61
- 14307: -25,-62
- 14308: -24,-62
- 14309: -23,-62
- 14310: -26,-62
- 14311: -26,-62
- 14312: -23,-62
- 14313: -21,-62
- 14314: -20,-62
- 14315: -18,-62
- 14316: -16,-62
- 14317: -16,-62
- 14318: -20,-62
- 14319: -17,-63
- 14320: -16,-63
- 14321: -16,-62
- 14322: -15,-62
- 14323: -19,-62
- 14324: -17,-63
- 14325: -14,-62
- 14326: -12,-62
- 14327: -11,-62
- 14328: -10,-62
- 14340: -27,-61
- 14341: -28,-58
- 14361: -58,-34
- 14362: -58,-36
- 14363: -58,-37
- 14364: -59,-39
- 14365: -58,-39
- 14366: -60,-39
- 14367: -60,-37
- 14368: -60,-36
- 14369: -60,-35
- 14370: -59,-34
- 14371: -60,-42
- 14491: -35,-49
- 14492: -35,-50
- 14493: -33,-50
- 14494: -33,-49
- 14495: -40,-49
- 14496: -43,-47
- 14497: -44,-47
- 14498: -44,-44
- 14499: -44,-45
- 14500: -44,-47
- 14501: -44,-49
- 14502: -44,-49
- 14503: -43,-41
- 14504: -44,-41
- 14505: -46,-41
- 14506: -47,-41
- 14507: -49,-41
- 14508: -50,-40
- 14509: -51,-41
- 14510: -51,-41
- 14511: -51,-40
- 14512: -50,-40
- 14513: -50,-40
- 14514: -51,-40
- 14515: -53,-40
- 14516: -53,-40
- 14517: -55,-40
- 14518: -55,-40
- 14519: -56,-39
- 14520: -56,-39
- 14521: -55,-38
- 14522: -55,-39
- 14523: -56,-37
- 14524: -55,-34
- 14525: -55,-35
- 14526: -56,-34
- 14527: -56,-33
- 14528: -55,-35
- 14529: -55,-35
- 14530: -61,-32
- 14531: -61,-32
- 14532: -62,-31
- 14533: -61,-31
- 14534: -60,-32
- 14628: -70,-21
- 14629: -69,-21
- 14630: -69,-21
- 14631: -68,-21
- 14632: -62,-21
- 14633: -63,-21
- 14634: -59,-21
- 14635: -62,-21
- 14636: -62,-21
- 14637: -59,-21
- 14638: -58,-20
- 14639: -57,-20
- 14640: -58,-21
- 14641: -59,-21
- 14642: -59,-21
- 14643: -61,-21
- 14683: -78,-20
- 14684: -78,-20
- 14685: -78,-19
- 14686: -77,-20
- 14687: -77,-23
- 14688: -78,-23
- 14689: -77,-24
- 14690: -78,-27
- 14691: -77,-27
- 14692: -77,-28
- 14693: -78,-31
- 14694: -77,-30
- 14695: -77,-31
- 14696: -77,-32
- 14697: -78,-30
- 14698: -77,-30
- 14699: -71,-32
- 14700: -71,-32
- 14701: -70,-31
- 14702: -68,-31
- 14703: -69,-32
- 14704: -72,-32
- 14705: -74,-32
- 14706: -72,-32
- 14707: -69,-31
- 14708: -74,-32
- 14709: -62,-31
- 14710: -62,-32
- 14711: -61,-32
- 14712: -59,-31
- 14713: -58,-32
- 14714: -59,-32
- 14715: -61,-32
- 14716: -58,-32
- 14717: -58,-32
- 14718: -62,-31
- 14719: -63,-31
- 14720: -64,-31
- 14721: -61,-31
- 14722: -65,-31
- 14723: -68,-31
- 14724: -69,-32
- 14725: -71,-32
- 14726: -58,-31
- 14727: -60,-31
- 14728: -56,-31
- 14729: -55,-29
- 14730: -56,-29
- 14731: -55,-31
- 14732: -56,-32
- 14733: -55,-32
- 14734: -56,-31
- 14735: -55,-30
- 14736: -55,-30
- 14737: -55,-29
- 14738: -56,-26
- 14739: -56,-25
- 14740: -55,-26
- 14741: -55,-27
- 14742: -56,-26
- 14743: -56,-24
- 14744: -55,-24
- 14745: -56,-23
- 14746: -55,-22
- 14747: -56,-21
- 14748: -56,-20
- 14749: -55,-20
- 14750: -55,-21
- 14751: -55,-21
- 14752: -52,-20
- 14753: -52,-21
- 14754: -55,-20
- 14755: -54,-20
- 14756: -52,-21
- 14757: -51,-22
- 14758: -52,-23
- 14759: -54,-23
- 14760: -36,-19
- 14761: -36,-18
- 14762: -36,-19
- 14763: -37,-16
- 14764: -37,-15
- 14765: -37,-14
- 14766: -37,-13
- 14767: -37,-11
- 14768: -39,-14
- 14769: -40,-14
- 14770: -39,-15
- 14771: -39,-16
- 14772: -40,-17
- 14773: -42,-16
- 14774: -41,-14
- 14775: -40,-16
- 14776: -41,-16
- 14777: -41,-16
- 14778: -41,-13
- 14779: -44,-11
- 14780: -39,-9
- 14781: -43,-8
- 14782: -40,-1
- 14783: -38,-1
- 14784: -38,-2
- 14785: -38,-3
- 14786: -38,1
- 14787: -38,-3
- 14788: -37,-5
- 14789: -37,-7
- 14790: -37,-9
- 14791: -37,-12
- 14792: -37,-15
- 14793: -37,-15
- 14794: -37,-17
- 14795: -35,-19
- 14796: -32,-19
- 14797: -32,-19
- 14798: -29,-20
- 14799: -32,-19
- 14800: -27,-19
- 14801: -23,-21
- 14802: -24,-22
- 14803: -25,-21
- - node:
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 1055: -33,-52
- 1056: -34,-52
- 1057: -34,-54
- 1058: -35,-54
- 1059: -35,-53
- 1060: -33,-53
- 1061: -33,-54
- 1062: -28,-52
- 1063: -29,-53
- 1064: -24,-49
- 1070: -12,-46
- 4079: 22,70
- 4113: 25,67
- 4114: 27,66
- 4115: 20,66
- 4116: 21,67
- 4205: -36,59
- 4206: -36,60
- 4230: -27,65
- 11488: 44,-63
- 11489: 44,-63
- 11490: 43,-62
- 11491: 45,-61
- 11492: 45,-61
- 11493: 45,-62
- 11494: 45,-62
- 11495: 36,-62
- 11496: 36,-62
- 11497: 34,-61
- 11498: 32,-61
- 11499: 32,-61
- 11500: 34,-66
- 11501: 34,-66
- 11502: 34,-67
- 11503: 34,-69
- 11504: 30,-68
- 11505: 30,-68
- 11506: 32,-67
- 11507: 30,-69
- 11508: 29,-70
- 11509: 28,-70
- 11510: 26,-69
- 11511: 28,-68
- 11512: 28,-68
- 11513: 27,-66
- 11514: 39,-71
- 11515: 41,-71
- 11516: 41,-71
- 11517: 41,-73
- 11518: 41,-73
- 11519: 42,-73
- 11520: 42,-75
- 11521: 39,-74
- 11522: 39,-74
- 11523: 37,-73
- 11524: 39,-73
- 11525: 35,-71
- 11526: 36,-70
- 11527: 36,-70
- 11528: 35,-68
- 11529: 36,-67
- 11530: 36,-66
- 11531: 35,-64
- 11532: 36,-64
- 11533: 35,-60
- 13288: -47,-23
- 13289: -47,-25
- 13290: -46,-26
- 13340: -46,-31
- 13341: -48,-30
- 13342: -48,-31
- 13343: -49,-31
- 13344: -47,-30
- 13345: -47,-29
- 13346: -48,-26
- 13347: -48,-25
- 13348: -47,-26
- 13349: -47,-27
- 13350: -46,-27
- 13351: -45,-26
- 13352: -45,-26
- 13353: -45,-27
- 13354: -46,-26
- 13355: -45,-25
- 13356: -45,-25
- 13357: -45,-27
- 13358: -44,-28
- 13359: -43,-28
- 13360: -42,-27
- 13737: 54,-37
- 13738: 53,-38
- 13739: 54,-38
- 13740: 55,-36
- 13741: 55,-35
- 16786: -66,-47
- 16787: -66,-48
- 16788: -66,-46
- 16789: -67,-46
- 16790: -64,-46
- 16791: -63,-46
- 16792: -63,-46
- 16793: -65,-47
- 16794: -63,-47
- 16795: -62,-46
- 16796: -62,-48
- 16797: -62,-48
- 16798: -63,-47
- 16799: -63,-48
- 16818: -64,-47
- 16819: -63,-47
- 16820: -63,-46
- 16821: -62,-46
- 16822: -62,-48
- 16823: -62,-48
- 16824: -63,-48
- 16825: -64,-48
- 16826: -63,-47
- 16827: -65,-46
- 16828: -65,-45
- 16829: -64,-45
- 16830: -63,-45
- 16831: -63,-46
- 16969: 10,70
- 16970: 10,69
- 16971: 11,70
- 16972: 12,70
- 16973: 12,68
- 16974: 11,67
- 16975: 10,67
- 16976: 12,69
- 16977: 12,67
- 16978: 10,68
- 16979: 9,68
- 17157: -43,0
- 17158: -43,-1
- 17159: -43,-3
- 17160: -43,-4
- 17161: -42,1
- 17162: -41,1
- 17163: -41,0
- 17164: -41,-2
- 17165: -42,-5
- 17166: -43,-8
- 17167: -40,-10
- 17168: -38,-10
- 17169: -38,-11
- 17170: -37,-20
- 17171: -34,-18
- 17172: -33,-18
- 17173: -33,-18
- 17174: -33,-20
- 17175: -34,-20
- 17176: -34,-20
- 17177: -34,-19
- 17178: -36,-19
- 17179: -40,-14
- 17180: -40,-15
- 17181: -40,-15
- 17182: -39,-15
- 17183: -39,-16
- 17184: -42,-16
- 17185: -42,-15
- 17186: -41,-15
- 17187: -41,-16
- 17188: -42,-17
- 17189: -40,-18
- 17190: -39,-18
- 17191: -39,-17
- 18975: -52,-40
- 18976: -55,-34
- 18977: -56,-34
- 18978: -52,-34
- 18991: -58,-46
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 257: 43,-29
- 258: 50,-28
- 259: 53,-29
- 260: 51,-33
- 271: 35,-55
- 272: 30,-55
- 273: 44,-47
- 274: 45,-47
- 281: 41,-33
- 282: 40,-35
- 283: 34,-55
- 284: 49,-47
- 289: 50,-48
- 290: 51,-47
- 291: 52,-42
- 292: 52,-44
- 304: 63,-10
- 310: -28,64
- 311: -26,60
- 313: -31,37
- 314: -16,36
- 315: -15,26
- 316: -17,29
- 319: -36,28
- 320: -36,28
- 321: -36,28
- 322: -37,23
- 323: -37,23
- 324: -37,23
- 325: -37,23
- 326: -34,23
- 329: -31,8
- 331: -25,-18
- 334: -25,-21
- 336: -5,59
- 338: -10,-62
- 340: -23,-61
- 341: -27,-56
- 342: -28,-67
- 347: -6,-67
- 348: 3,-55
- 350: 8,-56
- 351: 7,-55
- 352: 12,-56
- 354: 21,-55
- 356: -47,-20
- 357: -44,-17
- 358: -37,-9
- 359: -37,-9
- 361: -43,-3
- 363: -43,-8
- 365: -73,-31
- 368: -75,-26
- 369: -64,-20
- 371: -47,-28
- 372: -46,-27
- 373: -46,-26
- 374: -48,-25
- 376: -41,-17
- 377: -40,-16
- 378: -39,-14
- 379: -16,42
- 381: 62,-13
- 383: 46,-12
- 384: 44,-10
- 385: 46,-7
- 386: 53,-11
- 387: 23,-23
- 388: 35,-20
- 389: 38,-24
- 392: -33,-58
- 393: -39,-58
- 395: -35,-54
- 396: -33,-52
- 397: -34,-54
- 398: -34,-49
- 399: -34,-50
- 400: -33,-50
- 401: -33,-50
- 404: -41,-47
- 405: -43,-47
- 407: -44,-45
- 408: -51,-49
- 410: -38,-29
- 411: -39,-28
- 412: -41,-27
- 413: -36,-27
- 414: -33,-29
- 730: -9,-48
- 731: -9,-48
- 735: -37,-38
- 871: 53,22
- 874: 19,47
- 1015: -37,-37
- 1071: -7,-43
- 1072: -6,-41
- 1307: 66,8
- 1308: 62,9
- 1309: 67,4
- 1310: 52,5
- 1311: 47,0
- 1312: 56,26
- 1354: 6,56
- 1355: 7,57
- 1446: 10,67
- 1461: -35,62
- 1462: -36,61
- 1684: -59,-43
- 1685: -59,-43
- 1686: -58,-42
- 1687: -58,-41
- 1688: -58,-41
- 1689: -58,-43
- 1956: -57,-26
- 1957: -62,-30
- 1965: -65,-23
- 1966: -65,-23
- 4234: -23,35
- 4236: -20,52
- 4237: -16,57
- 4241: -11,84
- 4242: -13,91
- 4243: -9,68
- 4244: 4,68
- 16887: -66,-35
- 16888: -66,-35
- 16889: -66,-35
- - node:
- cleanable: True
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 544: -3,-65
- - node:
- color: '#FFFFFFFF'
- id: DirtMedium
- decals:
- 494: -1,-2
- 1035: -30,-52
- 1036: -26,-53
- 1037: -27,-52
- 1038: -30,-53
- 1039: -24,-54
- 1040: -23,-53
- 1041: -28,-50
- 1042: -30,-51
- 1043: -27,-52
- 1044: -27,-50
- 1045: -30,-53
- 1046: -30,-55
- 1047: -27,-55
- 1048: -34,-53
- 1049: -34,-52
- 1050: -34,-54
- 1051: -33,-53
- 1052: -34,-52
- 1053: -34,-52
- 1054: -34,-54
- 1067: -21,-29
- 1068: -12,-51
- 1069: -12,-49
- 4077: 18,71
- 4078: 17,71
- 4080: 19,71
- 4081: 20,71
- 4082: 21,69
- 4117: 21,65
- 4118: 22,65
- 4119: 23,65
- 4211: -38,63
- 11549: 35,-61
- 11550: 41,-62
- 11551: 39,-62
- 11552: 39,-62
- 11553: 36,-68
- 11554: 35,-67
- 11555: 35,-67
- 11556: 29,-68
- 11557: 29,-68
- 11558: 28,-66
- 11559: 26,-69
- 11560: 26,-70
- 11561: 27,-69
- 11562: 41,-67
- 11563: 28,-69
- 11564: 27,-60
- 11565: 27,-58
- 11566: 28,-56
- 11567: 28,-56
- 13308: -53,-27
- 13309: -53,-26
- 13310: -52,-25
- 13311: -51,-26
- 13312: -52,-28
- 13313: -52,-28
- 13314: -50,-28
- 13315: -51,-29
- 13316: -50,-28
- 13317: -50,-27
- 13318: -51,-29
- 13319: -52,-30
- 13320: -52,-31
- 13321: -52,-31
- 13322: -52,-29
- 13323: -51,-30
- 13324: -51,-30
- 13325: -51,-31
- 13326: -53,-27
- 13327: -52,-26
- 13328: -52,-27
- 13329: -53,-25
- 13330: -51,-25
- 13331: -45,-27
- 13332: -45,-28
- 13333: -46,-29
- 13334: -47,-29
- 13335: -48,-31
- 13336: -46,-31
- 13337: -45,-31
- 13338: -46,-29
- 13339: -45,-28
- 13524: -30,-30
- 13525: -30,-29
- 13526: -30,-28
- 13527: -29,-28
- 13528: -28,-27
- 13529: -26,-27
- 13530: -26,-29
- 13531: -27,-30
- 13532: -29,-30
- 13533: -27,-29
- 13534: -27,-28
- 13535: -28,-28
- 13536: -28,-29
- 13537: -27,-28
- 13538: -29,-28
- 13539: 27,-57
- 13540: 28,-57
- 13633: 45,-52
- 13634: 44,-51
- 13635: 45,-50
- 13636: 45,-52
- 13637: 45,-53
- 13638: 46,-52
- 13639: 45,-55
- 13640: 46,-55
- 13641: 45,-55
- 13642: 45,-54
- 13643: 45,-52
- 13644: 45,-51
- 13645: 41,-54
- 13646: 41,-55
- 13647: 41,-55
- 13648: 40,-54
- 13649: 40,-53
- 13650: 40,-52
- 13651: 40,-51
- 13652: 40,-51
- 13653: 40,-53
- 13654: 41,-53
- 13655: 40,-54
- 13656: 39,-55
- 13657: 39,-55
- 13658: 40,-53
- 13659: 41,-52
- 13660: 41,-51
- 13661: 41,-50
- 13662: 41,-51
- 13663: 42,-52
- 13664: 40,-55
- 13665: 40,-56
- 13666: 39,-56
- 13667: 39,-56
- 13668: 42,-55
- 13669: 39,-51
- 13670: 46,-50
- 13671: 46,-51
- 13672: 47,-52
- 13673: 46,-54
- 13711: 52,-37
- 13729: 54,-39
- 13730: 55,-39
- 13731: 56,-39
- 13732: 55,-38
- 13733: 56,-36
- 13734: 53,-35
- 13735: 55,-37
- 13736: 55,-35
- 13879: -37,-63
- 13880: -37,-62
- 13881: -36,-62
- 13882: -37,-61
- 13883: -38,-60
- 13899: -41,-62
- 13900: -41,-63
- 13901: -40,-63
- 13902: -41,-63
- 16597: 78,4
- 16598: 79,4
- 16599: 79,5
- 16600: 78,5
- 16601: 92,6
- 16613: 99,-4
- 16614: 100,-4
- 16615: 100,-3
- 16616: 99,-3
- 16617: 99,-2
- 16618: 100,-2
- 16619: 93,-4
- 16853: -69,-43
- 16854: -69,-42
- 16855: -69,-41
- 16856: -66,-41
- 16857: -66,-43
- 16858: -65,-43
- 16859: -64,-40
- 17121: -43,-11
- 17122: -43,-12
- 17123: -43,-11
- 17124: -38,-10
- 17125: -37,-9
- 17126: -38,-9
- 17127: -38,-10
- 17128: -38,-10
- 17129: -38,-9
- 17130: -38,-11
- 17131: -43,-4
- 17132: -43,-3
- 17133: -43,-2
- 17134: -43,-1
- 17135: -43,-2
- 17136: -43,-5
- 17137: -43,-6
- 17138: -43,-7
- 17139: -43,-7
- 17140: -43,-4
- 17141: -43,-2
- 17142: -43,0
- 17143: -43,1
- 17144: -42,1
- 17145: -42,0
- 17146: -43,0
- 17147: -42,1
- 17148: -41,1
- 17149: -42,-1
- 17150: -41,-2
- 17151: -41,-1
- 17152: -41,0
- 17153: -41,-2
- 17154: -41,-2
- 17155: -41,-1
- 17156: -41,0
- 17192: -41,-15
- 17193: -42,-16
- 17194: -42,-17
- 17195: -40,-18
- 17196: -39,-18
- 17197: -39,-17
- 17198: -40,-17
- 17199: -41,-17
- 17200: -40,-16
- 17201: -43,-15
- 17202: -42,-15
- 17203: -42,-14
- 17204: -41,-14
- 17205: -40,-14
- 20602: -28,-24
- 20603: -27,-23
- 20604: -27,-22
- 20605: -30,-24
- 20606: -30,-25
- 20607: -28,-25
- 20608: -29,-25
- 20609: -28,-22
- 20610: -27,-22
- 20611: -29,-22
- 20625: -30,-23
- 20626: -29,-23
- 20627: -28,-23
->>>>>>> master
- node:
- cleanable: True
color: '#FFFFFFFF'
-<<<<<<< HEAD
id: Grasse1
decals:
2419: -4,-1
@@ -36714,75 +16791,8 @@ entities:
4056: -20,43
4057: -20,39
4074: -19,43
-=======
- id: DirtMedium
- decals:
- 267: 35,-56
- 268: 37,-54
- 280: 40,-42
- 288: 50,-47
- 300: 55,-21
- 301: 63,-29
- 302: 56,-28
- 327: -26,25
- 335: -7,63
- 339: -22,-61
- 343: -28,-68
- 344: -28,-68
- 380: 40,6
- 382: 45,-12
- 394: -34,-53
- 545: -4,-65
- 732: -11,-48
- 733: -11,-48
- 981: 33,37
- 985: -1,-14
- 1074: -7,-51
- 1088: -35,-45
- 1089: -33,-37
- 1690: -60,-43
- 1691: -60,-41
- 1692: -59,-40
- 1693: -58,-49
- 1694: -59,-48
- 1695: -59,-49
- 1696: -60,-51
- 1697: -60,-50
- 1698: -60,-48
- 1699: -58,-49
- 1958: -64,-28
- 1959: -65,-28
- 1960: -64,-27
- 1961: -64,-25
- 1962: -65,-26
- 1963: -59,-28
- 1964: -59,-27
- 4233: -16,38
- 4240: -13,74
- 16893: -69,-35
- 16894: -69,-35
- 16895: -66,-36
- 16898: -69,-36
- 16899: -63,-33
- 16916: -70,-37
- - node:
- cleanable: True
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: DirtMedium
- decals:
- 824: -43,-24
- 825: -40,-29
- 826: -41,-27
- 827: -46,-29
- 828: -47,-29
- 829: -36,-28
- 830: -34,-28
- 831: -29,-30
->>>>>>> master
- node:
color: '#FFFFFFFF'
-<<<<<<< HEAD
id: Grasse3
decals:
2429: -4,-4
@@ -37438,823 +17448,10 @@ entities:
id: HalfTileOverlayGreyscale270
decals:
1124: 68,-4
-=======
- id: DirtMedium
- decals:
- 14219: -28,-65
- 14220: -28,-64
- 14221: -28,-63
- 14372: -59,-35
- 14373: -59,-34
- 14479: -46,-41
- 14480: -47,-41
- 14481: -48,-41
- 14482: -47,-41
- 14483: -43,-41
- 14484: -40,-49
- 14485: -43,-47
- 14486: -35,-49
- 14487: -35,-50
- 14488: -33,-49
- 14489: -33,-49
- 14490: -33,-50
- - node:
- color: '#FFFFFFFF'
- id: FlowersBROne
- decals:
- 1153: 1,9
- - node:
- color: '#FFFFFFFF'
- id: FlowersBRThree
- decals:
- 1154: -3,1
- - node:
- color: '#FFFFFFFF'
- id: FlowersBRTwo
- decals:
- 1155: 1,-6
- 1195: 70,-18
- 16360: 81,3
- - node:
- color: '#FFFFFFFF'
- id: Flowersbr1
- decals:
- 557: -2,-84
- 558: -1,-84
- 559: 0,-84
- 1150: -6,-4
- - node:
- color: '#FFFFFFFF'
- id: Flowersbr2
- decals:
- 529: -6.021795,-67.068596
- 530: -5.396795,-67.037346
- 535: -2.928045,-67.08422
- 1151: 2,0
- - node:
- color: '#FFFFFFFF'
- id: Flowersbr3
- decals:
- 531: -4.63117,-67.068596
- 536: -1.9944773,-68.006096
- 1152: -6,5
- - node:
- color: '#FFFFFFFF'
- id: Flowerspv1
- decals:
- 532: -3.7717953,-67.05297
- 533: -3.09992,-66.99047
- 534: -5.31867,-67.068596
- 560: -2,-84
- 561: -1,-84
- 562: 0,-84
- 1156: -5,-5
- - node:
- color: '#FFFFFFFF'
- id: Flowerspv2
- decals:
- 522: -6.064717,-73.98025
- 1158: -4,4
- - node:
- color: '#FFFFFFFF'
- id: Flowerspv3
- decals:
- 1157: 3,1
- 1196: 72,-18
- 15971: 68,-21
- - node:
- color: '#FFFFFFFF'
- id: Flowersy1
- decals:
- 523: -7.008356,-73.15212
- 524: -6.961481,-72.62087
- 1146: -5,3
- - node:
- color: '#FFFFFFFF'
- id: Flowersy2
- decals:
- 528: -1.9973309,-73.04275
- 1147: 2,6
- - node:
- color: '#FFFFFFFF'
- id: Flowersy3
- decals:
- 527: -1.9927311,-72.5115
- 1148: -5,-2
- - node:
- color: '#FFFFFFFF'
- id: Flowersy4
- decals:
- 525: -7.0083566,-72.05837
- 526: -1.9771061,-72.02712
- 1149: 3,-4
- - node:
- color: '#52B4E996'
- id: FullTileOverlayGreyscale
- decals:
- 724: 24,-26
- 725: 24,-25
- 726: 25,-25
- 727: 26,-25
- 728: 26,-26
- 729: 25,-26
- 736: 24,-31
- 737: 25,-31
- 738: 25,-32
- 739: 24,-32
- 740: 31,-32
- 741: 32,-32
- 742: 32,-31
- 743: 31,-31
- - node:
- color: '#55555596'
- id: FullTileOverlayGreyscale
- decals:
- 65: -15,13
- 66: -15,14
- 67: -15,15
- 68: -15,16
- 69: 13,13
- 70: 13,14
- 71: 13,15
- 72: 13,16
- - node:
- color: '#6E9BAFFF'
- id: FullTileOverlayGreyscale
- decals:
- 103: 31,-43
- 104: 36,-43
- - node:
- color: '#919191FF'
- id: FullTileOverlayGreyscale
- decals:
- 96: 35,-43
- 97: 35,-69
- - node:
- color: '#DE3A3A96'
- id: FullTileOverlayGreyscale
- decals:
- 1269: 58,6
- 1270: 62,6
- 1271: 66,6
- 1272: 69,7
- - node:
- color: '#FFFFFFFF'
- id: Grassa3
- decals:
- 1289: 88,-24
- 2373: -18,43
- - node:
- color: '#FFFFFFFF'
- id: Grassa4
- decals:
- 15972: 69,-21
- 15973: 88,-20
- 19239: 3,-3
- - node:
- color: '#FFFFFFFF'
- id: Grassa5
- decals:
- 16359: 89,3
- - node:
- color: '#FFFFFFFF'
- id: Grassb1
- decals:
- 1161: 4,4
- 1288: 85,-17
- 1303: -34,40
- 2389: -20,42
- 3058: -34,41
- - node:
- color: '#FFFFFFFF'
- id: Grassb2
- decals:
- 1162: -3,9
- 1192: 70,-17
- 1290: 90,-17
- - node:
- color: '#FFFFFFFF'
- id: Grassb3
- decals:
- 1163: -6,-5
- 1285: 86,-16
- - node:
- color: '#FFFFFFFF'
- id: Grassb4
- decals:
- 1159: -3,4
- 1193: 70,-24
- 1286: 86,-25
- 1624: -39,32
- 2376: -18,39
- - node:
- color: '#FFFFFFFF'
- id: Grassb5
- decals:
- 1160: 1,-4
- 1194: 68,-20
- 1287: 89,-19
- 1625: -40,35
- 2377: -21,41
- 3057: -33,42
- 19240: 2,2
- - node:
- color: '#FFFFFFFF'
- id: Grassc1
- decals:
- 1123: -5,5
- 1124: 2,4
- 1125: 4,1
- 1126: 1,-1
- 1127: -3,-2
- 1128: -5,0
- 1129: -6,-4
- 1130: 3,-6
- 1131: 2,8
- 1187: 69,-18
- 1292: 87,-20
- 1301: -34,42
- 2372: -20,39
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: Grassc1
- decals:
- 262: 36.591118,-46.696697
- 263: 35.8887,-47.060184
- 264: 35.840252,-47.630493
- 265: 37.362995,-46.68542
- 266: 37.400673,-55.197823
- 269: 37,-56
- 270: 36.075,-56.228687
- 285: 52.41801,-47.978123
- 286: 51.473373,-48.293144
- 287: 52.41801,-47.420773
- 295: 52.705982,-27.63774
- 296: 53.384186,-27.880066
- - node:
- color: '#FFFFFFFF'
- id: Grassc2
- decals:
- 1132: -4,9
- 1133: 1,5
- 1134: 2,1
- 1135: 4,-1
- 1136: -5,-4
- 1137: 2,-5
- 1188: 73,-20
- 1293: 86,-18
- 1295: 89,-25
- 1298: 89,-18
- - node:
- color: '#FFFFFFFF'
- id: Grassc3
- decals:
- 1138: -6,-2
- 1139: 2,-3
- 1140: -4,2
- 1189: 70,-23
- 1191: 71,-21
- 1297: 85,-20
- 1626: -39,31
- 2388: -20,40
- 3056: -33,40
- 19241: 4,-4
- - node:
- color: '#FFFFFFFF'
- id: Grassc4
- decals:
- 1141: -6,2
- 1142: 3,-2
- 1143: -4,-5
- 1144: 4,5
- 1145: -3,7
- 1190: 72,-24
- 1291: 86,-22
- 1294: 88,-16
- 1296: 86,-24
- 1299: 87,-17
- 1619: -41,33
- 2371: -21,42
- 2375: -17,42
- 15969: 68,-23
- 15970: 69,-23
- - node:
- color: '#FFFFFFFF'
- id: Grassd1
- decals:
- 1092: -5,-3
- 1093: 4,-5
- 1094: 3,0
- 1095: -5,4
- 1096: 2,9
- 1097: -4,8
- 1172: 68,-18
- 1173: 72,-21
- 1174: 73,-24
- 1273: 85,-16
- 1274: 88,-17
- 1275: 86,-19
- 1276: 85,-21
- 1277: 87,-23
- 1278: 85,-25
- 1620: -40,31
- 1627: -41,32
- 2355: -19,43
- 2363: -18,42
- 2364: -18,42
- 2365: -18,43
- 15947: 71,-24
- 15948: 72,-23
- 15949: 69,-23
- 15950: 70,-23
- 15951: 73,-23
- 15955: 72,-20
- 15956: 71,-20
- 15957: 69,-21
- 15958: 70,-17
- 15959: 71,-17
- 15960: 68,-18
- 15961: 72,-18
- 15962: 74,-18
- 15963: 72,-17
- 15974: 86,-21
- 15975: 85,-22
- 15976: 87,-21
- 15977: 87,-22
- 15978: 86,-23
- 15979: 87,-24
- 15980: 87,-25
- 15981: 86,-25
- 15982: 89,-18
- 15983: 87,-18
- 15984: 88,-18
- 15985: 87,-17
- 15986: 85,-17
- 15987: 85,-16
- 15988: 87,-16
- 15989: 86,-17
- 15990: 87,-16
- 15991: 87,-16
- 15992: 85,-19
- 15993: 85,-20
- 15994: 86,-21
- 15995: 87,-21
- 15996: 87,-20
- 15997: 86,-22
- 15998: 86,-23
- 15999: 86,-23
- 16000: 86,-22
- 16001: 87,-21
- 16002: 86,-21
- - node:
- color: '#FFFFFFFF'
- id: Grassd2
- decals:
- 1098: -5,1
- 1099: 3,4
- 1100: 1,1
- 1101: 1,-2
- 1102: 2,-6
- 1103: -3,-6
- 1104: -6,-1
- 1175: 68,-21
- 1176: 72,-17
- 1177: 69,-23
- 1279: 88,-25
- 1280: 88,-21
- 1281: 85,-23
- 1282: 88,-19
- 1283: 85,-18
- 1284: 89,-16
- 1629: -39,35
- 2354: -17,41
- 2366: -18,39
- 2386: -20,40
- 2390: -20,42
- 2391: -20,42
- 15964: 73,-17
- 15965: 71,-18
- 15966: 71,-18
- 15967: 69,-17
- 15968: 71,-17
- 16355: 82,3
- 19136: -6,0
- 19137: -6,1
- 19138: -6,-1
- 19139: -3,-1
- 19140: -3,0
- 19141: -5,-1
- 19142: -3,-3
- 19143: -4,-2
- 19144: -3,4
- 19145: -3,4
- 19146: -3,3
- 19147: -3,5
- 19148: -3,6
- 19149: -3,7
- 19150: -4,7
- 19151: -4,8
- 19152: -3,9
- 19153: -3,8
- 19154: -4,8
- 19155: -4,9
- 19156: -4,8
- 19157: -4,7
- 19158: -4,8
- 19159: -3,9
- 19160: -3,8
- 19161: -4,5
- 19162: -4,6
- 19163: -3,5
- 19164: -4,4
- 19165: -5,4
- 19166: -4,3
- 19167: -3,2
- 19196: 2,-2
- 19197: 3,-1
- 19198: 2,-4
- 19199: 1,-5
- 19200: 3,-6
- 19201: 4,-6
- 19202: 4,-6
- - node:
- color: '#FFFFFFFF'
- id: Grassd3
- decals:
- 1105: -3,2
- 1106: 1,6
- 1107: 4,2
- 1108: 3,-3
- 1109: -5,-5
- 1178: 69,-24
- 1179: 74,-20
- 1180: 69,-17
- 1621: -39,32
- 2353: -17,42
- 2367: -19,39
- 2368: -20,43
- 2387: -20,42
- 3054: -33,42
- 3055: -34,41
- 16358: 89,3
- - node:
- color: '#FFFFFFFF'
- id: Grasse1
- decals:
- 1110: -4,-1
- 1111: 2,-4
- 1112: 4,-2
- 1113: -6,3
- 1114: 2,7
- 1181: 71,-23
- 1182: 69,-20
- 1623: -38,34
- 1628: -39,34
- 2359: -21,41
- 2360: -21,41
- 16357: 88,3
- 19168: -4,-2
- 19169: -3,-2
- 19170: -3,-4
- 19171: -3,-4
- 19172: -3,-6
- 19173: -4,-6
- 19174: -5,-6
- 19175: -4,-6
- 19176: -4,-5
- 19177: -5,-5
- 19178: -3,-5
- 19179: -3,-4
- 19180: -5,-3
- 19181: -6,-2
- 19182: -5,-1
- 19183: -6,0
- 19184: 3,1
- 19185: 2,1
- 19186: 2,3
- 19187: 1,2
- 19188: 2,3
- - node:
- color: '#FFFFFFFF'
- id: Grasse2
- decals:
- 1115: -4,6
- 1116: -4,3
- 1117: 2,-1
- 1118: 3,-4
- 1119: -6,-6
- 1183: 68,-23
- 1184: 70,-21
- 1302: -33,43
- 1622: -41,35
- 2352: -17,40
- 2356: -20,43
- 2357: -20,39
- 2374: -19,43
- 16356: 81,3
- 19234: 4,-4
- 19235: 4,-3
- 19236: 4,-3
- 19237: 3,-5
- 19238: 3,-1
- - node:
- color: '#FFFFFFFF'
- id: Grasse3
- decals:
- 1120: -4,-4
- 1121: 2,2
- 1122: -4,5
- 1185: 73,-18
- 1186: 74,-23
- 1300: -33,40
- 2351: -21,42
- 2358: -21,40
- 2361: -18,40
- 2362: -18,40
- 2369: -21,40
- 2370: -17,42
- 15952: 73,-21
- 15953: 74,-21
- 15954: 72,-20
- 19189: 1,3
- 19190: 1,4
- 19191: 1,5
- 19192: 1,6
- 19193: 1,7
- 19194: 1,8
- 19195: 1,8
- 19203: 1,-6
- 19204: 1,-3
- 19205: 4,-2
- 19206: 4,-2
- 19207: 3,-2
- 19208: 3,2
- 19209: 3,2
- 19210: 3,3
- 19211: 3,3
- 19212: 3,4
- 19213: 4,4
- 19214: 4,2
- 19215: 3,0
- 19216: 3,-1
- 19217: 3,-1
- 19218: 3,-1
- 19219: 3,0
- 19220: 4,0
- 19221: 4,0
- 19222: 4,0
- 19223: 1,0
- 19224: 2,-2
- 19225: 3,-2
- 19226: 3,-3
- 19227: 2,-3
- 19228: 3,-3
- 19229: 3,-3
- 19230: 4,-4
- 19231: 2,-5
- 19232: 2,-5
- 19233: 3,-4
- - node:
- color: '#169C9C93'
- id: HalfTileOverlayGreyscale
- decals:
- 1971: -71,-23
- 1972: -70,-23
- 1973: -69,-23
- - node:
- color: '#334E6DC8'
- id: HalfTileOverlayGreyscale
- decals:
- 647: -125,35
- 648: -124,35
- 649: -123,35
- 650: -115,35
- 651: -114,35
- 652: -113,35
- 658: -122,50
- 659: -121,50
- 660: -120,50
- 661: -119,50
- 662: -118,50
- 663: -117,50
- 664: -116,50
- - node:
- color: '#52B4E996'
- id: HalfTileOverlayGreyscale
- decals:
- 79: -6,18
- 80: -5,18
- 81: -4,18
- - node:
- color: '#8BDA8EFF'
- id: HalfTileOverlayGreyscale
- decals:
- 16213: 96,7
- 16214: 97,7
- 16220: 95,7
- - node:
- color: '#A4610696'
- id: HalfTileOverlayGreyscale
- decals:
- 63: 14,32
- 84: -8,16
- 85: -9,16
- - node:
- color: '#B240B4FF'
- id: HalfTileOverlayGreyscale
- decals:
- 688: -24,-59
- 689: -23,-59
- 690: -22,-59
- - node:
- color: '#D381C996'
- id: HalfTileOverlayGreyscale
- decals:
- 82: 6,16
- 83: 7,16
- - node:
- color: '#DA8BC9FF'
- id: HalfTileOverlayGreyscale
- decals:
- 3998: 10,70
- 3999: 11,70
- 4000: 12,70
- - node:
- color: '#DE3A3A96'
- id: HalfTileOverlayGreyscale
- decals:
- 73: -2,18
- 74: -1,18
- 75: 0,18
- - node:
- color: '#EFB34196'
- id: HalfTileOverlayGreyscale
- decals:
- 76: 2,18
- 77: 3,18
- 78: 4,18
- 1868: -60,-23
- 1869: -61,-23
- 1870: -62,-23
- 1871: -63,-23
- 1872: -64,-23
- 1873: -65,-23
- - node:
- color: '#FA750096'
- id: HalfTileOverlayGreyscale
- decals:
- 1583: -38,54
- 1584: -39,54
- - node:
- color: '#169C9C93'
- id: HalfTileOverlayGreyscale180
- decals:
- 1980: -71,-29
- 1981: -70,-29
- 1982: -69,-29
- - node:
- color: '#334E6DC8'
- id: HalfTileOverlayGreyscale180
- decals:
- 653: -115,43
- 654: -114,43
- 655: -113,43
- - node:
- cleanable: True
- color: '#334E6DC8'
- id: HalfTileOverlayGreyscale180
- decals:
- 576: -125,43
- 577: -124,43
- 578: -123,43
- 629: -122,45
- 630: -121,45
- 631: -120,45
- 632: -119,45
- 633: -118,45
- 634: -117,45
- 635: -116,45
- - node:
- color: '#52B4E996'
- id: HalfTileOverlayGreyscale180
- decals:
- 159: -7,-62
- - node:
- color: '#639137BF'
- id: HalfTileOverlayGreyscale180
- decals:
- 1609: -39,44
- - node:
- color: '#8BDA8EFF'
- id: HalfTileOverlayGreyscale180
- decals:
- 16211: 95,6
- 16212: 97,6
- - node:
- color: '#A4610696'
- id: HalfTileOverlayGreyscale180
- decals:
- 175: 30,56
- 176: 27,56
- 177: 26,56
- - node:
- color: '#DA8BC9FF'
- id: HalfTileOverlayGreyscale180
- decals:
- 4007: 10,66
- 4008: 11,66
- 4009: 12,66
- - node:
- color: '#EFB34196'
- id: HalfTileOverlayGreyscale180
- decals:
- 1858: -64,-29
- 1859: -63,-29
- 1860: -62,-29
- 1861: -61,-29
- 1862: -60,-29
- 1863: -59,-29
- - node:
- color: '#FA750096'
- id: HalfTileOverlayGreyscale180
- decals:
- 1588: -39,52
- 1589: -38,52
- - node:
- color: '#169C9C93'
- id: HalfTileOverlayGreyscale270
- decals:
- 1974: -72,-24
- 1975: -72,-25
- 1976: -72,-26
- 1977: -72,-27
- 1978: -72,-28
- - node:
- color: '#334E6DC8'
- id: HalfTileOverlayGreyscale270
- decals:
- 656: -123,48
- - node:
- cleanable: True
- color: '#334E6DC8'
- id: HalfTileOverlayGreyscale270
- decals:
- 579: -120,28
- 580: -120,29
- 581: -120,30
- 582: -120,31
- 583: -120,32
- 584: -120,33
- 585: -120,34
- 586: -120,35
- 587: -120,36
- 588: -120,43
- 589: -120,42
- 590: -120,41
- 591: -120,40
- 592: -120,39
- 593: -120,38
- 594: -120,37
- 617: -120,26
- 618: -120,25
- 619: -120,24
- 620: -120,23
- 621: -120,22
- 622: -120,21
- 636: -123,47
- - node:
- color: '#8BDA8EFF'
- id: HalfTileOverlayGreyscale270
- decals:
- 16215: 95,6
- 16219: 95,7
- - node:
- color: '#A4610696'
- id: HalfTileOverlayGreyscale270
- decals:
- 170: 25,60
- 171: 25,59
- - node:
- color: '#A5CDE6FF'
- id: HalfTileOverlayGreyscale270
- decals:
- 98: 30,-43
- - node:
- color: '#DA8BC9FF'
- id: HalfTileOverlayGreyscale270
- decals:
- 3993: 10,67
- 3994: 10,66
- 3995: 10,68
- 3996: 10,69
- 3997: 10,70
->>>>>>> master
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale270
decals:
-<<<<<<< HEAD
385: 10,81
386: 10,80
387: 10,79
@@ -38289,65 +17486,37 @@ entities:
3379: -66,-25
3380: -66,-26
3381: -66,-27
-=======
- 1874: -66,-24
- 1875: -66,-25
- 1876: -66,-26
- 1877: -66,-27
->>>>>>> master
- node:
cleanable: True
color: '#EFB34196'
id: HalfTileOverlayGreyscale270
decals:
-<<<<<<< HEAD
1376: -124,23
1377: -124,22
1378: -124,21
-=======
- 623: -124,23
- 624: -124,22
- 625: -124,21
->>>>>>> master
- node:
color: '#FA750096'
id: HalfTileOverlayGreyscale270
decals:
-<<<<<<< HEAD
2948: -40,53
-=======
- 1586: -40,53
->>>>>>> master
- node:
color: '#169C9C93'
id: HalfTileOverlayGreyscale90
decals:
-<<<<<<< HEAD
3487: -68,-28
3488: -68,-27
3489: -68,-26
3490: -68,-25
-=======
- 1983: -68,-28
- 1984: -68,-27
- 1985: -68,-26
- 1986: -68,-25
->>>>>>> master
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale90
decals:
-<<<<<<< HEAD
1410: -115,48
-=======
- 657: -115,48
->>>>>>> master
- node:
cleanable: True
color: '#334E6DC8'
id: HalfTileOverlayGreyscale90
decals:
-<<<<<<< HEAD
1348: -118,43
1349: -118,42
1350: -118,41
@@ -38616,311 +17785,10 @@ entities:
decals:
26: 25,41
27: 24,41
-=======
- 595: -118,43
- 596: -118,42
- 597: -118,41
- 598: -118,40
- 599: -118,38
- 600: -118,39
- 601: -118,37
- 602: -118,36
- 603: -118,35
- 604: -118,34
- 605: -118,33
- 606: -118,32
- 607: -118,31
- 608: -118,30
- 609: -118,29
- 610: -118,28
- 611: -118,26
- 612: -118,25
- 613: -118,24
- 614: -118,23
- 615: -118,22
- 616: -118,21
- 637: -115,47
- 956: 31,-2
- - node:
- color: '#8BDA8EFF'
- id: HalfTileOverlayGreyscale90
- decals:
- 16216: 97,6
- 16217: 97,7
- - node:
- color: '#A4610696'
- id: HalfTileOverlayGreyscale90
- decals:
- 172: 31,59
- 173: 31,58
- - node:
- color: '#A5CDE6FF'
- id: HalfTileOverlayGreyscale90
- decals:
- 99: 32,-43
- - node:
- color: '#DA8BC9FF'
- id: HalfTileOverlayGreyscale90
- decals:
- 4001: 12,70
- 4002: 12,69
- 4003: 12,68
- 4004: 12,68
- 4005: 12,67
- 4006: 12,66
- - node:
- color: '#EFB34196'
- id: HalfTileOverlayGreyscale90
- decals:
- 1865: -58,-28
- 1866: -58,-27
- 1867: -58,-24
- - node:
- cleanable: True
- color: '#EFB34196'
- id: HalfTileOverlayGreyscale90
- decals:
- 626: -122,23
- 627: -122,22
- 628: -122,21
- - node:
- color: '#FA750096'
- id: HalfTileOverlayGreyscale90
- decals:
- 1591: -37,53
- - node:
- angle: -1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: LoadingArea
- decals:
- 546: -16,77
- 547: -16,84
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: LoadingArea
- decals:
- 40: 16,51
- 41: 16,50
- 42: 16,49
- 43: 16,48
- 151: -36,25
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: LoadingArea
- decals:
- 26: 25,41
- 27: 24,41
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: LoadingArea
- decals:
- 24: 24,53
- 25: 24,52
- 1009: -35,-40
- 1079: -35,-45
- 3336: -2,60
- - node:
- angle: 3.141592653589793 rad
- color: '#8BDA8EFF'
- id: LoadingAreaGreyscale
- decals:
- 16218: 96,6
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkCornerNe
- decals:
- 16473: 78,10
- 16493: 86,10
- 16521: 93,23
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkCornerNw
- decals:
- 16471: 76,10
- 16474: 80,10
- 16522: 91,23
- 16531: 81,14
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkCornerSe
- decals:
- 16476: 78,8
- 16492: 86,9
- 16514: 93,12
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkCornerSw
- decals:
- 16475: 76,8
- 16529: 81,12
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkEndW
- decals:
- 16564: 91,15
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkInnerNe
- decals:
- 16484: 78,9
- 16501: 83,10
- 16542: 93,13
- 16546: 93,17
- 16550: 93,21
- 16555: 92,23
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkInnerNw
- decals:
- 16478: 76,9
- 16485: 80,9
- 16500: 83,10
- 16541: 91,14
- 16552: 91,21
- 16556: 92,23
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkInnerSe
- decals:
- 16482: 78,9
- 16543: 93,13
- 16547: 93,17
- 16548: 93,20
- 16549: 93,21
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkInnerSw
- decals:
- 16483: 76,9
- 16553: 91,21
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkLineE
- decals:
- 16479: 75,9
- 16480: 79,9
- 16515: 93,14
- 16516: 93,16
- 16517: 93,18
- 16518: 93,19
- 16519: 93,20
- 16520: 93,22
- 16554: 90,21
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkLineN
- decals:
- 16468: 83,11
- 16472: 77,10
- 16494: 85,10
- 16495: 84,10
- 16496: 81,10
- 16497: 82,10
- 16498: 83,11
- 16532: 82,14
- 16533: 84,14
- 16534: 83,14
- 16535: 85,14
- 16536: 86,14
- 16537: 87,14
- 16538: 89,14
- 16539: 88,14
- 16540: 90,14
- 16563: 92,15
- 16568: 91,15
- 16569: 93,15
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkLineS
- decals:
- 16469: 83,11
- 16477: 77,8
- 16486: 80,9
- 16487: 81,9
- 16488: 82,9
- 16489: 83,9
- 16490: 84,9
- 16491: 85,9
- 16499: 83,11
- 16502: 82,12
- 16503: 84,12
- 16504: 85,12
- 16505: 86,12
- 16506: 87,12
- 16507: 89,12
- 16508: 88,12
- 16509: 90,12
- 16510: 91,12
- 16511: 92,12
- 16512: 93,12
- 16557: 92,24
- 16562: 92,15
- 16566: 91,15
- 16567: 93,15
- - node:
- color: '#DA8B8BFF'
- id: MiniTileDarkLineW
- decals:
- 16481: 79,9
- 16513: 94,13
- 16523: 91,22
- 16524: 91,20
- 16525: 91,19
- 16526: 91,18
- 16527: 91,17
- 16528: 91,16
- 16530: 81,13
- 16544: 94,13
- 16545: 94,17
- 16551: 94,21
- - node:
- color: '#8CB7E8FF'
- id: MiniTileDiagonalCheckerBOverlay
- decals:
- 10398: 32,-40
- 10399: 33,-40
- 10400: 34,-40
- 10401: 35,-40
- 10402: 36,-40
- - node:
- cleanable: True
- color: '#151C2553'
- id: MiniTileDiagonalOverlay
- decals:
- 220: -16,-2
- 221: -16,-1
- 222: -16,0
- 223: -16,1
- 224: -16,2
- 225: -16,3
- 226: -16,4
- 227: -16,5
- - node:
- color: '#1D1D214C'
- id: MiniTileDiagonalOverlay
- decals:
- 1209: 4,-51
- 1210: 5,-51
- 1211: 6,-51
- 1212: 7,-51
- 1213: 8,-51
- 1214: 9,-51
- 1215: 10,-51
- - node:
- color: '#9D9D975A'
- id: MiniTileDiagonalOverlay
- decals:
- 1216: 12,-59
- 1217: 12,-60
- 1218: 12,-61
->>>>>>> master
- - node:
- color: '#FFFFFFFF'
-<<<<<<< HEAD
- id: LoadingArea
decals:
24: 24,53
25: 24,52
@@ -39000,84 +17868,10 @@ entities:
id: MiniTileSteelInnerSe
decals:
2246: 28,1
-=======
- id: MiniTileSteelCornerNe
- decals:
- 16086: 7,-15
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelCornerNw
- decals:
- 16087: 9,-15
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelCornerSe
- decals:
- 16085: 7,-13
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelCornerSw
- decals:
- 16084: 9,-13
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelInnerNe
- decals:
- 16098: 9,-14
- 19095: 8,-13
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelInnerNw
- decals:
- 16097: 7,-14
- 19094: 8,-13
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: MiniTileSteelInnerNw
- decals:
- 946: 30,1
- 947: 28,-2
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelInnerSe
- decals:
- 16093: 8,-16
- 16094: 9,-14
- node:
cleanable: True
- color: '#FFFFFFFF'
- id: MiniTileSteelInnerSe
- decals:
- 945: 28,1
- - node:
color: '#FFFFFFFF'
id: MiniTileSteelInnerSw
- decals:
- 16095: 8,-16
- 16096: 7,-14
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: MiniTileSteelInnerSw
- decals:
- 948: 28,-2
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelLineE
- decals:
- 16090: 7,-16
- 16091: 6,-14
- - node:
- color: '#DA8B8BFF'
- id: MiniTileSteelLineN
- decals:
- 16470: 83,11
->>>>>>> master
- - node:
- color: '#FFFFFFFF'
-<<<<<<< HEAD
- id: MiniTileSteelInnerSw
decals:
2249: 28,-2
- node:
@@ -39513,495 +18307,9 @@ entities:
4513: -19,42
4514: -18,41
4515: -19,40
-=======
- id: MiniTileSteelLineN
- decals:
- 16088: 8,-17
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelLineS
- decals:
- 19093: 8,-12
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelLineW
- decals:
- 16089: 9,-16
- 16092: 10,-14
- - node:
- color: '#FFFFFFFF'
- id: MiniTileWhiteCornerSw
- decals:
- 720: 13,4
- - node:
- color: '#FFFFFFFF'
- id: MiniTileWhiteEndE
- decals:
- 721: 14,4
- - node:
- color: '#FFFFFFFF'
- id: MiniTileWhiteEndN
- decals:
- 722: 13,5
- - node:
- color: '#FFFFFFFF'
- id: MiniTileWhiteInnerNe
- decals:
- 723: 13,4
- - node:
- color: '#FFFFFFFF'
- id: MiniTileWhiteInnerNw
- decals:
- 13714: 53,-37
- - node:
- color: '#FFFFFFFF'
- id: MiniTileWhiteInnerSw
- decals:
- 13713: 53,-37
- - node:
- color: '#DE3A3A96'
- id: MiniTileWhiteLineE
- decals:
- 867: 83,11
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteLineE
- decals:
- 566: 6,86
- - node:
- color: '#FFFFFFFF'
- id: MiniTileWhiteLineE
- decals:
- 13712: 52,-37
- - node:
- color: '#FFFFFFFF'
- id: MiniTileWhiteLineN
- decals:
- 5983: 13,3
- 13717: 54,-35
- 13718: 55,-35
- - node:
- color: '#DE3A3A96'
- id: MiniTileWhiteLineW
- decals:
- 868: 83,11
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteLineW
- decals:
- 565: 6,86
- - node:
- color: '#FFFFFFFF'
- id: MiniTileWhiteLineW
- decals:
- 13715: 53,-36
- 13716: 53,-38
- - node:
- color: '#630000FF'
- id: Omni
- decals:
- 14028: -32.978848,-78.98036
- - node:
- color: '#00000019'
- id: OriginStationSign4
- decals:
- 14257: -68,61
- 14258: -68,60
- 14259: -68,59
- 14260: -68,58
- 14261: -67,58
- 14262: -67,57
- 14263: -66,58
- 14264: -66,59
- 14265: -67,59
- 14266: -67,60
- 14267: -66,60
- 14268: -66,61
- 14269: -67,61
- 14270: -65,62
- 14271: -65,61
- 14272: -65,60
- 14275: -65,59
- 14279: -65,58
- 14342: -68,62
- 14343: -67,62
- 14344: -66,62
- - node:
- color: '#00000028'
- id: OriginStationSign4
- decals:
- 14374: -72,57
- 14375: -72,58
- 14376: -71,58
- 14377: -71,57
- 14378: -70,57
- 14379: -70,58
- 14380: -72,58
- 14381: -72,57
- 14382: -71,57
- 14383: -71,58
- 14384: -70,58
- 14385: -70,57
- 14386: -72,56
- 14387: -71,56
- 14388: -70,56
- 14389: -72,57
- 14390: -72,58
- 14391: -71,58
- 14392: -71,57
- 14393: -70,57
- 14394: -70,58
- 14395: -72,58
- 14396: -71,58
- 14397: -70,58
- 14398: -71,57
- 14399: -71,58
- 14400: -70,58
- 14401: -72,58
- 14402: -71,56
- 14403: -72,56
- 14404: -71,58
- 14405: -70,58
- 14406: -70,57
- - node:
- color: '#A4610696'
- id: QuarterTileOverlayGreyscale
- decals:
- 64: 12,29
- - node:
- color: '#C3E6A5FF'
- id: QuarterTileOverlayGreyscale
- decals:
- 113: 39,-69
- - node:
- color: '#52B4E996'
- id: QuarterTileOverlayGreyscale180
- decals:
- 646: 31,-39
- - node:
- color: '#A5CDE6FF'
- id: QuarterTileOverlayGreyscale180
- decals:
- 100: 38,-43
- 102: 6,-41
- - node:
- color: '#9FED5896'
- id: QuarterTileOverlayGreyscale270
- decals:
- 160: -2,52
- - node:
- color: '#A5CDE6FF'
- id: QuarterTileOverlayGreyscale270
- decals:
- 101: 34,-43
- - node:
- color: '#D381C996'
- id: QuarterTileOverlayGreyscale270
- decals:
- 158: 19,-50
- - node:
- color: '#DCB9D7FF'
- id: QuarterTileOverlayGreyscale270
- decals:
- 125: 16,-46
- - node:
- color: '#FFFFFFFF'
- id: Remains
- decals:
- 276: 37,-56
- 14027: -33.82276,-75.75149
- 16574: 99.21471,-3.5288568
- 19302: -42.945545,-64.87067
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: Remains
- decals:
- 478: -34.03625,-32.96285
- - node:
- color: '#FFFFFFFF'
- id: Rock01
- decals:
- 19242: -4,-5
- 19248: 1,4
- - node:
- color: '#FFFFFFFF'
- id: Rock02
- decals:
- 908: -36,48
- 19243: 3,-1
- - node:
- color: '#FFFFFFFF'
- id: Rock03
- decals:
- 19245: -6,0
- 19249: -4,8
- - node:
- color: '#FFFFFFFF'
- id: Rock04
- decals:
- 909: -36,50
- 19244: 3,4
- 19250: 2,2
- - node:
- color: '#FFFFFFFF'
- id: Rock05
- decals:
- 19246: -6,-6
- 19251: -3,-2
- - node:
- color: '#FFFFFFFF'
- id: Rock06
- decals:
- 495: 0,0
- 16361: 82,3
- 19247: 3,-3
- - node:
- color: '#000000FF'
- id: Rust
- decals:
- 2792: -19,41
- 2793: -19,41
- 2794: -19,41
- 2795: -19,41
- 2796: -19,40
- 2797: -19,40
- 2798: -19,40
- 2799: -18,41
- 2800: -18,41
- 2801: -19,42
- 2802: -19,42
- 2803: -20,41
- 2804: -20,41
- 2805: -20,41
- 2806: -20,41
- 2807: -19,42
- 2808: -18,41
- 2809: -19,40
- 16003: 91,-20
- 16004: 90,-20
- 16005: 90,-21
- 16006: 91,-21
- 16007: 92,-21
- 16008: 91,-22
- 16009: 93,-22
- 16010: 91,-23
- 16011: 92,-23
- 16012: 92,-22
- 16013: 93,-21
- 16014: 92,-20
- 16015: 92,-21
- 16016: 92,-20
- 16017: 92,-19
- 16018: 92,-19
- 16019: 92,-18
- 16020: 92,-17
- 16021: 92,-16
- 16022: 93,-16
- 16023: 93,-17
- 16024: 93,-19
- 16025: 93,-19
- 16026: 92,-18
- 16027: 92,-17
- 16028: 91,-16
- 16029: 92,-16
- 16030: 92,-18
- 16031: 91,-19
- 16032: 91,-20
- 16033: 92,-21
- 16034: 93,-21
- 16035: 92,-23
- 16036: 92,-24
- 16037: 91,-24
- 16038: 90,-23
- 16039: 90,-22
- 16040: 90,-23
- 16041: 90,-24
- 16042: 91,-25
- 16043: 92,-25
- 16044: 93,-25
- 16045: 93,-25
- 16046: 93,-23
- 16047: 92,-23
- 16048: 91,-23
- 16049: 92,-24
- 16050: 92,-25
- 16051: 92,-23
- 16052: 92,-22
- 16053: 93,-21
- 16054: 92,-22
- 16055: 93,-21
- 16056: 92,-20
- 16057: 93,-20
- 16058: 93,-20
- 16059: 93,-21
- 16060: 93,-22
- 16061: 93,-21
- 16062: 93,-19
- 16063: 93,-18
- 16064: 93,-17
- 16065: 93,-16
- 16066: 93,-19
- 16067: 93,-20
- 16068: 93,-22
- 16069: 93,-22
- 16070: 93,-23
- 16071: 93,-24
- 16072: 92,-23
- 16073: 92,-21
- 16074: 92,-21
- 16075: 91,-21
- 16076: 91,-22
- 16077: 91,-23
- 16078: 91,-21
- 16079: 90,-20
- 16080: 90,-22
- 16081: 90,-22
- 16082: 91,-19
- 16083: 91,-18
- - node:
- cleanable: True
- color: '#FFFFFF5D'
- id: Rust
- decals:
- 16918: -71,-36
- 16919: -67,-35
- 16920: -63,-35
- 16921: -65,-37
- 16922: -65,-37
- - node:
- angle: -1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: StandClear
- decals:
- 570: -94,-8
- - node:
- color: '#FFFFFFFF'
- id: StandClear
- decals:
- 568: -93,-9
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: StandClear
- decals:
- 569: -92,-8
- 1010: -38,-40
- 1086: -38,-45
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: StandClear
- decals:
- 571: -93,-7
- - node:
- color: '#169C9C93'
- id: ThreeQuarterTileOverlayGreyscale
- decals:
- 1970: -72,-23
- - node:
- color: '#B240B4FF'
- id: ThreeQuarterTileOverlayGreyscale
- decals:
- 687: -25,-59
- - node:
- color: '#C3E6A5FF'
- id: ThreeQuarterTileOverlayGreyscale
- decals:
- 111: 38,-73
- - node:
- color: '#FA750096'
- id: ThreeQuarterTileOverlayGreyscale
- decals:
- 1585: -40,54
- node:
cleanable: True
- color: '#334E6DC8'
- id: ThreeQuarterTileOverlayGreyscale180
- decals:
- 953: 30,0
- 954: 31,-3
- - node:
- color: '#A4610696'
- id: ThreeQuarterTileOverlayGreyscale180
- decals:
- 62: 11,33
- 174: 31,56
- - node:
- color: '#EFB34196'
- id: ThreeQuarterTileOverlayGreyscale180
- decals:
- 1864: -58,-29
- - node:
- color: '#FA750096'
- id: ThreeQuarterTileOverlayGreyscale180
- decals:
- 1590: -37,52
- - node:
- color: '#169C9C93'
- id: ThreeQuarterTileOverlayGreyscale270
- decals:
- 1979: -72,-29
- - node:
- color: '#C3E6A5FF'
- id: ThreeQuarterTileOverlayGreyscale270
- decals:
- 112: 37,-74
- - node:
- color: '#D5188D99'
- id: ThreeQuarterTileOverlayGreyscale270
- decals:
- 521: 9,66
- - node:
- color: '#DE3A3A96'
- id: ThreeQuarterTileOverlayGreyscale270
- decals:
- 765: 39,3
- - node:
- color: '#FA750096'
- id: ThreeQuarterTileOverlayGreyscale270
- decals:
- 1587: -40,52
- - node:
- cleanable: True
- color: '#334E6DC8'
- id: ThreeQuarterTileOverlayGreyscale90
- decals:
- 952: 30,-4
- 955: 31,-1
- - node:
- color: '#B240B4FF'
- id: ThreeQuarterTileOverlayGreyscale90
- decals:
- 691: -21,-59
- - node:
- cleanable: True
- color: '#C27D3BFF'
- id: Tunnel
- decals:
- 1011: -38.002388,-36.958828
- - node:
color: '#FFFFFFFF'
- id: WarnBox
- decals:
- 13692: -58,23
- 13693: -58,24
- - node:
- color: '#FFFFFFFF'
- id: WarnCorner
- decals:
- 180: 26,57
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerFlipped
- decals:
- 121: 28,-61
- 178: 25,56
->>>>>>> master
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
-<<<<<<< HEAD
id: Rust
decals:
775: -34,-58
@@ -40019,52 +18327,24 @@ entities:
317: -55,18
318: -52,18
1242: -93,-9
-=======
- id: WarnCornerFlipped
- decals:
- 120: 27,-60
- - node:
- angle: 4.71238898038469 rad
- color: '#FFFFFFFF'
- id: WarnCornerFlipped
- decals:
- 122: 27,-61
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerGreyscaleNE
- decals:
- 1219: 7,-49
->>>>>>> master
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
-<<<<<<< HEAD
id: StandClear
decals:
1140: -73,-7
1243: -92,-8
2313: -38,-40
2389: -38,-45
-=======
- id: WarnCornerGreyscaleNW
- decals:
- 1220: 5,-49
->>>>>>> master
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
-<<<<<<< HEAD
id: StandClear
decals:
315: -54,8
316: -51,8
1125: 69,-1
1245: -93,-7
-=======
- id: WarnCornerGreyscaleSE
- decals:
- 1223: 7,-50
->>>>>>> master
- node:
color: '#169C9C93'
id: ThreeQuarterTileOverlayGreyscale
@@ -40501,7 +18781,6 @@ entities:
- node:
cleanable: True
color: '#FFFFFFFF'
-<<<<<<< HEAD
id: WarnCornerSW
decals:
1939: -57,46
@@ -41475,36 +19754,22 @@ entities:
16579: -4,37
16623: -41,28
16632: -39,27
-=======
- id: WarnCornerGreyscaleSW
- decals:
- 1222: 5,-50
->>>>>>> master
- node:
- color: '#FFFFFFFF'
- id: WarnCornerNE
+ cleanable: True
+ color: '#151C2553'
+ id: WoodTrimThinLineE
decals:
-<<<<<<< HEAD
502: 24,1
503: 24,0
504: 24,-1
505: 24,-3
506: 24,-4
507: 24,-6
-=======
- 698: -27,-50
- 705: -9,-46
- 710: -27,-54
- 1990: -71,-27
- 1995: -71,-23
- 13701: -52,29
->>>>>>> master
- node:
cleanable: True
- color: '#FFFFFFFF'
- id: WarnCornerNE
+ color: '#5F697828'
+ id: WoodTrimThinLineE
decals:
-<<<<<<< HEAD
471: 12,-52
- node:
color: '#DABC8BFF'
@@ -41691,14 +19956,10 @@ entities:
16622: -42,28
16628: -38,28
16629: -38,26
-=======
- 854: -48,55
->>>>>>> master
- node:
color: '#FFFFFFFF'
- id: WarnCornerNW
+ id: WoodTrimThinLineE
decals:
-<<<<<<< HEAD
968: 0,9
2215: 0,4
2216: 0,-6
@@ -41708,31 +19969,18 @@ entities:
3217: -49,-44
3218: -49,-45
3219: -49,-46
-=======
- 699: -31,-50
- 706: -11,-46
- 709: -30,-54
- 1989: -72,-27
- 1994: -72,-23
- 13702: -54,29
->>>>>>> master
- node:
cleanable: True
color: '#FFFFFFFF'
- id: WarnCornerNW
+ id: WoodTrimThinLineE
decals:
-<<<<<<< HEAD
492: -34,-7
493: -34,-5
-=======
- 855: -53,55
- 866: -57,51
->>>>>>> master
- node:
- color: '#FFFFFFFF'
- id: WarnCornerSE
+ cleanable: True
+ color: '#151C2553'
+ id: WoodTrimThinLineN
decals:
-<<<<<<< HEAD
509: 58,10
- node:
color: '#DABC8BFF'
@@ -41920,24 +20168,11 @@ entities:
16513: -36,-62
16581: -2,40
16626: -40,29
-=======
- 707: -9,-48
- 712: -27,-55
- 1987: -71,-29
- 1993: -71,-25
- 13700: -52,27
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WarnCornerSE
- decals:
- 833: -48,46
->>>>>>> master
- node:
+ angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
- id: WarnCornerSW
+ id: WoodTrimThinLineN
decals:
-<<<<<<< HEAD
943: 0,-5
944: 0,-4
945: 0,-3
@@ -41951,19 +20186,10 @@ entities:
953: 0,6
954: 0,7
955: 0,8
-=======
- 704: -11,-48
- 711: -30,-55
- 1988: -72,-29
- 1996: -72,-25
- 13699: -54,27
->>>>>>> master
- node:
- cleanable: True
color: '#FFFFFFFF'
- id: WarnCornerSW
+ id: WoodTrimThinLineN
decals:
-<<<<<<< HEAD
1095: 35,1
2376: -26,-4
2994: -40,29
@@ -41974,33 +20200,18 @@ entities:
3213: -54,-43
3214: -51,-43
3215: -50,-43
-=======
- 832: -57,46
->>>>>>> master
- node:
+ cleanable: True
color: '#FFFFFFFF'
- id: WarnCornerSmallNE
+ id: WoodTrimThinLineN
decals:
-<<<<<<< HEAD
467: 17,-49
499: -29,2
-=======
- 1848: -64,-29
- 6501: -14,-19
- 13688: -63,21
- 18732: -52,-5
- 18747: -56,-12
- 18757: -51,-10
- 18864: -74,-4
- 18870: -73,-3
- 18871: -71,-3
- 18872: -69,-3
->>>>>>> master
- node:
+ angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
- id: WarnCornerSmallNW
+ id: WoodTrimThinLineN
decals:
-<<<<<<< HEAD
956: -2,9
957: -2,8
958: -2,7
@@ -42233,98 +20444,10 @@ entities:
16575: -3,41
16619: -40,27
16620: -40,27
-=======
- 1849: -60,-29
- 6502: -10,-19
- 18748: -54,-16
- 18758: -49,-10
- 18865: -66,-4
- 18868: -67,-3
- 18869: -71,-3
- node:
color: '#FFFFFFFF'
- id: WarnCornerSmallSE
- decals:
- 1846: -64,-23
- 6506: -14,-17
- 13687: -63,27
- 18733: -52,0
- 18735: -56,-4
- 18756: -51,-6
- 18767: -55,9
- 18863: -74,2
- 18873: -73,1
- 18874: -71,1
- 18875: -69,1
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerSmallSW
- decals:
- 1847: -60,-23
- 6507: -10,-17
- 18734: -54,0
- 18755: -49,-6
- 18768: -50,9
- 18866: -66,2
- 18867: -67,1
- 18876: -71,1
- 18877: -69,1
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WarnCornerSmallSW
- decals:
- 968: 35,37
- - node:
- color: '#DE3A3A96'
- id: WarnLineE
- decals:
- 772: 59,19
- 773: 59,18
- 774: 59,17
- 775: 59,16
- 776: 59,15
- 777: 60,15
- 778: 60,16
- 779: 60,17
- 780: 60,18
- 781: 60,19
- 782: 61,19
- 783: 61,18
- 784: 61,17
- 785: 61,16
- 786: 61,15
- 787: 62,15
- 788: 62,16
- 789: 62,17
- 790: 62,18
- 791: 62,19
- 792: 63,19
- 793: 63,18
- 794: 63,17
- 795: 63,16
- 796: 63,15
- 797: 64,15
- 798: 64,16
- 799: 64,17
- 800: 64,18
- 801: 64,19
- 802: 65,19
- 803: 65,18
- 804: 65,17
- 805: 65,16
- 806: 65,15
- 807: 66,15
- 808: 66,16
- 809: 66,17
- 810: 66,18
- 811: 66,19
->>>>>>> master
- - node:
- color: '#FFFFFFFF'
- id: WarnLineE
+ id: WoodTrimThinLineS
decals:
-<<<<<<< HEAD
1890: 82,0
1891: 83,0
1892: 84,0
@@ -42340,96 +20463,23 @@ entities:
3224: -53,-47
3225: -54,-47
3226: -55,-47
-=======
- 703: -27,-51
- 1838: -64,-24
- 1839: -64,-25
- 1840: -64,-26
- 1841: -64,-27
- 1842: -64,-28
- 1991: -71,-28
- 1997: -71,-24
- 6471: -13,-16
- 6472: -13,-15
- 6473: -13,-14
- 6474: -13,-13
- 6484: -15,-16
- 6485: -15,-15
- 6486: -15,-14
- 6487: -15,-13
- 6488: -15,-13
- 6489: -11,-16
- 6490: -11,-15
- 6491: -11,-14
- 6492: -11,-13
- 13682: -63,22
- 13683: -63,23
- 13684: -63,24
- 13685: -63,25
- 13686: -63,26
- 13703: -52,28
- 18706: -52,-1
- 18707: -52,-2
- 18708: -52,-2
- 18709: -52,-4
- 18710: -52,-3
- 18749: -51,-9
- 18750: -51,-8
- 18751: -51,-7
- 18825: -74,-3
- 18826: -74,-2
- 18827: -74,-1
- 18828: -74,0
- 18829: -74,1
- 18848: -73,0
- 18849: -73,-1
- 18850: -73,-2
- 18851: -71,-2
- 18852: -71,-1
- 18853: -71,0
- 18854: -69,0
- 18855: -69,-1
- 18856: -69,-2
- 19952: 55,4
- 19953: 55,5
- 19958: 69,0
- 19962: 69,-1
- 19963: 69,1
->>>>>>> master
- node:
cleanable: True
color: '#FFFFFFFF'
- id: WarnLineE
+ id: WoodTrimThinLineS
decals:
-<<<<<<< HEAD
500: -29,2
-=======
- 638: -116,19
- 639: -116,18
- 643: -116,17
- 846: -48,47
- 847: -48,48
- 848: -48,49
- 849: -48,50
- 850: -48,51
- 851: -48,52
- 852: -48,53
- 853: -48,54
->>>>>>> master
- node:
- color: '#FFFFFFFF'
- id: WarnLineGreyscaleN
+ cleanable: True
+ color: '#151C2553'
+ id: WoodTrimThinLineW
decals:
-<<<<<<< HEAD
508: 20,0
-=======
- 1221: 6,-49
->>>>>>> master
- node:
- color: '#FFFFFFFF'
- id: WarnLineGreyscaleS
+ cleanable: True
+ color: '#5F697828'
+ id: WoodTrimThinLineW
decals:
-<<<<<<< HEAD
469: 2,-52
470: 2,-50
- node:
@@ -42633,14 +20683,10 @@ entities:
16635: -37,27
16636: -38,27
16637: -38,28
-=======
- 1224: 6,-50
->>>>>>> master
- node:
color: '#FFFFFFFF'
- id: WarnLineN
+ id: WoodTrimThinLineW
decals:
-<<<<<<< HEAD
2211: -2,6
2212: -2,2
2213: -2,1
@@ -42651,55 +20697,11 @@ entities:
3228: -56,-46
3229: -56,-45
3230: -56,-44
-=======
- 671: 65,12
- 672: 64,12
- 713: -29,-55
- 714: -28,-55
- 762: 66,12
- 1835: -61,-23
- 1836: -62,-23
- 1837: -63,-23
- 5427: 33,37
- 6503: -13,-17
- 6504: -12,-17
- 6505: -11,-17
- 13689: -62,27
- 13690: -61,27
- 13691: -60,27
- 13698: -59,27
- 13704: -53,27
- 18697: -59,0
- 18698: -58,0
- 18699: -57,0
- 18700: -57,0
- 18701: -55,0
- 18702: -56,0
- 18703: -51,0
- 18704: -50,0
- 18705: -49,0
- 18736: -55,-4
- 18759: -54,9
- 18760: -53,9
- 18761: -52,9
- 18762: -51,9
- 18818: -73,2
- 18819: -72,2
- 18820: -71,2
- 18821: -70,2
- 18822: -69,2
- 18823: -68,2
- 18824: -67,2
- 18860: -72,1
- 18861: -70,1
- 18862: -68,1
->>>>>>> master
- node:
cleanable: True
color: '#FFFFFFFF'
- id: WarnLineN
+ id: WoodTrimThinLineW
decals:
-<<<<<<< HEAD
466: 14,-52
490: -35,-5
491: -35,-7
@@ -42708,524 +20710,62 @@ entities:
496: -31,-7
497: -31,-8
498: -31,-9
-=======
- 838: -56,46
- 839: -55,46
- 840: -54,46
- 841: -53,46
- 842: -52,46
- 843: -50,46
- 844: -49,46
- 845: -51,46
- 966: 34,37
- 967: 33,37
->>>>>>> master
- node:
- color: '#FFFFFFFF'
- id: WarnLineS
+ angle: 1.5707963267948966 rad
+ color: '#FFFF00FF'
+ id: arrow
decals:
-<<<<<<< HEAD
2140: -80,-13
2141: -72,-7
-=======
- 697: -31,-51
- 1830: -60,-28
- 1831: -60,-27
- 1832: -60,-26
- 1833: -60,-25
- 1834: -60,-24
- 1992: -72,-28
- 1998: -72,-24
- 6475: -11,-16
- 6476: -11,-15
- 6477: -11,-14
- 6478: -11,-14
- 6479: -11,-13
- 6480: -13,-16
- 6481: -13,-15
- 6482: -13,-14
- 6483: -13,-13
- 6493: -9,-16
- 6494: -9,-15
- 6495: -9,-14
- 6496: -9,-14
- 6497: -9,-13
- 6511: -15,-16
- 6512: -15,-15
- 6513: -15,-14
- 6514: -15,-13
- 13705: -54,28
- 18693: -54,-4
- 18694: -54,-3
- 18695: -54,-2
- 18696: -54,-1
- 18731: -54,-4
- 18742: -54,-15
- 18743: -54,-14
- 18744: -54,-13
- 18745: -54,-12
- 18752: -49,-9
- 18753: -49,-8
- 18754: -49,-7
- 18830: -66,1
- 18831: -66,0
- 18832: -66,-1
- 18833: -66,-2
- 18834: -66,-3
- 18835: -71,0
- 18836: -71,-1
- 18837: -71,-2
- 18838: -69,0
- 18839: -69,-1
- 18840: -69,-2
- 18841: -67,0
- 18842: -67,-1
- 18843: -67,-2
- 18844: -67,-2
- 18845: -67,-1
- 18846: -67,0
- 18847: -67,-1
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WarnLineS
- decals:
- 834: -57,47
- 835: -57,48
- 836: -57,49
- 837: -57,50
- 860: -53,54
- 861: -53,53
- 862: -53,52
- 963: 35,34
- 964: 35,35
- 965: 35,36
- - node:
- color: '#FFFFFFFF'
- id: WarnLineW
- decals:
- 669: 65,12
- 670: 64,12
- 673: 63,12
- 674: 62,12
- 692: -27,-52
- 693: -28,-52
- 694: -29,-52
- 695: -30,-52
- 696: -31,-52
- 700: -28,-50
- 701: -29,-50
- 702: -30,-50
- 708: -10,-49
- 715: -28,-54
- 716: -29,-54
- 761: 66,12
- 770: 78,22
- 771: 77,22
- 1843: -63,-29
- 1844: -62,-29
- 1845: -61,-29
- 6498: -13,-19
- 6499: -12,-19
- 6500: -11,-19
- 13706: -53,29
- 18737: -59,-16
- 18738: -58,-16
- 18739: -57,-16
- 18740: -56,-16
- 18741: -55,-16
- 18746: -55,-12
- 18763: -55,17
- 18764: -54,17
- 18765: -53,17
- 18766: -52,17
- 18780: -55,17
- 18781: -52,17
- 18811: -73,-4
- 18812: -72,-4
- 18813: -71,-4
- 18814: -70,-4
- 18815: -69,-4
- 18816: -68,-4
- 18817: -67,-4
- 18857: -72,-3
- 18858: -70,-3
- 18859: -68,-3
->>>>>>> master
- node:
cleanable: True
- color: '#FFFFFFFF'
- id: WarnLineW
- decals:
- 856: -52,55
- 857: -51,55
- 858: -50,55
- 859: -49,55
- 863: -54,51
- 864: -55,51
- 865: -56,51
- - node:
- angle: -4.71238898038469 rad
- color: '#FFFFFFFF'
- id: WarningLine
+ angle: 0.3141592653589793 rad
+ color: '#D4D4D428'
+ id: body
decals:
-<<<<<<< HEAD
3071: -67,-42
-=======
- 196: 26,60
- 197: 26,59
- 198: 26,58
- 199: 30,57
- 200: 30,58
->>>>>>> master
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
- id: WarningLine
+ id: body
decals:
-<<<<<<< HEAD
1788: -43.17276,-64.09076
-=======
- 185: 26,61
- 186: 27,61
- 187: 28,61
- 188: 29,61
- 189: 30,61
- 190: 31,61
- 201: 27,58
- 202: 28,58
- 203: 29,58
- 204: 30,58
->>>>>>> master
- node:
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
- id: WarningLine
+ id: body
decals:
-<<<<<<< HEAD
1787: -43.875885,-64.57514
-=======
- 181: 26,58
- 182: 26,59
- 183: 26,60
- 184: 26,61
->>>>>>> master
- node:
color: '#FFFFFFFF'
- id: WarningLine
+ id: body
decals:
-<<<<<<< HEAD
1786: -43.23526,-67.84077
-=======
- 114: 30,-61
- 115: 31,-61
- 116: 32,-61
- 179: 24,56
- 191: 31,61
- 192: 30,61
- 193: 29,61
- 194: 28,61
- 195: 27,61
->>>>>>> master
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
- id: WarningLine
+ id: body
decals:
-<<<<<<< HEAD
1878: -45.116158,-4.0036955
1879: -47.225536,-2.9724457
-=======
- 94: -24,-55
->>>>>>> master
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: WarningLine
- decals:
- 117: 30,-61
- 118: 31,-61
- 119: 32,-61
- node:
- angle: 4.71238898038469 rad
- color: '#FFFFFFFF'
- id: WarningLine
+ color: '#D381C996'
+ id: ghost
decals:
-<<<<<<< HEAD
2368: -38,-53
-=======
- 95: -22,-55
->>>>>>> master
- node:
cleanable: True
- color: '#151C2553'
- id: WoodTrimThinCornerNe
- decals:
- 245: 24,2
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinCornerNe
- decals:
- 2780: -10,46
- 2835: -2,42
- 2929: -3,54
- 4182: -34,63
- 4347: -26,23
- 5975: 14,11
- 5984: 14,2
- 6024: 11,7
- 6039: 11,3
- 6125: -15,-4
- 6139: -9,-3
- 6169: -9,5
- 6179: -9,0
- 6209: -8,11
- 6234: 1,14
- 6755: -22,-4
- 6776: -34,2
- 6811: -26,2
- 6826: -22,-11
- 6881: -22,-5
- 6882: -22,-5
- 7066: -31,-12
- 7602: 37,2
- 7632: 36,1
- 7693: 33,11
- 8114: 43,22
- 8115: 43,23
- 8122: 36,22
- 8144: 36,21
- 8922: 53,-23
- 8936: 49,-23
- 8949: 45,-23
- 10648: 37,-29
- 10649: 38,-28
- 10690: 24,-51
- 10890: 18,-49
- 11123: 74,-37
- 11134: 42,-50
- 11148: 51,-54
- 11216: 45,-51
- 11584: -49,-43
- 11616: -46,-43
- 11631: -46,-47
- 12759: -17,-46
- 12896: -15,-74
- 12938: -13,-79
- 12945: -21,-80
- 13790: -38,-66
- 13804: -36,-65
- 13829: -30,-65
- 14001: -31,-77
- 14348: -65,62
- 15903: -6,-77
- 15915: -1,-77
- 16255: 97,5
- 16285: 96,3
- 16371: 89,7
- 16448: 98,13
- 16455: 98,14
- 18674: -63,18
- 18692: -57,7
- 18981: -58,-44
- 19131: 1,-11
- 19132: 2,-12
- 19402: -112,33
- 20248: -14,29
- 20260: 53,27
- 20263: 56,27
- 20383: 57,30
- 20395: 55,31
- 20406: 68,30
- 20628: -24,13
- 20642: -25,12
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerNe
- decals:
- 1734: -49,-43
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinCornerNw
- decals:
- 2836: -4,42
- 4181: -39,63
- 4346: -27,23
- 4351: -29,21
- 5953: 6,11
- 5988: 12,2
- 6023: 7,7
- 6038: 7,3
- 6124: -16,-4
- 6142: -13,-3
- 6157: -14,5
- 6202: -16,11
- 6233: -3,14
- 6738: -30,2
- 6739: -35,2
- 6740: -31,-4
- 6793: -35,2
- 6809: -35,2
- 6810: -30,2
- 6825: -26,-11
- 6879: -26,-5
- 6880: -26,-5
- 6895: -26,-5
- 7065: -34,-12
- 7601: 33,2
- 7631: 34,1
- 7686: 29,11
- 8116: 39,23
- 8117: 39,22
- 8118: 38,22
- 8119: 34,22
- 8145: 34,21
- 8921: 51,-23
- 8942: 47,-23
- 8948: 43,-23
- 10646: 34,-28
- 10647: 35,-29
- 10889: 14,-49
- 11122: 72,-37
- 11147: 49,-54
- 11215: 44,-51
- 11583: -56,-43
- 12894: -16,-79
- 12895: -19,-74
- 12944: -23,-80
- 13073: -4,40
- 13118: -41,29
- 13128: -39,26
- 13798: -41,-66
- 13828: -34,-65
- 14002: -35,-77
- 14345: -68,62
- 15901: -8,-77
- 15902: -3,-77
- 16245: 91,5
- 16282: 93,3
- 16363: 81,7
- 16452: 95,14
- 16707: -72,-40
- 17008: -41,-9
- 18671: -66,18
- 18691: -58,7
- 19126: -3,-11
- 19133: -4,-12
- 19401: -115,33
- 20261: 52,27
- 20262: 55,27
- 20379: 51,30
- 20394: 53,31
- 20399: 61,30
- 20629: -27,13
- 20641: -26,12
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerNw
+ color: '#53960057'
+ id: grasssnow01
decals:
-<<<<<<< HEAD
826: -53,-26
827: -53,-29
828: -53,-30
-=======
- 1631: -41,29
- 1729: -56,-43
->>>>>>> master
- node:
cleanable: True
- color: '#5F697828'
- id: WoodTrimThinCornerSe
- decals:
- 216: 12,-53
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinCornerSe
- decals:
- 2781: -10,36
- 2930: -3,53
- 4186: -34,59
- 4343: -22,19
- 5956: 14,7
- 5992: 14,0
- 6029: 11,5
- 6041: 11,0
- 6128: -15,-6
- 6136: -9,-6
- 6170: -9,3
- 6171: -9,-1
- 6174: -11,-2
- 6199: -9,7
- 6200: -8,8
- 6238: 1,12
- 6765: -27,-9
- 6792: -34,-9
- 6812: -26,0
- 6828: -22,-13
- 6878: -22,-9
- 7067: -31,-15
- 7603: 37,-2
- 7637: 36,-1
- 7692: 33,8
- 8124: 43,18
- 8132: 36,18
- 8133: 36,19
- 8134: 36,19
- 8138: 43,17
- 8923: 53,-26
- 8938: 49,-26
- 8958: 45,-26
- 10650: 38,-32
- 10651: 37,-31
- 10691: 24,-53
- 10892: 18,-53
- 11125: 74,-40
- 11136: 42,-56
- 11149: 51,-56
- 11150: 51,-56
- 11158: 52,-56
- 11218: 45,-55
- 11585: -49,-47
- 11625: -46,-45
- 11632: -46,-49
- 12771: -17,-48
- 12897: -15,-76
- 12942: -13,-82
- 12943: -21,-82
- 13074: -2,36
- 13136: -38,25
- 13792: -38,-68
- 13814: -36,-68
- 13833: -30,-68
- 14011: -31,-80
- 14352: -65,58
- 15905: -6,-79
- 15911: -1,-79
- 16253: 94,-2
- 16254: 95,-1
- 16262: 97,0
- 16286: 96,1
- 16372: 89,4
- 16447: 98,12
- 16460: 96,12
- 16467: 98,12
- 18678: -63,16
- 18688: -57,5
- 19403: -112,31
- 20249: -14,31
- 20269: 53,22
- 20272: 56,22
- 20377: 52,29
- 20378: 57,29
- 20380: 57,29
- 20409: 68,27
- 20639: -24,10
- 20640: -25,11
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerSe
+ color: '#54995A7A'
+ id: grasssnow01
decals:
-<<<<<<< HEAD
740: -30.290024,-56.444744
741: -30.066355,-56.469624
742: -29.022568,-59.006935
@@ -43235,1217 +20775,63 @@ entities:
758: -27.131992,-73.8833
759: -27.10714,-74.430565
760: -27.057438,-75.07733
-=======
- 1738: -49,-47
->>>>>>> master
- node:
cleanable: True
- color: '#5F697828'
- id: WoodTrimThinCornerSw
- decals:
- 212: 2,-53
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinCornerSw
- decals:
- 2931: -4,53
- 4353: -29,19
- 5955: 6,8
- 5957: 13,7
- 5990: 12,0
- 6026: 7,5
- 6034: 7,0
- 6127: -16,-6
- 6135: -13,-6
- 6158: -14,-1
- 6173: -13,-2
- 6201: -16,7
- 6237: -3,12
- 6764: -31,-9
- 6794: -35,-9
- 6813: -30,0
- 6827: -26,-13
- 6876: -26,-9
- 6877: -26,-9
- 7068: -34,-15
- 7604: 33,-2
- 7636: 34,-1
- 8125: 39,18
- 8130: 34,18
- 8131: 34,19
- 8139: 39,17
- 8140: 38,18
- 8924: 51,-26
- 8937: 47,-26
- 8946: 47,-26
- 8947: 43,-26
- 10652: 34,-32
- 10653: 35,-31
- 10891: 14,-53
- 11124: 72,-40
- 11151: 49,-56
- 11217: 44,-55
- 11595: -56,-47
- 11596: -56,-47
- 11633: -54,-49
- 12898: -19,-76
- 12941: -16,-82
- 12946: -23,-82
- 13075: -4,36
- 13127: -39,25
- 13795: -41,-68
- 13834: -34,-68
- 14000: -32,-80
- 14009: -35,-80
- 14353: -68,58
- 15906: -8,-79
- 15910: -3,-79
- 16252: 91,-2
- 16287: 93,1
- 16373: 81,4
- 16449: 97,12
- 16459: 95,12
- 17013: -41,-11
- 18677: -66,16
- 18689: -58,5
- 18985: -60,-46
- 19404: -115,31
- 20270: 55,22
- 20271: 52,22
- 20381: 51,29
- 20382: 56,29
- 20416: 61,27
- 20636: -27,10
- 20643: -26,11
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerSw
- decals:
- 1745: -56,-47
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinEndE
- decals:
- 16465: 98,14
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinEndN
- decals:
- 10684: 20,-51
- 12761: -21,-46
- 13124: -38,29
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinEndS
- decals:
- 10685: 20,-53
- 12760: -21,-48
- 14360: -67,57
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinEndW
- decals:
- 20206: -12,30
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinInnerNe
- decals:
- 2194: -12,29
- 2202: -12,33
- 2204: -9,33
- 2687: -11,44
- 2688: -11,42
- 2689: -11,40
- 2690: -11,36
- 2711: -13,40
- 2714: -12,41
- 2785: -10,45
- 2786: -10,43
- 2814: -11,38
- 4366: -24,20
- 4367: -26,20
- 5969: 8,11
- 5987: 13,2
- 6051: 11,1
- 6055: 8,3
- 6130: -15,-5
- 6156: -10,-3
- 6182: -10,0
- 6186: -11,5
- 6213: -10,11
- 6770: -29,-4
- 6771: -24,-4
- 6837: -24,-11
- 6921: -24,-7
- 7611: 35,2
- 8150: 43,20
- 8154: 36,20
- 8930: 52,-23
- 8934: 48,-23
- 8935: 48,-23
- 8952: 44,-23
- 10672: 37,-28
- 10692: 22,-51
- 10693: 22,-51
- 10907: 17,-49
- 11165: 50,-50
- 11626: -47,-43
- 11629: -47,-47
- 12766: -19,-46
- 12774: -19,-46
- 12926: -17,-74
- 13080: -3,40
- 13131: -38,27
- 13806: -36,-66
- 13807: -37,-65
- 13811: -41,-65
- 14013: -31,-79
- 16292: 95,3
- 16718: -62,-43
- 16722: -68,-46
- 19135: 1,-12
- 20199: -9,27
- 20200: -9,30
- 20398: 55,30
- 20687: 96,2
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinInnerNw
- decals:
- 2193: -13,33
- 2203: -10,33
- 2215: -10,29
- 2691: -13,36
- 2692: -13,38
- 2693: -13,40
- 2694: -13,42
- 2695: -13,44
- 2696: -13,44
- 2715: -12,41
- 2716: -11,40
- 2717: -11,40
- 4349: -27,21
- 4368: -24,20
- 5968: 8,11
- 5986: 13,2
- 6054: 8,3
- 6134: -13,-5
- 6155: -10,-3
- 6164: -14,4
- 6185: -11,5
- 6212: -10,11
- 6769: -29,-4
- 6772: -24,-4
- 6822: -30,1
- 6836: -24,-11
- 6893: -26,-6
- 6894: -26,-6
- 6923: -24,-7
- 7612: 35,2
- 7615: 33,1
- 8148: 38,20
- 8931: 52,-23
- 8943: 48,-23
- 8951: 44,-23
- 10673: 37,-28
- 10694: 22,-51
- 10908: 17,-49
- 11145: 39,-53
- 11166: 50,-50
- 11628: -47,-47
- 12767: -19,-46
- 12773: -19,-46
- 12927: -17,-74
- 13077: -4,37
- 13079: -3,40
- 13121: -41,28
- 13122: -41,28
- 13135: -38,26
- 13808: -37,-65
- 13841: -34,-66
- 14008: -35,-79
- 16294: 94,3
- 16295: 93,2
- 16456: 95,13
- 19134: -3,-12
- 20253: -14,30
- 20397: 53,30
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinInnerSe
+ color: '#53960057'
+ id: grasssnow02
decals:
-<<<<<<< HEAD
829: -53,-31
832: -49,-25
841: -35,-34
-=======
- 2195: -12,31
- 2207: -9,33
- 2703: -11,40
- 2704: -11,42
- 2705: -11,44
- 2706: -11,46
- 2710: -12,41
- 2712: -13,42
- 2782: -10,39
- 2783: -10,39
- 2784: -10,45
- 2815: -11,38
- 4360: -25,19
- 5980: 8,8
- 5981: 10,8
- 6047: 8,5
- 6050: 11,1
- 6061: 10,0
- 6129: -15,-5
- 6148: -10,-6
- 6176: -12,-2
- 6177: -10,-1
- 6183: -10,3
- 6191: -11,-1
- 6220: -11,7
- 6536: -4,-12
- 6774: -24,-4
- 6897: -24,-9
- 6899: -27,-4
- 6900: -27,-6
- 6901: -27,-6
- 6924: -24,-7
- 7618: 36,-2
- 7700: 29,8
- 8149: 43,20
- 8153: 36,20
- 10671: 36,-32
- 10910: 17,-53
- 10911: 7,-57
- 11133: 73,-40
- 11627: -47,-45
- 12935: -17,-67
- 13086: -2,40
- 13130: -38,27
- 13805: -36,-66
- 14010: -34,-79
- 14014: -31,-79
- 14358: -67,58
- 16260: 94,-1
- 16261: 95,0
- 16293: 95,1
- 16300: 96,2
- 16462: 96,14
- 16464: 97,14
- 16719: -62,-43
- 16723: -68,-44
- 20198: -9,27
- 20201: -9,30
- 20393: 52,30
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinInnerSw
- decals:
- 2211: -10,27
- 2216: -10,31
- 2697: -13,46
- 2698: -13,44
- 2699: -13,44
- 2700: -13,42
- 2701: -13,40
- 2702: -13,38
- 2709: -12,41
- 2713: -11,42
- 4359: -25,19
- 5978: 8,8
- 5979: 10,8
- 6046: 8,5
- 6060: 10,0
- 6133: -13,-5
- 6147: -10,-6
- 6165: -14,4
- 6172: -13,-1
- 6175: -12,-2
- 6190: -10,-1
- 6219: -11,7
- 6537: 2,-12
- 6773: -24,-4
- 6821: -30,1
- 6892: -26,-6
- 6896: -24,-9
- 6922: -24,-7
- 7616: 33,1
- 7617: 36,-2
- 8147: 38,20
- 10670: 36,-32
- 10909: 17,-53
- 11132: 73,-40
- 11146: 39,-53
- 11171: 44,-50
- 12934: -17,-67
- 13076: -4,37
- 13120: -41,28
- 13129: -39,27
- 13842: -34,-66
- 14007: -35,-79
- 14359: -67,58
- 16298: 93,2
- 16299: 94,1
- 16457: 95,13
- 16463: 97,14
- 16724: -70,-42
- 20251: -13,27
- 20252: -14,30
- 20392: 56,30
->>>>>>> master
- node:
cleanable: True
- color: '#151C2553'
- id: WoodTrimThinLineE
+ color: '#5396006C'
+ id: grasssnow02
decals:
-<<<<<<< HEAD
882: -56,-34
-=======
- 246: 24,1
- 247: 24,0
- 248: 24,-1
- 249: 24,-3
- 250: 24,-4
- 251: 24,-6
->>>>>>> master
- node:
cleanable: True
- color: '#5F697828'
- id: WoodTrimThinLineE
- decals:
- 215: 12,-52
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinLineE
- decals:
- 2205: -9,32
- 2206: -9,31
- 2208: -9,29
- 2209: -9,28
- 2661: -14,44
- 2662: -14,42
- 2663: -14,40
- 2664: -14,38
- 2665: -14,36
- 2668: -14,46
- 2707: -13,41
- 2776: -10,44
- 2777: -10,38
- 2778: -10,37
- 2838: -2,41
- 4183: -34,62
- 4184: -34,61
- 4185: -34,60
- 4361: -26,22
- 4362: -26,21
- 5958: 14,8
- 5959: 14,9
- 5960: 14,10
- 5993: 14,1
- 6028: 11,6
- 6040: 11,2
- 6132: -14,-5
- 6137: -9,-5
- 6138: -9,-4
- 6163: -15,4
- 6180: -10,1
- 6181: -10,2
- 6184: -9,4
- 6188: -10,-2
- 6210: -8,10
- 6211: -8,9
- 6242: 1,13
- 6529: 2,-12
- 6760: -27,-5
- 6761: -27,-7
- 6762: -27,-8
- 6763: -27,-9
- 6777: -34,1
- 6778: -34,0
- 6779: -34,-1
- 6780: -34,-1
- 6781: -34,-2
- 6782: -34,-2
- 6783: -34,-3
- 6784: -34,-4
- 6785: -34,-4
- 6786: -34,-5
- 6787: -34,-6
- 6788: -34,-6
- 6789: -34,-7
- 6790: -34,-7
- 6791: -34,-8
- 6817: -26,1
- 6832: -22,-12
- 6886: -22,-6
- 6887: -22,-7
- 6888: -22,-8
- 6904: -27,-6
- 6917: -25,-7
- 6983: -31,1
- 7073: -31,-14
- 7074: -31,-13
- 7614: 32,1
- 7619: 37,-1
- 7620: 37,0
- 7621: 37,1
- 7633: 36,0
- 7690: 33,10
- 7691: 33,9
- 7927: 60,25
- 7928: 60,25
- 8112: 43,18
- 8113: 43,19
- 8123: 43,21
- 8143: 36,21
- 8146: 37,20
- 8926: 53,-25
- 8927: 53,-24
- 8941: 49,-25
- 8953: 45,-24
- 8954: 45,-25
- 10656: 38,-31
- 10657: 38,-30
- 10658: 38,-29
- 10666: 37,-30
- 10678: 20,-52
- 10679: 24,-52
- 10898: 18,-52
- 10899: 18,-51
- 10900: 18,-50
- 11126: 74,-39
- 11127: 74,-38
- 11137: 42,-54
- 11138: 42,-53
- 11154: 51,-55
- 11155: 51,-55
- 11157: 52,-56
- 11159: 52,-55
- 11160: 52,-55
- 11161: 52,-54
- 11162: 52,-53
- 11163: 52,-52
- 11170: 43,-50
- 11211: 43,-50
- 11212: 45,-52
- 11213: 45,-53
- 11214: 45,-54
- 11605: -49,-44
- 11606: -49,-46
- 11607: -49,-45
- 11623: -46,-44
- 11624: -46,-45
- 11635: -46,-48
- 12762: -21,-47
- 12772: -17,-47
- 12882: -17,-68
- 12883: -17,-69
- 12884: -17,-69
- 12885: -17,-70
- 12886: -17,-70
- 12887: -17,-71
- 12888: -17,-71
- 12889: -17,-72
- 12890: -17,-72
- 12891: -17,-73
- 12892: -13,-80
- 12893: -13,-81
- 12918: -22,-67
- 12919: -22,-66
- 12922: -15,-75
- 12949: -21,-81
- 13070: -5,37
- 13083: -2,39
- 13084: -2,38
- 13085: -2,37
- 13119: -42,28
- 13125: -38,28
- 13126: -38,26
- 13791: -38,-67
- 13813: -36,-67
- 13836: -30,-67
- 13837: -30,-66
- 13843: -35,-66
- 14012: -31,-78
- 14349: -65,61
- 14350: -65,60
- 14351: -65,59
- 15904: -6,-78
- 15914: -1,-78
- 16263: 97,1
- 16264: 97,2
- 16265: 97,3
- 16266: 97,4
- 16290: 92,2
- 16381: 89,5
- 16382: 89,6
- 16458: 94,13
- 16461: 96,13
- 16717: -62,-42
- 17010: -39,-10
- 18679: -63,17
- 18687: -57,6
- 18987: -58,-45
- 19407: -112,32
- 20207: -11,31
- 20208: -11,32
- 20209: -11,33
- 20216: -11,27
- 20217: -11,28
- 20218: -11,29
- 20219: -14,27
- 20220: -14,28
- 20221: -14,31
- 20222: -14,32
- 20223: -14,33
- 20250: -15,30
- 20264: 53,26
- 20265: 53,25
- 20266: 53,24
- 20267: 53,23
- 20268: 53,22
- 20273: 56,23
- 20274: 56,24
- 20275: 56,25
- 20276: 56,25
- 20277: 56,26
- 20407: 68,29
- 20408: 68,28
- 20630: -24,12
- 20631: -24,11
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineE
+ color: '#5396008C'
+ id: grasssnow02
decals:
-<<<<<<< HEAD
935: -25,-22
-=======
- 520: 0,9
- 914: 0,4
- 915: 0,-6
- 1735: -49,-44
- 1736: -49,-45
- 1737: -49,-46
->>>>>>> master
- node:
cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinLineE
+ color: '#54995A7A'
+ id: grasssnow02
decals:
-<<<<<<< HEAD
735: -29,-62
739: -30,-57
-=======
- 236: -34,-7
- 237: -34,-5
->>>>>>> master
- node:
cleanable: True
- color: '#151C2553'
- id: WoodTrimThinLineN
- decals:
- 253: 58,10
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 2210: -9,25
- 2632: -13,45
- 2633: -12,45
- 2634: -11,45
- 2635: -13,43
- 2636: -12,43
- 2637: -11,43
- 2638: -13,41
- 2639: -11,41
- 2640: -13,39
- 2641: -12,39
- 2642: -11,39
- 2643: -13,37
- 2644: -12,37
- 2645: -11,37
- 2765: -13,46
- 2766: -12,46
- 2767: -11,46
- 2768: -11,46
- 2789: -14,46
- 2837: -3,42
- 2932: -4,54
- 4177: -38,63
- 4178: -36,63
- 4179: -37,63
- 4180: -35,63
- 4344: -22,20
- 4350: -28,21
- 4363: -25,20
- 4364: -23,20
- 4365: -23,20
- 4386: -25,18
- 5967: 7,11
- 5970: 10,11
- 5971: 9,11
- 5972: 11,11
- 5973: 12,11
- 5974: 13,11
- 5976: 10,7
- 5977: 8,7
- 6025: 9,7
- 6048: 8,4
- 6052: 9,3
- 6053: 10,3
- 6056: 10,-1
- 6140: -13,-3
- 6141: -12,-3
- 6146: -10,-7
- 6154: -11,-3
- 6166: -13,5
- 6167: -12,5
- 6168: -10,5
- 6178: -10,-2
- 6203: -15,11
- 6204: -14,11
- 6205: -13,11
- 6206: -12,11
- 6207: -11,11
- 6208: -9,11
- 6218: -11,6
- 6235: 0,14
- 6236: -1,14
- 6542: 2,-13
- 6543: -4,-13
- 6741: -30,-4
- 6742: -28,-4
- 6743: -27,-4
- 6744: -26,-4
- 6745: -26,-4
- 6746: -25,-4
- 6747: -23,-4
- 6748: -22,-4
- 6775: -24,-5
- 6818: -29,2
- 6819: -28,2
- 6820: -27,2
- 6834: -25,-11
- 6835: -23,-11
- 6883: -23,-5
- 6884: -25,-5
- 6885: -25,-5
- 6898: -24,-10
- 6918: -24,-8
- 7071: -33,-12
- 7072: -32,-12
- 7609: 34,2
- 7610: 36,2
- 7622: 36,-3
- 7634: 35,1
- 7687: 30,11
- 7688: 32,11
- 7689: 31,11
- 7701: 29,7
- 8097: 40,23
- 8098: 40,23
- 8099: 41,23
- 8100: 41,23
- 8101: 42,23
- 8102: 42,23
- 8103: 40,22
- 8104: 41,22
- 8105: 42,22
- 8120: 35,22
- 8121: 35,21
- 10659: 35,-28
- 10660: 36,-28
- 10667: 36,-29
- 10669: 36,-33
- 10688: 21,-51
- 10689: 23,-51
- 10904: 15,-49
- 10905: 16,-49
- 10906: 17,-54
- 11128: 73,-37
- 11131: 73,-41
- 11152: 50,-54
- 11167: 52,-50
- 11168: 44,-50
- 11169: 45,-50
- 11600: -55,-43
- 11601: -54,-43
- 11602: -54,-43
- 11603: -51,-43
- 11604: -50,-43
- 11615: -47,-46
- 11630: -48,-47
- 12764: -18,-46
- 12775: -20,-46
- 12908: -21,-66
- 12909: -20,-66
- 12910: -19,-66
- 12911: -18,-66
- 12912: -17,-66
- 12913: -16,-66
- 12914: -15,-66
- 12915: -14,-66
- 12916: -14,-66
- 12917: -13,-66
- 12924: -18,-74
- 12925: -16,-74
- 12936: -15,-79
- 12937: -14,-79
- 12948: -22,-80
- 13078: -2,40
- 13123: -40,29
- 13799: -40,-66
- 13800: -39,-66
- 13801: -40,-65
- 13802: -39,-65
- 13803: -38,-65
- 13838: -33,-65
- 13839: -32,-65
- 13840: -31,-65
- 14003: -34,-77
- 14004: -33,-77
- 14005: -32,-77
- 14346: -67,62
- 14347: -66,62
- 15900: -7,-77
- 15913: -2,-77
- 16256: 93,5
- 16257: 94,5
- 16258: 95,5
- 16288: 94,0
- 16289: 95,0
- 16364: 82,7
- 16365: 83,7
- 16366: 84,7
- 16367: 85,7
- 16368: 86,7
- 16369: 87,7
- 16370: 88,7
- 16453: 96,14
- 16454: 97,14
- 16466: 97,13
- 16701: -69,-40
- 16702: -68,-40
- 16703: -67,-40
- 16704: -66,-40
- 16705: -65,-40
- 16706: -63,-40
- 17009: -40,-9
- 18672: -65,18
- 18673: -64,18
- 18982: -59,-44
- 19127: -2,-11
- 19128: -1,-11
- 19129: 0,-11
- 19130: 1,-11
- 19408: -114,33
- 19409: -113,33
- 20189: -11,33
- 20194: -13,26
- 20195: -12,26
- 20196: -10,26
- 20197: -9,26
- 20202: -9,30
- 20203: -10,30
- 20384: 56,30
- 20385: 56,30
- 20386: 52,30
- 20387: 52,30
- 20388: 56,30
- 20396: 54,31
- 20400: 62,30
- 20401: 63,30
- 20402: 64,30
- 20403: 65,30
- 20404: 66,30
- 20405: 67,30
- 20632: -26,13
- 20633: -25,13
- - node:
- angle: 1.9198621771937625 rad
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 13888: -35.813877,-65.105484
- 16935: -64.29358,-40.983166
- - node:
- angle: 2.0943951023931953 rad
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 13886: -29.784193,-66.29185
- - node:
- angle: 2.443460952792061 rad
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 16938: -62.793587,-43.12379
- - node:
- angle: 2.6179938779914944 rad
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 16937: -69.402954,-44.592537
- - node:
- angle: 3.490658503988659 rad
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 13885: -40.693886,-64.73856
- - node:
- angle: 3.6651914291880923 rad
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 13887: -33.77137,-66.21846
- - node:
- angle: 3.839724354387525 rad
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 16936: -69.85608,-41.076912
- - node:
- angle: 4.363323129985824 rad
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 16939: -67.26233,-43.09254
- - node:
- angle: 5.235987755982989 rad
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 13884: -37.183704,-67.03792
- - node:
- angle: 6.981317007977318 rad
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 16940: -67.51233,-46.24879
- - node:
- angle: -1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: WoodTrimThinLineN
- decals:
- 496: 0,-5
- 497: 0,-4
- 498: 0,-3
- 499: 0,-2
- 500: 0,-1
- 501: 0,0
- 502: 0,1
- 503: 0,2
- 504: 0,3
- 505: 0,5
- 506: 0,6
- 507: 0,7
- 508: 0,8
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineN
+ color: '#54995A7C'
+ id: grasssnow02
decals:
-<<<<<<< HEAD
629: -20.948185,-62.98533
-=======
- 563: 35,1
- 1073: -26,-4
- 1632: -40,29
- 1730: -55,-43
- 1731: -54,-43
- 1732: -51,-43
- 1733: -50,-43
->>>>>>> master
- node:
cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinLineN
- decals:
- 211: 17,-49
- 243: -29,2
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: WoodTrimThinLineN
+ color: '#53960057'
+ id: grasssnow03
decals:
-<<<<<<< HEAD
933: -44,-15
934: -44,-13
-=======
- 509: -2,8
- 510: -2,7
- 511: -2,5
- 512: -2,4
- 513: -2,3
- 514: -2,0
- 515: -2,-1
- 516: -2,-2
- 517: -2,-4
- 518: -2,-5
- 519: -2,-6
->>>>>>> master
- node:
cleanable: True
- color: '#5F697828'
- id: WoodTrimThinLineS
+ color: '#5396006C'
+ id: grasssnow03
decals:
-<<<<<<< HEAD
889: -54,-23
-=======
- 217: 11,-53
- 218: 3,-53
- 219: 4,-53
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinLineS
- decals:
- 2646: -13,37
- 2647: -12,37
- 2648: -12,37
- 2649: -11,37
- 2650: -11,39
- 2651: -12,39
- 2652: -13,39
- 2653: -13,41
- 2654: -11,41
- 2655: -11,43
- 2656: -12,43
- 2657: -13,43
- 2658: -13,45
- 2659: -12,45
- 2660: -11,45
- 2769: -13,36
- 2770: -12,36
- 2771: -11,36
- 2779: -14,36
- 2841: -4,41
- 2842: -2,41
- 4187: -35,59
- 4354: -28,19
- 4355: -27,19
- 4356: -26,19
- 4357: -24,19
- 4358: -23,19
- 4369: -24,21
- 5954: 8,12
- 5961: 12,8
- 5962: 11,8
- 5963: 9,8
- 5964: 7,8
- 5985: 13,3
- 5991: 13,0
- 6030: 10,5
- 6031: 9,5
- 6032: 8,0
- 6033: 9,0
- 6045: 8,4
- 6144: -12,-6
- 6145: -11,-6
- 6153: -10,-2
- 6187: -11,6
- 6193: -10,-2
- 6194: -12,7
- 6195: -13,7
- 6196: -14,7
- 6197: -15,7
- 6198: -10,7
- 6214: -10,12
- 6239: -2,12
- 6240: -1,12
- 6241: 0,12
- 6530: -3,-12
- 6531: -2,-12
- 6532: -1,-12
- 6533: 0,-12
- 6534: 1,-12
- 6756: -22,-4
- 6757: -23,-4
- 6758: -25,-4
- 6759: -26,-4
- 6766: -30,-9
- 6767: -29,-9
- 6768: -28,-9
- 6814: -29,0
- 6815: -28,0
- 6816: -27,0
- 6823: -29,-3
- 6824: -24,-3
- 6829: -25,-13
- 6830: -24,-13
- 6831: -23,-13
- 6873: -24,-10
- 6874: -23,-9
- 6875: -25,-9
- 6905: -24,-4
- 6920: -24,-6
- 7069: -33,-15
- 7070: -32,-15
- 7605: 34,-2
- 7606: 35,-2
- 7613: 35,3
- 7635: 35,-1
- 7697: 30,8
- 7698: 31,8
- 7699: 32,8
- 8106: 40,18
- 8107: 41,18
- 8108: 42,18
- 8109: 40,17
- 8110: 41,17
- 8111: 42,17
- 8135: 35,18
- 8136: 35,18
- 8137: 35,19
- 8925: 52,-26
- 8932: 52,-22
- 8933: 48,-22
- 8939: 48,-26
- 8940: 48,-26
- 8950: 44,-22
- 8957: 44,-26
- 10654: 35,-32
- 10655: 37,-32
- 10665: 36,-31
- 10668: 37,-27
- 10680: 22,-50
- 10681: 22,-53
- 10682: 22,-53
- 10683: 23,-53
- 10687: 21,-53
- 10893: 15,-53
- 10894: 15,-53
- 10895: 16,-53
- 10896: 16,-53
- 10897: 17,-48
- 11135: 41,-56
- 11153: 50,-56
- 11172: 44,-50
- 11173: 44,-50
- 11174: 45,-50
- 11586: -50,-47
- 11587: -51,-47
- 11588: -52,-47
- 11589: -52,-47
- 11590: -53,-47
- 11591: -53,-47
- 11592: -54,-47
- 11593: -54,-47
- 11594: -55,-47
- 11613: -47,-42
- 11614: -47,-46
- 11636: -53,-49
- 11637: -52,-49
- 11638: -51,-49
- 11639: -51,-49
- 11640: -50,-49
- 11641: -49,-49
- 11642: -48,-49
- 11643: -47,-49
- 12765: -19,-45
- 12768: -20,-48
- 12769: -19,-48
- 12770: -18,-48
- 12878: -21,-67
- 12879: -20,-67
- 12880: -19,-67
- 12881: -18,-67
- 12899: -18,-76
- 12900: -17,-76
- 12901: -16,-76
- 12902: -15,-82
- 12903: -14,-82
- 12904: -16,-67
- 12905: -15,-67
- 12906: -14,-67
- 12907: -13,-67
- 12947: -22,-82
- 13069: -3,36
- 13072: -3,41
- 13116: -40,27
- 13117: -40,27
- 13793: -39,-68
- 13794: -40,-68
- 13809: -37,-64
- 13810: -41,-64
- 13815: -37,-68
- 13830: -33,-68
- 13831: -32,-68
- 13832: -31,-68
- 13999: -33,-79
- 14357: -66,58
- 15908: -7,-79
- 15912: -2,-79
- 16259: 96,0
- 16283: 94,4
- 16284: 95,4
- 16374: 82,4
- 16375: 84,4
- 16376: 83,4
- 16377: 85,4
- 16378: 87,4
- 16379: 86,4
- 16380: 88,4
- 16711: -71,-42
- 16712: -67,-44
- 16713: -66,-44
- 16714: -65,-44
- 16715: -64,-44
- 16716: -63,-44
- 16721: -68,-46
- 17011: -40,-11
- 18675: -65,16
- 18676: -64,16
- 18986: -59,-46
- 19405: -114,31
- 19406: -113,31
- 20190: -10,34
- 20191: -9,34
- 20192: -13,34
- 20193: -12,34
- 20204: -10,30
- 20205: -9,30
- 20389: 53,30
- 20390: 54,30
- 20391: 55,30
- 20410: 67,27
- 20411: 66,27
- 20412: 65,27
- 20413: 63,27
- 20414: 62,27
- 20415: 61,27
- 20419: 64,27
- 20420: 63,27
- 20421: 62,27
- 20634: -26,10
- 20635: -25,10
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineS
- decals:
- 1630: -40,27
- 1739: -50,-47
- 1740: -51,-47
- 1741: -52,-47
- 1742: -53,-47
- 1743: -54,-47
- 1744: -55,-47
->>>>>>> master
- node:
cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinLineS
+ color: '#54995A7A'
+ id: grasssnow03
decals:
-<<<<<<< HEAD
762: -35.968914,-72.95363
-=======
- 244: -29,2
->>>>>>> master
- node:
cleanable: True
- color: '#151C2553'
- id: WoodTrimThinLineW
+ color: '#53960057'
+ id: grasssnow04
decals:
-<<<<<<< HEAD
836: -44,-29
837: -40,-29
838: -39,-34
@@ -44469,316 +20855,35 @@ entities:
915: -30,-20
916: -29,-20
917: -28,-20
-=======
- 252: 20,0
->>>>>>> master
- node:
cleanable: True
- color: '#5F697828'
- id: WoodTrimThinLineW
- decals:
- 213: 2,-52
- 214: 2,-50
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinLineW
- decals:
- 2196: -8,27
- 2197: -8,33
- 2212: -8,27
- 2213: -8,30
- 2214: -8,33
- 2666: -10,36
- 2667: -10,46
- 2669: -10,42
- 2670: -10,40
- 2671: -10,38
- 2672: -10,44
- 2708: -11,41
- 2772: -9,39
- 2773: -9,41
- 2774: -9,42
- 2775: -9,43
- 2787: -9,40
- 2788: -9,40
- 2839: -4,41
- 2840: -4,41
- 3220: -9,45
- 4194: -39,60
- 4345: -21,20
- 4348: -27,22
- 4352: -29,20
- 4385: -21,20
- 5965: 6,9
- 5966: 6,10
- 5989: 12,1
- 6027: 7,6
- 6035: 7,1
- 6036: 7,2
- 6037: 7,3
- 6049: 12,1
- 6057: 12,1
- 6126: -16,-5
- 6131: -14,-5
- 6143: -13,-4
- 6159: -14,0
- 6160: -14,1
- 6161: -14,2
- 6162: -14,3
- 6189: -10,-2
- 6215: -16,8
- 6216: -16,9
- 6217: -16,10
- 6243: -3,13
- 6535: -4,-12
- 6749: -31,-5
- 6750: -31,-6
- 6751: -31,-7
- 6752: -31,-7
- 6753: -31,-8
- 6754: -31,-9
- 6795: -35,-8
- 6796: -35,-7
- 6797: -35,-6
- 6798: -35,-5
- 6799: -35,-4
- 6800: -35,-3
- 6801: -35,-3
- 6802: -35,-2
- 6803: -35,-1
- 6804: -35,-1
- 6805: -35,0
- 6806: -35,0
- 6807: -35,1
- 6808: -35,2
- 6833: -26,-12
- 6889: -26,-8
- 6890: -26,-7
- 6891: -26,-7
- 6919: -23,-7
- 7075: -34,-14
- 7076: -34,-13
- 7607: 33,-1
- 7608: 33,0
- 7638: 34,0
- 7694: 29,8
- 7695: 29,9
- 7696: 29,10
- 7929: 68,25
- 7930: 68,25
- 8126: 39,19
- 8127: 39,20
- 8128: 39,21
- 8129: 34,20
- 8141: 38,19
- 8142: 38,21
- 8151: 44,20
- 8152: 37,20
- 8928: 51,-25
- 8929: 51,-24
- 8944: 47,-24
- 8945: 47,-25
- 8955: 43,-25
- 8956: 43,-24
- 10661: 34,-31
- 10662: 34,-30
- 10663: 34,-29
- 10664: 35,-30
- 10686: 20,-52
- 10901: 14,-52
- 10902: 14,-51
- 10903: 14,-50
- 11129: 72,-39
- 11130: 72,-38
- 11139: 39,-55
- 11140: 39,-55
- 11141: 39,-54
- 11142: 39,-54
- 11143: 39,-52
- 11144: 39,-52
- 11156: 49,-55
- 11164: 49,-53
- 11175: 46,-52
- 11176: 46,-55
- 11177: 46,-55
- 11219: 44,-54
- 11220: 44,-53
- 11221: 44,-52
- 11597: -56,-46
- 11598: -56,-45
- 11599: -56,-44
- 11617: -47,-43
- 11618: -47,-43
- 11619: -47,-44
- 11620: -47,-44
- 11621: -47,-45
- 11622: -47,-45
- 11634: -54,-48
- 11645: -61,-43
- 12763: -21,-47
- 12920: -12,-66
- 12921: -12,-67
- 12923: -19,-75
- 12928: -17,-73
- 12929: -17,-72
- 12930: -17,-71
- 12931: -17,-70
- 12932: -17,-69
- 12933: -17,-68
- 12939: -16,-80
- 12940: -16,-81
- 12950: -23,-81
- 13071: -1,40
- 13081: -4,38
- 13082: -4,39
- 13132: -37,27
- 13133: -38,27
- 13134: -38,28
- 13796: -41,-67
- 13797: -41,-66
- 13812: -41,-65
- 13816: -35,-66
- 13835: -34,-67
- 14006: -35,-78
- 14354: -68,59
- 14355: -68,60
- 14356: -68,61
- 15907: -8,-78
- 15909: -3,-78
- 16246: 91,4
- 16247: 91,3
- 16248: 91,2
- 16249: 91,1
- 16250: 91,0
- 16251: 91,-1
- 16291: 97,2
- 16383: 81,5
- 16384: 81,6
- 16450: 97,13
- 16708: -72,-41
- 16709: -70,-44
- 16710: -70,-45
- 16720: -61,-43
- 17012: -41,-10
- 18680: -66,17
- 18690: -58,6
- 18983: -60,-44
- 18984: -60,-45
- 19410: -115,32
- 20210: -11,31
- 20211: -11,32
- 20212: -11,33
- 20213: -11,29
- 20214: -11,28
- 20215: -11,27
- 20278: 55,23
- 20279: 55,24
- 20280: 55,25
- 20281: 55,26
- 20282: 52,23
- 20283: 52,24
- 20284: 52,25
- 20285: 52,26
- 20417: 61,28
- 20418: 61,29
- 20637: -27,11
- 20638: -27,12
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineW
+ color: '#5396006C'
+ id: grasssnow04
decals:
-<<<<<<< HEAD
878: -49,-34
879: -48,-34
880: -47,-34
891: -50,-23
892: -51,-23
-=======
- 910: -2,6
- 911: -2,2
- 912: -2,1
- 913: -2,-3
- 1746: -56,-46
- 1747: -56,-45
- 1748: -56,-44
->>>>>>> master
- node:
cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinLineW
- decals:
- 210: 14,-52
- 234: -35,-5
- 235: -35,-7
- 238: -31,-6
- 239: -31,-5
- 240: -31,-7
- 241: -31,-8
- 242: -31,-9
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFF00FF'
- id: arrow
- decals:
- 876: -80,-13
- - node:
- angle: -1.5707963267948966 rad
- color: '#FFFFFF42'
- id: clown
- decals:
- 13770: 55.22766,-37.04212
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFF42'
- id: corgi
- decals:
- 13771: 53.258907,-37.95879
- - node:
- color: '#FFFFFF42'
- id: disk
+ color: '#53960076'
+ id: grasssnow04
decals:
-<<<<<<< HEAD
857: -48,-31
858: -46,-31
-=======
- 13769: 54.696407,-34.97962
- - node:
- color: '#FFFFFF42'
- id: face
- decals:
- 13768: 54.258907,-35.719204
->>>>>>> master
- node:
cleanable: True
- angle: -0.7853981633974483 rad
- color: '#95171085'
- id: footprint
+ color: '#54995A7A'
+ id: grasssnow04
decals:
-<<<<<<< HEAD
748: -34,-58
749: -35,-58
-=======
- 15795: -45.887077,-23.10373
- 15796: -45.527702,-22.869354
- - node:
- color: '#D381C996'
- id: ghost
- decals:
- 1065: -38,-53
->>>>>>> master
- node:
cleanable: True
- color: '#53960057'
- id: grasssnow01
- decals:
- 437: -53,-26
- 438: -53,-29
- 439: -53,-30
- - node:
- color: '#FFFFFFFF'
- id: grasssnow01
+ color: '#54995A7C'
+ id: grasssnow04
decals:
-<<<<<<< HEAD
603: -4.97362,-56.05531
604: -5.6275992,-56.05531
605: -6.3058,-56.07954
@@ -44796,28 +20901,18 @@ entities:
633: -17.072752,-62.98533
634: -16.152336,-63.033794
635: -15.086594,-63.130726
-=======
- 14627: -71.98031,53.856472
->>>>>>> master
- node:
cleanable: True
- color: '#53960057'
- id: grasssnow02
+ color: '#5396006C'
+ id: grasssnow05
decals:
-<<<<<<< HEAD
887: -59,-31
888: -54,-21
-=======
- 440: -53,-31
- 443: -49,-25
- 452: -35,-34
->>>>>>> master
- node:
cleanable: True
color: '#53960057'
- id: grasssnow03
+ id: grasssnow06
decals:
-<<<<<<< HEAD
818: -36,-26
819: -42,-22
820: -52,-25
@@ -44834,21 +20929,11 @@ entities:
926: -31,-18
927: -30,-18
928: -29,-18
-=======
- 490: -44,-15
->>>>>>> master
- node:
cleanable: True
color: '#5396006C'
- id: grasssnow03
- decals:
- 480: -54,-23
- - node:
- cleanable: True
- color: '#53960057'
- id: grasssnow04
+ id: grasssnow06
decals:
-<<<<<<< HEAD
875: -51,-33
876: -50,-33
877: -52,-33
@@ -44859,68 +20944,31 @@ entities:
897: -45,-20
898: -53,-20
899: -55,-20
-=======
- 447: -44,-29
- 448: -40,-29
- 449: -39,-34
- 450: -37,-34
- 451: -34,-34
- 476: -47,-31
- 484: -29,-20
- 485: -28,-20
->>>>>>> master
- node:
cleanable: True
color: '#53960076'
- id: grasssnow04
- decals:
- 468: -48,-31
- 469: -46,-31
- - node:
- color: '#FFFFFFFF'
- id: grasssnow05
- decals:
- 14623: -71.26156,54.153347
- - node:
- cleanable: True
- color: '#53960057'
id: grasssnow06
decals:
-<<<<<<< HEAD
853: -37,-27
854: -34,-30
859: -43,-26
860: -41,-26
861: -37,-26
-=======
- 429: -36,-26
- 430: -42,-22
- 431: -52,-25
- 444: -48,-25
- 445: -44,-27
- 446: -40,-27
->>>>>>> master
- node:
cleanable: True
- color: '#5396006C'
+ color: '#54995A7A'
id: grasssnow06
decals:
-<<<<<<< HEAD
752: -10,-60
755: -13,-62
756: -15,-62
764: -39,-72
765: -38,-72
-=======
- 481: -47,-20
- 482: -46,-20
->>>>>>> master
- node:
cleanable: True
- color: '#53960076'
+ color: '#54995A7C'
id: grasssnow06
decals:
-<<<<<<< HEAD
601: -5.458862,-54.83611
602: -5.991733,-54.83611
636: -19.010468,-62.040257
@@ -44931,68 +20979,41 @@ entities:
641: -16.757874,-61.89486
642: -19.809776,-61.822163
643: -20.560642,-61.72523
-=======
- 464: -37,-27
- 465: -34,-30
- 470: -43,-26
- 471: -41,-26
- 472: -37,-26
->>>>>>> master
- node:
cleanable: True
color: '#69856092'
id: grasssnow06
decals:
-<<<<<<< HEAD
553: 41.151386,-22.986418
554: 41.320934,-23.252977
555: 40.54585,-22.71986
-=======
- 297: 41.151386,-22.986418
- 298: 41.320934,-23.252977
- 299: 40.54585,-22.71986
->>>>>>> master
- node:
cleanable: True
color: '#53960057'
id: grasssnow07
decals:
-<<<<<<< HEAD
808: -53,-25
809: -43,-22
843: -43,-32
-=======
- 419: -53,-25
- 420: -43,-22
- 454: -43,-32
->>>>>>> master
- node:
cleanable: True
- color: '#54995A7A'
+ color: '#5396006C'
id: grasssnow07
decals:
-<<<<<<< HEAD
870: -31,-22
-=======
- 390: -30,-56
->>>>>>> master
- node:
- color: '#FFFFFFFF'
+ cleanable: True
+ color: '#54995A7A'
id: grasssnow07
decals:
-<<<<<<< HEAD
736: -30,-56
751: -11,-55
763: -40,-72
-=======
- 14624: -70.73031,54.825222
->>>>>>> master
- node:
cleanable: True
color: '#53960057'
id: grasssnow08
decals:
-<<<<<<< HEAD
807: -50.773136,-24.972065
810: -41,-22
811: -37,-22
@@ -45003,47 +21024,29 @@ entities:
id: grasssnow08
decals:
881: -45,-33
-=======
- 418: -50.773136,-24.972065
- 421: -41,-22
- 422: -37,-22
- 436: -50,-27
->>>>>>> master
- node:
cleanable: True
color: '#5396008C'
id: grasssnow08
decals:
-<<<<<<< HEAD
936: -22,-20
-=======
- 491: -22,-20
->>>>>>> master
- node:
cleanable: True
color: '#54995A7A'
id: grasssnow08
decals:
-<<<<<<< HEAD
737: -27,-56
-=======
- 391: -27,-56
->>>>>>> master
- node:
- color: '#FFFFFFFF'
+ cleanable: True
+ color: '#54995A7C'
id: grasssnow08
decals:
-<<<<<<< HEAD
600: -4.8672223,-54.991116
-=======
- 14625: -70.04281,53.918972
->>>>>>> master
- node:
cleanable: True
color: '#53960057'
id: grasssnow09
decals:
-<<<<<<< HEAD
813: -37,-28
814: -43,-29
815: -43,-33
@@ -45058,57 +21061,33 @@ entities:
decals:
872: -29,-23
886: -55,-28
-=======
- 424: -37,-28
- 425: -43,-29
- 426: -43,-33
- 456: -42,-23
- 457: -41,-24
- 458: -38,-24
- 459: -33,-23
->>>>>>> master
- node:
cleanable: True
color: '#5396008C'
id: grasssnow09
decals:
-<<<<<<< HEAD
937: -24,-21
938: -46,-23
-=======
- 492: -46,-23
->>>>>>> master
- node:
cleanable: True
color: '#53960057'
id: grasssnow10
decals:
-<<<<<<< HEAD
831: -49,-31
849: -37,-28
850: -33,-29
-=======
- 442: -49,-31
- 460: -37,-28
- 461: -33,-29
->>>>>>> master
- node:
cleanable: True
color: '#53960076'
id: grasssnow10
decals:
-<<<<<<< HEAD
851: -33,-28
852: -40,-28
-=======
- 462: -33,-28
- 463: -40,-28
->>>>>>> master
- node:
- color: '#FFFFFFFF'
- id: grasssnow10
+ cleanable: True
+ color: '#53960057'
+ id: grasssnow11
decals:
-<<<<<<< HEAD
812: -42,-28
816: -37,-32
817: -39,-33
@@ -45119,59 +21098,34 @@ entities:
930: -37,-18
931: -37,-13
932: -42,-12
-=======
- 14622: -71.855316,54.965847
->>>>>>> master
- node:
cleanable: True
- color: '#53960057'
+ color: '#5396006C'
id: grasssnow11
decals:
-<<<<<<< HEAD
873: -29,-25
874: -27,-22
883: -55,-32
884: -56,-29
885: -55,-26
-=======
- 423: -42,-28
- 427: -37,-32
- 428: -39,-33
- 432: -51,-28
- 433: -52,-30
- 455: -41,-32
- 487: -33,-19
- 488: -37,-18
- 489: -37,-13
->>>>>>> master
- node:
cleanable: True
color: '#53960076'
id: grasssnow11
decals:
-<<<<<<< HEAD
855: -42,-27
856: -46,-29
-=======
- 466: -42,-27
- 467: -46,-29
->>>>>>> master
- node:
cleanable: True
color: '#539600AB'
id: grasssnow11
decals:
-<<<<<<< HEAD
869: -45.806736,-27.276812
-=======
- 479: -45.806736,-27.276812
->>>>>>> master
- node:
cleanable: True
- color: '#53960057'
- id: grasssnow12
+ color: '#54995A7A'
+ id: grasssnow11
decals:
-<<<<<<< HEAD
746: -26,-61
747: -28,-57
750: -34.47659,-55.84822
@@ -45179,757 +21133,364 @@ entities:
754: -11,-62
757: -28,-70
761: -28.147705,-73.13703
-=======
- 434: -51,-30
->>>>>>> master
- node:
cleanable: True
color: '#53960057'
- id: grasssnow13
+ id: grasssnow12
decals:
-<<<<<<< HEAD
823: -51,-30
-=======
- 435: -50,-29
- 441: -51,-31
- 453: -41,-34
- 486: -27,-20
->>>>>>> master
- node:
- color: '#FFFFFFFF'
- id: grasssnowa1
+ cleanable: True
+ color: '#54995A7A'
+ id: grasssnow12
decals:
-<<<<<<< HEAD
738: -27,-57
-=======
- 14621: -70.57406,54.043972
->>>>>>> master
- node:
- color: '#FFFFFFFF'
- id: grasssnowb1
+ cleanable: True
+ color: '#54995A7C'
+ id: grasssnow12
decals:
-<<<<<<< HEAD
644: -20.948185,-60.755924
-=======
- 14620: -71.94906,54.028347
->>>>>>> master
- node:
- color: '#FFFFFFFF'
- id: grasssnowc3
+ cleanable: True
+ color: '#53960057'
+ id: grasssnow13
decals:
-<<<<<<< HEAD
824: -50,-29
830: -51,-31
842: -41,-34
918: -27,-20
-=======
- 14626: -72.02719,55.09085
->>>>>>> master
- - node:
- angle: 1.5707963267948966 rad
- color: '#640000FF'
- id: pawprint
- decals:
- 13765: 52.706825,-37.17754
- - node:
- angle: 3.141592653589793 rad
- color: '#640000FF'
- id: pawprint
- decals:
- 13758: 52.727657,-35.10462
- 13759: 52.988075,-35.38587
- 13760: 52.696407,-35.60462
- 13761: 52.95682,-35.91712
- 13762: 52.71724,-36.125458
- 13763: 52.96724,-36.45879
- 13764: 52.67557,-36.656708
- 13766: 52.95682,-36.92754
- 13767: 52.946407,-34.79212
- - node:
- color: '#630000FF'
- id: rune2
- decals:
- 14023: -29.676588,-77.64111
- node:
- color: '#630000FF'
- id: rune4
+ cleanable: True
+ color: '#5396006C'
+ id: grasssnow13
decals:
-<<<<<<< HEAD
871: -27,-24
890: -49,-23
-=======
- 14021: -36.02427,-73.86186
- - node:
- color: '#630000FF'
- id: rune5
- decals:
- 14022: -32.153282,-75.98998
- - node:
- color: '#630000FF'
- id: rune6
- decals:
- 14024: -35.987576,-80.062775
->>>>>>> master
- node:
cleanable: True
color: '#52B4E93B'
id: splatter
decals:
-<<<<<<< HEAD
566: -27.022144,64.910675
-=======
- 309: -27.022144,64.910675
->>>>>>> master
- node:
cleanable: True
color: '#52B4E95A'
id: splatter
decals:
-<<<<<<< HEAD
562: 23.867323,-16.021215
-=======
- 305: 23.867323,-16.021215
->>>>>>> master
- node:
cleanable: True
color: '#5396009B'
id: splatter
decals:
-<<<<<<< HEAD
862: -47.14132,-30.814823
863: -46.793392,-30.864574
864: -40.964306,-26.53368
866: -32.68557,-31.67585
-=======
- 473: -47.14132,-30.814823
- 474: -46.793392,-30.864574
- 475: -40.964306,-26.53368
- 477: -32.68557,-31.67585
->>>>>>> master
- node:
cleanable: True
color: '#539600E0'
id: splatter
decals:
-<<<<<<< HEAD
900: -36,-26
-=======
- 483: -36,-26
->>>>>>> master
- node:
cleanable: True
color: '#539600FF'
id: splatter
decals:
-<<<<<<< HEAD
939: -45,-22
-=======
- 493: -45,-22
- - node:
- color: '#630000FF'
- id: splatter
- decals:
- 14016: -29.986324,-80.05321
- 14017: -29.949633,-80.47516
- 14018: -28.824398,-73.46101
- 14019: -28.98951,-73.22252
- 14020: -28.695976,-73.13079
- 14025: -33.67599,-75.01765
- 14026: -33.565918,-74.7608
->>>>>>> master
- node:
cleanable: True
color: '#631710FF'
id: splatter
decals:
-<<<<<<< HEAD
1846: 71.9745,24.880663
1847: 71.013565,24.880661
1848: 71.294815,25.513474
-=======
- 820: 71.9745,24.880663
- 821: 71.013565,24.880661
- 822: 71.294815,25.513474
- - node:
- color: '#640000FF'
- id: splatter
- decals:
- 13755: 55.854828,-38.332344
- 13756: 55.42427,-38.3879
- 13757: 52.66038,-34.5129
- - node:
- cleanable: True
- color: '#6CDBD006'
- id: splatter
- decals:
- 14827: -65.29756,58.074463
- 14828: -65.51631,62.043217
- 14829: -65.34444,61.793213
- 14830: -67.65694,58.027588
- 14831: -67.54756,58.465088
- 14832: -67.23506,61.699463
- 14833: -66.76631,61.652588
- 14834: -67.12569,61.715088
- - node:
- cleanable: True
- color: '#6CDBD012'
- id: splatter
- decals:
- 14835: -67.01631,61.777588
- - node:
- cleanable: True
- color: '#6CDBD015'
- id: splatter
- decals:
- 14566: -71.167816,57.481472
- 14567: -70.58969,57.543972
- 14568: -70.667816,58.090847
- 14569: -70.667816,57.715847
- 14570: -70.96469,57.497097
- 14571: -71.136566,57.387722
- 14572: -71.21469,57.059597
- 14573: -71.167816,56.903347
- 14574: -71.136566,57.153347
- 14575: -70.824066,57.512722
- 14576: -70.58969,57.684597
- 14577: -70.43344,57.997097
- 14578: -70.43343,58.262722
- 14579: -70.43344,58.122097
- 14580: -70.511566,57.715847
- 14581: -70.667816,57.434597
- 14582: -71.02719,57.278347
- 14583: -72.12094,57.6221
- 14584: -72.12094,57.6221
- 14585: -71.90219,57.700222
- 14586: -71.667816,57.840847
- 14587: -71.52719,58.043972
- 14588: -71.511566,58.200222
- 14589: -71.511566,58.200222
- 14590: -71.605316,57.997097
- 14591: -71.761566,57.778347
- 14592: -71.90219,57.575222
- 14593: -72.05844,57.497097
- 14594: -72.167816,57.450226
- 14595: -72.230316,57.418976
- 14596: -72.02719,57.481472
- 14597: -71.74594,57.684597
- 14598: -71.542816,57.934597
- 14599: -71.48031,58.247097
- 14600: -71.48031,58.372097
- 14601: -71.49594,58.200222
- 14602: -71.77719,57.747097
- 14603: -72.15219,57.418976
- 14604: -72.386566,57.27835
- 14605: -71.136566,56.715847
- 14606: -71.08969,56.715847
- 14607: -70.949066,56.622097
- 14608: -70.80844,56.559597
- 14609: -70.62094,56.543972
- 14610: -70.37094,56.512722
- 14611: -70.15219,56.512722
- 14612: -69.917816,56.512722
- 14613: -69.792816,56.512726
- - node:
- cleanable: True
- color: '#6CDBD034'
- id: splatter
- decals:
- 14614: -70.917816,56.653347
- 14615: -70.71469,56.653347
- 14616: -70.49594,56.653347
- 14617: -70.136566,56.622097
- 14618: -69.90219,56.6221
- 14619: -69.87094,56.6221
->>>>>>> master
- node:
cleanable: True
color: '#703C065D'
id: splatter
decals:
-<<<<<<< HEAD
563: 26.8611,-18.022274
564: -24.263258,60.864494
565: -23.924158,60.93719
-=======
- 306: 26.8611,-18.022274
- 307: -24.263258,60.864494
- 308: -23.924158,60.93719
->>>>>>> master
- node:
cleanable: True
color: '#79150057'
id: splatter
decals:
-<<<<<<< HEAD
801: -51.105984,-30.675503
802: -51.32965,-25.277493
803: -52.77107,-27.715303
804: -52.572254,-27.988935
805: -52.323734,-27.6158
806: -39.329338,-29.459183
-=======
- 415: -51.105984,-30.675503
- 416: -51.32965,-25.277493
- 417: -39.329338,-29.459183
->>>>>>> master
- node:
cleanable: True
color: '#79150072'
id: splatter
decals:
-<<<<<<< HEAD
2577: 4.891087,-50.39177
2578: 5.9236617,-50.067284
2579: 5.982666,-50.52451
-=======
- 1229: 4.891087,-50.39177
- 1230: 5.9236617,-50.067284
- 1231: 5.982666,-50.52451
- - node:
- cleanable: True
- color: '#95171085'
- id: splatter
- decals:
- 15790: -45.01208,-21.634981
- 15791: -44.66833,-21.947481
- 15792: -45.13708,-21.775606
- 15793: -44.82458,-21.947481
- 15794: -45.012077,-22.541231
->>>>>>> master
- node:
cleanable: True
color: '#951710FF'
id: splatter
decals:
-<<<<<<< HEAD
2316: -44.48576,-37.892525
2317: -40.013565,-36.083096
-=======
- 1013: -44.48576,-37.892525
- 1014: -40.013565,-36.083096
- - node:
- cleanable: True
- color: '#D9DBD0CC'
- id: splatter
- decals:
- 14555: -70.230316,55.856472
- 14556: -69.87094,55.84085
- 14557: -70.71469,55.918972
- 14558: -70.105316,55.684597
- 14559: -69.824066,55.7471
- 14560: -70.80844,55.918972
- 14561: -71.199066,55.903347
- 14562: -71.52719,55.950222
- 14563: -72.042816,56.0596
- 14564: -72.33969,56.09085
- 14565: -71.77719,55.965847
- - node:
- cleanable: True
- color: '#FFFFFFCD'
- id: splatter
- decals:
- 14535: -70.58968,54.450222
- 14536: -70.30843,54.309597
- 14537: -69.88656,54.2471
- 14538: -70.43343,54.512722
- 14539: -70.730316,54.950222
- 14540: -70.58969,55.262722
- 14541: -70.62094,55.184597
- 14542: -70.74594,54.856472
- 14543: -70.62093,54.653347
- 14544: -70.54281,54.465847
- 14545: -70.58969,55.325222
- 14546: -69.74593,54.325226
- 14547: -70.52719,54.887722
- 14548: -70.18343,54.700222
- 14549: -72.199066,55.481476
- 14550: -71.761566,55.450222
- 14551: -71.355316,55.434597
- 14552: -71.08969,55.403347
- 14553: -70.58969,55.497097
- 14554: -70.65219,55.559597
- - node:
- color: '#A40000FF'
- id: star
- decals:
- 14015: -33.071037,-77.06283
->>>>>>> master
- node:
cleanable: True
color: '#DDC3A1FF'
id: toilet
decals:
-<<<<<<< HEAD
2315: -45.00619,-38.08002
-=======
- 1012: -45.00619,-38.08002
->>>>>>> master
- node:
cleanable: True
color: '#FFFFFFFF'
id: toolbox
decals:
-<<<<<<< HEAD
1849: 66.12713,21.093012
-=======
- 823: 66.12713,21.093012
->>>>>>> master
- type: GridAtmosphere
version: 2
data:
tiles:
-4,-4:
0: 65535
- -4,-5:
- 0: 61695
-4,-3:
- 0: 65359
- -5,-3:
- 0: 65399
+ 0: 65535
-4,-2:
- 0: 64271
- -5,-2:
- 0: 30591
+ 0: 65535
-4,-1:
- 0: 55691
- -4,0:
- 0: 56797
- -5,-1:
- 0: 63351
+ 0: 65535
-3,-4:
0: 65535
-3,-3:
- 0: 65359
+ 0: 65535
-3,-2:
- 0: 65359
+ 0: 65535
-3,-1:
- 0: 63487
- -3,-5:
- 0: 61695
- -3,0:
- 0: 63359
+ 0: 65535
-2,-4:
- 0: 7373
+ 0: 65535
-2,-3:
- 0: 65281
- 1: 4
+ 0: 65535
-2,-2:
- 0: 52239
- -2,-5:
- 0: 53503
+ 0: 65535
-2,-1:
- 0: 52428
- -2,0:
- 0: 52428
+ 0: 65535
-1,-4:
- 0: 7647
+ 0: 65535
-1,-3:
0: 65535
-1,-2:
- 0: 65423
- -1,-1:
0: 65535
- -1,-5:
- 0: 53759
- -1,0:
+ -1,-1:
0: 65535
- 0,-4:
- 0: 20479
- 0,-3:
- 0: 65399
- 0,-2:
- 0: 65295
- 0,-1:
+ -4,0:
0: 65535
-4,1:
- 0: 61663
- -5,1:
- 0: 30591
+ 0: 65535
-4,2:
0: 65535
-4,3:
- 0: 65456
- -5,3:
- 0: 65399
- -4,4:
- 0: 11
- 1: 57344
+ 0: 65535
+ -3,0:
+ 0: 65535
-3,1:
- 0: 62207
+ 0: 65535
-3,2:
0: 65535
-3,3:
- 0: 65524
- -3,4:
- 0: 11
- 1: 61696
+ 0: 65535
+ -2,0:
+ 0: 65535
+ -2,1:
+ 0: 65535
-2,2:
- 0: 4915
+ 0: 65535
-2,3:
- 0: 65532
- -2,4:
- 0: 3279
- 1: 4352
- -2,1:
- 0: 204
+ 0: 65535
+ -1,0:
+ 0: 65535
-1,1:
0: 65535
-1,2:
- 0: 255
+ 0: 65535
-1,3:
- 0: 65534
- -1,4:
- 0: 4095
- 0,0:
0: 65535
- 0,1:
- 0: 30719
- 0,2:
- 0: 119
- 0,3:
- 0: 65531
- 0,-5:
- 0: 61695
+ 0,-4:
+ 0: 65535
+ 0,-3:
+ 0: 65535
+ 0,-2:
+ 0: 65535
+ 0,-1:
+ 0: 65535
1,-4:
- 0: 52701
+ 0: 65535
1,-3:
-<<<<<<< HEAD
0: 65467
1: 68
-=======
- 1: 1
- 0: 65292
->>>>>>> master
1,-2:
- 0: 39183
+ 0: 65535
1,-1:
- 0: 6553
- 1,-5:
- 0: 53503
- 1,0:
- 0: 39321
+ 0: 65535
2,-4:
- 0: 30591
+ 0: 65535
2,-3:
- 0: 65303
+ 0: 65535
2,-2:
- 0: 65311
+ 0: 65535
2,-1:
- 0: 19743
- 2,-5:
- 0: 29183
- 2,0:
0: 65535
3,-4:
- 0: 30583
+ 0: 65535
3,-3:
- 0: 65392
+ 0: 65535
3,-2:
- 0: 30479
+ 0: 65535
3,-1:
- 0: 1815
- 3,-5:
- 0: 28927
- 3,0:
- 0: 10103
- 4,-4:
- 0: 30583
- 4,-3:
- 0: 32767
- 4,-2:
- 0: 30583
- 4,-1:
- 0: 30711
- 0,4:
- 0: 4095
+ 0: 65535
+ 0,0:
+ 0: 65535
+ 0,1:
+ 0: 65535
+ 0,2:
+ 0: 65535
+ 0,3:
+ 0: 65535
+ 1,0:
+ 0: 65535
1,1:
- 0: 34961
- 1,3:
- 0: 65521
+ 0: 65535
1,2:
- 0: 52974
- 1,4:
- 0: 287
- 1: 50176
+ 0: 65535
+ 1,3:
+ 0: 65535
+ 2,0:
+ 0: 65535
2,1:
- 0: 65521
+ 0: 65535
2,2:
0: 65535
2,3:
- 0: 65521
- 2,4:
- 0: 14
- 1: 62464
+ 0: 65535
+ 3,0:
+ 0: 65535
+ 3,1:
+ 0: 65535
3,2:
- 0: 30583
+ 0: 65535
3,3:
- 0: 65376
- 3,1:
- 0: 24678
- 3,4:
- 0: 34822
- 1: 12288
- 4,0:
- 0: 30583
- 4,1:
- 0: 32767
- 4,2:
- 0: 30583
- 4,3:
- 0: 30591
+ 0: 65535
-8,0:
- 0: 7677
- -8,-1:
- 0: 8191
- -9,0:
- 0: 36590
+ 0: 65535
-8,1:
- 0: 12287
- -9,1:
- 0: 8191
+ 0: 65535
-8,2:
- 0: 43690
- -9,2:
0: 65535
-8,3:
- 0: 43690
- -9,3:
0: 65535
- -8,4:
- 0: 41698
-7,0:
- 0: 1911
+ 0: 65535
-7,1:
- 0: 53247
+ 0: 65535
-7,2:
0: 65535
-7,3:
0: 65535
- -7,4:
- 0: 63732
-6,0:
- 0: 10103
+ 0: 65535
-6,1:
- 0: 4095
+ 0: 65535
-6,2:
- 0: 63351
+ 0: 65535
-6,3:
- 0: 30591
- -6,-1:
- 0: 8183
+ 0: 65535
-5,0:
- 0: 30583
+ 0: 65535
+ -5,1:
+ 0: 65535
-5,2:
- 0: 30583
- -5,4:
- 0: 65399
+ 0: 65535
+ -5,3:
+ 0: 65535
-8,-4:
0: 65535
- -9,-4:
- 0: 61166
-8,-3:
- 0: 61951
- -9,-3:
- 0: 59630
+ 0: 65535
-8,-2:
0: 65535
- -9,-2:
- 0: 61166
- -9,-1:
- 0: 61167
+ -8,-1:
+ 0: 65535
-7,-4:
-<<<<<<< HEAD
0: 65471
2: 64
-=======
- 0: 53725
->>>>>>> master
-7,-3:
- 0: 61661
+ 0: 65535
-7,-2:
0: 65535
-7,-1:
- 0: 4095
- -7,-5:
- 0: 56607
+ 0: 65535
-6,-4:
- 0: 28859
+ 0: 65535
-6,-3:
- 0: 29047
+ 0: 65535
-6,-2:
- 0: 30583
- -6,-5:
- 0: 47903
+ 0: 65535
+ -6,-1:
+ 0: 65535
-5,-4:
- 0: 30583
- -5,-5:
- 0: 30719
- -5,5:
- 0: 65407
+ 0: 65535
+ -5,-3:
+ 0: 65535
+ -5,-2:
+ 0: 65535
+ -5,-1:
+ 0: 65535
+ -4,4:
+ 0: 61951
-4,5:
- 0: 65280
+ 0: 65521
-4,6:
- 0: 65295
- -5,6:
- 0: 65407
- -4,7:
0: 65535
- -5,7:
+ -4,7:
0: 65535
- -4,8:
- 0: 16383
+ -3,4:
+ 0: 61951
-3,5:
- 0: 65280
- 1: 1
+ 0: 65521
-3,6:
- 0: 64911
+ 0: 65535
-3,7:
0: 65535
- -3,8:
- 0: 3583
+ -2,4:
+ 0: 65535
-2,5:
- 0: 65280
- 1: 1
+ 0: 65521
-2,6:
- 0: 65039
+ 0: 65535
-2,7:
-<<<<<<< HEAD
0: 65021
2: 2
3: 512
-1,4:
0: 65535
-=======
- 0: 3854
- -2,8:
- 0: 3838
->>>>>>> master
-1,5:
- 0: 65280
- 1: 2
+ 0: 65522
-1,6:
- 0: 60943
+ 0: 65535
-1,7:
- 0: 61410
- -1,8:
- 0: 1582
- 0,5:
- 0: 65280
- 1: 2
- 0,6:
- 0: 56607
- 0,7:
- 0: 56828
- -9,4:
- 0: 13087
- 1: 2048
+ 0: 65535
+ -8,4:
+ 0: 65535
-8,5:
- 0: 62122
- -9,5:
- 1: 88
- 0: 61440
+ 0: 65535
-8,6:
-<<<<<<< HEAD
0: 11471
4: 54064
-8,7:
@@ -45937,1298 +21498,1073 @@ entities:
0: 65520
-7,4:
0: 65535
-=======
- 2: 62256
- 0: 136
- -9,6:
- 2: 52416
- 0: 4881
- -8,7:
- 2: 15
- 0: 60960
- -9,7:
- 2: 3276
- 0: 4369
- -8,8:
- 0: 65534
->>>>>>> master
-7,5:
- 0: 61183
+ 0: 65535
-7,6:
- 0: 43760
+ 0: 65535
-7,7:
- 0: 61408
- -7,8:
0: 65535
-6,4:
- 0: 28912
+ 0: 65535
-6,5:
- 0: 47935
+ 0: 65535
-6,6:
- 0: 36664
+ 0: 65535
-6,7:
- 0: 65518
- -6,8:
0: 65535
- -5,8:
+ -5,4:
0: 65535
- 0,8:
- 0: 56785
+ -5,5:
+ 0: 65535
+ -5,6:
+ 0: 65535
+ -5,7:
+ 0: 65535
+ 0,4:
+ 0: 65535
+ 0,5:
+ 0: 65522
+ 0,6:
+ 0: 65535
+ 0,7:
+ 0: 65535
+ 1,4:
+ 0: 63487
1,5:
- 0: 65280
- 1: 4
+ 0: 65524
1,6:
- 0: 65471
+ 0: 65535
1,7:
0: 65535
- 1,8:
- 0: 65521
+ 2,4:
+ 0: 62719
2,5:
- 0: 65280
- 1: 4
+ 0: 65524
2,6:
- 0: 30495
+ 0: 65535
2,7:
- 0: 32639
- 2,8:
- 0: 65394
+ 0: 65535
+ 3,4:
+ 0: 64767
3,5:
- 0: 65288
+ 0: 65532
3,6:
- 0: 65295
+ 0: 65535
3,7:
- 0: 48015
- 3,8:
- 0: 65195
+ 0: 65535
4,4:
- 0: 30583
+ 0: 65535
4,5:
- 0: 30583
+ 0: 65535
4,6:
- 0: 47887
+ 0: 65535
4,7:
-<<<<<<< HEAD
0: 32767
2: 32768
-=======
- 0: 48059
- 4,8:
- 0: 65291
->>>>>>> master
5,4:
- 0: 52684
+ 0: 65534
5,5:
- 1: 1296
- 0: 12
+ 0: 62974
5,6:
- 0: 63279
+ 0: 65535
5,7:
0: 65535
- 5,8:
- 0: 30527
6,4:
- 0: 30583
+ 0: 65535
6,5:
- 0: 7
- 1: 1280
+ 0: 30207
6,6:
- 0: 65283
- 1: 8
+ 0: 65527
6,7:
0: 65535
- 6,8:
- 0: 65295
- 7,4:
- 1: 17861
- 7,5:
- 1: 50245
7,6:
- 1: 7
- 0: 60928
+ 0: 65522
7,7:
- 0: 65166
- 7,8:
- 0: 13070
- 1: 34816
- 7,3:
- 1: 17408
- 0: 15
- 8,5:
- 1: 4096
- 0: 3276
- 8,6:
- 0: 45824
- 1: 2
- 8,7:
- 0: 65419
+ 0: 65535
+ 4,0:
+ 0: 65535
+ 4,1:
+ 0: 65535
+ 4,2:
+ 0: 65535
+ 4,3:
+ 0: 65535
5,0:
- 0: 20479
+ 0: 65535
5,1:
- 0: 20479
+ 0: 65535
5,2:
- 0: 20479
+ 0: 65535
5,3:
- 0: 15
- 1: 5376
- 5,-1:
+ 0: 62719
+ 6,0:
0: 65535
6,1:
- 0: 4095
+ 0: 65535
6,2:
- 0: 49629
+ 0: 65535
6,3:
- 0: 7
- 1: 1280
- 6,0:
- 0: 3822
- 6,-1:
- 0: 61422
+ 0: 62719
7,0:
- 0: 20479
+ 0: 65535
7,1:
- 0: 12287
+ 0: 65535
7,2:
0: 65535
- 7,-1:
+ 7,3:
+ 0: 8959
+ 4,-4:
+ 0: 65535
+ 4,-3:
+ 0: 65535
+ 4,-2:
+ 0: 65535
+ 4,-1:
0: 65535
- 8,0:
- 0: 36606
- 8,1:
- 0: 4063
- 8,2:
- 0: 46011
- 8,3:
- 0: 523
- 4,-5:
- 0: 30591
5,-4:
- 0: 2039
+ 0: 65535
5,-3:
- 0: 20479
+ 0: 65535
5,-2:
0: 65535
+ 5,-1:
+ 0: 65535
6,-4:
- 0: 12287
+ 0: 65535
6,-3:
- 0: 4095
+ 0: 65535
6,-2:
- 0: 61167
- 6,-5:
- 0: 47919
+ 0: 65535
+ 6,-1:
+ 0: 65535
7,-4:
- 0: 4095
+ 0: 65535
7,-3:
- 0: 4095
+ 0: 65535
7,-2:
0: 65535
- 7,-5:
- 0: 43535
- 8,-4:
- 0: 61167
- 8,-3:
- 0: 61423
+ 7,-1:
+ 0: 65535
-4,-12:
- 0: 61166
- -5,-12:
- 0: 12287
+ 0: 65535
-4,-11:
- 0: 61166
- -5,-11:
0: 65535
-4,-10:
- 0: 61167
- -5,-10:
- 0: 4095
+ 0: 65535
-4,-9:
- 0: 45055
- -5,-9:
- 0: 32767
- -4,-8:
- 0: 45055
- -4,-13:
- 0: 61439
- -3,-11:
- 0: 65262
- -3,-9:
- 0: 53245
+ 0: 65535
-3,-12:
- 0: 3822
+ 0: 65535
+ -3,-11:
+ 0: 65535
-3,-10:
- 0: 3822
- -3,-8:
- 0: 3549
- -3,-13:
- 0: 61422
+ 0: 65535
+ -3,-9:
+ 0: 65535
+ -2,-12:
+ 0: 65535
-2,-11:
0: 65535
-2,-10:
- 0: 12287
- -2,-9:
0: 65535
- -2,-13:
+ -2,-9:
0: 65535
- -2,-12:
- 0: 20206
- -2,-8:
- 0: 20479
-1,-12:
- 0: 52703
+ 0: 65535
-1,-11:
- 0: 64989
+ 0: 65535
-1,-10:
- 0: 52703
+ 0: 65535
-1,-9:
- 0: 52990
- -1,-13:
- 0: 56797
- -1,-8:
- 0: 52701
- 0,-12:
- 0: 39857
- 0,-11:
- 0: 53727
- 0,-10:
- 0: 7677
- 0,-9:
- 0: 39931
+ 0: 65535
4,-8:
- 0: 30583
- 4,-9:
- 0: 32767
- 3,-8:
- 0: 10231
+ 0: 65535
4,-7:
- 0: 30719
- 3,-7:
- 0: 65399
+ 0: 65535
4,-6:
- 0: 30471
- 3,-6:
- 0: 61815
+ 0: 65535
+ 4,-5:
+ 0: 65535
5,-8:
- 0: 61559
+ 0: 65535
5,-7:
- 0: 30583
+ 0: 65535
5,-6:
- 0: 65520
+ 0: 65535
5,-5:
- 0: 1919
- 5,-9:
- 0: 12287
+ 0: 65535
6,-8:
0: 65535
6,-7:
- 0: 30583
+ 0: 65535
6,-6:
- 0: 29040
+ 0: 65535
+ 6,-5:
+ 0: 65535
7,-8:
0: 65535
7,-7:
- 0: 65522
+ 0: 65535
7,-6:
- 0: 4095
- 7,-9:
- 0: 12287
- 8,-8:
- 0: 56797
- 8,-7:
- 0: 7452
- 8,-6:
- 0: 52733
- 8,-5:
- 0: 57583
+ 0: 65535
+ 7,-5:
+ 0: 65535
0,-8:
- 0: 7645
+ 0: 65535
0,-7:
- 0: 65501
- -1,-7:
- 0: 65501
+ 0: 65535
0,-6:
- 0: 61917
- -1,-6:
- 0: 64733
+ 0: 65535
+ 0,-5:
+ 0: 65535
1,-8:
- 0: 12287
+ 0: 65535
1,-7:
0: 65535
1,-6:
- 0: 62463
- 1,-9:
+ 0: 65535
+ 1,-5:
0: 65535
2,-8:
- 0: 36317
+ 0: 65535
2,-7:
0: 65535
2,-6:
- 0: 63743
- 2,-9:
- 0: 8191
- 3,-9:
- 0: 6135
+ 0: 65535
+ 2,-5:
+ 0: 65535
+ 3,-8:
+ 0: 65535
+ 3,-7:
+ 0: 65535
+ 3,-6:
+ 0: 65535
+ 3,-5:
+ 0: 65535
+ -4,-8:
+ 0: 65535
-4,-7:
0: 65535
-4,-6:
- 0: 64767
- -5,-6:
- 0: 63247
+ 0: 65535
+ -4,-5:
+ 0: 65535
+ -3,-8:
+ 0: 65535
-3,-7:
0: 65535
-3,-6:
- 0: 61695
+ 0: 65535
+ -3,-5:
+ 0: 65535
+ -2,-8:
+ 0: 65535
-2,-7:
0: 65535
-2,-6:
- 0: 63231
+ 0: 65535
+ -2,-5:
+ 0: 65535
+ -1,-8:
+ 0: 65535
+ -1,-7:
+ 0: 65535
+ -1,-6:
+ 0: 65535
+ -1,-5:
+ 0: 65535
-8,-8:
- 0: 65262
- -9,-8:
- 0: 65134
+ 0: 65535
-8,-7:
- 0: 36607
- -9,-7:
- 0: 53247
+ 0: 65535
-8,-6:
- 0: 3822
- -9,-6:
- 0: 3822
+ 0: 65535
-8,-5:
- 0: 3967
- -9,-5:
- 0: 4095
- -8,-9:
- 0: 36590
+ 0: 65535
-7,-8:
- 0: 30583
+ 0: 65535
-7,-7:
- 0: 1911
+ 0: 65535
-7,-6:
- 0: 35643
+ 0: 65535
+ -7,-5:
+ 0: 65535
-6,-8:
- 0: 30711
+ 0: 65535
-6,-7:
- 0: 32631
+ 0: 65535
-6,-6:
- 0: 30503
- -6,-9:
- 0: 32767
+ 0: 65535
+ -6,-5:
+ 0: 65535
-5,-8:
- 0: 1904
+ 0: 65535
-5,-7:
- 0: 30583
- 0,-13:
- 0: 56829
+ 0: 65535
+ -5,-6:
+ 0: 65535
+ -5,-5:
+ 0: 65535
+ 0,-12:
+ 0: 65535
+ 0,-11:
+ 0: 65535
+ 0,-10:
+ 0: 65535
+ 0,-9:
+ 0: 65535
1,-12:
- 0: 65521
+ 0: 65535
1,-11:
- 0: 29047
+ 0: 65535
1,-10:
- 0: 10103
- 1,-13:
+ 0: 65535
+ 1,-9:
0: 65535
2,-12:
- 0: 30576
+ 0: 65535
2,-11:
- 0: 62071
+ 0: 65535
2,-10:
- 0: 4095
- 2,-13:
+ 0: 65535
+ 2,-9:
0: 65535
3,-12:
- 0: 29808
+ 0: 65535
3,-11:
- 0: 28799
+ 0: 65535
3,-10:
- 0: 2047
- 3,-13:
- 0: 56797
- 4,-12:
- 0: 30578
- 4,-11:
- 0: 30591
- 4,-10:
- 0: 30719
+ 0: 65535
+ 3,-9:
+ 0: 65535
-8,-12:
- 0: 57308
- -9,-12:
- 0: 65248
+ 0: 65535
-8,-11:
- 0: 56733
- -9,-11:
- 0: 61166
+ 0: 65535
-8,-10:
- 0: 36349
- -9,-10:
- 0: 64751
- -9,-9:
- 0: 60941
+ 0: 65535
+ -8,-9:
+ 0: 65535
-7,-12:
0: 65535
-7,-11:
- 0: 56591
+ 0: 65535
-7,-10:
- 0: 3549
+ 0: 65535
-7,-9:
- 0: 4095
+ 0: 65535
-6,-12:
- 0: 15291
+ 0: 65535
-6,-11:
- 0: 48027
+ 0: 65535
-6,-10:
- 0: 7099
- -6,-13:
- 0: 7091
+ 0: 65535
+ -6,-9:
+ 0: 65535
+ -5,-12:
+ 0: 65535
+ -5,-11:
+ 0: 65535
+ -5,-10:
+ 0: 65535
+ -5,-9:
+ 0: 65535
-16,-12:
- 0: 14207
- -17,-12:
- 0: 40908
- 1: 1
+ 0: 65535
-16,-11:
- 0: 30711
- -17,-11:
0: 65535
-16,-10:
- 0: 30471
- -17,-10:
- 0: 65295
+ 0: 65535
-16,-9:
- 0: 519
- -17,-9:
- 0: 4095
- -16,-8:
- 0: 62718
+ 0: 65535
-15,-12:
- 0: 30471
+ 0: 65535
-15,-11:
- 0: 30583
+ 0: 65535
-15,-10:
- 0: 30578
+ 0: 65535
-15,-9:
- 0: 10103
- -15,-13:
- 0: 30576
- -15,-8:
- 0: 28919
+ 0: 65535
-14,-12:
- 0: 65532
+ 0: 65535
-14,-11:
-<<<<<<< HEAD
5: 1
0: 65534
-=======
- 0: 61695
->>>>>>> master
-14,-10:
- 0: 47930
+ 0: 65535
-14,-9:
- 0: 44859
- -14,-13:
- 0: 53248
- 1: 19
- -14,-8:
- 0: 47795
+ 0: 65535
-13,-12:
0: 65535
-13,-11:
- 0: 61695
+ 0: 65535
-13,-10:
- 0: 32527
+ 0: 65535
-13,-9:
- 0: 32519
- -13,-13:
- 0: 61440
- -12,-12:
- 0: 24695
- -12,-11:
- 0: 62054
- -12,-10:
- 0: 52611
- -12,-9:
- 0: 65437
+ 0: 65535
-8,-16:
- 0: 64304
- -8,-17:
- 0: 30583
- -9,-16:
- 0: 56784
+ 0: 65535
-8,-15:
- 0: 57227
- -9,-15:
- 0: 28429
+ 0: 65535
-8,-14:
- 0: 65217
- -9,-14:
- 0: 65094
+ 0: 65535
-8,-13:
- 0: 3822
- -9,-13:
- 0: 65102
+ 0: 65535
-7,-16:
- 0: 65323
+ 0: 65535
-7,-15:
- 0: 48051
+ 0: 65535
-7,-14:
- 0: 65336
+ 0: 65535
-7,-13:
- 0: 4095
- -7,-17:
- 0: 48059
+ 0: 65535
-6,-16:
- 0: 65427
+ 0: 65535
-6,-15:
- 0: 65520
+ 0: 65535
-6,-14:
-<<<<<<< HEAD
0: 30719
4: 34816
-6,-13:
0: 65535
-=======
- 0: 13071
- 2: 34816
- -6,-17:
- 0: 49147
->>>>>>> master
-5,-16:
- 0: 4088
+ 0: 65535
-5,-15:
- 0: 65534
+ 0: 65535
-5,-14:
-<<<<<<< HEAD
0: 52479
4: 13056
-=======
- 0: 34831
- 2: 13056
->>>>>>> master
-5,-13:
- 0: 3065
- -5,-17:
0: 65535
-4,-16:
- 0: 4048
+ 0: 65535
-4,-15:
0: 65535
-4,-14:
- 0: 65311
- -4,-17:
+ 0: 65535
+ -4,-13:
0: 65535
-3,-16:
- 0: 18254
+ 0: 65535
-3,-15:
- 0: 26230
+ 0: 65535
-3,-14:
- 0: 57582
- -3,-17:
- 0: 61438
+ 0: 65535
+ -3,-13:
+ 0: 65535
-2,-16:
- 0: 65295
+ 0: 65535
-2,-15:
- 0: 12287
+ 0: 65535
-2,-14:
- 0: 62719
- -2,-17:
- 0: 64797
+ 0: 65535
+ -2,-13:
+ 0: 65535
-1,-16:
- 0: 61135
+ 0: 65535
-1,-15:
- 0: 52975
+ 0: 65535
-1,-14:
- 0: 56559
- -1,-17:
- 0: 64395
- 0,-16:
- 0: 47895
- 0,-15:
- 0: 7103
- 0,-14:
- 0: 53755
- -12,-13:
- 0: 28672
+ 0: 65535
+ -1,-13:
+ 0: 65535
+ -12,-12:
+ 0: 65535
+ -12,-11:
+ 0: 65535
+ -12,-10:
+ 0: 65535
+ -12,-9:
+ 0: 65535
-11,-12:
- 0: 13107
+ 0: 65535
-11,-11:
- 0: 12851
+ 0: 65535
-11,-10:
- 0: 29488
+ 0: 65535
-11,-9:
- 0: 60939
- -11,-13:
- 0: 61644
- 1: 1
- -11,-8:
- 0: 65230
+ 0: 65535
-10,-12:
- 1: 4352
- 0: 52224
+ 0: 65535
-10,-11:
- 1: 4097
- 0: 49164
+ 0: 65535
-10,-10:
- 1: 17
- 0: 61644
+ 0: 65535
-10,-9:
- 0: 60943
- -10,-13:
- 0: 61695
- -10,-8:
- 0: 65102
- -12,-15:
- 1: 62464
- -13,-15:
- 1: 61457
- -12,-14:
- 1: 240
- -12,-16:
- 0: 200
- -11,-16:
- 0: 2185
+ 0: 65535
+ -9,-12:
+ 0: 65535
+ -9,-11:
+ 0: 65535
+ -9,-10:
+ 0: 65535
+ -9,-9:
+ 0: 65535
+ -12,-13:
+ 0: 65521
+ -11,-13:
+ 0: 65535
-11,-15:
- 1: 4352
- 0: 3592
+ 0: 65535
-11,-14:
- 1: 4368
- 0: 52428
- -11,-17:
- 0: 47496
+ 0: 65534
+ -11,-16:
+ 0: 61423
-10,-16:
- 0: 52696
+ 0: 65535
-10,-15:
- 0: 12173
+ 0: 65535
-10,-14:
- 0: 61678
- -10,-17:
0: 65535
- -9,-17:
- 0: 57309
- -20,-11:
- 1: 7967
- -20,-10:
- 1: 5905
+ -10,-13:
+ 0: 65535
+ -9,-16:
+ 0: 65535
+ -9,-15:
+ 0: 65535
+ -9,-14:
+ 0: 65535
+ -9,-13:
+ 0: 65535
-20,-9:
- 1: 1
- -21,-9:
- 1: 50368
- -20,-8:
- 1: 1
- 0: 3276
+ 0: 63473
+ -19,-9:
+ 0: 65535
-19,-11:
- 1: 28959
+ 0: 63903
-19,-10:
- 1: 1
- -19,-9:
- 0: 1638
- -19,-8:
- 0: 18174
- -19,-12:
- 1: 2176
- -18,-12:
- 1: 4383
- 0: 52224
+ 0: 63993
-18,-11:
- 1: 1
- 0: 65484
+ 0: 65535
-18,-10:
- 0: 65295
+ 0: 65535
-18,-9:
- 0: 3071
- -18,-8:
- 0: 62715
- -18,-13:
- 1: 60544
- -17,-8:
- 0: 53503
+ 0: 65535
+ -18,-12:
+ 0: 65535
+ -17,-12:
+ 0: 65535
+ -17,-11:
+ 0: 65535
+ -17,-10:
+ 0: 65535
+ -17,-9:
+ 0: 65535
-17,-13:
- 1: 2295
- -17,-14:
- 1: 17600
- -16,-14:
- 1: 60144
+ 0: 59639
-16,-13:
- 1: 630
- -15,-14:
- 1: 65520
- -14,-14:
- 1: 29946
- -14,-15:
- 1: 60132
- -14,-16:
- 1: 17608
- -14,-17:
- 1: 34944
- -13,-16:
- 1: 28978
- -13,-14:
- 1: 16
- -13,-17:
- 1: 25205
+ 0: 64250
+ -15,-13:
+ 0: 65535
+ -14,-13:
+ 0: 65531
+ -13,-13:
+ 0: 65534
+ -16,-8:
+ 0: 65535
-16,-7:
0: 65535
- -17,-7:
- 0: 56797
-16,-6:
- 0: 61695
- -17,-6:
- 0: 61661
+ 0: 65535
-16,-5:
- 0: 51214
- 1: 8960
- -17,-5:
- 1: 32704
- 0: 1
- -16,-4:
- 1: 2
- 0: 34944
+ 0: 61183
+ -15,-8:
+ 0: 65535
-15,-7:
- 0: 32631
+ 0: 65535
-15,-6:
- 0: 28791
+ 0: 65535
-15,-5:
- 0: 65039
- -15,-4:
- 0: 65534
+ 0: 65535
+ -14,-8:
+ 0: 65535
-14,-7:
- 0: 48059
+ 0: 65535
-14,-6:
- 0: 65522
+ 0: 65535
-14,-5:
- 0: 65375
- -14,-4:
0: 65535
-13,-8:
- 0: 29616
+ 0: 65535
-13,-7:
- 0: 45951
+ 0: 65535
-13,-6:
- 0: 65520
+ 0: 65535
-13,-5:
- 0: 56591
- -13,-4:
- 0: 56829
+ 0: 65535
-12,-8:
- 0: 65520
+ 0: 65535
-12,-7:
0: 65535
-12,-6:
- 0: 3828
+ 0: 65535
-12,-5:
- 0: 30479
- -12,-4:
- 0: 30583
+ 0: 65535
+ -11,-8:
+ 0: 65535
-11,-7:
- 0: 20223
- -11,-5:
- 0: 56607
+ 0: 65535
-11,-6:
- 0: 3822
- -11,-4:
- 0: 7645
+ 0: 65535
+ -11,-5:
+ 0: 65535
+ -10,-8:
+ 0: 65535
-10,-7:
- 0: 28415
- -10,-5:
- 0: 48015
+ 0: 65535
-10,-6:
- 0: 3822
- -10,-4:
- 0: 35775
- 0,-17:
- 0: 32759
- 1,-16:
- 0: 65319
+ 0: 65535
+ -10,-5:
+ 0: 65535
+ -9,-8:
+ 0: 65535
+ -9,-7:
+ 0: 65535
+ -9,-6:
+ 0: 65535
+ -9,-5:
+ 0: 65535
+ 0,-16:
+ 0: 65535
+ 0,-15:
+ 0: 65535
+ 0,-14:
+ 0: 65535
+ 0,-13:
+ 0: 65535
1,-15:
- 0: 36863
+ 0: 65535
1,-14:
- 0: 61695
- 1,-17:
- 0: 63351
- 2,-16:
- 0: 56579
- 1: 8
+ 0: 65535
+ 1,-13:
+ 0: 65535
2,-15:
- 0: 19933
+ 0: 65535
2,-14:
- 0: 62703
- 2,-17:
- 0: 13056
- 1: 2183
- 3,-16:
- 0: 30464
- 1: 8
+ 0: 65535
+ 2,-13:
+ 0: 65535
3,-15:
- 0: 1911
+ 0: 65535
3,-14:
- 0: 53487
- 3,-17:
- 1: 50993
- 4,-16:
- 1: 63025
- 4,-15:
- 1: 2546
- 4,-14:
- 0: 29439
- 4,-13:
- 0: 30583
+ 0: 65535
+ 3,-13:
+ 0: 65535
+ 4,-12:
+ 0: 65535
+ 4,-11:
+ 0: 65535
+ 4,-10:
+ 0: 65535
+ 4,-9:
+ 0: 65535
5,-12:
0: 65535
5,-11:
- 0: 61695
+ 0: 65535
5,-10:
- 0: 4095
- 5,-13:
- 0: 62719
+ 0: 65535
+ 5,-9:
+ 0: 65535
6,-12:
- 0: 56797
+ 0: 65535
6,-11:
- 0: 56543
+ 0: 65535
6,-10:
- 0: 52735
+ 0: 65535
6,-9:
- 0: 4095
- 6,-13:
- 0: 56541
+ 0: 65535
7,-12:
- 0: 53725
+ 0: 65535
7,-11:
- 0: 56607
+ 0: 65535
7,-10:
- 0: 7647
- 7,-13:
- 0: 57309
- 8,-12:
- 0: 28791
- 8,-11:
- 0: 65287
- 8,-10:
- 0: 4095
- 8,-9:
- 0: 4095
- 5,-16:
- 1: 64640
+ 0: 65535
+ 7,-9:
+ 0: 65535
+ 4,-15:
+ 0: 63986
+ 4,-14:
+ 0: 65535
+ 4,-13:
+ 0: 65535
5,-15:
- 1: 240
+ 0: 61680
5,-14:
- 0: 61695
- 6,-16:
- 1: 4117
- 0: 52224
+ 0: 65535
+ 5,-13:
+ 0: 65535
6,-15:
- 1: 273
- 0: 52364
+ 0: 65535
6,-14:
- 0: 55519
+ 0: 65535
+ 6,-13:
+ 0: 65535
+ 6,-16:
+ 0: 65269
7,-16:
- 0: 45312
- 1: 137
+ 0: 65465
7,-15:
- 0: 4353
- 1: 2176
+ 0: 64447
7,-14:
- 0: 55519
- 8,-16:
- 0: 56524
- 8,-14:
- 0: 28799
- 8,-13:
- 0: 30583
+ 0: 65535
+ 7,-13:
+ 0: 65535
+ 8,-12:
+ 0: 65535
+ 8,-11:
+ 0: 65535
+ 8,-10:
+ 0: 65535
+ 8,-9:
+ 0: 65535
9,-12:
- 0: 28927
+ 0: 65535
9,-11:
- 0: 30503
+ 0: 65535
9,-10:
- 0: 1911
+ 0: 65535
9,-9:
- 0: 6135
- 9,-13:
- 0: 15291
- 9,-8:
- 0: 30583
+ 0: 65535
10,-12:
- 0: 45819
+ 0: 65535
10,-11:
- 0: 49083
+ 0: 65535
10,-10:
- 0: 11195
+ 0: 65535
10,-9:
- 0: 64443
- 10,-8:
- 0: 62395
+ 0: 65535
11,-12:
- 0: 64255
+ 0: 65535
11,-11:
0: 65535
11,-10:
- 0: 4095
+ 0: 65535
11,-9:
0: 65535
- 11,-8:
- 0: 61695
- 12,-12:
- 0: 47359
- 12,-11:
- 0: 49083
- 12,-10:
- 0: 35771
- 12,-9:
- 0: 64443
+ 8,-8:
+ 0: 65535
+ 8,-7:
+ 0: 65535
+ 8,-6:
+ 0: 65535
+ 8,-5:
+ 0: 65535
+ 9,-8:
+ 0: 65535
9,-7:
- 0: 10023
+ 0: 65535
9,-6:
- 0: 53751
+ 0: 65535
9,-5:
- 0: 39133
- 9,-4:
+ 0: 65535
+ 10,-8:
0: 65535
10,-7:
- 0: 47931
+ 0: 65535
10,-6:
- 0: 61627
+ 0: 65535
10,-5:
- 0: 13051
- 10,-4:
- 0: 14199
+ 0: 65535
+ 11,-8:
+ 0: 65535
11,-7:
- 0: 47887
+ 0: 65535
11,-6:
- 0: 61883
+ 0: 65535
11,-5:
- 0: 64767
- 11,-4:
- 0: 20479
- 12,-8:
- 0: 63675
- 12,-7:
- 0: 47887
- 12,-6:
- 0: 61883
- 12,-5:
- 0: 45311
+ 0: 65535
+ 8,-16:
+ 0: 65518
8,-15:
- 0: 12
- 1: 1024
- 8,-17:
- 0: 52511
+ 0: 62703
+ 8,-14:
+ 0: 65535
+ 8,-13:
+ 0: 65535
9,-16:
- 0: 56765
+ 0: 65535
9,-15:
- 0: 13
- 1: 1280
+ 0: 62975
9,-14:
- 0: 64443
- 9,-17:
- 0: 6607
+ 0: 65535
+ 9,-13:
+ 0: 65535
10,-16:
- 0: 49083
+ 0: 65535
10,-15:
- 0: 3
- 1: 3712
+ 0: 65279
10,-14:
0: 65535
10,-13:
- 0: 4095
+ 0: 65535
11,-16:
- 0: 13107
+ 0: 30591
11,-15:
- 1: 2552
+ 0: 63999
11,-14:
0: 65535
11,-13:
- 0: 4095
- 12,-16:
- 1: 62564
- 12,-15:
- 1: 4053
- 8,-19:
- 1: 5119
- 0: 3072
- 7,-19:
- 1: 65120
+ 0: 65535
8,-18:
- 1: 1
- 0: 56780
- 7,-18:
- 0: 31488
- 1: 4
- 7,-17:
- 0: 4031
+ 0: 65535
+ 8,-17:
+ 0: 65535
+ 8,-19:
+ 0: 65535
9,-19:
- 1: 1
- 0: 52688
+ 0: 65535
9,-18:
- 0: 40913
- 9,-20:
- 1: 32332
- 10,-20:
- 1: 22303
+ 0: 65535
+ 9,-17:
+ 0: 65535
+ 10,-19:
+ 0: 65535
10,-18:
- 0: 1650
+ 0: 65535
10,-17:
- 0: 887
- 10,-19:
- 0: 26208
- 11,-20:
- 1: 803
+ 0: 65535
11,-17:
- 0: 272
+ 0: 64251
6,-18:
- 0: 60416
- 1: 12
+ 0: 61164
6,-17:
- 0: 3784
- 6,-19:
- 1: 32768
- -21,-8:
- 1: 43694
+ 0: 61166
+ 7,-18:
+ 0: 65524
+ 7,-17:
+ 0: 65535
+ -20,-5:
+ 0: 61423
+ -20,-8:
+ 0: 61167
-20,-7:
- 1: 17
- 0: 3308
- -21,-7:
- 1: 170
+ 0: 61183
-20,-6:
- 0: 49356
- -20,-5:
- 0: 204
- 1: 57344
+ 0: 65518
+ -19,-8:
+ 0: 65535
-19,-7:
- 0: 26230
+ 0: 65535
-19,-6:
- 0: 26230
+ 0: 65535
-19,-5:
- 0: 15
- 1: 15872
+ 0: 16383
+ -18,-8:
+ 0: 65535
-18,-7:
0: 65535
-18,-6:
- 0: 62719
+ 0: 65535
-18,-5:
- 0: 15
- 1: 256
+ 0: 511
+ -17,-8:
+ 0: 65535
+ -17,-7:
+ 0: 65535
+ -17,-6:
+ 0: 65535
+ -17,-5:
+ 0: 30719
-20,-4:
- 0: 13056
- -21,-4:
- 0: 52224
- 1: 13104
+ 0: 30584
-20,-3:
- 0: 65331
- -21,-3:
- 0: 60936
+ 0: 65527
-20,-2:
- 0: 8191
- -21,-2:
- 0: 3822
+ 0: 65535
-20,-1:
- 0: 60437
- -21,-1:
- 0: 200
- 1: 29488
- -20,0:
- 0: 59631
+ 0: 65535
+ -19,-4:
+ 0: 60929
-19,-3:
- 0: 15243
+ 0: 65535
-19,-2:
- 0: 3003
+ 0: 65535
-19,-1:
- 0: 56797
- -19,-4:
- 0: 40960
- -19,0:
- 0: 40159
+ 0: 65535
-18,-4:
- 0: 61440
+ 0: 65280
-18,-3:
- 0: 4095
+ 0: 65535
-18,-2:
- 0: 45055
+ 0: 65535
-18,-1:
0: 65535
- -18,0:
- 0: 4095
-17,-4:
- 0: 12288
+ 0: 30578
-17,-3:
- 0: 819
+ 0: 63351
-17,-2:
- 0: 4095
+ 0: 65535
-17,-1:
- 0: 30583
- -17,0:
- 0: 2039
- -16,-2:
- 0: 3067
- -16,-1:
- 1: 273
- 0: 34952
- -21,0:
- 1: 64764
+ 0: 65535
+ -20,0:
+ 0: 65535
-20,1:
- 0: 61166
- -21,1:
- 1: 19725
- 0: 16
- -21,2:
- 1: 54648
+ 0: 65535
-20,2:
- 0: 61160
+ 0: 65535
-20,3:
- 0: 57304
- -21,3:
- 0: 53184
- 1: 4113
- -20,4:
- 0: 12
- 1: 12048
+ 0: 65535
+ -19,0:
+ 0: 65535
-19,1:
- 0: 56797
+ 0: 65535
-19,2:
- 0: 56604
+ 0: 65535
-19,3:
- 0: 65308
- -19,4:
- 0: 15
- 1: 3584
+ 0: 65535
+ -18,0:
+ 0: 65535
-18,1:
- 0: 30583
+ 0: 65535
-18,2:
- 0: 30487
+ 0: 65535
-18,3:
- 0: 65303
- -18,4:
- 0: 15
- 1: 65280
+ 0: 65535
+ -17,0:
+ 0: 65535
-17,3:
- 0: 64960
- -17,4:
- 0: 3277
- 1: 256
+ 0: 65534
-17,1:
- 0: 52428
+ 0: 61166
-17,2:
- 0: 52428
- -16,0:
- 0: 3059
- -16,1:
+ 0: 61166
+ -16,-4:
+ 0: 52430
+ -16,-3:
+ 0: 64716
+ -16,-2:
0: 65535
- -16,2:
+ -16,-1:
+ 0: 64989
+ -15,-4:
0: 65535
- -16,3:
- 0: 65520
- -16,-3:
- 0: 34824
-15,-3:
- 0: 65359
+ 0: 65535
-15,-2:
- 0: 20479
+ 0: 65535
-15,-1:
0: 65535
- -15,0:
- 0: 61438
+ -14,-4:
+ 0: 65535
-14,-3:
- 0: 65263
+ 0: 65535
-14,-2:
- 0: 61182
+ 0: 65535
-14,-1:
0: 65535
- -14,0:
- 0: 40959
+ -13,-4:
+ 0: 65535
-13,-3:
- 0: 47901
+ 0: 65535
-13,-2:
- 0: 7099
+ 0: 65535
-13,-1:
0: 65535
- -13,0:
- 0: 40959
- -12,-3:
- 0: 65287
- -12,-2:
- 0: 4095
- -12,-1:
- 0: 61182
- -16,4:
- 0: 35763
+ -16,0:
+ 0: 65535
+ -16,1:
+ 0: 65535
+ -16,2:
+ 0: 65535
+ -16,3:
+ 0: 65535
+ -15,0:
+ 0: 65535
-15,1:
- 0: 61408
+ 0: 65535
-15,2:
- 0: 61408
+ 0: 65535
-15,3:
- 0: 61422
- -15,4:
- 0: 65524
+ 0: 65535
+ -14,0:
+ 0: 65535
-14,1:
- 0: 40412
+ 0: 65535
-14,2:
- 0: 65532
+ 0: 65535
-14,3:
0: 65535
- -14,4:
- 0: 52974
+ -13,0:
+ 0: 65535
-13,1:
- 0: 7099
+ 0: 65535
-13,2:
- 0: 63475
+ 0: 65535
-13,3:
0: 65535
- -13,4:
- 0: 52689
- -12,0:
- 0: 3838
- -12,1:
- 0: 8191
- -12,2:
- 0: 45303
- -12,3:
- 0: 49087
+ -12,-4:
+ 0: 65535
+ -12,-3:
+ 0: 65535
+ -12,-2:
+ 0: 65535
+ -12,-1:
+ 0: 65535
+ -11,-4:
+ 0: 65535
-11,-3:
- 0: 61167
+ 0: 65535
-11,-2:
- 0: 26212
+ 0: 65535
-11,-1:
- 0: 61030
- -11,0:
- 0: 58606
+ 0: 65535
+ -10,-4:
+ 0: 65535
-10,-3:
0: 65535
-10,-2:
- 0: 39864
+ 0: 65535
-10,-1:
- 0: 20381
- -10,0:
- 0: 3822
+ 0: 65535
+ -9,-4:
+ 0: 65535
+ -9,-3:
+ 0: 65535
+ -9,-2:
+ 0: 65535
+ -9,-1:
+ 0: 65535
+ -12,0:
+ 0: 65535
+ -12,1:
+ 0: 65535
+ -12,2:
+ 0: 65535
+ -12,3:
+ 0: 65535
+ -11,0:
+ 0: 65535
+ -11,1:
+ 0: 65535
-11,2:
0: 65535
-11,3:
0: 65535
- -11,1:
- 0: 61166
- -11,4:
+ -10,0:
0: 65535
-10,1:
- 0: 4095
+ 0: 65535
-10,2:
- 0: 61166
+ 0: 65535
-10,3:
- 0: 61166
- -10,4:
- 0: 34830
- 1: 512
- -21,4:
- 1: 43744
- -20,5:
- 1: 12834
- 3: 34952
- -20,6:
- 1: 20017
- 3: 8
- -21,5:
- 1: 53166
- -21,6:
- 1: 8
- -20,7:
- 1: 19532
- -20,8:
- 1: 53068
+ 0: 65535
+ -9,0:
+ 0: 65535
+ -9,1:
+ 0: 65535
+ -9,2:
+ 0: 65535
+ -9,3:
+ 0: 65535
+ -20,4:
+ 0: 62975
+ -19,4:
+ 0: 65535
-19,5:
- 3: 30583
+ 0: 65535
-19,6:
-<<<<<<< HEAD
0: 30719
6: 34816
-19,7:
@@ -47236,20 +22572,9 @@ entities:
6: 34824
-18,4:
0: 65535
-=======
- 3: 7
- 1: 16128
- -19,7:
- 1: 13107
- 4: 2184
- -19,8:
- 1: 13107
- 5: 2184
->>>>>>> master
-18,5:
- 1: 65535
+ 0: 65535
-18,6:
-<<<<<<< HEAD
0: 52479
6: 13056
-18,7:
@@ -47259,156 +22584,69 @@ entities:
0: 65535
-17,5:
0: 65535
-=======
- 1: 35839
- -18,7:
- 4: 819
- 1: 34952
- -18,8:
- 5: 819
- 1: 34952
->>>>>>> master
-17,6:
- 0: 61182
- -17,5:
- 0: 61166
+ 0: 65535
-17,7:
- 0: 61166
- -17,8:
- 0: 61166
- -16,5:
- 0: 65339
- -16,6:
0: 65535
- -16,7:
+ -21,3:
0: 65535
- -24,0:
+ -21,4:
+ 0: 8942
+ -16,4:
0: 65535
- -25,0:
+ -16,5:
0: 65535
- -24,1:
- 1: 3341
- -25,1:
- 1: 3341
- -24,2:
- 1: 61440
- -25,2:
- 1: 61440
- -24,-1:
- 1: 16388
- 0: 4088
- -23,0:
+ -16,6:
0: 65535
- -23,1:
- 1: 3341
- -23,2:
- 1: 54768
- -23,-1:
- 1: 36865
- 0: 4080
- -23,3:
- 1: 22013
- 0: 34816
- -23,4:
- 1: 21877
- 0: 34952
- -22,0:
- 0: 30583
- 1: 32896
- -22,1:
- 1: 3341
- 0: 128
- -22,2:
- 1: 8944
- -22,3:
- 1: 61682
- 0: 3840
- -22,4:
- 1: 21845
- -22,-1:
- 1: 60544
- 0: 819
- -24,5:
- 1: 3855
- 0: 61440
- -25,5:
- 1: 3983
- 0: 61440
- -24,6:
- 1: 3999
- -25,6:
- 1: 3919
- -24,7:
- 1: 240
- -25,7:
- 1: 35056
- -23,5:
- 1: 1879
- 0: 63624
- -23,6:
- 1: 3919
- -23,7:
- 1: 4368
- -23,8:
- 1: 3857
- -22,5:
- 1: 23895
- -22,6:
- 1: 1863
- -16,8:
+ -16,7:
+ 0: 65535
+ -15,4:
0: 65535
-15,5:
- 0: 65295
+ 0: 65535
-15,6:
0: 65535
-15,7:
- 0: 16383
- -15,8:
- 0: 48059
+ 0: 65535
+ -14,4:
+ 0: 65535
-14,5:
- 0: 65262
+ 0: 65535
-14,6:
- 0: 61679
+ 0: 65535
-14,7:
- 0: 12287
- -14,8:
+ 0: 65535
+ -13,4:
0: 65535
-13,5:
- 0: 56829
+ 0: 65535
-13,6:
- 0: 61661
+ 0: 65535
-13,7:
- 0: 61439
- -13,8:
- 0: 3822
+ 0: 65535
-12,4:
- 0: 32624
+ 0: 65535
-12,5:
- 0: 63351
+ 0: 65535
-12,6:
- 0: 12339
- 1: 32768
+ 0: 63359
-12,7:
- 0: 13107
- 1: 136
- -12,8:
- 0: 819
- 1: 2184
+ 0: 30719
+ -11,4:
+ 0: 65535
-11,5:
- 0: 65279
+ 0: 65535
-11,6:
- 0: 41700
+ 0: 65535
-11,7:
- 0: 41646
- -11,8:
- 0: 44714
+ 0: 65535
+ -10,4:
+ 0: 57343
-10,5:
- 0: 61440
- 1: 66
+ 0: 65375
-10,6:
- 0: 63072
+ 0: 65535
-10,7:
-<<<<<<< HEAD
0: 65535
-9,4:
0: 32767
@@ -47448,107 +22686,53 @@ entities:
0: 64716
-17,8:
0: 65535
-=======
- 0: 28791
- -10,8:
- 0: 30591
- -9,8:
- 0: 56797
- -21,8:
- 1: 3840
- -20,10:
- 1: 19708
- -21,10:
- 1: 240
- -20,9:
- 1: 19532
- -20,11:
- 1: 19532
- -20,12:
- 1: 19532
- -19,9:
- 1: 13107
- 6: 2184
- -19,10:
- 1: 13107
- 3: 2184
- -19,11:
- 1: 13107
- 3: 2184
- -19,12:
- 1: 13107
- 3: 2184
- -18,9:
- 6: 819
- 1: 34952
- -18,10:
- 3: 819
- 1: 34952
- -18,11:
- 3: 819
- 1: 34952
- -18,12:
- 3: 819
- 1: 34952
->>>>>>> master
-17,9:
- 0: 3822
+ 0: 65535
-17,10:
- 0: 61166
+ 0: 65535
-17,11:
- 0: 61166
- -17,12:
- 0: 61166
+ 0: 65535
+ -16,8:
+ 0: 65535
-16,9:
- 0: 20479
+ 0: 65535
-16,10:
- 0: 32767
+ 0: 65535
-16,11:
- 0: 30583
- -16,12:
- 0: 32639
+ 0: 65535
+ -15,8:
+ 0: 65535
-15,9:
- 0: 7099
+ 0: 65535
-15,10:
- 0: 4095
+ 0: 65535
-15,11:
0: 65535
- -15,12:
+ -14,8:
0: 65535
-14,9:
- 0: 12287
+ 0: 65535
-14,10:
- 0: 24575
- -14,11:
0: 65535
- -14,12:
+ -14,11:
0: 65535
- -13,10:
- 0: 3581
- -13,11:
+ -13,8:
0: 65535
-13,9:
- 0: 52974
- -13,12:
0: 65535
- -12,9:
- 0: 48051
- -12,10:
- 0: 7163
- -12,11:
+ -13,10:
0: 65535
- -20,15:
- 1: 60040
+ -13,11:
+ 0: 65535
+ -20,12:
+ 0: 19532
-20,13:
- 1: 34956
- -20,16:
- 1: 40772
- -19,13:
- 1: 26447
+ 0: 34956
-20,14:
- 1: 34824
+ 0: 34824
+ -19,13:
+ 0: 61391
-19,14:
-<<<<<<< HEAD
0: 61423
-19,12:
0: 63351
@@ -47558,1899 +22742,2049 @@ entities:
-18,12:
9: 819
0: 64716
-=======
- 1: 8999
- -19,15:
- 1: 4096
- -19,16:
- 1: 32546
->>>>>>> master
-18,13:
- 0: 63232
- 1: 14
+ 0: 65278
-18,14:
- 0: 1911
+ 0: 65535
+ -18,15:
+ 0: 65518
+ -17,12:
+ 0: 65535
-17,13:
- 0: 65294
+ 0: 65535
-17,14:
- 0: 65327
+ 0: 65535
-17,15:
- 0: 4095
- -17,16:
- 1: 12100
+ 0: 63487
+ -16,12:
+ 0: 65535
-16,13:
- 0: 30503
+ 0: 65535
-16,14:
- 0: 26343
+ 0: 65535
-16,15:
- 0: 32870
+ 0: 65279
+ -15,12:
+ 0: 65535
-15,13:
- 0: 10103
+ 0: 65535
-15,14:
- 0: 10103
+ 0: 65535
-15,15:
- 0: 29303
- -16,16:
- 0: 8
- 1: 3840
- -15,16:
- 0: 39
- 1: 3840
+ 0: 65535
+ -14,12:
+ 0: 65535
-14,13:
- 0: 49080
+ 0: 65535
-14,14:
- 1: 37360
- 0: 2048
+ 0: 39423
-14,15:
- 1: 39417
- -14,16:
- 1: 60409
+ 0: 39417
+ -13,12:
+ 0: 65535
-13,13:
0: 65535
-13,14:
- 1: 31728
- 0: 1024
+ 0: 32767
-13,15:
- 0: 3
- 1: 17652
- -13,16:
- 1: 64244
- -12,12:
- 0: 63359
- -12,13:
- 0: 30583
- -12,14:
- 1: 61456
- 0: 1092
- -12,15:
- 1: 36092
+ 0: 17655
+ -12,8:
+ 0: 32767
+ -12,9:
+ 0: 65535
+ -12,10:
+ 0: 65535
+ -12,11:
+ 0: 65535
+ -11,8:
+ 0: 65535
-11,9:
- 0: 61682
+ 0: 65535
-11,10:
- 0: 20253
+ 0: 65535
-11,11:
- 0: 21981
- -11,12:
- 0: 32205
+ 0: 65535
+ -10,8:
+ 0: 65535
-10,9:
- 0: 57584
+ 0: 65535
-10,10:
- 0: 61190
+ 0: 65535
-10,11:
-<<<<<<< HEAD
0: 65023
2: 512
-9,8:
0: 65535
-=======
- 0: 52964
- -10,12:
- 0: 3822
->>>>>>> master
-9,9:
- 0: 7645
+ 0: 65535
-9,10:
- 0: 52701
+ 0: 65535
-9,11:
- 0: 60560
- -9,12:
- 0: 61182
- -8,9:
- 0: 20223
- -8,10:
- 0: 65527
- -8,11:
- 0: 65525
- -16,17:
- 1: 15
- -17,17:
- 1: 9022
- -15,17:
- 1: 15
- -14,17:
- 1: 227
- -13,17:
- 1: 249
- -12,16:
- 1: 12191
- -12,17:
- 1: 7
- -21,16:
- 1: 7936
+ 0: 65535
+ -16,16:
+ 0: 4044
+ -15,16:
+ 0: 4095
+ -14,16:
+ 0: 60409
+ -13,16:
+ 0: 64244
-20,17:
- 0: 1799
- 1: 39160
- -21,17:
- 0: 3084
- 1: 979
+ 0: 40959
-20,18:
- 0: 771
- 1: 40188
- -21,18:
- 0: 3598
- 1: 481
+ 0: 40959
-20,19:
- 0: 1799
- 1: 248
- -21,19:
- 0: 3084
- 1: 5075
+ 0: 2047
+ -19,16:
+ 0: 32546
-19,17:
- 1: 13299
- 0: 3084
+ 0: 16383
-19,18:
- 1: 14327
- 0: 2056
+ 0: 16383
-19,19:
- 1: 4595
- 0: 3084
- -19,20:
- 1: 20977
- 0: 3084
+ 0: 7679
-18,16:
- 1: 20224
+ 0: 20292
-18,17:
- 0: 1799
- 1: 6264
+ 0: 8063
-18,18:
- 0: 3855
- 1: 8432
+ 0: 12287
-18,19:
- 0: 1799
- 1: 2168
- -17,18:
- 1: 8995
- -17,19:
- 1: 4403
- -17,20:
- 1: 4369
- -20,20:
- 0: 1799
- 1: 16624
- -21,20:
- 0: 3084
- 1: 5075
- -20,21:
- 1: 3151
- -21,21:
- 1: 15
- -19,21:
- 0: 1
- 1: 1886
- -18,20:
- 0: 1799
- 1: 2168
- -18,21:
- 1: 15
- -17,21:
- 1: 1
- -22,17:
- 1: 34816
- -22,18:
- 1: 34952
- -22,19:
- 1: 8
+ 0: 3967
+ -17,16:
+ 0: 12100
+ -19,20:
+ 0: 24061
+ -21,18:
+ 0: 4079
+ -21,17:
+ 0: 4063
+ -21,19:
+ 0: 8159
+ -12,16:
+ 0: 12191
-11,16:
- 1: 1
- -11,15:
- 0: 52428
- 1: 273
- -10,15:
+ 0: 15
+ -10,16:
+ 0: 15
+ -9,16:
+ 0: 34959
+ -12,12:
+ 0: 65535
+ -12,13:
+ 0: 65535
+ -12,14:
+ 0: 65279
+ -12,15:
+ 0: 36092
+ -11,12:
0: 65535
- -9,15:
- 0: 30583
- -9,19:
- 0: 192
- -8,16:
- 0: 62583
- -8,17:
- 0: 61183
- -8,19:
- 0: 65278
-11,13:
- 0: 17477
- 1: 256
+ 0: 61439
-11,14:
- 1: 4369
- 0: 49348
+ 0: 65535
+ -11,15:
+ 0: 61439
+ -10,12:
+ 0: 65535
-10,13:
- 0: 36863
+ 0: 65535
-10,14:
- 0: 46331
+ 0: 65535
+ -10,15:
+ 0: 65535
+ -9,12:
+ 0: 65535
-9,13:
- 0: 40174
+ 0: 65535
-9,14:
- 0: 29168
- -8,12:
0: 65535
- -8,13:
+ -9,15:
0: 65535
- -8,14:
- 0: 12272
- -8,15:
- 0: 30583
- -4,9:
+ -4,8:
0: 65535
- -5,9:
+ -4,9:
0: 65535
-4,10:
0: 65535
- -5,10:
- 0: 65535
-4,11:
- 0: 16383
- -5,11:
0: 65535
- -4,12:
- 0: 16319
+ -3,8:
+ 0: 65535
-3,9:
- 0: 63351
+ 0: 65535
-3,10:
0: 65535
-3,11:
- 0: 2039
- -3,12:
- 0: 8191
+ 0: 65535
+ -2,8:
+ 0: 65535
-2,9:
- 0: 30711
+ 0: 65535
-2,10:
- 0: 30583
+ 0: 65535
-2,11:
- 0: 2995
- -2,12:
- 0: 20479
+ 0: 65535
+ -1,8:
+ 0: 65535
-1,9:
- 0: 30583
+ 0: 65535
-1,10:
-<<<<<<< HEAD
0: 57343
5: 8192
-=======
- 0: 1919
->>>>>>> master
-1,11:
- 0: 6007
- -1,12:
- 0: 60223
- 0,9:
- 0: 29149
- 0,10:
- 0: 30511
- 0,11:
- 0: 63351
+ 0: 65535
+ -8,8:
+ 0: 65535
+ -8,9:
+ 0: 65535
+ -8,10:
+ 0: 65535
+ -8,11:
+ 0: 65535
+ -7,8:
+ 0: 65535
-7,9:
0: 65535
-7,10:
- 0: 30704
+ 0: 65535
-7,11:
- 0: 63280
- -7,12:
+ 0: 65535
+ -6,8:
0: 65535
-6,9:
0: 65535
-6,10:
0: 65535
-6,11:
- 0: 65279
- -6,12:
- 0: 65519
- -5,12:
+ 0: 65535
+ -5,8:
+ 0: 65535
+ -5,9:
+ 0: 65535
+ -5,10:
+ 0: 65535
+ -5,11:
+ 0: 65535
+ -8,12:
+ 0: 65535
+ -8,13:
+ 0: 65535
+ -8,14:
+ 0: 65535
+ -8,15:
+ 0: 65535
+ -7,12:
0: 65535
-7,13:
- 0: 14335
+ 0: 65535
-7,14:
- 0: 53752
+ 0: 65535
-7,15:
- 0: 63479
- -7,16:
- 0: 63735
+ 0: 65535
+ -6,12:
+ 0: 65535
-6,13:
- 0: 62094
+ 0: 65535
-6,14:
- 0: 40153
+ 0: 65535
-6,15:
- 0: 56540
- -6,16:
- 0: 63708
+ 0: 65535
+ -5,12:
+ 0: 65535
-5,13:
- 0: 63487
+ 0: 65535
-5,14:
0: 65535
-5,15:
0: 65535
- -5,16:
+ -4,12:
0: 65535
-4,13:
- 0: 2187
+ 0: 65535
-4,14:
- 0: 53247
+ 0: 65535
-4,15:
- 0: 4369
- 1: 35008
- -4,16:
- 0: 64529
- 1: 12
+ 0: 13247
+ -3,12:
+ 0: 65535
-3,13:
-<<<<<<< HEAD
0: 63359
10: 128
11: 2048
-=======
- 0: 4095
->>>>>>> master
-3,14:
- 0: 32767
+ 0: 65535
-3,15:
- 0: 4352
- 1: 8800
- -3,16:
- 1: 6
- 0: 63232
+ 0: 13180
+ -2,12:
+ 0: 65535
+ -2,13:
+ 0: 65535
-2,14:
- 0: 61439
+ 0: 65535
-2,15:
0: 65535
- -2,13:
- 0: 3822
- -2,16:
- 0: 65279
+ -1,12:
+ 0: 65535
-1,13:
- 0: 35768
+ 0: 65535
-1,14:
- 0: 16383
+ 0: 65535
-1,15:
- 0: 30711
- -1,16:
- 0: 62327
+ 0: 65535
0,12:
- 0: 65423
+ 0: 65535
0,13:
- 0: 4095
+ 0: 65535
0,14:
- 0: 20479
+ 0: 65535
0,15:
0: 65535
- 0,16:
- 0: 61695
1,12:
- 0: 24014
+ 0: 65535
1,13:
-<<<<<<< HEAD
0: 65519
2: 16
-=======
- 0: 19933
->>>>>>> master
1,14:
- 0: 43774
+ 0: 65535
1,15:
- 0: 60939
- 1,11:
- 0: 61695
- 1,16:
- 0: 62703
- 2,14:
- 0: 26239
+ 0: 65535
2,12:
- 0: 61166
+ 0: 65535
2,13:
- 0: 20206
+ 0: 65535
+ 2,14:
+ 0: 65535
2,15:
- 0: 26342
- 2,16:
- 0: 56334
+ 0: 65535
3,12:
- 0: 49147
+ 0: 65535
3,13:
- 0: 3071
+ 0: 65535
3,14:
- 0: 65295
+ 0: 65535
3,15:
- 0: 4095
- 3,16:
- 0: 64967
- 3,11:
- 0: 36606
- 4,12:
0: 65535
- 4,13:
- 0: 12287
- 4,14:
- 0: 65327
- 4,15:
+ -8,16:
+ 0: 65535
+ -8,19:
+ 0: 65535
+ -8,17:
0: 65535
-8,18:
- 0: 61166
- -8,20:
- 0: 61439
+ 0: 65535
+ -7,16:
+ 0: 65535
-7,17:
- 0: 255
- 1: 32768
- -7,19:
- 0: 4208
+ 0: 40959
-7,18:
- 1: 1612
- -7,20:
- 0: 273
+ 0: 5981
+ -7,19:
+ 0: 14199
+ -6,16:
+ 0: 65535
-6,17:
- 0: 255
- -6,18:
- 1: 15
+ 0: 4095
+ -5,16:
+ 0: 65535
-5,17:
- 0: 255
- 1: 32768
- -5,18:
- 1: 15
+ 0: 36863
+ -4,16:
+ 0: 65531
-4,17:
- 0: 35071
- -4,18:
- 1: 785
- 0: 34952
+ 0: 53247
-4,19:
- 0: 51448
- -4,20:
- 0: 36044
+ 0: 61439
+ -3,16:
+ 0: 65479
-3,17:
- 0: 13311
+ 0: 32767
-3,18:
- 0: 13107
- 1: 2048
+ 0: 32631
-3,19:
- 0: 29683
- -3,20:
- 0: 14199
- -2,17:
- 0: 255
- 1: 8192
+ 0: 65535
+ -2,16:
+ 0: 65535
+ -2,17:
+ 0: 12287
-2,18:
- 1: 287
+ 0: 287
-2,19:
- 0: 16
+ 0: 273
+ -1,16:
+ 0: 65535
-1,17:
- 0: 255
+ 0: 4095
-1,18:
- 1: 15
+ 0: 15
+ 0,16:
+ 0: 65535
0,17:
- 0: 255
- 1: 8192
- 0,18:
- 1: 3143
+ 0: 12287
0,19:
- 0: 192
+ 0: 36044
+ 1,16:
+ 0: 65535
1,17:
- 0: 61183
- 1,19:
- 0: 65278
+ 0: 65535
1,18:
- 0: 61166
- 1,20:
- 0: 61439
+ 0: 65535
+ 1,19:
+ 0: 65535
+ 2,16:
+ 0: 65535
2,17:
- 0: 3295
+ 0: 65535
2,18:
- 0: 64774
+ 0: 65535
2,19:
- 0: 56799
- 2,20:
- 0: 19933
+ 0: 65535
+ 3,16:
+ 0: 65535
3,17:
- 0: 52701
+ 0: 65535
3,18:
- 0: 4383
- 1: 17408
+ 0: 30719
3,19:
- 0: 57297
- 3,20:
- 0: 273
- 1: 1088
- 4,16:
- 0: 61408
- 4,17:
- 0: 65512
- 4,19:
- 0: 4880
+ 0: 65535
+ 4,20:
+ 0: 12291
4,21:
- 0: 28672
- 1: 34944
- 3,21:
- 0: 65024
- 3,22:
- 0: 14
- 1: 60928
+ 0: 65527
4,22:
- 1: 7080
- 5,21:
- 1: 62960
- 5,22:
- 1: 61727
- 0: 3072
- 4,23:
- 1: 34952
- 5,23:
- 1: 61441
- 0: 3596
- 4,24:
- 1: 2184
- 5,24:
- 0: 3086
- 1: 61696
- 6,21:
- 1: 64240
- 6,22:
- 1: 63647
- 0: 1792
- 6,23:
- 0: 775
- 1: 64664
- 6,24:
- 0: 1795
- 1: 63644
- 7,21:
- 1: 65136
- 7,22:
- 1: 62335
- 0: 3072
- 7,23:
- 1: 63283
- 0: 2060
- 7,24:
- 1: 62263
- 0: 3080
- 8,22:
- 1: 61471
- 0: 1792
- 8,23:
- 0: 3847
- 1: 61456
+ 0: 7103
+ -4,20:
+ 0: 65262
-4,21:
- 0: 34959
- -4,22:
- 0: 52428
- -4,23:
- 0: 34956
+ 0: 60671
+ -3,20:
+ 0: 65535
-3,21:
- 0: 13119
+ 0: 63487
-3,22:
- 0: 30583
+ 0: 65535
-3,23:
- 0: 13111
- -4,24:
- 0: 2056
- -3,24:
- 0: 4883
+ 0: 30719
+ -2,20:
+ 0: 4096
-2,21:
- 0: 1
+ 0: 17
+ -3,24:
+ 0: 30583
+ 0,20:
+ 0: 51336
0,21:
- 0: 12
+ 0: 204
+ 1,20:
+ 0: 65535
1,21:
- 0: 58607
+ 0: 65535
1,22:
- 0: 12014
+ 0: 65535
1,23:
- 0: 34
+ 0: 119
+ 2,20:
+ 0: 65535
2,21:
- 0: 61166
+ 0: 65535
2,22:
- 0: 20046
- 2,23:
- 1: 110
- 3,23:
- 1: 119
+ 0: 65535
+ 3,20:
+ 0: 63359
+ 3,21:
+ 0: 65531
+ 3,22:
+ 0: 65535
+ 4,16:
+ 0: 65535
+ 4,17:
+ 0: 65535
4,18:
- 0: 14
+ 0: 255
+ 4,19:
+ 0: 13107
5,16:
- 0: 65520
+ 0: 65535
5,17:
- 0: 65526
+ 0: 65535
5,18:
- 0: 15
- 5,15:
- 0: 13107
- 1: 34952
+ 0: 255
6,16:
- 0: 61408
- 6,15:
- 1: 61440
- 0: 238
+ 0: 65535
6,17:
- 1: 26336
+ 0: 30719
6,18:
- 1: 110
- 7,17:
- 1: 17526
- 7,18:
- 1: 7
- 7,15:
- 1: 61440
- 0: 187
+ 0: 95
7,16:
- 1: 9838
- 8,16:
- 1: 1
+ 0: 14207
+ 7,17:
+ 0: 17527
+ -8,20:
+ 0: 65535
-8,21:
- 0: 61167
- -9,21:
- 0: 12
+ 0: 65535
-8,22:
0: 65535
-8,23:
- 0: 61167
- -8,24:
- 0: 20046
+ 0: 65535
+ -7,20:
+ 0: 29491
-7,21:
- 0: 7
+ 0: 12663
-7,22:
- 0: 4369
+ 0: 13107
-7,23:
- 0: 1
+ 0: 4403
+ -8,24:
+ 0: 65535
+ -7,24:
+ 0: 4369
0,-20:
- 0: 30583
- 0,-21:
- 0: 30533
- -1,-20:
0: 65535
0,-19:
- 0: 30719
- -1,-19:
- 0: 47615
+ 0: 65535
0,-18:
- 0: 30583
- -1,-18:
- 0: 65531
+ 0: 65535
+ 0,-17:
+ 0: 65535
1,-20:
- 0: 63271
+ 0: 65535
1,-19:
- 0: 10231
+ 0: 65535
1,-18:
- 0: 30583
- 1,-21:
- 0: 30547
- 1: 4
- 2,-20:
- 0: 30471
- 2,-19:
- 0: 1904
- 2,-18:
- 1: 23921
- 2,-21:
- 0: 30560
- 3,-20:
- 1: 1
- 3,-18:
- 1: 4352
- 3,-21:
- 1: 14134
+ 0: 65535
-4,-20:
- 0: 20479
- -4,-21:
- 0: 65280
- 1: 12
- -5,-20:
- 0: 2701
- -4,-19:
0: 65535
- -5,-19:
+ -4,-19:
0: 65535
-4,-18:
0: 65535
- -5,-18:
+ -4,-17:
0: 65535
-3,-20:
- 0: 61354
+ 0: 65535
-3,-19:
- 0: 61166
+ 0: 65535
-3,-18:
- 0: 61166
- -3,-21:
- 0: 43552
- 1: 15
+ 0: 65535
+ -3,-17:
+ 0: 65535
-2,-20:
0: 65535
-2,-19:
- 0: 55807
+ 0: 65535
-2,-18:
- 0: 65533
+ 0: 65535
+ -2,-17:
+ 0: 65535
+ -1,-20:
+ 0: 65535
+ -1,-19:
+ 0: 65535
+ -1,-18:
+ 0: 65535
+ -1,-17:
+ 0: 65535
+ -4,-21:
+ 0: 65532
+ -3,-21:
+ 0: 65535
-2,-21:
- 0: 65348
- 1: 1
+ 0: 65535
-1,-21:
- 0: 65309
- -4,-22:
- 1: 61440
- -5,-22:
- 1: 61440
- -5,-21:
- 0: 64768
- 1: 15
- -2,-22:
- 0: 17472
- -1,-22:
- 0: 4368
- 1: 2240
- 0,-22:
- 1: 16
- 0: 17472
- 1,-22:
- 0: 13072
- 1: 49152
- 2,-22:
- 1: 61440
- 3,-22:
- 1: 28928
+ 0: 65535
+ 0,-21:
+ 0: 65535
+ 1,-21:
+ 0: 65535
-8,-20:
0: 65535
- -9,-20:
- 0: 65527
-8,-19:
- 0: 65407
- -9,-19:
0: 65535
-8,-18:
- 0: 2032
- -9,-18:
- 0: 4088
- -7,-18:
- 0: 47926
+ 0: 65535
+ -8,-17:
+ 0: 65535
-7,-20:
- 0: 25696
+ 0: 65535
-7,-19:
- 0: 26214
- -7,-21:
- 1: 25676
+ 0: 65535
+ -7,-18:
+ 0: 65535
+ -7,-17:
+ 0: 65535
-6,-20:
- 0: 2831
+ 0: 65535
-6,-19:
- 0: 48059
+ 0: 65535
-6,-18:
- 0: 48043
+ 0: 65535
+ -6,-17:
+ 0: 65535
+ -5,-20:
+ 0: 65535
+ -5,-19:
+ 0: 65535
+ -5,-18:
+ 0: 65535
+ -5,-17:
+ 0: 65535
+ -8,-21:
+ 0: 65520
+ -7,-21:
+ 0: 64989
-6,-21:
- 0: 65280
- 1: 15
- -7,-22:
- 1: 32768
- -6,-22:
- 1: 61440
- -12,-20:
- 1: 31985
- -12,-21:
- 0: 28784
- 1: 3841
- -13,-20:
- 1: 13297
+ 0: 65535
+ -5,-21:
+ 0: 65535
-12,-19:
- 1: 28945
- 0: 224
- -13,-19:
- 1: 65535
- -12,-18:
- 1: 273
- 0: 16384
- -13,-18:
- 1: 24490
- -12,-17:
- 0: 76
+ 0: 65535
+ -12,-20:
+ 0: 64753
-11,-20:
- 1: 17
+ 0: 65501
-11,-19:
- 0: 2039
- -11,-21:
- 1: 4914
+ 0: 65535
-11,-18:
- 0: 2052
+ 0: 61423
+ -11,-17:
+ 0: 65535
-10,-20:
- 0: 47288
+ 0: 65535
-10,-19:
- 0: 47675
+ 0: 65535
-10,-18:
- 0: 1763
- -12,-24:
- 1: 61440
- -12,-23:
- 1: 3841
- 0: 28784
- -13,-24:
- 1: 54359
- 0: 256
- -13,-23:
- 0: 49344
- 1: 16145
- -12,-22:
- 1: 3841
- 0: 61680
- -13,-22:
- 0: 32896
- 1: 32627
- -13,-21:
- 0: 49344
- 1: 7987
- -11,-24:
- 1: 4096
- -11,-23:
- 1: 12561
- -11,-22:
- 1: 8994
+ 0: 65535
+ -10,-17:
+ 0: 65535
+ -9,-20:
+ 0: 65535
+ -9,-19:
+ 0: 65535
+ -9,-18:
+ 0: 65535
+ -9,-17:
+ 0: 65535
+ -10,-21:
+ 0: 65495
-9,-21:
- 0: 512
+ 0: 65520
+ 4,8:
+ 0: 65535
4,9:
0: 65535
- 3,9:
- 0: 61167
4,10:
0: 65535
- 3,10:
- 0: 65262
4,11:
0: 65535
+ 5,8:
+ 0: 65535
5,9:
- 0: 14207
+ 0: 65535
5,10:
0: 65535
5,11:
0: 65535
- 5,12:
+ 6,8:
0: 65535
6,9:
- 0: 4095
+ 0: 65535
6,10:
- 0: 48059
+ 0: 65535
6,11:
- 0: 13115
- 1: 2048
- 6,12:
+ 0: 65535
+ 7,8:
0: 65535
7,9:
- 0: 4915
- 1: 34952
- 7,10:
- 0: 13107
- 1: 34952
+ 0: 65535
7,11:
- 0: 3
- 1: 3976
- 7,12:
0: 65535
- 8,8:
- 0: 61071
- 8,11:
- 1: 3855
+ 0,8:
+ 0: 65535
+ 0,9:
+ 0: 65535
+ 0,10:
+ 0: 65535
+ 0,11:
+ 0: 65535
+ 1,8:
+ 0: 65535
1,9:
- 0: 62207
+ 0: 65535
1,10:
0: 65535
+ 1,11:
+ 0: 65535
+ 2,8:
+ 0: 65535
2,9:
- 0: 58623
+ 0: 65535
2,10:
- 0: 61006
+ 0: 65535
2,11:
- 0: 3822
+ 0: 65535
+ 3,8:
+ 0: 65535
+ 3,9:
+ 0: 65535
+ 3,10:
+ 0: 65535
+ 3,11:
+ 0: 65535
+ 4,12:
+ 0: 65535
+ 4,13:
+ 0: 65535
+ 4,14:
+ 0: 65535
+ 4,15:
+ 0: 65535
+ 5,12:
+ 0: 65535
5,13:
- 0: 4095
+ 0: 65535
5,14:
- 0: 13199
- 1: 32768
+ 0: 65535
+ 5,15:
+ 0: 65535
+ 6,12:
+ 0: 65535
6,13:
- 0: 831
- 1: 2048
+ 0: 65535
6,14:
- 0: 61055
+ 0: 65535
+ 6,15:
+ 0: 65535
+ 7,12:
+ 0: 65535
7,13:
- 0: 15
- 1: 3840
+ 0: 65535
7,14:
0: 65535
- 8,12:
- 0: 65021
+ 7,15:
+ 0: 65535
+ 8,8:
+ 0: 65535
+ 8,9:
+ 0: 65535
8,13:
- 0: 13
- 1: 3840
+ 0: 8191
8,14:
- 0: 4096
- 1: 9826
+ 0: 14195
8,15:
- 1: 13830
- 8,9:
- 0: 20206
- 8,10:
- 0: 1766
- 9,8:
- 0: 4353
- 9,9:
- 0: 305
- 9,10:
- 1: 30583
- 9,11:
- 1: 3847
- 9,7:
- 0: 8141
- 9,12:
- 0: 63479
- 9,13:
- 0: 7
- 1: 3840
+ 0: 14103
+ 8,-4:
+ 0: 65535
+ 8,-3:
+ 0: 65535
8,-2:
- 0: 58094
+ 0: 65535
8,-1:
- 0: 60942
+ 0: 65535
+ 9,-4:
+ 0: 65535
9,-3:
0: 65535
9,-2:
- 0: 61663
+ 0: 65535
9,-1:
- 0: 45847
- 9,0:
- 0: 33723
+ 0: 65535
+ 10,-4:
+ 0: 65535
10,-3:
- 0: 14199
+ 0: 65535
10,-2:
- 0: 61631
+ 0: 65535
10,-1:
- 0: 45280
- 10,0:
- 0: 61883
+ 0: 65535
+ 11,-4:
+ 0: 65535
11,-3:
- 0: 54783
+ 0: 65535
11,-2:
- 0: 55807
+ 0: 65535
11,-1:
- 0: 55500
- 11,0:
- 0: 64735
- 12,-4:
- 0: 3003
- 12,-3:
- 0: 45311
- 12,-2:
- 0: 53439
- 12,-1:
- 0: 61661
+ 0: 65535
+ 12,-8:
+ 0: 65535
+ 12,-7:
+ 0: 65535
+ 12,-6:
+ 0: 65535
+ 12,-5:
+ 0: 65535
13,-8:
- 0: 64433
+ 0: 65535
13,-7:
- 0: 48011
+ 0: 65535
13,-6:
- 0: 63931
+ 0: 65535
13,-5:
- 0: 47611
- 13,-9:
- 0: 20718
- 13,-4:
- 0: 35771
+ 0: 65535
14,-8:
- 0: 65520
+ 0: 65535
14,-7:
0: 65535
14,-6:
0: 65535
14,-5:
0: 65535
- 14,-9:
- 1: 63488
- 0: 1
- 14,-4:
- 0: 65535
15,-8:
- 0: 65520
+ 0: 65535
15,-7:
0: 65535
15,-6:
0: 65535
15,-5:
0: 65535
- 15,-9:
- 1: 61440
- 15,-4:
+ 12,-4:
+ 0: 65535
+ 12,-3:
+ 0: 65535
+ 12,-2:
+ 0: 65535
+ 12,-1:
+ 0: 65535
+ 13,-4:
0: 65535
- 16,-8:
- 0: 13104
- 1: 34952
- 16,-6:
- 0: 36744
- 16,-5:
- 0: 35064
- 12,0:
- 0: 53759
13,-3:
- 0: 11003
+ 0: 65535
13,-2:
- 0: 45090
- 1: 136
+ 0: 65407
13,-1:
- 0: 61883
- 13,0:
- 0: 61695
+ 0: 65535
+ 14,-4:
+ 0: 65535
14,-3:
- 0: 4095
+ 0: 65535
14,-2:
- 1: 127
- 0: 28672
+ 0: 65442
14,-1:
- 0: 62071
- 14,0:
- 0: 57599
+ 0: 65535
+ 15,-4:
+ 0: 65535
15,-3:
- 0: 4095
+ 0: 65535
15,-2:
- 0: 65280
+ 0: 65520
15,-1:
- 0: 62207
- 15,0:
- 0: 57599
- 16,-3:
- 0: 819
- 1: 34952
- 16,-1:
- 0: 62055
+ 0: 65535
16,-4:
- 1: 1026
- 0: 8
+ 0: 62943
+ 16,-3:
+ 0: 30591
16,-2:
- 1: 236
- 0: 24576
- 16,0:
- 0: 57599
+ 0: 65364
+ 16,-1:
+ 0: 65535
17,-4:
- 0: 15
- 1: 512
- 17,-3:
- 1: 34959
+ 0: 62207
17,-2:
- 1: 248
- 0: 61440
+ 0: 65416
17,-1:
- 0: 62207
- 17,-5:
0: 65535
- 17,0:
- 0: 28926
18,-4:
- 0: 15
- 1: 2304
- 18,-3:
- 1: 49167
- 18,-2:
- 1: 254
- 0: 24576
+ 0: 63999
18,-1:
- 0: 28783
- 18,-5:
0: 65535
- 18,0:
- 0: 30711
+ 18,-2:
+ 0: 65280
+ 18,-3:
+ 0: 15
+ 19,-4:
+ 0: 64735
19,-3:
- 1: 65359
+ 0: 17487
19,-2:
- 1: 1023
- 0: 32768
+ 0: 61252
19,-1:
- 0: 3003
- 19,-4:
- 1: 34954
- 19,0:
- 0: 20479
- 19,-5:
- 1: 32768
- 0: 248
- 20,-4:
- 1: 13115
- 20,-3:
- 1: 65450
- 20,-2:
- 1: 255
- 0: 45056
- 20,-1:
- 0: 11195
- 16,-9:
- 1: 61440
+ 0: 65534
+ 16,-8:
+ 0: 65535
16,-7:
- 1: 8256
- 0: 32768
- 17,-8:
- 1: 61440
+ 0: 64863
+ 16,-6:
+ 0: 65533
+ 16,-5:
+ 0: 57343
17,-7:
- 0: 61440
- 1: 32
+ 0: 65327
17,-6:
0: 65535
- 18,-8:
- 1: 61440
+ 17,-5:
+ 0: 65535
18,-7:
- 0: 61440
- 1: 144
+ 0: 65439
18,-6:
0: 65535
- 19,-8:
- 1: 61440
- 19,-6:
- 0: 36608
- 1: 8
+ 18,-5:
+ 0: 65535
19,-7:
- 1: 43144
- 20,-7:
- 1: 33040
+ 0: 64975
+ 19,-6:
+ 0: 65533
+ 19,-5:
+ 0: 57343
20,-6:
- 1: 1
- 0: 16128
+ 0: 65525
20,-5:
- 0: 243
- 1: 12288
- 21,-6:
- 0: 61422
- 21,-5:
- 0: 61182
- 21,-7:
- 0: 57344
- 1: 32
- 21,-4:
- 0: 14
- 1: 512
- 22,-7:
- 0: 61440
- 1: 144
- 22,-6:
+ 0: 32767
+ 12,-12:
0: 65535
- 22,-5:
+ 12,-11:
+ 0: 65535
+ 12,-10:
+ 0: 65535
+ 12,-9:
0: 65535
- 22,-4:
- 0: 15
- 1: 2304
- 23,-7:
- 0: 12288
- 1: 32832
- 23,-6:
- 0: 13107
- 1: 2048
- 23,-5:
- 0: 13107
- 1: 128
- 23,-4:
- 0: 3
- 1: 1032
- 12,-13:
- 0: 20206
13,-12:
- 0: 7421
+ 0: 65535
13,-11:
- 0: 61919
+ 0: 65535
13,-10:
- 0: 61120
+ 0: 65535
+ 13,-9:
+ 0: 32767
14,-12:
- 0: 497
+ 0: 16383
14,-11:
- 0: 56337
+ 0: 65523
14,-10:
- 0: 24
- 14,-13:
- 1: 34956
- 15,-12:
- 1: 49
- 15,-11:
- 0: 65280
- 15,-10:
- 0: 141
- 15,-13:
- 1: 4096
- 16,-11:
- 0: 62208
- 16,-10:
- 0: 19
+ 0: 13311
+ 14,-9:
+ 0: 40755
+ 12,-15:
+ 0: 65493
12,-14:
- 0: 61166
- 13,-16:
- 1: 61440
+ 0: 65535
+ 12,-13:
+ 0: 65535
13,-15:
- 1: 3956
+ 0: 65396
13,-14:
- 0: 13107
+ 0: 65535
13,-13:
- 0: 2867
- 14,-16:
- 1: 12288
- 14,-15:
- 1: 29457
- 14,-14:
- 1: 25685
+ 0: 65535
+ 14,-13:
+ 0: 65535
+ 8,0:
+ 0: 65535
+ 8,1:
+ 0: 65535
+ 8,2:
+ 0: 65535
+ 8,3:
+ 0: 17663
+ 9,0:
+ 0: 65535
9,1:
- 0: 40895
+ 0: 65535
9,2:
- 0: 45503
+ 0: 65535
9,3:
- 0: 139
- 1: 32768
+ 0: 24063
+ 10,0:
+ 0: 65535
10,1:
- 0: 46079
+ 0: 65535
10,2:
- 0: 45499
+ 0: 65535
10,3:
- 0: 187
- 1: 32768
+ 0: 36863
+ 11,0:
+ 0: 65535
11,1:
- 0: 56575
+ 0: 65535
11,2:
- 0: 56543
+ 0: 65535
11,3:
- 0: 59615
- 11,4:
- 0: 61166
+ 0: 65535
+ 12,0:
+ 0: 65535
12,1:
- 0: 56799
+ 0: 65535
12,2:
- 0: 53727
+ 0: 65535
12,3:
- 0: 55519
- 12,4:
- 0: 56799
+ 0: 65535
+ 13,0:
+ 0: 65535
13,1:
0: 65535
13,2:
- 0: 62207
+ 0: 65535
13,3:
- 0: 28927
- 13,4:
- 0: 30711
+ 0: 65535
+ 14,0:
+ 0: 65535
+ 14,1:
+ 0: 65535
14,2:
- 0: 61678
+ 0: 65535
14,3:
- 0: 61695
- 14,1:
- 0: 61166
- 14,4:
+ 0: 65535
+ 15,0:
0: 65535
15,1:
- 0: 61183
+ 0: 65535
15,2:
- 0: 53486
+ 0: 65535
15,3:
- 0: 61661
- 15,4:
+ 0: 65535
+ 16,0:
0: 65535
16,1:
- 0: 61183
+ 0: 65535
16,2:
- 0: 28910
+ 0: 65535
16,3:
- 0: 28791
+ 0: 65535
+ 17,0:
+ 0: 65535
+ 17,1:
+ 0: 65535
+ 17,2:
+ 0: 65535
+ 17,3:
+ 0: 65535
+ 18,0:
+ 0: 65535
+ 18,1:
+ 0: 65535
+ 18,2:
+ 0: 65535
+ 18,3:
+ 0: 65535
+ 19,0:
+ 0: 65535
+ 19,1:
+ 0: 65535
+ 19,2:
+ 0: 65535
+ 19,3:
+ 0: 11838
8,4:
- 0: 52224
+ 0: 61172
+ 8,5:
+ 0: 65262
+ 8,6:
+ 0: 65394
9,4:
- 0: 56704
+ 0: 65533
9,5:
- 0: 36319
+ 0: 65535
9,6:
- 0: 4096
- 1: 2210
+ 0: 64430
10,4:
- 0: 65520
+ 0: 65535
10,5:
0: 65535
- 10,7:
- 0: 4095
10,6:
- 1: 1088
+ 0: 62543
+ 11,4:
+ 0: 65535
11,5:
- 0: 61167
+ 0: 65535
11,6:
- 0: 14
- 1: 58624
- 11,7:
- 1: 27716
+ 0: 62975
+ 12,4:
+ 0: 65535
12,5:
- 0: 65504
- 12,6:
- 0: 61166
- 12,7:
- 0: 61166
- 12,8:
- 0: 14
+ 0: 65535
+ 13,4:
+ 0: 65535
13,5:
- 0: 65521
- 13,6:
0: 65535
- 13,7:
+ 14,4:
0: 65535
- 13,8:
- 0: 15
14,5:
- 0: 65522
- 14,6:
0: 65535
- 14,7:
+ 15,4:
0: 65535
- 14,8:
- 0: 15
- 15,6:
- 0: 61182
15,5:
- 0: 3808
- 15,7:
- 0: 3822
+ 0: 65535
16,4:
- 0: 30583
- 16,5:
- 0: 4064
- 16,6:
0: 65535
- 16,7:
- 0: 4095
- 16,8:
- 1: 244
17,4:
- 0: 32519
+ 0: 65535
17,5:
- 0: 26480
- 17,6:
- 0: 7414
- 17,7:
- 0: 273
- 1: 19660
- 17,3:
- 0: 30711
+ 0: 65535
18,4:
- 0: 30583
+ 0: 65535
18,5:
- 0: 65522
- 18,6:
- 0: 51672
- 18,7:
- 1: 8465
- 0: 204
- 18,3:
- 0: 30583
- 18,8:
- 1: 242
+ 0: 65535
19,4:
- 1: 13027
+ 0: 13027
19,5:
- 0: 30576
+ 0: 65535
19,6:
- 0: 4112
- 1: 49152
- 19,7:
- 0: 17
- 1: 44032
- 19,3:
- 1: 11838
- 19,8:
- 1: 250
+ 0: 62271
20,4:
- 1: 8754
+ 0: 8754
20,5:
- 1: 8739
+ 0: 8739
20,6:
- 1: 4899
- 20,7:
- 1: 273
+ 0: 4899
+ 22,4:
+ 0: 52428
+ 22,5:
+ 0: 52428
+ 23,4:
+ 0: 63351
20,0:
- 0: 4095
- 21,-3:
- 1: 65296
+ 0: 65535
+ 20,1:
+ 0: 65535
+ 20,2:
+ 0: 65535
+ 20,3:
+ 0: 65535
+ 21,0:
+ 0: 65535
+ 21,1:
+ 0: 65535
+ 21,2:
+ 0: 65535
+ 21,3:
+ 0: 65535
+ 22,1:
+ 0: 65535
+ 22,2:
+ 0: 65535
+ 22,3:
+ 0: 65535
+ 23,1:
+ 0: 29491
+ 23,2:
+ 0: 65527
+ 23,3:
+ 0: 63351
+ 24,2:
+ 0: 64240
+ 24,3:
+ 0: 28672
+ 25,2:
+ 0: 12848
+ 20,-3:
+ 0: 58026
+ 20,-2:
+ 0: 65314
+ 20,-1:
+ 0: 65535
21,-2:
- 1: 255
- 0: 45056
+ 0: 61853
21,-1:
- 0: 11195
- 21,0:
- 0: 32767
- 22,-3:
- 1: 65280
- 22,-2:
- 1: 255
- 0: 45056
- 22,-1:
- 0: 43963
+ 0: 65535
22,0:
- 0: 36863
- 23,-3:
- 1: 62208
- 23,-2:
- 1: 255
- 0: 61440
- 23,-1:
0: 65535
23,0:
- 0: 65535
- 24,-3:
- 1: 28672
+ 0: 13107
+ 22,-1:
+ 0: 13299
+ 22,-2:
+ 0: 63760
+ 23,-2:
+ 0: 65280
+ 23,-1:
+ 0: 50
24,-2:
- 1: 3839
+ 0: 61696
24,-1:
- 0: 2200
- 2: 546
- 8,24:
- 0: 1807
- 1: 61456
+ 0: 8
+ 25,-2:
+ 0: 61440
+ 25,-1:
+ 0: 5
+ 7,4:
+ 0: 26599
+ 7,5:
+ 0: 58983
+ 4,23:
+ 0: 34952
+ 5,21:
+ 0: 62960
+ 5,22:
+ 0: 64799
+ 5,23:
+ 0: 65037
+ 6,21:
+ 0: 64240
+ 6,22:
+ 0: 65439
+ 6,23:
+ 0: 65439
+ 7,21:
+ 0: 65136
+ 7,22:
+ 0: 65407
+ 7,23:
+ 0: 65343
+ 2,23:
+ 0: 110
+ 3,23:
+ 0: 119
+ 7,18:
+ 0: 7
+ 7,10:
+ 0: 65535
+ 8,10:
+ 0: 65535
+ 9,8:
+ 0: 13107
+ 9,9:
+ 0: 13107
+ 8,7:
+ 0: 65535
+ 9,7:
+ 0: 65535
+ 10,7:
+ 0: 65535
+ 11,7:
+ 0: 32085
+ 12,6:
+ 0: 65535
+ 12,7:
+ 0: 4095
+ 13,6:
+ 0: 65535
+ 13,7:
+ 0: 4095
+ 14,6:
+ 0: 65535
+ 14,7:
+ 0: 4095
+ 15,6:
+ 0: 65535
+ 15,7:
+ 0: 65535
+ 16,6:
+ 0: 65535
+ 16,7:
+ 0: 65535
+ 8,22:
+ 0: 63263
+ 8,23:
+ 0: 65303
9,22:
- 1: 4369
+ 0: 4369
9,23:
- 1: 12835
- 9,24:
- 1: 4898
+ 0: 12835
+ 4,24:
+ 0: 2184
+ 5,24:
+ 0: 64782
5,25:
- 1: 3857
- 0: 12
+ 0: 3869
+ 6,24:
+ 0: 65439
6,25:
- 0: 7
- 1: 51032
+ 0: 51039
6,26:
- 1: 196
+ 0: 196
+ 7,24:
+ 0: 65343
7,25:
- 1: 27987
- 0: 4108
+ 0: 32095
7,26:
- 1: 117
+ 0: 117
+ 8,24:
+ 0: 63263
8,25:
- 0: 7
- 1: 3856
+ 0: 3863
+ 9,24:
+ 0: 4898
9,25:
- 1: 273
- 17,1:
+ 0: 273
+ 8,16:
+ 0: 1
+ 0,18:
+ 0: 3143
+ 17,-3:
+ 0: 34959
+ 17,-8:
+ 0: 61440
+ 18,-8:
+ 0: 61440
+ 19,-8:
+ 0: 61440
+ 20,-7:
+ 0: 50524
+ 21,-6:
+ 0: 65535
+ 21,-5:
+ 0: 65535
+ 15,-9:
+ 0: 61440
+ 16,5:
+ 0: 65535
+ 17,6:
+ 0: 65535
+ 17,7:
+ 0: 8191
+ 18,6:
+ 0: 65535
+ 18,7:
+ 0: 12287
+ 19,7:
+ 0: 44851
+ 20,7:
+ 0: 273
+ 22,6:
+ 0: 52428
+ 23,6:
0: 30583
- 17,2:
- 0: 1911
- 18,1:
- 0: 30578
- 18,2:
- 0: 30711
- 19,1:
- 0: 4079
- 19,2:
- 0: 2039
- 20,2:
- 0: 36848
- 17,-11:
- 0: 32494
- 17,-12:
+ 23,5:
+ 0: 63351
+ 20,-4:
+ 0: 63343
+ 21,-3:
+ 0: 28944
+ 24,4:
+ 0: 28672
+ 24,5:
+ 0: 28672
+ 16,-9:
+ 0: 61440
+ 1,-16:
+ 0: 65535
+ 9,-20:
+ 0: 32332
+ 10,-20:
+ 0: 55071
+ 11,-20:
+ 0: 13091
+ 11,-19:
+ 0: 63995
+ 11,-18:
+ 0: 47803
+ 6,-19:
+ 0: 32768
+ 7,-19:
+ 0: 65120
+ 1,-17:
+ 0: 65535
+ -4,-22:
+ 0: 61440
+ -2,-22:
0: 61152
- 17,-13:
- 0: 11783
+ -1,-22:
+ 0: 64496
+ 0,-22:
+ 0: 65264
+ -7,-22:
+ 0: 61440
+ -6,-22:
+ 0: 61440
+ -5,-22:
+ 0: 61440
+ 15,-12:
+ 0: 49
+ 12,-16:
+ 0: 62837
+ 13,-16:
+ 0: 61440
+ 14,-16:
+ 0: 12288
+ 14,-15:
+ 0: 29457
+ 14,-14:
+ 0: 30037
+ 15,-13:
+ 0: 4096
+ 17,-12:
+ 0: 65535
18,-12:
- 0: 65522
- 18,-11:
- 0: 12287
- 18,-10:
- 0: 30583
- 18,-13:
- 0: 30583
- 19,-12:
- 0: 65248
- 19,-11:
- 0: 16622
- 1: 40960
- 19,-13:
- 1: 43690
- 0: 17476
- 19,-10:
- 1: 43690
- 0: 17476
- 19,-9:
- 1: 14
- 20,-12:
- 0: 30576
- 20,-11:
- 0: 20599
- 1: 40960
- 20,-10:
- 0: 21845
- 1: 43690
- 20,-9:
- 1: 15
- 20,-14:
- 1: 44800
- 0: 20480
- 19,-14:
- 1: 44544
- 0: 16384
- 20,-13:
- 0: 21845
- 1: 43690
+ 0: 65535
16,-13:
0: 8
- -15,-20:
- 1: 241
- -15,-21:
- 1: 7952
- 0: 49344
- -14,-20:
- 1: 51441
- -14,-21:
- 0: 28784
- 1: 3977
- -14,-19:
- 1: 52364
- -14,-18:
- 1: 2184
- -16,-23:
- 1: 32768
- -16,-22:
- 1: 34952
- -15,-23:
- 1: 7953
- 0: 49344
- -15,-22:
- 1: 3840
- 0: 57568
- -16,-21:
- 1: 136
- -15,-24:
- 1: 61440
- -14,-24:
- 1: 29772
- -14,-23:
- 0: 28784
- 1: 36609
- -14,-22:
- 0: 12336
- 1: 53193
- -24,-6:
- 1: 3328
+ 17,-14:
0: 32768
- -25,-6:
- 1: 3328
- -24,-5:
- 1: 13
- 0: 65520
- -25,-5:
- 1: 13
- 0: 65520
- -24,-4:
- 0: 65295
- 1: 64
- -23,-6:
- 1: 3328
+ 17,-13:
+ 0: 65535
+ 18,-14:
+ 0: 61440
+ 18,-13:
+ 0: 65535
+ 19,-14:
+ 0: 60928
+ 19,-13:
+ 0: 61166
+ 12,-17:
+ 0: 4096
+ -12,-15:
+ 0: 62532
+ -12,-14:
+ 0: 240
+ -17,-14:
+ 0: 17600
+ -16,-14:
+ 0: 43760
+ -15,-14:
+ 0: 36848
+ -14,-15:
+ 0: 60132
+ -14,-14:
+ 0: 58618
+ -13,-15:
+ 0: 61457
+ -13,-14:
+ 0: 240
+ -12,-16:
+ 0: 31812
+ -20,-11:
+ 0: 7967
+ -20,-10:
+ 0: 7953
+ -19,-12:
+ 0: 2176
+ -18,-13:
+ 0: 60544
+ -14,-16:
+ 0: 17608
+ -13,-16:
+ 0: 61746
+ -20,6:
+ 0: 19526
+ -20,5:
+ 0: 56783
+ -20,7:
+ 0: 19532
+ -20,8:
+ 0: 53068
+ -20,9:
+ 0: 19532
+ -20,10:
+ 0: 19708
+ -20,11:
+ 0: 19532
+ -20,15:
+ 0: 60040
+ -16,17:
+ 0: 15
+ -15,17:
+ 0: 15
+ -14,17:
+ 0: 227
+ -13,17:
+ 0: 249
+ -20,16:
+ 0: 40772
+ -17,17:
+ 0: 9022
+ -17,18:
+ 0: 8995
+ -17,19:
+ 0: 4403
+ -20,20:
+ 0: 18423
+ -18,20:
+ 0: 3967
+ -17,20:
+ 0: 4369
+ -22,17:
+ 0: 34816
+ -22,18:
+ 0: 34952
+ -22,19:
+ 0: 8
+ -21,16:
+ 0: 7936
+ -12,17:
+ 0: 7
+ -6,18:
+ 0: 15
+ -4,18:
+ 0: 53213
+ -8,-22:
+ 0: 61440
+ -12,-18:
+ 0: 52573
+ -12,-17:
+ 0: 63496
+ -12,-24:
+ 0: 61440
+ -12,-23:
+ 0: 32625
+ -12,-22:
+ 0: 65521
+ -12,-21:
+ 0: 32625
+ -11,-24:
0: 4096
+ -11,-23:
+ 0: 12561
+ -11,-22:
+ 0: 8994
+ -11,-21:
+ 0: 40766
+ -10,-22:
+ 0: 49152
+ -9,-22:
+ 0: 61440
+ -21,20:
+ 0: 8159
+ -21,-9:
+ 0: 50368
+ -15,-20:
+ 0: 241
+ -14,-20:
+ 0: 51441
+ -14,-19:
+ 0: 52364
+ -14,-18:
+ 0: 2184
+ -14,-17:
+ 0: 34944
+ -13,-20:
+ 0: 13297
+ -13,-19:
+ 0: 65535
+ -13,-18:
+ 0: 24490
+ -13,-17:
+ 0: 57973
+ -16,-23:
+ 0: 32768
+ -16,-22:
+ 0: 34952
+ -16,-21:
+ 0: 136
+ -15,-24:
+ 0: 61440
+ -15,-23:
+ 0: 57297
+ -15,-22:
+ 0: 61408
+ -15,-21:
+ 0: 57296
+ -14,-24:
+ 0: 29772
+ -14,-23:
+ 0: 65393
+ -14,-22:
+ 0: 65529
+ -14,-21:
+ 0: 32761
+ -13,-24:
+ 0: 54615
+ -13,-23:
+ 0: 65489
+ -13,-22:
+ 0: 65523
+ -13,-21:
+ 0: 57331
+ -23,0:
+ 0: 65535
+ -23,1:
+ 0: 4095
+ -23,2:
+ 0: 54768
+ -23,3:
+ 0: 56829
+ -22,1:
+ 0: 4095
+ -22,3:
+ 0: 65522
+ -22,0:
+ 0: 63479
+ -22,2:
+ 0: 8944
+ -21,1:
+ 0: 20479
+ -21,2:
+ 0: 54648
+ -21,5:
+ 0: 3886
+ -23,-6:
+ 0: 65280
-23,-5:
- 1: 13
- 0: 65520
- -23,-4:
- 0: 65295
- 1: 16
+ 0: 65535
-22,-6:
- 1: 3328
+ 0: 65280
-22,-5:
- 1: 141
- 0: 30576
- -22,-4:
- 0: 13063
- 1: 36064
+ 0: 30719
-21,-6:
- 1: 256
+ 0: 65280
-21,-5:
- 1: 1
- -25,-4:
- 0: 60943
- 1: 4496
- -24,-3:
- 1: 4596
- 0: 60936
- -24,-2:
- 1: 61713
- 0: 3822
- -25,-3:
- 1: 36865
- 0: 26214
- -25,-2:
- 0: 26222
- 1: 144
- -25,-1:
- 0: 3814
- 1: 37137
+ 0: 127
+ -21,-8:
+ 0: 43694
+ -21,-7:
+ 0: 170
+ -23,-4:
+ 0: 65311
-23,-3:
- 1: 50289
- 0: 13056
+ 0: 63313
-23,-2:
- 0: 827
- 1: 29892
- -22,-3:
- 0: 13107
- 1: 3136
+ 0: 22527
+ -23,-1:
+ 0: 40945
-22,-2:
- 0: 13107
- 1: 19468
- 20,1:
+ 0: 32575
+ -22,-1:
+ 0: 61363
+ -22,-4:
+ 0: 49127
+ -22,-3:
+ 0: 16243
+ -21,-4:
+ 0: 65520
+ -21,-3:
+ 0: 65532
+ -21,-2:
+ 0: 65535
+ -21,-1:
+ 0: 32764
+ -5,18:
+ 0: 15
+ -4,22:
0: 61166
- 20,3:
- 0: 3822
- 21,1:
+ 21,-4:
+ 0: 62207
+ 8,11:
+ 0: 65295
+ 9,11:
+ 0: 65287
+ 8,12:
0: 65535
- 21,2:
- 0: 1904
- 21,3:
+ 9,12:
+ 0: 65535
+ 9,10:
+ 0: 30583
+ 2,-16:
+ 0: 65535
+ 3,-16:
+ 0: 65529
+ 4,-16:
+ 0: 63025
+ 5,-16:
+ 0: 64640
+ 2,-20:
+ 0: 65535
+ 2,-19:
+ 0: 65535
+ 2,-18:
+ 0: 17652
+ 2,-17:
+ 0: 65524
+ 3,-19:
+ 0: 8758
+ 3,-18:
+ 0: 4402
+ 3,-17:
+ 0: 55089
+ 3,-20:
+ 0: 30498
+ 2,-21:
+ 0: 65535
+ 3,-21:
+ 0: 30519
+ 1,-22:
+ 0: 62256
+ -24,0:
+ 0: 65535
+ -24,1:
0: 4095
- 22,1:
- 0: 48059
- 22,3:
- 0: 36863
- 22,2:
- 0: 3808
- 23,1:
- 0: 48127
- 23,2:
- 0: 1841
- 1: 2176
- 23,3:
- 0: 15355
- 22,4:
- 0: 34952
- 23,4:
- 0: 13171
- 24,0:
- 0: 13107
- 1: 34952
- 24,1:
- 0: 13107
- 1: 34952
- 24,2:
- 1: 376
- 24,3:
- 0: 1911
- 22,5:
- 0: 35016
- 22,6:
- 0: 2176
- 23,5:
- 0: 13171
- 23,6:
- 0: 4913
- 25,0:
- 1: 65535
- 25,1:
- 1: 30583
- 25,-1:
- 1: 52428
- 0: 273
- 26,0:
- 1: 4369
- 26,-1:
- 1: 4369
- 25,-2:
- 1: 53247
- 25,-3:
- 1: 49152
- 26,-3:
- 1: 4096
- 26,-2:
- 1: 4369
+ -21,0:
+ 0: 64764
+ -24,-6:
+ 0: 65280
+ -24,-5:
+ 0: 65535
+ -24,-4:
+ 0: 65359
+ -24,-3:
+ 0: 65100
+ -24,-2:
+ 0: 20222
+ -24,-1:
+ 0: 20476
-27,-4:
- 1: 16452
- 0: 32768
- -27,-5:
- 1: 16448
+ 0: 52428
-27,-3:
- 1: 16452
- 0: 8
+ 0: 52428
-27,-2:
- 1: 16452
+ 0: 52428
-27,-1:
- 1: 16452
- -27,0:
- 1: 17220
+ 0: 52428
-26,-4:
- 1: 4113
- 0: 61166
+ 0: 65535
-26,-3:
- 1: 4113
- 0: 61166
+ 0: 65535
-26,-2:
- 1: 4113
- 0: 61166
+ 0: 65535
-26,-1:
- 1: 4113
- 0: 61166
- -26,-5:
- 1: 45242
+ 0: 65535
+ -25,-4:
+ 0: 65439
+ -25,-3:
+ 0: 63079
+ -25,-2:
+ 0: 26366
+ -25,-1:
+ 0: 40951
+ -27,0:
+ 0: 53196
-26,0:
- 1: 45233
- 0: 14
+ 0: 65535
+ -26,1:
+ 0: 3822
+ -25,0:
+ 0: 65535
+ -25,1:
+ 0: 4095
+ -27,-5:
+ 0: 52416
+ -26,-5:
+ 0: 65534
+ -26,-6:
+ 0: 60928
+ -25,-6:
+ 0: 65280
+ -25,-5:
+ 0: 65535
+ -4,23:
+ 0: 52462
+ -4,24:
+ 0: 52428
+ -4,25:
+ 0: 17476
+ -8,25:
+ 0: 4369
+ 16,8:
+ 0: 255
+ 15,-11:
+ 0: 65520
+ 15,-10:
+ 0: 255
+ 16,-11:
+ 0: 65520
+ 16,-10:
+ 0: 255
+ 17,-11:
+ 0: 65535
+ 17,-10:
+ 0: 34959
+ 18,-11:
+ 0: 65535
+ 18,-10:
+ 0: 65535
+ 19,-12:
+ 0: 65535
+ 19,-11:
+ 0: 65535
+ 19,-10:
+ 0: 61166
+ -24,2:
+ 0: 61440
+ -24,5:
+ 0: 65295
+ -24,6:
+ 0: 3999
+ -24,7:
+ 0: 240
+ -23,4:
+ 0: 56829
+ -23,5:
+ 0: 65503
+ -23,6:
+ 0: 3919
+ -23,7:
+ 0: 4368
+ -22,4:
+ 0: 21845
+ -22,5:
+ 0: 23895
+ -22,6:
+ 0: 1863
-28,0:
- 1: 3840
- -29,0:
- 1: 19456
+ 0: 3840
-28,3:
- 1: 4352
- -29,3:
- 1: 8004
- -28,4:
- 1: 24863
- -26,1:
- 1: 2570
+ 0: 4352
-26,2:
- 1: 32768
+ 0: 32768
-26,3:
- 1: 34952
- -26,4:
- 1: 15
- -26,-6:
- 1: 2560
- 15,8:
- 1: 224
- 17,8:
- 1: 240
- -29,4:
- 1: 8
- 0: 13104
- -28,5:
+ 0: 34952
+ -25,2:
0: 61440
- 1: 2124
- -29,5:
- 0: 63344
- -29,7:
- 0: 57536
- -28,7:
- 0: 4096
- 1: 128
- -28,8:
- 0: 4113
+ -28,4:
+ 0: 24863
+ -28,5:
+ 0: 65356
-28,6:
- 1: 2056
+ 0: 11855
+ -28,7:
+ 0: 29415
-27,4:
- 1: 15
+ 0: 15
-27,5:
- 1: 3983
- 0: 61440
+ 0: 65423
-27,6:
- 1: 3919
+ 0: 3919
-27,7:
- 1: 240
+ 0: 240
+ -26,4:
+ 0: 15
-26,5:
- 1: 3983
- 0: 61440
+ 0: 65423
-26,6:
- 1: 3919
+ 0: 3919
-26,7:
- 1: 240
- -25,8:
- 1: 34952
+ 0: 240
+ -25,5:
+ 0: 65423
+ -25,6:
+ 0: 3919
+ -25,7:
+ 0: 35056
-32,7:
- 1: 16
- -33,7:
- 1: 2176
+ 0: 36406
-32,4:
- 1: 8320
+ 0: 8320
-32,5:
- 1: 9766
+ 0: 44718
-32,6:
- 1: 34
+ 0: 43754
+ -31,4:
+ 0: 65535
-31,5:
- 0: 63344
+ 0: 65535
-31,6:
- 0: 1911
+ 0: 65535
-31,7:
- 0: 12544
- -31,3:
- 1: 5888
- -31,4:
- 0: 61152
- -31,8:
- 0: 28707
+ 0: 61439
-30,4:
- 0: 65520
+ 0: 65535
-30,5:
- 0: 30581
+ 0: 65535
-30,6:
- 0: 1911
+ 0: 65535
-30,7:
- 0: 30583
- -30,3:
- 1: 24320
- -30,8:
- 0: 30583
+ 0: 65535
+ -29,4:
+ 0: 30591
+ -29,5:
+ 0: 65535
-29,6:
- 0: 1911
- -29,8:
- 0: 61678
+ 0: 65535
+ -29,7:
+ 0: 63359
+ -31,3:
+ 0: 5888
+ -30,3:
+ 0: 24320
+ -29,3:
+ 0: 8004
+ -29,0:
+ 0: 19456
-29,1:
- 1: 17476
+ 0: 17476
-29,2:
- 1: 17476
- -33,8:
- 1: 34816
+ 0: 17476
+ -32,8:
+ 0: 61183
-32,9:
- 1: 257
- 0: 52428
- -33,9:
- 1: 34952
+ 0: 61423
-32,10:
- 1: 4112
- 0: 52428
- -33,10:
- 1: 34952
+ 0: 65278
-32,11:
- 1: 28688
- -33,11:
- 1: 34952
- -32,8:
- 0: 49152
- -32,12:
- 1: 8802
+ 0: 63742
+ -31,8:
+ 0: 65518
-31,9:
- 0: 63351
+ 0: 65535
-31,10:
- 0: 30591
+ 0: 65535
-31,11:
- 0: 61152
- -31,12:
- 0: 3822
+ 0: 65535
+ -30,8:
+ 0: 65535
-30,9:
- 0: 63351
+ 0: 65535
-30,10:
- 0: 30591
+ 0: 65535
-30,11:
- 0: 65520
- -30,12:
- 0: 4095
+ 0: 65535
+ -29,8:
+ 0: 65331
-29,9:
0: 65535
-29,10:
0: 65535
-29,11:
- 0: 13104
+ 0: 65535
+ -32,12:
+ 0: 43754
+ -31,12:
+ 0: 65535
+ -30,12:
+ 0: 65535
-29,12:
- 0: 819
+ 0: 65535
+ -28,8:
+ 0: 30583
-28,9:
- 0: 4369
+ 0: 48063
-28,10:
- 0: 4369
+ 0: 49087
-28,11:
- 0: 1104
- -32,13:
- 1: 3750
- -31,13:
- 1: 3840
- -30,13:
- 1: 256
+ 0: 65407
-27,9:
- 1: 15
- -27,10:
- 1: 240
+ 0: 15
-26,9:
- 1: 15
- -26,10:
- 1: 240
+ 0: 15
-25,9:
- 1: 34959
+ 0: 34959
-25,10:
- 1: 248
- -24,8:
- 1: 3840
+ 0: 248
+ -33,8:
+ 0: 34952
+ -33,9:
+ 0: 34952
+ -33,10:
+ 0: 34952
+ -33,11:
+ 0: 34952
+ -33,7:
+ 0: 34944
-24,10:
- 1: 240
+ 0: 240
+ -23,8:
+ 0: 3857
-23,10:
- 1: 240
+ 0: 240
-22,8:
- 1: 3840
+ 0: 3840
-22,10:
- 1: 240
+ 0: 240
+ -21,8:
+ 0: 3840
+ -21,10:
+ 0: 240
+ -32,13:
+ 0: 3758
+ -31,13:
+ 0: 3855
+ -30,13:
+ 0: 3887
+ -29,13:
+ 0: 3983
+ -27,10:
+ 0: 240
+ -26,10:
+ 0: 240
+ -25,8:
+ 0: 34952
+ -28,13:
+ 0: 803
+ -28,12:
+ 0: 8738
+ -24,8:
+ 0: 3840
+ 21,-7:
+ 0: 65327
+ 22,-7:
+ 0: 65439
+ 22,-6:
+ 0: 65535
+ 22,-5:
+ 0: 65535
+ 23,-7:
+ 0: 63311
+ 23,-6:
+ 0: 32631
+ 23,-5:
+ 0: 30711
+ 22,-4:
+ 0: 63999
+ 23,-4:
+ 0: 62591
+ 24,-4:
+ 0: 4369
+ 24,-7:
+ 0: 4369
+ 24,-6:
+ 0: 4369
+ 24,-5:
+ 0: 4369
+ 17,-9:
+ 0: 8
+ 18,-9:
+ 0: 15
+ 19,-9:
+ 0: 14
+ 20,-14:
+ 0: 65280
+ 20,-13:
+ 0: 65535
+ 20,-12:
+ 0: 65535
+ 20,-11:
+ 0: 65535
+ 20,-10:
+ 0: 65535
+ 20,-9:
+ 0: 15
21,-12:
- 1: 3855
- 0: 61680
+ 0: 65535
21,-11:
- 1: 3855
- 0: 240
+ 0: 4095
22,-12:
- 1: 8995
- 0: 4112
+ 0: 13107
22,-11:
- 1: 803
- 0: 16
+ 0: 819
+ -9,19:
+ 0: 36044
+ -9,17:
+ 0: 2184
+ -4,26:
+ 0: 68
+ -3,25:
+ 0: 17476
+ -3,26:
+ 0: 68
+ -8,26:
+ 0: 17
+ -7,25:
+ 0: 4369
+ -7,26:
+ 0: 17
+ 19,8:
+ 0: 250
+ -9,20:
+ 0: 51336
+ -9,21:
+ 0: 32972
+ -9,22:
+ 0: 34952
+ -9,23:
+ 0: 136
+ 17,8:
+ 0: 240
+ 18,8:
+ 0: 242
+ 15,8:
+ 0: 206
+ 26,-2:
+ 0: 12288
+ 26,-1:
+ 0: 3
+ 2,-22:
+ 0: 61440
+ 3,-22:
+ 0: 28928
+ 9,13:
+ 0: 4095
+ -20,21:
+ 0: 3151
+ -19,21:
+ 0: 1887
+ -18,21:
+ 0: 15
+ -17,21:
+ 0: 1
+ -21,21:
+ 0: 15
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -49468,15 +24802,10 @@ entities:
- 0
- 0
- volume: 2500
-<<<<<<< HEAD
temperature: 293.15
moles:
- 28.698072
- 107.95943
-=======
- immutable: True
- moles:
->>>>>>> master
- 0
- 0
- 0
@@ -49487,7 +24816,6 @@ entities:
- 0
- 0
- 0
-<<<<<<< HEAD
- volume: 2500
temperature: 293.14975
moles:
@@ -49516,8 +24844,6 @@ entities:
- 0
- 0
- 0
-=======
->>>>>>> master
- 0
- 0
- volume: 2500
@@ -49583,8 +24909,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 6666.982
- 0
+ - 6666.982
- 0
- 0
- 0
@@ -49598,7 +24924,6 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 0
- 6666.982
- 0
- 0
@@ -49610,6 +24935,7 @@ entities:
- 0
- 0
- 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
@@ -49654,91 +24980,16 @@ entities:
- type: Joint
joints:
docking93271: !type:WeldJoint
-<<<<<<< HEAD
bodyB: 38714
-=======
- bodyB: 38244
->>>>>>> master
bodyA: 2
id: docking93271
localAnchorB: 5,0.49999997
localAnchorA: 90,21.5
referenceAngle: -3.173097E-05
-<<<<<<< HEAD
damping: 467.64035
stiffness: 4197.53
- type: NavMap
- uid: 38714
-=======
- damping: 467.66803
- stiffness: 4197.779
- - type: NavMap
- - uid: 4
- components:
- - type: MetaData
- name: solution - food
- - type: Transform
- parent: 3
- - type: Solution
- solution:
- maxVol: 1
- name: food
- reagents:
- - ReagentId: Fiber
- Quantity: 1
- - type: ContainedSolution
- containerName: food
- container: 3
- - uid: 6
- components:
- - type: MetaData
- name: solution - food
- - type: Transform
- parent: 5
- - type: Solution
- solution:
- maxVol: 1
- name: food
- reagents:
- - ReagentId: Fiber
- Quantity: 1
- - type: ContainedSolution
- containerName: food
- container: 5
- - uid: 8
- components:
- - type: MetaData
- name: solution - food
- - type: Transform
- parent: 7
- - type: Solution
- solution:
- maxVol: 1
- name: food
- reagents:
- - ReagentId: Fiber
- Quantity: 1
- - type: ContainedSolution
- containerName: food
- container: 7
- - uid: 10
- components:
- - type: MetaData
- name: solution - food
- - type: Transform
- parent: 9
- - type: Solution
- solution:
- maxVol: 1
- name: food
- reagents:
- - ReagentId: Fiber
- Quantity: 1
- - type: ContainedSolution
- containerName: food
- container: 9
- - uid: 38244
->>>>>>> master
components:
- type: MetaData
name: SFD Стервятник DS-753
@@ -49839,11 +25090,7 @@ entities:
- type: Joint
joints:
docking93271: !type:WeldJoint
-<<<<<<< HEAD
bodyB: 38714
-=======
- bodyB: 38244
->>>>>>> master
bodyA: 2
id: docking93271
localAnchorB: 5,0.49999997
@@ -49851,7 +25098,6 @@ entities:
referenceAngle: -3.173097E-05
damping: 467.63986
stiffness: 4197.526
-<<<<<<< HEAD
- proto: AccordionInstrument
entities:
- uid: 3
@@ -49862,3929 +25108,10 @@ entities:
- proto: AcousticGuitarInstrument
entities:
- uid: 4
-=======
- - uid: 38344
- components:
- - type: MetaData
- name: Каторга "Злой Каблук"
- - type: Transform
- pos: 2.86932,-330.26294
- parent: 1
- - type: MapGrid
- chunks:
- 0,0:
- ind: 0,0
- tiles: YAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAIAAAAAAAgQAAAAAACAAAAAAABwAAAAAACAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAcAAAAAAAIAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAcAAAAAAAIAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAgQAAAAAAgQAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAA
- version: 6
- -1,0:
- ind: -1,0
- tiles: IAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAZQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAZQAAAAAAYAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAAAJQAAAAAAgQAAAAAAYAAAAAAAZQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAZQAAAAAAZQAAAAAAYAAAAAAAZQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAJQAAAAAAgQAAAAAAYAAAAAAAZQAAAAAAYAAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAZQAAAAAAYAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAZQAAAAAAYAAAAAAAJQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAJQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAQQAAAAAAJQAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
- version: 6
- -1,-1:
- ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAA
- version: 6
- 0,-1:
- ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -2,0:
- ind: -2,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAAAYAAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAABwAAAAAAGQAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGQAAAAAABwAAAAAAGgAAAAAAGQAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAACAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAABwAAAAAABwAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAABwAAAAAA
- version: 6
- -2,-1:
- ind: -2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
- version: 6
- -2,1:
- ind: -2,1
- tiles: BwAAAAAAGQAAAAAABwAAAAAABwAAAAAAGQAAAAAABwAAAAAACAAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAAgQAAAAAAhAAAAAAAVQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAhAAAAAAAhAAAAAAAIAAAAAAA
- version: 6
- -1,1:
- ind: -1,1
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAAAAAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAACgAAAAAABwAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAAgAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAACgAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA
- version: 6
- 0,1:
- ind: 0,1
- tiles: BwAAAAAABwAAAAAABwAAAAAACAAAAAAACgAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAARgAAAAAAPAAAAAAARgAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAhAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAARgAAAAAAPAAAAAAARgAAAAAAhAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
- version: 6
- -2,2:
- ind: -2,2
- tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAAIAAAAAAAhAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAhAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAARgAAAAAAgQAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARgAAAAAAPAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAgQAAAAAARgAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,2:
- ind: -1,2
- tiles: gQAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgAAAAAAABwAAAAAAgAAAAAAABwAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAARAAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAgAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 0,2:
- ind: 0,2
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,0:
- ind: 1,0
- tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,1:
- ind: 1,1
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,2:
- ind: 1,2
- tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -3,1:
- ind: -3,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA
- version: 6
- 1,-1:
- ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- 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:
- 1803: -19,36
- - node:
- color: '#FFFFFFFF'
- id: BotGreyscale
- decals:
- 1804: -18,36
- 1805: -17,36
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkBox
- decals:
- 1807: -2,-7
- 1808: 0,-7
- 1809: 0,-12
- 1810: -2,-12
- 1845: -2,5
- 1846: 0,5
- 1847: 2,3
- 1848: 2,1
- 1849: 4,-1
- 1850: 2,-3
- 1851: 4,-7
- 1852: 0,-1
- 1853: -2,-1
- 1854: 0,9
- 1855: -2,9
- 1894: 8,-5
- 1903: -13,11
- 1904: -13,13
- 1905: -11,9
- 1906: -16,7
- 1907: -19,7
- 1908: -22,7
- 1909: -22,3
- 1910: -19,3
- 1911: -16,3
- 1912: -11,2
- 1913: -6,-1
- 1914: -4,-5
- 1915: 6,1
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkCornerNe
- decals:
- 1916: 5,4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerNe
- decals:
- 1861: 11,-2
- 2244: -22,10
- 2245: -19,10
- 2246: -16,10
- 2334: -13,-5
- 2764: 10,5
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkCornerNw
- decals:
- 1917: 3,4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerNw
- decals:
- 1860: 9,-2
- 2238: -23,2
- 2239: -20,2
- 2240: -17,2
- 2241: -17,10
- 2242: -23,10
- 2243: -20,10
- 2333: -16,-5
- 2761: 7,4
- 2762: 8,5
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkCornerSe
- decals:
- 1927: 5,0
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerSe
- decals:
- 1864: 11,-8
- 2247: -16,0
- 2248: -19,0
- 2249: -22,0
- 2337: -13,-7
- 2765: 10,0
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkCornerSw
- decals:
- 1922: 3,0
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerSw
- decals:
- 1862: 9,-8
- 2233: -23,8
- 2234: -20,8
- 2235: -17,8
- 2236: -17,0
- 2237: -20,0
- 2250: -23,0
- 2336: -16,-7
- 2766: 7,0
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkEndN
- decals:
- 1811: -3,-8
- 1812: 1,-8
- 1874: 9,-6
- 2058: -3,8
- 2059: 1,8
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkEndS
- decals:
- 1813: -3,-11
- 1814: 1,-11
- 1873: 9,-4
- 2060: -3,6
- 2061: 1,6
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkInnerNe
- decals:
- 1928: 5,1
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerNe
- decals:
- 1887: 9,-8
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkInnerNw
- decals:
- 1930: 3,1
- 1931: 3,3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerNw
- decals:
- 1886: 11,-8
- 2272: -16,2
- 2273: -19,2
- 2274: -22,2
- 2777: 7,1
- 2779: 8,4
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkInnerSe
- decals:
- 1929: 5,1
- 1935: 4,0
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerSe
- decals:
- 1889: 9,-2
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkInnerSw
- decals:
- 1932: 3,3
- 1933: 3,1
- 1934: 4,0
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerSw
- decals:
- 1888: 11,-2
- 2269: -22,8
- 2270: -19,8
- 2271: -16,8
- 2778: 7,1
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkLineE
- decals:
- 1918: 2,3
- 1919: 2,1
- 1924: 5,2
- 1925: 5,3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineE
- decals:
- 1819: -3,-10
- 1820: -3,-9
- 1821: 1,-10
- 1822: 1,-9
- 1865: 11,-7
- 1866: 11,-6
- 1867: 11,-5
- 1868: 11,-4
- 1869: 11,-3
- 1883: 9,-3
- 1884: 9,-7
- 2064: -3,7
- 2065: 1,7
- 2257: -19,1
- 2258: -19,2
- 2259: -22,1
- 2260: -22,2
- 2261: -16,1
- 2262: -16,2
- 2263: -16,8
- 2264: -16,9
- 2265: -19,8
- 2266: -19,9
- 2267: -22,8
- 2268: -22,9
- 2340: -13,-6
- 2767: 6,1
- 2768: 10,1
- 2769: 10,2
- 2770: 10,3
- 2771: 10,4
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkLineN
- decals:
- 1920: 4,-1
- 1926: 4,4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineN
- decals:
- 1870: 10,-2
- 1885: 10,-8
- 2278: -22,7
- 2279: -19,7
- 2280: -16,7
- 2341: -15,-5
- 2342: -14,-5
- 2763: 9,5
- 2772: 9,5
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineS
- decals:
- 1863: 10,-8
- 1882: 10,-2
- 2275: -22,3
- 2276: -19,3
- 2277: -16,3
- 2338: -15,-7
- 2339: -14,-7
- 2775: 8,0
- 2776: 9,0
- - node:
- color: '#DA8B8BFF'
- id: BrickTileDarkLineW
- decals:
- 1921: 6,1
- 1923: 3,2
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineW
- decals:
- 1815: -3,-10
- 1816: -3,-9
- 1817: 1,-10
- 1818: 1,-9
- 1871: 9,-3
- 1872: 9,-4
- 1875: 9,-7
- 1876: 11,-7
- 1877: 11,-6
- 1878: 11,-5
- 1879: 11,-5
- 1880: 11,-4
- 1881: 11,-3
- 2062: -3,7
- 2063: 1,7
- 2251: -23,1
- 2252: -23,9
- 2253: -20,9
- 2254: -17,9
- 2255: -17,1
- 2256: -20,1
- 2335: -16,-6
- 2773: 7,3
- 2774: 7,2
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelCornerNe
- decals:
- 2036: -6,10
- - node:
- color: '#8CB7E8FF'
- id: BrickTileSteelCornerNe
- decals:
- 1936: -5,-2
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelCornerNe
- decals:
- 2168: 1,-2
- 2184: 1,4
- 2472: -7,1
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelCornerNe
- decals:
- 2005: 1,-2
- 2083: 1,4
- 2117: -12,10
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelCornerNw
- decals:
- 1992: 3,-8
- 2035: -10,10
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelCornerNw
- decals:
- 2167: -3,-2
- 2185: -10,4
- 2471: -2,1
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelCornerNw
- decals:
- 2006: -3,-2
- 2082: -10,4
- 2118: -14,10
- 2225: -23,6
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelCornerSe
- decals:
- 1988: 4,-10
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelCornerSe
- decals:
- 2163: 1,-6
- 2187: 1,0
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelCornerSe
- decals:
- 2007: 1,-6
- 2085: 1,0
- 2281: -12,0
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelCornerSw
- decals:
- 1987: 3,-10
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelCornerSw
- decals:
- 2164: -3,-6
- 2186: -10,0
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelCornerSw
- decals:
- 2086: -10,0
- 2224: -23,4
- 2282: -14,0
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelEndN
- decals:
- 1891: 10,-3
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelEndS
- decals:
- 2032: -10,6
- 2033: -8,6
- 2034: -6,6
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelEndS
- decals:
- 1890: 10,-7
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelInnerNe
- decals:
- 2156: -2,-8
- 2175: -2,-2
- 2176: 0,-2
- 2178: 1,-3
- 2192: 0,4
- 2433: -2,4
- 2449: 1,1
- 2450: 1,3
- 2476: -2,3
- 2496: -2,3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerNe
- decals:
- 1827: -2,-8
- 2017: 1,-3
- 2018: 0,-2
- 2019: -2,-2
- 2081: -2,8
- 2098: 0,4
- 2201: -12,2
- 2202: -12,9
- 2205: -13,10
- 2218: -16,6
- 2219: -19,6
- 2220: -22,6
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelInnerNw
- decals:
- 1994: 4,-8
- 2056: -10,9
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelInnerNw
- decals:
- 2157: 0,-8
- 2173: -3,-5
- 2174: -2,-2
- 2177: 0,-2
- 2193: 0,4
- 2432: -2,4
- 2434: -10,2
- 2475: -7,3
- 2495: -7,3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerNw
- decals:
- 1825: 0,-8
- 1826: -2,-8
- 1902: 10,-5
- 2014: -2,-2
- 2015: 0,-2
- 2016: -3,-5
- 2080: 0,8
- 2099: 0,4
- 2204: -13,10
- 2208: -14,6
- 2209: -16,6
- 2210: -19,6
- 2211: -22,6
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelInnerSe
- decals:
- 2054: -10,8
- 2055: -8,8
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelInnerSe
- decals:
- 2154: -2,-11
- 2159: -2,-6
- 2162: 0,-6
- 2179: 1,-3
- 2188: 0,0
- 2445: -2,0
- 2446: -6,0
- 2448: 1,1
- 2451: 1,3
- 2477: -2,2
- 2478: -3,1
- 2499: -3,1
- 2500: -2,2
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerSe
- decals:
- 1836: -2,-11
- 2022: -2,-6
- 2023: 0,-6
- 2031: 1,-3
- 2079: -2,6
- 2097: 0,0
- 2199: -12,2
- 2203: -12,9
- 2215: -22,4
- 2216: -19,4
- 2217: -16,4
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelInnerSw
- decals:
- 2051: -10,9
- 2052: -8,8
- 2053: -6,8
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelInnerSw
- decals:
- 2155: 0,-11
- 2158: 0,-6
- 2160: -2,-6
- 2161: -3,-5
- 2190: 0,0
- 2437: -10,2
- 2438: -6,0
- 2447: -2,0
- 2473: -6,1
- 2474: -7,2
- 2497: -6,1
- 2498: -7,2
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelInnerSw
- decals:
- 1835: 0,-11
- 1901: 10,-5
- 2020: -3,-5
- 2021: -2,-6
- 2024: 0,-6
- 2078: 0,6
- 2088: 0,0
- 2212: -22,4
- 2213: -19,4
- 2214: -16,4
- 2223: -14,4
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelLineE
- decals:
- 1990: 4,-9
- 1993: 4,-8
- 2040: -6,9
- 2041: -6,8
- 2042: -6,7
- 2045: -10,7
- 2046: -8,7
- 2057: -11,9
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelLineE
- decals:
- 2137: 0,-11
- 2138: 0,-10
- 2139: 0,-9
- 2140: 0,-8
- 2141: 1,-5
- 2142: 1,-4
- 2172: -4,-5
- 2191: -11,2
- 2452: 1,2
- 2453: -8,2
- 2454: -8,3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelLineE
- decals:
- 1837: 0,-11
- 1838: 0,-10
- 1839: 0,-9
- 1840: 0,-8
- 1895: 8,-5
- 1897: 10,-4
- 1898: 10,-5
- 1899: 10,-6
- 2008: 1,-5
- 2009: 1,-4
- 2029: -4,-5
- 2066: 0,6
- 2067: 0,7
- 2068: 0,8
- 2095: -11,2
- 2110: -12,3
- 2111: -12,4
- 2112: -12,4
- 2113: -12,5
- 2114: -12,6
- 2115: -12,8
- 2116: -12,7
- 2196: -12,0
- 2197: -12,1
- 2198: -12,-1
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelLineN
- decals:
- 2037: -9,10
- 2038: -8,10
- 2039: -7,10
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelLineN
- decals:
- 2149: -2,-12
- 2150: 0,-12
- 2153: -1,-8
- 2169: -1,-2
- 2182: -9,4
- 2183: -9,4
- 2189: -6,-1
- 2424: -7,4
- 2425: -8,4
- 2426: -7,4
- 2427: -6,4
- 2428: -5,4
- 2429: -4,4
- 2430: -3,4
- 2431: -1,4
- 2465: -5,0
- 2466: -5,0
- 2467: -4,0
- 2468: -4,0
- 2469: -3,0
- 2470: -6,0
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelLineN
- decals:
- 1824: -1,-8
- 1833: -2,-12
- 1834: 0,-12
- 1893: 9,-5
- 2012: -1,-2
- 2025: -2,-7
- 2026: 0,-7
- 2074: -1,8
- 2075: -2,5
- 2076: 0,5
- 2084: -9,4
- 2089: -2,-1
- 2090: 0,-1
- 2096: -6,-1
- 2132: -21,6
- 2133: -20,6
- 2134: -17,6
- 2135: -18,6
- 2136: -15,6
- 2230: -22,3
- 2231: -19,3
- 2232: -16,3
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelLineS
- decals:
- 1991: 4,-7
- 2048: -7,8
- 2049: -9,8
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelLineS
- decals:
- 2143: -1,-6
- 2144: -1,-11
- 2151: -2,-7
- 2152: 0,-7
- 2170: -2,-1
- 2171: 0,-1
- 2181: -9,0
- 2194: -2,5
- 2195: 0,5
- 2439: -8,0
- 2440: -7,0
- 2441: -5,0
- 2442: -3,0
- 2443: -4,0
- 2444: -1,0
- 2455: -7,4
- 2456: -6,4
- 2457: -5,4
- 2458: -5,4
- 2459: -4,4
- 2460: -3,4
- 2461: -3,4
- 2462: -2,4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelLineS
- decals:
- 1823: -1,-11
- 1841: -2,-7
- 1842: 0,-7
- 1892: 9,-5
- 2013: -1,-6
- 2027: -2,-1
- 2028: 0,-1
- 2072: -2,9
- 2073: 0,9
- 2077: -1,6
- 2087: -9,0
- 2093: -2,5
- 2094: 0,5
- 2127: -21,4
- 2128: -20,4
- 2129: -18,4
- 2130: -17,4
- 2131: -15,4
- 2206: -13,11
- 2227: -22,7
- 2228: -19,7
- 2229: -16,7
- 2283: -13,0
- - node:
- color: '#00FFFFFF'
- id: BrickTileSteelLineW
- decals:
- 1989: 3,-9
- 2043: -8,7
- 2044: -10,7
- 2047: -6,7
- 2050: -10,8
- - node:
- color: '#DA8B8BFF'
- id: BrickTileSteelLineW
- decals:
- 2145: -2,-11
- 2146: -2,-10
- 2147: -2,-9
- 2148: -2,-8
- 2165: -3,-4
- 2166: -3,-3
- 2180: 2,-3
- 2435: -10,3
- 2436: -10,1
- 2463: -1,3
- 2464: -1,2
- - node:
- color: '#FFFFFFFF'
- id: BrickTileSteelLineW
- decals:
- 1828: -2,-8
- 1829: -2,-9
- 1830: -2,-10
- 1831: -2,-10
- 1832: -2,-11
- 1896: 10,-4
- 1900: 10,-6
- 2010: -3,-4
- 2011: -3,-3
- 2030: 2,-3
- 2069: -2,6
- 2070: -2,7
- 2071: -2,8
- 2091: 2,3
- 2092: 2,1
- 2119: -14,9
- 2120: -14,9
- 2121: -14,8
- 2122: -14,7
- 2123: -14,3
- 2124: -14,3
- 2125: -14,2
- 2126: -14,1
- 2200: -11,2
- 2207: -11,9
- 2221: -14,0
- 2222: -14,-1
- 2226: -23,5
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteCornerNe
- decals:
- 1937: -5,-2
- 2284: -5,-4
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteCornerNe
- decals:
- 2298: -20,-2
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteCornerNw
- decals:
- 1942: -9,-2
- 2287: -8,-5
- 2288: -7,-4
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteCornerNw
- decals:
- 2294: -22,-2
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteCornerSe
- decals:
- 1944: -5,-6
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteCornerSe
- decals:
- 2302: -20,-4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerSe
- decals:
- 2103: -12,12
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteCornerSw
- decals:
- 1943: -8,-6
- 2290: -9,-4
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteCornerSw
- decals:
- 2295: -22,-5
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerSw
- decals:
- 2102: -14,12
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteEndE
- decals:
- 2306: -20,-5
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteEndN
- decals:
- 2100: -14,13
- 2101: -12,13
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteInnerNe
- decals:
- 1947: -6,-2
- 1951: -5,-5
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteInnerNe
- decals:
- 2305: -21,-5
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerNe
- decals:
- 2108: -14,12
- 2409: -20,5
- 2410: -15,5
- 2411: -13,9
- 2412: -13,5
- 2413: -13,3
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteInnerNw
- decals:
- 1946: -6,-2
- 2289: -7,-5
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerNw
- decals:
- 2109: -12,12
- 2406: -13,9
- 2407: -17,5
- 2408: -22,5
- 2414: -13,3
- 2415: -13,5
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteInnerSe
- decals:
- 1945: -5,-5
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteInnerSe
- decals:
- 2303: -21,-4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerSe
- decals:
- 2105: -13,12
- 2401: -20,5
- 2402: -15,5
- 2403: -13,5
- 2404: -13,1
- 2405: -13,7
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteInnerSw
- decals:
- 2292: -8,-4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerSw
- decals:
- 2104: -13,12
- 2396: -13,1
- 2397: -13,5
- 2398: -13,7
- 2399: -17,5
- 2400: -22,5
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteLineE
- decals:
- 1938: -5,-3
- 1939: -5,-4
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteLineE
- decals:
- 2299: -20,-4
- 2300: -20,-3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineE
- decals:
- 2385: -14,7
- 2386: -14,8
- 2387: -14,8
- 2388: -14,9
- 2389: -18,5
- 2390: -23,5
- 2391: -14,5
- 2392: -14,3
- 2393: -14,2
- 2394: -14,2
- 2395: -14,1
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteLineN
- decals:
- 1940: -8,-2
- 1941: -7,-2
- 2285: -7,-4
- 2286: -6,-4
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteLineN
- decals:
- 2301: -21,-2
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineN
- decals:
- 2106: -13,11
- 2107: -13,12
- 2357: -22,4
- 2358: -21,4
- 2359: -20,4
- 2360: -17,4
- 2361: -16,4
- 2362: -15,4
- 2363: -13,4
- 2364: -13,6
- 2365: -13,0
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteLineS
- decals:
- 1948: -6,-6
- 1949: -7,-6
- 1953: -6,-1
- 2293: -8,-4
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteLineS
- decals:
- 2304: -21,-5
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineS
- decals:
- 2366: -22,6
- 2367: -21,6
- 2368: -21,6
- 2369: -20,6
- 2370: -17,6
- 2371: -16,6
- 2372: -15,6
- 2373: -13,10
- 2374: -13,6
- 2375: -13,4
- - node:
- color: '#8CB7E8FF'
- id: BrickTileWhiteLineW
- decals:
- 1950: -8,-5
- 1952: -4,-5
- 2291: -9,-3
- - node:
- color: '#A9DA8BFF'
- id: BrickTileWhiteLineW
- decals:
- 2296: -22,-4
- 2297: -22,-3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineW
- decals:
- 2376: -19,5
- 2377: -14,5
- 2378: -12,5
- 2379: -12,3
- 2380: -12,2
- 2381: -12,1
- 2382: -12,7
- 2383: -12,8
- 2384: -12,9
- - node:
- color: '#5712124D'
- id: CheckerNESW
- decals:
- 1996: 0,-3
- 2001: 0,-5
- - node:
- color: '#5712124D'
- id: CheckerNWSE
- decals:
- 1995: -2,-3
- 2000: -2,-5
- - node:
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 2479: -7,3
- 2480: -6,3
- 2481: -5,3
- 2482: -3,3
- 2483: -4,3
- 2484: -2,3
- 2485: -2,2
- 2486: -3,2
- 2487: -3,1
- 2488: -4,1
- 2489: -4,2
- 2490: -5,2
- 2491: -5,1
- 2492: -6,1
- 2493: -6,2
- 2494: -7,2
- - node:
- color: '#571212B4'
- id: DeliveryGreyscale
- decals:
- 1700: -18,33
- 1701: -22,29
- - node:
- cleanable: True
- color: '#663C0DFF'
- id: Dirt
- decals:
- 27: 14,14
- 28: 15,14
- 29: 16,15
- 30: 15,14
- 31: 16,14
- 32: 13,14
- 33: 13,13
- 34: 12,13
- 35: 11,13
- 36: 11,12
- 37: 12,11
- 38: 12,10
- 39: 12,12
- 40: 11,12
- 41: 10,10
- 42: 13,11
- 43: 13,10
- 44: 12,10
- 45: 11,11
- 46: 11,9
- 47: 11,10
- 48: 11,10
- 49: 8,9
- 50: 10,11
- 51: 9,9
- 52: 8,10
- 53: 11,11
- 54: 9,10
- 55: 10,12
- 56: 10,11
- 57: 9,9
- 58: 8,12
- 59: 10,13
- 60: 8,11
- 61: 10,13
- 62: 10,14
- 63: 11,13
- 64: 11,14
- 65: 8,13
- 66: 8,12
- 67: 10,14
- 68: 9,11
- 69: 9,13
- 70: 8,14
- 71: 6,13
- 72: 9,12
- 73: 9,12
- 74: 9,15
- 75: 7,15
- 76: 7,13
- 77: 6,11
- 78: 5,11
- 79: 7,13
- 80: 7,14
- 81: 6,14
- 82: 7,12
- 83: 6,12
- 84: 5,13
- 85: 4,14
- 86: 5,15
- 87: 4,12
- 88: 6,12
- 89: 4,12
- 90: 5,15
- 91: 9,14
- 92: 7,15
- 93: 9,16
- 94: 10,16
- 95: 9,17
- 96: 9,17
- 97: 7,15
- 98: 9,17
- 99: 7,17
- 100: 7,16
- 101: 6,16
- 102: 8,18
- 103: 8,16
- 104: 8,16
- 105: 7,18
- 106: 4,18
- 107: 8,21
- 108: 8,21
- 109: 6,19
- 110: 4,19
- 111: 7,21
- 112: 7,19
- 113: 7,20
- 114: 7,20
- 115: 4,19
- 116: 4,20
- 117: 6,17
- 118: 4,16
- 119: 7,19
- 120: 6,18
- 121: 5,19
- 122: 6,20
- 123: 5,17
- 124: 3,18
- 125: 4,20
- 126: 4,21
- 127: 2,18
- 128: 2,16
- 129: 2,18
- 130: 3,21
- 131: 2,20
- 132: 3,18
- 133: 2,17
- 134: 1,18
- 135: 2,20
- 136: 3,19
- 137: 4,17
- 138: 3,17
- 139: 1,20
- 140: 0,18
- 141: 9,22
- 142: 9,21
- 143: 10,23
- 144: 7,21
- 145: 6,22
- 146: 4,21
- 147: 5,23
- 148: 6,23
- 149: 3,22
- 150: 3,24
- 151: 4,22
- 152: 5,22
- 153: 4,24
- 154: 4,25
- 155: 1,22
- 156: 1,23
- 157: 3,23
- 158: 1,21
- 159: 0,24
- 160: 4,23
- 161: 3,23
- 162: 2,22
- 163: 2,21
- 164: 2,26
- 165: 4,26
- 166: 1,24
- 167: 0,26
- 168: 1,26
- 169: 2,23
- 170: 2,24
- 171: 4,25
- 172: 1,25
- 173: 3,27
- 174: 2,28
- 175: 1,27
- 176: 0,27
- 177: 2,27
- 178: 3,26
- 179: 3,25
- 180: 7,24
- 181: 8,24
- 182: 8,22
- 183: 8,23
- 184: 7,26
- 185: 6,26
- 186: 5,26
- 187: 16,21
- 188: 15,22
- 189: 15,22
- 190: 17,22
- 191: 16,22
- 192: 17,22
- 193: 17,22
- 194: 16,22
- 195: 18,22
- 196: 17,22
- 197: 16,22
- 198: 17,21
- 199: 18,21
- 200: 18,21
- 201: 16,21
- 202: 15,21
- 203: 16,21
- 204: 19,21
- 205: 16,20
- 206: 16,20
- 207: 17,20
- 208: 17,20
- 209: 17,20
- 210: 16,23
- 211: 17,23
- 212: 16,23
- 213: 15,23
- 214: 14,24
- 215: 14,24
- 216: 13,24
- 217: 14,24
- 218: 15,24
- 219: 14,24
- 220: 13,25
- 221: 13,25
- 222: 12,25
- 223: 12,25
- 224: 11,24
- 225: 11,24
- 226: 10,24
- 227: 12,24
- 228: 13,25
- 229: 16,24
- 230: 16,24
- 231: 16,24
- 232: 19,24
- 233: 18,24
- 234: 15,16
- 235: 15,17
- 236: 16,16
- 237: 15,15
- 238: 15,15
- 239: 17,14
- 240: 17,14
- 241: 18,15
- 242: 16,15
- 243: 17,15
- 244: 18,15
- 245: 15,14
- 246: 13,14
- 247: 15,14
- 248: 13,14
- 249: 13,14
- 250: 12,13
- 251: 10,14
- 252: 13,14
- 253: 11,14
- 254: 9,14
- 255: 9,14
- 256: 11,14
- 257: 9,14
- 258: 8,14
- 259: 9,15
- 260: 9,15
- 261: 10,15
- 262: 10,16
- 263: 14,14
- 264: 16,16
- 265: 17,16
- 266: 19,17
- 267: 16,17
- 268: 16,18
- 269: 17,17
- 270: 16,19
- 271: 18,16
- 272: 15,25
- 273: 18,25
- 274: 15,26
- 275: 17,27
- 276: 16,25
- 277: 17,25
- 278: 14,28
- 279: 14,28
- 280: 14,26
- 281: 13,25
- 282: 13,27
- 283: 12,26
- 284: 15,27
- 285: 13,26
- 286: 12,28
- 287: 11,26
- 288: 10,26
- 289: 11,25
- 290: 11,27
- 291: 10,27
- 292: 13,29
- 293: 14,27
- 294: 17,29
- 295: 17,28
- 296: 16,26
- 297: 19,27
- 298: 19,27
- 299: 19,25
- 300: 17,26
- 301: 19,26
- 302: 20,26
- 303: 18,26
- 304: 18,29
- 305: 20,28
- 306: 18,28
- 307: 18,27
- 308: 19,28
- 309: 19,29
- 310: 15,29
- 311: 16,27
- 312: 17,30
- 313: 16,30
- 314: 16,29
- 315: 16,29
- 316: 17,27
- 317: 15,28
- 318: 14,30
- 319: 16,32
- 320: 14,30
- 321: 12,30
- 322: 15,31
- 323: 15,29
- 324: 13,30
- 325: 14,32
- 326: 12,30
- 327: 12,29
- 328: 15,15
- 329: 16,16
- 330: 15,16
- 331: 17,16
- 332: 17,16
- 333: 17,15
- 334: 18,16
- 335: 17,16
- 336: 19,17
- 337: 17,18
- 338: 18,16
- 339: 17,15
- 340: 16,14
- 341: 15,14
- 342: 14,14
- 343: 13,14
- 344: 12,13
- 345: 11,13
- 346: 11,13
- 347: 10,14
- 348: 13,13
- 349: 10,16
- 350: 10,16
- 351: 9,17
- 352: 10,17
- 353: 10,17
- 354: 8,17
- 355: 8,17
- 356: 8,18
- 357: 8,18
- 358: 8,18
- 359: 7,18
- 360: 8,18
- 361: 7,20
- 362: 8,20
- 363: 9,20
- 364: 9,21
- 365: 10,21
- 366: 10,22
- 367: 10,22
- 368: 9,21
- 369: 9,20
- 370: 8,20
- 371: 10,23
- 372: 9,23
- 373: 10,23
- 374: 10,24
- 375: 18,18
- 376: 18,18
- 377: 17,19
- 378: 19,20
- 379: 7,25
- 380: 5,26
- 381: 4,25
- 382: 5,27
- 383: 4,27
- 384: 4,27
- 385: 5,28
- 386: 5,29
- 387: 6,30
- 388: 6,31
- 389: 5,30
- 390: 5,30
- 391: 6,32
- 392: 7,32
- 393: 7,31
- 394: 5,31
- 395: 5,33
- 396: 5,34
- 397: 4,32
- 398: 5,32
- 399: 4,34
- 400: 4,33
- 401: 4,35
- 402: 6,35
- 403: 6,34
- 404: 7,33
- 405: 6,33
- 406: 7,34
- 407: 7,35
- 408: 7,36
- 409: 8,36
- 410: 8,35
- 411: 5,35
- 412: 5,36
- 413: 4,36
- 414: 4,37
- 415: 4,38
- 416: 5,38
- 417: 4,39
- 418: 5,39
- 419: 4,40
- 420: 4,41
- 421: 4,42
- 422: 5,42
- 423: 5,41
- 424: 5,40
- 425: 5,41
- 426: 6,41
- 427: 6,40
- 428: 7,41
- 429: 9,37
- 430: 8,37
- 431: 7,37
- 432: 6,36
- 433: 9,36
- 434: 9,36
- 435: 9,34
- 436: 9,34
- 437: 8,34
- 438: 9,35
- 439: 10,35
- 440: 10,34
- 441: 10,33
- 442: 10,32
- 443: 9,33
- 444: 9,32
- 445: 10,31
- 446: 9,32
- 447: 10,31
- 448: 11,31
- 449: 10,30
- 450: 11,30
- 451: 11,29
- 452: 11,28
- 453: 12,27
- 454: 13,28
- 455: 12,32
- 456: 14,31
- 457: 13,31
- 458: 12,31
- 459: 14,32
- 460: 14,29
- 461: 15,30
- 462: 16,28
- 463: 15,32
- 464: 16,31
- 465: 17,32
- 466: 17,33
- 467: 15,33
- 468: 16,33
- 469: 15,34
- 470: 14,34
- 471: 14,33
- 472: 14,33
- 473: 13,34
- 474: 13,34
- 475: 13,32
- 476: 12,33
- 477: 12,33
- 478: 11,33
- 479: 11,32
- 480: 11,34
- 481: 12,34
- 482: 13,33
- 483: 11,35
- 484: 12,35
- 485: 13,35
- 486: 12,36
- 487: 11,36
- 488: 10,36
- 489: 10,37
- 490: 14,25
- 491: 17,24
- 492: 19,25
- 493: 20,26
- 494: 20,27
- 495: 18,30
- 496: 16,27
- 497: 15,26
- 498: 13,26
- 499: 13,28
- 500: 5,18
- 501: 5,20
- 502: 6,21
- 503: 5,21
- 504: 7,22
- 505: 5,19
- 506: 5,18
- 507: 3,21
- 508: 3,20
- 509: 1,19
- 510: 1,19
- 511: 2,19
- 512: 1,22
- 513: 5,24
- 514: 5,25
- 515: 2,26
- 516: 2,25
- 517: 3,26
- 518: 2,28
- 519: 1,28
- 520: 0,28
- 521: 1,29
- 522: 2,30
- 523: 1,30
- 524: 1,31
- 525: 1,32
- 526: 1,32
- 527: 1,34
- 528: 1,34
- 529: 0,32
- 530: 0,33
- 531: 0,33
- 532: 0,34
- 533: 1,33
- 534: 2,33
- 535: 3,33
- 536: 3,35
- 537: 2,34
- 538: 3,35
- 539: 3,34
- 540: 2,35
- 541: 1,35
- 542: 1,35
- 543: 1,36
- 544: 0,36
- 545: 0,37
- 546: 3,35
- 547: 4,36
- 548: 4,36
- 549: 3,37
- 550: 3,36
- 551: 3,36
- 552: 2,36
- 553: 2,37
- 554: 3,38
- 555: 3,38
- 556: 2,38
- 557: 3,39
- 558: 3,40
- 559: 3,39
- 560: 2,40
- 561: 3,41
- 562: 2,41
- 563: 3,42
- 564: 2,39
- 565: 9,31
- 566: 7,9
- 567: 7,10
- 568: 5,10
- 569: 6,9
- 570: 5,10
- 571: 4,9
- 572: 3,10
- 573: 4,11
- 574: 3,10
- 575: 3,11
- 576: 3,10
- 577: 2,11
- 578: 2,13
- 579: 3,13
- 580: 3,12
- 581: 2,12
- 582: 3,15
- 583: 3,14
- 584: 2,15
- 585: 4,15
- 586: 4,14
- 587: 4,13
- 588: 5,14
- 589: 5,12
- 590: 6,15
- 591: 5,16
- 592: 2,14
- 593: 9,15
- 594: 8,15
- 595: 2,16
- 596: 3,16
- 597: 4,9
- 598: 2,10
- 599: 2,10
- 600: 4,11
- 601: 5,9
- 602: 4,11
- 603: 5,10
- 604: 4,10
- 605: 7,10
- 606: 6,10
- 607: 10,9
- 608: 13,9
- 609: 12,9
- 610: 14,9
- 611: 16,27
- 612: 13,27
- 613: 12,28
- 614: 7,34
- 615: 6,32
- 616: 6,31
- 617: 7,33
- 618: 5,33
- 619: 9,37
- 620: 8,37
- 621: 5,40
- 622: 4,39
- 623: 4,41
- 624: 0,26
- 625: 3,28
- 626: 3,25
- 627: 4,23
- 628: 2,27
- 629: 5,16
- 630: 3,17
- 631: 1,11
- 632: 2,10
- 633: 8,11
- 634: 6,11
- 635: 7,11
- 636: 1,12
- 637: 1,12
- 638: 0,12
- 639: 0,11
- 640: 0,14
- 641: 1,13
- 642: 0,13
- 643: 1,14
- 644: 0,15
- 645: 0,15
- 646: 1,15
- 647: 1,16
- 648: 0,16
- 649: 0,17
- 650: 1,17
- 651: 1,15
- 652: 2,13
- 653: 0,16
- 654: 0,19
- 655: 0,20
- 656: 0,21
- 657: 0,22
- 658: 0,24
- 659: 0,23
- 660: 0,24
- 661: 0,23
- 662: 0,21
- 663: 2,21
- 664: 2,18
- 665: 1,15
- 666: 4,13
- 667: 3,10
- 668: 1,13
- 669: 1,14
- 670: 1,12
- 671: 8,10
- 672: 7,9
- 673: 13,9
- 674: 12,11
- 680: -14,11
- 681: -12,14
- 682: -14,14
- 683: -14,14
- 684: -12,15
- 685: -13,16
- 686: -13,14
- 687: -13,14
- 688: -14,15
- 689: -14,16
- 690: -14,17
- 691: -13,17
- 692: -13,15
- 693: -12,15
- 694: -13,18
- 695: -13,17
- 696: -12,17
- 697: -12,17
- 698: -14,17
- 699: -14,18
- 700: -14,19
- 701: -13,19
- 702: -12,18
- 703: -12,18
- 704: -13,20
- 705: -14,20
- 706: -12,20
- 707: -11,19
- 708: -12,20
- 709: -13,21
- 710: -14,21
- 711: -14,22
- 712: -12,22
- 713: -12,21
- 714: -12,21
- 715: -13,22
- 716: -14,23
- 717: -14,23
- 718: -14,24
- 719: -13,25
- 720: -13,25
- 721: -14,25
- 722: -13,24
- 723: -13,23
- 724: -13,23
- 725: -12,24
- 726: -13,26
- 727: -12,26
- 728: -14,30
- 729: -14,31
- 730: -14,32
- 731: -14,32
- 732: -14,31
- 733: -13,33
- 734: -13,32
- 735: -13,32
- 736: -13,34
- 737: -12,33
- 738: -12,32
- 739: -11,31
- 740: -12,31
- 741: -12,31
- 742: -11,31
- 743: -11,30
- 744: -10,30
- 745: -10,29
- 746: -10,28
- 747: -10,31
- 748: -10,32
- 749: -10,31
- 750: -10,32
- 751: -11,32
- 752: -10,33
- 753: -10,34
- 754: -10,35
- 755: -10,35
- 756: -11,35
- 757: -12,35
- 758: -12,34
- 759: -12,36
- 760: -12,36
- 761: -13,36
- 762: -11,36
- 763: -13,36
- 764: -10,36
- 765: -10,37
- 766: -10,36
- 767: -9,36
- 768: -9,35
- 769: -8,36
- 770: -9,36
- 771: -8,34
- 772: -8,33
- 773: -8,32
- 774: -9,32
- 775: -8,31
- 776: -8,32
- 777: -9,33
- 778: -11,33
- 779: -8,33
- 780: -8,32
- 781: -7,32
- 782: -7,33
- 783: -7,31
- 784: -8,30
- 785: -9,31
- 786: -7,31
- 787: -9,28
- 788: -7,30
- 789: -9,29
- 790: -6,31
- 791: -6,30
- 792: -4,31
- 793: -6,31
- 794: -4,31
- 795: -5,31
- 796: -5,32
- 797: -4,32
- 798: -4,30
- 799: -4,30
- 800: -3,30
- 801: -3,31
- 802: -3,26
- 803: -2,26
- 804: -2,27
- 805: -1,27
- 806: -1,25
- 807: -2,23
- 808: -4,25
- 809: -2,25
- 810: -2,25
- 811: -3,24
- 812: -3,24
- 813: -2,24
- 814: -2,26
- 815: -1,25
- 816: -1,24
- 817: -1,26
- 818: -2,32
- 819: -3,32
- 820: -3,32
- 821: -2,31
- 822: -2,33
- 823: -1,33
- 824: -1,32
- 825: -2,33
- 826: -3,33
- 827: -3,34
- 828: -4,34
- 829: -3,33
- 830: -4,34
- 831: -5,34
- 832: -5,34
- 833: -5,35
- 834: -6,35
- 835: -6,36
- 836: -7,36
- 837: -11,37
- 838: -10,37
- 839: -10,35
- 840: -8,36
- 841: -8,35
- 842: -9,35
- 843: -8,33
- 844: -8,31
- 845: -6,31
- 846: -8,32
- 847: -10,33
- 848: -11,32
- 849: -12,33
- 850: -12,34
- 851: -11,35
- 852: -11,36
- 853: -12,36
- 854: -4,25
- 855: -3,24
- 856: -6,24
- 857: -5,25
- 858: -4,24
- 859: -4,24
- 860: -6,24
- 861: -3,25
- 862: -6,25
- 863: -7,24
- 864: -7,24
- 865: -5,24
- 866: -5,23
- 867: -7,23
- 868: -8,24
- 869: -8,24
- 870: -9,23
- 871: -8,22
- 872: -8,22
- 873: -9,22
- 874: -7,23
- 875: -7,23
- 876: -8,23
- 877: -6,22
- 878: -6,23
- 879: -7,22
- 880: -7,21
- 881: -10,20
- 882: -10,21
- 883: -10,22
- 884: -11,21
- 885: -11,20
- 886: -11,19
- 887: -12,19
- 888: -11,20
- 889: -11,22
- 890: -12,23
- 891: -7,19
- 892: -8,18
- 893: -10,17
- 894: -11,18
- 895: -10,18
- 896: -9,18
- 897: -10,18
- 898: -11,17
- 899: -10,19
- 900: -9,19
- 901: -9,19
- 902: -9,20
- 903: -8,21
- 904: -9,21
- 905: -8,20
- 906: -7,20
- 907: -8,19
- 908: -8,19
- 909: -7,19
- 910: -8,16
- 911: -10,17
- 912: -9,17
- 913: -8,16
- 914: -10,16
- 915: -11,16
- 916: -12,16
- 917: -11,16
- 918: -11,15
- 919: -11,11
- 920: -10,11
- 921: -12,11
- 922: -11,12
- 923: -11,13
- 924: -11,14
- 925: -10,13
- 926: -10,12
- 927: -9,12
- 928: -10,11
- 929: -9,11
- 930: -10,12
- 931: -7,12
- 932: -7,11
- 933: -4,10
- 934: -3,9
- 935: -2,11
- 936: -1,10
- 937: -4,11
- 938: -2,10
- 939: -1,9
- 940: -1,12
- 941: -1,12
- 942: -2,11
- 943: -3,12
- 944: -1,12
- 945: -1,11
- 946: -2,12
- 947: -3,12
- 948: -3,10
- 949: -2,13
- 950: -2,13
- 951: -4,13
- 952: -4,12
- 953: -5,12
- 954: -6,11
- 955: -7,12
- 956: -6,12
- 957: -5,11
- 958: -8,12
- 959: -8,11
- 960: -8,12
- 961: -8,13
- 962: -9,12
- 963: -10,14
- 964: -9,14
- 965: -10,15
- 966: -8,16
- 967: -9,15
- 968: -9,13
- 969: -9,15
- 970: -8,14
- 971: -8,16
- 972: -8,16
- 973: -9,16
- 974: -7,15
- 975: -8,17
- 976: -7,17
- 977: -7,15
- 978: -8,15
- 979: -7,14
- 980: -7,13
- 981: -6,13
- 982: -7,14
- 983: -5,14
- 984: -5,13
- 985: -4,14
- 986: -3,11
- 987: -3,11
- 988: -3,13
- 989: -1,13
- 990: -4,16
- 991: -3,15
- 992: -3,14
- 993: -4,15
- 994: -4,15
- 995: -6,15
- 996: -6,15
- 997: -6,14
- 998: -5,16
- 999: -6,16
- 1000: -6,16
- 1001: -7,16
- 1002: -6,15
- 1003: -5,16
- 1004: -7,18
- 1005: -5,18
- 1006: -5,17
- 1007: -6,17
- 1008: -6,19
- 1009: -5,18
- 1010: -6,17
- 1011: -4,17
- 1012: -6,18
- 1013: -4,19
- 1014: -4,18
- 1015: -6,18
- 1016: -5,15
- 1017: -2,16
- 1018: -4,16
- 1019: -2,16
- 1020: -2,15
- 1021: -2,14
- 1022: -1,15
- 1023: -2,15
- 1024: -1,14
- 1025: -1,16
- 1026: -1,18
- 1027: -1,18
- 1028: -2,17
- 1029: 0,17
- 1030: -2,17
- 1031: -3,16
- 1032: -3,16
- 1033: -3,18
- 1034: -1,17
- 1035: -1,17
- 1036: -3,19
- 1037: -3,17
- 1038: -2,18
- 1039: -2,19
- 1040: -1,19
- 1041: -2,19
- 1042: -1,19
- 1043: -1,20
- 1044: -1,21
- 1045: 0,23
- 1046: -1,23
- 1047: -1,22
- 1048: -1,22
- 1049: -3,22
- 1050: -3,23
- 1051: -4,22
- 1052: -4,23
- 1053: -5,21
- 1054: -6,22
- 1055: -6,20
- 1056: -5,20
- 1057: -5,19
- 1058: -6,21
- 1059: -5,22
- 1060: -4,20
- 1061: -4,20
- 1062: -4,21
- 1063: -3,20
- 1064: -2,20
- 1065: -3,21
- 1066: -2,22
- 1067: -2,21
- 1069: -9,26
- 1070: -8,26
- 1071: -8,27
- 1072: -8,27
- 1073: -8,29
- 1074: -8,28
- 1075: -4,28
- 1076: -4,27
- 1077: -4,27
- 1078: -3,28
- 1079: -4,29
- 1080: -22,-1
- 1081: -23,-1
- 1082: -21,0
- 1083: -21,-1
- 1084: -19,-1
- 1085: -20,-1
- 1086: -18,0
- 1087: -18,-1
- 1088: -18,-1
- 1089: -17,-1
- 1090: -17,3
- 1091: -18,1
- 1092: -25,2
- 1093: -25,3
- 1094: -26,3
- 1095: -26,4
- 1096: -25,4
- 1097: -24,4
- 1098: -24,3
- 1099: -24,2
- 1100: -24,1
- 1101: -21,1
- 1102: -21,2
- 1103: -21,3
- 1104: -15,12
- 1105: -15,11
- 1106: -16,11
- 1107: -16,12
- 1108: -15,13
- 1109: -16,13
- 1110: -17,13
- 1111: -17,12
- 1112: -18,13
- 1113: -18,12
- 1114: -18,11
- 1115: -17,11
- 1116: -18,10
- 1117: -18,7
- 1118: -20,7
- 1119: -21,7
- 1120: -27,6
- 1121: -27,7
- 1122: -26,7
- 1123: -26,6
- 1124: -26,5
- 1125: -25,5
- 1126: -25,6
- 1127: -25,7
- 1128: -24,7
- 1129: -24,6
- 1130: -24,5
- 1131: -23,7
- 1132: -28,8
- 1133: -28,9
- 1134: -28,10
- 1135: -27,10
- 1136: -27,9
- 1137: -27,8
- 1138: -26,8
- 1139: -26,9
- 1140: -26,10
- 1141: -25,10
- 1142: -25,9
- 1143: -25,8
- 1144: -24,8
- 1145: -24,9
- 1146: -24,10
- 1147: -21,10
- 1148: -21,8
- 1149: -19,12
- 1150: -19,11
- 1151: -19,13
- 1152: -20,13
- 1153: -20,12
- 1154: -20,11
- 1155: -21,11
- 1156: -21,12
- 1157: -21,13
- 1158: -22,13
- 1159: -22,12
- 1160: -22,11
- 1161: -21,11
- 1162: -21,12
- 1163: -19,12
- 1164: -18,10
- 1165: -19,11
- 1166: -15,11
- 1167: -17,3
- 1168: -23,11
- 1169: -23,12
- 1170: -23,13
- 1171: -24,13
- 1172: -24,12
- 1173: -24,11
- 1174: -25,11
- 1175: -25,12
- 1176: -25,13
- 1177: -26,13
- 1178: -27,13
- 1179: -25,25
- 1180: -24,25
- 1181: -23,25
- 1182: -22,25
- 1183: -21,25
- 1184: -20,25
- 1185: -19,25
- 1186: -19,24
- 1187: -20,24
- 1188: -21,24
- 1189: -19,23
- 1190: -18,23
- 1191: -17,22
- 1192: -18,22
- 1193: -16,22
- 1194: -16,23
- 1195: -16,24
- 1196: -16,24
- 1197: -15,24
- 1198: -15,23
- 1199: -15,22
- 1200: -32,16
- 1201: -31,16
- 1202: -31,17
- 1203: -30,17
- 1204: -30,16
- 1205: -30,15
- 1206: -31,15
- 1207: -30,14
- 1208: -30,13
- 1209: -29,13
- 1210: -29,14
- 1211: -28,14
- 1212: -28,13
- 1213: -29,12
- 1214: -29,11
- 1215: -28,11
- 1216: -28,12
- 1217: -27,12
- 1218: -27,11
- 1219: -26,11
- 1220: -26,12
- 1221: -15,14
- 1222: -15,15
- 1223: -15,16
- 1224: -15,17
- 1225: -15,18
- 1226: -15,19
- 1227: -15,20
- 1228: -15,21
- 1229: -16,21
- 1230: -16,20
- 1231: -16,19
- 1232: -17,19
- 1233: -17,20
- 1234: -17,21
- 1235: -18,21
- 1236: -18,20
- 1237: -18,19
- 1238: -18,18
- 1239: -17,18
- 1240: -16,18
- 1241: -16,17
- 1242: -17,17
- 1243: -18,17
- 1244: -18,16
- 1245: -18,15
- 1246: -18,14
- 1247: -17,14
- 1248: -17,15
- 1249: -17,16
- 1250: -16,16
- 1251: -16,15
- 1252: -16,14
- 1253: -19,14
- 1254: -19,15
- 1255: -19,16
- 1256: -19,17
- 1257: -19,18
- 1258: -19,19
- 1259: -19,20
- 1260: -19,21
- 1261: -19,22
- 1262: -20,22
- 1263: -20,23
- 1264: -21,23
- 1265: -21,22
- 1266: -22,22
- 1267: -22,23
- 1268: -22,24
- 1269: -21,21
- 1270: -22,21
- 1271: -20,21
- 1272: -20,20
- 1273: -21,20
- 1274: -22,20
- 1275: -22,19
- 1276: -21,19
- 1277: -20,19
- 1278: -22,18
- 1279: -21,18
- 1280: -20,18
- 1281: -20,17
- 1282: -21,17
- 1283: -22,17
- 1284: -22,16
- 1285: -20,15
- 1286: -20,14
- 1287: -21,14
- 1288: -21,15
- 1289: -22,15
- 1290: -22,14
- 1291: -30,18
- 1292: -29,18
- 1293: -29,17
- 1294: -29,16
- 1295: -29,15
- 1296: -28,15
- 1297: -28,16
- 1298: -28,17
- 1299: -27,17
- 1300: -27,16
- 1301: -27,15
- 1302: -27,14
- 1303: -26,14
- 1304: -26,15
- 1305: -26,16
- 1306: -26,17
- 1307: -25,17
- 1308: -25,16
- 1309: -25,15
- 1310: -25,14
- 1311: -24,14
- 1312: -23,14
- 1313: -23,15
- 1314: -24,15
- 1315: -24,16
- 1316: -23,16
- 1317: -23,17
- 1318: -24,17
- 1319: -29,19
- 1320: -28,19
- 1321: -28,20
- 1322: -27,20
- 1323: -27,19
- 1324: -27,18
- 1325: -28,18
- 1326: -27,21
- 1327: -27,22
- 1328: -27,23
- 1329: -26,23
- 1330: -26,24
- 1331: -25,24
- 1332: -25,23
- 1333: -24,23
- 1334: -24,24
- 1335: -23,24
- 1336: -23,23
- 1337: -23,22
- 1338: -24,22
- 1339: -25,22
- 1340: -26,22
- 1341: -26,21
- 1342: -25,21
- 1343: -24,21
- 1344: -23,21
- 1345: -23,20
- 1346: -24,20
- 1347: -25,20
- 1348: -26,20
- 1349: -26,19
- 1350: -26,18
- 1351: -25,18
- 1352: -25,19
- 1353: -24,19
- 1354: -24,18
- 1355: -23,18
- 1356: -23,19
- 1357: -25,19
- 1358: -24,20
- 1359: -25,20
- 1360: -26,19
- 1361: -25,22
- 1362: -27,21
- 1363: -27,20
- 1364: -28,20
- 1365: -26,22
- 1366: -27,23
- 1367: -25,23
- 1368: -25,24
- 1369: -24,24
- 1370: -24,25
- 1371: -25,25
- 1372: -26,24
- 1373: -23,24
- 1374: -21,24
- 1375: -21,24
- 1376: -19,24
- 1377: -20,25
- 1378: -20,24
- 1379: -19,25
- 1380: -19,23
- 1381: -18,23
- 1382: -18,21
- 1383: -20,22
- 1384: -21,22
- 1385: -21,21
- 1386: -20,21
- 1387: -20,19
- 1388: -22,21
- 1389: -23,22
- 1390: -20,20
- 1391: -20,20
- 1392: -18,20
- 1393: -16,20
- 1394: -15,19
- 1395: -15,18
- 1396: -15,20
- 1397: -15,21
- 1398: -13,21
- 1399: -14,20
- 1400: -14,19
- 1401: -13,18
- 1402: -13,18
- 1403: -14,22
- 1404: -15,22
- 1405: -15,24
- 1406: -13,17
- 1407: -13,16
- 1408: -13,16
- 1409: -15,16
- 1410: -15,16
- 1411: -16,17
- 1412: -16,15
- 1413: -14,15
- 1414: -15,15
- 1415: -15,13
- 1416: -15,14
- 1417: -16,13
- 1418: -17,13
- 1419: -16,14
- 1420: -18,14
- 1421: -16,12
- 1422: -17,15
- 1423: -18,15
- 1424: -18,16
- 1425: -19,16
- 1426: -19,15
- 1427: -20,15
- 1428: -19,18
- 1429: -18,18
- 1430: -18,19
- 1431: -17,19
- 1432: -17,21
- 1433: -17,22
- 1434: -21,17
- 1435: -22,16
- 1436: -23,17
- 1437: -22,18
- 1438: -22,17
- 1439: -25,17
- 1440: -29,18
- 1441: -28,19
- 1442: -29,19
- 1443: -30,17
- 1444: -30,17
- 1445: -30,16
- 1446: -31,16
- 1447: -29,16
- 1448: -27,17
- 1449: -28,18
- 1450: -27,16
- 1451: -25,14
- 1452: -26,12
- 1453: -27,13
- 1454: -26,14
- 1455: -28,15
- 1456: -28,14
- 1457: -29,14
- 1458: -29,13
- 1459: -30,13
- 1460: -30,15
- 1461: -31,15
- 1462: -31,17
- 1463: -21,13
- 1464: -23,14
- 1465: -22,14
- 1466: -22,19
- 1467: -21,20
- 1468: -25,10
- 1469: -23,11
- 1470: -24,12
- 1471: -23,12
- 1472: -24,12
- 1473: -24,11
- 1474: -26,11
- 1475: -28,11
- 1476: -29,12
- 1477: -28,9
- 1478: -27,8
- 1479: -28,8
- 1480: -25,8
- 1481: -26,9
- 1482: -26,5
- 1483: -25,4
- 1484: -25,4
- 1485: -25,3
- 1486: -26,4
- 1487: -23,-1
- 1488: -22,-1
- 1489: -21,-1
- 1490: -21,0
- 1491: -21,1
- 1492: -23,7
- 1493: -24,7
- 1494: -25,6
- 1495: -27,6
- 1496: -21,7
- 1497: -22,12
- 1498: -22,11
- 1499: -18,26
- 1500: -19,26
- 1501: -19,27
- 1502: -19,27
- 1503: -17,27
- 1504: -17,28
- 1505: -19,28
- 1506: -18,27
- 1507: -18,28
- 1508: -17,26
- 1509: -16,27
- 1510: -15,29
- 1511: -15,30
- 1512: -15,31
- 1513: -15,32
- 1514: -21,36
- 1515: -21,37
- 1516: -21,38
- 1517: -22,37
- 1518: -22,36
- 1519: -23,36
- 1520: -23,38
- 1521: -24,37
- 1522: -23,37
- 1523: -24,36
- 1524: -25,36
- 1525: -26,37
- 1526: -25,38
- 1527: -25,37
- 1528: -26,38
- 1529: -26,36
- 1530: -24,38
- 1531: -24,39
- 1532: -25,39
- 1533: -23,39
- 1534: -24,40
- 1535: -22,38
- 1536: -23,37
- 1537: -25,37
- 1538: -26,37
- 1539: -23,36
- 1540: -22,37
- 1541: -24,38
- 1542: -24,37
- 1543: -25,36
- 1544: -26,36
- 1545: -24,36
- 1546: -21,36
- 1547: -21,38
- 1548: -22,39
- 1549: -20,39
- 1550: -20,39
- 1551: -19,38
- 1552: -18,38
- 1553: -21,38
- 1554: -19,39
- 1555: -18,39
- 1556: -18,38
- 1557: -17,38
- 1558: -18,39
- 1559: -19,40
- 1560: -20,40
- 1561: -21,40
- 1562: -21,40
- 1563: -22,40
- 1564: -22,41
- 1565: -21,41
- 1566: -22,42
- 1567: -21,39
- 1568: -21,42
- 1569: -20,42
- 1570: -21,43
- 1571: -20,42
- 1572: -20,41
- 1573: -19,41
- 1574: -19,43
- 1575: -20,43
- 1576: -20,38
- 1577: -18,40
- 1578: -18,41
- 1579: -16,41
- 1580: -17,40
- 1581: -17,39
- 1582: -16,39
- 1583: -17,41
- 1584: -19,42
- 1585: -18,43
- 1586: -19,44
- 1587: -16,39
- 1588: -16,38
- 1589: -15,38
- 1590: -15,39
- 1591: -16,40
- 1592: -14,40
- 1593: -15,40
- 1594: -14,39
- 1595: -14,38
- 1596: -13,38
- 1597: -14,39
- 1598: -13,37
- 1599: -12,37
- 1600: -12,38
- 1601: -11,38
- 1602: -13,39
- 1603: -14,39
- 1604: -12,39
- 1605: -12,40
- 1606: -13,40
- 1607: -13,41
- 1608: -12,40
- 1609: -13,40
- 1610: -13,38
- 1611: -13,35
- 1612: -13,35
- 1613: -13,35
- 1614: -12,33
- 1615: -25,31
- 1616: -25,32
- 1617: -26,32
- 1618: -26,31
- 1619: -27,31
- 1620: -27,32
- 1621: -25,33
- 1622: -25,33
- 1623: -27,33
- 1624: -26,34
- 1625: -26,33
- 1626: -28,33
- 1627: -28,32
- 1628: -27,31
- 1629: -28,31
- 1630: -29,31
- 1631: -28,30
- 1632: -27,29
- 1633: -28,30
- 1634: -27,30
- 1635: -27,28
- 1636: -28,29
- 1637: -28,28
- 1638: -29,28
- 1639: -29,27
- 1640: -30,27
- 1641: -29,29
- 1642: -29,30
- 1643: -30,30
- 1644: -30,29
- 1645: -30,28
- 1646: -31,29
- 1647: -31,30
- 1648: -31,31
- 1649: -32,30
- 1650: -33,30
- 1651: -33,31
- 1652: -32,31
- 1653: -32,32
- 1654: -31,32
- 1655: -30,32
- 1656: -30,31
- 1657: -31,32
- 1658: -30,33
- 1659: -29,33
- 1660: -30,33
- 1661: -28,27
- 1662: -28,26
- 1663: -28,26
- 1664: -27,26
- 1665: -27,27
- 1666: -27,26
- 1667: -29,28
- 1668: -30,27
- 1669: -30,28
- 1670: -30,30
- 1671: -31,29
- 1672: -32,30
- 1673: -33,30
- 1674: -33,31
- 1675: -22,36
- - node:
- color: '#AD9584FF'
- id: Dirt
- decals:
- 1843: 0,10
- 1844: 1,10
- 1856: 15,6
- 1857: 16,6
- 1858: 16,7
- 1859: 16,6
- 2501: 18,19
- 2502: 18,20
- 2503: 19,19
- 2504: 9,25
- 2505: 9,24
- 2506: 8,25
- 2507: 7,23
- 2508: 6,24
- 2509: 6,25
- 2510: 10,25
- 2511: 9,26
- 2512: 8,26
- 2513: 8,27
- 2514: 9,27
- 2515: 10,28
- 2516: 10,29
- 2517: 9,29
- 2518: 9,28
- 2519: 8,33
- 2520: 8,31
- 2521: 8,30
- 2522: 9,30
- 2523: 8,32
- 2524: 8,28
- 2525: 8,29
- 2526: 7,30
- 2527: 7,29
- 2528: 7,27
- 2529: 6,27
- 2530: 6,29
- 2531: 7,28
- 2532: 6,28
- 2533: 2,29
- 2534: 3,29
- 2535: 3,31
- 2536: 2,31
- 2537: 2,32
- 2538: 3,32
- 2539: 3,30
- 2540: 4,31
- 2541: 4,30
- 2542: 4,29
- 2543: 4,28
- 2544: -15,35
- 2545: -14,35
- - node:
- color: '#FFFFFF53'
- id: Dirt
- decals:
- 2722: 4,-2
- 2723: 3,-2
- 2724: 3,-3
- 2725: 5,-3
- 2726: 4,-4
- 2727: 3,-5
- 2728: 5,-6
- 2729: 7,-5
- - node:
- color: '#FFFFFF82'
- id: Dirt
- decals:
- 2661: -14,-2
- 2662: -13,-2
- 2663: -13,-3
- 2664: -14,-3
- 2665: -16,-4
- 2666: -15,-4
- 2667: -14,-4
- 2668: -15,-3
- 2669: -13,-5
- 2670: -15,-5
- 2671: -2,8
- 2672: -2,7
- 2673: -1,8
- 2674: -1,7
- 2675: -1,7
- 2676: 0,8
- 2677: 0,7
- 2678: -2,6
- 2679: -1,6
- - node:
- color: '#FFFFFFFF'
- id: Dirt
- decals:
- 1801: -20,16
- 1802: -21,16
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: Dirt
- decals:
- 1725: 16,22
- 1726: 16,22
- 1727: 16,22
- 1728: 17,23
- 1729: 16,23
- 1730: 15,23
- 1731: 15,22
- 1732: 14,23
- 1733: 14,23
- 1734: 15,23
- 1735: 16,24
- 1736: 15,24
- 1737: 14,24
- 1738: 13,24
- 1739: 14,24
- 1740: 15,23
- 1741: 17,22
- 1742: 17,22
- 1743: 18,22
- 1744: 17,24
- 1745: 19,24
- 1746: 18,24
- 1747: 19,24
- 1748: 16,23
- 1749: 16,23
- 1750: 14,24
- 1751: 15,23
- 1752: 15,22
- 1753: 14,24
- 1754: 13,24
- 1755: 12,24
- 1756: 11,24
- 1757: 11,24
- 1758: 11,24
- 1759: 11,24
- 1760: 10,23
- 1761: 10,22
- 1762: 10,22
- 1763: 9,23
- 1764: 15,16
- 1765: 15,16
- 1766: 15,15
- 1767: 16,15
- 1768: 17,15
- 1769: 16,16
- 1770: 18,16
- 1771: 17,15
- 1772: 15,15
- 1773: 15,14
- 1774: 14,14
- 1775: 15,14
- 1776: 15,15
- 1777: 17,15
- 1778: 18,16
- 1779: 15,14
- 1780: 13,14
- 1781: 13,14
- 1782: 13,14
- 1783: 16,15
- 1784: 18,15
- 1785: 18,16
- 1786: 19,16
- 1787: 19,16
- 1788: 17,17
- 1789: 17,17
- 1790: 19,17
- 1791: 19,18
- 1792: 18,17
- 1793: 15,17
- 1794: 15,17
- 1795: 15,22
- 1796: 16,21
- 1797: 17,21
- 1798: 19,21
- 1799: 19,21
- - node:
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
- 675: 13,19
- 676: 13,19
- 677: 13,20
- 678: 14,20
- 2555: -19,34
- 2556: -19,34
- 2557: -19,35
- 2558: -18,36
- 2559: -17,35
- 2560: -17,34
- 2561: -18,34
- 2562: -18,31
- 2563: -18,32
- 2564: -17,32
- 2565: -17,31
- 2566: -17,31
- 2567: -18,31
- 2568: -18,31
- 2569: -17,30
- 2570: -18,30
- 2571: -19,30
- 2572: -20,30
- 2573: -22,31
- 2574: -22,30
- 2575: -22,30
- 2576: -23,30
- 2577: -23,32
- 2578: -23,33
- 2579: -23,33
- 2621: -25,27
- 2622: -25,27
- 2623: -26,27
- 2624: -25,29
- 2625: -24,28
- 2626: -24,28
- 2627: -25,29
- 2628: -25,28
- 2629: -25,28
- 2630: -24,28
- 2631: -25,27
- 2645: -21,5
- 2646: -19,6
- 2651: -23,1
- 2656: -13,9
- 2660: -6,-3
- 2680: -2,8
- 2681: -2,7
- 2682: -1,7
- 2683: 0,8
- 2684: 0,7
- 2691: -2,3
- 2692: -1,2
- 2693: -1,2
- 2694: -2,1
- 2695: -2,1
- 2696: -1,0
- 2697: 1,1
- 2703: -1,-9
- 2704: -1,-11
- 2705: -2,-10
- 2706: -1,-9
- 2707: -1,-10
- 2708: -3,-9
- 2709: -3,-9
- 2710: -1,-9
- 2711: 4,-5
- 2712: 9,-2
- 2713: 11,-3
- 2714: 10,-4
- 2715: 10,-6
- 2716: 9,4
- 2717: 9,2
- 2718: 8,2
- 2730: -21,-3
- 2734: -16,1
- 2737: -13,13
- 2740: -13,12
- 2741: -14,13
- 2742: -12,13
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
- 0: 10,19
- 1: 10,19
- 2: 10,19
- 3: 9,19
- 4: 11,19
- 5: 11,19
- 6: 12,19
- 7: 12,20
- 8: 12,20
- 9: 12,18
- 10: 12,18
- 11: 13,18
- 12: 13,18
- 13: 14,18
- 14: 14,19
- 15: 14,19
- 1068: 8,-1
- - node:
- color: '#FFFFFFFF'
- id: DirtHeavyMonotile
- decals:
- 2546: -18,34
- 2547: -19,35
- 2548: -19,35
- 2549: -18,36
- 2550: -18,36
- 2551: -17,34
- 2552: -18,34
- 2553: -18,35
- 2554: -17,35
- 2580: -23,32
- 2581: -23,33
- 2582: -22,33
- 2583: -23,34
- 2584: -22,34
- 2585: -21,34
- 2586: -21,33
- 2587: -21,32
- 2588: -21,31
- 2589: -22,31
- 2590: -22,30
- 2591: -21,31
- 2592: -20,32
- 2593: -19,31
- 2594: -19,30
- 2612: -22,28
- 2613: -23,28
- 2614: -23,27
- 2615: -22,28
- 2616: -21,28
- 2617: -21,27
- 2618: -22,27
- 2619: -22,27
- 2620: -22,28
- 2647: -20,5
- 2648: -21,5
- 2649: -21,6
- 2652: -22,2
- 2653: -22,9
- 2657: -13,2
- 2685: -3,8
- 2686: -3,7
- 2687: 1,8
- 2688: 1,7
- 2689: -1,4
- 2690: 0,4
- 2719: 4,2
- 2720: 4,2
- 2721: 5,4
- 2731: -21,-2
- 2738: -14,12
- 2751: -10,6
- 2752: -8,6
- 2753: -6,6
- 2754: -6,7
- 2755: -9,8
- 2756: -8,8
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtHeavyMonotile
- decals:
- 16: 15,19
- 17: 15,19
- 18: 15,19
- 19: 13,18
- 20: 12,18
- 21: 12,19
- 22: 12,19
- 23: 14,20
- 24: 14,19
- 25: 12,19
- 26: 11,19
- 1702: -16,35
- 1703: -14,35
- 1704: -15,36
- 1705: -15,35
- 1706: -15,34
- 1707: -16,35
- 1708: -17,36
- 1709: -18,36
- 1710: -18,34
- 1711: -19,35
- 1712: -18,31
- 1713: -19,32
- - node:
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 2595: -21,31
- 2596: -21,31
- 2597: -20,32
- 2598: -20,31
- 2599: -21,31
- 2600: -21,32
- 2601: -19,32
- 2602: -18,31
- 2603: -19,30
- 2604: -21,30
- 2605: -22,30
- 2606: -20,30
- 2607: -18,30
- 2608: -17,31
- 2609: -17,32
- 2610: -22,32
- 2611: -22,32
- 2654: -22,8
- 2735: -20,9
- 2736: -13,12
- 2739: -12,12
- 2757: -10,9
- 2758: -9,10
- 2759: -8,10
- 2760: -6,10
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 1714: -21,30
- 1715: -23,32
- 1716: -21,33
- 1717: -23,34
- 1718: -23,28
- 1719: -21,27
- 1720: -22,31
- - node:
- color: '#FFFFFFFF'
- id: DirtMedium
- decals:
- 2632: -24,27
- 2633: -24,28
- 2634: -24,28
- 2635: -23,28
- 2636: -23,28
- 2637: -22,27
- 2638: -18,33
- 2639: -18,33
- 2640: -19,33
- 2641: -19,33
- 2642: -17,33
- 2643: -17,32
- 2644: -17,32
- 2650: -23,4
- 2655: -16,8
- 2658: -14,2
- 2659: -8,4
- 2698: -3,-3
- 2699: -3,-4
- 2700: -2,-2
- 2701: -1,-2
- 2702: -1,-3
- 2732: -21,-5
- 2733: -20,1
- 2743: -10,6
- 2744: -10,7
- 2745: -9,8
- 2746: -8,7
- 2747: -8,6
- 2748: -6,6
- 2749: -6,7
- 2750: -6,8
- - node:
- color: '#9C202066'
- id: FullTileOverlayGreyscale
- decals:
- 1982: -2,-4
- 1983: -1,-4
- 1984: -1,-5
- 1985: 0,-4
- - node:
- color: '#5712124D'
- id: HalfTileOverlayGreyscale
- decals:
- 1997: -1,-4
- 2002: -1,-6
- - node:
- color: '#571212B4'
- id: HalfTileOverlayGreyscale
- decals:
- 1688: -22,34
- 1690: -20,32
- 1698: -18,36
- 1699: -17,36
- - node:
- color: '#9C202066'
- id: HalfTileOverlayGreyscale
- decals:
- 1986: -1,-6
- - node:
- color: '#571212B4'
- id: HalfTileOverlayGreyscale180
- decals:
- 1679: -18,30
- 1680: -19,30
- 1681: -20,30
- - node:
- color: '#5712124D'
- id: HalfTileOverlayGreyscale270
- decals:
- 1998: -2,-4
- - node:
- color: '#571212B4'
- id: HalfTileOverlayGreyscale270
- decals:
- 1682: -23,30
- 1683: -23,31
- 1684: -23,32
- 1685: -23,33
- 1695: -19,34
- 1696: -19,35
- - node:
- color: '#5712124D'
- id: HalfTileOverlayGreyscale90
- decals:
- 1999: 0,-4
- - node:
- color: '#571212B4'
- id: HalfTileOverlayGreyscale90
- decals:
- 1676: -17,32
- 1677: -17,31
- 1689: -21,33
- - node:
- color: '#571212B4'
- id: QuarterTileOverlayGreyscale
- decals:
- 1693: -19,32
- - node:
- color: '#5712124D'
- id: QuarterTileOverlayGreyscale180
- decals:
- 2004: 0,-3
- - node:
- color: '#571212B4'
- id: QuarterTileOverlayGreyscale180
- decals:
- 1691: -21,30
- 1694: -17,34
- - node:
- color: '#5712124D'
- id: QuarterTileOverlayGreyscale270
- decals:
- 2003: -2,-3
- - node:
- color: '#571212B4'
- id: QuarterTileOverlayGreyscale90
- decals:
- 1692: -21,32
- - node:
- color: '#FFFFFFFF'
- id: Remains
- decals:
- 679: 13.05558,19.34375
- 1800: -20.616756,15.952148
- - node:
- color: '#571212B4'
- id: ThreeQuarterTileOverlayGreyscale
- decals:
- 1686: -23,34
- 1697: -19,36
- - node:
- color: '#9C202066'
- id: ThreeQuarterTileOverlayGreyscale
- decals:
- 1981: 0,-5
- - node:
- color: '#571212B4'
- id: ThreeQuarterTileOverlayGreyscale180
- decals:
- 1678: -17,30
- - node:
- color: '#9C202066'
- id: ThreeQuarterTileOverlayGreyscale180
- decals:
- 1975: 0,-3
- - node:
- color: '#9C202066'
- id: ThreeQuarterTileOverlayGreyscale270
- decals:
- 1968: -2,-3
- - node:
- color: '#571212B4'
- id: ThreeQuarterTileOverlayGreyscale90
- decals:
- 1687: -21,34
- - node:
- color: '#9C202066'
- id: ThreeQuarterTileOverlayGreyscale90
- decals:
- 1979: -2,-5
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerSE
- decals:
- 1721: -21,24
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerSW
- decals:
- 1722: -23,24
- - node:
- color: '#FFFFFFFF'
- id: WarnLineE
- decals:
- 1724: -21,25
- - node:
- color: '#FFFFFFFF'
- id: WarnLineN
- decals:
- 1723: -22,24
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinCornerNe
- decals:
- 1954: 5,-2
- 1955: 7,-4
- 2315: -11,-2
- 2319: -10,-6
- 2350: -13,-5
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinCornerNw
- decals:
- 1956: 3,-2
- 2307: -19,-2
- 2349: -16,-5
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinCornerSe
- decals:
- 1957: 7,-6
- 2320: -10,-7
- 2332: -11,-8
- 2351: -13,-7
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinCornerSw
- decals:
- 1958: 3,-6
- 2323: -18,-8
- 2324: -19,-7
- 2352: -16,-7
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinInnerNe
- decals:
- 1970: 5,-4
- 1974: 4,-2
- 1980: 7,-5
- 2329: -11,-6
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinInnerNw
- decals:
- 1973: 4,-2
- 1977: 3,-3
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinInnerSe
- decals:
- 1972: 4,-6
- 1976: 7,-5
- 2331: -11,-7
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinInnerSw
- decals:
- 1971: 4,-6
- 1978: 3,-3
- 2330: -18,-7
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinLineE
- decals:
- 1962: 2,-3
- 1969: 5,-3
- 2316: -11,-3
- 2317: -11,-4
- 2318: -11,-5
- 2353: -13,-6
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinLineN
- decals:
- 1966: 4,-7
- 1967: 6,-4
- 2308: -18,-2
- 2309: -17,-2
- 2310: -16,-2
- 2311: -15,-2
- 2312: -14,-2
- 2313: -13,-2
- 2314: -12,-2
- 2354: -15,-5
- 2355: -14,-5
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinLineS
- decals:
- 1959: 5,-6
- 1960: 6,-6
- 1961: 4,-1
- 2321: -12,-8
- 2322: -17,-8
- 2343: -16,-8
- 2344: -15,-8
- 2345: -14,-8
- 2346: -13,-8
- 2347: -15,-7
- 2348: -14,-7
- - node:
- color: '#DABC8BFF'
- id: WoodTrimThinLineW
- decals:
- 1963: 3,-5
- 1964: 3,-4
- 1965: 8,-5
- 2325: -19,-6
- 2326: -19,-5
- 2327: -19,-4
- 2328: -19,-3
- 2356: -16,-6
- - node:
- color: '#D4D4D496'
- id: disk
- decals:
- 1806: 8,10
- - node:
- cleanable: True
- color: '#FFFFFF66'
- id: splatter
- decals:
- 2416: 2.671423,33.880127
- 2417: 2.843298,34.005127
- 2418: 3.218298,34.536377
- 2419: 2.937048,34.395752
- 2420: 2.577673,34.286377
- 2421: 2.280798,33.927002
- 2422: 2.358923,33.848877
- 2423: 3.062048,33.942627
- - type: GridAtmosphere
- version: 2
- data:
- tiles:
- 0,0:
- 0: 65535
- -1,0:
- 0: 65535
- -1,-1:
- 0: 65535
- 0,-1:
- 0: 65535
- 0,1:
- 0: 65535
- 0,2:
- 0: 65535
- 0,3:
- 0: 65535
- 1,0:
- 0: 65535
- 1,1:
- 0: 65535
- 1,2:
- 0: 65535
- 1,3:
- 0: 65535
- 2,0:
- 0: 65535
- 2,1:
- 0: 65535
- 2,2:
- 0: 65535
- 2,3:
- 0: 65535
- 3,0:
- 0: 29557
- 3,1:
- 0: 65395
- 3,3:
- 0: 65329
- -4,0:
- 0: 65535
- -4,1:
- 0: 65535
- -4,2:
- 0: 65535
- -4,3:
- 0: 65535
- -3,0:
- 0: 65535
- -3,1:
- 0: 65535
- -3,2:
- 0: 65535
- -3,3:
- 0: 65535
- -2,0:
- 0: 65535
- -2,1:
- 0: 65535
- -2,2:
- 0: 65535
- -2,3:
- 0: 65535
- -1,1:
- 0: 65535
- -1,2:
- 0: 65535
- -1,3:
- 0: 65535
- -4,-1:
- 0: 65464
- -4,-2:
- 0: 32768
- -3,-3:
- 0: 7936
- -3,-2:
- 0: 40849
- -3,-1:
- 0: 65224
- -2,-3:
- 0: 9006
- -2,-2:
- 0: 57330
- 1: 8192
- -2,-1:
- 0: 65535
- -1,-3:
- 0: 65535
- -1,-2:
- 0: 65535
- 0,-3:
- 0: 63359
- 0,-2:
- 0: 65535
- 1,-3:
- 0: 63631
- 1,-2:
- 0: 65535
- 1,-1:
- 0: 65535
- 2,-3:
- 0: 8899
- 2,-2:
- 0: 63487
- 1: 2048
- 2,-1:
- 0: 65535
- 3,-3:
- 0: 17520
- 3,-2:
- 0: 29764
- 3,-1:
- 0: 21572
- -7,3:
- 0: 65535
- -7,2:
- 0: 65535
- -6,2:
- 0: 65535
- -6,3:
- 0: 65535
- -6,1:
- 0: 65535
- -6,0:
- 0: 65534
- -5,0:
- 0: 65519
- 2: 16
- -5,1:
- 0: 65535
- -5,2:
- 0: 65535
- -5,3:
- 0: 65535
- -5,-1:
- 0: 65520
- -8,7:
- 0: 65516
- -7,4:
- 0: 65535
- -7,7:
- 0: 65535
- -7,6:
- 0: 65420
- -6,4:
- 0: 65535
- -6,5:
- 0: 65535
- -6,6:
- 0: 57343
- 2: 8192
- -6,7:
- 0: 16383
- -5,4:
- 0: 65535
- -5,5:
- 0: 32767
- -5,6:
- 0: 65331
- -5,7:
- 0: 65279
- 1: 256
- -4,4:
- 0: 65535
- -4,5:
- 0: 65535
- -4,6:
- 0: 6351
- -4,7:
- 0: 30512
- -3,4:
- 0: 65535
- -3,5:
- 0: 40959
- -3,6:
- 0: 2305
- -3,7:
- 0: 63180
- -2,4:
- 0: 65535
- -2,5:
- 0: 65535
- -2,6:
- 0: 65519
- -2,7:
- 0: 65535
- -1,4:
- 0: 65535
- -1,5:
- 0: 65535
- -1,6:
- 0: 57343
- -1,7:
- 0: 29459
- 0,4:
- 0: 65535
- 0,5:
- 0: 65535
- 0,6:
- 0: 65535
- 0,7:
- 0: 9775
- 1,4:
- 0: 65535
- 1,5:
- 0: 32767
- 1,6:
- 0: 16315
- 1,7:
- 0: 58914
- 2,4:
- 0: 65535
- 2,5:
- 0: 65535
- 2,6:
- 0: 52365
- 2,7:
- 0: 60552
- 3,4:
- 0: 65535
- 3,5:
- 0: 65535
- 3,6:
- 0: 65535
- 3,7:
- 0: 65535
- -7,8:
- 0: 1279
- -6,8:
- 0: 29491
- -5,8:
- 0: 13030
- 1: 8
- -4,8:
- 0: 8191
- -3,8:
- 0: 62975
- -3,9:
- 0: 4991
- -2,8:
- 0: 55611
- -2,9:
- 0: 7
- -1,8:
- 0: 1023
- 0,8:
- 0: 61427
- 0,9:
- 0: 52991
- 0,10:
- 0: 2252
- 1,8:
- 0: 65535
- 1,9:
- 0: 13215
- 1,10:
- 0: 1015
- 2,8:
- 0: 65518
- 2,9:
- 0: 127
- 3,8:
- 0: 16383
- 3,9:
- 0: 1
- 3,2:
- 0: 13175
- -8,3:
- 0: 60616
- -8,2:
- 0: 32768
- -7,1:
- 0: 61132
- -7,0:
- 0: 51200
- -6,-1:
- 0: 60608
- -8,4:
- 0: 36079
- -8,6:
- 0: 49152
- -7,5:
- 0: 61167
- -8,8:
- 0: 199
- 4,1:
- 0: 4096
- 4,3:
- 0: 29440
- 4,4:
- 0: 65535
- 4,5:
- 0: 14335
- 4,6:
- 0: 65535
- 4,7:
- 0: 6143
- 5,6:
- 0: 4352
- 5,7:
- 0: 1
- 4,8:
- 0: 51
- -9,7:
- 0: 34816
- -7,9:
- 0: 36044
- -6,9:
- 0: 65535
- -6,10:
- 0: 36045
- -5,9:
- 0: 65535
- -5,10:
- 0: 21503
- 3: 8192
- -5,11:
- 0: 2
- -4,9:
- 0: 65535
- -4,10:
- 0: 159
- -3,10:
- 0: 1
- uniqueMixes:
- - volume: 2500
- temperature: 293.15
- moles:
- - 21.824879
- - 82.10312
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.14975
- moles:
- - 20.078888
- - 75.53487
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 21.6852
- - 81.57766
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.1498
- moles:
- - 20.078888
- - 75.53487
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- chunkSize: 4
- - type: GasTileOverlay
- - type: RadiationGridResistance
- - type: NavMap
-- proto: AccordionInstrument
- entities:
- - uid: 11
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 85.55688,7.882455
- parent: 2
-- proto: AcousticGuitarInstrument
- entities:
- - uid: 12
->>>>>>> master
components:
- type: Transform
pos: -8.45285,29.39347
parent: 2
-<<<<<<< HEAD
- proto: ActionToggleLight
entities:
- uid: 6
@@ -56073,317691 +27400,75828 @@ entities:
- proto: AirlockArmoryGlassLocked
entities:
- uid: 216
-=======
- - uid: 13
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 85.43188,7.632456
+ pos: 49.5,4.5
parent: 2
-- proto: ActionToggleInternals
- entities:
- - uid: 16
+ - uid: 38715
components:
- type: Transform
- parent: 15
- - type: InstantAction
- container: 15
-- proto: ActionToggleLight
+ rot: 1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 38714
+- proto: AirlockArmoryLocked
entities:
- - uid: 30
+ - uid: 217
components:
- type: Transform
- parent: 29
- - type: InstantAction
- container: 29
-- proto: AirAlarm
+ pos: 60.5,5.5
+ parent: 2
+ - uid: 218
+ components:
+ - type: Transform
+ pos: 60.5,4.5
+ parent: 2
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 64.5,4.5
+ parent: 2
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 64.5,5.5
+ parent: 2
+- proto: AirlockAssembly
entities:
- - uid: 32
+ - uid: 221
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-14.5
+ pos: -37.5,-0.5
parent: 2
- - type: DeviceList
- devices:
- - 22251
- - 22412
- - 22252
- - 22257
- - 22429
- - uid: 33
+- proto: AirlockAtmosphericsGlass
+ entities:
+ - uid: 222
components:
+ - type: MetaData
+ name: контроль распределения
- type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-0.5
+ pos: -50.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 788
- - 856
- - 22529
- - 22530
- - 22535
- - 22370
- - 22533
- - 22531
- - 22532
- - 18240
- - 18262
- - 18263
- - uid: 34
+- proto: AirlockAtmosphericsGlassLocked
+ entities:
+ - uid: 223
components:
+ - type: MetaData
+ name: тэг
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-30.5
+ pos: -47.5,43.5
parent: 2
- - uid: 35
+ - uid: 224
components:
+ - type: MetaData
+ name: турбина
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-40.5
+ pos: -62.5,53.5
parent: 2
- - type: DeviceList
- devices:
- - 18051
- - 18048
- - 18185
- - 18159
- - 745
- - uid: 36
+ - uid: 225
components:
+ - type: MetaData
+ name: турбина
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,6.5
+ pos: -60.5,57.5
parent: 2
- - type: DeviceList
- devices:
- - 18166
- - 18180
- - 18070
- - 18152
- - 18131
- - 18192
- - 18156
- - 18040
- - 18089
- - 773
- - 22407
- - 817
- - uid: 37
+ - uid: 226
components:
+ - type: MetaData
+ name: атмосферная
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-30.5
+ pos: -60.5,48.5
parent: 2
- - type: DeviceList
- devices:
- - 22484
- - 22355
- - 22249
- - 22244
- - 836
- - 22492
- - 22248
- - 22250
- - 22485
- - 18138
- - 18154
- - 18035
- - 18062
- - 18063
- - 18061
- - uid: 38
+ - uid: 227
components:
+ - type: MetaData
+ name: атмосферная
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-45.5
+ pos: -60.5,50.5
parent: 2
- - type: DeviceList
- devices:
- - 18185
- - 18159
- - 18062
- - 18063
- - 18061
- - 22247
- - 22493
- - 22494
- - 22246
- - uid: 39
+ - uid: 228
components:
+ - type: MetaData
+ name: атмосферная
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-45.5
+ pos: -53.5,43.5
parent: 2
- - type: DeviceList
- devices:
- - 22491
- - 22245
- - 22490
- - 22242
- - 745
- - 22489
- - 838
- - 22243
- - 18158
- - 18045
- - 18184
- - 18048
- - 18051
- - uid: 40
+ - uid: 229
components:
+ - type: MetaData
+ name: атмосферная
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-59.5
+ pos: -55.5,43.5
parent: 2
- - uid: 41
+ - uid: 230
components:
+ - type: MetaData
+ name: атмосферная
- type: Transform
rot: 1.5707963267948966 rad
- pos: -74.5,1.5
+ pos: -50.5,41.5
parent: 2
- - type: DeviceList
- devices:
- - 22339
- - 22340
- - 22384
- - 22341
- - 22342
- - 770
- - 22385
- - 22386
- - 22343
- - 22387
- - uid: 42
+ - uid: 231
components:
+ - type: MetaData
+ name: приёмная атмоса
- type: Transform
- pos: -120.5,20.5
+ pos: -50.5,21.5
parent: 2
- - type: DeviceList
- devices:
- - 755
- - 18218
- - 18217
- - uid: 43
+ - uid: 232
components:
+ - type: MetaData
+ name: смесительная камера
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -124.5,23.5
+ pos: -63.5,24.5
parent: 2
- - type: DeviceList
- devices:
- - 22524
- - 22358
- - 761
- - 18219
- - uid: 44
+ - uid: 233
components:
+ - type: MetaData
+ name: атмосферная
- type: Transform
- rot: 3.141592653589793 rad
- pos: -114.5,20.5
+ pos: -61.5,38.5
parent: 2
- - type: DeviceList
- devices:
- - 762
- - 22521
- - 22360
- - 18220
- - uid: 45
+ - uid: 234
components:
+ - type: MetaData
+ name: атмосферная
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,24.5
+ pos: -59.5,38.5
parent: 2
- - type: DeviceList
- devices:
- - 22365
- - 22526
- - 756
- - 18222
- - 18221
- - 18220
- - 18217
- - 18218
- - 18219
- - uid: 46
+ - uid: 235
components:
+ - type: MetaData
+ name: комната снаряжения атмоса
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,38.5
+ pos: -54.5,31.5
parent: 2
- - type: DeviceList
- devices:
- - 22527
- - 22364
- - 757
- - 18228
- - 18227
- - 18225
- - 18226
- - 18223
- - 18224
- - 18222
- - 18221
- - uid: 47
+ - uid: 236
components:
+ - type: MetaData
+ name: комната снаряжения атмоса
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -116.5,41.5
+ pos: -54.5,39.5
parent: 2
- - type: DeviceList
- devices:
- - 22361
- - 759
- - 22523
- - 18225
- - 18226
- - uid: 48
+- proto: AirlockAtmosphericsLocked
+ entities:
+ - uid: 237
components:
+ - type: MetaData
+ name: атмосферная
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,41.5
+ pos: -53.5,24.5
parent: 2
- - type: DeviceList
- devices:
- - 22359
- - 760
- - 22522
- - 18223
- - 18224
- - uid: 49
+ - uid: 238
components:
+ - type: MetaData
+ name: атмосферная
- type: Transform
- rot: 3.141592653589793 rad
- pos: -120.5,44.5
+ pos: -52.5,24.5
parent: 2
- - type: DeviceList
- devices:
- - 18227
- - 18228
- - 22525
- - 758
- - 22362
- - uid: 50
+ - uid: 239
components:
+ - type: MetaData
+ name: комната тестов атмосферы
- type: Transform
- pos: 71.5,-40.5
+ pos: -69.5,-29.5
parent: 2
- - type: DeviceList
- devices:
- - 764
- - 17948
- - 17947
- - 17887
- - 17886
- - uid: 51
+ - uid: 240
components:
+ - type: MetaData
+ name: вход в атмосферную
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,12.5
+ pos: -53.5,19.5
parent: 2
- - type: DeviceList
- devices:
- - 22273
- - 22367
- - 22380
- - 22377
- - uid: 52
+ - uid: 241
components:
+ - type: MetaData
+ name: вход в атмосферную
- type: Transform
- pos: -34.5,7.5
+ pos: -52.5,19.5
parent: 2
- - type: DeviceList
- devices:
- - 18122
- - 18069
- - 18081
- - 22401
- - 815
- - 22333
- - 18058
- - 18057
- - 18127
- - 22334
- - 18077
- - 18130
- - 18080
- - 18116
- - 18068
- - 18190
- - 18056
- - 747
- - 22406
- - 22332
- - uid: 53
+ - uid: 242
components:
+ - type: MetaData
+ name: комната тестов атмосферы
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,36.5
+ pos: -69.5,-21.5
parent: 2
- - type: DeviceList
- devices:
- - 793
- - 22448
- - 850
- - 22315
- - 18165
- - 18042
- - 18142
- - 18107
- - 18023
- - 17937
- - 17930
- - 17943
- - 17927
- - 17932
- - 17924
- - 17902
- - 17899
- - 17942
- - 17898
- - 17915
- - 22316
- - 22451
- - uid: 54
+- proto: AirlockBarLocked
+ entities:
+ - uid: 243
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,19.5
+ pos: -8.5,45.5
parent: 2
- - uid: 55
+ - uid: 244
components:
- type: Transform
- pos: -51.5,43.5
+ pos: -4.5,37.5
parent: 2
- - type: DeviceList
- devices:
- - 22201
- - 813
- - 18241
- - 18242
- - 22200
- - 807
- - 18247
- - 18248
- - 18243
- - 18246
- - 18249
- - 22199
- - 808
- - 18245
- - 18244
- - 17993
- - 17997
- - uid: 56
+- proto: AirlockBrigGlassLocked
+ entities:
+ - uid: 245
components:
- type: Transform
- pos: -53.5,52.5
+ pos: 38.5,6.5
parent: 2
- - uid: 57
+ - uid: 246
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,58.5
+ pos: 38.5,4.5
parent: 2
- - type: DeviceList
- devices:
- - 18252
- - 18251
- - 742
- - 22191
- - uid: 58
+- proto: AirlockCaptainLocked
+ entities:
+ - uid: 247
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -55.5,25.5
+ pos: 8.5,4.5
parent: 2
- - type: DeviceList
- devices:
- - 18124
- - 18254
- - 18255
- - 814
- - 806
- - 17992
- - 18253
- - 17963
- - uid: 59
+ - uid: 248
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,12.5
parent: 2
- - type: DeviceList
- devices:
- - 22399
- - 22337
- - 22336
- - 22398
- - 22338
- - 22383
- - 22202
- - uid: 60
+ - uid: 249
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-0.5
parent: 2
- - type: DeviceList
- devices:
- - 22349
- - 22379
- - 22389
- - 22348
- - 22388
- - 22350
- - uid: 61
+- proto: AirlockCargoGlassLocked
+ entities:
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 11.5,28.5
+ parent: 2
+ - uid: 251
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -74.5,13.5
+ pos: 15.5,33.5
parent: 2
- - type: DeviceList
- devices:
- - 22339
- - 22340
- - uid: 62
+ - uid: 252
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-10.5
+ pos: 10.5,41.5
parent: 2
- - type: DeviceList
- devices:
- - 22394
- - 22347
- - 22390
- - 22344
- - 22375
- - 22346
- - 22393
- - 22345
- - 22391
- - 771
- - 22392
- - uid: 63
+ - uid: 253
components:
- type: Transform
- pos: -27.5,-0.5
+ pos: 4.5,32.5
parent: 2
- - type: DeviceList
- devices:
- - 17877
- - 17878
- - 17869
- - 17876
- - 17880
- - 17881
- - 816
- - 22272
- - 22402
- - 22271
- - 746
- - 22403
- - 22270
- - 22405
- - 22404
- - uid: 64
+ - uid: 254
components:
- type: Transform
- pos: -1.5,-6.5
+ pos: 5.5,38.5
parent: 2
- - type: DeviceList
- devices:
- - 774
- - 17895
- - 17892
- - 17950
- - 775
- - 22411
- - 22256
- - 17896
- - 17897
- - 17949
- - 18136
- - 18017
- - 18264
- - 18050
- - 18020
- - 17953
- - 22258
- - 22259
- - 22261
- - 22260
- - uid: 65
+ - uid: 255
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,2.5
+ pos: 12.5,45.5
parent: 2
- - type: DeviceList
- devices:
- - 22431
- - 22268
- - 22378
- - 22267
- - 22266
- - uid: 66
+ - uid: 256
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,4.5
+ pos: 10.5,38.5
parent: 2
- - type: DeviceList
- devices:
- - 22432
- - 22275
- - 22274
- - 22433
- - 22434
- - uid: 67
+- proto: AirlockCargoLocked
+ entities:
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 12.5,36.5
+ parent: 2
+ - uid: 258
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,-14.5
+ pos: 14.5,52.5
parent: 2
- - type: DeviceList
- devices:
- - 22410
- - 22262
- - uid: 68
+ - uid: 259
components:
- type: Transform
- pos: -50.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,53.5
parent: 2
- - type: DeviceList
- devices:
- - 22202
- - 22206
- - 22382
- - 22205
- - 22397
- - 22396
- - 18039
- - 18256
- - 18257
- - 18183
- - 22395
- - 22400
- - 22335
- - 805
- - 18261
- - 18260
- - 18259
- - uid: 69
+ - uid: 260
components:
- type: Transform
- pos: 54.5,2.5
+ pos: 12.5,35.5
parent: 2
- - type: DeviceList
- devices:
- - 22285
- - 17962
- - 17969
- - 17973
- - 22471
- - 22472
- - 22292
- - 22481
- - uid: 70
+- proto: AirlockChapelLocked
+ entities:
+ - uid: 261
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,26.5
+ pos: -13.5,-76.5
parent: 2
- - type: DeviceList
- devices:
- - 17914
- - 17913
- - 17920
- - 17916
- - 17929
- - 17903
- - 17901
- - 17921
- - 17923
- - 17931
- - 17940
- - 17926
- - 848
- - 768
- - 22447
- - 22313
- - 17928
- - 17922
- - 17925
- - 17911
- - 17908
- - 17909
- - 17935
- - 17912
- - 17917
- - 17919
- - 17918
- - uid: 71
+ - uid: 262
components:
- type: Transform
- pos: -30.5,39.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-70.5
parent: 2
- - type: DeviceList
- devices:
- - 17900
- - 17939
- - 17938
- - 17936
- - 17933
- - 17905
- - 17907
- - 17904
- - 17941
- - 17934
- - 17906
- - 849
- - 22446
- - 22203
- - 22445
- - 22314
- - uid: 72
+ - uid: 263
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -24.5,46.5
+ pos: -21.5,-66.5
parent: 2
- - type: DeviceList
- devices:
- - 22449
- - 22317
- - 22318
- - 22450
- - uid: 73
+ - uid: 264
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -27.5,66.5
+ pos: -21.5,-65.5
parent: 2
- - type: DeviceList
- devices:
- - 18059
- - 18060
- - 18119
- - 18146
- - 18079
- - 22321
- - 855
- - 22463
- - 18078
- - 18073
- - 18145
- - 18198
- - 18129
- - 22464
- - 769
- - 22327
- - 803
- - 18074
- - 18072
- - 18083
- - 22326
- - 796
- - 22462
- - 22465
- - uid: 74
+ - uid: 265
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,27.5
+ pos: -18.5,-80.5
parent: 2
- - type: DeviceList
- devices:
- - 18105
- - 18103
- - 18102
- - 852
- - 22528
- - 22197
- - 853
- - 22374
- - 22198
- - 851
- - 18189
- - 18041
- - 18188
- - uid: 75
+- proto: AirlockChemistryLocked
+ entities:
+ - uid: 266
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,66.5
+ pos: 9.5,-35.5
parent: 2
- - type: DeviceList
- devices:
- - 22325
- - 22456
- - 854
- - 22322
- - 22323
- - 22329
- - 22457
- - 798
- - 18126
- - 18026
- - 18018
- - uid: 76
+- proto: AirlockChiefEngineerLocked
+ entities:
+ - uid: 267
components:
- type: Transform
- pos: -4.5,51.5
+ pos: -120.5,40.5
parent: 2
- - type: DeviceList
- devices:
- - 22453
- - 22319
- - 18121
- - 18120
- - 804
- - 22373
- - 22452
- - 22455
- - 22324
- - uid: 77
+ - uid: 268
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,74.5
+ pos: -120.5,39.5
parent: 2
- - type: DeviceList
- devices:
- - 22331
- - 799
- - 22330
- - 800
- - 22460
- - 22459
- - 17889
- - 17888
- - uid: 78
+ - uid: 269
components:
+ - type: MetaData
+ name: офис старшего инженера
- type: Transform
- pos: 6.5,32.5
+ pos: -59.5,10.5
parent: 2
- - type: DeviceList
- devices:
- - 18009
- - 18099
- - 18100
- - 18176
- - 22299
- - 750
- - 22435
- - 17994
- - 22436
- - 790
- - 22301
- - 18143
- - 18137
- - 17972
- - 17971
- - 17986
- - 22300
- - 789
- - 18196
- - 847
- - 22437
- - 22443
- - uid: 79
+ - uid: 270
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,42.5
+ pos: -116.5,39.5
parent: 2
- - uid: 80
+ - uid: 271
components:
- type: Transform
- pos: 19.5,55.5
+ pos: -120.5,23.5
parent: 2
- - uid: 81
+ - uid: 272
components:
+ - type: MetaData
+ desc: 'ОСТОРОЖНО: КРОВАТЬ'
+ name: каюта старшего инженера
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,33.5
+ pos: -59.5,6.5
parent: 2
- - type: DeviceList
- devices:
- - 22306
- - 22307
- - uid: 82
+ - uid: 273
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,29.5
+ pos: -119.5,20.5
parent: 2
- - type: DeviceList
- devices:
- - 22351
- - 22439
- - 22303
- - 22304
- - 22305
- - uid: 83
+ - uid: 274
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-4.5
+ pos: -117.5,20.5
parent: 2
- - type: DeviceList
- devices:
- - 22254
- - 22419
- - 22418
- - 22253
- - 22466
- - uid: 84
+ - uid: 275
components:
- type: Transform
- pos: 32.5,7.5
+ pos: -116.5,40.5
parent: 2
- - type: DeviceList
- devices:
- - 22280
- - 822
- - 18112
- - 18195
- - 18006
- - 18194
- - 18095
- - 18144
- - 17944
- - 17893
- - 17894
- - 22281
- - uid: 85
+- proto: AirlockChiefMedicalOfficerLocked
+ entities:
+ - uid: 276
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,2.5
+ pos: 25.5,-43.5
parent: 2
- - type: DeviceList
- devices:
- - 824
- - 22468
- - 782
- - 22284
- - 22473
- - 22476
- - 22475
- - 22474
- - 22283
- - 22282
- - 18187
- - 18186
- - 17965
- - 17998
- - 17958
- - 784
- - 17962
- - 17969
- - 17973
- - 22470
- - 22469
- - 22467
- - uid: 86
+ - uid: 277
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-30.5
+ pos: 19.5,-43.5
parent: 2
- - type: DeviceList
- devices:
- - 18082
- - 18160
- - 18075
- - 18117
- - 18065
- - 18087
- - 18086
- - 18113
- - 18038
- - 18034
- - 22509
- - 18012
- - 18140
- - 18036
- - 22221
- - 828
- - uid: 87
+ - uid: 278
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,3.5
+ pos: 22.5,-49.5
parent: 2
- - type: DeviceList
- devices:
- - 22286
- - 22477
- - 783
- - 17884
- - 17885
- - 22480
- - 22204
- - uid: 88
+- proto: AirlockCommandGlassLocked
+ entities:
+ - uid: 279
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,14.5
+ pos: -13.5,14.5
parent: 2
- - type: DeviceList
- devices:
- - 785
- - 22287
- - 786
- - 22288
- - 18148
- - 18233
- - 18197
- - 18093
- - uid: 89
+ - uid: 280
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,17.5
+ pos: -16.5,15.5
parent: 2
- - type: DeviceList
- devices:
- - 18197
- - 18215
- - 18109
- - 22289
- - 22478
- - uid: 90
+ - uid: 281
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,22.5
+ pos: 12.5,15.5
parent: 2
- - type: DeviceList
- devices:
- - 22479
- - 787
- - 22290
- - 22291
- - 18216
- - 18213
- - 18109
- - 18215
- - 18148
- - 18233
- - uid: 91
+ - uid: 282
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,47.5
+ pos: -13.5,15.5
parent: 2
- - type: DeviceList
- devices:
- - 22438
- - 22302
- - 22444
- - 743
- - 22308
- - 22309
- - 22440
- - 22441
- - 22311
- - 22442
- - 792
- - 22310
- - 18094
- - 17982
- - 18110
- - 18111
- - 18096
- - uid: 92
+ - uid: 283
components:
- type: Transform
- pos: 83.5,3.5
+ pos: 12.5,14.5
parent: 2
- - uid: 93
+ - uid: 284
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,20.5
+ pos: -16.5,14.5
parent: 2
- - type: DeviceList
- devices:
- - 22482
- - 22296
- - 22372
- - 22295
- - 18230
- - uid: 94
+ - uid: 285
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,21.5
+ pos: 11.5,-15.5
parent: 2
- - type: DeviceList
- devices:
- - 18176
- - 18100
- - 18099
- - 18009
- - 22298
- - 18177
- - 18173
- - 18004
- - 820
- - 819
- - 22415
- - 18071
- - 18168
- - 18021
- - 22312
- - 818
- - 18156
- - 18040
- - 18089
- - 18041
- - 18188
- - 18189
- - uid: 95
+ - uid: 286
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 96.5,-1.5
+ pos: 15.5,15.5
parent: 2
- - type: DeviceList
- devices:
- - 18240
- - 18262
- - 18263
- - 22371
- - 22534
- - uid: 96
+ - uid: 287
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 94.5,16.5
+ pos: 15.5,14.5
parent: 2
- - type: DeviceList
- devices:
- - 18229
- - 22293
- - 765
- - 22294
- - 766
- - 22207
- - 18014
- - 18029
- - 18231
- - 767
- - uid: 97
+- proto: AirlockCommandLocked
+ entities:
+ - uid: 288
components:
+ - type: MetaData
+ name: питание мостика
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-12.5
+ pos: 13.5,-1.5
parent: 2
- - type: DeviceList
- devices:
- - 18125
- - 18151
- - 18115
- - 830
- - 18201
- - 18181
- - 18066
- - 831
- - 22420
- - uid: 98
+ - uid: 289
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-16.5
+ pos: -72.5,3.5
parent: 2
- - type: DeviceList
- devices:
- - 22276
- - 777
- - 22421
- - uid: 99
+ - uid: 290
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,-21.5
+ pos: 8.5,-17.5
parent: 2
- - type: DeviceList
- devices:
- - 22422
- - 22423
- - 22424
- - 22425
- - 22426
- - 22277
- - 778
- - uid: 100
+ - uid: 291
components:
+ - type: MetaData
+ name: генератор гравитации
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-26.5
+ pos: -71.5,9.5
parent: 2
- - type: DeviceList
- devices:
- - 780
- - 22279
- - 22278
- - 22428
- - 22427
- - 18170
- - 18179
- - 18162
- - 18171
- - 781
- - uid: 101
+ - uid: 292
components:
+ - type: MetaData
+ name: комната генератора гравитации
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-30.5
+ pos: -71.5,13.5
parent: 2
- - type: DeviceList
- devices:
- - 22222
- - 748
- - 22495
- - 18161
- - 18167
- - 18043
- - 18052
- - 18117
- - 18065
- - 22223
- - 22497
- - uid: 102
+ - uid: 293
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-42.5
+ pos: -35.5,17.5
parent: 2
- - type: DeviceList
- devices:
- - 858
- - uid: 103
+ - uid: 294
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-6.5
parent: 2
- - type: DeviceList
- devices:
- - 739
- - uid: 104
+ - uid: 295
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-39.5
+ pos: -9.5,12.5
parent: 2
- - type: DeviceList
- devices:
- - 843
- - 22231
- - 22507
- - 22376
- - 22233
- - 845
- - 840
- - 22504
- - uid: 105
+ - uid: 296
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-43.5
+ pos: 8.5,-9.5
parent: 2
- - type: DeviceList
- devices:
- - 844
- - 22232
- - 22506
- - 18098
- - 18169
- - 18141
- - 18147
- - uid: 106
+- proto: AirlockDetectiveGlassLocked
+ entities:
+ - uid: 297
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-28.5
+ pos: 29.5,7.5
parent: 2
- - type: DeviceList
- devices:
- - 22505
- - 841
- - 17990
- - 17960
- - 17961
- - 18067
- - 17976
- - 22496
- - uid: 107
+- proto: AirlockEngineeringGlassLocked
+ entities:
+ - uid: 298
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-43.5
+ pos: -61.5,1.5
parent: 2
- - type: DeviceList
- devices:
- - 22228
- - 22227
- - 22503
- - 22229
- - 839
- - 18238
- - 18237
- - 17956
- - 18090
- - 18085
- - 18015
- - 18064
- - 18150
- - 18199
- - uid: 108
+ - uid: 299
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-44.5
+ pos: -61.5,-6.5
parent: 2
- - type: DeviceList
- devices:
- - 22498
- - 22352
- - 22224
- - 752
- - 754
- - uid: 109
+ - uid: 300
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-54.5
+ pos: -58.5,55.5
parent: 2
- - type: DeviceList
- devices:
- - 22500
- - 22225
- - 18090
- - 18085
- - 18015
- - 22502
- - 22356
- - 22501
- - 751
- - 22226
- - uid: 110
+ - uid: 301
components:
+ - type: MetaData
+ name: хранилище скафандров
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-51.5
+ pos: -76.5,8.5
parent: 2
- - type: DeviceList
- devices:
- - 22234
- - 22508
- - 846
- - uid: 111
+ - uid: 302
components:
+ - type: MetaData
+ name: комната дополнительного инженерного снаряжения
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,3.5
+ pos: -57.5,16.5
parent: 2
- - type: DeviceList
- devices:
- - 22417
- - 825
- - 18144
- - 18095
- - 18194
- - 18174
- - 18092
- - 18005
- - 22297
- - 821
- - 18016
- - 18003
- - 18022
- - uid: 112
+ - uid: 303
components:
+ - type: MetaData
+ name: комната отдыха инженерии
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-57.5
+ pos: -59.5,14.5
parent: 2
- - type: DeviceList
- devices:
- - 18012
- - 18140
- - 18036
- - 22220
- - 812
- - 18133
- - 18007
- - 18153
- - 22219
- - 809
- - 22510
- - 22511
- - 22213
- - uid: 113
+ - uid: 304
components:
+ - type: MetaData
+ name: комната ускорителя частиц
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-72.5
+ pos: -55.5,-6.5
parent: 2
- - type: DeviceList
- devices:
- - 22512
- - 22517
- - 22208
- - 22516
- - 811
- - 22515
- - 22209
- - 22210
- - 832
- - 22211
- - 22513
- - 22212
- - 22514
- - 833
- - 18101
- - 18104
- - 18106
- - 18205
- - 18206
- - 18207
- - 18208
- - 18203
- - 18212
- - 18209
- - 18211
- - 18210
- - 17991
- - 17974
- - uid: 114
+ - uid: 305
components:
+ - type: MetaData
+ name: комната ускорителем частиц
- type: Transform
- pos: -17.5,-63.5
+ pos: -57.5,-4.5
parent: 2
- - type: DeviceList
- devices:
- - 22520
- - 22518
- - 22214
- - 22215
- - 22519
- - 17974
- - 17991
- - uid: 115
+ - uid: 306
components:
+ - type: MetaData
+ name: комната ускорителя частиц
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-78.5
+ pos: -57.5,-10.5
parent: 2
- - type: DeviceList
- devices:
- - 22218
- - 22217
- - uid: 116
+ - uid: 307
components:
+ - type: MetaData
+ desc: Where the yellow gloves and tool belts live.
+ name: комната снаряжения инженеров
- type: Transform
- pos: 7.5,-28.5
+ pos: -50.5,-14.5
parent: 2
- - type: DeviceList
- devices:
- - 22235
- - 810
- - 22483
- - 834
- - 22381
- - 22237
- - 835
- - 18031
- - 18123
- - 18182
- - 18037
- - 18214
- - 18013
- - 18114
- - 18011
- - 18157
- - 18030
- - 18010
- - 18087
- - 18086
- - uid: 117
+ - uid: 308
components:
+ - type: MetaData
+ name: комната ускорителя частиц
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-14.5
+ pos: -55.5,-8.5
parent: 2
- - type: DeviceList
- devices:
- - 18200
- - 18149
- - 18118
- - 18115
- - 18151
- - 18125
- - 826
- - 22255
- - 18178
- - 18175
- - 18172
- - 18136
- - 18017
- - 18264
- - uid: 118
+ - uid: 309
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,86.5
parent: 2
- - uid: 119
+ - uid: 310
components:
+ - type: MetaData
+ name: комната СМЭС
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-41.5
+ pos: -47.5,1.5
parent: 2
- - type: DeviceList
- devices:
- - 22239
- - 22487
- - 22486
- - 22238
- - 22241
- - uid: 120
+ - uid: 311
components:
+ - type: MetaData
+ name: комната совещаний инженерии
- type: Transform
- pos: 3.5,-47.5
+ pos: -48.5,12.5
parent: 2
- - type: DeviceList
- devices:
- - 22240
- - 22488
- - uid: 121
+ - uid: 312
components:
+ - type: MetaData
+ name: северо-западные солнечные панели
- type: Transform
- pos: 11.5,-17.5
+ pos: -58.5,59.5
parent: 2
- - type: DeviceList
- devices:
- - 18000
- - 17978
- - 17964
- - 18010
- - 18030
- - 827
- - 22413
- - 18157
- - 18011
- - 18118
- - 18149
- - 18200
- - uid: 122
+ - uid: 313
components:
- type: Transform
- pos: -14.5,-17.5
+ pos: -10.5,-78.5
parent: 2
- - type: DeviceList
- devices:
- - 740
- - 22263
- - 18084
- - 18053
- - 18033
- - 17987
- - 17995
- - 18001
- - 18161
- - 18167
- - 18043
- - 18052
- - uid: 123
+- proto: AirlockEngineeringLocked
+ entities:
+ - uid: 314
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-10.5
+ pos: -61.5,-29.5
parent: 2
- - type: DeviceList
- devices:
- - 18050
- - 18020
- - 17953
- - 18070
- - 18180
- - 18166
- - 22265
- - 22408
- - 829
- - 18084
- - 18053
- - 18033
- - 22409
- - 22264
- - uid: 124
+ - uid: 315
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,55.5
+ pos: -37.5,-15.5
parent: 2
- - type: DeviceList
- devices:
- - 22320
- - 794
- - 22454
- - 18059
- - 18060
- - 18119
- - 18146
- - 18079
- - uid: 125
+ - uid: 316
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -13.5,71.5
+ pos: 64.5,22.5
parent: 2
- - type: DeviceList
- devices:
- - 797
- - 22328
- - 801
- - 22461
- - 802
- - 17867
- - 17862
- - 17864
- - uid: 38345
+ - uid: 317
components:
- type: Transform
- pos: -3.5,5.5
- parent: 38344
- - type: DeviceList
- devices:
- - 38967
- - 38966
- - 39157
- - 39163
- - 38371
- - 38963
- - 38960
- - uid: 38346
+ pos: -56.5,-25.5
+ parent: 2
+ - uid: 318
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,4.5
- parent: 38344
- - type: DeviceList
- devices:
- - 38371
- - 38372
- - 39160
- - 39165
- - 38959
- - 38962
- - 38961
-- proto: AirAlarmElectronics
- entities:
- - uid: 126
+ pos: -64.5,1.5
+ parent: 2
+ - uid: 319
components:
- type: Transform
- pos: -38.48167,13.571967
+ pos: -44.5,51.5
parent: 2
- - uid: 127
+ - uid: 320
components:
- type: Transform
- pos: -32.5,9.5
+ pos: -42.5,51.5
parent: 2
-- proto: AirCanister
- entities:
- - uid: 128
+ - uid: 321
components:
- type: Transform
- pos: -81.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,-46.5
parent: 2
- - uid: 129
+ - uid: 322
components:
+ - type: MetaData
+ name: питание центрального коридора
- type: Transform
- pos: -31.5,62.5
+ pos: 24.5,24.5
parent: 2
- - uid: 130
+ - uid: 323
components:
+ - type: MetaData
+ name: инженерная
- type: Transform
- pos: -114.5,17.5
+ pos: -52.5,3.5
parent: 2
- - uid: 131
+ - uid: 324
components:
+ - type: MetaData
+ name: питание верхней части северо-запада
- type: Transform
- pos: -114.5,18.5
+ pos: -36.5,39.5
parent: 2
- - uid: 132
+ - uid: 325
components:
+ - type: MetaData
+ name: юго-западное питание
- type: Transform
- pos: 75.5,-46.5
+ pos: -25.5,-77.5
parent: 2
- - uid: 133
+ - uid: 326
components:
+ - type: MetaData
+ name: юго-западные солнечные панели
- type: Transform
- pos: -10.5,-55.5
+ pos: -40.5,-74.5
parent: 2
-- proto: Airlock
- entities:
- - uid: 134
+ - uid: 327
components:
- type: Transform
- pos: 24.5,-7.5
+ pos: -74.5,0.5
parent: 2
- - uid: 135
+ - uid: 328
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-21.5
+ pos: -31.5,-56.5
parent: 2
- - uid: 136
+ - uid: 329
components:
+ - type: MetaData
+ name: хранилище скафандров
- type: Transform
- pos: 23.5,-14.5
+ pos: -76.5,12.5
parent: 2
- - uid: 137
+ - uid: 330
components:
+ - type: MetaData
+ name: западное питание сервиса
- type: Transform
- pos: 54.5,-18.5
+ pos: -2.5,33.5
parent: 2
- - uid: 138
+ - uid: 331
components:
- type: Transform
- pos: 27.5,-16.5
+ pos: 25.5,-22.5
parent: 2
- - uid: 139
+ - uid: 332
components:
+ - type: MetaData
+ name: инженерная
- type: Transform
- pos: 29.5,-16.5
+ pos: -52.5,7.5
parent: 2
- - uid: 140
+ - uid: 333
components:
+ - type: MetaData
+ name: инженерная
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,63.5
+ pos: -51.5,7.5
parent: 2
- - uid: 141
+ - uid: 334
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,41.5
+ pos: -70.5,-4.5
parent: 2
- - uid: 142
+ - uid: 335
components:
+ - type: MetaData
+ name: питание нижней части северо-запада
- type: Transform
- pos: 25.5,-12.5
+ pos: -42.5,39.5
parent: 2
- - uid: 143
+ - uid: 336
components:
- type: Transform
- pos: -20.5,-19.5
+ pos: -68.5,-4.5
parent: 2
- - uid: 144
+ - uid: 337
components:
+ - type: MetaData
+ name: инженерная
- type: Transform
- pos: 39.5,-17.5
+ pos: -51.5,3.5
parent: 2
- - uid: 145
+ - uid: 338
components:
- type: Transform
- pos: 32.5,-11.5
+ pos: -75.5,-22.5
parent: 2
- - uid: 146
+ - uid: 339
components:
+ - type: MetaData
+ name: питание суда
- type: Transform
- pos: 41.5,-17.5
+ pos: 53.5,-9.5
parent: 2
- - uid: 147
+ - uid: 340
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,59.5
+ pos: -26.5,26.5
parent: 2
- - uid: 148
+ - uid: 341
components:
+ - type: MetaData
+ name: питание крыла дормиториев
- type: Transform
- pos: 54.5,-20.5
+ pos: 53.5,-43.5
parent: 2
- - uid: 149
+ - uid: 342
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.5,61.5
+ pos: 12.5,87.5
parent: 2
- - uid: 150
+ - uid: 343
components:
+ - type: MetaData
+ name: питание запада
- type: Transform
- pos: 37.5,-26.5
+ pos: -39.5,-2.5
parent: 2
- - uid: 151
+ - uid: 344
components:
+ - type: MetaData
+ name: коридор к генератору гравитации
- type: Transform
- pos: 42.5,-20.5
+ pos: -66.5,15.5
parent: 2
- - uid: 152
+ - uid: 345
components:
- type: Transform
- pos: 22.5,3.5
+ pos: -76.5,2.5
parent: 2
- - uid: 153
+ - uid: 346
components:
- type: Transform
- pos: 19.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,83.5
parent: 2
- - uid: 154
+ - uid: 347
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-17.5
+ pos: -35.5,7.5
parent: 2
- - uid: 155
+ - uid: 348
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-21.5
+ pos: -20.5,-30.5
parent: 2
- - uid: 156
+ - uid: 349
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-66.5
+ pos: 9.5,76.5
parent: 2
- - uid: 157
+ - uid: 350
components:
- type: Transform
- pos: 35.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,75.5
parent: 2
- - uid: 158
+ - uid: 351
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-65.5
+ pos: 1.5,-38.5
parent: 2
- - uid: 159
+ - uid: 352
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-8.5
+ pos: 7.5,58.5
parent: 2
- - uid: 160
+- proto: AirlockEVAGlassLocked
+ entities:
+ - uid: 353
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,-73.5
parent: 2
- - uid: 161
+ - uid: 354
components:
- type: Transform
- pos: 32.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-73.5
parent: 2
- - uid: 162
+- proto: AirlockEVALocked
+ entities:
+ - uid: 355
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,66.5
+ pos: -13.5,-9.5
parent: 2
- - uid: 163
+ - uid: 356
+ components:
+ - type: Transform
+ pos: -9.5,-9.5
+ parent: 2
+- proto: AirlockExternalCargoLocked
+ entities:
+ - uid: 357
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.5,66.5
+ pos: 35.5,41.5
parent: 2
- - uid: 164
+ - uid: 358
components:
- type: Transform
- pos: -23.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,39.5
parent: 2
- - uid: 165
+- proto: AirlockExternalEngineeringLocked
+ entities:
+ - uid: 359
components:
- type: Transform
- pos: 42.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,14.5
parent: 2
- - uid: 166
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 360
components:
- type: Transform
- pos: 32.5,-9.5
+ pos: -11.5,97.5
parent: 2
- - uid: 167
+ - uid: 361
components:
- type: Transform
- pos: 31.5,-16.5
+ pos: -31.5,84.5
parent: 2
- - uid: 168
+ - uid: 362
components:
- type: Transform
- pos: 71.5,-49.5
+ pos: -31.5,77.5
parent: 2
- - uid: 169
+ - uid: 363
components:
- type: Transform
- pos: -36.5,-63.5
+ pos: -29.5,97.5
parent: 2
- - uid: 170
+ - uid: 364
components:
- type: Transform
- pos: -34.5,-65.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,77.5
parent: 2
- - uid: 171
+ - uid: 365
components:
- type: Transform
- pos: -40.5,-63.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,77.5
parent: 2
- - uid: 172
+ - uid: 366
components:
- type: Transform
- pos: -60.5,-47.5
+ pos: -27.5,77.5
parent: 2
- - uid: 173
+ - uid: 367
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 96.5,-2.5
+ pos: -27.5,84.5
parent: 2
- - uid: 174
+ - uid: 368
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,3.5
+ pos: 55.5,-40.5
parent: 2
- - uid: 38347
+ - uid: 369
components:
- type: Transform
- pos: -12.5,11.5
- parent: 38344
- - uid: 38348
+ pos: 53.5,-40.5
+ parent: 2
+ - uid: 370
components:
- type: Transform
- pos: -10.5,2.5
- parent: 38344
- - uid: 38349
+ rot: -1.5707963267948966 rad
+ pos: 66.5,-40.5
+ parent: 2
+ - uid: 371
components:
- type: Transform
- pos: -10.5,9.5
- parent: 38344
-- proto: AirlockArmoryGlassLocked
- entities:
- - uid: 175
->>>>>>> master
+ rot: -1.5707963267948966 rad
+ pos: -13.5,84.5
+ parent: 2
+ - uid: 372
components:
- type: Transform
- pos: 49.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,84.5
parent: 2
-<<<<<<< HEAD
- - uid: 38715
+ - uid: 373
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,2.5
- parent: 38714
-- proto: AirlockArmoryLocked
- entities:
- - uid: 217
-=======
-- proto: AirlockArmoryLocked
- entities:
- - uid: 176
->>>>>>> master
+ pos: 4.5,84.5
+ parent: 2
+ - uid: 374
components:
- type: Transform
- pos: 60.5,5.5
+ pos: 4.5,77.5
parent: 2
-<<<<<<< HEAD
- - uid: 218
-=======
- - uid: 177
->>>>>>> master
+ - uid: 375
components:
- type: Transform
- pos: 60.5,4.5
+ pos: 68.5,-40.5
parent: 2
-<<<<<<< HEAD
- - uid: 219
-=======
- - uid: 178
->>>>>>> master
+ - uid: 376
components:
- type: Transform
- pos: 64.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-82.5
parent: 2
-<<<<<<< HEAD
- - uid: 220
-=======
- - uid: 179
->>>>>>> master
+ - uid: 377
components:
- type: Transform
- pos: 64.5,5.5
+ pos: 2.5,-82.5
parent: 2
-- proto: AirlockAssembly
- entities:
-<<<<<<< HEAD
- - uid: 221
-=======
- - uid: 180
->>>>>>> master
+ - uid: 378
components:
- type: Transform
- pos: -37.5,-0.5
+ pos: -3.5,-82.5
parent: 2
-<<<<<<< HEAD
-- proto: AirlockAtmosphericsGlass
- entities:
- - uid: 222
-=======
-- proto: AirlockAtmosphericsGlassLocked
- entities:
- - uid: 181
->>>>>>> master
+ - uid: 379
components:
- type: Transform
-<<<<<<< HEAD
- pos: -50.5,29.5
+ pos: -5.5,-82.5
parent: 2
-- proto: AirlockAtmosphericsGlassLocked
+- proto: AirlockExternalGlassAtmosphericsLocked
entities:
- - uid: 223
-=======
- pos: -55.5,23.5
+ - uid: 380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -68.5,24.5
parent: 2
- - uid: 182
+ - uid: 381
components:
- type: Transform
- pos: -55.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -69.5,23.5
parent: 2
- - uid: 183
->>>>>>> master
+ - uid: 382
components:
- - type: MetaData
- name: тэг
- type: Transform
- pos: -47.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -67.5,23.5
parent: 2
-<<<<<<< HEAD
- - uid: 224
-=======
- - uid: 184
->>>>>>> master
+- proto: AirlockExternalGlassCargoLocked
+ entities:
+ - uid: 383
components:
- - type: MetaData
- name: раздевалка
- type: Transform
- pos: -62.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,49.5
parent: 2
-<<<<<<< HEAD
- - uid: 225
-=======
- - uid: 185
->>>>>>> master
+ - uid: 384
components:
- - type: MetaData
- name: раздевалка
- type: Transform
- pos: -60.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,51.5
parent: 2
-<<<<<<< HEAD
- - uid: 226
-=======
- - uid: 186
->>>>>>> master
+- proto: AirlockExternalGlassEngineeringLocked
+ entities:
+ - uid: 385
components:
- - type: MetaData
- name: атмосферная
- type: Transform
- pos: -60.5,48.5
+ pos: -45.5,56.5
parent: 2
-<<<<<<< HEAD
- - uid: 227
-=======
- - uid: 187
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 387
+ - type: DeviceLinkSource
+ linkedPorts:
+ 387:
+ - DoorStatus: DoorBolt
+ - uid: 386
components:
- - type: MetaData
- name: атмосферная
- type: Transform
- pos: -60.5,50.5
+ pos: -58.5,65.5
parent: 2
-<<<<<<< HEAD
- - uid: 228
-=======
- - uid: 188
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 388
+ - type: DeviceLinkSource
+ linkedPorts:
+ 388:
+ - DoorStatus: DoorBolt
+ - uid: 387
components:
- - type: MetaData
- name: атмосферная
- type: Transform
- pos: -53.5,43.5
+ pos: -45.5,58.5
parent: 2
-<<<<<<< HEAD
- - uid: 229
-=======
- - uid: 189
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 385
+ - type: DeviceLinkSource
+ linkedPorts:
+ 385:
+ - DoorStatus: DoorBolt
+ - uid: 388
components:
- - type: MetaData
- name: атмосферная
- type: Transform
- pos: -55.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,62.5
parent: 2
-<<<<<<< HEAD
- - uid: 230
-=======
- - uid: 190
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 386
+ - type: DeviceLinkSource
+ linkedPorts:
+ 386:
+ - DoorStatus: DoorBolt
+ - uid: 389
components:
- - type: MetaData
- name: атмосферная
- type: Transform
rot: 1.5707963267948966 rad
- pos: -50.5,41.5
+ pos: -70.5,57.5
parent: 2
-<<<<<<< HEAD
- - uid: 231
-=======
- - uid: 191
->>>>>>> master
+ - uid: 390
components:
- - type: MetaData
- name: приёмная атмоса
- type: Transform
- pos: -50.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -78.5,14.5
parent: 2
-<<<<<<< HEAD
- - uid: 232
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 391
components:
- - type: MetaData
- name: смесительная камера
- type: Transform
- pos: -63.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,57.5
parent: 2
- - uid: 233
+ - uid: 392
components:
- - type: MetaData
- name: атмосферная
- type: Transform
- pos: -61.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,78.5
parent: 2
- - uid: 234
+ - uid: 393
components:
- - type: MetaData
- name: атмосферная
- type: Transform
- pos: -59.5,38.5
+ pos: -53.5,54.5
parent: 2
- - uid: 235
-=======
- - uid: 192
->>>>>>> master
+- proto: AirlockExternalGlassLocked
+ entities:
+ - uid: 394
components:
- - type: MetaData
- name: комната снаряжения атмоса
- type: Transform
- pos: -54.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,91.5
parent: 2
-<<<<<<< HEAD
- - uid: 236
-=======
- - uid: 193
->>>>>>> master
+ - uid: 395
components:
- - type: MetaData
- name: комната снаряжения атмоса
- type: Transform
- pos: -54.5,39.5
+ pos: 92.5,27.5
parent: 2
-<<<<<<< HEAD
-- proto: AirlockAtmosphericsLocked
- entities:
- - uid: 237
-=======
- - uid: 194
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 397
+ - type: DeviceLinkSource
+ linkedPorts:
+ 397:
+ - DoorStatus: DoorBolt
+ - uid: 396
components:
- - type: MetaData
- name: бассейн
- type: Transform
-<<<<<<< HEAD
- pos: -53.5,24.5
- parent: 2
- - uid: 238
-=======
- rot: 3.141592653589793 rad
- pos: -68.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,91.5
parent: 2
- - uid: 195
->>>>>>> master
+ - uid: 397
components:
- type: Transform
-<<<<<<< HEAD
- pos: -52.5,24.5
- parent: 2
- - uid: 239
-=======
- pos: -59.5,39.5
+ pos: 92.5,24.5
parent: 2
- - uid: 196
+ - type: DeviceLinkSink
+ links:
+ - 395
+ - type: DeviceLinkSource
+ linkedPorts:
+ 395:
+ - DoorStatus: DoorBolt
+ - uid: 398
components:
- type: Transform
- pos: -61.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,93.5
parent: 2
-- proto: AirlockAtmosphericsLocked
+- proto: AirlockExternalGlassShuttleArrivals
entities:
- - uid: 197
->>>>>>> master
+ - uid: 399
components:
- - type: MetaData
- name: комната тестов атмосферы
- type: Transform
- pos: -69.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,84.5
parent: 2
-<<<<<<< HEAD
- - uid: 240
-=======
- - uid: 198
->>>>>>> master
+ - uid: 400
components:
- - type: MetaData
- name: вход в атмосферную
- type: Transform
- pos: -53.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,77.5
parent: 2
-<<<<<<< HEAD
- - uid: 241
-=======
- - uid: 199
->>>>>>> master
+ - uid: 401
components:
- - type: MetaData
- name: вход в атмосферную
- type: Transform
- pos: -52.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,77.5
parent: 2
-<<<<<<< HEAD
- - uid: 242
-=======
- - uid: 200
->>>>>>> master
+ - uid: 402
components:
- - type: MetaData
- name: комната тестов атмосферы
- type: Transform
- pos: -69.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,77.5
parent: 2
-<<<<<<< HEAD
-- proto: AirlockBarLocked
- entities:
- - uid: 243
+ - uid: 403
components:
- type: Transform
- pos: -8.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,84.5
parent: 2
- - uid: 244
+ - uid: 404
components:
- type: Transform
- pos: -4.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,77.5
parent: 2
-- proto: AirlockBrigGlassLocked
- entities:
- - uid: 245
-=======
- - uid: 201
+ - uid: 405
components:
- - type: MetaData
- name: баня
- type: Transform
rot: -1.5707963267948966 rad
- pos: -66.5,57.5
+ pos: 2.5,84.5
parent: 2
-- proto: AirlockBarLocked
- entities:
- - uid: 202
+ - uid: 406
components:
- type: Transform
- pos: -8.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,84.5
parent: 2
- - uid: 203
+- proto: AirlockExternalGlassShuttleEmergencyLocked
+ entities:
+ - uid: 407
components:
- type: Transform
- pos: -4.5,37.5
+ pos: -3.5,-86.5
parent: 2
-- proto: AirlockBrigGlassLocked
- entities:
- - uid: 204
->>>>>>> master
+ - uid: 408
components:
- type: Transform
- pos: 38.5,6.5
+ pos: 2.5,-86.5
parent: 2
-<<<<<<< HEAD
- - uid: 246
-=======
- - uid: 205
->>>>>>> master
+ - uid: 409
components:
- type: Transform
- pos: 38.5,4.5
+ pos: -5.5,-86.5
parent: 2
-- proto: AirlockCaptainLocked
- entities:
-<<<<<<< HEAD
- - uid: 247
-=======
- - uid: 206
->>>>>>> master
+ - uid: 410
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,4.5
+ pos: 4.5,-86.5
parent: 2
-<<<<<<< HEAD
- - uid: 248
-=======
- - uid: 207
->>>>>>> master
+- proto: AirlockExternalGlassShuttleEscape
+ entities:
+ - uid: 411
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,21.5
parent: 2
-<<<<<<< HEAD
- - uid: 249
-=======
- - uid: 208
->>>>>>> master
+ - uid: 412
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,17.5
parent: 2
-- proto: AirlockCargoGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 250
-=======
- - uid: 209
->>>>>>> master
+ - uid: 413
components:
- type: Transform
- pos: 11.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,99.5
parent: 2
-<<<<<<< HEAD
- - uid: 251
-=======
- - uid: 210
->>>>>>> master
+ - uid: 414
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,33.5
+ pos: -11.5,99.5
parent: 2
-<<<<<<< HEAD
- - uid: 252
-=======
- - uid: 211
->>>>>>> master
+- proto: AirlockExternalGlassShuttleLocked
+ entities:
+ - uid: 415
components:
- type: Transform
- pos: 10.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,84.5
parent: 2
-<<<<<<< HEAD
- - uid: 253
-=======
- - uid: 212
->>>>>>> master
+ - uid: 416
components:
- type: Transform
- pos: 4.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,77.5
parent: 2
-<<<<<<< HEAD
- - uid: 254
-=======
- - uid: 213
->>>>>>> master
+ - uid: 417
components:
- type: Transform
- pos: 5.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: 90.5,21.5
parent: 2
-<<<<<<< HEAD
- - uid: 255
-=======
- - uid: 214
->>>>>>> master
+ - type: Docking
+ dockJointId: docking93271
+ dockedWith: 38717
+ - type: DeviceLinkSource
+ lastSignals:
+ DoorStatus: False
+ DockStatus: True
+ - uid: 38716
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 12.5,45.5
+ pos: -1.5,0.5
+ parent: 38714
+ - uid: 38717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,0.5
+ parent: 38714
+ - type: Docking
+ dockJointId: docking93271
+ dockedWith: 417
+ - type: DeviceLinkSource
+ lastSignals:
+ DoorStatus: False
+ DockStatus: True
+- proto: AirlockExternalLocked
+ entities:
+ - uid: 418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,89.5
parent: 2
-<<<<<<< HEAD
- - uid: 256
-=======
- - uid: 215
->>>>>>> master
+ - uid: 419
components:
- type: Transform
- pos: 10.5,38.5
+ pos: -61.5,-16.5
parent: 2
-- proto: AirlockCargoLocked
- entities:
-<<<<<<< HEAD
- - uid: 257
-=======
- - uid: 216
->>>>>>> master
+ - uid: 420
components:
- type: Transform
- pos: 12.5,36.5
+ pos: -75.5,-26.5
parent: 2
-<<<<<<< HEAD
- - uid: 258
-=======
- - uid: 217
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 425
+ - type: DeviceLinkSource
+ linkedPorts:
+ 425:
+ - DoorStatus: DoorBolt
+ - uid: 421
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,52.5
+ pos: -59.5,-16.5
parent: 2
-<<<<<<< HEAD
- - uid: 259
-=======
- - uid: 218
->>>>>>> master
+ - uid: 422
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,53.5
+ pos: 18.5,87.5
parent: 2
-<<<<<<< HEAD
- - uid: 260
-=======
- - uid: 219
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 431
+ - type: DeviceLinkSource
+ linkedPorts:
+ 431:
+ - DoorStatus: DoorBolt
+ - uid: 423
components:
- type: Transform
- pos: 12.5,35.5
+ pos: 57.5,-46.5
parent: 2
-- proto: AirlockChapelLocked
- entities:
-<<<<<<< HEAD
- - uid: 261
-=======
- - uid: 220
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 427
+ - type: DeviceLinkSource
+ linkedPorts:
+ 427:
+ - DoorStatus: DoorBolt
+ - uid: 424
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-76.5
+ pos: -10.5,-82.5
parent: 2
-<<<<<<< HEAD
- - uid: 262
-=======
- - uid: 221
->>>>>>> master
+ - uid: 425
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-70.5
+ pos: -78.5,-26.5
parent: 2
-<<<<<<< HEAD
- - uid: 263
-=======
- - uid: 222
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 420
+ - type: DeviceLinkSource
+ linkedPorts:
+ 420:
+ - DoorStatus: DoorBolt
+ - uid: 426
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-66.5
+ pos: -46.5,-74.5
parent: 2
-<<<<<<< HEAD
- - uid: 264
+ - type: DeviceLinkSink
+ links:
+ - 428
+ - type: DeviceLinkSource
+ linkedPorts:
+ 428:
+ - DoorStatus: DoorBolt
+ - uid: 427
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-65.5
+ pos: 59.5,-46.5
parent: 2
- - uid: 265
+ - type: DeviceLinkSink
+ links:
+ - 423
+ - type: DeviceLinkSource
+ linkedPorts:
+ 423:
+ - DoorStatus: DoorBolt
+ - uid: 428
components:
- type: Transform
- pos: -18.5,-80.5
+ pos: -44.5,-74.5
parent: 2
-- proto: AirlockChemistryLocked
- entities:
- - uid: 266
-=======
- - uid: 223
+ - type: DeviceLinkSink
+ links:
+ - 426
+ - type: DeviceLinkSource
+ linkedPorts:
+ 426:
+ - DoorStatus: DoorBolt
+ - uid: 429
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -18.5,-80.5
+ pos: 32.5,59.5
parent: 2
- - uid: 224
+ - uid: 430
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-65.5
+ pos: -42.5,-57.5
parent: 2
- - uid: 225
+ - type: DeviceLinkSink
+ links:
+ - 434
+ - type: DeviceLinkSource
+ linkedPorts:
+ 434:
+ - DoorStatus: DoorBolt
+ - uid: 431
components:
- type: Transform
- pos: -32.5,-71.5
+ pos: 16.5,87.5
parent: 2
-- proto: AirlockChemistryLocked
- entities:
- - uid: 226
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 422
+ - type: DeviceLinkSource
+ linkedPorts:
+ 422:
+ - DoorStatus: DoorBolt
+ - uid: 432
components:
- type: Transform
- pos: 9.5,-35.5
+ pos: -78.5,-10.5
parent: 2
-- proto: AirlockChiefEngineerLocked
- entities:
-<<<<<<< HEAD
- - uid: 267
-=======
- - uid: 227
->>>>>>> master
+ - uid: 433
components:
- type: Transform
- pos: -120.5,40.5
+ pos: -81.5,-13.5
parent: 2
-<<<<<<< HEAD
- - uid: 268
-=======
- - uid: 228
->>>>>>> master
+ - uid: 434
components:
- type: Transform
- pos: -120.5,39.5
+ pos: -40.5,-57.5
parent: 2
-<<<<<<< HEAD
- - uid: 269
-=======
- - uid: 229
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 430
+ - type: DeviceLinkSource
+ linkedPorts:
+ 430:
+ - DoorStatus: DoorBolt
+ - uid: 435
components:
- - type: MetaData
- name: офис старшего инженера
- type: Transform
- pos: -59.5,10.5
+ pos: -81.5,-12.5
parent: 2
-<<<<<<< HEAD
- - uid: 270
-=======
- - uid: 230
->>>>>>> master
+ - uid: 436
components:
- type: Transform
- pos: -116.5,39.5
+ pos: -79.5,-10.5
parent: 2
-<<<<<<< HEAD
- - uid: 271
-=======
- - uid: 231
->>>>>>> master
+ - uid: 437
components:
- type: Transform
- pos: -120.5,23.5
+ pos: -79.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 272
-=======
- - uid: 232
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 438
+ - type: DeviceLinkSource
+ linkedPorts:
+ 438:
+ - DoorStatus: DoorBolt
+ - uid: 438
components:
- - type: MetaData
- desc: 'ОСТОРОЖНО: КРОВАТЬ'
- name: каюта старшего инженера
- type: Transform
- pos: -59.5,6.5
+ pos: -81.5,-2.5
parent: 2
-<<<<<<< HEAD
- - uid: 273
-=======
- - uid: 233
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 437
+ - type: DeviceLinkSource
+ linkedPorts:
+ 437:
+ - DoorStatus: DoorBolt
+ - uid: 439
components:
- type: Transform
- pos: -119.5,20.5
+ pos: -109.5,23.5
parent: 2
-<<<<<<< HEAD
- - uid: 274
-=======
- - uid: 234
->>>>>>> master
+ - uid: 440
components:
- type: Transform
- pos: -117.5,20.5
+ pos: -112.5,23.5
parent: 2
-<<<<<<< HEAD
- - uid: 275
-=======
- - uid: 235
->>>>>>> master
+ - uid: 441
components:
- type: Transform
- pos: -116.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -79.5,0.5
parent: 2
-- proto: AirlockChiefMedicalOfficerLocked
+- proto: AirlockExternalShuttleLocked
entities:
-<<<<<<< HEAD
- - uid: 276
-=======
- - uid: 236
->>>>>>> master
+ - uid: 442
components:
- type: Transform
- pos: 25.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,37.5
parent: 2
-<<<<<<< HEAD
- - uid: 277
-=======
- - uid: 237
->>>>>>> master
+ - uid: 443
components:
- type: Transform
- pos: 19.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,78.5
parent: 2
-<<<<<<< HEAD
- - uid: 278
-=======
- - uid: 238
->>>>>>> master
+ - uid: 444
components:
- type: Transform
- pos: 22.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,2.5
parent: 2
-- proto: AirlockCommandGlassLocked
+- proto: AirlockFreezer
entities:
-<<<<<<< HEAD
- - uid: 279
-=======
- - uid: 239
->>>>>>> master
+ - uid: 445
components:
- type: Transform
- pos: -13.5,14.5
+ pos: 24.5,66.5
parent: 2
-<<<<<<< HEAD
- - uid: 280
-=======
- - uid: 240
->>>>>>> master
+ - uid: 446
components:
- type: Transform
- pos: -16.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 281
-=======
- - uid: 241
->>>>>>> master
+- proto: AirlockFreezerLocked
+ entities:
+ - uid: 447
components:
- type: Transform
- pos: 12.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,29.5
parent: 2
-<<<<<<< HEAD
- - uid: 282
-=======
- - uid: 242
->>>>>>> master
+- proto: AirlockGlass
+ entities:
+ - uid: 448
components:
- type: Transform
- pos: -13.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,-35.5
parent: 2
-<<<<<<< HEAD
- - uid: 283
-=======
- - uid: 243
->>>>>>> master
+ - uid: 449
components:
- type: Transform
- pos: 12.5,14.5
+ pos: 47.5,-17.5
parent: 2
-<<<<<<< HEAD
- - uid: 284
-=======
- - uid: 244
->>>>>>> master
+ - uid: 450
components:
- type: Transform
- pos: -16.5,14.5
+ pos: 46.5,-17.5
parent: 2
-<<<<<<< HEAD
- - uid: 285
-=======
- - uid: 245
->>>>>>> master
+ - uid: 451
components:
- type: Transform
- pos: 11.5,-15.5
+ pos: 73.5,-40.5
parent: 2
-<<<<<<< HEAD
- - uid: 286
-=======
- - uid: 246
->>>>>>> master
+ - uid: 452
components:
- type: Transform
- pos: 15.5,15.5
+ pos: 64.5,-18.5
parent: 2
-<<<<<<< HEAD
- - uid: 287
-=======
- - uid: 247
->>>>>>> master
+ - uid: 453
components:
- type: Transform
- pos: 15.5,14.5
+ pos: -20.5,12.5
parent: 2
-- proto: AirlockCommandLocked
- entities:
-<<<<<<< HEAD
- - uid: 288
-=======
- - uid: 248
->>>>>>> master
+ - uid: 454
components:
- - type: MetaData
- name: питание мостика
- type: Transform
- pos: 13.5,-1.5
+ pos: 73.5,-47.5
parent: 2
-<<<<<<< HEAD
- - uid: 289
-=======
- - uid: 249
->>>>>>> master
+ - uid: 455
components:
+ - type: MetaData
+ name: приемная Зоотехника
- type: Transform
- pos: -72.5,3.5
+ pos: -3.5,-17.5
parent: 2
-<<<<<<< HEAD
- - uid: 290
-=======
- - uid: 250
->>>>>>> master
+ - uid: 456
components:
- type: Transform
- pos: 8.5,-17.5
+ pos: -3.5,-12.5
parent: 2
-<<<<<<< HEAD
- - uid: 291
-=======
- - uid: 251
->>>>>>> master
+ - uid: 457
components:
- - type: MetaData
- name: генератор гравитации
- type: Transform
- pos: -71.5,9.5
+ pos: 24.5,-1.5
parent: 2
-<<<<<<< HEAD
- - uid: 292
-=======
- - uid: 252
->>>>>>> master
+ - uid: 458
components:
- - type: MetaData
- name: комната генератора гравитации
- type: Transform
- pos: -71.5,13.5
+ pos: 66.5,-18.5
parent: 2
-<<<<<<< HEAD
- - uid: 293
-=======
- - uid: 253
->>>>>>> master
+ - uid: 459
components:
- type: Transform
- pos: -35.5,17.5
+ pos: 19.5,5.5
parent: 2
-<<<<<<< HEAD
- - uid: 294
-=======
- - uid: 254
->>>>>>> master
+ - uid: 460
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,-6.5
+ pos: -18.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 295
-=======
- - uid: 255
->>>>>>> master
+ - uid: 461
components:
- type: Transform
- pos: -9.5,12.5
+ pos: -24.5,7.5
parent: 2
-<<<<<<< HEAD
- - uid: 296
+ - uid: 462
components:
- type: Transform
- pos: 8.5,-9.5
+ pos: 78.5,-18.5
parent: 2
-- proto: AirlockDetectiveGlassLocked
- entities:
- - uid: 297
-=======
- - uid: 256
+ - uid: 463
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-10.5
+ pos: 19.5,6.5
parent: 2
-- proto: AirlockDetectiveGlassLocked
- entities:
- - uid: 257
->>>>>>> master
+ - uid: 464
components:
- type: Transform
- pos: 29.5,7.5
+ pos: -25.5,7.5
parent: 2
-- proto: AirlockEngineeringGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 298
-=======
- - uid: 258
->>>>>>> master
+ - uid: 465
components:
- type: Transform
- pos: -61.5,1.5
+ pos: -20.5,5.5
parent: 2
-<<<<<<< HEAD
- - uid: 299
-=======
- - uid: 259
->>>>>>> master
+ - uid: 466
components:
- type: Transform
- pos: -61.5,-6.5
+ pos: -20.5,4.5
parent: 2
-<<<<<<< HEAD
- - uid: 300
-=======
- - uid: 260
->>>>>>> master
+ - uid: 467
components:
- type: Transform
- pos: -58.5,55.5
+ pos: -20.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 301
-=======
- - uid: 261
->>>>>>> master
+ - uid: 468
components:
- - type: MetaData
- name: хранилище скафандров
- type: Transform
- pos: -76.5,8.5
+ pos: -17.5,54.5
parent: 2
-<<<<<<< HEAD
- - uid: 302
-=======
- - uid: 262
->>>>>>> master
+ - uid: 469
components:
- - type: MetaData
- name: комната дополнительного инженерного снаряжения
- type: Transform
- pos: -57.5,16.5
+ pos: 78.5,-21.5
parent: 2
-<<<<<<< HEAD
- - uid: 303
-=======
- - uid: 263
->>>>>>> master
+ - uid: 470
components:
- - type: MetaData
- name: комната отдыха инженерии
- type: Transform
- pos: -59.5,14.5
+ pos: -19.5,54.5
parent: 2
-<<<<<<< HEAD
- - uid: 304
-=======
- - uid: 264
->>>>>>> master
+ - uid: 471
components:
- - type: MetaData
- name: комната ускорителя частиц
- type: Transform
- pos: -55.5,-6.5
+ pos: 66.5,-21.5
parent: 2
-<<<<<<< HEAD
- - uid: 305
-=======
- - uid: 265
->>>>>>> master
+ - uid: 472
components:
- - type: MetaData
- name: комната ускорителем частиц
- type: Transform
- pos: -57.5,-4.5
+ pos: 22.5,7.5
parent: 2
-<<<<<<< HEAD
- - uid: 306
-=======
- - uid: 266
->>>>>>> master
+ - uid: 473
components:
- - type: MetaData
- name: комната ускорителя частиц
- type: Transform
- pos: -57.5,-10.5
+ pos: 76.5,-18.5
parent: 2
-<<<<<<< HEAD
- - uid: 307
-=======
- - uid: 267
->>>>>>> master
+ - uid: 474
components:
- - type: MetaData
- desc: Where the yellow gloves and tool belts live.
- name: комната снаряжения инженеров
- type: Transform
- pos: -50.5,-14.5
+ pos: 76.5,-21.5
parent: 2
-<<<<<<< HEAD
- - uid: 308
-=======
- - uid: 268
->>>>>>> master
+ - uid: 475
components:
- - type: MetaData
- name: комната ускорителя частиц
- type: Transform
- pos: -55.5,-8.5
+ pos: 19.5,4.5
parent: 2
-<<<<<<< HEAD
- - uid: 309
-=======
- - uid: 269
->>>>>>> master
+ - uid: 476
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,86.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 310
-=======
- - uid: 270
->>>>>>> master
+ - uid: 477
components:
- - type: MetaData
- name: комната СМЭС
- type: Transform
- pos: -47.5,1.5
+ pos: 84.5,-18.5
parent: 2
-<<<<<<< HEAD
- - uid: 311
+ - uid: 478
components:
- - type: MetaData
- name: комната совещаний инженерии
- type: Transform
- pos: -48.5,12.5
+ pos: 82.5,-18.5
parent: 2
- - uid: 312
-=======
- - uid: 271
->>>>>>> master
+ - uid: 479
components:
- - type: MetaData
- name: северо-западные солнечные панели
- type: Transform
- pos: -58.5,59.5
+ pos: 82.5,-21.5
parent: 2
-<<<<<<< HEAD
- - uid: 313
-=======
- - uid: 272
->>>>>>> master
+ - uid: 480
components:
- type: Transform
- pos: -10.5,-78.5
+ pos: 84.5,-21.5
parent: 2
-<<<<<<< HEAD
-- proto: AirlockEngineeringLocked
- entities:
- - uid: 314
-=======
- - uid: 273
+ - uid: 481
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,12.5
+ pos: -20.5,11.5
parent: 2
- - uid: 274
+ - uid: 482
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -47.5,-2.5
+ pos: -0.5,-56.5
parent: 2
-- proto: AirlockEngineeringLocked
- entities:
- - uid: 275
+ - uid: 483
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,-30.5
+ pos: 0.5,-56.5
parent: 2
- - uid: 276
->>>>>>> master
+ - uid: 484
components:
- type: Transform
- pos: -61.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-62.5
parent: 2
-<<<<<<< HEAD
- - uid: 315
-=======
- - uid: 277
->>>>>>> master
+ - uid: 485
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-15.5
+ pos: 7.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 316
-=======
- - uid: 278
->>>>>>> master
+ - uid: 486
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,22.5
+ pos: -20.5,-1.5
parent: 2
-<<<<<<< HEAD
- - uid: 317
-=======
- - uid: 279
->>>>>>> master
+ - uid: 487
components:
- type: Transform
- pos: -56.5,-25.5
+ pos: 5.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 318
-=======
- - uid: 280
->>>>>>> master
+ - uid: 488
components:
- type: Transform
- pos: -64.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-62.5
parent: 2
-<<<<<<< HEAD
- - uid: 319
-=======
- - uid: 281
->>>>>>> master
+ - uid: 489
components:
- type: Transform
- pos: -44.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-62.5
parent: 2
-<<<<<<< HEAD
- - uid: 320
-=======
- - uid: 282
->>>>>>> master
+ - uid: 490
components:
- type: Transform
- pos: -42.5,51.5
+ pos: 8.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 321
-=======
- - uid: 283
->>>>>>> master
+ - uid: 491
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-46.5
+ pos: -32.5,-9.5
parent: 2
-<<<<<<< HEAD
- - uid: 322
-=======
- - uid: 284
->>>>>>> master
+ - uid: 492
components:
- - type: MetaData
- name: питание центрального коридора
- type: Transform
- pos: 24.5,24.5
+ pos: -13.5,50.5
parent: 2
-<<<<<<< HEAD
- - uid: 323
-=======
- - uid: 285
->>>>>>> master
+ - uid: 493
components:
- - type: MetaData
- name: инженерная
- type: Transform
- pos: -52.5,3.5
+ pos: -31.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 324
-=======
- - uid: 286
->>>>>>> master
+ - uid: 494
components:
- - type: MetaData
- name: питание верхней части северо-запада
- type: Transform
- pos: -36.5,39.5
+ pos: -13.5,48.5
parent: 2
-<<<<<<< HEAD
- - uid: 325
-=======
- - uid: 287
->>>>>>> master
+ - uid: 495
components:
- - type: MetaData
- name: юго-западное питание
- type: Transform
- pos: -25.5,-77.5
+ pos: 4.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 326
-=======
- - uid: 288
->>>>>>> master
+ - uid: 496
components:
- - type: MetaData
- name: юго-западные солнечные панели
- type: Transform
- pos: -40.5,-74.5
+ pos: -17.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 327
-=======
- - uid: 289
->>>>>>> master
+ - uid: 497
components:
- type: Transform
- pos: -74.5,0.5
+ pos: -32.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 328
-=======
- - uid: 290
->>>>>>> master
+ - uid: 498
components:
- type: Transform
- pos: -31.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-56.5
parent: 2
-<<<<<<< HEAD
- - uid: 329
-=======
- - uid: 291
->>>>>>> master
+ - uid: 499
components:
- - type: MetaData
- name: хранилище скафандров
- type: Transform
- pos: -76.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,-42.5
parent: 2
-<<<<<<< HEAD
- - uid: 330
-=======
- - uid: 292
->>>>>>> master
+ - uid: 500
components:
- - type: MetaData
- name: западное питание сервиса
- type: Transform
- pos: -2.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,54.5
parent: 2
-<<<<<<< HEAD
- - uid: 331
-=======
- - uid: 293
->>>>>>> master
+ - uid: 501
components:
- type: Transform
- pos: 25.5,-22.5
+ pos: -31.5,-9.5
parent: 2
-<<<<<<< HEAD
- - uid: 332
-=======
- - uid: 294
->>>>>>> master
+ - uid: 502
components:
- - type: MetaData
- name: инженерная
- type: Transform
- pos: -52.5,7.5
+ pos: 15.5,-7.5
parent: 2
-<<<<<<< HEAD
- - uid: 333
-=======
- - uid: 295
->>>>>>> master
+ - uid: 503
components:
- - type: MetaData
- name: инженерная
- type: Transform
- pos: -51.5,7.5
+ pos: 15.5,-8.5
parent: 2
-<<<<<<< HEAD
- - uid: 334
-=======
- - uid: 296
->>>>>>> master
+ - uid: 504
components:
- type: Transform
- pos: -70.5,-4.5
+ pos: -0.5,-6.5
parent: 2
-<<<<<<< HEAD
- - uid: 335
-=======
- - uid: 297
->>>>>>> master
+ - uid: 505
components:
- - type: MetaData
- name: питание нижней части северо-запада
- type: Transform
- pos: -42.5,39.5
+ pos: -16.5,-8.5
parent: 2
-<<<<<<< HEAD
- - uid: 336
-=======
- - uid: 298
->>>>>>> master
+ - uid: 506
components:
- type: Transform
- pos: -68.5,-4.5
+ pos: -16.5,-7.5
parent: 2
-<<<<<<< HEAD
- - uid: 337
-=======
- - uid: 299
->>>>>>> master
+ - uid: 507
components:
- - type: MetaData
- name: инженерная
- type: Transform
- pos: -51.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -62.5,-42.5
parent: 2
-<<<<<<< HEAD
- - uid: 338
-=======
- - uid: 300
->>>>>>> master
+ - uid: 508
components:
- type: Transform
- pos: -75.5,-22.5
+ pos: -20.5,-2.5
parent: 2
-<<<<<<< HEAD
- - uid: 339
-=======
- - uid: 301
->>>>>>> master
+ - uid: 509
components:
- - type: MetaData
- name: питание суда
- type: Transform
- pos: 53.5,-9.5
+ pos: 64.5,-21.5
parent: 2
-<<<<<<< HEAD
- - uid: 340
-=======
- - uid: 302
->>>>>>> master
+ - uid: 510
components:
- type: Transform
- pos: -26.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,-39.5
parent: 2
-<<<<<<< HEAD
- - uid: 341
-=======
- - uid: 303
->>>>>>> master
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 511
components:
- - type: MetaData
- name: питание крыла дормиториев
- type: Transform
- pos: 53.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,49.5
parent: 2
-<<<<<<< HEAD
- - uid: 342
-=======
- - uid: 304
->>>>>>> master
+ - uid: 512
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 12.5,87.5
+ pos: 39.5,51.5
parent: 2
-<<<<<<< HEAD
- - uid: 343
-=======
- - uid: 305
->>>>>>> master
+- proto: AirlockHeadOfPersonnelLocked
+ entities:
+ - uid: 513
components:
- - type: MetaData
- name: питание запада
- type: Transform
- pos: -39.5,-2.5
+ pos: -10.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 344
-=======
- - uid: 306
->>>>>>> master
+ - uid: 514
components:
- - type: MetaData
- name: коридор к генератору гравитации
- type: Transform
- pos: -66.5,15.5
+ pos: -13.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 345
-=======
- - uid: 307
->>>>>>> master
+ - uid: 515
components:
- type: Transform
- pos: -76.5,2.5
+ pos: -9.5,-6.5
parent: 2
-<<<<<<< HEAD
- - uid: 346
+- proto: AirlockHeadOfSecurityLocked
+ entities:
+ - uid: 516
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,83.5
+ pos: 44.5,20.5
parent: 2
- - uid: 347
+ - uid: 517
components:
- type: Transform
- pos: -35.5,7.5
+ pos: 37.5,20.5
parent: 2
- - uid: 348
+- proto: AirlockHydroGlassLocked
+ entities:
+ - uid: 518
components:
- type: Transform
- pos: -20.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,44.5
parent: 2
- - uid: 349
+ - uid: 519
components:
- type: Transform
- pos: 9.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,48.5
parent: 2
- - uid: 350
+ - uid: 520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,47.5
+ parent: 2
+- proto: AirlockHydroponicsLocked
+ entities:
+ - uid: 521
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 9.5,75.5
+ pos: -35.5,49.5
parent: 2
- - uid: 351
+- proto: AirlockJanitorLocked
+ entities:
+ - uid: 522
components:
- type: Transform
- pos: 1.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,55.5
parent: 2
- - uid: 352
+ - uid: 523
components:
- type: Transform
- pos: 7.5,58.5
+ pos: -1.5,51.5
parent: 2
-- proto: AirlockEVAGlassLocked
+- proto: AirlockKitchenGlassLocked
entities:
- - uid: 353
+ - uid: 524
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-73.5
+ pos: -29.5,39.5
parent: 2
- - uid: 354
+- proto: AirlockKitchenLocked
+ entities:
+ - uid: 525
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -31.5,-73.5
+ pos: -27.5,30.5
parent: 2
-- proto: AirlockEVALocked
+- proto: AirlockLawyerLocked
entities:
- - uid: 355
+ - uid: 526
components:
- type: Transform
- pos: -13.5,-9.5
+ pos: 32.5,1.5
parent: 2
- - uid: 356
+ - uid: 527
components:
- type: Transform
- pos: -9.5,-9.5
+ pos: 35.5,3.5
parent: 2
-- proto: AirlockExternalCargoLocked
+- proto: AirlockMaintAtmoLocked
entities:
- - uid: 357
-=======
- - uid: 308
+ - uid: 528
components:
+ - type: MetaData
+ name: атмосферная
- type: Transform
- pos: -35.5,7.5
+ pos: -45.5,41.5
parent: 2
- - uid: 309
+- proto: AirlockMaintBarLocked
+ entities:
+ - uid: 529
components:
- type: Transform
- pos: 9.5,76.5
+ pos: -0.5,40.5
parent: 2
- - uid: 310
+- proto: AirlockMaintCargoLocked
+ entities:
+ - uid: 530
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,75.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,55.5
parent: 2
- - uid: 311
+ - uid: 531
components:
+ - type: MetaData
+ name: служебное помещение
- type: Transform
- pos: 1.5,-38.5
+ pos: 3.5,40.5
parent: 2
- - uid: 312
+ - uid: 532
components:
- type: Transform
- pos: 7.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,55.5
parent: 2
- - uid: 313
+- proto: AirlockMaintChapelLocked
+ entities:
+ - uid: 533
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 10.5,83.5
+ pos: -23.5,-62.5
parent: 2
-- proto: AirlockEVALocked
- entities:
- - uid: 314
+ - uid: 534
components:
- type: Transform
- pos: -9.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,-63.5
parent: 2
- - uid: 315
+ - uid: 535
components:
- type: Transform
- pos: -13.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-77.5
parent: 2
-- proto: AirlockExternalAtmosphericsLocked
+- proto: AirlockMaintChemLocked
entities:
- - uid: 316
+ - uid: 536
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -67.5,25.5
+ pos: 5.5,-36.5
parent: 2
- - uid: 317
+- proto: AirlockMaintCommandLocked
+ entities:
+ - uid: 537
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-2.5
parent: 2
-- proto: AirlockExternalCargoLocked
+- proto: AirlockMaintCommonLocked
entities:
- - uid: 318
->>>>>>> master
+ - uid: 538
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,41.5
+ pos: -35.5,58.5
parent: 2
-<<<<<<< HEAD
- - uid: 358
-=======
- - uid: 319
->>>>>>> master
+ - uid: 539
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,39.5
+ pos: -37.5,58.5
parent: 2
-- proto: AirlockExternalEngineeringLocked
+- proto: AirlockMaintDetectiveLocked
entities:
-<<<<<<< HEAD
- - uid: 359
-=======
- - uid: 320
->>>>>>> master
+ - uid: 540
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,14.5
+ pos: 27.5,11.5
parent: 2
-- proto: AirlockExternalGlass
+- proto: AirlockMaintEngiLocked
entities:
-<<<<<<< HEAD
- - uid: 360
-=======
- - uid: 321
->>>>>>> master
+ - uid: 541
components:
- type: Transform
- pos: -11.5,97.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,73.5
parent: 2
-<<<<<<< HEAD
- - uid: 361
-=======
- - uid: 322
->>>>>>> master
+ - uid: 542
components:
- type: Transform
- pos: -31.5,84.5
+ pos: 76.5,-44.5
parent: 2
-<<<<<<< HEAD
- - uid: 362
-=======
- - uid: 323
->>>>>>> master
+ - uid: 543
components:
+ - type: MetaData
+ name: инженерная
- type: Transform
- pos: -31.5,77.5
+ pos: -53.5,-18.5
parent: 2
-<<<<<<< HEAD
- - uid: 363
-=======
- - uid: 324
->>>>>>> master
+- proto: AirlockMaintGlass
+ entities:
+ - uid: 544
components:
- type: Transform
- pos: -29.5,97.5
+ pos: -48.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 364
-=======
- - uid: 325
->>>>>>> master
+- proto: AirlockMaintHydroLocked
+ entities:
+ - uid: 545
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,77.5
+ pos: -37.5,44.5
parent: 2
-<<<<<<< HEAD
- - uid: 365
-=======
- - uid: 326
->>>>>>> master
+- proto: AirlockMaintJanitorLocked
+ entities:
+ - uid: 546
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -13.5,77.5
+ pos: 3.5,49.5
parent: 2
-<<<<<<< HEAD
- - uid: 366
-=======
- - uid: 327
->>>>>>> master
+- proto: AirlockMaintKitchenLocked
+ entities:
+ - uid: 547
components:
- type: Transform
- pos: -27.5,77.5
+ pos: -34.5,26.5
parent: 2
-<<<<<<< HEAD
- - uid: 367
-=======
- - uid: 328
->>>>>>> master
+- proto: AirlockMaintLawyerLocked
+ entities:
+ - uid: 548
components:
- type: Transform
- pos: -27.5,84.5
+ pos: 36.5,-2.5
parent: 2
-<<<<<<< HEAD
- - uid: 368
-=======
- - uid: 329
->>>>>>> master
+- proto: AirlockMaintLocked
+ entities:
+ - uid: 549
components:
- type: Transform
- pos: 55.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,-32.5
parent: 2
-<<<<<<< HEAD
- - uid: 369
-=======
- - uid: 330
->>>>>>> master
+ - uid: 550
components:
- type: Transform
- pos: 53.5,-40.5
+ pos: -27.5,59.5
parent: 2
-<<<<<<< HEAD
- - uid: 370
-=======
- - uid: 331
->>>>>>> master
+ - uid: 551
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,-40.5
+ pos: 29.5,-55.5
parent: 2
-<<<<<<< HEAD
- - uid: 371
-=======
- - uid: 332
->>>>>>> master
+ - uid: 552
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,84.5
+ pos: -30.5,7.5
parent: 2
-<<<<<<< HEAD
- - uid: 372
-=======
- - uid: 333
->>>>>>> master
+ - uid: 553
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,84.5
+ pos: -25.5,16.5
parent: 2
-<<<<<<< HEAD
- - uid: 373
-=======
- - uid: 334
->>>>>>> master
+ - uid: 554
components:
- type: Transform
- pos: 4.5,84.5
+ pos: 54.5,-28.5
parent: 2
-<<<<<<< HEAD
- - uid: 374
-=======
- - uid: 335
->>>>>>> master
+ - uid: 555
components:
- type: Transform
- pos: 4.5,77.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,68.5
parent: 2
-<<<<<<< HEAD
- - uid: 375
-=======
- - uid: 336
->>>>>>> master
+ - uid: 556
components:
- type: Transform
- pos: 68.5,-40.5
+ pos: 1.5,29.5
parent: 2
-<<<<<<< HEAD
- - uid: 376
-=======
- - uid: 337
->>>>>>> master
+ - uid: 557
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-82.5
+ pos: 25.5,-55.5
parent: 2
-<<<<<<< HEAD
- - uid: 377
+ - uid: 558
components:
- type: Transform
- pos: 2.5,-82.5
+ pos: -27.5,-16.5
parent: 2
- - uid: 378
+ - uid: 559
components:
- type: Transform
- pos: -3.5,-82.5
+ pos: -41.5,2.5
parent: 2
- - uid: 379
+ - uid: 560
components:
- type: Transform
- pos: -5.5,-82.5
+ pos: -42.5,-41.5
parent: 2
-- proto: AirlockExternalGlassAtmosphericsLocked
- entities:
- - uid: 380
+ - uid: 561
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,24.5
+ pos: -41.5,28.5
parent: 2
- - uid: 381
+ - uid: 562
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,23.5
+ pos: -44.5,-34.5
parent: 2
- - uid: 382
+ - uid: 563
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,23.5
+ pos: 1.5,41.5
parent: 2
-- proto: AirlockExternalGlassCargoLocked
- entities:
- - uid: 383
-=======
- - uid: 338
+ - uid: 564
components:
- type: Transform
- pos: 2.5,-82.5
+ pos: 22.5,11.5
parent: 2
- - uid: 339
+ - uid: 565
components:
- type: Transform
- pos: -3.5,-82.5
+ pos: -39.5,23.5
parent: 2
- - uid: 340
+ - uid: 566
components:
- type: Transform
- pos: -5.5,-82.5
+ pos: -36.5,56.5
parent: 2
- - uid: 38350
+ - uid: 567
components:
+ - type: MetaData
+ name: сад технических помещений
- type: Transform
- pos: 0.5,5.5
- parent: 38344
- - uid: 38351
+ pos: -41.5,34.5
+ parent: 2
+ - uid: 568
components:
- type: Transform
- pos: -1.5,5.5
- parent: 38344
- - uid: 38352
+ rot: 1.5707963267948966 rad
+ pos: 16.5,71.5
+ parent: 2
+ - uid: 569
components:
+ - type: MetaData
+ name: отходы
- type: Transform
- pos: 0.5,9.5
- parent: 38344
- - uid: 38353
+ pos: 22.5,56.5
+ parent: 2
+ - uid: 570
components:
- type: Transform
- pos: -1.5,9.5
- parent: 38344
-- proto: AirlockExternalGlassCargoLocked
- entities:
- - uid: 341
->>>>>>> master
+ pos: 32.5,-19.5
+ parent: 2
+ - uid: 571
components:
+ - type: MetaData
+ desc: 'Табличка на двери гласит: «Гостевой офис», и именно такой она была до того, как к ней добрались ассистенты.'
+ name: офис галактоаркады
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,49.5
+ pos: 11.5,61.5
parent: 2
-<<<<<<< HEAD
- - uid: 384
-=======
- - uid: 342
->>>>>>> master
+ - uid: 572
components:
+ - type: MetaData
+ name: вспомогательная хирургия
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,51.5
+ pos: 50.5,-32.5
parent: 2
-- proto: AirlockExternalGlassEngineeringLocked
- entities:
-<<<<<<< HEAD
- - uid: 385
-=======
- - uid: 343
->>>>>>> master
+ - uid: 573
components:
- type: Transform
- pos: -45.5,56.5
+ pos: -33.5,-54.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 387
- - type: DeviceLinkSource
- linkedPorts:
- 387:
- - DoorStatus: DoorBolt
- - uid: 386
-=======
- - 345
- - type: DeviceLinkSource
- linkedPorts:
- 345:
- - DoorStatus: DoorBolt
- - uid: 344
->>>>>>> master
+ - uid: 574
components:
- type: Transform
- pos: -58.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-35.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 388
- - type: DeviceLinkSource
- linkedPorts:
- 388:
- - DoorStatus: DoorBolt
- - uid: 387
-=======
- - 346
- - type: DeviceLinkSource
- linkedPorts:
- 346:
- - DoorStatus: DoorBolt
- - uid: 345
->>>>>>> master
+ - uid: 575
components:
+ - type: MetaData
+ name: южно-восточная строй площадка
- type: Transform
- pos: -45.5,58.5
+ pos: 50.5,-41.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 385
- - type: DeviceLinkSource
- linkedPorts:
- 385:
- - DoorStatus: DoorBolt
- - uid: 388
-=======
- - 343
- - type: DeviceLinkSource
- linkedPorts:
- 343:
- - DoorStatus: DoorBolt
- - uid: 346
->>>>>>> master
+ - uid: 576
components:
+ - type: MetaData
+ name: южно-восточная строй площадка
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,62.5
+ pos: 47.5,-45.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 386
- - type: DeviceLinkSource
- linkedPorts:
- 386:
- - DoorStatus: DoorBolt
- - uid: 389
+ - uid: 577
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,57.5
+ pos: 42.5,-41.5
parent: 2
- - uid: 390
-=======
- - 344
- - type: DeviceLinkSource
- linkedPorts:
- 344:
- - DoorStatus: DoorBolt
- - uid: 347
->>>>>>> master
+ - uid: 578
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -78.5,14.5
+ pos: 44.5,-5.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
-<<<<<<< HEAD
- - uid: 391
+ - uid: 579
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,57.5
+ pos: 0.5,33.5
parent: 2
- - uid: 392
+ - uid: 580
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 13.5,78.5
+ pos: 16.5,66.5
parent: 2
- - uid: 393
-=======
- - uid: 348
->>>>>>> master
+ - uid: 581
components:
+ - type: MetaData
+ name: свободный офис
- type: Transform
- pos: -53.5,54.5
+ pos: -36.5,27.5
parent: 2
-- proto: AirlockExternalGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 394
-=======
- - uid: 349
->>>>>>> master
+ - uid: 582
components:
+ - type: MetaData
+ name: сад технических помещений
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,91.5
+ pos: -36.5,32.5
parent: 2
-<<<<<<< HEAD
- - uid: 395
-=======
- - uid: 350
->>>>>>> master
+ - uid: 583
components:
- type: Transform
- pos: 92.5,27.5
+ pos: 19.5,12.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 397
- - type: DeviceLinkSource
- linkedPorts:
- 397:
- - DoorStatus: DoorBolt
- - uid: 396
-=======
- - 352
- - type: DeviceLinkSource
- linkedPorts:
- 352:
- - DoorStatus: DoorBolt
- - uid: 351
->>>>>>> master
+ - uid: 584
components:
+ - type: MetaData
+ name: западный кабинет уборщика
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,91.5
+ pos: -75.5,-30.5
parent: 2
-<<<<<<< HEAD
- - uid: 397
-=======
- - uid: 352
->>>>>>> master
+ - uid: 585
components:
- type: Transform
- pos: 92.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -36.5,-58.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 395
- - type: DeviceLinkSource
- linkedPorts:
- 395:
- - DoorStatus: DoorBolt
- - uid: 398
-=======
- - 350
- - type: DeviceLinkSource
- linkedPorts:
- 350:
- - DoorStatus: DoorBolt
- - uid: 353
->>>>>>> master
+ - uid: 586
components:
+ - type: MetaData
+ name: южно-восточная строй площадка
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,93.5
+ pos: 45.5,-45.5
parent: 2
-- proto: AirlockExternalGlassShuttleArrivals
- entities:
-<<<<<<< HEAD
- - uid: 399
-=======
- - uid: 354
->>>>>>> master
+ - uid: 587
components:
+ - type: MetaData
+ desc: 'Табличка на двери гласит: «Гостевой офис», и именно такой она была до того, как к ней добрались ассистенты.'
+ name: офис галактоаркады
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,84.5
+ pos: 17.5,57.5
parent: 2
-<<<<<<< HEAD
- - uid: 400
-=======
- - uid: 355
->>>>>>> master
+ - uid: 588
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,77.5
+ pos: 19.5,-19.5
parent: 2
-<<<<<<< HEAD
- - uid: 401
-=======
- - uid: 356
->>>>>>> master
+ - uid: 589
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,77.5
+ pos: -2.5,28.5
parent: 2
-<<<<<<< HEAD
- - uid: 402
-=======
- - uid: 357
->>>>>>> master
+ - uid: 590
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,77.5
+ pos: 25.5,-18.5
parent: 2
-<<<<<<< HEAD
- - uid: 403
-=======
- - uid: 358
->>>>>>> master
+ - uid: 591
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,84.5
+ pos: 39.5,-22.5
parent: 2
-<<<<<<< HEAD
- - uid: 404
-=======
- - uid: 359
->>>>>>> master
+ - uid: 592
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,77.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,-58.5
parent: 2
-<<<<<<< HEAD
- - uid: 405
-=======
- - uid: 360
->>>>>>> master
+ - uid: 593
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,84.5
+ pos: -21.5,26.5
parent: 2
-<<<<<<< HEAD
- - uid: 406
-=======
- - uid: 361
->>>>>>> master
+ - uid: 594
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,84.5
+ pos: -25.5,-19.5
parent: 2
-- proto: AirlockExternalGlassShuttleEmergencyLocked
- entities:
-<<<<<<< HEAD
- - uid: 407
-=======
- - uid: 362
->>>>>>> master
+ - uid: 595
components:
- type: Transform
- pos: -3.5,-86.5
+ pos: -21.5,55.5
parent: 2
-<<<<<<< HEAD
- - uid: 408
-=======
- - uid: 363
->>>>>>> master
+ - uid: 596
components:
+ - type: MetaData
+ name: склад атмосферы юго-востока
- type: Transform
- pos: 2.5,-86.5
+ pos: 53.5,-37.5
parent: 2
-<<<<<<< HEAD
- - uid: 409
-=======
- - uid: 364
->>>>>>> master
+ - uid: 597
components:
+ - type: MetaData
+ name: незавершенный офисный театральный модуль
- type: Transform
- pos: -5.5,-86.5
+ pos: 50.5,-48.5
parent: 2
-<<<<<<< HEAD
- - uid: 410
-=======
- - uid: 365
->>>>>>> master
+ - uid: 598
components:
+ - type: MetaData
+ name: вспомогательная хирургия
- type: Transform
- pos: 4.5,-86.5
+ pos: 42.5,-32.5
parent: 2
-- proto: AirlockExternalGlassShuttleEscape
- entities:
-<<<<<<< HEAD
- - uid: 411
-=======
- - uid: 366
->>>>>>> master
+ - uid: 599
components:
+ - type: MetaData
+ name: библиотека
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 94.5,21.5
+ pos: -35.5,-3.5
parent: 2
-<<<<<<< HEAD
- - uid: 412
-=======
- - uid: 367
->>>>>>> master
+ - uid: 600
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 94.5,17.5
+ pos: 4.5,47.5
parent: 2
-<<<<<<< HEAD
- - uid: 413
-=======
- - uid: 368
->>>>>>> master
+ - uid: 601
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,99.5
+ pos: -0.5,48.5
parent: 2
-<<<<<<< HEAD
- - uid: 414
-=======
- - uid: 369
->>>>>>> master
+ - uid: 602
components:
+ - type: MetaData
+ name: незавершенный театральный модуль
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,99.5
+ pos: 38.5,-52.5
parent: 2
-- proto: AirlockExternalGlassShuttleLocked
- entities:
-<<<<<<< HEAD
- - uid: 415
-=======
- - uid: 370
->>>>>>> master
+ - uid: 603
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,84.5
+ pos: -43.5,-3.5
parent: 2
-<<<<<<< HEAD
- - uid: 416
-=======
- - uid: 371
->>>>>>> master
+ - uid: 604
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -33.5,77.5
+ pos: 0.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 417
-=======
- - uid: 372
->>>>>>> master
+ - uid: 605
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 90.5,21.5
+ pos: -75.5,-19.5
parent: 2
- - type: Docking
- dockJointId: docking93271
-<<<<<<< HEAD
- dockedWith: 38717
-=======
- dockedWith: 38246
->>>>>>> master
- - type: DeviceLinkSource
- lastSignals:
- DoorStatus: False
- DockStatus: True
-<<<<<<< HEAD
- - uid: 38716
-=======
- - uid: 38245
->>>>>>> master
+ - uid: 606
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,0.5
-<<<<<<< HEAD
- parent: 38714
- - uid: 38717
-=======
- parent: 38244
- - uid: 38246
->>>>>>> master
+ pos: -41.5,24.5
+ parent: 2
+ - uid: 607
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,0.5
-<<<<<<< HEAD
- parent: 38714
- - type: Docking
- dockJointId: docking93271
- dockedWith: 417
-=======
- parent: 38244
- - type: Docking
- dockJointId: docking93271
- dockedWith: 372
->>>>>>> master
- - type: DeviceLinkSource
- lastSignals:
- DoorStatus: False
- DockStatus: True
-- proto: AirlockExternalLocked
- entities:
-<<<<<<< HEAD
- - uid: 418
-=======
- - uid: 373
+ pos: 6.5,51.5
+ parent: 2
+ - uid: 608
components:
- type: Transform
- pos: 13.5,78.5
+ pos: 6.5,55.5
parent: 2
- - uid: 374
->>>>>>> master
+ - uid: 609
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,89.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-62.5
parent: 2
-<<<<<<< HEAD
- - uid: 419
-=======
- - uid: 375
->>>>>>> master
+ - uid: 610
components:
- type: Transform
- pos: -61.5,-16.5
+ pos: -38.5,-56.5
parent: 2
-<<<<<<< HEAD
- - uid: 420
-=======
- - uid: 376
->>>>>>> master
+ - uid: 611
components:
- type: Transform
- pos: -75.5,-26.5
+ pos: 8.5,-55.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 425
- - type: DeviceLinkSource
- linkedPorts:
- 425:
- - DoorStatus: DoorBolt
- - uid: 421
-=======
- - 381
- - type: DeviceLinkSource
- linkedPorts:
- 381:
- - DoorStatus: DoorBolt
- - uid: 377
->>>>>>> master
+ - uid: 612
components:
- type: Transform
- pos: -59.5,-16.5
+ pos: 12.5,-55.5
parent: 2
-<<<<<<< HEAD
- - uid: 422
-=======
- - uid: 378
->>>>>>> master
+ - uid: 613
components:
- type: Transform
- pos: 18.5,87.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,24.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 431
- - type: DeviceLinkSource
- linkedPorts:
- 431:
- - DoorStatus: DoorBolt
- - uid: 423
-=======
- - 387
- - type: DeviceLinkSource
- linkedPorts:
- 387:
- - DoorStatus: DoorBolt
- - uid: 379
->>>>>>> master
+ - uid: 614
components:
- type: Transform
- pos: 57.5,-46.5
+ pos: -20.5,17.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 427
- - type: DeviceLinkSource
- linkedPorts:
- 427:
- - DoorStatus: DoorBolt
- - uid: 424
-=======
- - 383
- - type: DeviceLinkSource
- linkedPorts:
- 383:
- - DoorStatus: DoorBolt
- - uid: 380
->>>>>>> master
+ - uid: 615
components:
- type: Transform
- pos: -10.5,-82.5
+ pos: 2.5,-54.5
parent: 2
-<<<<<<< HEAD
- - uid: 425
-=======
- - uid: 381
->>>>>>> master
+ - uid: 616
components:
- type: Transform
- pos: -78.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-50.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 420
- - type: DeviceLinkSource
- linkedPorts:
- 420:
- - DoorStatus: DoorBolt
- - uid: 426
-=======
- - 376
- - type: DeviceLinkSource
- linkedPorts:
- 376:
- - DoorStatus: DoorBolt
- - uid: 382
->>>>>>> master
+ - uid: 617
components:
- type: Transform
- pos: -46.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-55.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 428
- - type: DeviceLinkSource
- linkedPorts:
- 428:
- - DoorStatus: DoorBolt
- - uid: 427
-=======
- - 384
- - type: DeviceLinkSource
- linkedPorts:
- 384:
- - DoorStatus: DoorBolt
- - uid: 383
->>>>>>> master
+ - uid: 618
components:
- type: Transform
- pos: 59.5,-46.5
+ pos: -30.5,59.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 423
- - type: DeviceLinkSource
- linkedPorts:
- 423:
- - DoorStatus: DoorBolt
- - uid: 428
-=======
- - 379
- - type: DeviceLinkSource
- linkedPorts:
- 379:
- - DoorStatus: DoorBolt
- - uid: 384
->>>>>>> master
+ - uid: 619
components:
- type: Transform
- pos: -44.5,-74.5
+ pos: 42.5,-7.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 426
- - type: DeviceLinkSource
- linkedPorts:
- 426:
- - DoorStatus: DoorBolt
- - uid: 429
-=======
- - 382
- - type: DeviceLinkSource
- linkedPorts:
- 382:
- - DoorStatus: DoorBolt
- - uid: 385
->>>>>>> master
+ - uid: 620
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 32.5,59.5
+ pos: 13.5,67.5
parent: 2
-<<<<<<< HEAD
- - uid: 430
-=======
- - uid: 386
->>>>>>> master
+ - uid: 621
components:
- type: Transform
- pos: -42.5,-57.5
+ pos: 46.5,-12.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 434
- - type: DeviceLinkSource
- linkedPorts:
- 434:
- - DoorStatus: DoorBolt
- - uid: 431
-=======
- - 390
- - type: DeviceLinkSource
- linkedPorts:
- 390:
- - DoorStatus: DoorBolt
- - uid: 387
->>>>>>> master
+ - uid: 622
components:
- type: Transform
- pos: 16.5,87.5
+ pos: 33.5,-5.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 422
- - type: DeviceLinkSource
- linkedPorts:
- 422:
- - DoorStatus: DoorBolt
- - uid: 432
-=======
- - 378
- - type: DeviceLinkSource
- linkedPorts:
- 378:
- - DoorStatus: DoorBolt
- - uid: 388
->>>>>>> master
+ - uid: 623
components:
- type: Transform
- pos: -78.5,-10.5
+ pos: 54.5,-10.5
parent: 2
-<<<<<<< HEAD
- - uid: 433
-=======
- - uid: 389
->>>>>>> master
+ - uid: 624
components:
- type: Transform
- pos: -81.5,-13.5
- parent: 2
-<<<<<<< HEAD
- - uid: 434
-=======
- - uid: 390
->>>>>>> master
- components:
- - type: Transform
- pos: -40.5,-57.5
- parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 430
- - type: DeviceLinkSource
- linkedPorts:
- 430:
- - DoorStatus: DoorBolt
- - uid: 435
-=======
- - 386
- - type: DeviceLinkSource
- linkedPorts:
- 386:
- - DoorStatus: DoorBolt
- - uid: 391
->>>>>>> master
- components:
- - type: Transform
- pos: -81.5,-12.5
+ pos: -46.5,-41.5
parent: 2
-<<<<<<< HEAD
- - uid: 436
-=======
- - uid: 392
->>>>>>> master
+ - uid: 625
components:
- type: Transform
- pos: -79.5,-10.5
+ pos: 4.5,57.5
parent: 2
-<<<<<<< HEAD
- - uid: 437
-=======
- - uid: 393
->>>>>>> master
+ - uid: 626
components:
- type: Transform
- pos: -79.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,70.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 438
- - type: DeviceLinkSource
- linkedPorts:
- 438:
- - DoorStatus: DoorBolt
- - uid: 438
-=======
- - 394
- - type: DeviceLinkSource
- linkedPorts:
- 394:
- - DoorStatus: DoorBolt
- - uid: 394
->>>>>>> master
+- proto: AirlockMaintMedLocked
+ entities:
+ - uid: 627
components:
- type: Transform
- pos: -81.5,-2.5
+ pos: 17.5,-53.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 437
- - type: DeviceLinkSource
- linkedPorts:
- 437:
- - DoorStatus: DoorBolt
- - uid: 439
-=======
- - 393
- - type: DeviceLinkSource
- linkedPorts:
- 393:
- - DoorStatus: DoorBolt
- - uid: 395
->>>>>>> master
+ - uid: 628
components:
- type: Transform
- pos: -109.5,23.5
+ pos: 31.5,-53.5
parent: 2
-<<<<<<< HEAD
- - uid: 440
-=======
- - uid: 396
->>>>>>> master
+ - uid: 629
components:
- type: Transform
- pos: -112.5,23.5
+ pos: 39.5,-34.5
parent: 2
-<<<<<<< HEAD
- - uid: 441
-=======
- - uid: 397
->>>>>>> master
+ - uid: 630
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -79.5,0.5
+ pos: 33.5,-22.5
parent: 2
-<<<<<<< HEAD
-- proto: AirlockExternalShuttleLocked
+- proto: AirlockMaintRnDLocked
entities:
- - uid: 442
-=======
- - uid: 398
+ - uid: 631
components:
- type: Transform
- pos: 94.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-58.5
parent: 2
-- proto: AirlockExternalShuttleLocked
- entities:
- - uid: 399
->>>>>>> master
+ - uid: 632
components:
+ - type: MetaData
+ name: кладовая атмосферы ксенобиологии
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,37.5
+ pos: -47.5,-22.5
parent: 2
-<<<<<<< HEAD
- - uid: 443
-=======
- - uid: 400
->>>>>>> master
+ - uid: 633
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,78.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-53.5
parent: 2
-<<<<<<< HEAD
- - uid: 444
+ - uid: 634
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 93.5,2.5
+ pos: -22.5,-22.5
parent: 2
-- proto: AirlockFreezer
- entities:
- - uid: 445
-=======
-- proto: AirlockExternalShuttleSyndicateLocked
+- proto: AirlockMaintRnDMedLocked
entities:
- - uid: 38354
+ - uid: 635
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,19.5
- parent: 38344
-- proto: AirlockFreezer
- entities:
- - uid: 401
->>>>>>> master
+ pos: 37.5,-24.5
+ parent: 2
+ - uid: 636
components:
- type: Transform
- pos: 24.5,66.5
+ pos: 4.5,-41.5
parent: 2
-<<<<<<< HEAD
- - uid: 446
-=======
- - uid: 402
->>>>>>> master
+- proto: AirlockMaintSecLocked
+ entities:
+ - uid: 637
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,3.5
+ pos: 68.5,25.5
parent: 2
-- proto: AirlockFreezerLocked
- entities:
-<<<<<<< HEAD
- - uid: 447
-=======
- - uid: 403
->>>>>>> master
+ - uid: 638
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,29.5
+ pos: 4.5,60.5
parent: 2
-- proto: AirlockGlass
- entities:
-<<<<<<< HEAD
- - uid: 448
+ - uid: 639
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-35.5
+ pos: 45.5,-3.5
parent: 2
- - uid: 449
+ - uid: 640
components:
- type: Transform
- pos: 47.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-56.5
parent: 2
- - uid: 450
+ - uid: 641
components:
- type: Transform
- pos: 46.5,-17.5
+ pos: 47.5,-5.5
parent: 2
- - uid: 451
+- proto: AirlockMaintTheatreLocked
+ entities:
+ - uid: 642
components:
- type: Transform
- pos: 73.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,30.5
parent: 2
- - uid: 452
+ - uid: 643
components:
- type: Transform
- pos: 64.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,30.5
parent: 2
- - uid: 453
-=======
- - uid: 404
+- proto: AirlockMedicalGlass
+ entities:
+ - uid: 644
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-25.5
parent: 2
- - uid: 405
+ - uid: 645
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-24.5
parent: 2
- - uid: 406
+- proto: AirlockMedicalGlassLocked
+ entities:
+ - uid: 646
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-21.5
+ pos: 29.5,-32.5
parent: 2
- - uid: 407
+ - uid: 647
components:
- type: Transform
- pos: 47.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,66.5
parent: 2
- - uid: 408
+ - uid: 648
components:
- type: Transform
- pos: 46.5,-17.5
+ pos: 15.5,-34.5
parent: 2
- - uid: 409
+ - uid: 649
components:
- type: Transform
- pos: 73.5,-40.5
+ pos: 23.5,-28.5
parent: 2
- - uid: 410
->>>>>>> master
+ - uid: 650
components:
- type: Transform
- pos: -20.5,12.5
+ pos: 29.5,-27.5
parent: 2
-<<<<<<< HEAD
- - uid: 454
-=======
- - uid: 411
->>>>>>> master
+ - uid: 17802
components:
- type: Transform
- pos: 73.5,-47.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-32.5
parent: 2
-<<<<<<< HEAD
- - uid: 455
+- proto: AirlockMedicalLocked
+ entities:
+ - uid: 651
components:
- - type: MetaData
- name: приемная Зоотехника
- type: Transform
- pos: -3.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-42.5
parent: 2
- - uid: 456
+ - uid: 652
components:
- type: Transform
- pos: -3.5,-12.5
+ pos: 13.5,-46.5
parent: 2
- - uid: 457
+ - uid: 653
components:
- type: Transform
- pos: 24.5,-1.5
+ pos: 29.5,-49.5
parent: 2
- - uid: 458
+ - uid: 654
components:
- type: Transform
- pos: 66.5,-18.5
+ pos: 36.5,-32.5
parent: 2
- - uid: 459
-=======
- - uid: 412
+ - uid: 655
components:
- - type: MetaData
- name: приемная Зоотехника
- type: Transform
- pos: -3.5,-17.5
+ pos: 29.5,-43.5
parent: 2
- - uid: 413
+ - uid: 656
components:
- type: Transform
- pos: -3.5,-12.5
+ pos: 17.5,-47.5
parent: 2
- - uid: 414
+ - uid: 657
components:
- type: Transform
- pos: 24.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-56.5
parent: 2
- - uid: 415
->>>>>>> master
+ - uid: 658
components:
- type: Transform
- pos: 19.5,5.5
+ pos: 15.5,-43.5
parent: 2
-<<<<<<< HEAD
- - uid: 460
-=======
- - uid: 416
->>>>>>> master
+ - uid: 659
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,25.5
+ pos: 29.5,-39.5
parent: 2
-<<<<<<< HEAD
- - uid: 461
-=======
- - uid: 417
->>>>>>> master
+ - uid: 660
components:
- type: Transform
- pos: -24.5,7.5
+ pos: 27.5,-53.5
parent: 2
-<<<<<<< HEAD
- - uid: 462
+- proto: AirlockMedicalScienceGlassLocked
+ entities:
+ - uid: 661
components:
- type: Transform
- pos: 78.5,-18.5
+ pos: 9.5,-41.5
parent: 2
- - uid: 463
+- proto: AirlockMedicalScienceLocked
+ entities:
+ - uid: 662
components:
- type: Transform
- pos: 19.5,6.5
+ pos: 15.5,-39.5
parent: 2
- - uid: 464
-=======
- - uid: 418
->>>>>>> master
+ - uid: 663
components:
- type: Transform
- pos: -25.5,7.5
+ pos: 4.5,-47.5
parent: 2
-<<<<<<< HEAD
- - uid: 465
-=======
- - uid: 419
->>>>>>> master
+ - uid: 664
components:
- type: Transform
- pos: -20.5,5.5
+ pos: 1.5,-50.5
parent: 2
-<<<<<<< HEAD
- - uid: 466
-=======
- - uid: 420
->>>>>>> master
+ - uid: 665
components:
- type: Transform
- pos: -20.5,4.5
+ pos: 1.5,-43.5
parent: 2
-<<<<<<< HEAD
- - uid: 467
-=======
- - uid: 421
->>>>>>> master
+ - uid: 666
components:
- type: Transform
- pos: -20.5,6.5
+ pos: 10.5,-56.5
parent: 2
-<<<<<<< HEAD
- - uid: 468
-=======
- - uid: 422
->>>>>>> master
+ - uid: 667
components:
- type: Transform
- pos: -17.5,54.5
+ pos: 15.5,-38.5
parent: 2
-<<<<<<< HEAD
- - uid: 469
+ - uid: 668
components:
- type: Transform
- pos: 78.5,-21.5
+ pos: 10.5,-53.5
parent: 2
- - uid: 470
+- proto: AirlockQuartermasterLocked
+ entities:
+ - uid: 669
components:
- type: Transform
- pos: -19.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,36.5
parent: 2
- - uid: 471
+ - uid: 670
components:
- type: Transform
- pos: 66.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,39.5
parent: 2
- - uid: 472
+- proto: AirlockResearchDirectorGlassLocked
+ entities:
+ - uid: 671
components:
- type: Transform
- pos: 22.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-51.5
parent: 2
- - uid: 473
+- proto: AirlockResearchDirectorLocked
+ entities:
+ - uid: 672
components:
- type: Transform
- pos: 76.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-44.5
parent: 2
- - uid: 474
+ - uid: 673
components:
- type: Transform
- pos: 76.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-39.5
parent: 2
- - uid: 475
+ - uid: 674
components:
- type: Transform
- pos: 19.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-50.5
parent: 2
- - uid: 476
+- proto: AirlockSalvageGlassLocked
+ entities:
+ - uid: 675
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,25.5
+ pos: 28.5,31.5
parent: 2
- - uid: 477
+ - uid: 676
components:
- type: Transform
- pos: 84.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,29.5
parent: 2
- - uid: 478
+ - uid: 677
components:
- type: Transform
- pos: 82.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,30.5
parent: 2
- - uid: 479
+ - uid: 678
components:
- type: Transform
- pos: 82.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,33.5
parent: 2
- - uid: 480
+- proto: AirlockSalvageLocked
+ entities:
+ - uid: 679
components:
- type: Transform
- pos: 84.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,33.5
parent: 2
- - uid: 481
+ - uid: 680
components:
- type: Transform
- pos: -20.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,29.5
parent: 2
- - uid: 482
+ - uid: 681
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-56.5
+ pos: 21.5,33.5
parent: 2
- - uid: 483
+ - uid: 682
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,-56.5
+ pos: 21.5,25.5
parent: 2
- - uid: 484
+- proto: AirlockScienceGlassLocked
+ entities:
+ - uid: 683
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,-62.5
+ pos: -28.5,-42.5
parent: 2
- - uid: 485
+ - uid: 684
components:
- type: Transform
- pos: 7.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-49.5
parent: 2
- - uid: 486
+ - uid: 685
components:
- type: Transform
- pos: -20.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,-45.5
parent: 2
- - uid: 487
+ - uid: 686
components:
- type: Transform
- pos: 5.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-38.5
parent: 2
- - uid: 488
+ - uid: 687
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,-62.5
+ pos: -28.5,-36.5
parent: 2
- - uid: 489
+ - uid: 688
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-62.5
+ pos: -35.5,-44.5
parent: 2
- - uid: 490
+ - uid: 689
components:
- type: Transform
- pos: 8.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-39.5
parent: 2
- - uid: 491
+- proto: AirlockScienceLocked
+ entities:
+ - uid: 690
components:
- type: Transform
- pos: -32.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-42.5
parent: 2
- - uid: 492
+ - uid: 691
components:
- type: Transform
- pos: -13.5,50.5
+ pos: -12.5,-32.5
parent: 2
- - uid: 493
+ - uid: 692
components:
- type: Transform
- pos: -31.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-54.5
parent: 2
- - uid: 494
+ - uid: 693
components:
- type: Transform
- pos: -13.5,48.5
+ pos: -41.5,-36.5
parent: 2
- - uid: 495
+ - uid: 694
components:
- type: Transform
- pos: 4.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-36.5
parent: 2
- - uid: 496
+ - uid: 695
components:
- type: Transform
- pos: -17.5,25.5
+ pos: -31.5,-52.5
parent: 2
- - uid: 497
+ - uid: 696
components:
+ - type: MetaData
+ name: кладовая атмосферы ксенобиологии
- type: Transform
- pos: -32.5,3.5
+ pos: -45.5,-23.5
parent: 2
- - uid: 498
+ - uid: 697
components:
+ - type: MetaData
+ name: тестовый полигон токсинов
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-56.5
+ pos: -35.5,-52.5
parent: 2
- - uid: 499
+ - uid: 698
components:
+ - type: MetaData
+ name: ксенобиология
- type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-42.5
+ pos: -28.5,-32.5
parent: 2
- - uid: 500
+ - uid: 699
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -18.5,54.5
+ pos: -2.5,-39.5
parent: 2
- - uid: 501
+ - uid: 700
components:
- type: Transform
- pos: -31.5,-9.5
+ pos: -14.5,-28.5
parent: 2
- - uid: 502
+ - uid: 701
components:
- type: Transform
- pos: 15.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-40.5
parent: 2
- - uid: 503
+ - uid: 702
components:
- type: Transform
- pos: 15.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-40.5
parent: 2
- - uid: 504
+ - uid: 703
components:
- type: Transform
- pos: -0.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-44.5
parent: 2
- - uid: 505
+ - uid: 704
components:
- type: Transform
- pos: -16.5,-8.5
+ pos: -12.5,-28.5
parent: 2
- - uid: 506
+ - uid: 705
components:
- type: Transform
- pos: -16.5,-7.5
+ pos: -14.5,-32.5
parent: 2
- - uid: 507
+ - uid: 706
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-36.5
parent: 2
- - uid: 508
+ - uid: 707
components:
- type: Transform
- pos: -20.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-48.5
parent: 2
- - uid: 509
+ - uid: 708
components:
- type: Transform
- pos: 64.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-34.5
parent: 2
- - uid: 510
+ - uid: 709
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-36.5
parent: 2
-- proto: AirlockGlassShuttle
+- proto: AirlockSecurityGlass
entities:
- - uid: 511
-=======
- - uid: 423
+ - uid: 710
components:
- type: Transform
- pos: -19.5,54.5
+ pos: 33.5,6.5
parent: 2
- - uid: 424
+ - uid: 711
components:
- type: Transform
- pos: 22.5,7.5
+ pos: 33.5,4.5
parent: 2
- - uid: 425
+- proto: AirlockSecurityGlassLocked
+ entities:
+ - uid: 712
components:
- type: Transform
- pos: 19.5,4.5
+ pos: 65.5,-1.5
parent: 2
- - uid: 426
+ - uid: 713
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,25.5
+ pos: 49.5,16.5
parent: 2
- - uid: 427
+ - uid: 714
components:
- type: Transform
- pos: 84.5,-18.5
+ pos: 38.5,8.5
parent: 2
- - uid: 428
+ - uid: 715
components:
- type: Transform
- pos: 82.5,-18.5
+ pos: 57.5,20.5
parent: 2
- - uid: 429
+ - uid: 716
components:
- type: Transform
- pos: 82.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-62.5
parent: 2
- - uid: 430
+ - uid: 717
components:
- type: Transform
- pos: 84.5,-21.5
+ pos: 61.5,-1.5
parent: 2
- - uid: 431
+ - uid: 718
components:
- type: Transform
- pos: -20.5,11.5
+ pos: 68.5,1.5
parent: 2
- - uid: 432
+ - uid: 719
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-56.5
+ pos: 71.5,-0.5
parent: 2
- - uid: 433
+ - uid: 720
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-56.5
+ pos: -23.5,-0.5
parent: 2
- - uid: 434
+ - uid: 721
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-62.5
+ pos: 71.5,1.5
parent: 2
- - uid: 435
+ - uid: 722
components:
- type: Transform
- pos: 7.5,25.5
+ pos: 68.5,-0.5
parent: 2
- - uid: 436
+ - uid: 723
components:
- type: Transform
- pos: 5.5,25.5
+ pos: 69.5,-1.5
parent: 2
- - uid: 437
+ - uid: 724
components:
+ - type: MetaData
+ name: тюремные доки
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-62.5
+ pos: 90.5,2.5
parent: 2
- - uid: 438
+ - uid: 725
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-62.5
+ pos: 64.5,-3.5
parent: 2
- - uid: 439
+ - uid: 726
components:
+ - type: MetaData
+ name: медицинская комната брига
- type: Transform
- pos: 8.5,25.5
+ pos: 71.5,13.5
parent: 2
- - uid: 440
+ - uid: 727
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,-21.5
+ pos: 72.5,-3.5
parent: 2
- - uid: 441
+ - uid: 728
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-18.5
+ pos: 51.5,14.5
parent: 2
- - uid: 442
+ - uid: 729
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-9.5
+ pos: 75.5,-0.5
parent: 2
- - uid: 443
+ - uid: 730
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,-18.5
+ pos: 36.5,10.5
parent: 2
- - uid: 444
+ - uid: 731
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-2.5
+ pos: 47.5,14.5
parent: 2
- - uid: 445
+ - uid: 732
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-21.5
+ pos: 50.5,-7.5
parent: 2
- - uid: 446
+ - uid: 733
components:
+ - type: MetaData
+ name: приёмная перманентной тюрьмы
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-18.5
+ pos: 73.5,4.5
parent: 2
- - uid: 447
+ - uid: 734
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 76.5,-21.5
+ pos: 4.5,64.5
parent: 2
- - uid: 448
+ - uid: 735
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-1.5
+ pos: 49.5,12.5
parent: 2
- - uid: 449
+ - uid: 736
components:
- type: Transform
- pos: -13.5,50.5
+ pos: -48.5,9.5
parent: 2
- - uid: 450
+ - uid: 737
components:
- type: Transform
- pos: -31.5,3.5
+ pos: -44.5,9.5
parent: 2
- - uid: 451
+ - uid: 738
components:
- type: Transform
- pos: -13.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,59.5
parent: 2
- - uid: 452
+ - uid: 739
components:
- type: Transform
- pos: 4.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-74.5
parent: 2
- - uid: 453
+ - uid: 740
components:
- type: Transform
- pos: -17.5,25.5
+ pos: 60.5,25.5
parent: 2
- - uid: 454
+ - uid: 741
components:
- type: Transform
- pos: -32.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-66.5
parent: 2
- - uid: 455
+ - uid: 742
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,-56.5
+ pos: 3.5,-65.5
parent: 2
- - uid: 456
+ - uid: 743
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-76.5
parent: 2
- - uid: 457
+ - uid: 744
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,54.5
+ pos: 13.5,33.5
parent: 2
- - uid: 458
+ - uid: 745
components:
- type: Transform
- pos: -31.5,-9.5
+ pos: 11.5,30.5
parent: 2
- - uid: 459
+ - uid: 746
components:
- type: Transform
- pos: 15.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-75.5
parent: 2
- - uid: 460
+ - uid: 747
components:
- type: Transform
- pos: 15.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-74.5
parent: 2
- - uid: 461
+ - uid: 748
components:
- type: Transform
- pos: -0.5,-6.5
+ pos: -16.5,-23.5
parent: 2
- - uid: 462
+ - uid: 749
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-39.5
+ pos: 75.5,2.5
parent: 2
- - uid: 463
+ - uid: 750
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-7.5
+ pos: 47.5,-1.5
parent: 2
- - uid: 464
+ - uid: 751
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-8.5
+ pos: 13.5,-28.5
parent: 2
- - uid: 465
+ - uid: 752
components:
- type: Transform
- pos: 15.5,-9.5
+ pos: 15.5,-30.5
parent: 2
- - uid: 466
+ - uid: 753
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-9.5
+ pos: -20.5,-25.5
parent: 2
-- proto: AirlockGlassShuttle
- entities:
- - uid: 467
->>>>>>> master
+ - uid: 754
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-78.5
parent: 2
-<<<<<<< HEAD
- - uid: 512
-=======
- - uid: 468
->>>>>>> master
+- proto: AirlockSecurityLawyerGlassLocked
+ entities:
+ - uid: 755
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,51.5
+ pos: 30.5,3.5
parent: 2
-<<<<<<< HEAD
-- proto: AirlockHeadOfPersonnelLocked
+- proto: AirlockSecurityLocked
entities:
- - uid: 513
-=======
- - uid: 38355
+ - uid: 756
components:
- type: Transform
- pos: -1.5,-11.5
- parent: 38344
- - uid: 38356
+ pos: 48.5,23.5
+ parent: 2
+ - uid: 757
components:
- type: Transform
- pos: 0.5,-11.5
- parent: 38344
-- proto: AirlockHeadOfPersonnelLocked
- entities:
- - uid: 469
->>>>>>> master
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-72.5
+ parent: 2
+ - uid: 758
components:
- type: Transform
- pos: -10.5,6.5
+ pos: 57.5,-1.5
parent: 2
-<<<<<<< HEAD
- - uid: 514
-=======
- - uid: 470
->>>>>>> master
+ - uid: 759
components:
- type: Transform
- pos: -13.5,-4.5
+ pos: 52.5,20.5
parent: 2
-<<<<<<< HEAD
- - uid: 515
-=======
- - uid: 471
->>>>>>> master
+ - uid: 760
components:
- type: Transform
- pos: -9.5,-6.5
+ pos: 52.5,-1.5
parent: 2
-<<<<<<< HEAD
-- proto: AirlockHeadOfSecurityLocked
- entities:
- - uid: 516
-=======
-- proto: AirlockHeadOfSecurityGlassLocked
- entities:
- - uid: 472
->>>>>>> master
+ - uid: 761
components:
+ - type: MetaData
+ name: хранилище скафандров
- type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,20.5
+ pos: 79.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 517
-=======
-- proto: AirlockHeadOfSecurityLocked
- entities:
- - uid: 473
->>>>>>> master
+ - uid: 762
components:
+ - type: MetaData
+ name: охранные доки
- type: Transform
- pos: 37.5,20.5
+ pos: 83.5,11.5
parent: 2
-- proto: AirlockHydroGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 518
-=======
- - uid: 474
->>>>>>> master
+ - uid: 763
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,44.5
+ pos: 55.5,17.5
parent: 2
-<<<<<<< HEAD
- - uid: 519
-=======
- - uid: 475
->>>>>>> master
+ - uid: 764
components:
+ - type: MetaData
+ name: хранилище скафандров
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,48.5
+ pos: 75.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 520
-=======
- - uid: 476
->>>>>>> master
+ - uid: 765
components:
+ - type: MetaData
+ name: карцер смертника
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,47.5
+ pos: 71.5,18.5
parent: 2
-- proto: AirlockHydroponicsLocked
- entities:
-<<<<<<< HEAD
- - uid: 521
-=======
- - uid: 477
->>>>>>> master
+ - uid: 766
components:
+ - type: MetaData
+ name: комната казни
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,49.5
+ pos: 73.5,20.5
parent: 2
-- proto: AirlockJanitorLocked
- entities:
-<<<<<<< HEAD
- - uid: 522
-=======
- - uid: 478
->>>>>>> master
+ - uid: 767
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,55.5
+ pos: -47.5,7.5
parent: 2
-<<<<<<< HEAD
- - uid: 523
-=======
- - uid: 479
->>>>>>> master
+ - uid: 768
components:
+ - type: MetaData
+ name: кабинет пилота
- type: Transform
- pos: -1.5,51.5
+ pos: 87.5,10.5
parent: 2
-- proto: AirlockKitchenGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 524
-=======
- - uid: 480
->>>>>>> master
+ - uid: 769
components:
- type: Transform
- pos: -29.5,39.5
+ pos: 48.5,22.5
parent: 2
-- proto: AirlockKitchenLocked
- entities:
-<<<<<<< HEAD
- - uid: 525
-=======
- - uid: 481
->>>>>>> master
+ - uid: 770
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-64.5
parent: 2
-- proto: AirlockLawyerLocked
+- proto: AirlockServiceGlassLocked
entities:
-<<<<<<< HEAD
- - uid: 526
-=======
- - uid: 482
->>>>>>> master
+ - uid: 771
components:
- type: Transform
- pos: 32.5,1.5
+ pos: -20.5,20.5
parent: 2
-<<<<<<< HEAD
- - uid: 527
-=======
- - uid: 483
->>>>>>> master
+ - uid: 772
components:
- type: Transform
- pos: 35.5,3.5
+ pos: -2.5,-15.5
parent: 2
-- proto: AirlockMaintAtmoLocked
+- proto: AirlockServiceLocked
entities:
-<<<<<<< HEAD
- - uid: 528
-=======
- - uid: 484
->>>>>>> master
+ - uid: 773
components:
- - type: MetaData
- name: атмосферная
- type: Transform
- pos: -45.5,41.5
+ pos: -24.5,18.5
parent: 2
-- proto: AirlockMaintBarLocked
- entities:
-<<<<<<< HEAD
- - uid: 529
-=======
- - uid: 485
->>>>>>> master
+ - uid: 774
components:
- type: Transform
- pos: -0.5,40.5
+ pos: 2.5,-12.5
parent: 2
-- proto: AirlockMaintCargoLocked
- entities:
-<<<<<<< HEAD
- - uid: 530
-=======
- - uid: 486
->>>>>>> master
+ - uid: 775
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,55.5
+ pos: -23.5,-9.5
parent: 2
-<<<<<<< HEAD
- - uid: 531
-=======
- - uid: 487
->>>>>>> master
+- proto: AirlockTheatreLocked
+ entities:
+ - uid: 776
components:
- - type: MetaData
- name: служебное помещение
- type: Transform
- pos: 3.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,33.5
parent: 2
-<<<<<<< HEAD
- - uid: 532
-=======
- - uid: 488
->>>>>>> master
+ - uid: 777
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,25.5
parent: 2
-- proto: AirlockMaintChapelLocked
- entities:
-<<<<<<< HEAD
- - uid: 533
-=======
- - uid: 489
->>>>>>> master
+ - uid: 778
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -23.5,-62.5
+ pos: -7.5,27.5
parent: 2
-<<<<<<< HEAD
- - uid: 534
-=======
- - uid: 490
->>>>>>> master
+ - uid: 779
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -16.5,-63.5
+ pos: -11.5,51.5
parent: 2
-<<<<<<< HEAD
- - uid: 535
-=======
- - uid: 491
->>>>>>> master
+ - uid: 780
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-77.5
+ pos: -3.5,47.5
parent: 2
-- proto: AirlockMaintChemLocked
- entities:
-<<<<<<< HEAD
- - uid: 536
-=======
- - uid: 492
->>>>>>> master
+ - uid: 781
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-36.5
+ pos: -5.5,51.5
parent: 2
-- proto: AirlockMaintCommandLocked
+- proto: AirlockVirologyGlassLocked
entities:
-<<<<<<< HEAD
- - uid: 537
-=======
- - uid: 493
->>>>>>> master
+ - uid: 782
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,-69.5
parent: 2
-- proto: AirlockMaintCommonLocked
- entities:
-<<<<<<< HEAD
- - uid: 538
-=======
- - uid: 494
->>>>>>> master
+ - uid: 783
components:
- type: Transform
- pos: -35.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-71.5
parent: 2
-<<<<<<< HEAD
- - uid: 539
-=======
- - uid: 495
->>>>>>> master
+- proto: AirlockVirologyLocked
+ entities:
+ - uid: 784
components:
- type: Transform
- pos: -37.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-58.5
parent: 2
-- proto: AirlockMaintDetectiveLocked
- entities:
-<<<<<<< HEAD
- - uid: 540
-=======
- - uid: 496
->>>>>>> master
+ - uid: 785
components:
- type: Transform
- pos: 27.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-60.5
parent: 2
-- proto: AirlockMaintEngiLocked
+- proto: AirSensor
entities:
-<<<<<<< HEAD
- - uid: 541
-=======
- - uid: 497
->>>>>>> master
+ - uid: 786
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,73.5
+ pos: -11.5,91.5
parent: 2
-<<<<<<< HEAD
- - uid: 542
-=======
- - uid: 498
->>>>>>> master
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 158
+ - uid: 787
components:
- type: Transform
- pos: 76.5,-44.5
+ pos: 6.5,77.5
parent: 2
-<<<<<<< HEAD
- - uid: 543
-=======
- - uid: 499
->>>>>>> master
+ - type: DeviceNetwork
+ deviceLists:
+ - 17021
+ - 161
+ - uid: 788
components:
- - type: MetaData
- name: инженерная
- type: Transform
- pos: -53.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-33.5
parent: 2
-- proto: AirlockMaintGlass
- entities:
-<<<<<<< HEAD
- - uid: 544
-=======
- - uid: 500
->>>>>>> master
+ - uid: 789
components:
- type: Transform
- pos: -48.5,3.5
+ pos: -61.5,57.5
parent: 2
-- proto: AirlockMaintHydroLocked
- entities:
-<<<<<<< HEAD
- - uid: 545
-=======
- - uid: 501
->>>>>>> master
+ - uid: 790
components:
- type: Transform
- pos: -37.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-9.5
parent: 2
-- proto: AirlockMaintJanitorLocked
- entities:
-<<<<<<< HEAD
- - uid: 546
-=======
- - uid: 502
->>>>>>> master
+ - uid: 791
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 3.5,49.5
+ pos: -32.5,-41.5
parent: 2
-- proto: AirlockMaintKitchenLocked
- entities:
-<<<<<<< HEAD
- - uid: 547
-=======
- - uid: 503
->>>>>>> master
+ - type: DeviceNetwork
+ deviceLists:
+ - 88
+ - uid: 792
components:
- type: Transform
- pos: -34.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,76.5
parent: 2
-- proto: AirlockMaintLawyerLocked
- entities:
-<<<<<<< HEAD
- - uid: 548
-=======
- - uid: 504
->>>>>>> master
+ - type: DeviceNetwork
+ deviceLists:
+ - 17012
+ - 160
+ - uid: 793
components:
- type: Transform
- pos: 36.5,-2.5
+ pos: -23.5,-51.5
parent: 2
-- proto: AirlockMaintLocked
- entities:
-<<<<<<< HEAD
- - uid: 549
+ - uid: 794
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,1.5
parent: 2
- - uid: 550
+ - uid: 795
components:
- type: Transform
- pos: -27.5,59.5
+ pos: -17.5,19.5
parent: 2
- - uid: 551
+ - uid: 796
components:
- type: Transform
- pos: 29.5,-55.5
+ pos: -9.5,24.5
parent: 2
- - uid: 552
+ - type: DeviceNetwork
+ deviceLists:
+ - 165
+ - uid: 797
components:
- type: Transform
- pos: -30.5,7.5
+ pos: 0.5,23.5
parent: 2
- - uid: 553
+ - uid: 798
components:
- type: Transform
- pos: -25.5,16.5
+ pos: -35.5,-27.5
parent: 2
- - uid: 554
+ - uid: 799
components:
- type: Transform
- pos: 54.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,44.5
parent: 2
- - uid: 555
+ - type: DeviceNetwork
+ deviceLists:
+ - 98
+ - uid: 800
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,68.5
+ pos: -13.5,-43.5
parent: 2
- - uid: 556
+ - uid: 801
components:
- type: Transform
- pos: 1.5,29.5
+ pos: -28.5,-40.5
parent: 2
- - uid: 557
+ - type: DeviceNetwork
+ deviceLists:
+ - 12
+ - uid: 802
components:
- type: Transform
- pos: 25.5,-55.5
+ pos: -34.5,6.5
parent: 2
- - uid: 558
+ - uid: 803
components:
- type: Transform
- pos: -27.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,76.5
parent: 2
- - uid: 559
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 158
+ - uid: 804
components:
- type: Transform
- pos: -41.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-11.5
parent: 2
- - uid: 560
+ - type: DeviceNetwork
+ deviceLists:
+ - 38
+ - uid: 805
components:
- type: Transform
- pos: -42.5,-41.5
+ pos: -14.5,-18.5
parent: 2
- - uid: 561
+ - uid: 806
components:
- type: Transform
- pos: -41.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-38.5
parent: 2
- - uid: 562
+ - uid: 807
components:
- type: Transform
- pos: -44.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-10.5
parent: 2
- - uid: 563
+ - type: DeviceNetwork
+ deviceLists:
+ - 116
+ - uid: 808
components:
- type: Transform
- pos: 1.5,41.5
+ pos: 16.5,13.5
parent: 2
- - uid: 564
+ - uid: 809
components:
- type: Transform
- pos: 22.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-5.5
parent: 2
- - uid: 565
+ - uid: 810
components:
- type: Transform
- pos: -39.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,15.5
parent: 2
- - uid: 566
+ - type: DeviceNetwork
+ deviceLists:
+ - 17019
+ - uid: 811
components:
- type: Transform
- pos: -36.5,56.5
+ pos: -8.5,-64.5
parent: 2
- - uid: 567
-=======
- - uid: 505
+ - uid: 812
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -58.5,-32.5
+ pos: 7.5,-7.5
parent: 2
- - uid: 506
+ - uid: 813
components:
- type: Transform
- pos: -27.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-5.5
parent: 2
- - uid: 507
+ - type: DeviceNetwork
+ deviceLists:
+ - 101
+ - uid: 814
components:
- type: Transform
- pos: 29.5,-55.5
+ pos: 22.5,-9.5
parent: 2
- - uid: 508
+ - uid: 815
components:
- type: Transform
- pos: -30.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-10.5
parent: 2
- - uid: 509
+ - uid: 816
components:
- type: Transform
- pos: -25.5,16.5
+ pos: -23.5,11.5
parent: 2
- - uid: 510
+ - uid: 817
components:
- type: Transform
- pos: 54.5,-28.5
+ pos: -25.5,-46.5
parent: 2
- - uid: 511
+ - type: DeviceNetwork
+ deviceLists:
+ - 86
+ - uid: 818
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,68.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-24.5
parent: 2
- - uid: 512
+ - uid: 819
components:
- type: Transform
- pos: 1.5,29.5
+ pos: -29.5,1.5
parent: 2
- - uid: 513
+ - type: DeviceNetwork
+ deviceLists:
+ - 101
+ - uid: 820
components:
- type: Transform
- pos: 25.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-24.5
parent: 2
- - uid: 514
+ - uid: 821
components:
- type: Transform
- pos: -27.5,-16.5
+ pos: -25.5,4.5
parent: 2
- - uid: 515
+ - uid: 822
components:
- type: Transform
- pos: -41.5,2.5
+ pos: 54.5,26.5
parent: 2
- - uid: 516
+ - uid: 823
components:
- type: Transform
- pos: -42.5,-41.5
+ pos: -23.5,-40.5
parent: 2
- - uid: 517
+ - uid: 824
components:
- type: Transform
- pos: -41.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-41.5
parent: 2
- - uid: 518
+ - uid: 825
components:
- type: Transform
- pos: -44.5,-34.5
+ pos: 0.5,-59.5
parent: 2
- - uid: 519
+ - uid: 826
components:
- type: Transform
- pos: 1.5,41.5
+ pos: 18.5,-27.5
parent: 2
- - uid: 520
+ - uid: 827
components:
- type: Transform
- pos: 22.5,11.5
+ pos: 6.5,-20.5
parent: 2
- - uid: 521
+ - uid: 828
components:
- type: Transform
- pos: -39.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-12.5
parent: 2
- - uid: 522
->>>>>>> master
+ - uid: 829
components:
- - type: MetaData
- name: сад технических помещений
- type: Transform
-<<<<<<< HEAD
- pos: -41.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-33.5
parent: 2
- - uid: 568
-=======
- pos: -36.5,56.5
+ - uid: 830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-7.5
parent: 2
- - uid: 523
+ - uid: 831
components:
- - type: MetaData
- name: сад технических помещений
- type: Transform
- pos: -41.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-75.5
parent: 2
- - uid: 524
->>>>>>> master
+ - uid: 832
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,71.5
+ pos: 6.5,29.5
parent: 2
-<<<<<<< HEAD
- - uid: 569
-=======
- - uid: 525
->>>>>>> master
+ - uid: 833
components:
- - type: MetaData
- name: отходы
- type: Transform
- pos: 22.5,56.5
+ pos: -13.5,-46.5
parent: 2
-<<<<<<< HEAD
- - uid: 570
-=======
- - uid: 526
->>>>>>> master
+ - uid: 834
components:
- type: Transform
- pos: 32.5,-19.5
+ pos: -24.5,-34.5
parent: 2
-<<<<<<< HEAD
- - uid: 571
-=======
- - uid: 527
->>>>>>> master
+ - uid: 835
components:
- - type: MetaData
- desc: 'Табличка на двери гласит: «Гостевой офис», и именно такой она была до того, как к ней добрались ассистенты.'
- name: офис галактоаркады
- type: Transform
- pos: 11.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-65.5
parent: 2
-<<<<<<< HEAD
- - uid: 572
-=======
- - uid: 528
->>>>>>> master
+ - uid: 836
components:
- - type: MetaData
- name: вспомогательная хирургия
- type: Transform
- pos: 50.5,-32.5
+ pos: -71.5,41.5
parent: 2
-<<<<<<< HEAD
- - uid: 573
-=======
- - uid: 529
->>>>>>> master
+ - uid: 837
components:
- type: Transform
- pos: -33.5,-54.5
+ pos: -16.5,-57.5
parent: 2
-<<<<<<< HEAD
- - uid: 574
+ - uid: 838
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-35.5
+ pos: -7.5,-50.5
parent: 2
- - uid: 575
-=======
- - uid: 530
->>>>>>> master
+ - uid: 839
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-41.5
+ pos: -8.5,-46.5
parent: 2
-<<<<<<< HEAD
- - uid: 576
-=======
- - uid: 531
->>>>>>> master
+ - uid: 840
components:
- - type: MetaData
- name: южно-восточная строй площадка
- type: Transform
- pos: 47.5,-45.5
+ pos: -4.5,-41.5
parent: 2
-<<<<<<< HEAD
- - uid: 577
-=======
- - uid: 532
->>>>>>> master
+ - uid: 841
components:
- type: Transform
- pos: 42.5,-41.5
+ pos: -18.5,-39.5
parent: 2
-<<<<<<< HEAD
- - uid: 578
-=======
- - uid: 533
->>>>>>> master
+ - uid: 842
components:
- type: Transform
- pos: 44.5,-5.5
+ pos: -18.5,-34.5
parent: 2
-<<<<<<< HEAD
- - uid: 579
-=======
- - uid: 534
->>>>>>> master
+ - uid: 843
components:
- type: Transform
- pos: 0.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -118.5,19.5
parent: 2
-<<<<<<< HEAD
- - uid: 580
-=======
- - uid: 535
->>>>>>> master
+ - uid: 844
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: -118.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 581
-=======
- - uid: 536
->>>>>>> master
+ - uid: 845
components:
- - type: MetaData
- name: свободный офис
- type: Transform
- pos: -36.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -118.5,43.5
parent: 2
-<<<<<<< HEAD
- - uid: 582
-=======
- - uid: 537
->>>>>>> master
+ - uid: 846
components:
- - type: MetaData
- name: сад технических помещений
- type: Transform
- pos: -36.5,32.5
+ pos: -118.5,45.5
parent: 2
-<<<<<<< HEAD
- - uid: 583
-=======
- - uid: 538
->>>>>>> master
+ - uid: 847
components:
- type: Transform
- pos: 19.5,12.5
+ pos: -115.5,41.5
parent: 2
-<<<<<<< HEAD
- - uid: 584
-=======
- - uid: 539
->>>>>>> master
+ - uid: 848
components:
- - type: MetaData
- name: западный кабинет уборщика
- type: Transform
- pos: -75.5,-30.5
+ pos: -121.5,41.5
parent: 2
-<<<<<<< HEAD
- - uid: 585
+ - uid: 849
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-58.5
+ pos: -121.5,22.5
parent: 2
- - uid: 586
-=======
- - uid: 540
->>>>>>> master
+ - uid: 850
components:
- - type: MetaData
- name: южно-восточная строй площадка
- type: Transform
- pos: 45.5,-45.5
+ pos: -115.5,22.5
parent: 2
-<<<<<<< HEAD
- - uid: 587
-=======
- - uid: 541
->>>>>>> master
+ - uid: 851
components:
- - type: MetaData
- desc: 'Табличка на двери гласит: «Гостевой офис», и именно такой она была до того, как к ней добрались ассистенты.'
- name: офис галактоаркады
- type: Transform
- pos: 17.5,57.5
+ pos: 90.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 588
-=======
- - uid: 542
->>>>>>> master
+ - uid: 852
components:
- type: Transform
- pos: 19.5,-19.5
+ pos: 84.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 589
+ - uid: 853
components:
- type: Transform
- pos: -2.5,28.5
+ pos: 77.5,9.5
parent: 2
- - uid: 590
-=======
- - uid: 543
+ - uid: 854
components:
- type: Transform
- pos: -2.5,28.5
+ pos: 64.5,26.5
parent: 2
- - uid: 544
+ - uid: 855
components:
- type: Transform
- pos: 25.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,6.5
parent: 2
- - uid: 545
+ - uid: 856
components:
- type: Transform
- pos: 39.5,-22.5
+ pos: 69.5,-44.5
parent: 2
- - uid: 546
+ - uid: 857
components:
- type: Transform
- pos: -21.5,26.5
+ pos: 83.5,9.5
parent: 2
- - uid: 547
+ - uid: 858
components:
- type: Transform
- pos: -25.5,-19.5
+ pos: 88.5,13.5
parent: 2
- - uid: 548
+ - uid: 859
components:
- type: Transform
- pos: -21.5,55.5
+ pos: 92.5,22.5
parent: 2
- - uid: 549
+ - uid: 860
components:
- - type: MetaData
- name: незавершенный офисный театральный модуль
- type: Transform
- pos: 50.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,32.5
parent: 2
- - uid: 550
->>>>>>> master
+ - uid: 861
components:
- - type: MetaData
- name: вспомогательная хирургия
- type: Transform
-<<<<<<< HEAD
- pos: 25.5,-18.5
- parent: 2
- - uid: 591
-=======
- pos: 42.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,31.5
parent: 2
- - uid: 551
->>>>>>> master
+ - uid: 862
components:
- - type: MetaData
- name: библиотека
- type: Transform
-<<<<<<< HEAD
- pos: 39.5,-22.5
+ pos: -11.5,68.5
parent: 2
- - uid: 592
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 120
+ - uid: 863
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-58.5
+ pos: -13.5,30.5
parent: 2
- - uid: 593
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 164
+ - uid: 864
components:
- type: Transform
- pos: -21.5,26.5
+ pos: -29.5,91.5
parent: 2
- - uid: 594
+ - type: DeviceNetwork
+ deviceLists:
+ - 17012
+ - 160
+ - uid: 865
components:
- type: Transform
- pos: -25.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,78.5
parent: 2
- - uid: 595
+ - type: DeviceNetwork
+ deviceLists:
+ - 162
+ - 17065
+ - uid: 866
components:
- type: Transform
- pos: -21.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,49.5
parent: 2
- - uid: 596
-=======
- pos: -35.5,-3.5
+ - type: DeviceNetwork
+ deviceLists:
+ - 17063
+ - uid: 867
+ components:
+ - type: Transform
+ pos: -7.5,49.5
parent: 2
- - uid: 552
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 159
+ - uid: 868
components:
- type: Transform
- pos: 4.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,57.5
parent: 2
- - uid: 553
+ - type: DeviceNetwork
+ deviceLists:
+ - 17066
+ - 163
+- proto: AltarBananium
+ entities:
+ - uid: 869
components:
- type: Transform
- pos: -0.5,48.5
+ pos: -6.5,34.5
parent: 2
- - uid: 554
+- proto: AltarConvertYellow
+ entities:
+ - uid: 870
components:
- - type: MetaData
- name: незавершенный театральный модуль
- type: Transform
- pos: 38.5,-52.5
+ pos: -0.5,9.5
parent: 2
- - uid: 555
+- proto: AmeJar
+ entities:
+ - uid: 871
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,25.5
+ pos: -63.549076,-28.742567
parent: 2
- - uid: 556
+- proto: AmeShielding
+ entities:
+ - uid: 872
components:
- type: Transform
- pos: -75.5,-19.5
+ pos: -62.5,-23.5
parent: 2
- - uid: 557
+ - uid: 873
components:
- type: Transform
- pos: -41.5,24.5
+ pos: -60.5,-26.5
parent: 2
- - uid: 558
->>>>>>> master
+ - uid: 874
components:
- type: Transform
-<<<<<<< HEAD
- pos: 53.5,-37.5
- parent: 2
- - uid: 597
-=======
- pos: 6.5,51.5
+ pos: -62.5,-24.5
parent: 2
- - uid: 559
+- proto: AnalysisComputerCircuitboard
+ entities:
+ - uid: 875
components:
- type: Transform
- pos: 6.5,55.5
+ pos: -34.5,14.5
parent: 2
- - uid: 560
->>>>>>> master
+- proto: AnomalyScanner
+ entities:
+ - uid: 876
components:
- type: Transform
-<<<<<<< HEAD
- pos: 50.5,-48.5
- parent: 2
- - uid: 598
-=======
- rot: -1.5707963267948966 rad
- pos: -9.5,-62.5
+ pos: -18.514757,-55.20893
parent: 2
- - uid: 561
->>>>>>> master
+ - uid: 877
components:
- type: Transform
-<<<<<<< HEAD
- pos: 42.5,-32.5
- parent: 2
- - uid: 599
-=======
- pos: -38.5,-56.5
+ pos: -17.952257,-55.20893
parent: 2
- - uid: 562
->>>>>>> master
+ - uid: 878
components:
- type: Transform
-<<<<<<< HEAD
- pos: -35.5,-3.5
+ pos: -17.631098,-55.387352
parent: 2
- - uid: 600
+ - uid: 879
components:
- type: Transform
- pos: 4.5,47.5
+ pos: -18.198187,-55.40506
parent: 2
- - uid: 601
+- proto: AntiPoisonMedipen
+ entities:
+ - uid: 881
components:
- type: Transform
- pos: -0.5,48.5
- parent: 2
- - uid: 602
-=======
- pos: 8.5,-55.5
+ parent: 880
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: APCBasic
+ entities:
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 11.5,83.5
parent: 2
- - uid: 563
+ - uid: 889
components:
+ - type: MetaData
+ name: вспомогательная хирургия
- type: Transform
- pos: 12.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: 43.5,-36.5
parent: 2
- - uid: 564
+ - uid: 890
components:
+ - type: MetaData
+ name: Коридор отбытия
- type: Transform
rot: -1.5707963267948966 rad
- pos: 19.5,24.5
+ pos: 1.5,-47.5
parent: 2
- - uid: 565
+ - uid: 891
components:
+ - type: MetaData
+ name: Технические помещения отбытия
- type: Transform
- pos: -20.5,17.5
+ pos: -26.5,-77.5
parent: 2
- - uid: 566
->>>>>>> master
+ - uid: 892
components:
+ - type: MetaData
+ name: Атмос 2
- type: Transform
-<<<<<<< HEAD
- pos: 38.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,30.5
parent: 2
- - uid: 603
+ - uid: 893
components:
+ - type: MetaData
+ name: Каюта священника
- type: Transform
- pos: -43.5,-3.5
+ pos: -21.5,-78.5
parent: 2
- - uid: 604
+ - uid: 894
components:
+ - type: MetaData
+ name: Комната казни
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,25.5
+ pos: 78.5,24.5
parent: 2
- - uid: 605
+ - uid: 895
components:
- type: Transform
- pos: -75.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,30.5
parent: 2
- - uid: 606
+ - uid: 896
components:
+ - type: MetaData
+ name: Мед кабинет Сб
- type: Transform
- pos: -41.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,-3.5
parent: 2
- - uid: 607
+ - uid: 897
components:
+ - type: MetaData
+ name: Конференц зал
- type: Transform
- pos: 6.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-14.5
parent: 2
- - uid: 608
+ - uid: 898
components:
+ - type: MetaData
+ name: Офис ГСБ
- type: Transform
- pos: 6.5,55.5
+ pos: 39.5,24.5
parent: 2
- - uid: 609
+ - uid: 899
components:
+ - type: MetaData
+ name: Служба безопасности Ю
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-62.5
+ pos: 56.5,2.5
parent: 2
- - uid: 610
+ - uid: 900
components:
- type: Transform
- pos: -38.5,-56.5
+ pos: -31.5,-54.5
parent: 2
- - uid: 611
+ - uid: 901
components:
+ - type: MetaData
+ name: Тех помещения меда
- type: Transform
- pos: 8.5,-55.5
+ pos: 6.5,-53.5
parent: 2
- - uid: 612
+ - uid: 902
components:
+ - type: MetaData
+ name: Доки Сб
- type: Transform
- pos: 12.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: 84.5,9.5
parent: 2
- - uid: 613
+ - uid: 903
components:
+ - type: MetaData
+ name: Мед комната брига
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,24.5
+ pos: 69.5,17.5
parent: 2
- - uid: 614
+ - uid: 904
components:
+ - type: MetaData
+ name: Служба безопасности В
- type: Transform
- pos: -20.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 75.5,8.5
parent: 2
- - uid: 615
+ - uid: 905
components:
+ - type: MetaData
+ name: Офис смотрителя
- type: Transform
- pos: 2.5,-54.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,6.5
parent: 2
- - uid: 616
+ - uid: 906
components:
+ - type: MetaData
+ name: Зал брига
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-50.5
+ pos: 53.5,30.5
parent: 2
- - uid: 617
+ - uid: 907
components:
+ - type: MetaData
+ name: Оружейная
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,7.5
parent: 2
- - uid: 618
+ - uid: 908
components:
+ - type: MetaData
+ name: Раздевалка охраны
- type: Transform
- pos: -30.5,59.5
+ pos: 55.5,14.5
parent: 2
- - uid: 619
+ - uid: 909
components:
+ - type: MetaData
+ name: Атмос 3
- type: Transform
- pos: 42.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -67.5,47.5
parent: 2
- - uid: 620
+ - uid: 910
components:
+ - type: MetaData
+ name: Допросная
- type: Transform
rot: 3.141592653589793 rad
- pos: 13.5,67.5
+ pos: 57.5,-5.5
parent: 2
- - uid: 621
+ - uid: 911
components:
+ - type: MetaData
+ name: Тех помещение утилизаторной
- type: Transform
- pos: 46.5,-12.5
+ pos: 23.5,25.5
parent: 2
- - uid: 622
+ - uid: 912
components:
+ - type: MetaData
+ name: Офис капитана
- type: Transform
- pos: 33.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,7.5
parent: 2
- - uid: 623
+ - uid: 913
components:
+ - type: MetaData
+ name: Комната совещаний
- type: Transform
- pos: 54.5,-10.5
+ pos: -11.5,12.5
parent: 2
- - uid: 624
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 15
+ supplyRampPosition: 4.7497883
+ - uid: 914
components:
+ - type: MetaData
+ name: Офис ГП
- type: Transform
- pos: -46.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,1.5
parent: 2
- - uid: 625
+ - uid: 915
components:
+ - type: MetaData
+ name: Мостик
- type: Transform
- pos: 4.5,57.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,12.5
parent: 2
- - uid: 626
+ - uid: 916
+ components:
+ - type: MetaData
+ name: Служба безопасности З
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,-1.5
+ parent: 2
+ - uid: 917
components:
+ - type: MetaData
+ name: Кабинет АВД
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,70.5
- parent: 2
-- proto: AirlockMaintMedLocked
- entities:
- - uid: 627
-=======
- pos: 2.5,-54.5
+ pos: 32.5,-0.5
parent: 2
- - uid: 567
+ - uid: 918
components:
+ - type: MetaData
+ name: Приёмная РнД
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-27.5
parent: 2
- - uid: 568
+ - uid: 919
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-55.5
+ pos: 23.5,-18.5
parent: 2
- - uid: 569
+ - uid: 920
components:
- type: Transform
- pos: -30.5,59.5
+ pos: -6.5,47.5
parent: 2
- - uid: 570
+ - uid: 921
components:
+ - type: MetaData
+ name: Подстанция Сб
- type: Transform
- pos: 42.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,-4.5
parent: 2
- - uid: 571
+ - uid: 922
components:
+ - type: MetaData
+ name: солнечные панели ЮЗ
- type: Transform
rot: 3.141592653589793 rad
- pos: 13.5,67.5
+ pos: -41.5,-76.5
parent: 2
- - uid: 572
+ - uid: 923
components:
+ - type: MetaData
+ name: Тех помещения СЗ
- type: Transform
- pos: 46.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,39.5
parent: 2
- - uid: 573
+ - uid: 924
components:
+ - type: MetaData
+ name: склад вещей театра
- type: Transform
- pos: 33.5,-5.5
+ pos: 11.5,71.5
parent: 2
- - uid: 574
+ - uid: 925
components:
+ - type: MetaData
+ name: Коридор мостика З
- type: Transform
- pos: 54.5,-10.5
+ pos: -20.5,-13.5
parent: 2
- - uid: 575
+ - uid: 926
components:
- type: Transform
- pos: -46.5,-41.5
+ pos: -62.5,-21.5
parent: 2
- - uid: 576
+ - uid: 927
components:
+ - type: MetaData
+ name: Химия
- type: Transform
- pos: 4.5,57.5
+ pos: 3.5,-28.5
parent: 2
- - uid: 577
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 75
+ supplyRampPosition: 0.047621023
+ - uid: 928
components:
+ - type: MetaData
+ name: Офис комнаты осмотра
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,70.5
+ pos: 19.5,-28.5
parent: 2
- - uid: 578
+ - uid: 929
components:
+ - type: MetaData
+ name: Комната механики
- type: Transform
- pos: -29.5,-60.5
+ pos: -4.5,-36.5
parent: 2
- - uid: 579
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 15
+ supplyRampPosition: 0.010999783
+ - uid: 930
components:
+ - type: MetaData
+ name: Офис НР
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-58.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-40.5
parent: 2
-- proto: AirlockMaintMedLocked
- entities:
- - uid: 580
->>>>>>> master
+ - uid: 931
components:
+ - type: MetaData
+ name: Криокапсулы
- type: Transform
- pos: 17.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-37.5
parent: 2
-<<<<<<< HEAD
- - uid: 628
-=======
- - uid: 581
->>>>>>> master
+ - uid: 932
components:
- type: Transform
- pos: 31.5,-53.5
+ pos: -66.5,-29.5
parent: 2
-<<<<<<< HEAD
- - uid: 629
-=======
- - uid: 582
->>>>>>> master
+ - uid: 933
components:
+ - type: MetaData
+ name: Кабинет психолога
- type: Transform
- pos: 39.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,-53.5
parent: 2
-<<<<<<< HEAD
- - uid: 630
-=======
- - uid: 583
->>>>>>> master
+ - uid: 934
components:
+ - type: MetaData
+ name: Кабинет СИ
- type: Transform
- pos: 33.5,-22.5
+ pos: -62.5,12.5
parent: 2
-- proto: AirlockMaintRnDLocked
- entities:
-<<<<<<< HEAD
- - uid: 631
-=======
- - uid: 584
->>>>>>> master
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 25
+ supplyRampPosition: 14.940672
+ - uid: 935
components:
+ - type: MetaData
+ name: Атмос 5
- type: Transform
rot: -1.5707963267948966 rad
- pos: -11.5,-58.5
+ pos: -56.5,56.5
parent: 2
-<<<<<<< HEAD
- - uid: 632
-=======
- - uid: 585
->>>>>>> master
+ - uid: 936
components:
- type: MetaData
- name: кладовая атмосферы ксенобиологии
+ name: обсерватория
- type: Transform
- pos: -47.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 68.5,26.5
parent: 2
-<<<<<<< HEAD
- - uid: 633
-=======
- - type: Physics
- canCollide: False
- - type: Fixtures
- fixtures:
- fix1:
- shape: !type:PolygonShape
- radius: 0.01
- vertices:
- - -0.49,-0.49
- - 0.49,-0.49
- - 0.49,0.49
- - -0.49,0.49
- mask:
- - Impassable
- - TableLayer
- - HighImpassable
- - LowImpassable
- - InteractImpassable
- layer:
- - Impassable
- - TableLayer
- - HighImpassable
- - LowImpassable
- - BulletImpassable
- - InteractImpassable
- - Opaque
- density: 100
- hard: True
- restitution: 0
- friction: 0.4
- - type: Door
- state: Welded
- - type: Weldable
- isWelded: True
- - type: Airtight
- airBlocked: False
- - type: Occluder
- enabled: False
- - uid: 586
->>>>>>> master
+ - uid: 937
components:
+ - type: MetaData
+ name: Инженерный 5
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-53.5
+ pos: -77.5,12.5
parent: 2
-<<<<<<< HEAD
- - uid: 634
-=======
- - uid: 587
->>>>>>> master
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 20
+ supplyRampPosition: 0.13917412
+ - uid: 938
components:
+ - type: MetaData
+ name: Медицинский З
- type: Transform
- pos: -22.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-41.5
parent: 2
-- proto: AirlockMaintRnDMedLocked
- entities:
-<<<<<<< HEAD
- - uid: 635
-=======
- - uid: 588
->>>>>>> master
+ - uid: 939
components:
- type: Transform
- pos: 37.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-6.5
parent: 2
-<<<<<<< HEAD
- - uid: 636
-=======
- - uid: 589
->>>>>>> master
+ - uid: 940
components:
+ - type: MetaData
+ name: Карго вспомогательный
- type: Transform
- pos: 4.5,-41.5
+ pos: 10.5,47.5
parent: 2
-- proto: AirlockMaintSecLocked
- entities:
-<<<<<<< HEAD
- - uid: 637
-=======
- - uid: 590
->>>>>>> master
+ - uid: 941
components:
+ - type: MetaData
+ name: Утилизаторная стыковка
- type: Transform
- pos: 68.5,25.5
+ rot: 3.141592653589793 rad
+ pos: 34.5,33.5
parent: 2
-<<<<<<< HEAD
- - uid: 638
-=======
- - uid: 591
->>>>>>> master
+ - uid: 942
components:
+ - type: MetaData
+ name: Охранный КПП прибития
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,62.5
+ parent: 2
+ - uid: 943
+ components:
+ - type: MetaData
+ name: Карго служебный
- type: Transform
rot: 1.5707963267948966 rad
- pos: 4.5,60.5
+ pos: 3.5,42.5
parent: 2
-<<<<<<< HEAD
- - uid: 639
+ - uid: 944
components:
+ - type: MetaData
+ name: Карго склад 1
- type: Transform
- pos: 45.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,38.5
parent: 2
- - uid: 640
+ - uid: 945
components:
+ - type: MetaData
+ name: Медицинский КПП прибития
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-56.5
+ pos: 5.5,66.5
parent: 2
- - uid: 641
-=======
- - uid: 592
+ - uid: 946
components:
+ - type: MetaData
+ name: раздевалка дормитория
- type: Transform
rot: -1.5707963267948966 rad
- pos: 7.5,-56.5
+ pos: 42.5,-12.5
parent: 2
- - uid: 593
->>>>>>> master
+ - uid: 947
components:
+ - type: MetaData
+ name: Отбытие
- type: Transform
- pos: 47.5,-5.5
+ pos: -3.5,-62.5
parent: 2
-- proto: AirlockMaintTheatreLocked
- entities:
-<<<<<<< HEAD
- - uid: 642
-=======
- - uid: 594
->>>>>>> master
+ - uid: 948
components:
+ - type: MetaData
+ name: Коридор мостика Ю
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,30.5
+ pos: -3.5,-6.5
parent: 2
-<<<<<<< HEAD
- - uid: 643
-=======
- - uid: 595
->>>>>>> master
+ - uid: 949
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,30.5
+ pos: -37.5,-12.5
parent: 2
-- proto: AirlockMedicalGlass
- entities:
-<<<<<<< HEAD
- - uid: 644
-=======
- - uid: 596
->>>>>>> master
+ - uid: 950
components:
+ - type: MetaData
+ name: Карго приёмная
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-25.5
+ pos: 8.5,38.5
parent: 2
-<<<<<<< HEAD
- - uid: 645
-=======
- - uid: 597
->>>>>>> master
+ - uid: 951
components:
+ - type: MetaData
+ name: Тех помещения сервиса В
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-24.5
+ pos: -0.5,28.5
parent: 2
-<<<<<<< HEAD
-- proto: AirlockMedicalGlassLocked
- entities:
- - uid: 646
-=======
- - uid: 38357
+ - uid: 952
components:
+ - type: MetaData
+ name: Сад тех помещений
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-0.5
- parent: 38344
-- proto: AirlockMedicalGlassLocked
- entities:
- - uid: 598
->>>>>>> master
+ pos: -38.5,36.5
+ parent: 2
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 15
+ supplyRampPosition: 1.7578249
+ - uid: 953
components:
+ - type: MetaData
+ name: Атмос 4
- type: Transform
- pos: 29.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -64.5,53.5
parent: 2
-<<<<<<< HEAD
- - uid: 647
-=======
- - uid: 599
->>>>>>> master
+ - uid: 954
components:
+ - type: MetaData
+ name: Медицинский кпп эвакуации
- type: Transform
rot: 1.5707963267948966 rad
- pos: 6.5,66.5
+ pos: -8.5,-59.5
parent: 2
-<<<<<<< HEAD
- - uid: 648
-=======
- - uid: 600
->>>>>>> master
+ - uid: 955
components:
- type: Transform
- pos: 15.5,-34.5
+ pos: -62.5,-32.5
parent: 2
-<<<<<<< HEAD
- - uid: 649
-=======
- - uid: 601
->>>>>>> master
+ - uid: 956
components:
- type: Transform
- pos: 23.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,85.5
parent: 2
-<<<<<<< HEAD
- - uid: 650
+ - uid: 957
components:
+ - type: MetaData
+ name: Мед склад
- type: Transform
- pos: 29.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-22.5
parent: 2
- - uid: 17802
+ - uid: 958
components:
+ - type: MetaData
+ name: Инженерный
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-32.5
+ pos: -55.5,-10.5
parent: 2
-- proto: AirlockMedicalLocked
- entities:
- - uid: 651
-=======
- - uid: 602
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 20
+ supplyRampPosition: 17.270588
+ - uid: 959
components:
+ - type: MetaData
+ name: Церковь
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-32.5
+ pos: -21.5,-71.5
parent: 2
- - uid: 603
+ - uid: 960
components:
+ - type: MetaData
+ name: Каюта капитана
- type: Transform
- pos: 29.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,3.5
parent: 2
-- proto: AirlockMedicalLocked
- entities:
- - uid: 604
->>>>>>> master
+ - uid: 961
components:
+ - type: MetaData
+ name: Хирургия и палаты
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-42.5
+ pos: 36.5,-42.5
parent: 2
-<<<<<<< HEAD
- - uid: 652
-=======
- - uid: 605
->>>>>>> master
+ - uid: 962
components:
+ - type: MetaData
+ name: дормиторий
- type: Transform
- pos: 13.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: 46.5,-21.5
parent: 2
-<<<<<<< HEAD
- - uid: 653
-=======
- - uid: 606
->>>>>>> master
+ - uid: 963
components:
+ - type: MetaData
+ name: Офис старого театра
- type: Transform
- pos: 29.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-51.5
parent: 2
-<<<<<<< HEAD
- - uid: 654
-=======
- - uid: 607
->>>>>>> master
+ - uid: 964
components:
+ - type: MetaData
+ name: вторичное хранилище EVA
- type: Transform
- pos: 36.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-79.5
parent: 2
-<<<<<<< HEAD
- - uid: 655
-=======
- - uid: 608
->>>>>>> master
+ - uid: 965
components:
- type: Transform
- pos: 29.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,55.5
parent: 2
-<<<<<<< HEAD
- - uid: 656
-=======
- - uid: 609
->>>>>>> master
+ - uid: 966
components:
+ - type: MetaData
+ name: Хранилище
- type: Transform
- pos: 17.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,18.5
parent: 2
-<<<<<<< HEAD
- - uid: 657
-=======
- - uid: 610
->>>>>>> master
+ - uid: 967
components:
+ - type: MetaData
+ name: Инженерный 2
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-56.5
+ pos: -44.5,7.5
parent: 2
-<<<<<<< HEAD
- - uid: 658
-=======
- - uid: 611
->>>>>>> master
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 5
+ supplyRampPosition: 1.7944434
+ - uid: 968
components:
+ - type: MetaData
+ name: Подстанция сервисной В
- type: Transform
- pos: 15.5,-43.5
+ pos: -2.5,35.5
parent: 2
-<<<<<<< HEAD
- - uid: 659
-=======
- - uid: 612
->>>>>>> master
+ - uid: 969
components:
+ - type: MetaData
+ name: Утилизаторная
- type: Transform
- pos: 29.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,26.5
parent: 2
-<<<<<<< HEAD
- - uid: 660
-=======
- - uid: 613
->>>>>>> master
+ - uid: 970
components:
+ - type: MetaData
+ name: Хранилище плат
- type: Transform
- pos: 27.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,12.5
parent: 2
-- proto: AirlockMedicalScienceGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 661
-=======
- - uid: 614
->>>>>>> master
+ - uid: 971
components:
+ - type: MetaData
+ name: Туалет прибытия
- type: Transform
- pos: 9.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,59.5
parent: 2
-- proto: AirlockMedicalScienceLocked
- entities:
-<<<<<<< HEAD
- - uid: 662
+ - uid: 972
components:
+ - type: MetaData
+ name: солнечные панели СЗ
- type: Transform
- pos: 15.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,61.5
parent: 2
- - uid: 663
-=======
- - uid: 615
+ - uid: 973
components:
+ - type: MetaData
+ name: свободный офис
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,26.5
parent: 2
- - uid: 616
->>>>>>> master
+ - uid: 974
components:
+ - type: MetaData
+ name: Склад инструментов
- type: Transform
- pos: 4.5,-47.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,14.5
parent: 2
-<<<<<<< HEAD
- - uid: 664
-=======
- - uid: 617
->>>>>>> master
+ - uid: 975
components:
- type: Transform
- pos: 1.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,61.5
parent: 2
-<<<<<<< HEAD
- - uid: 665
-=======
- - uid: 618
->>>>>>> master
+ - uid: 976
components:
+ - type: MetaData
+ name: Ксенобиология
- type: Transform
- pos: 1.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-30.5
parent: 2
-<<<<<<< HEAD
- - uid: 666
-=======
- - uid: 619
->>>>>>> master
+ - uid: 977
components:
+ - type: MetaData
+ name: Коридор инженерного отдела
- type: Transform
- pos: 10.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,21.5
parent: 2
-<<<<<<< HEAD
- - uid: 667
-=======
- - uid: 620
->>>>>>> master
+ - uid: 978
components:
+ - type: MetaData
+ name: Атмос 1
- type: Transform
- pos: 15.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,24.5
parent: 2
-<<<<<<< HEAD
- - uid: 668
-=======
- - uid: 621
->>>>>>> master
+ - uid: 979
components:
+ - type: MetaData
+ name: Атмос приёмная
- type: Transform
- pos: 10.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,22.5
parent: 2
-- proto: AirlockQuartermasterLocked
- entities:
-<<<<<<< HEAD
- - uid: 669
-=======
- - uid: 622
->>>>>>> master
+ - uid: 980
components:
+ - type: MetaData
+ name: комната тестов атмоса
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-25.5
parent: 2
-<<<<<<< HEAD
- - uid: 670
-=======
- - uid: 623
->>>>>>> master
+ - uid: 981
components:
+ - type: MetaData
+ name: Морг
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,39.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-53.5
parent: 2
-- proto: AirlockResearchDirectorGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 671
-=======
- - uid: 624
->>>>>>> master
+ - uid: 982
components:
+ - type: MetaData
+ name: Медицинский В
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-51.5
+ pos: 29.5,-37.5
parent: 2
-- proto: AirlockResearchDirectorLocked
- entities:
-<<<<<<< HEAD
- - uid: 672
-=======
- - uid: 625
->>>>>>> master
+ - uid: 983
components:
+ - type: MetaData
+ name: Коридор Сб
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 673
-=======
- - uid: 626
->>>>>>> master
+ - uid: 984
components:
+ - type: MetaData
+ name: Карго склад 2
- type: Transform
rot: 1.5707963267948966 rad
- pos: -15.5,-39.5
+ pos: 8.5,53.5
parent: 2
-<<<<<<< HEAD
- - uid: 674
-=======
- - uid: 627
->>>>>>> master
+ - uid: 985
components:
+ - type: MetaData
+ name: Комната снаряжения атмоса
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,32.5
parent: 2
-- proto: AirlockSalvageGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 675
-=======
- - uid: 628
->>>>>>> master
+ - uid: 986
components:
+ - type: MetaData
+ name: ТЭГ
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -50.5,39.5
parent: 2
-<<<<<<< HEAD
- - uid: 676
-=======
- - uid: 629
->>>>>>> master
+ - uid: 987
components:
+ - type: MetaData
+ name: Комната снаряжения инжа
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.5,29.5
+ pos: -44.5,-15.5
parent: 2
-<<<<<<< HEAD
- - uid: 677
-=======
- - uid: 630
->>>>>>> master
+ - uid: 988
components:
+ - type: MetaData
+ name: Карго почта
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,30.5
+ pos: 12.5,33.5
parent: 2
-<<<<<<< HEAD
- - uid: 678
-=======
- - uid: 631
->>>>>>> master
+ - uid: 989
components:
+ - type: MetaData
+ name: Коридор Меда и РнД
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-22.5
parent: 2
-- proto: AirlockSalvageLocked
- entities:
-<<<<<<< HEAD
- - uid: 679
-=======
- - uid: 632
->>>>>>> master
+ - uid: 990
components:
+ - type: MetaData
+ name: Медицинский 2
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,33.5
+ pos: 7.5,-43.5
parent: 2
-<<<<<<< HEAD
- - uid: 680
-=======
- - uid: 633
->>>>>>> master
+ - uid: 991
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,29.5
+ pos: 41.5,-48.5
parent: 2
-<<<<<<< HEAD
- - uid: 681
-=======
- - uid: 634
->>>>>>> master
+ - uid: 992
components:
+ - type: MetaData
+ name: Репортёр
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,33.5
+ pos: -27.5,22.5
parent: 2
-<<<<<<< HEAD
- - uid: 682
-=======
- - uid: 635
->>>>>>> master
+ - uid: 993
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-80.5
parent: 2
-- proto: AirlockScienceGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 683
-=======
- - uid: 636
->>>>>>> master
+ - uid: 994
components:
+ - type: MetaData
+ name: Библиотека
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-5.5
parent: 2
-<<<<<<< HEAD
- - uid: 684
-=======
- - uid: 637
->>>>>>> master
+ - uid: 995
components:
+ - type: MetaData
+ name: Спортзал
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-26.5
parent: 2
-<<<<<<< HEAD
- - uid: 685
-=======
- - uid: 638
->>>>>>> master
+ - uid: 996
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-45.5
+ pos: -23.5,27.5
parent: 2
-<<<<<<< HEAD
- - uid: 686
-=======
- - uid: 639
->>>>>>> master
+ - type: Battery
+ startingCharge: 12000
+ - uid: 997
components:
+ - type: MetaData
+ name: Генератор гравитации
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,5.5
parent: 2
-<<<<<<< HEAD
- - uid: 687
-=======
- - uid: 640
->>>>>>> master
+ - uid: 998
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-36.5
+ pos: -45.5,-45.5
parent: 2
-<<<<<<< HEAD
- - uid: 688
-=======
- - uid: 641
->>>>>>> master
+ - uid: 999
components:
+ - type: MetaData
+ name: Мастерская
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-44.5
+ pos: 10.5,-2.5
parent: 2
-<<<<<<< HEAD
- - uid: 689
-=======
- - uid: 642
->>>>>>> master
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 15
+ supplyRampPosition: 4.02835
+ - uid: 1000
components:
+ - type: MetaData
+ name: Хранилище зап частей
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-10.5
parent: 2
-- proto: AirlockScienceLocked
- entities:
-<<<<<<< HEAD
- - uid: 690
-=======
- - uid: 643
->>>>>>> master
+ - uid: 1001
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-42.5
+ pos: 17.5,64.5
parent: 2
-<<<<<<< HEAD
- - uid: 691
-=======
- - uid: 644
->>>>>>> master
+ - uid: 1002
components:
+ - type: MetaData
+ name: Суд
- type: Transform
- pos: -12.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-5.5
parent: 2
-<<<<<<< HEAD
- - uid: 692
-=======
- - uid: 645
->>>>>>> master
+ - uid: 1003
components:
+ - type: MetaData
+ name: Тех помещения СЗ
- type: Transform
rot: -1.5707963267948966 rad
- pos: -15.5,-54.5
+ pos: -40.5,56.5
parent: 2
-<<<<<<< HEAD
- - uid: 693
-=======
- - uid: 646
->>>>>>> master
+ - uid: 1004
components:
+ - type: MetaData
+ name: Инженерный основная 2
- type: Transform
- pos: -41.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-2.5
parent: 2
-<<<<<<< HEAD
- - uid: 694
-=======
- - uid: 647
->>>>>>> master
+ - uid: 1005
components:
+ - type: MetaData
+ name: Офис ГВ
- type: Transform
rot: -1.5707963267948966 rad
- pos: -34.5,-36.5
+ pos: 25.5,-45.5
parent: 2
-<<<<<<< HEAD
- - uid: 695
-=======
- - uid: 648
->>>>>>> master
+ - uid: 1006
components:
- type: Transform
- pos: -31.5,-52.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 696
-=======
- - uid: 649
->>>>>>> master
+ - uid: 1007
components:
- type: MetaData
- name: кладовая атмосферы ксенобиологии
+ name: Офис детектива
- type: Transform
- pos: -45.5,-23.5
+ pos: 31.5,13.5
parent: 2
-<<<<<<< HEAD
- - uid: 697
-=======
- - uid: 650
->>>>>>> master
+ - uid: 1008
components:
- type: MetaData
- name: тестовый полигон токсинов
+ name: Инженерный 3
- type: Transform
- pos: -35.5,-52.5
+ pos: -50.5,16.5
parent: 2
-<<<<<<< HEAD
- - uid: 698
-=======
- - uid: 651
->>>>>>> master
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 50
+ supplyRampPosition: 5.6103845
+ - uid: 1009
components:
- type: MetaData
- name: ксенобиология
+ name: Инженерный 4
- type: Transform
- pos: -28.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -66.5,14.5
parent: 2
-<<<<<<< HEAD
- - uid: 699
-=======
- - uid: 652
->>>>>>> master
+ - uid: 1010
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-39.5
+ pos: 24.5,13.5
parent: 2
-<<<<<<< HEAD
- - uid: 700
-=======
- - uid: 653
->>>>>>> master
+ - uid: 1011
components:
- type: Transform
- pos: -14.5,-28.5
+ pos: 38.5,-2.5
parent: 2
-<<<<<<< HEAD
- - uid: 701
-=======
- - uid: 654
->>>>>>> master
+ - uid: 1012
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-40.5
+ pos: 21.5,11.5
parent: 2
-<<<<<<< HEAD
- - uid: 702
-=======
- - uid: 655
->>>>>>> master
+ - uid: 1013
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,-40.5
+ pos: -26.5,-16.5
parent: 2
-<<<<<<< HEAD
- - uid: 703
-=======
- - uid: 656
->>>>>>> master
+ - uid: 1014
components:
+ - type: MetaData
+ name: РнД 1
- type: Transform
rot: 1.5707963267948966 rad
- pos: -5.5,-44.5
+ pos: -10.5,-32.5
parent: 2
-<<<<<<< HEAD
- - uid: 704
-=======
- - uid: 657
->>>>>>> master
+ - uid: 1015
components:
+ - type: MetaData
+ name: Гараж
- type: Transform
- pos: -12.5,-28.5
+ pos: 7.5,-9.5
parent: 2
-<<<<<<< HEAD
- - uid: 705
-=======
- - uid: 658
->>>>>>> master
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 25
+ supplyRampPosition: 8.898857
+ - uid: 1016
components:
- type: Transform
- pos: -14.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 47.5,-9.5
parent: 2
-<<<<<<< HEAD
- - uid: 706
-=======
- - uid: 659
->>>>>>> master
+ - uid: 1017
components:
+ - type: MetaData
+ name: Отходы
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,55.5
parent: 2
-<<<<<<< HEAD
- - uid: 707
-=======
- - uid: 660
->>>>>>> master
+ - uid: 1018
components:
+ - type: MetaData
+ name: Комната осмотра
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-48.5
+ pos: 25.5,-23.5
parent: 2
-<<<<<<< HEAD
- - uid: 708
-=======
- - uid: 661
->>>>>>> master
+ - uid: 1019
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-44.5
parent: 2
-<<<<<<< HEAD
- - uid: 709
-=======
- - uid: 662
->>>>>>> master
+ - uid: 1020
components:
+ - type: MetaData
+ name: туалет дормитария
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-36.5
+ pos: 26.5,-12.5
parent: 2
-- proto: AirlockSecurityGlass
- entities:
-<<<<<<< HEAD
- - uid: 710
-=======
- - uid: 663
->>>>>>> master
+ - uid: 1021
components:
+ - type: MetaData
+ name: Питание медотсека
- type: Transform
- pos: 33.5,6.5
+ pos: 4.5,-36.5
parent: 2
-<<<<<<< HEAD
- - uid: 711
-=======
- - uid: 664
->>>>>>> master
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 15
+ supplyRampPosition: 3.5009959
+ - uid: 1022
components:
+ - type: MetaData
+ name: Вирусология
- type: Transform
- pos: 33.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-64.5
parent: 2
-- proto: AirlockSecurityGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 712
-=======
- - uid: 665
->>>>>>> master
+ - uid: 1023
components:
- type: Transform
- pos: 65.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,19.5
parent: 2
-<<<<<<< HEAD
- - uid: 713
-=======
- - uid: 666
->>>>>>> master
+ - uid: 1024
components:
+ - type: MetaData
+ name: EVA хранилище
- type: Transform
- pos: 49.5,16.5
+ pos: -11.5,-9.5
parent: 2
-<<<<<<< HEAD
- - uid: 714
-=======
- - uid: 667
->>>>>>> master
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 15
+ supplyRampPosition: 7.3425717
+ - uid: 1025
components:
+ - type: MetaData
+ name: Комната клонирования
- type: Transform
- pos: 38.5,8.5
+ pos: 14.5,-36.5
parent: 2
-<<<<<<< HEAD
- - uid: 715
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 50
+ supplyRampPosition: 6.759501
+ - uid: 1026
components:
+ - type: MetaData
+ name: Коридор дормитория
- type: Transform
- pos: 57.5,20.5
+ pos: 25.5,-8.5
parent: 2
- - uid: 716
+ - uid: 1027
components:
+ - type: MetaData
+ name: Старая библиотека
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-62.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-63.5
parent: 2
- - uid: 717
+ - uid: 1028
components:
+ - type: MetaData
+ name: Склад канистр
- type: Transform
- pos: 61.5,-1.5
+ pos: -25.5,-48.5
parent: 2
- - uid: 718
+ - uid: 1029
components:
+ - type: MetaData
+ name: Офис КМ
- type: Transform
- pos: 68.5,1.5
+ pos: 26.5,39.5
parent: 2
- - uid: 719
+ - uid: 1030
components:
- type: Transform
- pos: 71.5,-0.5
+ pos: 46.5,-45.5
parent: 2
- - uid: 720
+ - uid: 1031
components:
+ - type: MetaData
+ name: Коридор мостика СВ
- type: Transform
- pos: -23.5,-0.5
+ pos: 17.5,25.5
parent: 2
- - uid: 721
-=======
- - uid: 668
+ - uid: 1032
components:
+ - type: MetaData
+ name: Сервер РнД
- type: Transform
- pos: 57.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-50.5
parent: 2
- - uid: 669
+ - uid: 1033
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-62.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,-41.5
parent: 2
- - uid: 670
+ - uid: 1034
components:
+ - type: MetaData
+ name: КПП отбытия
- type: Transform
- pos: 61.5,-1.5
+ pos: 6.5,-72.5
parent: 2
- - uid: 671
+ - uid: 1035
components:
+ - type: MetaData
+ name: Аномалистика
- type: Transform
- pos: 68.5,1.5
+ pos: -16.5,-54.5
parent: 2
- - uid: 672
+ - uid: 1036
components:
+ - type: MetaData
+ name: Робототехника
- type: Transform
- pos: 71.5,-0.5
+ pos: -3.5,-44.5
parent: 2
- - uid: 673
+ - uid: 1037
components:
+ - type: MetaData
+ name: РнД 2
- type: Transform
- pos: -23.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-52.5
parent: 2
- - uid: 674
+ - uid: 1038
components:
+ - type: MetaData
+ name: Приёмная
- type: Transform
- pos: 71.5,1.5
+ pos: 46.5,25.5
parent: 2
- - uid: 675
+ - uid: 1039
components:
+ - type: MetaData
+ name: ДАМ и сингулярность
- type: Transform
- pos: 68.5,-0.5
+ pos: -66.5,-4.5
parent: 2
- - uid: 676
+ - uid: 1040
components:
+ - type: MetaData
+ name: Пристройка
- type: Transform
- pos: 69.5,-1.5
+ pos: 77.5,-41.5
parent: 2
- - uid: 677
+ - uid: 1041
components:
+ - type: MetaData
+ name: ИИ 2
- type: Transform
- pos: 64.5,-3.5
+ pos: -118.5,20.5
parent: 2
- - uid: 678
->>>>>>> master
+ - uid: 1042
components:
+ - type: MetaData
+ name: Маршрутизаторы
- type: Transform
-<<<<<<< HEAD
- pos: 71.5,1.5
+ pos: -123.5,44.5
parent: 2
- - uid: 722
+ - uid: 1043
components:
+ - type: MetaData
+ name: Телекоммуникация
- type: Transform
- pos: 68.5,-0.5
+ pos: -113.5,44.5
parent: 2
- - uid: 723
+ - uid: 1044
components:
+ - type: MetaData
+ name: ИИ 1
- type: Transform
- pos: 69.5,-1.5
+ pos: -114.5,27.5
parent: 2
- - uid: 724
+ - uid: 1045
components:
- type: MetaData
- name: тюремные доки
+ name: Комната ИИ
- type: Transform
- pos: 90.5,2.5
+ pos: -118.5,51.5
parent: 2
- - uid: 725
+ - uid: 1046
components:
+ - type: MetaData
+ name: ИИ 3
- type: Transform
- pos: 64.5,-3.5
+ pos: -122.5,27.5
parent: 2
- - uid: 726
+ - uid: 1047
components:
- - type: MetaData
- name: медицинская комната брига
- type: Transform
- pos: 71.5,13.5
- parent: 2
- - uid: 727
-=======
- pos: 71.5,13.5
+ pos: -28.5,56.5
parent: 2
- - uid: 679
+ - uid: 1048
components:
- type: Transform
- pos: 72.5,-3.5
+ pos: -6.5,31.5
parent: 2
- - uid: 680
+ - uid: 1049
components:
- type: Transform
- pos: 51.5,14.5
+ pos: 17.5,68.5
parent: 2
- - uid: 681
+ - uid: 1050
components:
- type: Transform
- pos: 36.5,10.5
+ pos: -7.5,51.5
parent: 2
- - uid: 682
+ - uid: 1051
components:
- type: Transform
- pos: 47.5,14.5
+ pos: -30.5,39.5
parent: 2
- - uid: 683
+ - uid: 1052
components:
- type: Transform
- pos: 50.5,-7.5
+ pos: -15.5,53.5
parent: 2
- - uid: 684
->>>>>>> master
+ - uid: 1053
components:
- - type: MetaData
- name: приёмная перманентной тюрьмы
- type: Transform
-<<<<<<< HEAD
- pos: 72.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,71.5
parent: 2
- - uid: 728
+ - uid: 1054
components:
- type: Transform
- pos: 51.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,73.5
parent: 2
- - uid: 729
+ - uid: 1055
components:
- type: Transform
- pos: 75.5,-0.5
+ pos: -16.5,70.5
parent: 2
- - uid: 730
+ - uid: 1056
components:
- type: Transform
- pos: 36.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,71.5
parent: 2
- - uid: 731
+ - uid: 38718
components:
- type: Transform
- pos: 47.5,14.5
- parent: 2
- - uid: 732
+ pos: 2.5,2.5
+ parent: 38714
+- proto: APCElectronics
+ entities:
+ - uid: 1058
components:
- type: Transform
- pos: 50.5,-7.5
- parent: 2
- - uid: 733
-=======
- pos: 73.5,4.5
+ parent: 1057
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1064
+ components:
+ - type: Transform
+ pos: -34.33145,10.337081
parent: 2
- - uid: 685
+- proto: APCHighCapacity
+ entities:
+ - uid: 1065
components:
+ - type: MetaData
+ name: Пермабриг
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,64.5
+ pos: 91.5,4.5
parent: 2
- - uid: 686
+- proto: APCSuperCapacity
+ entities:
+ - uid: 1066
components:
+ - type: MetaData
+ name: Парк
- type: Transform
- pos: 49.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-6.5
parent: 2
- - uid: 687
+ - uid: 1067
components:
+ - type: MetaData
+ name: Артефактная
- type: Transform
- pos: -48.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-47.5
parent: 2
- - uid: 688
+ - uid: 1068
components:
+ - type: MetaData
+ name: Токсины
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,59.5
+ pos: -30.5,-40.5
parent: 2
- - uid: 689
+- proto: ArrivalsShuttleTimer
+ entities:
+ - uid: 1069
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-74.5
+ pos: 3.5,81.5
parent: 2
- - uid: 690
->>>>>>> master
+ - uid: 1070
components:
- - type: MetaData
- name: приёмная перманентной тюрьмы
- type: Transform
-<<<<<<< HEAD
- pos: 73.5,4.5
+ pos: -14.5,81.5
parent: 2
- - uid: 734
+ - uid: 1071
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,64.5
+ pos: -26.5,81.5
parent: 2
- - uid: 735
+- proto: Ashtray
+ entities:
+ - uid: 1072
components:
- type: Transform
- pos: 49.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -33.302418,-8.487843
parent: 2
- - uid: 736
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 1073
components:
- type: Transform
- pos: -48.5,9.5
+ pos: 10.5,91.5
parent: 2
- - uid: 737
+ - uid: 1074
components:
- type: Transform
- pos: -44.5,9.5
+ pos: -69.5,23.5
parent: 2
- - uid: 738
+ - uid: 1075
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,59.5
+ pos: 37.5,37.5
parent: 2
- - uid: 739
+ - uid: 1076
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-74.5
+ pos: -10.5,-82.5
parent: 2
- - uid: 740
+ - uid: 1077
components:
- type: Transform
- pos: 60.5,25.5
+ pos: 39.5,49.5
parent: 2
- - uid: 741
+ - uid: 1078
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-66.5
+ pos: 39.5,51.5
parent: 2
- - uid: 742
+ - uid: 1079
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-65.5
+ pos: 17.5,78.5
parent: 2
- - uid: 743
+ - uid: 1080
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-76.5
+ pos: 5.5,93.5
parent: 2
- - uid: 744
+ - uid: 1081
components:
- type: Transform
- pos: 13.5,33.5
+ pos: -61.5,-16.5
parent: 2
- - uid: 745
+ - uid: 1082
components:
- type: Transform
- pos: 11.5,30.5
+ pos: 94.5,17.5
parent: 2
- - uid: 746
+ - uid: 1083
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-75.5
+ pos: -25.5,84.5
parent: 2
- - uid: 747
+ - uid: 1084
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-74.5
+ pos: 94.5,21.5
parent: 2
- - uid: 748
+ - uid: 1085
components:
- type: Transform
- pos: -16.5,-23.5
+ pos: 31.5,60.5
parent: 2
- - uid: 749
+ - uid: 1086
components:
- type: Transform
- pos: 75.5,2.5
+ pos: -34.5,26.5
parent: 2
- - uid: 750
+ - uid: 1087
components:
- type: Transform
- pos: 47.5,-1.5
+ pos: 90.5,21.5
parent: 2
- - uid: 751
+ - uid: 1088
components:
- type: Transform
- pos: 13.5,-28.5
+ pos: -68.5,24.5
parent: 2
- - uid: 752
+ - uid: 1089
components:
- type: Transform
- pos: 15.5,-30.5
+ pos: 32.5,59.5
parent: 2
- - uid: 753
+ - uid: 1090
components:
- type: Transform
- pos: -20.5,-25.5
+ pos: -30.5,29.5
parent: 2
- - uid: 754
+ - uid: 1091
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-78.5
+ pos: -33.5,77.5
parent: 2
-- proto: AirlockSecurityLawyerGlassLocked
- entities:
- - uid: 755
-=======
- pos: 60.5,25.5
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: -33.5,84.5
parent: 2
- - uid: 691
+ - uid: 1093
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-66.5
+ pos: -29.5,99.5
parent: 2
- - uid: 692
+ - uid: 1094
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-65.5
+ pos: -25.5,77.5
parent: 2
- - uid: 693
+ - uid: 1095
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-76.5
+ pos: 2.5,84.5
parent: 2
- - uid: 694
+ - uid: 1096
components:
- type: Transform
- pos: 13.5,33.5
+ pos: -15.5,84.5
parent: 2
- - uid: 695
+ - uid: 1097
components:
- type: Transform
- pos: 11.5,30.5
+ pos: -15.5,77.5
parent: 2
- - uid: 696
+ - uid: 1098
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-75.5
+ pos: -7.5,77.5
parent: 2
- - uid: 697
+ - uid: 1099
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-74.5
+ pos: -7.5,84.5
parent: 2
- - uid: 698
+ - uid: 1100
components:
- type: Transform
- pos: -16.5,-23.5
+ pos: 2.5,77.5
parent: 2
- - uid: 699
+ - uid: 1101
components:
- type: Transform
- pos: 47.5,-1.5
+ pos: -11.5,99.5
parent: 2
- - uid: 700
+ - uid: 1102
components:
- type: Transform
- pos: 13.5,-28.5
+ pos: 93.5,2.5
parent: 2
- - uid: 701
+ - uid: 1103
components:
- type: Transform
- pos: 15.5,-30.5
+ pos: 4.5,-86.5
parent: 2
- - uid: 702
+ - uid: 1104
components:
- type: Transform
- pos: -20.5,-25.5
+ pos: 2.5,-86.5
parent: 2
- - uid: 703
+ - uid: 1105
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-78.5
+ pos: -3.5,-86.5
parent: 2
- - uid: 704
+ - uid: 1106
components:
- type: Transform
- pos: -44.5,9.5
+ pos: -5.5,-86.5
parent: 2
- - uid: 705
+ - uid: 1107
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,1.5
+ pos: -19.5,-51.5
parent: 2
- - uid: 706
+ - uid: 1108
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,-3.5
+ pos: -109.5,23.5
parent: 2
- - uid: 707
+ - uid: 1109
components:
- type: Transform
- pos: 92.5,8.5
+ pos: -79.5,0.5
parent: 2
- - uid: 38247
+ - uid: 1110
components:
- type: Transform
- pos: 1.5,2.5
- parent: 38244
- - uid: 38358
+ pos: 11.5,-81.5
+ parent: 2
+ - uid: 38719
components:
- type: Transform
- pos: 2.5,3.5
- parent: 38344
-- proto: AirlockSecurityLawyerGlassLocked
- entities:
- - uid: 708
->>>>>>> master
+ pos: -1.5,0.5
+ parent: 38714
+ - uid: 38720
components:
- type: Transform
- pos: 30.5,3.5
- parent: 2
-- proto: AirlockSecurityLocked
+ pos: 4.5,0.5
+ parent: 38714
+- proto: AtmosFixBlockerMarker
entities:
-<<<<<<< HEAD
- - uid: 756
-=======
- - uid: 709
+ - uid: 1111
components:
- type: Transform
- pos: -47.5,7.5
+ pos: -70.5,34.5
parent: 2
- - uid: 710
->>>>>>> master
+ - uid: 1112
components:
- type: Transform
- pos: 48.5,23.5
+ pos: -71.5,35.5
parent: 2
-<<<<<<< HEAD
- - uid: 757
-=======
- - uid: 711
->>>>>>> master
+ - uid: 1113
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-72.5
+ pos: -72.5,36.5
parent: 2
-<<<<<<< HEAD
- - uid: 758
-=======
- - uid: 712
->>>>>>> master
+ - uid: 1114
components:
- type: Transform
- pos: 57.5,-1.5
+ pos: -72.5,34.5
parent: 2
-<<<<<<< HEAD
- - uid: 759
-=======
- - uid: 713
->>>>>>> master
+ - uid: 1115
components:
- type: Transform
- pos: 52.5,20.5
+ pos: -70.5,36.5
parent: 2
-<<<<<<< HEAD
- - uid: 760
-=======
- - uid: 714
->>>>>>> master
+ - uid: 1116
components:
- type: Transform
- pos: 52.5,-1.5
+ pos: -71.5,36.5
parent: 2
-<<<<<<< HEAD
- - uid: 761
-=======
- - uid: 715
->>>>>>> master
+ - uid: 1117
components:
- - type: MetaData
- name: хранилище скафандров
- type: Transform
- pos: 79.5,9.5
+ pos: -71.5,34.5
parent: 2
-<<<<<<< HEAD
- - uid: 762
-=======
- - uid: 716
->>>>>>> master
+ - uid: 1118
components:
- type: Transform
- pos: 83.5,11.5
+ pos: -71.5,41.5
parent: 2
-<<<<<<< HEAD
- - uid: 763
-=======
- - uid: 717
->>>>>>> master
+ - uid: 1119
components:
- type: Transform
- pos: 55.5,17.5
+ pos: -72.5,26.5
parent: 2
-<<<<<<< HEAD
- - uid: 764
-=======
- - uid: 718
->>>>>>> master
+ - uid: 1120
components:
- - type: MetaData
- name: хранилище скафандров
- type: Transform
- pos: 75.5,9.5
+ pos: -71.5,27.5
parent: 2
-<<<<<<< HEAD
- - uid: 765
-=======
- - uid: 719
->>>>>>> master
+ - uid: 1121
components:
- - type: MetaData
- name: карцер смертника
- type: Transform
- pos: 71.5,18.5
+ pos: -72.5,41.5
parent: 2
-<<<<<<< HEAD
- - uid: 766
-=======
- - uid: 720
->>>>>>> master
+ - uid: 1122
components:
- - type: MetaData
- name: комната казни
- type: Transform
- pos: 73.5,20.5
+ pos: -70.5,41.5
parent: 2
-<<<<<<< HEAD
- - uid: 767
+ - uid: 1123
components:
- type: Transform
- pos: -47.5,7.5
+ pos: -71.5,28.5
parent: 2
- - uid: 768
+ - uid: 1124
components:
- - type: MetaData
- name: кабинет пилота
- type: Transform
- pos: 87.5,10.5
+ pos: -72.5,42.5
parent: 2
- - uid: 769
+ - uid: 1125
components:
- type: Transform
- pos: 48.5,22.5
+ pos: -71.5,42.5
parent: 2
- - uid: 770
+ - uid: 1126
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-64.5
+ pos: -70.5,42.5
parent: 2
-- proto: AirlockServiceGlassLocked
- entities:
- - uid: 771
-=======
- - uid: 721
+ - uid: 1127
components:
- type: Transform
- pos: 48.5,22.5
+ pos: -71.5,30.5
parent: 2
- - uid: 722
+ - uid: 1128
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-64.5
+ pos: -71.5,31.5
parent: 2
- - uid: 723
+ - uid: 1129
components:
- type: Transform
- pos: 94.5,13.5
+ pos: -72.5,31.5
parent: 2
- - uid: 38359
- components:
- - type: Transform
- pos: 6.5,1.5
- parent: 38344
- - uid: 38360
- components:
- - type: Transform
- pos: -1.5,-6.5
- parent: 38344
- - uid: 38361
+ - uid: 1130
components:
- type: Transform
- pos: 0.5,-6.5
- parent: 38344
- - uid: 38362
+ pos: -72.5,32.5
+ parent: 2
+ - uid: 1131
components:
- type: Transform
- pos: 8.5,-4.5
- parent: 38344
- - uid: 38363
+ pos: -70.5,27.5
+ parent: 2
+ - uid: 1132
components:
- type: Transform
- pos: 4.5,-0.5
- parent: 38344
- - uid: 38364
+ pos: -70.5,26.5
+ parent: 2
+ - uid: 1133
components:
- type: Transform
- pos: 4.5,-6.5
- parent: 38344
- - uid: 38365
+ pos: -72.5,40.5
+ parent: 2
+ - uid: 1134
components:
- type: Transform
- pos: 2.5,-2.5
- parent: 38344
- - uid: 38366
+ pos: -71.5,32.5
+ parent: 2
+ - uid: 1135
components:
- type: Transform
- pos: 0.5,-0.5
- parent: 38344
- - uid: 38367
+ pos: -70.5,30.5
+ parent: 2
+ - uid: 1136
components:
- type: Transform
- pos: -1.5,-0.5
- parent: 38344
- - uid: 38368
+ pos: -70.5,28.5
+ parent: 2
+ - uid: 1137
components:
- type: Transform
- pos: -3.5,-4.5
- parent: 38344
-- proto: AirlockServiceGlassLocked
- entities:
- - uid: 724
->>>>>>> master
+ pos: -71.5,40.5
+ parent: 2
+ - uid: 1138
components:
- type: Transform
- pos: -20.5,20.5
+ pos: -72.5,30.5
parent: 2
-<<<<<<< HEAD
- - uid: 772
-=======
- - uid: 725
->>>>>>> master
+ - uid: 1139
components:
- type: Transform
- pos: -2.5,-15.5
+ pos: -70.5,32.5
parent: 2
-- proto: AirlockServiceLocked
- entities:
-<<<<<<< HEAD
- - uid: 773
+ - uid: 1140
components:
- type: Transform
- pos: -24.5,18.5
+ pos: -72.5,28.5
parent: 2
- - uid: 774
+ - uid: 1141
components:
- type: Transform
- pos: 2.5,-12.5
+ pos: -70.5,31.5
parent: 2
- - uid: 775
+ - uid: 1142
components:
- type: Transform
- pos: -23.5,-9.5
+ pos: -70.5,40.5
parent: 2
-- proto: AirlockTheatreLocked
- entities:
- - uid: 776
-=======
- - uid: 726
+ - uid: 1143
components:
- type: Transform
- pos: -24.5,18.5
+ pos: -70.5,27.5
parent: 2
- - uid: 727
+ - uid: 1144
components:
- type: Transform
- pos: 2.5,-12.5
+ pos: -72.5,27.5
parent: 2
- - uid: 728
+ - uid: 1145
components:
- type: Transform
- pos: -23.5,-9.5
+ pos: -71.5,26.5
parent: 2
-- proto: AirlockSyndicateGlassLocked
+- proto: AtmosFixFreezerMarker
entities:
- - uid: 38369
+ - uid: 1146
components:
- type: Transform
- pos: -17.5,33.5
- parent: 38344
-- proto: AirlockSyndicateLocked
- entities:
- - uid: 38370
+ pos: -30.5,25.5
+ parent: 2
+ - uid: 1147
components:
- type: Transform
- pos: -21.5,29.5
- parent: 38344
-- proto: AirlockTheatreLocked
- entities:
- - uid: 729
->>>>>>> master
+ pos: -30.5,27.5
+ parent: 2
+ - uid: 1148
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,33.5
+ pos: -33.5,29.5
parent: 2
-<<<<<<< HEAD
- - uid: 777
-=======
- - uid: 730
->>>>>>> master
+ - uid: 1149
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,25.5
+ pos: -33.5,28.5
parent: 2
-<<<<<<< HEAD
- - uid: 778
-=======
- - uid: 731
->>>>>>> master
+ - uid: 1150
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,27.5
+ pos: -33.5,27.5
parent: 2
-<<<<<<< HEAD
- - uid: 779
-=======
- - uid: 732
->>>>>>> master
+ - uid: 1151
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,51.5
+ pos: -32.5,26.5
parent: 2
-<<<<<<< HEAD
- - uid: 780
-=======
- - uid: 733
->>>>>>> master
+ - uid: 1152
components:
- type: Transform
- pos: -3.5,47.5
+ pos: -33.5,30.5
parent: 2
-<<<<<<< HEAD
- - uid: 781
-=======
- - uid: 734
->>>>>>> master
+ - uid: 1153
components:
- type: Transform
- pos: -5.5,51.5
+ pos: -32.5,29.5
parent: 2
-- proto: AirlockVirologyGlassLocked
- entities:
-<<<<<<< HEAD
- - uid: 782
-=======
- - uid: 735
->>>>>>> master
+ - uid: 1154
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,-69.5
+ pos: -32.5,28.5
parent: 2
-<<<<<<< HEAD
- - uid: 783
-=======
- - uid: 736
->>>>>>> master
+ - uid: 1155
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-71.5
+ pos: -29.5,28.5
parent: 2
-- proto: AirlockVirologyLocked
- entities:
-<<<<<<< HEAD
- - uid: 784
-=======
- - uid: 737
->>>>>>> master
+ - uid: 1156
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-58.5
+ pos: -28.5,28.5
parent: 2
-<<<<<<< HEAD
- - uid: 785
+ - uid: 1157
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-60.5
+ pos: -33.5,26.5
parent: 2
-- proto: AirSensor
- entities:
- - uid: 786
+ - uid: 1158
components:
- type: Transform
- pos: -11.5,91.5
+ pos: -32.5,30.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17009
- - 158
- - uid: 787
+ - uid: 1159
components:
- type: Transform
- pos: 6.5,77.5
+ pos: -30.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17021
- - 161
- - uid: 788
+ - uid: 1160
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-33.5
+ pos: -32.5,25.5
parent: 2
- - uid: 789
+ - uid: 1161
components:
- type: Transform
- pos: -61.5,57.5
+ pos: -30.5,26.5
parent: 2
- - uid: 790
+ - uid: 1162
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-9.5
+ pos: -32.5,27.5
parent: 2
- - uid: 791
+ - uid: 1163
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-41.5
+ pos: -31.5,25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - uid: 792
+ - uid: 1164
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,76.5
+ pos: -33.5,25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17012
- - 160
- - uid: 793
+ - uid: 1165
components:
- type: Transform
- pos: -23.5,-51.5
+ pos: -31.5,26.5
parent: 2
- - uid: 794
+ - uid: 1166
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,1.5
+ pos: -29.5,27.5
parent: 2
- - uid: 795
+ - uid: 1167
components:
- type: Transform
- pos: -17.5,19.5
+ pos: -31.5,27.5
parent: 2
- - uid: 796
+ - uid: 1168
components:
- type: Transform
- pos: -9.5,24.5
+ pos: -31.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - uid: 797
+ - uid: 1169
components:
- type: Transform
- pos: 0.5,23.5
+ pos: -28.5,27.5
parent: 2
- - uid: 798
+ - uid: 1170
components:
- type: Transform
- pos: -35.5,-27.5
+ pos: -29.5,27.5
parent: 2
- - uid: 799
+ - uid: 1171
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,44.5
+ pos: -19.5,-52.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - uid: 800
+ - uid: 1172
components:
- type: Transform
- pos: -13.5,-43.5
+ pos: -18.5,-53.5
parent: 2
- - uid: 801
+ - uid: 1173
components:
- type: Transform
- pos: -28.5,-40.5
+ pos: -20.5,-53.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 12
- - uid: 802
+ - uid: 1174
components:
- type: Transform
- pos: -34.5,6.5
+ pos: -19.5,-53.5
parent: 2
- - uid: 803
+ - uid: 1175
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,76.5
+ pos: -18.5,-52.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17009
- - 158
- - uid: 804
+ - uid: 1176
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-11.5
+ pos: -20.5,-52.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 38
- - uid: 805
+- proto: AtmosFixNitrogenMarker
+ entities:
+ - uid: 1177
components:
- type: Transform
- pos: -14.5,-18.5
+ pos: -72.5,45.5
parent: 2
- - uid: 806
+ - uid: 1178
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-38.5
+ pos: -72.5,44.5
parent: 2
- - uid: 807
+ - uid: 1179
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-10.5
+ pos: -71.5,45.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 116
- - uid: 808
+ - uid: 1180
components:
- type: Transform
- pos: 16.5,13.5
+ pos: -71.5,46.5
parent: 2
- - uid: 809
+ - uid: 1181
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-5.5
+ pos: -70.5,46.5
parent: 2
- - uid: 810
+ - uid: 1182
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,15.5
+ pos: -72.5,46.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17019
- - uid: 811
+ - uid: 1183
components:
- type: Transform
- pos: -8.5,-64.5
+ pos: -70.5,45.5
parent: 2
- - uid: 812
+ - uid: 1184
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-7.5
+ pos: -70.5,44.5
parent: 2
- - uid: 813
+ - uid: 1185
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-5.5
+ pos: -71.5,44.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - uid: 814
+- proto: AtmosFixOxygenMarker
+ entities:
+ - uid: 1186
components:
- type: Transform
- pos: 22.5,-9.5
+ pos: -70.5,50.5
parent: 2
- - uid: 815
+ - uid: 1187
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-10.5
+ pos: -70.5,49.5
parent: 2
- - uid: 816
+ - uid: 1188
components:
- type: Transform
- pos: -23.5,11.5
+ pos: -71.5,48.5
parent: 2
- - uid: 817
+ - uid: 1189
components:
- type: Transform
- pos: -25.5,-46.5
+ pos: -71.5,50.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 86
- - uid: 818
+ - uid: 1190
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-24.5
+ pos: -70.5,48.5
parent: 2
- - uid: 819
+ - uid: 1191
components:
- type: Transform
- pos: -29.5,1.5
+ pos: -72.5,50.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - uid: 820
+ - uid: 1192
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-24.5
+ pos: -72.5,48.5
parent: 2
- - uid: 821
+ - uid: 1193
components:
- type: Transform
- pos: -25.5,4.5
+ pos: -72.5,49.5
parent: 2
- - uid: 822
+ - uid: 1194
components:
- type: Transform
- pos: 54.5,26.5
+ pos: -71.5,49.5
parent: 2
- - uid: 823
+- proto: AtmosFixPlasmaMarker
+ entities:
+ - uid: 1195
components:
- type: Transform
- pos: -23.5,-40.5
+ pos: -70.5,35.5
parent: 2
- - uid: 824
+ - uid: 1196
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-41.5
+ pos: -72.5,35.5
parent: 2
- - uid: 825
+- proto: Autolathe
+ entities:
+ - uid: 1197
components:
- type: Transform
- pos: 0.5,-59.5
+ pos: -63.5,-33.5
parent: 2
- - uid: 826
+ - uid: 1198
components:
- type: Transform
- pos: 18.5,-27.5
+ pos: -58.5,20.5
parent: 2
- - uid: 827
+ - uid: 1199
components:
- type: Transform
- pos: 6.5,-20.5
+ pos: -5.5,-39.5
parent: 2
- - uid: 828
+ - uid: 1200
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-12.5
+ pos: -23.5,15.5
parent: 2
- - uid: 829
+ - uid: 1201
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-33.5
+ pos: 7.5,33.5
parent: 2
- - uid: 830
+- proto: AutolatheMachineCircuitboard
+ entities:
+ - uid: 1202
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-7.5
+ pos: -36.525642,14.37673
parent: 2
- - uid: 831
+- proto: BalloonSyn
+ entities:
+ - uid: 1204
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-75.5
+ parent: 1203
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BananaSeeds
+ entities:
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: -38.5,35.5
parent: 2
- - uid: 832
+- proto: BannerCargo
+ entities:
+ - uid: 1208
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,29.5
+ pos: 6.5,26.5
parent: 2
- - uid: 833
+- proto: BannerEngineering
+ entities:
+ - uid: 1209
components:
- type: Transform
- pos: -13.5,-46.5
+ pos: -65.5,-22.5
parent: 2
- - uid: 834
+ - uid: 1210
components:
- type: Transform
- pos: -24.5,-34.5
+ pos: -55.5,5.5
parent: 2
- - uid: 835
+ - uid: 1211
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-65.5
+ pos: -47.5,15.5
parent: 2
- - uid: 836
+- proto: BannerGreen
+ entities:
+ - uid: 1212
components:
- type: Transform
- pos: -71.5,41.5
+ pos: -38.5,45.5
parent: 2
- - uid: 837
+- proto: BannerMedical
+ entities:
+ - uid: 1213
components:
- type: Transform
- pos: -16.5,-57.5
+ pos: 2.5,-23.5
parent: 2
- - uid: 838
+ - uid: 1214
components:
- type: Transform
- pos: -7.5,-50.5
+ pos: 14.5,-26.5
parent: 2
- - uid: 839
+- proto: BannerNanotrasen
+ entities:
+ - uid: 1215
components:
- type: Transform
- pos: -8.5,-46.5
+ pos: -15.5,16.5
parent: 2
- - uid: 840
+ - uid: 1216
components:
- type: Transform
- pos: -4.5,-41.5
+ pos: -15.5,13.5
parent: 2
- - uid: 841
+ - uid: 1217
components:
- type: Transform
- pos: -18.5,-39.5
+ pos: 4.5,-63.5
parent: 2
- - uid: 842
+ - uid: 1218
components:
- type: Transform
- pos: -18.5,-34.5
+ pos: -41.5,59.5
parent: 2
- - uid: 843
+ - uid: 1219
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,19.5
+ pos: 14.5,-23.5
parent: 2
- - uid: 844
+ - uid: 1220
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,25.5
+ pos: -7.5,16.5
parent: 2
- - uid: 845
+ - uid: 1221
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,43.5
+ pos: 14.5,16.5
parent: 2
- - uid: 846
+ - uid: 1222
components:
- type: Transform
- pos: -118.5,45.5
+ pos: 14.5,13.5
parent: 2
- - uid: 847
+ - uid: 1223
components:
- type: Transform
- pos: -115.5,41.5
+ pos: 6.5,16.5
parent: 2
- - uid: 848
+ - uid: 1224
components:
- type: Transform
- pos: -121.5,41.5
+ pos: -3.5,-23.5
parent: 2
- - uid: 849
+ - uid: 1225
components:
- type: Transform
- pos: -121.5,22.5
+ pos: -15.5,-26.5
parent: 2
- - uid: 850
+ - uid: 1226
components:
- type: Transform
- pos: -115.5,22.5
+ pos: 2.5,-64.5
parent: 2
- - uid: 851
+ - uid: 1227
components:
- type: Transform
- pos: 90.5,8.5
+ pos: -1.5,9.5
parent: 2
- - uid: 852
+ - uid: 1228
components:
- type: Transform
- pos: 84.5,3.5
+ pos: 4.5,-77.5
parent: 2
- - uid: 853
+ - uid: 1229
components:
- type: Transform
- pos: 77.5,9.5
+ pos: 2.5,-76.5
parent: 2
- - uid: 854
+ - uid: 1230
components:
- type: Transform
- pos: 64.5,26.5
+ pos: 24.5,-45.5
parent: 2
- - uid: 855
+ - uid: 1231
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,6.5
+ pos: 0.5,9.5
parent: 2
- - uid: 856
+ - uid: 1232
components:
- type: Transform
- pos: 69.5,-44.5
+ pos: 2.5,-73.5
parent: 2
- - uid: 857
+ - uid: 1233
components:
- type: Transform
- pos: 83.5,9.5
+ pos: 2.5,-67.5
parent: 2
- - uid: 858
+ - uid: 1234
components:
- type: Transform
- pos: 88.5,13.5
+ pos: 2.5,-26.5
parent: 2
- - uid: 859
+ - uid: 1235
components:
- type: Transform
- pos: 92.5,22.5
+ pos: 10.5,-16.5
parent: 2
- - uid: 860
+ - uid: 1236
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,32.5
+ pos: -1.5,-5.5
parent: 2
- - uid: 861
+ - uid: 1237
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,31.5
+ pos: 0.5,-5.5
parent: 2
- - uid: 862
+ - uid: 1238
components:
- type: Transform
- pos: -11.5,68.5
+ pos: 3.5,26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17010
- - 120
- - uid: 863
+ - uid: 1239
components:
- type: Transform
- pos: -13.5,30.5
+ pos: 9.5,26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 864
+ - uid: 1240
components:
- type: Transform
- pos: -29.5,91.5
+ pos: -47.5,11.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17012
- - 160
- - uid: 865
+ - uid: 1241
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,78.5
+ pos: 4.5,-71.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 162
- - 17065
- - uid: 866
+ - uid: 1242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,49.5
+ pos: 49.5,24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17063
- - uid: 867
+ - uid: 1243
components:
- type: Transform
- pos: -7.5,49.5
+ pos: 59.5,24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17013
- - 159
- - uid: 868
+- proto: BannerRed
+ entities:
+ - uid: 1244
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,57.5
+ pos: -57.5,-40.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17066
- - 163
-- proto: AltarBananium
+- proto: BannerRevolution
entities:
- - uid: 869
-=======
- - uid: 738
+ - uid: 1245
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-60.5
+ pos: -67.5,-28.5
parent: 2
-- proto: AirSensor
+- proto: BannerScience
entities:
- - uid: 739
+ - uid: 1246
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-39.5
+ pos: -15.5,-24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 103
- - uid: 740
+ - uid: 1247
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-19.5
+ pos: -3.5,-26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17791
- - 122
- - uid: 741
+- proto: BannerSecurity
+ entities:
+ - uid: 1248
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-8.5
+ pos: 8.5,-61.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17842
- - uid: 742
+ - uid: 1249
components:
- type: Transform
- pos: -61.5,57.5
+ pos: 14.5,-31.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17779
- - 57
- - uid: 743
+ - uid: 1250
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,44.5
+ pos: 61.5,3.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17809
- - 91
- - uid: 744
+ - uid: 1251
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-11.5
+ pos: -19.5,-23.5
parent: 2
- - uid: 745
+ - uid: 1252
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-38.5
+ pos: 59.5,26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 39
- - uid: 746
+ - uid: 1253
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-5.5
+ pos: 49.5,26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17765
- - 63
- - uid: 747
+- proto: BannerSyndicate
+ entities:
+ - uid: 1254
components:
- type: Transform
- pos: -23.5,11.5
+ pos: 10.5,-82.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17766
- - 52
- - uid: 748
+ - uid: 1255
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-24.5
+ pos: -73.5,-33.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17829
- - 101
- - uid: 749
+- proto: BannerYellow
+ entities:
+ - uid: 1256
components:
- type: Transform
- pos: -23.5,-40.5
+ pos: 16.5,63.5
parent: 2
- - uid: 750
+- proto: Barricade
+ entities:
+ - uid: 1257
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 6.5,29.5
+ pos: 35.5,-64.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17805
- - 78
- - uid: 751
+ - uid: 1258
components:
- type: Transform
- pos: -16.5,-57.5
+ pos: 53.5,-35.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 109
- - uid: 752
+ - uid: 1259
components:
- type: Transform
- pos: -7.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-22.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 108
- - uid: 753
+ - uid: 1260
components:
- type: Transform
- pos: -8.5,-46.5
+ pos: -41.5,-36.5
parent: 2
- - uid: 754
+ - uid: 1261
components:
- type: Transform
- pos: -4.5,-41.5
+ pos: -46.5,-22.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 108
- - uid: 755
+ - uid: 1262
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,19.5
+ pos: -45.5,-24.5
parent: 2
- - uid: 756
+ - uid: 1263
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,25.5
+ pos: -29.5,-32.5
parent: 2
- - uid: 757
+ - uid: 1264
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,43.5
+ pos: -28.5,-32.5
parent: 2
- - uid: 758
+ - uid: 1265
components:
- type: Transform
- pos: -118.5,45.5
+ pos: -27.5,-32.5
parent: 2
- - uid: 759
+ - uid: 1266
components:
- type: Transform
- pos: -115.5,41.5
+ pos: -45.5,-23.5
parent: 2
- - uid: 760
+ - uid: 1267
components:
- type: Transform
- pos: -121.5,41.5
+ pos: -47.5,-22.5
parent: 2
- - uid: 761
+ - uid: 1268
components:
- type: Transform
- pos: -121.5,22.5
+ pos: -47.5,-27.5
parent: 2
- - uid: 762
+ - uid: 1269
components:
- type: Transform
- pos: -115.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,-51.5
parent: 2
- - uid: 763
+ - uid: 1270
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,-54.5
parent: 2
- - uid: 764
+ - uid: 1271
components:
- type: Transform
- pos: 69.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: -36.5,-52.5
parent: 2
- - uid: 765
+ - uid: 1272
components:
- type: Transform
- pos: 83.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 96
- - uid: 766
+ - uid: 1273
components:
- type: Transform
- pos: 88.5,13.5
+ pos: -37.5,-0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 96
- - uid: 767
+ - uid: 1274
components:
- type: Transform
- pos: 92.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,-28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 96
- - uid: 768
+ - uid: 1275
components:
- type: Transform
- pos: -13.5,30.5
+ pos: -41.5,-24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17797
- - 70
- - uid: 769
+ - uid: 1276
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,80.5
+ pos: -32.5,-24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17772
- - 73
- - uid: 770
+ - uid: 1277
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,5.5
+ pos: -46.5,-24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 41
- - uid: 771
+ - uid: 1278
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -52.5,-14.5
+ pos: -32.5,-26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - uid: 772
+ - uid: 1279
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -24.5,5.5
+ pos: -36.5,-27.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17782
- - uid: 773
+ - uid: 1280
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,14.5
+ pos: -39.5,-36.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17783
- - 36
- - uid: 774
+ - uid: 1281
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,-7.5
+ pos: -36.5,-26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17840
- - 64
- - uid: 775
+ - uid: 1282
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-8.5
+ pos: -28.5,-31.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17841
- - 64
- - uid: 776
+ - uid: 1283
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,16.5
+ pos: -32.5,-27.5
parent: 2
- - uid: 777
+ - uid: 1284
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-63.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - uid: 778
+ - uid: 1285
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-62.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17843
- - 99
- - uid: 779
+ - uid: 1286
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-20.5
+ pos: 29.5,-66.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17843
- - uid: 780
+ - uid: 1287
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 71.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-69.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17770
- - 100
- - uid: 781
+ - uid: 1288
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 80.5,-20.5
+ pos: -42.5,-26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17770
- - 100
- - uid: 782
+ - uid: 1289
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 44.5,4.5
+ pos: -42.5,-27.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - uid: 783
+ - uid: 1290
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-68.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 87
- - uid: 784
+ - uid: 1291
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 47.5,12.5
+ pos: 27.5,-67.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - uid: 785
+ - uid: 1292
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 54.5,12.5
+ pos: 28.5,-67.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - uid: 786
+ - uid: 1293
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 53.5,17.5
+ pos: 37.5,-62.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - uid: 787
+ - uid: 1294
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-69.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 90
- - uid: 788
+ - uid: 1295
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 73.5,1.5
+ pos: -35.5,-28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 33
- - uid: 789
+ - uid: 1296
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,27.5
+ pos: 29.5,-60.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17806
- - 78
- - uid: 790
+- proto: BarricadeBlock
+ entities:
+ - uid: 1297
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 6.5,35.5
+ pos: -37.5,58.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17807
- - 78
- - uid: 791
+ - uid: 1298
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-71.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17809
- - uid: 792
+ - uid: 1299
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,50.5
+ pos: 29.5,-60.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - uid: 793
+ - uid: 1300
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,41.5
+ pos: 18.5,68.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 53
- - uid: 794
+ - uid: 1301
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,57.5
+ pos: -56.5,-25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17800
- - 124
- - uid: 795
+ - uid: 1302
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,57.5
+ pos: -61.5,-29.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17800
- - uid: 796
+ - uid: 1303
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,68.5
+ pos: -43.5,-3.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 73
- - uid: 797
+ - uid: 1304
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,68.5
+ pos: -44.5,-34.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 125
- - uid: 798
+ - uid: 1305
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,68.5
+ pos: 11.5,61.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 75
- - uid: 799
+ - uid: 1306
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,76.5
+ pos: 24.5,66.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17847
- - 77
- - uid: 800
+ - uid: 1307
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,78.5
+ pos: -38.5,-56.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 77
- - uid: 801
+ - uid: 1308
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,80.5
+ pos: 17.5,57.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17846
- - 125
- - uid: 802
+ - uid: 1309
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,93.5
+ pos: -37.5,-0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17846
- - 125
- - uid: 803
+ - uid: 1310
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,93.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-58.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17772
- - 73
- - uid: 804
+ - uid: 1311
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,49.5
+ pos: 41.5,-71.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17799
- - 76
- - uid: 805
+ - uid: 1312
components:
- type: Transform
- pos: -41.5,13.5
+ pos: -37.5,-15.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17780
- - 68
- - uid: 806
+ - uid: 1313
components:
- type: Transform
- pos: -59.5,25.5
+ pos: 22.5,61.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17773
- - 58
- - uid: 807
+ - uid: 1314
components:
- type: Transform
- pos: -57.5,41.5
+ pos: 16.5,70.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17776
- - 55
- - uid: 808
+ - uid: 1315
components:
- type: Transform
- pos: -52.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -38.5,55.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17777
- - 55
- - uid: 809
+ - uid: 1316
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.49999997,-59.5
+ pos: 41.5,-68.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17827
- - 112
- - uid: 810
+- proto: BarricadeDirectional
+ entities:
+ - uid: 1317
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-24.5
+ pos: 17.5,58.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17758
- - 116
- - uid: 811
+ - uid: 1318
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-78.5
+ pos: -38.5,-36.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17828
- - 113
- - uid: 812
+ - uid: 1319
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.49999997,-47.5
+ pos: -38.5,56.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17826
- - 112
- - uid: 813
+- proto: BarSign
+ entities:
+ - uid: 1320
components:
- type: Transform
- pos: -54.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,41.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17774
- - 55
- - uid: 814
+- proto: BarSignMalteseFalcon
+ entities:
+ - uid: 1321
components:
- type: Transform
- pos: -53.5,23.5
+ pos: -64.5,-38.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17773
- - 58
- - uid: 815
+- proto: BaseBallBat
+ entities:
+ - uid: 1322
components:
- type: Transform
- pos: -34.5,5.5
+ pos: 69.68544,26.458788
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17781
- - 52
- - uid: 816
+- proto: BaseComputer
+ entities:
+ - uid: 1323
components:
- type: Transform
- pos: -29.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-49.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17794
- - 63
- - uid: 817
+- proto: BaseGasCondenser
+ entities:
+ - uid: 1324
components:
- type: Transform
- pos: -18.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17793
- - 36
- - uid: 818
+- proto: BassGuitarInstrument
+ entities:
+ - uid: 1325
components:
- type: Transform
- pos: -14.5,23.5
+ pos: -8.499726,29.04972
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17784
- - 94
- - uid: 819
+- proto: Beaker
+ entities:
+ - uid: 1326
components:
- type: Transform
- pos: 1.5,23.5
+ pos: 26.798685,-65.68403
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17785
- - 94
- - uid: 820
+ - uid: 1327
components:
- type: Transform
- pos: 12.5,23.5
+ pos: 26.486185,-65.76215
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17786
- - 94
- - uid: 821
+ - uid: 1328
components:
- type: Transform
- pos: 17.5,13.5
+ pos: 22.348429,-37.346508
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17787
- - 17810
- - 17811
- - 111
- - uid: 822
+ - uid: 1329
components:
- type: Transform
- pos: 22.5,5.5
+ pos: 20.50013,-40.283833
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17810
- - 17811
- - 84
- - uid: 823
+ - type: Physics
+ canCollide: False
+ - uid: 1330
components:
- type: Transform
- pos: 30.5,5.5
+ pos: -10.1553335,-52.195354
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17811
- - uid: 824
+ - uid: 1331
components:
- type: Transform
- pos: 35.5,5.5
+ pos: -3.4142637,-45.366215
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17812
- - 85
- - uid: 825
+ - uid: 1332
components:
- type: Transform
- pos: 17.5,1.5
+ pos: 3.6732028,-44.403152
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 111
- - uid: 826
+ - uid: 1333
components:
- type: Transform
- pos: 17.5,-14.5
+ pos: -3.664264,-45.209965
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17788
- - 117
- - uid: 827
+ - uid: 1334
components:
- type: Transform
- pos: 7.5,-19.5
+ pos: 22.676554,-37.346508
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17789
- - 17839
- - 121
- - uid: 828
+ - uid: 1335
components:
- type: Transform
- pos: -0.5,-18.5
+ pos: 38.498783,-74.342354
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17839
- - 86
- - uid: 829
+ - type: Physics
+ canCollide: False
+ - uid: 1336
components:
- type: Transform
- pos: -18.5,-13.5
+ pos: 2.6763434,-29.46381
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17792
- - 123
- - uid: 830
+ - type: Physics
+ canCollide: False
+ - uid: 1337
components:
- type: Transform
- pos: 22.5,-10.5
+ pos: 36.53883,-19.395462
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 97
- - uid: 831
+ - type: Physics
+ canCollide: False
+ - uid: 1338
components:
- type: Transform
- pos: 29.5,-10.5
+ pos: -31.260351,34.57036
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17843
- - 97
- - uid: 832
+ - type: Physics
+ canCollide: False
+ - uid: 1339
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-69.5
+ pos: -39.252483,52.65019
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17828
- - 113
- - uid: 833
+ - uid: 1340
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-65.5
+ pos: -27.199572,45.474667
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17828
- - 113
- - uid: 834
+- proto: Bed
+ entities:
+ - uid: 1341
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-29.5
+ pos: 14.5,-42.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17821
- - 116
- - uid: 835
+ - uid: 1342
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-32.5
+ pos: -2.5,54.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17823
- - 116
- - uid: 836
+ - uid: 1343
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-34.5
+ pos: 41.5,13.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17824
- - 37
- - uid: 837
+ - uid: 1344
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-44.5
+ pos: 65.5,-4.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17768
- - uid: 838
+ - uid: 1345
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-41.5
+ pos: -15.5,-4.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17769
- - 39
- - uid: 839
+ - uid: 1346
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-34.5
+ pos: -1.5,44.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17790
- - 107
- - uid: 840
+ - uid: 1347
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-34.5
+ pos: 44.5,-60.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17831
- - 104
- - uid: 841
+ - uid: 1348
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-27.5
+ pos: -16.5,-46.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17830
- - 106
- - uid: 842
+ - uid: 1349
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-38.5
+ pos: 14.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17834
- - uid: 843
+ - uid: 1350
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-39.5
+ pos: -12.5,52.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17835
- - 104
- - uid: 844
+ - uid: 1351
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-41.5
+ pos: 24.5,-51.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17838
- - 105
- - uid: 845
+ - uid: 1352
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-45.5
+ pos: 39.5,-0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17836
- - 104
- - uid: 846
+ - uid: 1353
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-52.5
+ pos: 53.5,-24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17837
- - 110
- - uid: 847
+ - uid: 1354
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,41.5
+ pos: 39.5,13.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17808
- - 78
- - uid: 848
+ - uid: 1355
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,30.5
+ pos: 41.5,-0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 70
- - uid: 849
+ - uid: 1356
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,34.5
+ pos: 42.5,-72.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 71
- - uid: 850
+ - uid: 1357
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,41.5
+ pos: 45.5,-23.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17804
- - 53
- - uid: 851
+ - uid: 1358
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,31.5
+ pos: 35.5,22.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17795
- - 74
- - uid: 852
+ - uid: 1359
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,51.5
+ pos: 38.5,-72.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17845
- - 74
- - uid: 853
+ - uid: 1360
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,41.5
+ pos: 27.5,43.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17795
- - 74
- - uid: 854
+ - uid: 1361
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,62.5
+ pos: 44.5,-0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17801
- - 75
- - uid: 855
+ - uid: 1362
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,63.5
+ pos: -56.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17802
- - 73
- - uid: 856
+ - uid: 1363
components:
- type: Transform
- pos: 78.5,1.5
+ pos: -23.5,-80.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17848
- - 33
- - uid: 857
+ - uid: 1364
components:
- type: Transform
- pos: 87.5,1.5
+ pos: 52.5,-13.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17848
- - uid: 858
+ - uid: 1365
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-44.5
+ pos: -1.5,42.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 102
- - uid: 38371
+ - uid: 1366
components:
- type: Transform
- pos: -3.5,4.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38345
- - 38956
- - 38346
- - uid: 38372
+ pos: -21.5,-10.5
+ parent: 2
+ - uid: 1367
components:
- type: Transform
- pos: -12.5,5.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38346
- - 38955
-- proto: AirTank
- entities:
- - uid: 38373
+ pos: -36.5,2.5
+ parent: 2
+ - uid: 1368
components:
- type: Transform
- pos: 11.575556,19.48703
- parent: 38344
-- proto: AltarBananium
- entities:
- - uid: 859
->>>>>>> master
+ pos: 44.5,11.5
+ parent: 2
+ - uid: 1369
components:
- type: Transform
- pos: -6.5,34.5
+ pos: 44.5,7.5
parent: 2
-- proto: AltarConvertYellow
- entities:
-<<<<<<< HEAD
- - uid: 870
-=======
- - uid: 860
->>>>>>> master
+ - uid: 1370
components:
- type: Transform
- pos: -0.5,9.5
+ pos: 49.5,-23.5
parent: 2
-<<<<<<< HEAD
-- proto: AmeJar
- entities:
- - uid: 871
-=======
-- proto: AltarToolbox
+- proto: BedsheetBlack
entities:
- - uid: 861
+ - uid: 1371
components:
- type: Transform
- pos: 33.5,-54.5
+ pos: -23.5,-80.5
parent: 2
-- proto: AmeJar
+ - type: Physics
+ canCollide: False
+- proto: BedsheetBlue
entities:
- - uid: 862
->>>>>>> master
+ - uid: 1372
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.549076,-28.742567
+ rot: 3.141592653589793 rad
+ pos: -2.5,54.5
parent: 2
-- proto: AmeShielding
- entities:
-<<<<<<< HEAD
- - uid: 872
-=======
- - uid: 863
->>>>>>> master
+ - uid: 1373
components:
- type: Transform
- pos: -62.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-42.5
parent: 2
-<<<<<<< HEAD
- - uid: 873
-=======
- - uid: 864
->>>>>>> master
+- proto: BedsheetBrigmedic
+ entities:
+ - uid: 1374
components:
- type: Transform
- pos: -60.5,-26.5
+ pos: 65.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 874
-=======
- - uid: 865
->>>>>>> master
+- proto: BedsheetBrown
+ entities:
+ - uid: 1375
components:
- type: Transform
- pos: -62.5,-24.5
+ pos: -1.5,42.5
parent: 2
-- proto: AnalysisComputerCircuitboard
- entities:
-<<<<<<< HEAD
- - uid: 875
-=======
- - uid: 866
->>>>>>> master
+ - uid: 1376
components:
- type: Transform
- pos: -34.5,14.5
+ pos: -21.5,-10.5
parent: 2
-- proto: AnomalyScanner
+- proto: BedsheetCaptain
entities:
-<<<<<<< HEAD
- - uid: 876
-=======
- - uid: 867
->>>>>>> master
+ - uid: 1377
components:
- type: Transform
- pos: -18.514757,-55.20893
+ pos: 14.5,1.5
parent: 2
-<<<<<<< HEAD
- - uid: 877
-=======
- - uid: 868
->>>>>>> master
+ - type: Physics
+ canCollide: False
+- proto: BedsheetCE
+ entities:
+ - uid: 1378
components:
- type: Transform
- pos: -17.952257,-55.20893
+ pos: -56.5,7.5
parent: 2
-<<<<<<< HEAD
- - uid: 878
-=======
- - uid: 869
->>>>>>> master
+ - type: Physics
+ canCollide: False
+- proto: BedsheetClown
+ entities:
+ - uid: 1379
components:
- type: Transform
- pos: -17.631098,-55.387352
+ rot: 3.141592653589793 rad
+ pos: -12.5,52.5
parent: 2
-<<<<<<< HEAD
- - uid: 879
-=======
- - uid: 870
->>>>>>> master
+ - uid: 1380
components:
- type: Transform
- pos: -18.198187,-55.40506
+ pos: -36.5,2.5
parent: 2
-- proto: AntiPoisonMedipen
+- proto: BedsheetCMO
entities:
-<<<<<<< HEAD
- - uid: 881
+ - uid: 1381
components:
- type: Transform
- parent: 880
-=======
- - uid: 872
+ pos: 24.5,-51.5
+ parent: 2
+ - type: Physics
+ canCollide: False
+- proto: BedsheetHOP
+ entities:
+ - uid: 1382
components:
- type: Transform
- parent: 871
->>>>>>> master
+ pos: -15.5,-4.5
+ parent: 2
- type: Physics
canCollide: False
- - type: InsideEntityStorage
-- proto: APCBasic
+- proto: BedsheetHOS
entities:
-<<<<<<< HEAD
- - uid: 888
+ - uid: 1383
components:
- type: Transform
- pos: 11.5,83.5
+ pos: 35.5,22.5
parent: 2
- - uid: 889
-=======
- - uid: 879
->>>>>>> master
+ - type: Physics
+ canCollide: False
+- proto: BedsheetMedical
+ entities:
+ - uid: 1384
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 43.5,-36.5
- parent: 2
- - uid: 890
-=======
- pos: 10.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-4.5
parent: 2
- - uid: 880
->>>>>>> master
+ - uid: 1385
components:
- type: Transform
-<<<<<<< HEAD
rot: -1.5707963267948966 rad
- pos: 1.5,-47.5
- parent: 2
- - uid: 891
-=======
- pos: 14.5,3.5
+ pos: 63.5,-5.5
parent: 2
- - uid: 881
->>>>>>> master
+ - uid: 1386
components:
- type: Transform
-<<<<<<< HEAD
- pos: -26.5,-77.5
- parent: 2
- - uid: 892
-=======
- pos: 11.5,17.5
+ pos: 42.5,-72.5
parent: 2
- - uid: 882
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1387
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -45.5,30.5
- parent: 2
- - uid: 893
-=======
- pos: 9.5,-2.5
+ pos: 44.5,-60.5
parent: 2
- - uid: 883
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1388
components:
- type: Transform
-<<<<<<< HEAD
- pos: -21.5,-78.5
- parent: 2
- - uid: 894
-=======
- pos: -7.5,51.5
+ rot: 3.141592653589793 rad
+ pos: 34.5,-37.5
parent: 2
- - uid: 884
->>>>>>> master
+ - uid: 1389
components:
- type: Transform
-<<<<<<< HEAD
- pos: 78.5,24.5
+ pos: 68.5,16.5
parent: 2
- - uid: 895
+ - uid: 1390
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,30.5
- parent: 2
- - uid: 896
-=======
- pos: 23.5,33.5
+ pos: 70.5,16.5
parent: 2
- - uid: 885
+ - uid: 1391
components:
- type: Transform
- pos: -13.5,83.5
+ rot: 3.141592653589793 rad
+ pos: 32.5,-37.5
parent: 2
- - uid: 886
->>>>>>> master
+ - uid: 1392
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 59.5,-3.5
- parent: 2
- - uid: 897
-=======
- pos: 79.5,7.5
+ pos: 38.5,-38.5
parent: 2
- - uid: 887
->>>>>>> master
+ - uid: 1393
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -6.5,-14.5
- parent: 2
- - uid: 898
-=======
- pos: 94.5,6.5
+ pos: 30.5,-52.5
parent: 2
- - uid: 888
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1394
components:
- type: Transform
-<<<<<<< HEAD
- pos: 39.5,24.5
- parent: 2
- - uid: 899
-=======
- pos: 97.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-41.5
parent: 2
- - uid: 889
->>>>>>> master
+ - uid: 1395
components:
- type: Transform
-<<<<<<< HEAD
- pos: 56.5,2.5
+ pos: 38.5,-37.5
parent: 2
- - uid: 900
+ - uid: 1396
components:
- type: Transform
- pos: -31.5,-54.5
- parent: 2
- - uid: 901
-=======
- pos: 80.5,3.5
+ pos: 38.5,-72.5
parent: 2
- - uid: 890
+ - type: Physics
+ canCollide: False
+- proto: BedsheetMime
+ entities:
+ - uid: 1397
components:
- type: Transform
- pos: -5.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,44.5
parent: 2
- - uid: 891
->>>>>>> master
+- proto: BedsheetOrange
+ entities:
+ - uid: 1398
components:
- type: Transform
-<<<<<<< HEAD
- pos: 6.5,-53.5
- parent: 2
- - uid: 902
-=======
- pos: 27.5,53.5
+ pos: 41.5,-0.5
parent: 2
- - uid: 892
->>>>>>> master
+ - uid: 1399
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 84.5,9.5
- parent: 2
- - uid: 903
-=======
rot: -1.5707963267948966 rad
- pos: 90.5,-1.5
+ pos: 44.5,7.5
parent: 2
- - uid: 893
->>>>>>> master
+ - uid: 1400
components:
- type: Transform
-<<<<<<< HEAD
- pos: 69.5,17.5
- parent: 2
- - uid: 904
-=======
- pos: -13.5,6.5
+ pos: 41.5,13.5
parent: 2
- - uid: 894
->>>>>>> master
+ - uid: 1401
components:
- type: Transform
-<<<<<<< HEAD
rot: -1.5707963267948966 rad
- pos: 75.5,8.5
- parent: 2
- - uid: 905
-=======
- pos: -11.5,12.5
+ pos: 44.5,11.5
parent: 2
- - uid: 895
+ - uid: 1402
components:
- type: Transform
- pos: -7.5,70.5
+ pos: 44.5,-0.5
parent: 2
- - uid: 896
->>>>>>> master
+ - uid: 1403
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 49.5,6.5
- parent: 2
- - uid: 906
-=======
- pos: 85.5,8.5
+ pos: 39.5,-0.5
parent: 2
- - uid: 897
->>>>>>> master
+ - uid: 1404
components:
- type: Transform
-<<<<<<< HEAD
- pos: 53.5,30.5
- parent: 2
- - uid: 907
-=======
- pos: 55.5,10.5
+ pos: 39.5,13.5
parent: 2
- - uid: 898
->>>>>>> master
+- proto: BedsheetQM
+ entities:
+ - uid: 1405
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 56.5,7.5
- parent: 2
- - uid: 908
-=======
- pos: 43.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,43.5
parent: 2
- - uid: 899
->>>>>>> master
+- proto: BedsheetRainbow
+ entities:
+ - uid: 1406
components:
- type: Transform
-<<<<<<< HEAD
- pos: 55.5,14.5
- parent: 2
- - uid: 909
-=======
- pos: 7.5,32.5
+ pos: 86.5,6.5
parent: 2
- - uid: 900
->>>>>>> master
+- proto: BedsheetRD
+ entities:
+ - uid: 1407
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -67.5,47.5
- parent: 2
- - uid: 910
-=======
- pos: 71.5,-14.5
+ pos: -16.5,-46.5
parent: 2
- - uid: 901
->>>>>>> master
+ - type: Physics
+ canCollide: False
+- proto: BedsheetSpawner
+ entities:
+ - uid: 1408
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 57.5,-5.5
- parent: 2
- - uid: 911
-=======
- pos: 97.5,15.5
+ pos: 53.5,-24.5
parent: 2
- - uid: 902
->>>>>>> master
+ - uid: 1409
components:
- type: Transform
-<<<<<<< HEAD
- pos: 23.5,25.5
- parent: 2
- - uid: 912
-=======
- pos: 20.5,68.5
+ pos: 52.5,-13.5
parent: 2
- - uid: 903
->>>>>>> master
+ - uid: 1410
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 12.5,7.5
- parent: 2
- - uid: 913
-=======
- pos: -31.5,83.5
+ pos: 45.5,-23.5
parent: 2
- - uid: 904
->>>>>>> master
+ - uid: 1411
components:
- type: Transform
-<<<<<<< HEAD
- pos: -11.5,12.5
- parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 15
- supplyRampPosition: 4.7497883
- - uid: 914
-=======
- pos: 46.5,-26.5
+ pos: 49.5,-23.5
parent: 2
- - uid: 905
+- proto: BedsheetWhite
+ entities:
+ - uid: 1412
components:
- type: Transform
- pos: 24.5,21.5
+ pos: 38.5,-67.5
parent: 2
- - uid: 906
->>>>>>> master
+ - uid: 1413
components:
- type: Transform
- rot: -1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -8.5,1.5
- parent: 2
- - uid: 915
-=======
- pos: 86.5,-1.5
+ pos: 42.5,-67.5
parent: 2
- - uid: 907
->>>>>>> master
+- proto: Bible
+ entities:
+ - uid: 1414
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: -7.5,12.5
- parent: 2
- - uid: 916
-=======
- pos: 44.5,-17.5
+ pos: -16.528536,-73.33123
parent: 2
- - uid: 908
->>>>>>> master
+- proto: BigBox
+ entities:
+ - uid: 1415
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 44.5,-1.5
- parent: 2
- - uid: 917
-=======
- pos: -15.5,-63.5
+ pos: 53.44732,-55.470516
parent: 2
- - uid: 909
->>>>>>> master
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1416
+ - uid: 1417
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 32.5,-0.5
- parent: 2
- - uid: 918
-=======
- pos: -67.5,-38.5
+ pos: -38.449852,-54.46418
parent: 2
- - uid: 910
->>>>>>> master
+- proto: BikeHorn
+ entities:
+ - uid: 1419
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -20.5,-27.5
- parent: 2
- - uid: 919
+ parent: 1418
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BiomassReclaimer
+ entities:
+ - uid: 1422
components:
- type: Transform
- pos: 23.5,-18.5
+ pos: 10.5,-50.5
parent: 2
- - uid: 920
+- proto: BlastDoor
+ entities:
+ - uid: 1423
components:
- type: Transform
- pos: -6.5,47.5
- parent: 2
- - uid: 921
-=======
- rot: -1.5707963267948966 rad
- pos: 82.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,56.5
parent: 2
- - uid: 911
+ - uid: 1424
components:
- type: Transform
- pos: 11.5,89.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,56.5
parent: 2
- - uid: 912
+ - uid: 1425
components:
- type: Transform
- pos: 1.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,61.5
parent: 2
- - uid: 913
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 1426
components:
- type: Transform
- pos: 17.5,64.5
+ pos: -38.5,-44.5
parent: 2
- - uid: 914
+ - type: DeviceLinkSink
+ links:
+ - 30718
+ - uid: 1427
components:
- type: Transform
- pos: 24.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,21.5
parent: 2
- - uid: 915
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30659
+ - uid: 1428
components:
- type: Transform
-<<<<<<< HEAD
rot: 1.5707963267948966 rad
- pos: 72.5,-4.5
- parent: 2
- - uid: 922
-=======
- pos: 3.5,55.5
+ pos: -73.5,-7.5
parent: 2
- - uid: 916
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30665
+ - uid: 1429
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: -41.5,-76.5
- parent: 2
- - uid: 923
-=======
- pos: -6.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-17.5
parent: 2
- - uid: 917
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30685
+ - uid: 1430
components:
+ - type: MetaData
+ name: арсенал синего кода
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -39.5,39.5
- parent: 2
- - uid: 924
-=======
- pos: -15.5,53.5
+ pos: 58.5,2.5
parent: 2
- - uid: 918
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 26314
+ - uid: 1431
components:
+ - type: MetaData
+ name: арсенал красного кода
- type: Transform
-<<<<<<< HEAD
- pos: 11.5,71.5
- parent: 2
- - uid: 925
-=======
- pos: -24.5,54.5
+ pos: 66.5,2.5
parent: 2
- - uid: 919
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 26312
+ - uid: 1432
components:
+ - type: MetaData
+ name: дополнительный арсенал
- type: Transform
-<<<<<<< HEAD
- pos: -20.5,-13.5
+ pos: 62.5,2.5
parent: 2
- - uid: 926
+ - type: DeviceLinkSink
+ links:
+ - 26313
+ - uid: 1433
components:
- type: Transform
- pos: -62.5,-21.5
- parent: 2
- - uid: 927
-=======
- pos: -0.5,10.5
+ pos: 61.5,12.5
parent: 2
- - uid: 920
+ - type: DeviceLinkSink
+ links:
+ - 26315
+ - uid: 1434
components:
- type: Transform
- pos: 0.49999997,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-17.5
parent: 2
- - uid: 921
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30685
+ - uid: 1435
components:
- type: Transform
-<<<<<<< HEAD
- pos: 3.5,-28.5
- parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 75
- supplyRampPosition: 0.047621023
- - uid: 928
-=======
- pos: -21.5,-9.5
+ pos: -38.5,-39.5
parent: 2
- - uid: 922
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30715
+ - uid: 1436
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 19.5,-28.5
- parent: 2
- - uid: 929
-=======
- pos: -26.5,-0.5
+ pos: -38.5,-45.5
parent: 2
- - uid: 923
+ - type: DeviceLinkSink
+ links:
+ - 30718
+ - uid: 1437
components:
- type: Transform
- pos: -39.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,-68.5
parent: 2
- - uid: 924
+ - uid: 1438
components:
- type: Transform
- pos: -22.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -73.5,-6.5
parent: 2
- - uid: 925
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30665
+ - uid: 1439
components:
- type: Transform
-<<<<<<< HEAD
- pos: -4.5,-36.5
+ pos: 75.5,30.5
parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 15
- supplyRampPosition: 0.010999783
- - uid: 930
-=======
- pos: 9.5,55.5
- parent: 2
- - uid: 926
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30694
+ - uid: 1440
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -21.5,-40.5
- parent: 2
- - uid: 931
-=======
- pos: 77.5,-41.5
+ pos: -49.5,-7.5
parent: 2
- - uid: 927
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 33053
+ - 30696
+ - uid: 1441
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 25.5,-37.5
+ pos: -49.5,-8.5
parent: 2
- - uid: 932
+ - type: DeviceLinkSink
+ links:
+ - 33053
+ - 30696
+ - uid: 1442
components:
- type: Transform
- pos: -66.5,-29.5
+ pos: -49.5,-6.5
parent: 2
- - uid: 933
-=======
- pos: 87.5,-14.5
+ - type: DeviceLinkSink
+ links:
+ - 33053
+ - 30696
+ - uid: 1443
+ components:
+ - type: Transform
+ pos: 76.5,30.5
parent: 2
- - uid: 928
+ - type: DeviceLinkSink
+ links:
+ - 30694
+ - uid: 1444
components:
- type: Transform
- pos: -39.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -73.5,-5.5
parent: 2
- - uid: 929
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30665
+ - uid: 1445
components:
- type: Transform
-<<<<<<< HEAD
rot: 3.141592653589793 rad
- pos: 18.5,-53.5
- parent: 2
- - uid: 934
-=======
- pos: -32.5,39.5
+ pos: 39.5,52.5
parent: 2
- - uid: 930
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30714
+ - uid: 1446
components:
- type: Transform
-<<<<<<< HEAD
- pos: -62.5,12.5
- parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 25
- supplyRampPosition: 14.940672
- - uid: 935
-=======
- pos: -33.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 33.5,52.5
parent: 2
- - uid: 931
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30711
+ - uid: 1447
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -56.5,56.5
- parent: 2
- - uid: 936
-=======
- pos: -28.5,44.5
+ rot: 3.141592653589793 rad
+ pos: 39.5,48.5
parent: 2
- - uid: 932
+ - type: DeviceLinkSink
+ links:
+ - 30714
+ - uid: 1448
components:
- type: Transform
- pos: -38.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 33.5,48.5
parent: 2
- - uid: 933
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30711
+ - uid: 1449
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 68.5,26.5
- parent: 2
- - uid: 937
-=======
- pos: -40.5,30.5
+ pos: -38.5,-40.5
parent: 2
- - uid: 934
+ - type: DeviceLinkSink
+ links:
+ - 30715
+ - uid: 1450
components:
- type: Transform
- pos: -39.5,55.5
+ pos: -38.5,-38.5
parent: 2
- - uid: 935
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30715
+ - uid: 1451
components:
- type: Transform
-<<<<<<< HEAD
- pos: -77.5,12.5
- parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 20
- supplyRampPosition: 0.13917412
- - uid: 938
-=======
- pos: -40.5,64.5
+ pos: -38.5,-43.5
parent: 2
- - uid: 936
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30718
+ - uid: 1452
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 15.5,-41.5
+ pos: 74.5,30.5
parent: 2
- - uid: 939
+ - type: DeviceLinkSink
+ links:
+ - 30694
+ - uid: 1453
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-6.5
- parent: 2
- - uid: 940
-=======
- pos: -26.5,66.5
+ pos: -70.5,-8.5
parent: 2
- - uid: 937
+ - type: DeviceLinkSink
+ links:
+ - 30645
+ - uid: 1454
components:
- type: Transform
- pos: -30.5,66.5
+ pos: -68.5,-8.5
parent: 2
- - uid: 938
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30645
+ - uid: 1455
components:
- type: Transform
-<<<<<<< HEAD
- pos: 10.5,47.5
- parent: 2
- - uid: 941
-=======
- pos: -0.5,59.5
+ pos: -69.5,-8.5
parent: 2
- - uid: 939
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30645
+ - uid: 1456
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 34.5,33.5
- parent: 2
- - uid: 942
-=======
- pos: -36.5,51.5
+ pos: -67.5,61.5
parent: 2
- - uid: 940
+ - type: DeviceLinkSink
+ links:
+ - 30690
+ - uid: 1457
components:
- type: Transform
- pos: -27.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-17.5
parent: 2
- - uid: 941
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30685
+ - uid: 1458
components:
- type: Transform
-<<<<<<< HEAD
rot: -1.5707963267948966 rad
- pos: 4.5,62.5
+ pos: 68.5,-43.5
parent: 2
- - uid: 943
-=======
- pos: -23.5,16.5
+ - type: DeviceLinkSink
+ links:
+ - 30704
+ - uid: 1459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,-46.5
parent: 2
- - uid: 942
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30704
+ - uid: 1460
components:
- type: Transform
-<<<<<<< HEAD
rot: 1.5707963267948966 rad
- pos: 3.5,42.5
- parent: 2
- - uid: 944
-=======
- pos: -4.5,25.5
+ pos: 9.5,81.5
parent: 2
- - uid: 943
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30638
+ - uid: 1461
components:
- type: Transform
-<<<<<<< HEAD
rot: 1.5707963267948966 rad
- pos: 12.5,38.5
- parent: 2
- - uid: 945
-=======
- pos: 7.5,38.5
+ pos: 9.5,80.5
parent: 2
- - uid: 944
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30638
+- proto: BlastDoorOpen
+ entities:
+ - uid: 1462
components:
- type: Transform
-<<<<<<< HEAD
- pos: 5.5,66.5
- parent: 2
- - uid: 946
-=======
- pos: 9.5,47.5
+ pos: -52.5,18.5
parent: 2
- - uid: 945
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 26316
+ - uid: 1463
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 42.5,-12.5
- parent: 2
- - uid: 947
-=======
- pos: 29.5,39.5
+ pos: -53.5,18.5
parent: 2
- - uid: 946
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 26316
+ - uid: 1464
components:
- type: Transform
-<<<<<<< HEAD
- pos: -3.5,-62.5
- parent: 2
- - uid: 948
-=======
- pos: 33.5,39.5
+ pos: -54.5,18.5
parent: 2
- - uid: 947
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 26316
+ - uid: 1465
components:
- type: Transform
-<<<<<<< HEAD
- pos: -3.5,-6.5
+ pos: -51.5,18.5
parent: 2
- - uid: 949
+ - type: DeviceLinkSink
+ links:
+ - 26316
+ - uid: 1466
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-12.5
- parent: 2
- - uid: 950
-=======
- pos: 38.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,0.5
parent: 2
- - uid: 948
+ - type: DeviceLinkSink
+ links:
+ - 30644
+ - uid: 1467
components:
- type: Transform
- pos: 31.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,-0.5
parent: 2
- - uid: 949
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30644
+ - uid: 1468
components:
- type: Transform
-<<<<<<< HEAD
- pos: 8.5,38.5
- parent: 2
- - uid: 951
-=======
- pos: 33.5,29.5
+ pos: -53.5,8.5
parent: 2
- - uid: 950
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30650
+ - uid: 1469
components:
- type: Transform
-<<<<<<< HEAD
- pos: -0.5,28.5
- parent: 2
- - uid: 952
-=======
- pos: 20.5,7.5
+ pos: -14.5,16.5
parent: 2
- - uid: 951
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30660
+ - uid: 1470
components:
- type: Transform
-<<<<<<< HEAD
- pos: -38.5,36.5
+ pos: -37.5,-30.5
parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 15
- supplyRampPosition: 1.7578249
- - uid: 953
-=======
- pos: 72.5,4.5
+ - type: DeviceLinkSink
+ links:
+ - 30669
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 13.5,16.5
parent: 2
- - uid: 952
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30653
+ - uid: 1472
components:
- type: Transform
-<<<<<<< HEAD
rot: 3.141592653589793 rad
- pos: -64.5,53.5
- parent: 2
- - uid: 954
-=======
- pos: 69.5,17.5
+ pos: -48.5,-27.5
parent: 2
- - uid: 953
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30651
+ - uid: 1473
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -8.5,-59.5
+ pos: -41.5,-30.5
parent: 2
- - uid: 955
+ - type: DeviceLinkSink
+ links:
+ - 30679
+ - uid: 1474
components:
- type: Transform
- pos: -62.5,-32.5
+ pos: -50.5,8.5
parent: 2
- - uid: 956
+ - type: DeviceLinkSink
+ links:
+ - 30650
+ - uid: 1475
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,85.5
-=======
- pos: 73.5,24.5
+ pos: -52.5,8.5
parent: 2
- - uid: 954
+ - type: DeviceLinkSink
+ links:
+ - 30650
+ - uid: 1476
components:
- type: Transform
- pos: 86.5,11.5
+ pos: -51.5,8.5
parent: 2
- - uid: 955
+ - type: DeviceLinkSink
+ links:
+ - 30650
+ - uid: 1477
components:
- type: Transform
- pos: 93.5,24.5
+ pos: 33.5,4.5
parent: 2
- - uid: 956
+ - type: DeviceLinkSink
+ links:
+ - 30680
+ - 30649
+ - uid: 1478
components:
- type: Transform
- pos: 92.5,11.5
->>>>>>> master
+ pos: 38.5,5.5
parent: 2
- - uid: 957
+ - type: DeviceLinkSink
+ links:
+ - 30707
+ - 30649
+ - uid: 1479
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 27.5,-22.5
-=======
- pos: 8.5,-47.5
->>>>>>> master
+ pos: 38.5,6.5
parent: 2
- - uid: 958
+ - type: DeviceLinkSink
+ links:
+ - 30707
+ - 30649
+ - uid: 1480
components:
- type: Transform
-<<<<<<< HEAD
- pos: -55.5,-10.5
+ pos: -41.5,-24.5
parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 20
- supplyRampPosition: 17.270588
-=======
- pos: 36.5,23.5
+ - type: DeviceLinkSink
+ links:
+ - 30675
+ - uid: 1481
+ components:
+ - type: Transform
+ pos: -33.5,-24.5
parent: 2
->>>>>>> master
- - uid: 959
+ - type: DeviceLinkSink
+ links:
+ - 30666
+ - uid: 1482
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -21.5,-71.5
+ pos: 13.5,14.5
parent: 2
- - uid: 960
-=======
- pos: 26.5,10.5
+ - type: DeviceLinkSink
+ links:
+ - 30653
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: -14.5,15.5
parent: 2
- - uid: 960
+ - type: DeviceLinkSink
+ links:
+ - 30660
+ - uid: 1484
components:
- type: Transform
- pos: 71.5,27.5
+ pos: -14.5,14.5
parent: 2
- - uid: 961
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30660
+ - uid: 1485
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 12.5,3.5
+ pos: -33.5,-30.5
parent: 2
- - uid: 961
-=======
- pos: 45.5,25.5
+ - type: DeviceLinkSink
+ links:
+ - 30686
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: 13.5,13.5
parent: 2
- - uid: 962
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30653
+ - uid: 1487
components:
- type: Transform
-<<<<<<< HEAD
- pos: 36.5,-42.5
+ pos: -14.5,13.5
parent: 2
- - uid: 962
-=======
- pos: 56.5,20.5
+ - type: DeviceLinkSink
+ links:
+ - 30660
+ - uid: 1488
+ components:
+ - type: Transform
+ pos: 38.5,4.5
parent: 2
- - uid: 963
+ - type: DeviceLinkSink
+ links:
+ - 30707
+ - 30649
+ - uid: 1489
components:
- type: Transform
- pos: 55.5,14.5
+ pos: 33.5,6.5
parent: 2
- - uid: 964
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30680
+ - 30649
+ - uid: 1490
components:
- type: Transform
- rot: 3.141592653589793 rad
-<<<<<<< HEAD
- pos: 46.5,-21.5
+ pos: -37.5,-24.5
parent: 2
- - uid: 963
-=======
- pos: 57.5,2.5
+ - type: DeviceLinkSink
+ links:
+ - 30672
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: 13.5,15.5
parent: 2
- - uid: 965
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30653
+ - uid: 1492
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 48.5,-51.5
+ pos: 33.5,5.5
parent: 2
- - uid: 964
-=======
- pos: 37.5,3.5
+ - type: DeviceLinkSink
+ links:
+ - 30680
+ - 30649
+ - uid: 1493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,1.5
parent: 2
- - uid: 966
->>>>>>> master
+ - type: DeviceLinkSink
+ links:
+ - 30644
+- proto: BlockGameArcade
+ entities:
+ - uid: 1494
components:
- type: Transform
-<<<<<<< HEAD
rot: 3.141592653589793 rad
- pos: -32.5,-79.5
+ pos: 15.5,58.5
parent: 2
- - uid: 965
+ - type: SpamEmitSound
+ enabled: False
+ - uid: 1495
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,55.5
- parent: 2
- - uid: 966
-=======
- pos: 26.5,3.5
+ pos: 13.5,58.5
parent: 2
- - uid: 967
+ - type: SpamEmitSound
+ enabled: False
+ - uid: 1496
components:
- type: Transform
- pos: 42.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,58.5
parent: 2
- - uid: 968
->>>>>>> master
+ - uid: 1497
components:
- type: Transform
-<<<<<<< HEAD
rot: -1.5707963267948966 rad
- pos: 27.5,18.5
- parent: 2
- - uid: 967
-=======
- pos: 55.5,-8.5
+ pos: 21.5,59.5
parent: 2
- - uid: 969
->>>>>>> master
+- proto: BlockGameArcadeComputerCircuitboard
+ entities:
+ - uid: 1498
components:
- type: Transform
-<<<<<<< HEAD
- pos: -44.5,7.5
- parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 5
- supplyRampPosition: 1.7944434
- - uid: 968
-=======
- pos: 24.5,-8.5
+ pos: -36.5,10.5
parent: 2
- - uid: 970
->>>>>>> master
+- proto: Bloodpack
+ entities:
+ - uid: 1500
components:
- type: Transform
-<<<<<<< HEAD
- pos: -2.5,35.5
- parent: 2
- - uid: 969
-=======
- pos: 38.5,-2.5
- parent: 2
- - uid: 971
->>>>>>> master
+ parent: 1499
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BodyBagFolded
+ entities:
+ - uid: 1507
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 18.5,26.5
- parent: 2
- - uid: 970
-=======
- pos: -60.5,0.5
+ pos: 5.584937,-48.259304
parent: 2
- - uid: 972
->>>>>>> master
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 7.6867995
+ - 28.917011
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 1508
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -39.5,12.5
- parent: 2
- - uid: 971
-=======
- pos: -62.5,12.5
+ pos: 5.376316,-48.057827
parent: 2
- - uid: 973
->>>>>>> master
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14954
+ moles:
+ - 7.071855
+ - 26.60365
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 1509
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: -26.5,59.5
- parent: 2
- - uid: 972
-=======
- pos: -47.5,10.5
+ pos: 5.376316,-48.44306
parent: 2
- - uid: 974
->>>>>>> master
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14948
+ moles:
+ - 6.506107
+ - 24.475357
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: Bonfire
+ entities:
+ - uid: 1510
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -56.5,61.5
- parent: 2
- - uid: 973
-=======
- pos: -65.5,-4.5
+ pos: 87.5,-17.5
parent: 2
- - uid: 975
->>>>>>> master
+- proto: BookBase
+ entities:
+ - uid: 1512
components:
+ - type: MetaData
+ name: Пособие Пилота
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -39.5,26.5
- parent: 2
- - uid: 974
-=======
- pos: -60.5,-4.5
+ parent: 1511
+ - type: Paper
+ content: >
+ ──────────────────────────────────────
+
+ ┌───────────────┐
+
+ │██░███░░░░██░░░│ <ПОСОБИЕ ПИЛОТА>
+
+ │░█░████░░░██░░░│ SFD Стервятник DS-753
+
+ │░░░██░██░░██░░░| STS Вьюк SY-741
+
+ │░░░██░░██░██░█░│ *NT CLASSIFIED*
+
+ │░░░██░░░████░██│
+
+ └───────────────┘
+
+ ──────────────────────────────────────
+
+ О шаттлах Delta
+ Патрульный шаттл SFD Стервятник DS-753 и пассажирский шаттл STS Вьюк SY-741, используемые станцией Delta являются гордостью учёных и инженеров NanoTrasen. Всё потому, что данные шаттлы оборудованы Продвинутой системой пилотирования типа ACE.
+
+ Управление с технологией ACE
+ По центру панели расположен сенсорный экран, на котором можно увидеть шаттл и всё, что его окружает в космическом пространстве. Используйте сенсоры экрана для изменения масштаба, а так же для управления стыковочными шлюзами.
+
+
+ Для отстыковки выберите пристыкованный шлюз в меню и нажмите «отстыковать».
+
+
+ Для стыковки выберите нужный ваш шлюз в меню и плавным движением соедините его со шлюзом, к которому вы хотите пристыковаться.
+
+
+ SFD Стервятник DS-753 и STS Вьюк SY-741 сделаны по современным стандартам шаттлостроения, потому они поддерживают следующие типы перемещения и их комбинации:
+
+ 1. Крен – вращательное движение шаттла.
+
+ 2. Тангаж – поступательное движение шаттла вперёд и назад.
+
+ 3. Рыскание – поступательное движение влево и вправо.
+
+
+ Помимо описанного выше, шаттлы так же обладает режимом Ускоренного Торможения. При использовании этого режима шаттл быстро замедляется и останавливается, что даёт возможность качественнее стыковаться и лучше маневрировать в космосе.
+
+ Задачи пилота СБ Delta
+ Пилот СБ Delta получает оба шаттла под свою ответственность, и должен выполнять следующие задачи:
+
+ 1. Патруль пространства вокруг станции
+
+ 2. Транспортировка пожизненных заключённых на Каторгу «Злой Каблук»
+
+ 3. Транспортировка сотрудников СБ для выполнения задач за пределами станции
+
+ Внимание
+ Утеря Пособия наказуема арестом по статье 207 «Халатность» и немедленным снятием с должности Пилота СБ.
+
+
+ Допуск угона или угон SFD Стервятник DS-753 или STS Вьюк SY-741 наказуем арестом по статье 407 «Грубая халатность», немедленным увольнением из СБ, а так же штрафом, размером в стоимость строительства угнанного шаттла.
+
+
+ По окончанию прочтения Пособия, будущий или текущий пилот СБ должен немедленно приступить к выполнению обязанностей.
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BookFeather
+ entities:
+ - uid: 1525
+ components:
+ - type: MetaData
+ desc: Книга "Борьба с терроризмом на космической станции" выглядит очень серьезно и профессионально. На обложке изображена космическая станция с несколькими космонавтами, которые явно готовятся к какому-то экстремальному событию. Название книги написано крупными черными буквами на голубом фоне, что придает ей строгость и важность. Авторы, Вадисон Стрэнглер и Михаил Хальтбар, указаны ниже названия в меньшем шрифте. Внутри книги можно найти много полезной информации и практических советов по борьбе с террористической угрозой на космической станции.
+ name: Пособие по борьбе с терроризмом. Робаст индастриз
+ - type: Transform
+ pos: -24.673494,-4.4728036
parent: 2
- - uid: 976
->>>>>>> master
+ - type: Paper
+ content: >-
+ К сожалению, в наше время угроза террористических актов может распространяться не только на земле, но и в космическом пространстве. Борьба с терроризмом на космической станции является крайне важной задачей, которая требует особого подхода и внимания. В этом пособии мы рассмотрим несколько способов борьбы с террористами на космической станции.
+
+
+ 1. Обучение персонала станции - для того чтобы эффективно бороться с террористами, необходимо, чтобы персонал станции был обучен и знал, как действовать в случае террористической угрозы. Это может включать в себя тренировки по эвакуации, использованию оружия и другие меры безопасности.
+
+
+ 2. Установка систем безопасности - космическая станция должна быть оборудована различными системами безопасности, такими как камеры наблюдения, системы оповещения и датчики движения. Эти системы могут помочь своевременно обнаружить террористическую угрозу и предпринять соответствующие меры.
+
+
+ 3. Ограничение доступа - необходимо ограничить доступ на космическую станцию только для авторизованных лиц. Это может быть достигнуто через системы идентификации и аутентификации, такие как биометрические сканеры или системы считывания карт доступа.
+
+
+ 4. Создание кризисного плана - космическая станция должна иметь кризисный план, который определяет действия персонала в случае террористической угрозы. Это может включать в себя процедуры эвакуации, установку блокады и другие меры безопасности.
+
+
+ Борьба с террористами на космической станции является сложной и ответственной задачей, которая требует совместных усилий персонала станции, правоохранительных органов и других заинтересованных сторон. Однако, при правильной подготовке и принятии соответствующих мер безопасности, возможно минимизировать риски террористической угрозы на космической станции.
+- proto: BookRandom
+ entities:
+ - uid: 1526
components:
+ - type: MetaData
+ desc: В этой таинсвтенной книге в твердом переплете, Вы сможете открыть для себя целый "внутренний" мир.
+ name: Анатомия для чайников
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -29.5,14.5
+ pos: 6.298485,-48.571903
parent: 2
- - uid: 975
+ - uid: 1527
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,61.5
+ pos: -23.778364,-12.554576
parent: 2
- - uid: 976
-=======
- pos: -77.5,17.5
+ - uid: 1528
+ components:
+ - type: MetaData
+ desc: В этой книге много интересных картинок, только вряд ли Вы сможе понять их.
+ name: Механика для чайников
+ - type: Transform
+ pos: 10.142386,-3.4094415
parent: 2
- - uid: 977
+ - uid: 1529
components:
- type: Transform
- pos: -62.5,19.5
+ pos: -33.672646,-8.453057
parent: 2
- - uid: 978
->>>>>>> master
+ - uid: 1530
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -24.5,-30.5
+ pos: -23.476131,-12.262708
parent: 2
- - uid: 977
-=======
- pos: -56.5,21.5
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: -23.232197,-12.535765
parent: 2
- - uid: 979
->>>>>>> master
+ - uid: 1532
components:
- type: Transform
-<<<<<<< HEAD
rot: -1.5707963267948966 rad
- pos: -39.5,21.5
- parent: 2
- - uid: 978
-=======
- pos: -46.5,16.5
+ pos: -26.507277,-8.33971
parent: 2
- - uid: 980
->>>>>>> master
+ - uid: 1533
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: -55.5,24.5
- parent: 2
- - uid: 979
-=======
- pos: 50.5,-1.5
+ pos: -21.537008,-4.499959
parent: 2
- - uid: 981
->>>>>>> master
+ - uid: 1534
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -44.5,22.5
+ pos: -21.771383,-4.484334
parent: 2
- - uid: 980
-=======
- pos: 63.5,-1.5
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: -22.67433,0.54259586
parent: 2
- - uid: 982
->>>>>>> master
+ - uid: 1536
components:
- type: Transform
-<<<<<<< HEAD
rot: 1.5707963267948966 rad
- pos: -72.5,-25.5
- parent: 2
- - uid: 981
-=======
- pos: 28.5,-12.5
+ pos: -30.501118,-8.318875
parent: 2
- - uid: 983
->>>>>>> master
+ - uid: 1537
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 4.5,-53.5
- parent: 2
- - uid: 982
-=======
- pos: -67.5,3.5
+ pos: -27.520205,-11.001986
parent: 2
- - uid: 984
->>>>>>> master
+- proto: BookSecurity
+ entities:
+ - uid: 1538
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 29.5,-37.5
- parent: 2
- - uid: 983
-=======
- pos: -118.5,51.5
+ pos: -22.528498,0.6467625
parent: 2
- - uid: 985
->>>>>>> master
+- proto: Bookshelf
+ entities:
+ - uid: 1539
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 31.5,3.5
- parent: 2
- - uid: 984
-=======
- pos: -118.5,20.5
+ pos: -33.5,-6.5
parent: 2
- - uid: 986
->>>>>>> master
+ - uid: 1540
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 8.5,53.5
- parent: 2
- - uid: 985
-=======
- pos: -113.5,44.5
+ pos: -27.5,2.5
parent: 2
- - uid: 987
->>>>>>> master
+ - uid: 1541
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -57.5,32.5
- parent: 2
- - uid: 986
-=======
- pos: -123.5,44.5
+ pos: -26.5,2.5
parent: 2
- - uid: 988
+ - uid: 1542
components:
- type: Transform
- pos: -69.5,13.5
+ pos: -14.5,7.5
parent: 2
- - uid: 989
+ - uid: 1543
components:
- type: Transform
- pos: -65.5,57.5
+ pos: -14.5,11.5
parent: 2
- - uid: 990
+ - uid: 1544
components:
- type: Transform
- pos: -44.5,49.5
+ pos: -35.5,-63.5
parent: 2
- - uid: 991
->>>>>>> master
+ - uid: 1545
components:
- type: Transform
- pos: -50.5,39.5
+ pos: -29.5,-65.5
parent: 2
-<<<<<<< HEAD
- - uid: 987
-=======
- - uid: 992
->>>>>>> master
+ - uid: 1546
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -44.5,-15.5
- parent: 2
- - uid: 988
-=======
- pos: -60.5,43.5
+ pos: -40.5,-62.5
parent: 2
- - uid: 993
->>>>>>> master
+ - uid: 1547
components:
- type: Transform
-<<<<<<< HEAD
- pos: 12.5,33.5
- parent: 2
- - uid: 989
-=======
- pos: -56.5,39.5
+ pos: -32.5,-64.5
parent: 2
- - uid: 994
->>>>>>> master
+ - uid: 1548
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 16.5,-22.5
- parent: 2
- - uid: 990
-=======
- pos: -52.5,31.5
+ pos: -13.5,-64.5
parent: 2
- - uid: 995
->>>>>>> master
+ - uid: 1549
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 7.5,-43.5
+ pos: -35.5,-65.5
parent: 2
- - uid: 991
+ - uid: 1550
components:
- type: Transform
- pos: 41.5,-48.5
- parent: 2
- - uid: 992
-=======
- pos: -45.5,24.5
+ pos: -39.5,-62.5
parent: 2
- - uid: 996
+ - uid: 1551
components:
- type: Transform
- pos: -51.5,26.5
+ pos: -33.5,-64.5
parent: 2
- - uid: 997
->>>>>>> master
+ - uid: 1552
components:
- type: Transform
-<<<<<<< HEAD
- pos: -27.5,22.5
+ pos: -40.5,-64.5
parent: 2
- - uid: 993
+ - uid: 1553
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-80.5
- parent: 2
- - uid: 994
-=======
- pos: -20.5,-78.5
+ pos: -39.5,-66.5
parent: 2
- - uid: 998
+ - uid: 1554
components:
- type: Transform
- pos: -18.5,-60.5
+ pos: -33.5,-66.5
parent: 2
- - uid: 999
->>>>>>> master
+ - uid: 1555
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -35.5,-5.5
- parent: 2
- - uid: 995
-=======
- pos: -39.5,-63.5
+ pos: -27.5,-4.5
parent: 2
- - uid: 1000
+ - uid: 1556
components:
- type: Transform
- pos: -28.5,-74.5
+ pos: -39.5,-64.5
parent: 2
- - uid: 1001
->>>>>>> master
+ - uid: 1557
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 54.5,-26.5
+ pos: -40.5,-66.5
parent: 2
- - uid: 996
+ - uid: 1558
components:
- type: Transform
- pos: -23.5,27.5
- parent: 2
- - type: Battery
- startingCharge: 12000
- - uid: 997
-=======
- pos: -28.5,-69.5
+ pos: -35.5,-61.5
parent: 2
- - uid: 1002
+ - uid: 1559
components:
- type: Transform
- pos: -36.5,-49.5
+ pos: -32.5,-66.5
parent: 2
- - uid: 1003
+ - uid: 1560
components:
- type: Transform
- pos: -28.5,-48.5
+ pos: -19.5,-64.5
parent: 2
- - uid: 1004
->>>>>>> master
+- proto: BookshelfFilled
+ entities:
+ - uid: 1561
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -74.5,5.5
+ pos: 87.5,8.5
parent: 2
- - uid: 998
+ - uid: 1562
components:
- type: Transform
- pos: -45.5,-45.5
- parent: 2
- - uid: 999
-=======
- pos: -25.5,-42.5
+ pos: -30.5,-4.5
parent: 2
- - uid: 1005
+ - uid: 1563
components:
- type: Transform
- pos: -20.5,-36.5
+ pos: -34.5,-4.5
parent: 2
- - uid: 1006
->>>>>>> master
+ - uid: 1564
components:
- type: Transform
-<<<<<<< HEAD
- pos: 10.5,-2.5
- parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 15
- supplyRampPosition: 4.02835
- - uid: 1000
-=======
- pos: -3.5,-44.5
+ pos: -34.5,-6.5
parent: 2
- - uid: 1007
->>>>>>> master
+ - uid: 1565
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: -44.5,-10.5
+ pos: -33.5,-4.5
parent: 2
- - uid: 1001
+ - uid: 1566
components:
- type: Transform
- pos: 17.5,64.5
- parent: 2
- - uid: 1002
-=======
- pos: -9.5,-28.5
+ pos: 86.5,8.5
parent: 2
- - uid: 1008
+ - uid: 1567
components:
- type: Transform
- pos: -10.5,-36.5
+ pos: -26.5,-4.5
parent: 2
- - uid: 1009
->>>>>>> master
+ - uid: 1568
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 32.5,-5.5
+ pos: -65.5,-37.5
parent: 2
- - uid: 1003
-=======
- pos: -25.5,-32.5
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: -53.5,-48.5
parent: 2
- - uid: 1010
->>>>>>> master
+ - uid: 1570
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -40.5,56.5
+ pos: -52.5,-48.5
parent: 2
- - uid: 1004
-=======
- pos: -17.5,-22.5
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: -71.5,-33.5
parent: 2
- - uid: 1011
+ - uid: 1572
components:
- type: Transform
- pos: -20.5,-48.5
+ pos: -71.5,-34.5
parent: 2
- - uid: 1012
+ - uid: 1573
components:
- type: Transform
- pos: -19.5,-54.5
+ pos: -48.5,-42.5
parent: 2
- - uid: 1013
->>>>>>> master
+ - uid: 1574
components:
- type: Transform
- rot: -1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -47.5,-2.5
+ pos: 72.5,-39.5
parent: 2
- - uid: 1005
-=======
- pos: -3.5,-57.5
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: -28.5,2.5
parent: 2
- - uid: 1014
+ - uid: 1576
components:
- type: Transform
- pos: -3.5,-62.5
+ pos: -29.5,2.5
parent: 2
- - uid: 1015
->>>>>>> master
+ - uid: 1577
components:
- type: Transform
- rot: -1.5707963267948966 rad
-<<<<<<< HEAD
- pos: 25.5,-45.5
+ pos: -29.5,-4.5
parent: 2
- - uid: 1006
+ - uid: 1578
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-4.5
+ pos: -21.5,-12.5
parent: 2
- - uid: 1007
-=======
- pos: 7.5,-75.5
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: -26.5,-6.5
parent: 2
- - uid: 1016
+ - uid: 1580
components:
- type: Transform
- pos: 6.5,-36.5
+ pos: -30.5,-6.5
parent: 2
- - uid: 1017
->>>>>>> master
+- proto: BoozeDispenser
+ entities:
+ - uid: 1581
components:
- type: Transform
-<<<<<<< HEAD
- pos: 31.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -64.5,-47.5
parent: 2
- - uid: 1008
-=======
+ - uid: 1582
+ components:
+ - type: Transform
rot: -1.5707963267948966 rad
- pos: 9.5,-29.5
+ pos: -5.5,43.5
parent: 2
- - uid: 1018
->>>>>>> master
+ - type: ContainerContainer
+ containers:
+ ReagentDispenser-beaker: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ beakerSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+- proto: BorgCharger
+ entities:
+ - uid: 1583
components:
- type: Transform
-<<<<<<< HEAD
- pos: -50.5,16.5
- parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 50
- supplyRampPosition: 5.6103845
- - uid: 1009
-=======
- pos: 31.5,-32.5
+ pos: -78.5,11.5
parent: 2
- - uid: 1019
->>>>>>> master
+- proto: BorgModuleClowning
+ entities:
+ - uid: 1584
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -66.5,14.5
+ pos: 10.353839,70.644646
parent: 2
- - uid: 1010
+- proto: BoxBeanbag
+ entities:
+ - uid: 1585
components:
- type: Transform
- pos: 24.5,13.5
+ pos: 67.5,8.5
parent: 2
- - uid: 1011
+ - uid: 1586
components:
- type: Transform
- pos: 38.5,-2.5
+ pos: -3.5094411,38.647697
parent: 2
- - uid: 1012
+ - uid: 1587
components:
- type: Transform
- pos: 21.5,11.5
+ pos: -3.4469776,38.932606
parent: 2
- - uid: 1013
+ - uid: 1589
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-16.5
- parent: 2
- - uid: 1014
-=======
- pos: 31.5,-27.5
- parent: 2
- - uid: 1020
+ parent: 1588
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1592
components:
- type: Transform
- pos: 35.5,-26.5
+ pos: 67.5,8.5
parent: 2
- - uid: 1021
+- proto: BoxBodyBag
+ entities:
+ - uid: 1593
components:
- type: Transform
- pos: 33.5,-36.5
+ pos: 14.516084,-57.596573
parent: 2
- - uid: 1022
+ - uid: 1594
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-51.5
+ pos: 14.64542,-37.37316
parent: 2
- - uid: 1023
+ - uid: 1595
components:
- type: Transform
- pos: 24.5,-49.5
+ pos: 14.02042,-37.388786
parent: 2
- - uid: 1024
+ - uid: 1596
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-49.5
+ pos: 72.50579,23.559893
parent: 2
- - uid: 1025
->>>>>>> master
+ - uid: 1597
components:
- type: Transform
- rot: 1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -10.5,-32.5
- parent: 2
- - uid: 1015
-=======
- pos: 13.5,-49.5
+ pos: -23.5,-74.5
parent: 2
- - uid: 1026
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1598
components:
- type: Transform
-<<<<<<< HEAD
- pos: 7.5,-9.5
+ pos: -23.379358,-74.404076
parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 25
- supplyRampPosition: 8.898857
- - uid: 1016
+ - type: Physics
+ canCollide: False
+ - uid: 1599
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-9.5
+ pos: 26.500849,9.893845
parent: 2
- - uid: 1017
-=======
- pos: 14.5,-41.5
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: 35.57008,-18.332962
parent: 2
- - uid: 1027
+ - type: Physics
+ canCollide: False
+ - uid: 1601
components:
- type: Transform
- pos: 12.5,-56.5
+ pos: -24.379358,-64.44205
parent: 2
- - uid: 1028
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1602
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 31.5,55.5
+ pos: 4.458846,-52.43695
parent: 2
- - uid: 1018
-=======
- pos: 43.5,-45.5
+ - uid: 1603
+ components:
+ - type: Transform
+ pos: 8.5624,-42.649765
parent: 2
- - uid: 1029
->>>>>>> master
+ - uid: 1604
components:
- type: Transform
-<<<<<<< HEAD
- pos: 25.5,-23.5
+ pos: 13.411045,-37.388786
parent: 2
- - uid: 1019
+- proto: BoxBottle
+ entities:
+ - uid: 882
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-44.5
+ parent: 880
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BoxCandleSmall
+ entities:
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: -22.343113,-4.447041
parent: 2
- - uid: 1020
-=======
- pos: 14.5,-36.5
+- proto: BoxCardboard
+ entities:
+ - uid: 1606
+ components:
+ - type: Transform
+ pos: -18.498352,-32.30649
parent: 2
- - uid: 1030
+- proto: BoxDarts
+ entities:
+ - uid: 1607
components:
- type: Transform
- pos: 7.5,-43.5
+ pos: 70.64869,23.60806
parent: 2
- - uid: 1031
->>>>>>> master
+ - uid: 1608
components:
- type: Transform
-<<<<<<< HEAD
- pos: 26.5,-12.5
+ pos: -62.5,-39.5
parent: 2
- - uid: 1021
-=======
- pos: 8.5,-21.5
+- proto: BoxEvidenceMarkers
+ entities:
+ - uid: 1610
+ components:
+ - type: Transform
+ parent: 1609
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BoxFlashbang
+ entities:
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: 58.46948,15.545851
parent: 2
- - uid: 1032
+- proto: BoxFolderBase
+ entities:
+ - uid: 1612
components:
- type: Transform
- pos: -9.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 29.467598,-4.2868743
parent: 2
- - uid: 1033
->>>>>>> master
+ - uid: 1613
components:
- type: Transform
-<<<<<<< HEAD
- pos: 4.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 29.608223,-4.4431243
parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 15
- supplyRampPosition: 3.5009959
- - uid: 1022
-=======
- pos: 12.5,-28.5
+- proto: BoxFolderBlack
+ entities:
+ - uid: 1614
+ components:
+ - type: Transform
+ pos: 34.33272,2.6378307
parent: 2
- - uid: 1034
->>>>>>> master
+ - uid: 1615
components:
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 37.5,-64.5
+ pos: -21.65159,-7.2404675
parent: 2
- - uid: 1023
+ - uid: 1616
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -55.5,19.5
- parent: 2
- - uid: 1024
-=======
- pos: 51.5,-12.5
+ pos: -39.469776,27.71739
parent: 2
- - uid: 1035
+ - uid: 1617
components:
- type: Transform
- pos: 53.5,-21.5
+ pos: 72.83203,-43.635002
parent: 2
- - uid: 1036
->>>>>>> master
+- proto: BoxFolderBlue
+ entities:
+ - uid: 1618
components:
- type: Transform
-<<<<<<< HEAD
- pos: -11.5,-9.5
- parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 15
- supplyRampPosition: 7.3425717
- - uid: 1025
-=======
- pos: 47.5,-21.5
+ pos: -11.722464,-1.4301846
parent: 2
- - uid: 1037
+ - uid: 1619
components:
- type: Transform
- pos: 43.5,-21.5
+ pos: -24.381498,22.74946
parent: 2
- - uid: 1038
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1620
components:
- type: Transform
-<<<<<<< HEAD
- pos: 14.5,-36.5
- parent: 2
- - type: PowerNetworkBattery
- loadingNetworkDemand: 50
- supplyRampPosition: 6.759501
- - uid: 1026
-=======
- pos: 45.5,-12.5
+ pos: 23.637524,-46.348213
parent: 2
- - uid: 1039
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1621
components:
- type: Transform
-<<<<<<< HEAD
- pos: 25.5,-8.5
- parent: 2
- - uid: 1027
-=======
- pos: 1.5,-56.5
+ pos: -62.344925,9.596943
parent: 2
- - uid: 1040
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1622
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -41.5,-63.5
- parent: 2
- - uid: 1028
-=======
- pos: 1.5,-44.5
+ pos: 24.450024,-42.441963
parent: 2
- - uid: 1041
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1623
components:
- type: Transform
-<<<<<<< HEAD
- pos: -25.5,-48.5
- parent: 2
- - uid: 1029
-=======
- pos: 2.5,-17.5
+ pos: -13.67326,5.600397
parent: 2
- - uid: 1042
->>>>>>> master
+ - uid: 1624
components:
- type: Transform
-<<<<<<< HEAD
- pos: 26.5,39.5
+ pos: 8.528144,7.5618477
parent: 2
- - uid: 1030
+ - type: Physics
+ canCollide: False
+ - uid: 1625
components:
- type: Transform
- pos: 46.5,-45.5
- parent: 2
- - uid: 1031
-=======
- pos: -5.5,-17.5
+ pos: 53.362377,16.215246
parent: 2
- - uid: 1043
+ - uid: 1626
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-3.5
+ pos: -4.5355453,-60.37103
parent: 2
- - uid: 1044
->>>>>>> master
+ - uid: 1627
components:
- type: Transform
-<<<<<<< HEAD
- pos: 17.5,25.5
- parent: 2
- - uid: 1032
-=======
- rot: -1.5707963267948966 rad
- pos: -39.5,11.5
+ pos: -19.490316,-49.45443
parent: 2
- - uid: 1045
->>>>>>> master
+ - uid: 1628
components:
- type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -21.5,-50.5
+ pos: 1.5749657,13.635027
parent: 2
- - uid: 1033
+ - type: Physics
+ canCollide: False
+ - uid: 1629
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-41.5
- parent: 2
- - uid: 1034
-=======
- pos: -33.5,17.5
+ pos: 51.525723,-22.433455
parent: 2
- - uid: 1046
+ - type: Physics
+ canCollide: False
+ - uid: 1630
components:
- type: Transform
- pos: -45.5,-45.5
+ pos: 53.831127,16.168371
parent: 2
- - uid: 1047
->>>>>>> master
+ - uid: 1631
components:
- type: Transform
-<<<<<<< HEAD
- pos: 6.5,-72.5
- parent: 2
- - uid: 1035
-=======
- pos: -70.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,0.5
parent: 2
- - uid: 1048
->>>>>>> master
+ - uid: 1632
components:
- type: Transform
-<<<<<<< HEAD
- pos: -16.5,-54.5
- parent: 2
- - uid: 1036
-=======
- pos: -63.5,-21.5
+ pos: 53.643627,16.105871
parent: 2
- - uid: 1049
->>>>>>> master
+ - uid: 1633
components:
- type: Transform
-<<<<<<< HEAD
- pos: -3.5,-44.5
- parent: 2
- - uid: 1037
-=======
- pos: -67.5,-29.5
+ pos: -12.5,9.5
parent: 2
- - uid: 1050
+ - type: Physics
+ canCollide: False
+ - uid: 1634
components:
- type: Transform
- pos: -49.5,-38.5
+ pos: 8.361257,0.68303835
parent: 2
- - uid: 1051
+ - uid: 1635
components:
- type: Transform
- pos: -51.5,-18.5
+ pos: 53.471752,16.152746
parent: 2
- - uid: 1052
+ - uid: 1636
components:
- type: Transform
- pos: -76.5,-21.5
+ pos: -11.316215,-1.3208096
parent: 2
- - uid: 1053
->>>>>>> master
+- proto: BoxFolderClipboard
+ entities:
+ - uid: 1637
components:
- type: Transform
rot: -1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -11.5,-52.5
- parent: 2
- - uid: 1038
-=======
- pos: -56.5,-48.5
+ pos: 34.524487,-0.34152007
parent: 2
- - uid: 1054
->>>>>>> master
+- proto: BoxFolderGrey
+ entities:
+ - uid: 1638
components:
- type: Transform
-<<<<<<< HEAD
- pos: 46.5,25.5
- parent: 2
- - uid: 1039
-=======
- rot: 1.5707963267948966 rad
- pos: -60.5,-35.5
+ pos: -27.454956,20.554731
parent: 2
- - uid: 1055
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1639
components:
- type: Transform
-<<<<<<< HEAD
- pos: -66.5,-4.5
- parent: 2
- - uid: 1040
-=======
- pos: -39.5,-47.5
+ pos: -23.4916,-4.411229
parent: 2
- - uid: 1056
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1640
components:
- type: Transform
-<<<<<<< HEAD
- pos: 77.5,-41.5
- parent: 2
- - uid: 1041
-=======
- pos: -69.5,-33.5
+ pos: -34.475735,-11.38378
parent: 2
- - uid: 1057
+ - type: Physics
+ canCollide: False
+ - uid: 1641
components:
- type: Transform
- pos: 10.5,-10.5
+ pos: -20.373795,-42.708656
parent: 2
- - uid: 1058
->>>>>>> master
+ - uid: 1642
components:
- type: Transform
-<<<<<<< HEAD
- pos: -118.5,20.5
- parent: 2
- - uid: 1042
-=======
- pos: -11.5,-10.5
+ pos: -20.56322,-42.446686
parent: 2
- - uid: 1059
->>>>>>> master
+ - uid: 1643
components:
- type: Transform
-<<<<<<< HEAD
- pos: -123.5,44.5
- parent: 2
- - uid: 1043
-=======
- pos: 66.5,31.5
+ pos: 37.533417,-10.380364
parent: 2
- - uid: 1060
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1644
components:
- type: Transform
-<<<<<<< HEAD
- pos: -113.5,44.5
- parent: 2
- - uid: 1044
-=======
- pos: 54.5,33.5
+ pos: -39.49025,-59.400646
parent: 2
- - uid: 1061
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1645
components:
- type: Transform
-<<<<<<< HEAD
- pos: -114.5,27.5
- parent: 2
- - uid: 1045
-=======
- pos: 3.5,-56.5
+ rot: 1.5707963267948966 rad
+ pos: -36.44036,62.57854
parent: 2
- - uid: 38248
->>>>>>> master
+ - uid: 1646
components:
- type: Transform
-<<<<<<< HEAD
- pos: -118.5,51.5
+ pos: -39.459,-69.3694
parent: 2
- - uid: 1046
-=======
- rot: 3.141592653589793 rad
- pos: -0.5,-0.5
- parent: 38244
- - uid: 38374
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1647
components:
- type: Transform
-<<<<<<< HEAD
- pos: -122.5,27.5
+ pos: -36.49025,-68.4944
parent: 2
- - uid: 1047
+ - type: Physics
+ canCollide: False
+ - uid: 1648
components:
- type: Transform
- pos: -28.5,56.5
+ pos: -13.474747,-79.39744
parent: 2
- - uid: 1048
+ - type: Physics
+ canCollide: False
+ - uid: 1649
components:
- type: Transform
- pos: -6.5,31.5
+ pos: 36.564667,-13.317864
parent: 2
- - uid: 1049
+ - type: Physics
+ canCollide: False
+ - uid: 1650
components:
- type: Transform
- pos: 17.5,68.5
+ rot: 1.5707963267948966 rad
+ pos: -34.389957,60.528397
parent: 2
- - uid: 1050
+- proto: BoxFolderRed
+ entities:
+ - uid: 1651
components:
- type: Transform
- pos: -7.5,51.5
+ pos: 53.315502,16.699621
parent: 2
- - uid: 1051
+ - uid: 1652
components:
- type: Transform
- pos: -30.5,39.5
+ pos: 53.456127,16.590246
parent: 2
- - uid: 1052
+ - uid: 1653
components:
- type: Transform
- pos: -15.5,53.5
+ pos: 72.5231,22.197773
parent: 2
- - uid: 1053
+ - uid: 1654
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -13.5,71.5
+ pos: -34.463715,60.4104
parent: 2
- - uid: 1054
+ - uid: 1655
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,73.5
+ rot: -1.5707963267948966 rad
+ pos: -39.41077,27.525648
parent: 2
- - uid: 1055
+ - uid: 1656
components:
- type: Transform
- pos: -16.5,70.5
+ pos: 34.494984,2.5345864
parent: 2
- - uid: 1056
+ - uid: 1657
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,71.5
+ pos: 26.5,-3.5
parent: 2
- - uid: 38718
+ - uid: 1658
components:
- type: Transform
- pos: 2.5,2.5
- parent: 38714
-- proto: APCElectronics
- entities:
- - uid: 1058
+ rot: 1.5707963267948966 rad
+ pos: 31.56962,9.853551
+ parent: 2
+ - uid: 1659
components:
- type: Transform
- parent: 1057
+ pos: 41.496258,20.571657
+ parent: 2
- type: Physics
canCollide: False
- - type: InsideEntityStorage
- - uid: 1064
-=======
- pos: -7.5,-0.5
- parent: 38344
- - uid: 38375
+ - uid: 1660
components:
- type: Transform
- pos: 10.5,-0.5
- parent: 38344
- - uid: 38376
+ pos: 38.53962,22.54246
+ parent: 2
+ - type: Physics
+ canCollide: False
+ - uid: 1661
components:
- type: Transform
- pos: -0.5,-6.5
- parent: 38344
- - uid: 38377
+ pos: 51.53175,-14.501758
+ parent: 2
+ - type: Physics
+ canCollide: False
+ - uid: 1662
components:
- type: Transform
- pos: 7.5,-2.5
- parent: 38344
- - uid: 38378
+ pos: -31.566772,-61.29911
+ parent: 2
+ - type: Physics
+ canCollide: False
+ - uid: 1663
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,7.5
- parent: 38344
- - uid: 38379
+ pos: -11.5,9.5
+ parent: 2
+ - type: Physics
+ canCollide: False
+ - uid: 1664
components:
- type: Transform
- pos: -4.5,5.5
- parent: 38344
- - uid: 38380
+ pos: 53.393627,16.637121
+ parent: 2
+ - uid: 1665
components:
- type: Transform
- pos: 4.5,5.5
- parent: 38344
- - uid: 38381
+ pos: 72.72266,-43.3225
+ parent: 2
+ - uid: 1666
components:
- type: Transform
- pos: -7.5,11.5
- parent: 38344
- - uid: 38382
+ rot: 3.141592653589793 rad
+ pos: 59.633347,27.579762
+ parent: 2
+- proto: BoxFolderWhite
+ entities:
+ - uid: 1668
components:
- type: Transform
- pos: 7.5,5.5
- parent: 38344
- - uid: 38383
+ parent: 1667
+ - type: Physics
+ canCollide: False
+ - uid: 1669
components:
- type: Transform
- pos: -16.5,-0.5
- parent: 38344
-- proto: APCElectronics
- entities:
- - uid: 1063
+ parent: 1667
+ - type: Physics
+ canCollide: False
+ - uid: 1670
components:
- type: Transform
- parent: 1062
+ parent: 1667
- type: Physics
canCollide: False
- - type: InsideEntityStorage
- - uid: 1066
->>>>>>> master
+ - uid: 1671
components:
- type: Transform
- pos: -34.33145,10.337081
- parent: 2
-<<<<<<< HEAD
-- proto: APCHighCapacity
- entities:
- - uid: 1065
+ parent: 1667
+ - type: Physics
+ canCollide: False
+ - uid: 1682
components:
- - type: MetaData
- name: Пермабриг
- type: Transform
- pos: 91.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -31.404982,-37.37876
parent: 2
-- proto: APCSuperCapacity
- entities:
- - uid: 1066
+ - uid: 1683
components:
- - type: MetaData
- name: Парк
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-6.5
+ pos: 23.325024,-46.504463
parent: 2
-=======
-- proto: APCSuperCapacity
- entities:
->>>>>>> master
- - uid: 1067
+ - type: Physics
+ canCollide: False
+ - uid: 1684
components:
- - type: MetaData
- name: Артефактная
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-47.5
+ rot: 6.283185307179586 rad
+ pos: -25.533741,-30.547684
parent: 2
- - uid: 1068
+ - uid: 1685
components:
- - type: MetaData
- name: Токсины
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-40.5
+ pos: 34.627636,-30.622177
parent: 2
-<<<<<<< HEAD
-- proto: ArrivalsShuttleTimer
- entities:
- - uid: 1069
-=======
- - uid: 1069
+ - type: Physics
+ canCollide: False
+ - uid: 1686
components:
- type: Transform
- pos: -26.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 3.420166,-16.41551
parent: 2
-- proto: AppleSeeds
- entities:
- - uid: 1070
+ - uid: 1687
components:
- type: Transform
- pos: 54.638096,-32.17157
+ pos: 3.4281096,-27.398321
parent: 2
-- proto: ArrivalsShuttleTimer
- entities:
- - uid: 1071
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1688
components:
- type: Transform
- pos: 3.5,81.5
+ pos: 53.815502,16.605871
parent: 2
-<<<<<<< HEAD
- - uid: 1070
-=======
- - uid: 1072
->>>>>>> master
+ - uid: 1689
components:
- type: Transform
- pos: -14.5,81.5
+ pos: 22.450024,-42.441963
parent: 2
-<<<<<<< HEAD
- - uid: 1071
-=======
- - uid: 1073
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1690
components:
- type: Transform
- pos: -26.5,81.5
+ pos: 21.190166,-24.38206
parent: 2
-<<<<<<< HEAD
-- proto: Ashtray
- entities:
- - uid: 1072
-=======
-- proto: Ash
- entities:
- - uid: 1074
+ - uid: 1691
components:
- type: Transform
- pos: -57.457546,56.721203
+ pos: 42.5,-69.5
parent: 2
-- proto: Ashtray
- entities:
- - uid: 1075
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1692
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.302418,-8.487843
+ pos: 41.5,-74.5
parent: 2
-<<<<<<< HEAD
-- proto: AtmosDeviceFanTiny
- entities:
- - uid: 1073
+ - type: Physics
+ canCollide: False
+ - uid: 1693
components:
- type: Transform
- pos: 10.5,91.5
+ pos: 21.601835,-24.389095
parent: 2
- - uid: 1074
+ - uid: 1694
components:
- type: Transform
- pos: -69.5,23.5
+ pos: 39.5,-74.5
parent: 2
- - uid: 1075
-=======
- - uid: 1076
+ - type: Physics
+ canCollide: False
+ - uid: 1695
components:
- type: Transform
- pos: -57.34817,56.705578
+ pos: 12.018113,-52.407093
parent: 2
- - uid: 1077
+ - uid: 1696
components:
- type: Transform
- pos: 59.625492,27.514393
+ pos: 53.784252,16.699621
parent: 2
-- proto: AtmosDeviceFanTiny
- entities:
- - uid: 1078
+ - uid: 1697
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,91.5
+ pos: 38.590744,-60.30695
parent: 2
- - uid: 1079
->>>>>>> master
+ - uid: 1698
components:
- type: Transform
- pos: 37.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 14.278481,-58.12024
parent: 2
-<<<<<<< HEAD
- - uid: 1076
-=======
- - uid: 1080
->>>>>>> master
+- proto: BoxFolderYellow
+ entities:
+ - uid: 1699
components:
- type: Transform
- pos: -10.5,-82.5
+ pos: -24.600248,22.53071
parent: 2
-<<<<<<< HEAD
- - uid: 1077
-=======
- - uid: 1081
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1700
components:
- type: Transform
- pos: 39.5,49.5
+ pos: -62.594925,9.409443
parent: 2
-<<<<<<< HEAD
- - uid: 1078
-=======
- - uid: 1082
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1701
components:
- type: Transform
- pos: 39.5,51.5
+ pos: 27.524498,36.5593
parent: 2
-<<<<<<< HEAD
- - uid: 1079
-=======
- - uid: 1083
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1702
components:
- type: Transform
- pos: 17.5,78.5
+ pos: -28.464966,-74.492966
parent: 2
-<<<<<<< HEAD
- - uid: 1080
-=======
- - uid: 1084
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1703
components:
- type: Transform
- pos: 5.5,93.5
+ pos: -10.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 1081
-=======
- - uid: 1085
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1704
components:
- type: Transform
- pos: -61.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -36.366608,62.740784
parent: 2
-<<<<<<< HEAD
- - uid: 1082
-=======
- - uid: 1086
->>>>>>> master
+ - uid: 1705
components:
- type: Transform
- pos: 94.5,17.5
+ pos: 72.33203,-43.338123
parent: 2
-<<<<<<< HEAD
- - uid: 1083
-=======
- - uid: 1087
->>>>>>> master
+ - uid: 1706
components:
- type: Transform
- pos: -25.5,84.5
+ pos: 9.74218,32.600994
parent: 2
-<<<<<<< HEAD
- - uid: 1084
-=======
- - uid: 1088
->>>>>>> master
+- proto: BoxForensicPad
+ entities:
+ - uid: 1707
components:
- type: Transform
- pos: 94.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 30.52093,12.580546
parent: 2
-<<<<<<< HEAD
- - uid: 1085
-=======
- - uid: 1089
->>>>>>> master
+- proto: BoxHandcuff
+ entities:
+ - uid: 1708
components:
- type: Transform
- pos: 31.5,60.5
+ pos: 54.270676,3.577455
parent: 2
-<<<<<<< HEAD
- - uid: 1086
-=======
- - uid: 1090
->>>>>>> master
+- proto: BoxHug
+ entities:
+ - uid: 1709
components:
- type: Transform
- pos: -34.5,26.5
+ pos: -12.620868,53.679634
parent: 2
-<<<<<<< HEAD
- - uid: 1087
-=======
- - uid: 1091
->>>>>>> master
+ - uid: 1710
components:
- type: Transform
- pos: 90.5,21.5
+ pos: -12.364026,54.00986
parent: 2
-<<<<<<< HEAD
- - uid: 1088
+- proto: BoxingBell
+ entities:
+ - uid: 1711
components:
- type: Transform
- pos: -68.5,24.5
+ pos: 59.5,-16.5
parent: 2
- - uid: 1089
-=======
- - uid: 1092
->>>>>>> master
+- proto: BoxLatexGloves
+ entities:
+ - uid: 883
components:
- type: Transform
- pos: 32.5,59.5
- parent: 2
-<<<<<<< HEAD
- - uid: 1090
-=======
- - uid: 1093
->>>>>>> master
+ parent: 880
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BoxLethalshot
+ entities:
+ - uid: 1712
components:
- type: Transform
- pos: -30.5,29.5
+ pos: 65.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1091
-=======
- - uid: 1094
->>>>>>> master
+ - uid: 1713
components:
- type: Transform
- pos: -33.5,77.5
+ pos: 65.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1092
-=======
- - uid: 1095
->>>>>>> master
+ - uid: 1714
components:
- type: Transform
- pos: -33.5,84.5
+ pos: 65.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1093
-=======
- - uid: 1096
->>>>>>> master
+- proto: BoxLightMixed
+ entities:
+ - uid: 1715
components:
- type: Transform
- pos: -29.5,99.5
+ pos: -40.493076,-17.385798
parent: 2
-<<<<<<< HEAD
- - uid: 1094
-=======
- - uid: 1097
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1716
components:
- type: Transform
- pos: -25.5,77.5
+ pos: -77.375374,-30.29104
parent: 2
-<<<<<<< HEAD
- - uid: 1095
-=======
- - uid: 1098
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1717
components:
- type: Transform
- pos: 2.5,84.5
+ pos: 3.3950934,31.614307
parent: 2
-<<<<<<< HEAD
- - uid: 1096
-=======
- - uid: 1099
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1718
components:
- type: Transform
- pos: -15.5,84.5
+ pos: -60.58293,20.484503
parent: 2
-<<<<<<< HEAD
- - uid: 1097
-=======
- - uid: 1100
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1719
components:
- type: Transform
- pos: -15.5,77.5
+ pos: -77.562874,-30.41604
parent: 2
-<<<<<<< HEAD
- - uid: 1098
-=======
- - uid: 1101
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1720
components:
- type: Transform
- pos: -7.5,77.5
+ pos: 12.511247,75.64397
parent: 2
-<<<<<<< HEAD
- - uid: 1099
-=======
- - uid: 1102
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1721
components:
- type: Transform
- pos: -7.5,84.5
+ pos: -58.41385,27.693401
parent: 2
-<<<<<<< HEAD
- - uid: 1100
-=======
- - uid: 1103
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1722
components:
- type: Transform
- pos: 2.5,77.5
+ pos: -0.7948296,50.41453
parent: 2
-<<<<<<< HEAD
- - uid: 1101
-=======
- - uid: 1104
->>>>>>> master
+ - uid: 1723
components:
- type: Transform
- pos: -11.5,99.5
+ pos: 23.524172,8.5619135
parent: 2
-<<<<<<< HEAD
- - uid: 1102
+ - type: Physics
+ canCollide: False
+ - uid: 1724
components:
- type: Transform
- pos: 93.5,2.5
+ pos: -45.503593,-17.382376
parent: 2
- - uid: 1103
-=======
- - uid: 1105
+ - type: Physics
+ canCollide: False
+ - uid: 1725
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 96.5,-2.5
+ pos: -24.500605,11.746101
parent: 2
- - uid: 1106
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1726
components:
- type: Transform
- pos: 4.5,-86.5
+ pos: -60.33293,20.609503
parent: 2
-<<<<<<< HEAD
- - uid: 1104
-=======
- - uid: 1107
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1727
components:
- type: Transform
- pos: 2.5,-86.5
+ pos: 16.412798,54.622955
parent: 2
-<<<<<<< HEAD
- - uid: 1105
-=======
- - uid: 1108
->>>>>>> master
+ - type: Physics
+ canCollide: False
+ - uid: 1728
components:
- type: Transform
- pos: -3.5,-86.5
+ pos: -54.576714,9.590466
parent: 2
-<<<<<<< HEAD
- - uid: 1106
-=======
- - uid: 1109
->>>>>>> master
+ - uid: 1729
components:
- type: Transform
- pos: -5.5,-86.5
+ pos: -21.497026,15.557969
parent: 2
-<<<<<<< HEAD
- - uid: 1107
-=======
- - uid: 1110
->>>>>>> master
+ - uid: 1730
components:
- type: Transform
- pos: -19.5,-51.5
+ pos: 77.48052,-43.48631
parent: 2
-<<<<<<< HEAD
- - uid: 1108
+- proto: BoxMagazinePistolHighCapacity
+ entities:
+ - uid: 1731
components:
- type: Transform
- pos: -109.5,23.5
+ pos: 65.5,7.5
parent: 2
- - uid: 1109
+- proto: BoxMagazinePistolPractice
+ entities:
+ - uid: 1732
components:
- type: Transform
- pos: -79.5,0.5
+ pos: 56.382652,19.638697
parent: 2
- - uid: 1110
+- proto: BoxMagazineRifle
+ entities:
+ - uid: 1733
components:
- type: Transform
- pos: 11.5,-81.5
+ pos: 65.5,9.5
parent: 2
- - uid: 38719
- components:
- - type: Transform
- pos: -1.5,0.5
- parent: 38714
- - uid: 38720
+ - uid: 1734
components:
- type: Transform
- pos: 4.5,0.5
- parent: 38714
-- proto: AtmosFixBlockerMarker
+ pos: 65.5,9.5
+ parent: 2
+- proto: BoxMesonScanners
entities:
- - uid: 1111
+ - uid: 1735
components:
- type: Transform
- pos: -70.5,34.5
+ pos: -55.5,-1.5
parent: 2
- - uid: 1112
+ - uid: 1736
components:
- type: Transform
- pos: -71.5,35.5
+ pos: -59.5,54.5
parent: 2
- - uid: 1113
+- proto: BoxMousetrap
+ entities:
+ - uid: 1737
components:
- type: Transform
- pos: -72.5,36.5
+ pos: -0.78879595,50.836056
parent: 2
- - uid: 1114
+- proto: BoxMouthSwab
+ entities:
+ - uid: 1738
components:
- type: Transform
- pos: -72.5,34.5
+ pos: -28.29159,45.5603
parent: 2
- - uid: 1115
+ - uid: 1739
components:
- type: Transform
- pos: -70.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: 38.696056,-70.31742
parent: 2
- - uid: 1116
+- proto: BoxMRE
+ entities:
+ - uid: 1740
components:
- type: Transform
- pos: -71.5,36.5
+ pos: 44.472935,13.617706
parent: 2
- - uid: 1117
+ - uid: 1741
components:
- type: Transform
- pos: -71.5,34.5
+ pos: 44.48856,9.602081
parent: 2
- - uid: 1118
+ - uid: 1742
components:
- type: Transform
- pos: -71.5,41.5
+ pos: 41.503044,1.6465976
parent: 2
- - uid: 1119
+ - uid: 1743
components:
- type: Transform
- pos: -72.5,26.5
+ pos: 44.496708,1.6549377
parent: 2
- - uid: 1120
+ - uid: 1744
components:
- type: Transform
- pos: -71.5,27.5
+ pos: 41.555332,11.59931
parent: 2
- - uid: 1121
+- proto: BoxPDA
+ entities:
+ - uid: 1745
components:
- type: Transform
- pos: -72.5,41.5
+ pos: -8.625056,5.687517
parent: 2
- - uid: 1122
+- proto: BoxSechud
+ entities:
+ - uid: 1746
components:
- type: Transform
- pos: -70.5,41.5
+ pos: 48.51906,18.530525
parent: 2
- - uid: 1123
+- proto: BoxShotgunSlug
+ entities:
+ - uid: 1747
components:
- type: Transform
- pos: -71.5,28.5
+ pos: 65.5,8.5
parent: 2
- - uid: 1124
+- proto: BoxSterileMask
+ entities:
+ - uid: 1748
components:
- type: Transform
- pos: -72.5,42.5
+ pos: 36.289875,-71.40648
parent: 2
- - uid: 1125
+ - type: Physics
+ canCollide: False
+- proto: BoxSyringe
+ entities:
+ - uid: 884
components:
- type: Transform
- pos: -71.5,42.5
+ parent: 880
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1749
+ components:
+ - type: Transform
+ pos: 6.549246,-38.18099
parent: 2
- - uid: 1126
-=======
- - uid: 1111
+ - uid: 1750
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -109.5,23.5
+ pos: 69.94294,12.308502
parent: 2
- - uid: 1112
+ - uid: 1751
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -79.5,0.5
+ pos: 68.5,-3.5
parent: 2
- - uid: 1113
+ - uid: 1752
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-81.5
+ pos: 26.675022,-69.30446
parent: 2
- - uid: 1114
+ - type: Physics
+ canCollide: False
+ - uid: 1753
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -68.5,26.5
+ pos: 12.290853,-43.435093
parent: 2
- - uid: 1115
+- proto: BrbSign
+ entities:
+ - uid: 1754
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,25.5
+ pos: -13.126385,5.600397
parent: 2
- - uid: 38249
+ - uid: 1755
components:
- type: Transform
- pos: -1.5,0.5
- parent: 38244
- - uid: 38250
+ pos: -15.521692,-3.7452946
+ parent: 2
+- proto: BriefcaseBrown
+ entities:
+ - uid: 1667
components:
- type: Transform
- pos: 4.5,0.5
- parent: 38244
- - uid: 38384
+ pos: 15.414117,-48.366436
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1670
+ - 1671
+ - 1669
+ - 1668
+ - 1677
+ - 1673
+ - 1676
+ - 1680
+ - 1678
+ - 1679
+ - 1672
+ - 1681
+ - 1675
+ - 1674
+ - uid: 1756
components:
- type: Transform
- pos: 0.5,9.5
- parent: 38344
- - uid: 38385
+ pos: 33.50666,2.6525807
+ parent: 2
+ - uid: 1757
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-11.5
- parent: 38344
- - uid: 38386
+ pos: 38.408417,-12.442864
+ parent: 2
+ - type: Physics
+ canCollide: False
+ - uid: 1758
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-11.5
- parent: 38344
- - uid: 38387
+ pos: 53.511616,-54.341568
+ parent: 2
+ - type: Physics
+ canCollide: False
+ - uid: 1760
components:
- type: Transform
- pos: -1.5,9.5
- parent: 38344
-- proto: AtmosFixBlockerMarker
- entities:
- - uid: 1116
+ parent: 1759
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1763
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,46.5
+ pos: 40.473694,-55.352642
parent: 2
- - uid: 1117
+ - type: Physics
+ canCollide: False
+ - uid: 1764
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,49.5
+ pos: 63.55921,-19.215805
parent: 2
- - uid: 1118
+ - uid: 1765
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,45.5
+ pos: 63.481087,-19.60643
parent: 2
- - uid: 1119
+- proto: BriefcaseBrownFilled
+ entities:
+ - uid: 1766
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,44.5
+ pos: -15.5,7.5
parent: 2
- - uid: 1120
+ - type: Physics
+ canCollide: False
+ - uid: 1767
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,48.5
+ pos: 42.308758,23.63735
parent: 2
- - uid: 1121
+ - type: Physics
+ canCollide: False
+ - uid: 1768
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -71.5,42.5
+ pos: 26.493849,0.5424672
parent: 2
- - uid: 1122
+ - uid: 1769
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,44.5
+ pos: 30.454538,-2.394278
parent: 2
- - uid: 1123
+ - uid: 1770
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,41.5
+ pos: -3.4562843,13.666277
parent: 2
- - uid: 1124
+ - type: Physics
+ canCollide: False
+ - uid: 1771
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,40.5
+ pos: -22.49046,-10.098504
parent: 2
- - uid: 1125
+- proto: BrigmedicPDA
+ entities:
+ - uid: 1772
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,40.5
+ pos: -8.5,5.5
parent: 2
- - uid: 1126
+- proto: BrigTimer
+ entities:
+ - uid: 1773
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,42.5
+ pos: 45.5,-0.5
parent: 2
- - uid: 1127
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38272:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+ - uid: 1774
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -70.5,46.5
+ pos: 53.5,-1.5
parent: 2
- - uid: 1128
+ - uid: 1775
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,50.5
+ pos: 45.5,7.5
parent: 2
- - uid: 1129
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38270:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+ - uid: 1776
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,44.5
+ pos: 45.5,11.5
parent: 2
- - uid: 1130
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38267:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+- proto: BrokenBottle
+ entities:
+ - uid: 1777
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 17.512104,65.64481
parent: 2
- - uid: 1131
+ - uid: 1778
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -45.051556,-35.48419
parent: 2
- - uid: 1132
+- proto: BruteAutoInjector
+ entities:
+ - uid: 885
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,45.5
- parent: 2
- - uid: 1133
+ parent: 880
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: Brutepack
+ entities:
+ - uid: 1779
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 24.497957,-24.46766
parent: 2
- - uid: 1134
+ - uid: 1780
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,46.5
+ pos: 32.489788,-31.352707
parent: 2
- - uid: 1135
+ - uid: 1781
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,50.5
+ pos: -31.58165,-42.336353
parent: 2
- - uid: 1136
+ - uid: 1782
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,50.5
+ pos: 31.735588,-41.564713
parent: 2
- - uid: 1137
+ - uid: 1783
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -70.5,48.5
+ pos: 61.26216,-5.289681
parent: 2
- - uid: 1138
+- proto: Bucket
+ entities:
+ - uid: 1784
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,40.5
+ pos: 70.47746,19.483463
parent: 2
- - uid: 1139
+ - uid: 1785
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,48.5
+ pos: 3.6955166,-48.677258
parent: 2
- - uid: 1140
+ - uid: 1786
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,41.5
+ pos: -38.58966,34.48895
parent: 2
- - uid: 1141
->>>>>>> master
+ - uid: 1788
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,42.5
- parent: 2
-<<<<<<< HEAD
- - uid: 1127
+ parent: 1787
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1798
components:
- type: Transform
- pos: -71.5,30.5
+ pos: 21.446554,-22.521786
parent: 2
- - uid: 1128
+ - type: Physics
+ canCollide: False
+ - uid: 1799
components:
- type: Transform
- pos: -71.5,31.5
+ pos: -76.531624,-29.54104
parent: 2
- - uid: 1129
+ - type: Physics
+ canCollide: False
+ - uid: 1800
components:
- type: Transform
- pos: -72.5,31.5
+ pos: -28.959202,55.452602
parent: 2
- - uid: 1130
+ - uid: 1801
components:
- type: Transform
- pos: -72.5,32.5
+ pos: -27.896702,55.515106
parent: 2
- - uid: 1131
+ - uid: 1802
components:
- type: Transform
- pos: -70.5,27.5
+ pos: 88.307175,-1.1869407
parent: 2
- - uid: 1132
+- proto: BurnAutoInjector
+ entities:
+ - uid: 886
components:
- type: Transform
- pos: -70.5,26.5
- parent: 2
- - uid: 1133
+ parent: 880
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CableApcExtension
+ entities:
+ - uid: 1803
components:
- type: Transform
- pos: -72.5,40.5
+ pos: -36.5,47.5
parent: 2
- - uid: 1134
+ - uid: 1804
components:
- type: Transform
- pos: -71.5,32.5
+ pos: 8.5,73.5
parent: 2
- - uid: 1135
+ - uid: 1805
components:
- type: Transform
- pos: -70.5,30.5
+ pos: -22.5,29.5
parent: 2
- - uid: 1136
+ - uid: 1806
components:
- type: Transform
- pos: -70.5,28.5
+ pos: -22.5,35.5
parent: 2
- - uid: 1137
+ - uid: 1807
components:
- type: Transform
- pos: -71.5,40.5
+ pos: -16.5,35.5
parent: 2
- - uid: 1138
+ - uid: 1808
components:
- type: Transform
- pos: -72.5,30.5
+ pos: -17.5,41.5
parent: 2
- - uid: 1139
+ - uid: 1809
components:
- type: Transform
- pos: -70.5,32.5
+ pos: -2.5,68.5
parent: 2
- - uid: 1140
+ - uid: 1810
components:
- type: Transform
- pos: -72.5,28.5
+ pos: -3.5,68.5
parent: 2
- - uid: 1141
+ - uid: 1811
components:
- type: Transform
- pos: -70.5,31.5
+ pos: -5.5,53.5
parent: 2
- - uid: 1142
+ - uid: 1812
components:
- type: Transform
- pos: -70.5,40.5
+ pos: -30.5,68.5
parent: 2
- - uid: 1143
+ - uid: 1813
components:
- type: Transform
- pos: -70.5,27.5
+ pos: -5.5,52.5
parent: 2
- - uid: 1144
+ - uid: 1814
components:
- type: Transform
- pos: -72.5,27.5
+ pos: 24.5,19.5
parent: 2
- - uid: 1145
+ - uid: 1815
components:
- type: Transform
- pos: -71.5,26.5
+ pos: -11.5,78.5
parent: 2
-- proto: AtmosFixFreezerMarker
- entities:
- - uid: 1146
-=======
- - uid: 1142
+ - uid: 1816
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,41.5
+ pos: 55.5,5.5
parent: 2
- - uid: 1143
+ - uid: 1817
components:
- type: Transform
- pos: -76.5,21.5
+ pos: 39.5,22.5
parent: 2
- - uid: 1144
+ - uid: 1818
components:
- type: Transform
- pos: -76.5,22.5
+ pos: 35.5,22.5
parent: 2
- - uid: 1145
+ - uid: 1819
components:
- type: Transform
- pos: -75.5,22.5
+ pos: 72.5,18.5
parent: 2
- - uid: 1146
+ - uid: 1820
components:
- type: Transform
- pos: -76.5,20.5
+ pos: 76.5,-0.5
parent: 2
- - uid: 1147
+ - uid: 1821
components:
- type: Transform
- pos: -76.5,23.5
+ pos: 89.5,10.5
parent: 2
- - uid: 1148
+ - uid: 1822
components:
- type: Transform
- pos: -76.5,24.5
+ pos: 53.5,8.5
parent: 2
- - uid: 1149
+ - uid: 1823
components:
- type: Transform
- pos: -75.5,24.5
+ pos: 73.5,1.5
parent: 2
- - uid: 1150
+ - uid: 1824
components:
- type: Transform
- pos: -75.5,23.5
+ pos: 54.5,10.5
parent: 2
- - uid: 1151
+ - uid: 1825
components:
- type: Transform
- pos: -75.5,21.5
+ pos: -71.5,21.5
parent: 2
- - uid: 1152
+ - uid: 1826
components:
- type: Transform
- pos: -75.5,20.5
+ pos: -10.5,77.5
parent: 2
- - uid: 1153
+ - uid: 1827
components:
- type: Transform
- pos: -74.5,20.5
+ pos: -68.5,21.5
parent: 2
- - uid: 1154
+ - uid: 1828
components:
- type: Transform
- pos: -74.5,21.5
+ pos: 73.5,5.5
parent: 2
- - uid: 1155
+ - uid: 1829
components:
- type: Transform
- pos: -74.5,22.5
+ pos: -57.5,62.5
parent: 2
- - uid: 1156
+ - uid: 1830
components:
- type: Transform
- pos: -74.5,23.5
+ pos: -58.5,62.5
parent: 2
- - uid: 1157
+ - uid: 1831
components:
- type: Transform
- pos: -74.5,24.5
+ pos: 72.5,3.5
parent: 2
- - uid: 1158
+ - uid: 1832
components:
- type: Transform
- pos: -73.5,24.5
+ pos: 24.5,53.5
parent: 2
- - uid: 1159
+ - uid: 1833
components:
- type: Transform
- pos: -73.5,23.5
+ pos: 25.5,53.5
parent: 2
- - uid: 1160
+ - uid: 1834
components:
- type: Transform
- pos: -73.5,21.5
+ pos: 34.5,40.5
parent: 2
- - uid: 1161
+ - uid: 1835
components:
- type: Transform
- pos: -73.5,20.5
+ pos: 61.5,0.5
parent: 2
- - uid: 1162
+ - uid: 1836
components:
- type: Transform
- pos: -73.5,22.5
+ pos: -45.5,0.5
parent: 2
-- proto: AtmosFixFreezerMarker
- entities:
- - uid: 1163
->>>>>>> master
+ - uid: 1837
components:
- type: Transform
- pos: -30.5,25.5
+ pos: 47.5,2.5
parent: 2
-<<<<<<< HEAD
- - uid: 1147
-=======
- - uid: 1164
->>>>>>> master
+ - uid: 1838
components:
- type: Transform
- pos: -30.5,27.5
+ pos: 47.5,-2.5
parent: 2
-<<<<<<< HEAD
- - uid: 1148
-=======
- - uid: 1165
->>>>>>> master
+ - uid: 1839
components:
- type: Transform
- pos: -33.5,29.5
+ pos: 47.5,22.5
parent: 2
-<<<<<<< HEAD
- - uid: 1149
-=======
- - uid: 1166
->>>>>>> master
+ - uid: 1840
components:
- type: Transform
- pos: -33.5,28.5
+ pos: 66.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1150
-=======
- - uid: 1167
->>>>>>> master
+ - uid: 1841
components:
- type: Transform
- pos: -33.5,27.5
+ pos: -44.5,46.5
parent: 2
-<<<<<<< HEAD
- - uid: 1151
-=======
- - uid: 1168
->>>>>>> master
+ - uid: 1842
components:
- type: Transform
- pos: -32.5,26.5
+ pos: 41.5,21.5
parent: 2
-<<<<<<< HEAD
- - uid: 1152
-=======
- - uid: 1169
->>>>>>> master
+ - uid: 1843
components:
- type: Transform
- pos: -33.5,30.5
+ pos: 54.5,4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1153
-=======
- - uid: 1170
->>>>>>> master
+ - uid: 1844
components:
- type: Transform
- pos: -32.5,29.5
+ pos: 41.5,24.5
parent: 2
-<<<<<<< HEAD
- - uid: 1154
-=======
- - uid: 1171
->>>>>>> master
+ - uid: 1845
components:
- type: Transform
- pos: -32.5,28.5
+ pos: 69.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1155
-=======
- - uid: 1172
->>>>>>> master
+ - uid: 1846
components:
- type: Transform
- pos: -29.5,28.5
+ pos: 49.5,11.5
parent: 2
-<<<<<<< HEAD
- - uid: 1156
-=======
- - uid: 1173
->>>>>>> master
+ - uid: 1847
components:
- type: Transform
- pos: -28.5,28.5
+ pos: -39.5,28.5
parent: 2
-<<<<<<< HEAD
- - uid: 1157
-=======
- - uid: 1174
->>>>>>> master
+ - uid: 1848
components:
- type: Transform
- pos: -33.5,26.5
+ pos: 76.5,24.5
parent: 2
-<<<<<<< HEAD
- - uid: 1158
-=======
- - uid: 1175
->>>>>>> master
+ - uid: 1849
components:
- type: Transform
- pos: -32.5,30.5
+ pos: 40.5,20.5
parent: 2
-<<<<<<< HEAD
- - uid: 1159
-=======
- - uid: 1176
->>>>>>> master
+ - uid: 1850
components:
- type: Transform
- pos: -30.5,28.5
+ pos: 50.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1160
-=======
- - uid: 1177
->>>>>>> master
+ - uid: 1851
components:
- type: Transform
- pos: -32.5,25.5
+ pos: 73.5,7.5
parent: 2
-<<<<<<< HEAD
- - uid: 1161
-=======
- - uid: 1178
->>>>>>> master
+ - uid: 1852
components:
- type: Transform
- pos: -30.5,26.5
+ pos: 74.5,-0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1162
-=======
- - uid: 1179
->>>>>>> master
+ - uid: 1853
components:
- type: Transform
- pos: -32.5,27.5
+ pos: -0.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1163
-=======
- - uid: 1180
->>>>>>> master
+ - uid: 1854
components:
- type: Transform
- pos: -31.5,25.5
+ pos: 49.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1164
-=======
- - uid: 1181
->>>>>>> master
+ - uid: 1855
components:
- type: Transform
- pos: -33.5,25.5
+ pos: 45.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1165
-=======
- - uid: 1182
->>>>>>> master
+ - uid: 1856
components:
- type: Transform
- pos: -31.5,26.5
+ pos: -51.5,-44.5
parent: 2
-<<<<<<< HEAD
- - uid: 1166
-=======
- - uid: 1183
->>>>>>> master
+ - uid: 1857
components:
- type: Transform
- pos: -29.5,27.5
+ pos: -3.5,-44.5
parent: 2
-<<<<<<< HEAD
- - uid: 1167
-=======
- - uid: 1184
->>>>>>> master
+ - uid: 1858
components:
- type: Transform
- pos: -31.5,27.5
+ pos: 75.5,22.5
parent: 2
-<<<<<<< HEAD
- - uid: 1168
-=======
- - uid: 1185
->>>>>>> master
+ - uid: 1859
components:
- type: Transform
- pos: -31.5,28.5
+ pos: -67.5,47.5
parent: 2
-<<<<<<< HEAD
- - uid: 1169
-=======
- - uid: 1186
->>>>>>> master
+ - uid: 1860
components:
- type: Transform
- pos: -28.5,27.5
+ pos: -71.5,31.5
parent: 2
-<<<<<<< HEAD
- - uid: 1170
-=======
- - uid: 1187
->>>>>>> master
+ - uid: 1861
components:
- type: Transform
- pos: -29.5,27.5
+ pos: -71.5,45.5
parent: 2
-<<<<<<< HEAD
- - uid: 1171
-=======
- - uid: 1188
->>>>>>> master
+ - uid: 1862
components:
- type: Transform
- pos: -19.5,-52.5
+ pos: -68.5,42.5
parent: 2
-<<<<<<< HEAD
- - uid: 1172
-=======
- - uid: 1189
->>>>>>> master
+ - uid: 1863
components:
- type: Transform
- pos: -18.5,-53.5
+ pos: -68.5,-40.5
parent: 2
-<<<<<<< HEAD
- - uid: 1173
-=======
- - uid: 1190
->>>>>>> master
+ - uid: 1864
components:
- type: Transform
- pos: -20.5,-53.5
+ pos: -33.5,-22.5
parent: 2
-<<<<<<< HEAD
- - uid: 1174
-=======
- - uid: 1191
->>>>>>> master
+ - uid: 1865
components:
- type: Transform
- pos: -19.5,-53.5
+ pos: 61.5,-2.5
parent: 2
-<<<<<<< HEAD
- - uid: 1175
-=======
- - uid: 1192
->>>>>>> master
+ - uid: 1866
components:
- type: Transform
- pos: -18.5,-52.5
+ pos: -49.5,-44.5
parent: 2
-<<<<<<< HEAD
- - uid: 1176
-=======
- - uid: 1193
->>>>>>> master
+ - uid: 1867
components:
- type: Transform
- pos: -20.5,-52.5
+ pos: 6.5,-54.5
parent: 2
-<<<<<<< HEAD
-- proto: AtmosFixNitrogenMarker
- entities:
- - uid: 1177
+ - uid: 1868
components:
- type: Transform
- pos: -72.5,45.5
+ pos: 68.5,15.5
parent: 2
- - uid: 1178
+ - uid: 1869
components:
- type: Transform
- pos: -72.5,44.5
+ pos: 29.5,-7.5
parent: 2
- - uid: 1179
+ - uid: 1870
components:
- type: Transform
- pos: -71.5,45.5
+ pos: -28.5,-39.5
parent: 2
- - uid: 1180
+ - uid: 1871
components:
- type: Transform
- pos: -71.5,46.5
+ pos: -11.5,76.5
parent: 2
- - uid: 1181
+ - uid: 1872
components:
- type: Transform
- pos: -70.5,46.5
+ pos: -11.5,83.5
parent: 2
- - uid: 1182
+ - uid: 1873
components:
- type: Transform
- pos: -72.5,46.5
+ pos: -69.5,57.5
parent: 2
- - uid: 1183
+ - uid: 1874
components:
- type: Transform
- pos: -70.5,45.5
+ pos: -68.5,23.5
parent: 2
- - uid: 1184
+ - uid: 1875
components:
- type: Transform
- pos: -70.5,44.5
+ pos: 23.5,20.5
parent: 2
- - uid: 1185
+ - uid: 1876
components:
- type: Transform
- pos: -71.5,44.5
+ pos: 73.5,3.5
parent: 2
-- proto: AtmosFixOxygenMarker
- entities:
- - uid: 1186
+ - uid: 1877
components:
- type: Transform
- pos: -70.5,50.5
+ pos: 73.5,11.5
parent: 2
- - uid: 1187
+ - uid: 1878
components:
- type: Transform
- pos: -70.5,49.5
+ pos: 69.5,0.5
parent: 2
- - uid: 1188
+ - uid: 1879
components:
- type: Transform
- pos: -71.5,48.5
+ pos: 34.5,20.5
parent: 2
- - uid: 1189
+ - uid: 1880
components:
- type: Transform
- pos: -71.5,50.5
+ pos: 62.5,-6.5
parent: 2
- - uid: 1190
+ - uid: 1881
components:
- type: Transform
- pos: -70.5,48.5
+ pos: -68.5,-41.5
parent: 2
- - uid: 1191
+ - uid: 1882
components:
- type: Transform
- pos: -72.5,50.5
+ pos: -68.5,38.5
parent: 2
- - uid: 1192
+ - uid: 1883
components:
- type: Transform
- pos: -72.5,48.5
+ pos: -48.5,-44.5
parent: 2
- - uid: 1193
+ - uid: 1884
components:
- type: Transform
- pos: -72.5,49.5
+ pos: 51.5,0.5
parent: 2
- - uid: 1194
+ - uid: 1885
components:
- type: Transform
- pos: -71.5,49.5
+ pos: 91.5,9.5
parent: 2
-- proto: AtmosFixPlasmaMarker
- entities:
- - uid: 1195
+ - uid: 1886
components:
- type: Transform
- pos: -70.5,35.5
+ pos: 35.5,18.5
parent: 2
- - uid: 1196
+ - uid: 1887
components:
- type: Transform
- pos: -72.5,35.5
+ pos: -11.5,92.5
parent: 2
-- proto: Autolathe
- entities:
- - uid: 1197
+ - uid: 1888
components:
- type: Transform
- pos: -63.5,-33.5
+ pos: -33.5,-23.5
parent: 2
- - uid: 1198
-=======
- - uid: 1194
+ - uid: 1889
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 97.5,-3.5
+ pos: 6.5,-53.5
parent: 2
- - uid: 1195
+ - uid: 1890
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 97.5,-2.5
+ pos: 48.5,16.5
parent: 2
- - uid: 1196
+ - uid: 1891
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 97.5,-1.5
+ pos: 87.5,10.5
parent: 2
-- proto: AtmosFixNitrogenMarker
- entities:
- - uid: 1197
+ - uid: 1892
components:
- type: Transform
- pos: -70.5,38.5
+ pos: 63.5,25.5
parent: 2
- - uid: 1198
+ - uid: 1893
components:
- type: Transform
- pos: -71.5,37.5
+ pos: 50.5,5.5
parent: 2
- - uid: 1199
+ - uid: 1894
components:
- type: Transform
- pos: -71.5,38.5
+ pos: 62.5,25.5
parent: 2
- - uid: 1200
+ - uid: 1895
components:
- type: Transform
- pos: -72.5,38.5
+ pos: 34.5,19.5
parent: 2
- - uid: 1201
+ - uid: 1896
components:
- type: Transform
- pos: -70.5,37.5
+ pos: -26.5,-52.5
parent: 2
- - uid: 1202
+ - uid: 1897
components:
- type: Transform
- pos: -71.5,36.5
+ pos: -58.5,-37.5
parent: 2
- - uid: 1203
+ - uid: 1898
components:
- type: Transform
- pos: -72.5,36.5
+ pos: 52.5,11.5
parent: 2
- - uid: 1204
+ - uid: 1899
components:
- type: Transform
- pos: -70.5,36.5
+ pos: -58.5,63.5
parent: 2
- - uid: 1205
+ - uid: 1900
components:
- type: Transform
- pos: -72.5,37.5
+ pos: 55.5,4.5
parent: 2
-- proto: AtmosFixOxygenMarker
- entities:
- - uid: 1206
+ - uid: 1901
components:
- type: Transform
- pos: -71.5,34.5
+ pos: 45.5,-16.5
parent: 2
- - uid: 1207
+ - uid: 1902
components:
- type: Transform
- pos: -71.5,33.5
+ pos: 50.5,16.5
parent: 2
- - uid: 1208
+ - uid: 1903
components:
- type: Transform
- pos: -70.5,34.5
+ pos: 52.5,13.5
parent: 2
- - uid: 1209
+ - uid: 1904
components:
- type: Transform
- pos: -72.5,34.5
+ pos: 29.5,-6.5
parent: 2
- - uid: 1210
+ - uid: 1905
components:
- type: Transform
- pos: -70.5,33.5
+ pos: 43.5,23.5
parent: 2
- - uid: 1211
+ - uid: 1906
components:
- type: Transform
- pos: -72.5,33.5
+ pos: -38.5,-71.5
parent: 2
- - uid: 1212
+ - uid: 1907
components:
- type: Transform
- pos: -72.5,32.5
+ pos: -38.5,-72.5
parent: 2
- - uid: 1213
+ - uid: 1908
components:
- type: Transform
- pos: -71.5,32.5
+ pos: 73.5,15.5
parent: 2
- - uid: 1214
+ - uid: 1909
components:
- type: Transform
- pos: -70.5,32.5
+ pos: -68.5,48.5
parent: 2
-- proto: AtmosFixPlasmaMarker
- entities:
- - uid: 1215
+ - uid: 1910
components:
- type: Transform
- pos: -72.5,30.5
+ pos: -0.5,-2.5
parent: 2
- - uid: 1216
+ - uid: 1911
components:
- type: Transform
- pos: -72.5,29.5
+ pos: 71.5,16.5
parent: 2
- - uid: 1217
+ - uid: 1912
components:
- type: Transform
- pos: -72.5,28.5
+ pos: -54.5,-16.5
parent: 2
- - uid: 1218
+ - uid: 1913
components:
- type: Transform
- pos: -71.5,28.5
+ pos: -68.5,35.5
parent: 2
- - uid: 1219
+ - uid: 1914
components:
- type: Transform
- pos: -71.5,29.5
+ pos: -58.5,64.5
parent: 2
- - uid: 1220
+ - uid: 1915
components:
- type: Transform
- pos: -71.5,30.5
+ pos: 49.5,-15.5
parent: 2
- - uid: 1221
+ - uid: 1916
components:
- type: Transform
- pos: -70.5,30.5
+ pos: -25.5,-48.5
parent: 2
- - uid: 1222
+ - uid: 1917
components:
- type: Transform
- pos: -70.5,29.5
+ pos: 78.5,24.5
parent: 2
- - uid: 1223
+ - uid: 1918
components:
- type: Transform
- pos: -70.5,28.5
+ pos: -60.5,36.5
parent: 2
-- proto: Autolathe
- entities:
- - uid: 1224
->>>>>>> master
+ - uid: 1919
components:
- type: Transform
- pos: -58.5,20.5
+ pos: -0.5,-1.5
parent: 2
-<<<<<<< HEAD
- - uid: 1199
-=======
- - uid: 1225
->>>>>>> master
+ - uid: 1920
components:
- type: Transform
- pos: -5.5,-39.5
+ pos: -0.5,4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1200
-=======
- - uid: 1226
->>>>>>> master
+ - uid: 1921
components:
- type: Transform
- pos: -23.5,15.5
+ pos: -0.5,10.5
parent: 2
-<<<<<<< HEAD
- - uid: 1201
-=======
- - uid: 1227
->>>>>>> master
+ - uid: 1922
components:
- type: Transform
- pos: 7.5,33.5
+ pos: -0.5,5.5
parent: 2
-- proto: AutolatheMachineCircuitboard
- entities:
-<<<<<<< HEAD
- - uid: 1202
-=======
- - uid: 1228
->>>>>>> master
+ - uid: 1923
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.525642,14.37673
+ pos: -0.5,7.5
parent: 2
-<<<<<<< HEAD
-- proto: BalloonSyn
- entities:
- - uid: 1204
+ - uid: 1924
components:
- type: Transform
- parent: 1203
-=======
-- proto: BalloonCorgi
- entities:
- - uid: 1229
+ pos: -0.5,6.5
+ parent: 2
+ - uid: 1925
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -69.68523,-45.374607
+ pos: 61.5,30.5
parent: 2
- - uid: 1230
+ - uid: 1926
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -61.256584,-39.363403
+ pos: -68.5,27.5
parent: 2
-- proto: BalloonSyn
- entities:
- - uid: 1232
+ - uid: 1927
components:
- type: Transform
- parent: 1231
->>>>>>> master
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BananaSeeds
- entities:
-<<<<<<< HEAD
- - uid: 1207
-=======
- - uid: 1235
->>>>>>> master
+ pos: -71.5,35.5
+ parent: 2
+ - uid: 1928
components:
- type: Transform
- pos: -38.5,35.5
+ pos: 73.5,9.5
parent: 2
-- proto: BannerCargo
- entities:
-<<<<<<< HEAD
- - uid: 1208
-=======
- - uid: 1236
->>>>>>> master
+ - uid: 1929
components:
- type: Transform
- pos: 6.5,26.5
+ pos: 65.5,30.5
parent: 2
-- proto: BannerEngineering
- entities:
-<<<<<<< HEAD
- - uid: 1209
-=======
- - uid: 1237
->>>>>>> master
+ - uid: 1930
components:
- type: Transform
- pos: -65.5,-22.5
+ pos: -56.5,62.5
parent: 2
-<<<<<<< HEAD
- - uid: 1210
-=======
- - uid: 1238
->>>>>>> master
+ - uid: 1931
components:
- type: Transform
- pos: -55.5,5.5
+ pos: -11.5,74.5
parent: 2
-<<<<<<< HEAD
- - uid: 1211
+ - uid: 1932
components:
- type: Transform
- pos: -47.5,15.5
+ pos: 67.5,0.5
parent: 2
-- proto: BannerGreen
- entities:
- - uid: 1212
-=======
- - uid: 1239
+ - uid: 1933
components:
- type: Transform
- pos: -44.5,15.5
+ pos: 61.5,-3.5
parent: 2
-- proto: BannerGreen
- entities:
- - uid: 1240
->>>>>>> master
+ - uid: 1934
components:
- type: Transform
- pos: -38.5,45.5
+ pos: 29.5,31.5
parent: 2
-<<<<<<< HEAD
-- proto: BannerMedical
- entities:
- - uid: 1213
-=======
- - uid: 1241
+ - uid: 1935
components:
- type: Transform
- pos: -111.50001,33.5
+ pos: 69.5,14.5
parent: 2
- - uid: 1242
+ - uid: 1936
components:
- type: Transform
- pos: -114.50001,33.5
+ pos: 45.5,16.5
parent: 2
-- proto: BannerMedical
- entities:
- - uid: 1243
->>>>>>> master
+ - uid: 1937
components:
- type: Transform
- pos: 2.5,-23.5
+ pos: 55.5,12.5
parent: 2
-<<<<<<< HEAD
- - uid: 1214
-=======
- - uid: 1244
->>>>>>> master
+ - uid: 1938
components:
- type: Transform
- pos: 14.5,-26.5
+ pos: 61.5,25.5
parent: 2
-<<<<<<< HEAD
-- proto: BannerNanotrasen
- entities:
- - uid: 1215
-=======
- - uid: 1245
+ - uid: 1939
components:
- type: Transform
- pos: 40.499996,-39.5
+ pos: 72.5,5.5
parent: 2
-- proto: BannerNanotrasen
- entities:
- - uid: 1246
->>>>>>> master
+ - uid: 1940
components:
- type: Transform
- pos: -15.5,16.5
+ pos: 46.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1216
-=======
- - uid: 1247
->>>>>>> master
+ - uid: 1941
components:
- type: Transform
- pos: -15.5,13.5
+ pos: 52.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1217
-=======
- - uid: 1248
->>>>>>> master
+ - uid: 1942
components:
- type: Transform
- pos: 4.5,-63.5
+ pos: -11.5,75.5
parent: 2
-<<<<<<< HEAD
- - uid: 1218
-=======
- - uid: 1249
->>>>>>> master
+ - uid: 1943
components:
- type: Transform
- pos: -41.5,59.5
+ pos: 51.5,16.5
parent: 2
-<<<<<<< HEAD
- - uid: 1219
-=======
- - uid: 1250
->>>>>>> master
+ - uid: 1944
components:
- type: Transform
- pos: 14.5,-23.5
+ pos: 13.5,78.5
parent: 2
-<<<<<<< HEAD
- - uid: 1220
-=======
- - uid: 1251
->>>>>>> master
+ - uid: 1945
components:
- type: Transform
- pos: -7.5,16.5
+ pos: 14.5,78.5
parent: 2
-<<<<<<< HEAD
- - uid: 1221
-=======
- - uid: 1252
->>>>>>> master
+ - uid: 1946
components:
- type: Transform
- pos: 14.5,16.5
+ pos: 15.5,78.5
parent: 2
-<<<<<<< HEAD
- - uid: 1222
-=======
- - uid: 1253
->>>>>>> master
+ - uid: 1947
components:
- type: Transform
- pos: 14.5,13.5
+ pos: 78.5,22.5
parent: 2
-<<<<<<< HEAD
- - uid: 1223
-=======
- - uid: 1254
->>>>>>> master
+ - uid: 1948
components:
- type: Transform
- pos: 6.5,16.5
+ pos: 16.5,78.5
parent: 2
-<<<<<<< HEAD
- - uid: 1224
-=======
- - uid: 1255
->>>>>>> master
+ - uid: 1949
components:
- type: Transform
- pos: -3.5,-23.5
+ pos: 69.5,-0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1225
-=======
- - uid: 1256
->>>>>>> master
+ - uid: 1950
components:
- type: Transform
- pos: -15.5,-26.5
+ pos: 64.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1226
-=======
- - uid: 1257
->>>>>>> master
+ - uid: 1951
components:
- type: Transform
- pos: 2.5,-64.5
+ pos: -71.5,41.5
parent: 2
-<<<<<<< HEAD
- - uid: 1227
-=======
- - uid: 1258
->>>>>>> master
+ - uid: 1952
components:
- type: Transform
- pos: -1.5,9.5
+ pos: 56.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1228
-=======
- - uid: 1259
->>>>>>> master
+ - uid: 1953
components:
- type: Transform
- pos: 4.5,-77.5
+ pos: 24.5,16.5
parent: 2
-<<<<<<< HEAD
- - uid: 1229
-=======
- - uid: 1260
->>>>>>> master
+ - uid: 1954
components:
- type: Transform
- pos: 2.5,-76.5
+ pos: 44.5,22.5
parent: 2
-<<<<<<< HEAD
- - uid: 1230
-=======
- - uid: 1261
->>>>>>> master
+ - uid: 1955
components:
- type: Transform
- pos: 24.5,-45.5
+ pos: 57.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1231
-=======
- - uid: 1262
->>>>>>> master
+ - uid: 1956
components:
- type: Transform
- pos: 0.5,9.5
+ pos: -1.5,-6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1232
-=======
- - uid: 1263
->>>>>>> master
+ - uid: 1957
components:
- type: Transform
- pos: 2.5,-73.5
+ pos: 64.5,0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1233
-=======
- - uid: 1264
->>>>>>> master
+ - uid: 1958
components:
- type: Transform
- pos: 2.5,-67.5
+ pos: 47.5,4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1234
-=======
- - uid: 1265
->>>>>>> master
+ - uid: 1959
components:
- type: Transform
- pos: 2.5,-26.5
+ pos: -50.5,-44.5
parent: 2
-<<<<<<< HEAD
- - uid: 1235
-=======
- - uid: 1266
->>>>>>> master
+ - uid: 1960
components:
- type: Transform
- pos: 10.5,-16.5
+ pos: 65.5,-2.5
parent: 2
-<<<<<<< HEAD
- - uid: 1236
-=======
- - uid: 1267
->>>>>>> master
+ - uid: 1961
components:
- type: Transform
- pos: -1.5,-5.5
+ pos: 73.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1237
-=======
- - uid: 1268
->>>>>>> master
+ - uid: 1962
components:
- type: Transform
- pos: 0.5,-5.5
+ pos: -0.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 1238
-=======
- - uid: 1269
->>>>>>> master
+ - uid: 1963
components:
- type: Transform
- pos: 3.5,26.5
+ pos: 61.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 1239
-=======
- - uid: 1270
->>>>>>> master
+ - uid: 1964
components:
- type: Transform
- pos: 9.5,26.5
+ pos: 38.5,21.5
parent: 2
-<<<<<<< HEAD
- - uid: 1240
+ - uid: 1965
components:
- type: Transform
- pos: -47.5,11.5
+ pos: 49.5,0.5
parent: 2
- - uid: 1241
-=======
- - uid: 1271
->>>>>>> master
+ - uid: 1966
components:
- type: Transform
- pos: 4.5,-71.5
+ pos: 43.5,17.5
parent: 2
-<<<<<<< HEAD
- - uid: 1242
-=======
- - uid: 1272
->>>>>>> master
+ - uid: 1967
components:
- type: Transform
- pos: 49.5,24.5
+ pos: 48.5,22.5
parent: 2
-<<<<<<< HEAD
- - uid: 1243
-=======
- - uid: 1273
->>>>>>> master
+ - uid: 1968
components:
- type: Transform
- pos: 59.5,24.5
+ pos: -65.5,-23.5
parent: 2
-<<<<<<< HEAD
-- proto: BannerRed
- entities:
- - uid: 1244
+ - uid: 1969
components:
- type: Transform
- pos: -57.5,-40.5
+ pos: -38.5,28.5
parent: 2
-- proto: BannerRevolution
- entities:
- - uid: 1245
-=======
- - uid: 1274
+ - uid: 1970
components:
- type: Transform
- pos: -44.5,11.5
+ pos: -65.5,-22.5
parent: 2
- - uid: 1275
+ - uid: 1971
components:
- type: Transform
- pos: 59.5,26.5
+ pos: 89.5,2.5
parent: 2
-- proto: BannerRevolution
- entities:
- - uid: 1276
->>>>>>> master
+ - uid: 1972
components:
- type: Transform
- pos: -67.5,-28.5
+ pos: 71.5,15.5
parent: 2
-- proto: BannerScience
- entities:
-<<<<<<< HEAD
- - uid: 1246
-=======
- - uid: 1277
->>>>>>> master
+ - uid: 1973
components:
- type: Transform
- pos: -15.5,-24.5
+ pos: 37.5,21.5
parent: 2
-<<<<<<< HEAD
- - uid: 1247
-=======
- - uid: 1278
->>>>>>> master
+ - uid: 1974
components:
- type: Transform
- pos: -3.5,-26.5
+ pos: 74.5,3.5
parent: 2
-- proto: BannerSecurity
- entities:
-<<<<<<< HEAD
- - uid: 1248
-=======
- - uid: 1279
->>>>>>> master
+ - uid: 1975
components:
- type: Transform
- pos: 8.5,-61.5
+ pos: 74.5,24.5
parent: 2
-<<<<<<< HEAD
- - uid: 1249
-=======
- - uid: 1280
->>>>>>> master
+ - uid: 1976
components:
- type: Transform
- pos: 14.5,-31.5
+ pos: 71.5,0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1250
-=======
- - uid: 1281
->>>>>>> master
+ - uid: 1977
components:
- type: Transform
- pos: 61.5,3.5
+ pos: 32.5,50.5
parent: 2
-<<<<<<< HEAD
- - uid: 1251
-=======
- - uid: 1282
->>>>>>> master
+ - uid: 1978
components:
- type: Transform
- pos: -19.5,-23.5
+ pos: 72.5,4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1252
+ - uid: 1979
components:
- type: Transform
- pos: 59.5,26.5
+ pos: 43.5,21.5
parent: 2
- - uid: 1253
+ - uid: 1980
components:
- type: Transform
- pos: 49.5,26.5
+ pos: 53.5,9.5
parent: 2
-- proto: BannerSyndicate
- entities:
- - uid: 1254
-=======
- - uid: 1283
+ - uid: 1981
components:
- type: Transform
- pos: 49.5,32.5
+ pos: 54.5,8.5
parent: 2
- - uid: 1284
+ - uid: 1982
components:
- type: Transform
- pos: 59.5,32.5
+ pos: 46.5,5.5
parent: 2
-- proto: BannerSyndicate
- entities:
- - uid: 1285
->>>>>>> master
+ - uid: 1983
components:
- type: Transform
- pos: 10.5,-82.5
+ pos: 74.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1255
+ - uid: 1984
components:
- type: Transform
- pos: -73.5,-33.5
+ pos: 43.5,22.5
parent: 2
-- proto: BannerYellow
- entities:
- - uid: 1256
-=======
- - uid: 1286
+ - uid: 1985
components:
- type: Transform
- pos: -74.5,-33.5
+ pos: 46.5,16.5
parent: 2
- - uid: 1287
+ - uid: 1986
components:
- type: Transform
- pos: 43.499996,-2.5
+ pos: 47.5,19.5
parent: 2
-- proto: BannerYellow
- entities:
- - uid: 1288
->>>>>>> master
+ - uid: 1987
components:
- type: Transform
- pos: 16.5,63.5
+ pos: 54.5,11.5
parent: 2
-- proto: Barricade
- entities:
-<<<<<<< HEAD
- - uid: 1257
-=======
- - uid: 1289
->>>>>>> master
+ - uid: 1988
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-64.5
+ pos: 41.5,18.5
parent: 2
-<<<<<<< HEAD
- - uid: 1258
+ - uid: 1989
components:
- type: Transform
- pos: 53.5,-35.5
+ pos: 49.5,7.5
parent: 2
- - uid: 1259
+ - uid: 1990
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-22.5
+ pos: 52.5,19.5
parent: 2
- - uid: 1260
-=======
- - uid: 1290
->>>>>>> master
+ - uid: 1991
components:
- type: Transform
- pos: -41.5,-36.5
+ pos: 50.5,12.5
parent: 2
-<<<<<<< HEAD
- - uid: 1261
+ - uid: 1992
components:
- type: Transform
- pos: -46.5,-22.5
+ pos: 44.5,19.5
parent: 2
- - uid: 1262
+ - uid: 1993
components:
- type: Transform
- pos: -45.5,-24.5
+ pos: -51.5,-46.5
parent: 2
- - uid: 1263
-=======
- - uid: 1291
->>>>>>> master
+ - uid: 1994
components:
- type: Transform
- pos: -29.5,-32.5
+ pos: 75.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1264
-=======
- - uid: 1292
->>>>>>> master
+ - uid: 1995
components:
- type: Transform
- pos: -28.5,-32.5
+ pos: 57.5,-3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1265
-=======
- - uid: 1293
->>>>>>> master
+ - uid: 1996
components:
- type: Transform
- pos: -27.5,-32.5
+ pos: -59.5,-28.5
parent: 2
-<<<<<<< HEAD
- - uid: 1266
-=======
- - uid: 1294
->>>>>>> master
+ - uid: 1997
components:
- type: Transform
- pos: -45.5,-23.5
+ pos: -68.5,43.5
parent: 2
-<<<<<<< HEAD
- - uid: 1267
+ - uid: 1998
components:
- type: Transform
- pos: -47.5,-22.5
+ pos: 25.5,16.5
parent: 2
- - uid: 1268
-=======
- - uid: 1295
->>>>>>> master
+ - uid: 1999
components:
- type: Transform
- pos: -47.5,-27.5
+ pos: -23.5,-36.5
parent: 2
-<<<<<<< HEAD
- - uid: 1269
-=======
- - uid: 1296
->>>>>>> master
+ - uid: 2000
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-51.5
+ pos: -68.5,31.5
parent: 2
-<<<<<<< HEAD
- - uid: 1270
-=======
- - uid: 1297
->>>>>>> master
+ - uid: 2001
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-54.5
+ pos: 53.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1271
-=======
- - uid: 1298
->>>>>>> master
+ - uid: 2002
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-52.5
+ pos: 53.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1272
-=======
- - uid: 1299
->>>>>>> master
+ - uid: 2003
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-28.5
+ pos: 58.5,12.5
parent: 2
-<<<<<<< HEAD
- - uid: 1273
-=======
- - uid: 1300
->>>>>>> master
+ - uid: 2004
components:
- type: Transform
- pos: -37.5,-0.5
+ pos: 41.5,19.5
parent: 2
-<<<<<<< HEAD
- - uid: 1274
-=======
- - uid: 1301
->>>>>>> master
+ - uid: 2005
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-28.5
+ pos: 60.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 1275
-=======
- - uid: 1302
->>>>>>> master
+ - uid: 2006
components:
- type: Transform
- pos: -41.5,-24.5
+ pos: -56.5,-8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1276
-=======
- - uid: 1303
->>>>>>> master
+ - uid: 2007
components:
- type: Transform
- pos: -32.5,-24.5
+ pos: -41.5,-32.5
parent: 2
-<<<<<<< HEAD
- - uid: 1277
+ - uid: 2008
components:
- type: Transform
- pos: -46.5,-24.5
+ pos: -46.5,-45.5
parent: 2
- - uid: 1278
-=======
- - uid: 1304
->>>>>>> master
+ - uid: 2009
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-26.5
+ pos: -62.5,-34.5
parent: 2
-<<<<<<< HEAD
- - uid: 1279
-=======
- - uid: 1305
->>>>>>> master
+ - uid: 2010
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-27.5
+ pos: 33.5,50.5
parent: 2
-<<<<<<< HEAD
- - uid: 1280
-=======
- - uid: 1306
->>>>>>> master
+ - uid: 2011
components:
- type: Transform
- pos: -39.5,-36.5
+ pos: -12.5,30.5
parent: 2
-<<<<<<< HEAD
- - uid: 1281
-=======
- - uid: 1307
->>>>>>> master
+ - uid: 2012
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-26.5
+ pos: -28.5,31.5
parent: 2
-<<<<<<< HEAD
- - uid: 1282
-=======
- - uid: 1308
->>>>>>> master
+ - uid: 2013
components:
- type: Transform
- pos: -28.5,-31.5
+ pos: 27.5,39.5
parent: 2
-<<<<<<< HEAD
- - uid: 1283
-=======
- - uid: 1309
->>>>>>> master
+ - uid: 2014
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-27.5
+ pos: -70.5,27.5
parent: 2
-<<<<<<< HEAD
- - uid: 1284
-=======
- - uid: 1310
->>>>>>> master
+ - uid: 2015
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-63.5
+ pos: 58.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1285
-=======
- - uid: 1311
->>>>>>> master
+ - uid: 2016
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-62.5
+ pos: -12.5,71.5
parent: 2
-<<<<<<< HEAD
- - uid: 1286
-=======
- - uid: 1312
->>>>>>> master
+ - uid: 2017
components:
- type: Transform
- pos: 29.5,-66.5
+ pos: -11.5,79.5
parent: 2
-<<<<<<< HEAD
- - uid: 1287
-=======
- - uid: 1313
->>>>>>> master
+ - uid: 2018
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-69.5
+ pos: -69.5,49.5
parent: 2
-<<<<<<< HEAD
- - uid: 1288
-=======
- - uid: 1314
->>>>>>> master
+ - uid: 2019
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-26.5
+ pos: -68.5,29.5
parent: 2
-<<<<<<< HEAD
- - uid: 1289
-=======
- - uid: 1315
->>>>>>> master
+ - uid: 2020
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-27.5
+ pos: -39.5,-74.5
parent: 2
-<<<<<<< HEAD
- - uid: 1290
-=======
- - uid: 1316
->>>>>>> master
+ - uid: 2021
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-68.5
+ pos: -62.5,-32.5
parent: 2
-<<<<<<< HEAD
- - uid: 1291
+ - uid: 2022
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-67.5
+ pos: 27.5,50.5
parent: 2
- - uid: 1292
-=======
- - uid: 1317
->>>>>>> master
+ - uid: 2023
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-67.5
+ pos: -69.5,41.5
parent: 2
-<<<<<<< HEAD
- - uid: 1293
-=======
- - uid: 1318
->>>>>>> master
+ - uid: 2024
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-62.5
+ pos: -68.5,26.5
parent: 2
-<<<<<<< HEAD
- - uid: 1294
-=======
- - uid: 1319
->>>>>>> master
+ - uid: 2025
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-69.5
+ pos: 53.5,0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1295
-=======
- - uid: 1320
->>>>>>> master
+ - uid: 2026
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-28.5
+ pos: -66.5,-33.5
parent: 2
-<<<<<<< HEAD
- - uid: 1296
+ - uid: 2027
components:
- type: Transform
- pos: 29.5,-60.5
+ pos: 26.5,50.5
parent: 2
-- proto: BarricadeBlock
- entities:
- - uid: 1297
+ - uid: 2028
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,58.5
+ pos: 30.5,31.5
parent: 2
- - uid: 1298
+ - uid: 2029
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-71.5
+ pos: -68.5,-39.5
parent: 2
- - uid: 1299
+ - uid: 2030
components:
- type: Transform
- pos: 29.5,-60.5
+ pos: 73.5,13.5
parent: 2
- - uid: 1300
+ - uid: 2031
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,68.5
+ pos: 73.5,18.5
parent: 2
- - uid: 1301
-=======
- - uid: 1321
+ - uid: 2032
components:
- type: Transform
- pos: 29.5,-60.5
+ pos: -70.5,-35.5
parent: 2
- - uid: 1322
+ - uid: 2033
components:
- type: Transform
- pos: -32.5,-71.5
+ pos: 24.5,17.5
parent: 2
- - uid: 1323
+ - uid: 2034
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-63.5
+ pos: -32.5,-41.5
parent: 2
- - uid: 1324
+ - uid: 2035
components:
- type: Transform
- pos: -35.5,-71.5
+ pos: 69.5,15.5
parent: 2
- - uid: 1325
+ - uid: 2036
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-40.5
+ pos: -37.5,-32.5
parent: 2
- - uid: 38388
+ - uid: 2037
components:
- type: Transform
- pos: -0.5,19.5
- parent: 38344
- - uid: 38389
+ pos: 23.5,-1.5
+ parent: 2
+ - uid: 2038
components:
- type: Transform
- pos: -1.5,19.5
- parent: 38344
- - uid: 38390
+ pos: -11.5,82.5
+ parent: 2
+ - uid: 2039
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,21.5
- parent: 38344
- - uid: 38391
+ pos: 29.5,-4.5
+ parent: 2
+ - uid: 2040
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,14.5
- parent: 38344
- - uid: 38392
+ pos: -56.5,-6.5
+ parent: 2
+ - uid: 2041
components:
- type: Transform
- pos: -27.5,15.5
- parent: 38344
- - uid: 38393
+ pos: 35.5,21.5
+ parent: 2
+ - uid: 2042
components:
- type: Transform
- pos: -17.5,33.5
- parent: 38344
-- proto: BarricadeBlock
- entities:
- - uid: 1326
+ pos: 56.5,-3.5
+ parent: 2
+ - uid: 2043
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,58.5
+ pos: 65.5,-4.5
parent: 2
- - uid: 1327
+ - uid: 2044
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-71.5
+ pos: 65.5,0.5
parent: 2
- - uid: 1328
+ - uid: 2045
components:
- type: Transform
- pos: 29.5,-60.5
+ pos: -31.5,-42.5
parent: 2
- - uid: 1329
+ - uid: 2046
components:
- type: Transform
- pos: -45.5,-23.5
+ pos: 66.5,26.5
parent: 2
- - uid: 1330
+ - uid: 2047
components:
- type: Transform
- pos: -47.5,-22.5
+ pos: 47.5,6.5
parent: 2
- - uid: 1331
+ - uid: 2048
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,68.5
+ pos: 63.5,-3.5
parent: 2
- - uid: 1332
->>>>>>> master
+ - uid: 2049
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,-25.5
+ pos: 76.5,22.5
parent: 2
-<<<<<<< HEAD
- - uid: 1302
-=======
- - uid: 1333
->>>>>>> master
+ - uid: 2050
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-29.5
+ pos: -37.5,-23.5
parent: 2
-<<<<<<< HEAD
- - uid: 1303
+ - uid: 2051
components:
- type: Transform
- pos: -43.5,-3.5
+ pos: 91.5,2.5
parent: 2
- - uid: 1304
-=======
- - uid: 1334
->>>>>>> master
+ - uid: 2052
components:
- type: Transform
- pos: -44.5,-34.5
+ pos: 57.5,12.5
parent: 2
-<<<<<<< HEAD
- - uid: 1305
-=======
- - uid: 1335
->>>>>>> master
+ - uid: 2053
components:
- type: Transform
- pos: 11.5,61.5
+ pos: 46.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1306
-=======
- - uid: 1336
->>>>>>> master
+ - uid: 2054
components:
- type: Transform
- pos: 24.5,66.5
+ pos: -70.5,-33.5
parent: 2
-<<<<<<< HEAD
- - uid: 1307
-=======
- - uid: 1337
->>>>>>> master
+ - uid: 2055
components:
- type: Transform
- pos: -38.5,-56.5
+ pos: 43.5,18.5
parent: 2
-<<<<<<< HEAD
- - uid: 1308
-=======
- - uid: 1338
->>>>>>> master
+ - uid: 2056
components:
- type: Transform
- pos: 17.5,57.5
+ pos: 61.5,-5.5
parent: 2
-<<<<<<< HEAD
- - uid: 1309
-=======
- - uid: 1339
->>>>>>> master
+ - uid: 2057
components:
- type: Transform
- pos: -37.5,-0.5
+ pos: -66.5,-37.5
parent: 2
-<<<<<<< HEAD
- - uid: 1310
-=======
- - uid: 1340
->>>>>>> master
+ - uid: 2058
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-58.5
+ pos: 55.5,14.5
parent: 2
-<<<<<<< HEAD
- - uid: 1311
-=======
- - uid: 1341
->>>>>>> master
+ - uid: 2059
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-71.5
+ pos: 31.5,50.5
parent: 2
-<<<<<<< HEAD
- - uid: 1312
+ - uid: 2060
components:
- type: Transform
- pos: -37.5,-15.5
+ pos: 72.5,22.5
parent: 2
- - uid: 1313
+ - uid: 2061
components:
- type: Transform
- pos: 22.5,61.5
+ pos: 73.5,-4.5
parent: 2
- - uid: 1314
+ - uid: 2062
components:
- type: Transform
- pos: 16.5,70.5
+ pos: 53.5,30.5
parent: 2
- - uid: 1315
+ - uid: 2063
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,55.5
+ pos: 53.5,29.5
parent: 2
- - uid: 1316
+ - uid: 2064
components:
- type: Transform
- pos: 41.5,-68.5
+ pos: -69.5,31.5
parent: 2
-- proto: BarricadeDirectional
- entities:
- - uid: 1317
+ - uid: 2065
components:
- type: Transform
- pos: 17.5,58.5
+ pos: 29.5,50.5
parent: 2
- - uid: 1318
+ - uid: 2066
components:
- type: Transform
- pos: -38.5,-36.5
+ pos: 59.5,-3.5
parent: 2
- - uid: 1319
+ - uid: 2067
components:
- type: Transform
- pos: -38.5,56.5
+ pos: -68.5,47.5
parent: 2
-- proto: BarSign
- entities:
- - uid: 1320
-=======
- - uid: 1342
+ - uid: 2068
components:
- type: Transform
- pos: -37.5,-15.5
+ pos: 53.5,27.5
parent: 2
- - uid: 1343
+ - uid: 2069
components:
- type: Transform
- pos: 22.5,61.5
+ pos: 28.5,39.5
parent: 2
- - uid: 1344
+ - uid: 2070
components:
- type: Transform
- pos: 16.5,70.5
+ pos: 53.5,28.5
parent: 2
- - uid: 1345
+ - uid: 2071
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,55.5
+ pos: -68.5,36.5
parent: 2
- - uid: 1346
+ - uid: 2072
components:
- type: Transform
- pos: 41.5,-68.5
+ pos: -69.5,21.5
parent: 2
- - uid: 1347
+ - uid: 2073
components:
- type: Transform
- pos: -34.5,-71.5
+ pos: 47.5,5.5
parent: 2
- - uid: 1348
+ - uid: 2074
components:
- type: Transform
- pos: -37.5,-58.5
+ pos: 42.5,20.5
parent: 2
- - uid: 1349
+ - uid: 2075
components:
- type: Transform
- pos: -32.5,-71.5
+ pos: -15.5,31.5
parent: 2
- - uid: 1350
+ - uid: 2076
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-63.5
+ pos: -15.5,29.5
parent: 2
- - uid: 1351
+ - uid: 2077
components:
- type: Transform
- pos: -30.5,-71.5
+ pos: -68.5,49.5
parent: 2
- - uid: 1352
+ - uid: 2078
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-40.5
+ pos: 90.5,3.5
parent: 2
- - uid: 38394
+ - uid: 2079
components:
- type: Transform
- pos: -18.5,33.5
- parent: 38344
- - uid: 38395
+ pos: 28.5,50.5
+ parent: 2
+ - uid: 2080
components:
- type: Transform
- pos: -21.5,29.5
- parent: 38344
-- proto: BarricadeDirectional
- entities:
- - uid: 1353
+ pos: 30.5,50.5
+ parent: 2
+ - uid: 2081
components:
- type: Transform
- pos: 17.5,58.5
+ pos: -48.5,51.5
parent: 2
- - uid: 1354
+ - uid: 2082
components:
- type: Transform
- pos: -38.5,-36.5
+ pos: 51.5,7.5
parent: 2
- - uid: 1355
+ - uid: 2083
components:
- type: Transform
- pos: -38.5,56.5
+ pos: 57.5,0.5
parent: 2
- - uid: 1356
+ - uid: 2084
components:
- type: Transform
- pos: -29.5,-70.5
+ pos: 33.5,21.5
parent: 2
- - uid: 1357
+ - uid: 2085
components:
- type: Transform
- pos: -35.5,-70.5
+ pos: -11.5,80.5
parent: 2
- - uid: 1358
+ - uid: 2086
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-72.5
+ pos: 61.5,15.5
parent: 2
- - uid: 1359
+ - uid: 2087
components:
- type: Transform
- pos: -32.5,-70.5
+ pos: -0.5,3.5
parent: 2
- - uid: 1360
+ - uid: 2088
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-72.5
+ pos: -68.5,-38.5
parent: 2
- - uid: 1361
+ - uid: 2089
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-40.5
+ pos: -15.5,28.5
parent: 2
- - uid: 38396
+ - uid: 2090
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,14.5
- parent: 38344
- - uid: 38397
+ pos: 24.5,20.5
+ parent: 2
+ - uid: 2091
components:
- type: Transform
- pos: -9.5,22.5
- parent: 38344
- - uid: 38398
+ pos: 58.5,12.5
+ parent: 2
+ - uid: 2092
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,18.5
- parent: 38344
- - uid: 38399
+ pos: 69.5,16.5
+ parent: 2
+ - uid: 2093
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,19.5
- parent: 38344
- - uid: 38400
+ pos: 33.5,20.5
+ parent: 2
+ - uid: 2094
components:
- type: Transform
- pos: -27.5,16.5
- parent: 38344
- - uid: 38401
+ pos: -70.5,-36.5
+ parent: 2
+ - uid: 2095
components:
- type: Transform
- pos: -18.5,15.5
- parent: 38344
- - uid: 38402
+ pos: 66.5,0.5
+ parent: 2
+ - uid: 2096
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,15.5
- parent: 38344
- - uid: 38403
+ pos: -46.5,-44.5
+ parent: 2
+ - uid: 2097
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,14.5
- parent: 38344
- - uid: 38404
+ pos: -46.5,-43.5
+ parent: 2
+ - uid: 2098
components:
- type: Transform
- pos: -17.5,34.5
- parent: 38344
-- proto: BarSign
- entities:
- - uid: 1362
->>>>>>> master
+ pos: -67.5,-37.5
+ parent: 2
+ - uid: 2099
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,41.5
+ pos: 13.5,-8.5
parent: 2
-<<<<<<< HEAD
-- proto: BarSignMalteseFalcon
- entities:
- - uid: 1321
-=======
-- proto: BarSignMaidCafe
- entities:
- - uid: 1363
->>>>>>> master
+ - uid: 2100
components:
- type: Transform
- pos: -64.5,-38.5
+ pos: -23.5,-44.5
parent: 2
-- proto: BaseBallBat
- entities:
-<<<<<<< HEAD
- - uid: 1322
+ - uid: 2101
components:
- type: Transform
- pos: 69.68544,26.458788
+ pos: -25.5,-45.5
parent: 2
-- proto: BaseComputer
- entities:
- - uid: 1323
-=======
- - uid: 1364
+ - uid: 2102
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.538887,-47.448273
+ pos: -23.5,-45.5
parent: 2
-- proto: BaseComputer
- entities:
- - uid: 1365
->>>>>>> master
+ - uid: 2103
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-49.5
+ pos: -70.5,-37.5
parent: 2
-<<<<<<< HEAD
-- proto: BaseGasCondenser
- entities:
- - uid: 1324
-=======
- - uid: 38405
+ - uid: 2104
components:
- type: Transform
- pos: -22.5,34.5
- parent: 38344
-- proto: BaseGasCondenser
- entities:
- - uid: 1366
->>>>>>> master
+ pos: -54.5,-38.5
+ parent: 2
+ - uid: 2105
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-32.5
+ pos: -68.5,37.5
parent: 2
-<<<<<<< HEAD
-- proto: BassGuitarInstrument
- entities:
- - uid: 1325
-=======
-- proto: Basketball
- entities:
- - uid: 1367
+ - uid: 2106
components:
- type: Transform
- pos: -43.351387,-47.338898
+ pos: 47.5,-4.5
parent: 2
-- proto: BassGuitarInstrument
- entities:
- - uid: 1368
->>>>>>> master
+ - uid: 2107
components:
- type: Transform
- pos: -8.499726,29.04972
+ pos: -68.5,32.5
parent: 2
-- proto: Beaker
- entities:
-<<<<<<< HEAD
- - uid: 1326
-=======
- - uid: 1369
->>>>>>> master
+ - uid: 2108
components:
- type: Transform
- pos: 26.798685,-65.68403
+ pos: -11.5,87.5
parent: 2
-<<<<<<< HEAD
- - uid: 1327
-=======
- - uid: 1370
->>>>>>> master
+ - uid: 2109
components:
- type: Transform
- pos: 26.486185,-65.76215
+ pos: -68.5,33.5
parent: 2
-<<<<<<< HEAD
- - uid: 1328
-=======
- - uid: 1371
->>>>>>> master
+ - uid: 2110
components:
- type: Transform
- pos: 22.348429,-37.346508
+ pos: -11.5,86.5
parent: 2
-<<<<<<< HEAD
- - uid: 1329
-=======
- - uid: 1372
->>>>>>> master
+ - uid: 2111
components:
- type: Transform
- pos: 20.50013,-40.283833
+ pos: 55.5,6.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1330
-=======
- - uid: 1373
->>>>>>> master
+ - uid: 2112
components:
- type: Transform
- pos: -10.1553335,-52.195354
+ pos: -26.5,-45.5
parent: 2
-<<<<<<< HEAD
- - uid: 1331
-=======
- - uid: 1374
->>>>>>> master
+ - uid: 2113
components:
- type: Transform
- pos: -3.4142637,-45.366215
+ pos: -15.5,27.5
parent: 2
-<<<<<<< HEAD
- - uid: 1332
-=======
- - uid: 1375
->>>>>>> master
+ - uid: 2114
components:
- type: Transform
- pos: 3.6732028,-44.403152
+ pos: 35.5,19.5
parent: 2
-<<<<<<< HEAD
- - uid: 1333
-=======
- - uid: 1376
->>>>>>> master
+ - uid: 2115
components:
- type: Transform
- pos: -3.664264,-45.209965
+ pos: 46.5,15.5
parent: 2
-<<<<<<< HEAD
- - uid: 1334
-=======
- - uid: 1377
->>>>>>> master
+ - uid: 2116
components:
- type: Transform
- pos: 22.676554,-37.346508
+ pos: -38.5,-73.5
parent: 2
-<<<<<<< HEAD
- - uid: 1335
-=======
- - uid: 1378
->>>>>>> master
+ - uid: 2117
components:
- type: Transform
- pos: 38.498783,-74.342354
+ pos: 47.5,-3.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1336
-=======
- - uid: 1379
->>>>>>> master
+ - uid: 2118
components:
- type: Transform
- pos: 2.6763434,-29.46381
+ pos: 34.5,-25.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1337
-=======
- - uid: 1380
->>>>>>> master
+ - uid: 2119
components:
- type: Transform
- pos: 36.53883,-19.395462
+ pos: -0.5,-0.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1338
-=======
- - uid: 1381
->>>>>>> master
+ - uid: 2120
components:
- type: Transform
- pos: -31.260351,34.57036
+ pos: 25.5,20.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1339
-=======
- - uid: 1382
->>>>>>> master
+ - uid: 2121
components:
- type: Transform
- pos: -39.252483,52.65019
+ pos: 44.5,18.5
parent: 2
-<<<<<<< HEAD
- - uid: 1340
-=======
- - uid: 1383
->>>>>>> master
+ - uid: 2122
components:
- type: Transform
- pos: -27.199572,45.474667
+ pos: -29.5,58.5
parent: 2
-- proto: Bed
- entities:
-<<<<<<< HEAD
- - uid: 1341
-=======
- - uid: 1384
->>>>>>> master
+ - uid: 2123
components:
- type: Transform
- pos: 14.5,-42.5
+ pos: -70.5,49.5
parent: 2
-<<<<<<< HEAD
- - uid: 1342
-=======
- - uid: 1385
->>>>>>> master
+ - uid: 2124
components:
- type: Transform
- pos: -2.5,54.5
+ pos: 36.5,21.5
parent: 2
-<<<<<<< HEAD
- - uid: 1343
-=======
- - uid: 1386
->>>>>>> master
+ - uid: 2125
components:
- type: Transform
- pos: 41.5,13.5
+ pos: 61.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1344
-=======
- - uid: 1387
->>>>>>> master
+ - uid: 2126
components:
- type: Transform
- pos: 65.5,-4.5
+ pos: -52.5,55.5
parent: 2
-<<<<<<< HEAD
- - uid: 1345
-=======
- - uid: 1388
->>>>>>> master
+ - uid: 2127
components:
- type: Transform
- pos: -15.5,-4.5
+ pos: 60.5,-3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1346
-=======
- - uid: 1389
->>>>>>> master
+ - uid: 2128
components:
- type: Transform
- pos: -1.5,44.5
+ pos: -11.5,88.5
parent: 2
-<<<<<<< HEAD
- - uid: 1347
-=======
- - uid: 1390
->>>>>>> master
+ - uid: 2129
components:
- type: Transform
- pos: 44.5,-60.5
+ pos: 37.5,19.5
parent: 2
-<<<<<<< HEAD
- - uid: 1348
-=======
- - uid: 1391
->>>>>>> master
+ - uid: 2130
components:
- type: Transform
- pos: -16.5,-46.5
+ pos: 72.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1349
-=======
- - uid: 1392
->>>>>>> master
+ - uid: 2131
components:
- type: Transform
- pos: 14.5,1.5
+ pos: 73.5,10.5
parent: 2
-<<<<<<< HEAD
- - uid: 1350
-=======
- - uid: 1393
->>>>>>> master
+ - uid: 2132
components:
- type: Transform
- pos: -12.5,52.5
+ pos: 73.5,14.5
parent: 2
-<<<<<<< HEAD
- - uid: 1351
-=======
- - uid: 1394
->>>>>>> master
+ - uid: 2133
components:
- type: Transform
- pos: 24.5,-51.5
+ pos: 42.5,24.5
parent: 2
-<<<<<<< HEAD
- - uid: 1352
-=======
- - uid: 1395
->>>>>>> master
+ - uid: 2134
components:
- type: Transform
- pos: 39.5,-0.5
+ pos: -66.5,-35.5
parent: 2
-<<<<<<< HEAD
- - uid: 1353
-=======
- - uid: 1396
->>>>>>> master
+ - uid: 2135
components:
- type: Transform
- pos: 53.5,-24.5
+ pos: 75.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1354
-=======
- - uid: 1397
->>>>>>> master
+ - uid: 2136
components:
- type: Transform
- pos: 39.5,13.5
+ pos: 73.5,0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1355
-=======
- - uid: 1398
->>>>>>> master
+ - uid: 2137
components:
- type: Transform
- pos: 41.5,-0.5
+ pos: 77.5,22.5
parent: 2
-<<<<<<< HEAD
- - uid: 1356
-=======
- - uid: 1399
->>>>>>> master
+ - uid: 2138
components:
- type: Transform
- pos: 42.5,-72.5
+ pos: 50.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1357
-=======
- - uid: 1400
->>>>>>> master
+ - uid: 2139
components:
- type: Transform
- pos: 45.5,-23.5
+ pos: 72.5,1.5
parent: 2
-<<<<<<< HEAD
- - uid: 1358
-=======
- - uid: 1401
->>>>>>> master
+ - uid: 2140
components:
- type: Transform
- pos: 35.5,22.5
+ pos: -24.5,-45.5
parent: 2
-<<<<<<< HEAD
- - uid: 1359
-=======
- - uid: 1402
->>>>>>> master
+ - uid: 2141
components:
- type: Transform
- pos: 38.5,-72.5
+ pos: 56.5,1.5
parent: 2
-<<<<<<< HEAD
- - uid: 1360
-=======
- - uid: 1403
->>>>>>> master
+ - uid: 2142
components:
- type: Transform
- pos: 27.5,43.5
+ pos: 60.5,0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1361
-=======
- - uid: 1404
->>>>>>> master
+ - uid: 2143
components:
- type: Transform
- pos: 44.5,-0.5
+ pos: 39.5,21.5
parent: 2
-<<<<<<< HEAD
- - uid: 1362
-=======
- - uid: 1405
->>>>>>> master
+ - uid: 2144
components:
- type: Transform
- pos: -56.5,7.5
+ pos: -68.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 1363
-=======
- - uid: 1406
->>>>>>> master
+ - uid: 2145
components:
- type: Transform
- pos: -23.5,-80.5
+ pos: -45.5,-45.5
parent: 2
-<<<<<<< HEAD
- - uid: 1364
-=======
- - uid: 1407
->>>>>>> master
+ - uid: 2146
components:
- type: Transform
- pos: 52.5,-13.5
+ pos: 50.5,14.5
parent: 2
-<<<<<<< HEAD
- - uid: 1365
-=======
- - uid: 1408
->>>>>>> master
+ - uid: 2147
components:
- type: Transform
- pos: -1.5,42.5
+ pos: 39.5,24.5
parent: 2
-<<<<<<< HEAD
- - uid: 1366
-=======
- - uid: 1409
->>>>>>> master
+ - uid: 2148
components:
- type: Transform
- pos: -21.5,-10.5
+ pos: -66.5,-36.5
parent: 2
-<<<<<<< HEAD
- - uid: 1367
-=======
- - uid: 1410
->>>>>>> master
+ - uid: 2149
components:
- type: Transform
- pos: -36.5,2.5
+ pos: -41.5,-23.5
parent: 2
-<<<<<<< HEAD
- - uid: 1368
-=======
- - uid: 1411
->>>>>>> master
+ - uid: 2150
components:
- type: Transform
- pos: 44.5,11.5
+ pos: -9.5,84.5
parent: 2
-<<<<<<< HEAD
- - uid: 1369
-=======
- - uid: 1412
->>>>>>> master
+ - uid: 2151
components:
- type: Transform
- pos: 44.5,7.5
+ pos: -69.5,-37.5
parent: 2
-<<<<<<< HEAD
- - uid: 1370
-=======
- - uid: 1413
->>>>>>> master
+ - uid: 2152
components:
- type: Transform
- pos: 49.5,-23.5
+ pos: 73.5,17.5
parent: 2
-<<<<<<< HEAD
-- proto: BedsheetBlack
- entities:
- - uid: 1371
-=======
- - uid: 1414
+ - uid: 2153
components:
- type: Transform
- pos: -31.5,-67.5
+ pos: -80.5,14.5
parent: 2
- - uid: 1415
+ - uid: 2154
components:
- type: Transform
- pos: -40.5,-59.5
+ pos: 64.5,-3.5
parent: 2
- - uid: 1416
+ - uid: 2155
components:
- type: Transform
- pos: -57.5,-48.5
+ pos: -63.5,-45.5
parent: 2
- - uid: 1417
+ - uid: 2156
components:
- type: Transform
- pos: 98.5,12.5
+ pos: -81.5,14.5
parent: 2
- - uid: 1418
+ - uid: 2157
components:
- type: Transform
- pos: 80.5,-4.5
+ pos: -82.5,14.5
parent: 2
- - uid: 1419
+ - uid: 2158
components:
- type: Transform
- pos: 84.5,-4.5
+ pos: -39.5,26.5
parent: 2
- - uid: 1420
+ - uid: 2159
components:
- type: Transform
- pos: 88.5,-4.5
+ pos: -83.5,14.5
parent: 2
- - uid: 1421
+ - uid: 2160
components:
- type: Transform
- pos: -47.5,-37.5
+ pos: -84.5,14.5
parent: 2
- - uid: 38406
+ - uid: 2161
components:
- type: Transform
- pos: -20.5,27.5
- parent: 38344
- - uid: 38407
+ pos: -85.5,14.5
+ parent: 2
+ - uid: 2162
components:
- type: Transform
- pos: -18.5,10.5
- parent: 38344
- - uid: 38408
+ pos: -41.5,-22.5
+ parent: 2
+ - uid: 2163
components:
- type: Transform
- pos: -21.5,0.5
- parent: 38344
- - uid: 38409
+ pos: 19.5,68.5
+ parent: 2
+ - uid: 2164
components:
- type: Transform
- pos: -15.5,0.5
- parent: 38344
- - uid: 38410
+ pos: 50.5,4.5
+ parent: 2
+ - uid: 2165
components:
- type: Transform
- pos: -15.5,10.5
- parent: 38344
- - uid: 38411
+ pos: 75.5,-0.5
+ parent: 2
+ - uid: 2166
components:
- type: Transform
- pos: -18.5,0.5
- parent: 38344
- - uid: 38412
+ pos: -37.5,-31.5
+ parent: 2
+ - uid: 2167
components:
- type: Transform
- pos: 7.5,-3.5
- parent: 38344
- - uid: 38413
+ pos: -41.5,-31.5
+ parent: 2
+ - uid: 2168
components:
- type: Transform
- pos: -21.5,10.5
- parent: 38344
- - uid: 38414
+ pos: -51.5,55.5
+ parent: 2
+ - uid: 2169
components:
- type: Transform
- pos: -4.5,-1.5
- parent: 38344
- - uid: 38415
+ pos: 50.5,19.5
+ parent: 2
+ - uid: 2170
components:
- type: Transform
- pos: -4.5,-2.5
- parent: 38344
- - uid: 38416
+ pos: 49.5,9.5
+ parent: 2
+ - uid: 2171
components:
- type: Transform
- pos: 3.5,34.5
- parent: 38344
- - uid: 38417
+ pos: 51.5,12.5
+ parent: 2
+ - uid: 2172
components:
- type: Transform
- pos: 6.5,-3.5
- parent: 38344
- - uid: 38418
+ pos: 90.5,1.5
+ parent: 2
+ - uid: 2173
components:
- type: Transform
- pos: 7.5,-5.5
- parent: 38344
- - uid: 38419
+ pos: 56.5,0.5
+ parent: 2
+ - uid: 2174
components:
- type: Transform
- pos: 6.5,-5.5
- parent: 38344
-- proto: BedsheetBlack
- entities:
- - uid: 1422
->>>>>>> master
+ pos: -61.5,-28.5
+ parent: 2
+ - uid: 2175
components:
- type: Transform
- pos: -23.5,-80.5
+ pos: 39.5,23.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: BedsheetBlue
- entities:
-<<<<<<< HEAD
- - uid: 1372
-=======
- - uid: 1423
->>>>>>> master
+ - uid: 2176
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,54.5
+ pos: 50.5,13.5
parent: 2
-<<<<<<< HEAD
- - uid: 1373
-=======
- - uid: 1424
->>>>>>> master
+ - uid: 2177
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-42.5
+ pos: -38.5,-74.5
parent: 2
-- proto: BedsheetBrigmedic
- entities:
-<<<<<<< HEAD
- - uid: 1374
-=======
- - uid: 1425
->>>>>>> master
+ - uid: 2178
components:
- type: Transform
- pos: 65.5,-4.5
+ pos: 83.5,12.5
parent: 2
-- proto: BedsheetBrown
- entities:
-<<<<<<< HEAD
- - uid: 1375
-=======
- - uid: 1426
->>>>>>> master
+ - uid: 2179
components:
- type: Transform
- pos: -1.5,42.5
+ pos: 7.5,-46.5
parent: 2
-<<<<<<< HEAD
- - uid: 1376
-=======
- - uid: 1427
->>>>>>> master
+ - uid: 2180
components:
- type: Transform
- pos: -21.5,-10.5
+ pos: 77.5,9.5
parent: 2
-<<<<<<< HEAD
-- proto: BedsheetCaptain
- entities:
- - uid: 1377
-=======
- - uid: 1428
+ - uid: 2181
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 98.5,12.5
+ pos: 41.5,22.5
parent: 2
-- proto: BedsheetCaptain
- entities:
- - uid: 1429
->>>>>>> master
+ - uid: 2182
components:
- type: Transform
- pos: 14.5,1.5
+ pos: 56.5,7.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: BedsheetCE
- entities:
-<<<<<<< HEAD
- - uid: 1378
-=======
- - uid: 1430
->>>>>>> master
+ - uid: 2183
components:
- type: Transform
- pos: -56.5,7.5
+ pos: -68.5,41.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: BedsheetClown
- entities:
-<<<<<<< HEAD
- - uid: 1379
-=======
- - uid: 1431
->>>>>>> master
+ - uid: 2184
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,52.5
+ pos: -11.5,85.5
parent: 2
-<<<<<<< HEAD
- - uid: 1380
-=======
- - uid: 1432
->>>>>>> master
+ - uid: 2185
components:
- type: Transform
- pos: -36.5,2.5
+ pos: -68.5,30.5
parent: 2
-- proto: BedsheetCMO
- entities:
-<<<<<<< HEAD
- - uid: 1381
-=======
- - uid: 1433
->>>>>>> master
+ - uid: 2186
components:
- type: Transform
- pos: 24.5,-51.5
+ pos: -29.5,31.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: BedsheetHOP
- entities:
-<<<<<<< HEAD
- - uid: 1382
-=======
- - uid: 1434
->>>>>>> master
+ - uid: 2187
components:
- type: Transform
- pos: -15.5,-4.5
+ pos: -49.5,-47.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: BedsheetHOS
- entities:
-<<<<<<< HEAD
- - uid: 1383
-=======
- - uid: 1435
->>>>>>> master
+ - uid: 2188
components:
- type: Transform
- pos: 35.5,22.5
+ pos: 64.5,30.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: BedsheetIan
- entities:
- - uid: 1436
+ - uid: 2189
components:
- type: Transform
- pos: -40.5,-59.5
+ pos: -49.5,55.5
parent: 2
-- proto: BedsheetMedical
- entities:
-<<<<<<< HEAD
- - uid: 1384
-=======
- - uid: 1437
->>>>>>> master
+ - uid: 2190
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-4.5
+ pos: -50.5,-47.5
parent: 2
-<<<<<<< HEAD
- - uid: 1385
-=======
- - uid: 1438
->>>>>>> master
+ - uid: 2191
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-5.5
+ pos: -53.5,-47.5
parent: 2
-<<<<<<< HEAD
- - uid: 1386
-=======
- - uid: 1439
->>>>>>> master
+ - uid: 2192
components:
- type: Transform
- pos: 42.5,-72.5
+ pos: 70.5,13.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1387
-=======
- - uid: 1440
->>>>>>> master
+ - uid: 2193
components:
- type: Transform
- pos: 44.5,-60.5
+ pos: -11.5,72.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1388
-=======
- - uid: 1441
->>>>>>> master
+ - uid: 2194
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-37.5
+ pos: 64.5,31.5
parent: 2
-<<<<<<< HEAD
- - uid: 1389
-=======
- - uid: 1442
->>>>>>> master
+ - uid: 2195
components:
- type: Transform
- pos: 68.5,16.5
+ pos: -46.5,-46.5
parent: 2
-<<<<<<< HEAD
- - uid: 1390
-=======
- - uid: 1443
->>>>>>> master
+ - uid: 2196
components:
- type: Transform
- pos: 70.5,16.5
+ pos: -44.5,-35.5
parent: 2
-<<<<<<< HEAD
- - uid: 1391
-=======
- - uid: 1444
->>>>>>> master
+ - uid: 2197
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,-37.5
+ pos: 67.5,30.5
parent: 2
-<<<<<<< HEAD
- - uid: 1392
-=======
- - uid: 1445
->>>>>>> master
+ - uid: 2198
components:
- type: Transform
- pos: 38.5,-38.5
+ pos: 73.5,22.5
parent: 2
-<<<<<<< HEAD
- - uid: 1393
-=======
- - uid: 1446
->>>>>>> master
+ - uid: 2199
components:
- type: Transform
- pos: 30.5,-52.5
+ pos: 53.5,7.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1394
-=======
- - uid: 1447
->>>>>>> master
+ - uid: 2200
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-41.5
+ pos: -48.5,-47.5
parent: 2
-<<<<<<< HEAD
- - uid: 1395
-=======
- - uid: 1448
->>>>>>> master
+ - uid: 2201
components:
- type: Transform
- pos: 38.5,-37.5
+ pos: -44.5,-34.5
parent: 2
-<<<<<<< HEAD
- - uid: 1396
-=======
- - uid: 1449
->>>>>>> master
+ - uid: 2202
components:
- type: Transform
- pos: 38.5,-72.5
+ pos: 50.5,0.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 38420
+ - uid: 2203
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-1.5
- parent: 38344
- - uid: 38421
+ pos: 39.5,19.5
+ parent: 2
+ - uid: 2204
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-2.5
- parent: 38344
-- proto: BedsheetMime
- entities:
-<<<<<<< HEAD
- - uid: 1397
-=======
- - uid: 1450
->>>>>>> master
+ pos: 62.5,0.5
+ parent: 2
+ - uid: 2205
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,44.5
+ pos: 39.5,20.5
parent: 2
-- proto: BedsheetOrange
- entities:
-<<<<<<< HEAD
- - uid: 1398
-=======
- - uid: 1451
->>>>>>> master
+ - uid: 2206
components:
- type: Transform
- pos: 41.5,-0.5
+ pos: -31.5,-56.5
parent: 2
-<<<<<<< HEAD
- - uid: 1399
-=======
- - uid: 1452
->>>>>>> master
+ - uid: 2207
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,7.5
+ pos: 49.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1400
-=======
- - uid: 1453
->>>>>>> master
+ - uid: 2208
components:
- type: Transform
- pos: 41.5,13.5
+ pos: 62.5,30.5
parent: 2
-<<<<<<< HEAD
- - uid: 1401
-=======
- - uid: 1454
->>>>>>> master
+ - uid: 2209
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,11.5
+ pos: 63.5,30.5
parent: 2
-<<<<<<< HEAD
- - uid: 1402
-=======
- - uid: 1455
->>>>>>> master
+ - uid: 2210
components:
- type: Transform
- pos: 44.5,-0.5
+ pos: -53.5,-44.5
parent: 2
-<<<<<<< HEAD
- - uid: 1403
-=======
- - uid: 1456
->>>>>>> master
+ - uid: 2211
components:
- type: Transform
- pos: 39.5,-0.5
+ pos: -42.5,-47.5
parent: 2
-<<<<<<< HEAD
- - uid: 1404
-=======
- - uid: 1457
->>>>>>> master
+ - uid: 2212
components:
- type: Transform
- pos: 39.5,13.5
+ pos: -15.5,33.5
parent: 2
-<<<<<<< HEAD
-- proto: BedsheetQM
- entities:
- - uid: 1405
-=======
- - uid: 1458
+ - uid: 2213
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: 88.5,-4.5
+ pos: 64.5,32.5
parent: 2
- - uid: 1459
+ - uid: 2214
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: 84.5,-4.5
+ pos: -51.5,-45.5
parent: 2
- - uid: 1460
+ - uid: 2215
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: 80.5,-4.5
+ pos: 41.5,23.5
parent: 2
- - uid: 38422
+ - uid: 2216
components:
- type: Transform
- pos: -21.5,0.5
- parent: 38344
- - uid: 38423
+ pos: 56.5,12.5
+ parent: 2
+ - uid: 2217
components:
- type: Transform
- pos: -15.5,10.5
- parent: 38344
- - uid: 38424
+ pos: -68.5,44.5
+ parent: 2
+ - uid: 2218
components:
- type: Transform
- pos: -18.5,10.5
- parent: 38344
- - uid: 38425
+ pos: -40.5,-48.5
+ parent: 2
+ - uid: 2219
components:
- type: Transform
- pos: -18.5,0.5
- parent: 38344
- - uid: 38426
+ pos: -41.5,-48.5
+ parent: 2
+ - uid: 2220
components:
- type: Transform
- pos: -21.5,10.5
- parent: 38344
- - uid: 38427
+ pos: -68.5,39.5
+ parent: 2
+ - uid: 2221
components:
- type: Transform
- pos: -15.5,0.5
- parent: 38344
-- proto: BedsheetQM
- entities:
- - uid: 1461
->>>>>>> master
+ pos: 3.5,-58.5
+ parent: 2
+ - uid: 2222
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,43.5
+ pos: -15.5,32.5
parent: 2
-<<<<<<< HEAD
-- proto: BedsheetRainbow
- entities:
- - uid: 1406
+ - uid: 2223
components:
- type: Transform
- pos: 86.5,6.5
+ pos: 75.5,24.5
parent: 2
-- proto: BedsheetRD
- entities:
- - uid: 1407
-=======
-- proto: BedsheetRD
- entities:
- - uid: 1462
->>>>>>> master
+ - uid: 2224
components:
- type: Transform
- pos: -16.5,-46.5
+ pos: 68.5,0.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: BedsheetRed
- entities:
- - uid: 1463
+ - uid: 2225
components:
- type: Transform
- pos: -31.5,-67.5
+ pos: 69.5,-2.5
parent: 2
- - uid: 1464
+ - uid: 2226
components:
- type: Transform
- rot: 1.5707973450558423 rad
- pos: -57.5,-48.5
+ pos: 62.5,-3.5
parent: 2
- - uid: 38428
+ - uid: 2227
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-5.5
- parent: 38344
- - uid: 38429
+ pos: 69.5,-1.5
+ parent: 2
+ - uid: 2228
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-3.5
- parent: 38344
- - uid: 38430
+ pos: -54.5,-44.5
+ parent: 2
+ - uid: 2229
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-5.5
- parent: 38344
- - uid: 38431
+ pos: 2.5,-58.5
+ parent: 2
+ - uid: 2230
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-3.5
- parent: 38344
-- proto: BedsheetSpawner
- entities:
-<<<<<<< HEAD
- - uid: 1408
-=======
- - uid: 1465
->>>>>>> master
+ pos: 52.5,27.5
+ parent: 2
+ - uid: 2231
components:
- type: Transform
- pos: 53.5,-24.5
+ pos: -46.5,-48.5
parent: 2
-<<<<<<< HEAD
- - uid: 1409
-=======
- - uid: 1466
->>>>>>> master
+ - uid: 2232
components:
- type: Transform
- pos: 52.5,-13.5
+ pos: -69.5,27.5
parent: 2
-<<<<<<< HEAD
- - uid: 1410
-=======
- - uid: 1467
->>>>>>> master
+ - uid: 2233
components:
- type: Transform
- pos: 45.5,-23.5
+ pos: 62.5,29.5
parent: 2
-<<<<<<< HEAD
- - uid: 1411
-=======
- - uid: 1468
->>>>>>> master
+ - uid: 2234
components:
- type: Transform
- pos: 49.5,-23.5
+ pos: -20.5,68.5
parent: 2
-<<<<<<< HEAD
-- proto: BedsheetWhite
- entities:
- - uid: 1412
-=======
-- proto: BedsheetSyndie
- entities:
- - uid: 1469
+ - uid: 2235
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: -47.5,-37.5
+ pos: 3.5,-60.5
parent: 2
- - uid: 38432
+ - uid: 2236
components:
- type: Transform
- pos: -20.5,27.5
- parent: 38344
-- proto: BedsheetWhite
- entities:
- - uid: 1470
->>>>>>> master
+ pos: 51.5,27.5
+ parent: 2
+ - uid: 2237
components:
- type: Transform
- pos: 38.5,-67.5
+ pos: 50.5,27.5
parent: 2
-<<<<<<< HEAD
- - uid: 1413
-=======
- - uid: 1471
->>>>>>> master
+ - uid: 2238
components:
- type: Transform
- pos: 42.5,-67.5
+ pos: 50.5,28.5
parent: 2
-<<<<<<< HEAD
-- proto: Bible
- entities:
- - uid: 1414
-=======
- - uid: 38433
+ - uid: 2239
components:
- type: Transform
- pos: 3.5,34.5
- parent: 38344
-- proto: Bible
- entities:
- - uid: 1472
->>>>>>> master
+ pos: -39.5,-48.5
+ parent: 2
+ - uid: 2240
components:
- type: Transform
- pos: -16.528536,-73.33123
+ pos: 50.5,26.5
parent: 2
-- proto: BigBox
- entities:
-<<<<<<< HEAD
- - uid: 1415
-=======
- - uid: 1473
->>>>>>> master
+ - uid: 2241
components:
- type: Transform
- pos: 53.44732,-55.470516
+ pos: -42.5,-48.5
parent: 2
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
-<<<<<<< HEAD
- - 1416
- - uid: 1417
-=======
- - 1474
- - uid: 1475
->>>>>>> master
+ - uid: 2242
components:
- type: Transform
- pos: -38.449852,-54.46418
+ pos: 54.5,28.5
parent: 2
-<<<<<<< HEAD
-- proto: BikeHorn
- entities:
- - uid: 1419
+ - uid: 2243
components:
- type: Transform
- parent: 1418
-=======
- - uid: 1476
+ pos: 58.5,6.5
+ parent: 2
+ - uid: 2244
components:
- type: Transform
- pos: -31.03472,-59.428844
+ pos: 55.5,28.5
parent: 2
- - uid: 1477
+ - uid: 2245
components:
- type: Transform
- pos: 41.48744,-27.418045
+ pos: 56.5,28.5
parent: 2
-- proto: BikeHorn
- entities:
- - uid: 1479
+ - uid: 2246
components:
- type: Transform
- parent: 1478
->>>>>>> master
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BiomassReclaimer
- entities:
-<<<<<<< HEAD
- - uid: 1422
-=======
- - uid: 1482
->>>>>>> master
+ pos: 55.5,3.5
+ parent: 2
+ - uid: 2247
components:
- type: Transform
- pos: 10.5,-50.5
+ pos: 55.5,13.5
parent: 2
-- proto: BlastDoor
- entities:
-<<<<<<< HEAD
- - uid: 1423
-=======
- - uid: 1483
->>>>>>> master
+ - uid: 2248
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,56.5
+ pos: 57.5,28.5
parent: 2
-<<<<<<< HEAD
- - uid: 1424
-=======
- - uid: 1484
->>>>>>> master
+ - uid: 2249
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,56.5
+ pos: 58.5,28.5
parent: 2
-<<<<<<< HEAD
- - uid: 1425
-=======
- - uid: 1485
->>>>>>> master
+ - uid: 2250
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,61.5
+ pos: 58.5,27.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 33059
- - uid: 1426
-=======
- - 31730
- - uid: 1486
->>>>>>> master
+ - uid: 2251
components:
- type: Transform
- pos: -38.5,-44.5
+ pos: 47.5,1.5
parent: 2
-<<<<<<< HEAD
- - type: DeviceLinkSink
- links:
- - 30718
- - uid: 1427
+ - uid: 2252
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,21.5
+ pos: 58.5,26.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 30659
- - uid: 1428
-=======
- - type: DeviceLinkSink
- links:
- - 29287
- - uid: 1487
->>>>>>> master
+ - uid: 2253
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-7.5
+ pos: 58.5,25.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30665
- - uid: 1429
-=======
- - 29234
- - uid: 1488
->>>>>>> master
+ - uid: 2254
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-17.5
+ pos: 57.5,26.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30685
- - uid: 1430
-=======
- - 29253
- - uid: 1489
->>>>>>> master
+ - uid: 2255
components:
- - type: MetaData
- name: арсенал синего кода
- type: Transform
- pos: 58.5,2.5
+ pos: 56.5,26.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 26314
- - uid: 1431
-=======
- - 24981
- - uid: 1490
->>>>>>> master
+ - uid: 2256
components:
- - type: MetaData
- name: арсенал красного кода
- type: Transform
- pos: 66.5,2.5
+ pos: 55.5,26.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 26312
- - uid: 1432
-=======
- - 24979
- - uid: 1491
->>>>>>> master
+ - uid: 2257
components:
- - type: MetaData
- name: дополнительный арсенал
- type: Transform
- pos: 62.5,2.5
+ pos: 73.5,2.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 26313
- - uid: 1433
-=======
- - 24980
- - uid: 1492
->>>>>>> master
+ - uid: 2258
components:
- type: Transform
- pos: 61.5,12.5
+ pos: 55.5,26.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 26315
- - uid: 1434
-=======
- - 24982
- - uid: 1493
->>>>>>> master
+ - uid: 2259
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-17.5
+ pos: -70.5,35.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30685
- - uid: 1435
-=======
- - 29253
- - uid: 1494
->>>>>>> master
+ - uid: 2260
components:
- type: Transform
- pos: -38.5,-39.5
+ pos: -69.5,35.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30715
- - uid: 1436
-=======
- - 29284
- - uid: 1495
->>>>>>> master
+ - uid: 2261
components:
- type: Transform
- pos: -38.5,-45.5
+ pos: -53.5,-36.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30718
- - uid: 1437
-=======
- - 29287
- - uid: 1496
->>>>>>> master
+ - uid: 2262
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-68.5
+ pos: -33.5,-32.5
parent: 2
-<<<<<<< HEAD
- - uid: 1438
-=======
- - uid: 1497
->>>>>>> master
+ - uid: 2263
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-6.5
+ pos: 55.5,25.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30665
- - uid: 1439
-=======
- - 29234
- - uid: 1498
->>>>>>> master
+ - uid: 2264
components:
- type: Transform
- pos: 75.5,30.5
+ pos: 58.5,24.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30694
- - uid: 1440
-=======
- - 29261
- - uid: 1499
->>>>>>> master
+ - uid: 2265
components:
- type: Transform
- pos: -49.5,-7.5
+ pos: 58.5,23.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 33053
- - 30696
- - uid: 1441
-=======
- - 31725
- - 29263
- - uid: 1500
->>>>>>> master
+ - uid: 2266
components:
- type: Transform
- pos: -49.5,-8.5
+ pos: 58.5,22.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 33053
- - 30696
- - uid: 1442
-=======
- - 31725
- - 29263
- - uid: 1501
->>>>>>> master
+ - uid: 2267
components:
- type: Transform
- pos: -49.5,-6.5
+ pos: 2.5,-60.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 33053
- - 30696
- - uid: 1443
-=======
- - 31725
- - 29263
- - uid: 1502
->>>>>>> master
+ - uid: 2268
components:
- type: Transform
- pos: 76.5,30.5
+ pos: -15.5,30.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30694
- - uid: 1444
-=======
- - 29261
- - uid: 1503
->>>>>>> master
+ - uid: 2269
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-5.5
+ pos: -70.5,41.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30665
- - uid: 1445
-=======
- - 29234
- - uid: 1504
->>>>>>> master
+ - uid: 2270
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,52.5
+ pos: 57.5,23.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30714
- - uid: 1446
-=======
- - 29283
- - uid: 1505
->>>>>>> master
+ - uid: 2271
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,52.5
+ pos: -68.5,24.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30711
- - uid: 1447
-=======
- - 29280
- - uid: 1506
->>>>>>> master
+ - uid: 2272
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,48.5
+ pos: 48.5,19.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30714
- - uid: 1448
-=======
- - 29283
- - uid: 1507
->>>>>>> master
+ - uid: 2273
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,48.5
+ pos: 54.5,19.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30711
- - uid: 1449
-=======
- - 29280
- - uid: 1508
->>>>>>> master
+ - uid: 2274
components:
- type: Transform
- pos: -38.5,-40.5
+ pos: 56.5,2.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30715
- - uid: 1450
-=======
- - 29284
- - uid: 1509
->>>>>>> master
+ - uid: 2275
components:
- type: Transform
- pos: -38.5,-38.5
+ pos: 76.5,-1.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30715
- - uid: 1451
-=======
- - 29284
- - uid: 1510
->>>>>>> master
+ - uid: 2276
components:
- type: Transform
- pos: -38.5,-43.5
+ pos: -42.5,-46.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30718
- - uid: 1452
-=======
- - 29287
- - uid: 1511
->>>>>>> master
+ - uid: 2277
components:
- type: Transform
- pos: 74.5,30.5
+ pos: -67.5,48.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30694
- - uid: 1453
-=======
- - 29261
- - uid: 1512
->>>>>>> master
+ - uid: 2278
components:
- type: Transform
- pos: -70.5,-8.5
+ pos: 54.5,17.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30645
- - uid: 1454
-=======
- - 29215
- - uid: 1513
->>>>>>> master
+ - uid: 2279
components:
- type: Transform
- pos: -68.5,-8.5
+ pos: 75.5,25.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30645
- - uid: 1455
-=======
- - 29215
- - uid: 1514
->>>>>>> master
+ - uid: 2280
components:
- type: Transform
- pos: -69.5,-8.5
+ pos: 47.5,0.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30645
- - uid: 1456
+ - uid: 2281
components:
- type: Transform
- pos: -67.5,61.5
+ pos: 55.5,17.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 30690
- - uid: 1457
+ - uid: 2282
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-17.5
+ pos: 56.5,17.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 30685
- - uid: 1458
+ - uid: 2283
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,-43.5
+ pos: 57.5,17.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 30704
- - uid: 1459
+ - uid: 2284
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,-46.5
+ pos: 58.5,17.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 30704
- - uid: 1460
+ - uid: 2285
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,81.5
+ pos: 59.5,17.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 30638
- - uid: 1461
+ - uid: 2286
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,80.5
+ pos: 59.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 30638
-- proto: BlastDoorOpen
- entities:
- - uid: 1462
-=======
- - 29215
- - uid: 1515
+ - uid: 2287
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-17.5
+ pos: 60.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 29253
- - uid: 1516
+ - uid: 2288
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,-43.5
+ pos: 61.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 29270
- - uid: 1517
+ - uid: 2289
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,-46.5
+ pos: 61.5,17.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 29270
- - uid: 1518
+ - uid: 2290
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,81.5
+ pos: 52.5,12.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 29209
- - uid: 1519
+ - uid: 2291
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,80.5
+ pos: 61.5,18.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 29209
- - uid: 1520
+ - uid: 2292
components:
- type: Transform
- pos: -72.5,22.5
+ pos: 54.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 29295
- - 29296
- - uid: 1521
+ - uid: 2293
components:
- type: Transform
- pos: -62.5,-34.5
+ pos: 49.5,13.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 29208
- - uid: 1522
+ - uid: 2294
components:
- type: Transform
- pos: -62.5,-32.5
+ pos: 51.5,8.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 29208
-- proto: BlastDoorOpen
- entities:
- - uid: 1523
->>>>>>> master
+ - uid: 2295
components:
- type: Transform
- pos: -52.5,18.5
+ pos: 54.5,12.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 26316
- - uid: 1463
-=======
- - 24983
- - uid: 1524
->>>>>>> master
+ - uid: 2296
components:
- type: Transform
- pos: -53.5,18.5
+ pos: 53.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 26316
- - uid: 1464
-=======
- - 24983
- - uid: 1525
->>>>>>> master
+ - uid: 2297
components:
- type: Transform
- pos: -54.5,18.5
+ pos: 50.5,11.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 26316
- - uid: 1465
-=======
- - 24983
- - uid: 1526
->>>>>>> master
+ - uid: 2298
components:
- type: Transform
- pos: -51.5,18.5
+ pos: 50.5,8.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 26316
- - uid: 1466
-=======
- - 24983
- - uid: 1527
->>>>>>> master
+ - uid: 2299
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,0.5
+ pos: 53.5,12.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30644
- - uid: 1467
-=======
- - 29214
- - uid: 1528
->>>>>>> master
+ - uid: 2300
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,-0.5
+ pos: 61.5,19.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30644
- - uid: 1468
-=======
- - 29214
- - uid: 1529
->>>>>>> master
+ - uid: 2301
components:
- type: Transform
- pos: -53.5,8.5
+ pos: 62.5,18.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30650
- - uid: 1469
-=======
- - 29220
- - uid: 1530
->>>>>>> master
+ - uid: 2302
components:
- type: Transform
- pos: -14.5,16.5
+ pos: 63.5,18.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30660
- - uid: 1470
-=======
- - 29229
- - uid: 1531
->>>>>>> master
+ - uid: 2303
components:
- type: Transform
- pos: -37.5,-30.5
+ pos: 64.5,18.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30669
- - uid: 1471
-=======
- - 29237
- - uid: 1532
->>>>>>> master
+ - uid: 2304
components:
- type: Transform
- pos: 13.5,16.5
+ pos: -31.5,-54.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30653
- - uid: 1472
-=======
- - 29223
- - uid: 1533
->>>>>>> master
+ - uid: 2305
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,-27.5
+ pos: 65.5,18.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30651
- - uid: 1473
-=======
- - 29221
- - uid: 1534
->>>>>>> master
+ - uid: 2306
components:
- type: Transform
- pos: -41.5,-30.5
+ pos: 43.5,19.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30679
- - uid: 1474
-=======
- - 29247
- - uid: 1535
->>>>>>> master
+ - uid: 2307
components:
- type: Transform
- pos: -50.5,8.5
+ pos: 60.5,12.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30650
- - uid: 1475
-=======
- - 29220
- - uid: 1536
->>>>>>> master
+ - uid: 2308
components:
- type: Transform
- pos: -52.5,8.5
+ pos: 47.5,3.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30650
- - uid: 1476
-=======
- - 29220
- - uid: 1537
->>>>>>> master
+ - uid: 2309
components:
- type: Transform
- pos: -51.5,8.5
+ pos: 62.5,15.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30650
- - uid: 1477
-=======
- - 29220
- - uid: 1538
->>>>>>> master
+ - uid: 2310
components:
- type: Transform
- pos: 33.5,4.5
+ pos: 52.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30680
- - 30649
- - uid: 1478
-=======
- - 29248
- - 29219
- - uid: 1539
->>>>>>> master
+ - uid: 2311
components:
- type: Transform
- pos: 38.5,5.5
+ pos: 63.5,15.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30707
- - 30649
- - uid: 1479
-=======
- - 29272
- - 29219
- - uid: 1540
->>>>>>> master
+ - uid: 2312
components:
- type: Transform
- pos: 38.5,6.5
+ pos: 64.5,15.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30707
- - 30649
- - uid: 1480
-=======
- - 29272
- - 29219
- - uid: 1541
->>>>>>> master
+ - uid: 2313
components:
- type: Transform
- pos: -41.5,-24.5
+ pos: 64.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30675
- - uid: 1481
-=======
- - 29243
- - uid: 1542
->>>>>>> master
+ - uid: 2314
components:
- type: Transform
- pos: -33.5,-24.5
+ pos: 65.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30666
- - uid: 1482
-=======
- - 29235
- - uid: 1543
->>>>>>> master
+ - uid: 2315
components:
- type: Transform
- pos: 13.5,14.5
+ pos: 83.5,11.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30653
- - uid: 1483
-=======
- - 29223
- - uid: 1544
->>>>>>> master
+ - uid: 2316
components:
- type: Transform
- pos: -14.5,15.5
+ pos: -70.5,45.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30660
- - uid: 1484
-=======
- - 29229
- - uid: 1545
->>>>>>> master
+ - uid: 2317
components:
- type: Transform
- pos: -14.5,14.5
+ pos: -68.5,46.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30660
- - uid: 1485
-=======
- - 29229
- - uid: 1546
->>>>>>> master
+ - uid: 2318
components:
- type: Transform
- pos: -33.5,-30.5
+ pos: 55.5,0.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30686
- - uid: 1486
-=======
- - 29254
- - uid: 1547
->>>>>>> master
+ - uid: 2319
components:
- type: Transform
- pos: 13.5,13.5
+ pos: 69.5,13.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30653
- - uid: 1487
-=======
- - 29223
- - uid: 1548
->>>>>>> master
+ - uid: 2320
components:
- type: Transform
- pos: -14.5,13.5
+ pos: 56.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30660
- - uid: 1488
-=======
- - 29229
- - uid: 1549
->>>>>>> master
+ - uid: 2321
components:
- type: Transform
- pos: 38.5,4.5
+ pos: 57.5,18.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30707
- - 30649
- - uid: 1489
-=======
- - 29272
- - 29219
- - uid: 1550
->>>>>>> master
+ - uid: 2322
components:
- type: Transform
- pos: 33.5,6.5
+ pos: -29.5,93.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30680
- - 30649
- - uid: 1490
-=======
- - 29248
- - 29219
- - uid: 1551
->>>>>>> master
+ - uid: 2323
components:
- type: Transform
- pos: -37.5,-24.5
+ pos: 41.5,17.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30672
- - uid: 1491
-=======
- - 29240
- - uid: 1552
->>>>>>> master
+ - uid: 2324
components:
- type: Transform
- pos: 13.5,15.5
+ pos: 41.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30653
- - uid: 1492
-=======
- - 29223
- - uid: 1553
->>>>>>> master
+ - uid: 2325
components:
- type: Transform
- pos: 33.5,5.5
+ pos: 42.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30680
- - 30649
- - uid: 1493
-=======
- - 29248
- - 29219
- - uid: 1554
->>>>>>> master
+ - uid: 2326
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,1.5
+ pos: 40.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
-<<<<<<< HEAD
- - 30644
-- proto: BlockGameArcade
- entities:
- - uid: 1494
-=======
- - 29214
-- proto: BlockGameArcade
- entities:
- - uid: 1555
->>>>>>> master
+ - uid: 2327
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,58.5
+ pos: 36.5,19.5
parent: 2
- - type: SpamEmitSound
- enabled: False
-<<<<<<< HEAD
- - uid: 1495
-=======
- - uid: 1556
->>>>>>> master
+ - uid: 2328
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,58.5
+ pos: -40.5,-74.5
parent: 2
- - type: SpamEmitSound
- enabled: False
-<<<<<<< HEAD
- - uid: 1496
-=======
- - uid: 1557
->>>>>>> master
+ - uid: 2329
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,58.5
+ pos: 69.5,5.5
parent: 2
-<<<<<<< HEAD
- - uid: 1497
-=======
- - type: SpamEmitSound
- enabled: False
- - uid: 1558
->>>>>>> master
+ - uid: 2330
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,59.5
+ pos: -68.5,28.5
parent: 2
-<<<<<<< HEAD
-- proto: BlockGameArcadeComputerCircuitboard
- entities:
- - uid: 1498
+ - uid: 2331
components:
- type: Transform
- pos: -36.5,10.5
+ pos: -71.5,49.5
parent: 2
-- proto: Bloodpack
- entities:
- - uid: 1500
- components:
- - type: Transform
- parent: 1499
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BodyBagFolded
- entities:
- - uid: 1507
-=======
- - type: SpamEmitSound
- enabled: False
- - uid: 1559
+ - uid: 2332
components:
- type: Transform
- pos: -32.5,-59.5
+ pos: 37.5,-43.5
parent: 2
- - type: SpamEmitSound
- enabled: False
-- proto: BlockGameArcadeComputerCircuitboard
- entities:
- - uid: 1560
+ - uid: 2333
components:
- type: Transform
- pos: -36.5,10.5
+ pos: 59.5,0.5
parent: 2
-- proto: BodyBagFolded
- entities:
- - uid: 1561
->>>>>>> master
+ - uid: 2334
components:
- type: Transform
- pos: 5.584937,-48.259304
+ pos: -71.5,27.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 7.6867995
- - 28.917011
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-<<<<<<< HEAD
- - uid: 1508
-=======
- - uid: 1562
->>>>>>> master
+ - uid: 2335
components:
- type: Transform
- pos: 5.376316,-48.057827
+ pos: 73.5,16.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14954
- moles:
- - 7.071855
- - 26.60365
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-<<<<<<< HEAD
- - uid: 1509
-=======
- - uid: 1563
->>>>>>> master
+ - uid: 2336
components:
- type: Transform
- pos: 5.376316,-48.44306
+ pos: 52.5,10.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14948
- moles:
- - 6.506107
- - 24.475357
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: Bonfire
- entities:
-<<<<<<< HEAD
- - uid: 1510
-=======
- - uid: 1564
->>>>>>> master
+ - uid: 2337
components:
- type: Transform
- pos: 87.5,-17.5
+ pos: 38.5,19.5
parent: 2
-- proto: BookBase
- entities:
-<<<<<<< HEAD
- - uid: 1512
-=======
- - uid: 17
->>>>>>> master
+ - uid: 2338
components:
- - type: MetaData
- name: Пособие Пилота
- type: Transform
-<<<<<<< HEAD
- parent: 1511
-=======
- parent: 14
->>>>>>> master
- - type: Paper
- content: >
- ──────────────────────────────────────
-
- ┌───────────────┐
-
- │██░███░░░░██░░░│ <ПОСОБИЕ ПИЛОТА>
-
- │░█░████░░░██░░░│ SFD Стервятник DS-753
-
- │░░░██░██░░██░░░| STS Вьюк SY-741
-
- │░░░██░░██░██░█░│ *NT CLASSIFIED*
-
- │░░░██░░░████░██│
-
- └───────────────┘
-
- ──────────────────────────────────────
-
- О шаттлах Delta
- Патрульный шаттл SFD Стервятник DS-753 и пассажирский шаттл STS Вьюк SY-741, используемые станцией Delta являются гордостью учёных и инженеров NanoTrasen. Всё потому, что данные шаттлы оборудованы Продвинутой системой пилотирования типа ACE.
-
- Управление с технологией ACE
- По центру панели расположен сенсорный экран, на котором можно увидеть шаттл и всё, что его окружает в космическом пространстве. Используйте сенсоры экрана для изменения масштаба, а так же для управления стыковочными шлюзами.
-
-
- Для отстыковки выберите пристыкованный шлюз в меню и нажмите «отстыковать».
-
-
- Для стыковки выберите нужный ваш шлюз в меню и плавным движением соедините его со шлюзом, к которому вы хотите пристыковаться.
-
-
- SFD Стервятник DS-753 и STS Вьюк SY-741 сделаны по современным стандартам шаттлостроения, потому они поддерживают следующие типы перемещения и их комбинации:
-
- 1. Крен – вращательное движение шаттла.
-
- 2. Тангаж – поступательное движение шаттла вперёд и назад.
-
- 3. Рыскание – поступательное движение влево и вправо.
-
-
- Помимо описанного выше, шаттлы так же обладает режимом Ускоренного Торможения. При использовании этого режима шаттл быстро замедляется и останавливается, что даёт возможность качественнее стыковаться и лучше маневрировать в космосе.
-
- Задачи пилота СБ Delta
- Пилот СБ Delta получает оба шаттла под свою ответственность, и должен выполнять следующие задачи:
-
- 1. Патруль пространства вокруг станции
-
- 2. Транспортировка пожизненных заключённых на Каторгу «Злой Каблук»
-
- 3. Транспортировка сотрудников СБ для выполнения задач за пределами станции
-
- Внимание
- Утеря Пособия наказуема арестом по статье 207 «Халатность» и немедленным снятием с должности Пилота СБ.
-
-
- Допуск угона или угон SFD Стервятник DS-753 или STS Вьюк SY-741 наказуем арестом по статье 407 «Грубая халатность», немедленным увольнением из СБ, а так же штрафом, размером в стоимость строительства угнанного шаттла.
-
-
- По окончанию прочтения Пособия, будущий или текущий пилот СБ должен немедленно приступить к выполнению обязанностей.
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1565
+ pos: -26.5,-78.5
+ parent: 2
+ - uid: 2339
components:
- - type: MetaData
- name: глупая книга
- type: Transform
- pos: -33.625595,2.6175923
+ pos: -3.5,-75.5
parent: 2
- - type: Paper
- content: >-
- [color=#2c2824]█[color=#39332d]██[color=#443e38]█[color=#4b433c]████[color=#443e38]█[color=#4b433c]█[color=#3a3634]█[color=#39332d]█████████████[color=#443e38]█[color=#4b433c]█[color=#504843]█[color=#4b433c]█[color=#443e38]█[color=#39332d]█[color=#2c2824]███[color=#252320]█[color=#2c2824]██[color=#252320]██
-
- [color=#3a3634]█[color=#443e38]█[color=#625d59]█[color=#706a65]█[color=#625d59]█[color=#504843]█[color=#4b433c]███[color=#625d59]█[color=#56524d]█[color=#443e38]████████[color=#504843]████[color=#443e38]██[color=#3a3634]█[color=#4b433c]█[color=#39332d]█[color=#3a3634]█[color=#39332d]█[color=#3a3634]█[color=#706a65]█[color=#83776e]█[color=#56524d]█[color=#2c2824]███[color=#252320]█
-
- [color=#504843]█[color=#56524d]█[color=#a19082]█[color=#c6b4a1]████[color=#ad9b87]█[color=#706a65]███[color=#625d59]█████[color=#56524d]█[color=#55575a]█[color=#56524d]███[color=#625d59]█████[color=#504843]█[color=#706a65]█[color=#b0a395]█[color=#c6b4a1]██[color=#beab98]█[color=#9b8167]█[color=#625d59]█[color=#443e38]█[color=#39332d]█[color=#2c2824]██
-
- [color=#83776e]███[color=#a88f76]█[color=#beab98]█[color=#c6b4a1]██[color=#beab98]█[color=#bd9e88]█[color=#ad9b87]███[color=#c6b4a1]█[color=#d3c2b1]█[color=#dbcec2]█[color=#e0dcd6]██[color=#d3d0cd]█[color=#e0dcd6]█[color=#e9e9e6]██[color=#e0dcd6]██[color=#d3c2b1]█[color=#dcc3a7]█[color=#c6b4a1]████[color=#beab98]█[color=#ad9b87]█[color=#a88f76]█[color=#83776e]█[color=#443e38]█[color=#3a3634]██[color=#39332d]██
-
- [color=#9b8167]████[color=#ad9b87]█[color=#beab98]█[color=#c6b4a1]█[color=#c7b9ae]█[color=#dcc3a7]█████[color=#dbcec2]█[color=#e0dcd6]█[color=#e9e9e6]█████[color=#e0dcd6]█[color=#d3d0cd]██[color=#dbcec2]██[color=#d3c2b1]████[color=#c6b4a1]█[color=#beab98]█[color=#83776e]█[color=#4b433c]███[color=#39332d]███
-
- [color=#9b8167]████[color=#a88f76]█[color=#d3c2b1]█[color=#dbcec2]█[color=#dcc3a7]██[color=#beab98]█[color=#ad9b87]███[color=#baaca0]█[color=#e0dcd6]█[color=#e9e9e6]████[color=#e0dcd6]█[color=#d3d0cd]█[color=#c9c2ba]██[color=#b0a395]█[color=#8e8884]█[color=#83776e]██[color=#a19082]█[color=#b0a395]█[color=#c6b4a1]██[color=#83776e]█[color=#4b433c]██[color=#443e38]████
-
- [color=#a88f76]███[color=#9b8167]█[color=#bd9e88]█[color=#dbcec2]██[color=#e0dcd6]██[color=#e9e9e6]███████████[color=#e0dcd6]████[color=#e9e9e6]████[color=#d3d0cd]██[color=#c9c2ba]█[color=#b0a395]█[color=#625d59]█[color=#56524d]██[color=#4b433c]█[color=#504843]█[color=#4b433c]█
-
- [color=#a88f76]████[color=#dbcec2]██[color=#e0dcd6]████[color=#e9e9e6]██████[color=#dbcec2]█[color=#c7b9ae]█[color=#c6b4a1]█[color=#baaca0]███[color=#d3d0cd]█[color=#e0dcd6]████[color=#d3d0cd]█[color=#c7b9ae]█[color=#baaca0]█[color=#b0a395]█[color=#ad9b87]█[color=#a19082]█[color=#56524d]█[color=#443e38]██[color=#4b433c]█[color=#504843]█
-
- [color=#a88f76]████[color=#c6b4a1]█[color=#dbcec2]██[color=#d3c2b1]█[color=#c6b4a1]█[color=#c7b9ae]█[color=#e9e9e6]██[color=#e0dcd6]████[color=#c9c2ba]█[color=#a19082]█[color=#83776e]██[color=#a19082]█[color=#c7b9ae]███[color=#c9c2ba]█[color=#d3d0cd]██[color=#c9c2ba]█[color=#baaca0]█[color=#b0a395]██[color=#a19082]█[color=#706a65]██[color=#83776e]████
-
- [color=#bd9e88]█[color=#a88f76]██[color=#ad9b87]██[color=#c7b9ae]█[color=#dbcec2]██[color=#c7b9ae]██[color=#d3c2b1]█[color=#dbcec2]█[color=#c9c2ba]█[color=#c7b9ae]██[color=#b0a395]█[color=#ad9b87]█[color=#8e8884]█[color=#83776e]█[color=#8e8884]█[color=#a19082]████[color=#ad9b87]█[color=#b0a395]██[color=#a19082]█[color=#a88f76]█[color=#a19082]█[color=#ad9b87]█[color=#8e8884]█[color=#706a65]█[color=#625d59]█[color=#56524d]█[color=#504843]█[color=#706a65]██
-
- [color=#706a65]██[color=#83776e]███[color=#baaca0]█[color=#e0dcd6]███[color=#dbcec2]█[color=#d3c2b1]██[color=#c6b4a1]█[color=#bd9e88]█[color=#a88f76]██[color=#beab98]█[color=#baaca0]█[color=#b0a395]█[color=#baaca0]██[color=#beab98]█[color=#a19082]█[color=#83776e]██[color=#a88f76]█[color=#a19082]█[color=#b0a395]█[color=#a19082]█[color=#c6b4a1]█[color=#ad9b87]█[color=#706a65]█[color=#443e38]███[color=#625d59]█[color=#83776e]█[color=#56524d]█
-
- [color=#625d59]█[color=#83776e]██[color=#706a65]██[color=#b0a395]█[color=#e0dcd6]███[color=#dbcec2]█[color=#d3c2b1]█[color=#c6b4a1]█[color=#beab98]██[color=#bd9e88]█[color=#d0a39a]█[color=#dcc3a7]█[color=#d0a39a]█[color=#c7b9ae]█[color=#d3c2b1]█[color=#dbcec2]██[color=#d0a39a]█[color=#a88f76]█[color=#83776e]██[color=#9b8167]█[color=#a88f76]█[color=#ad9b87]█[color=#b0a395]█[color=#a19082]█[color=#706a65]█[color=#625d59]█[color=#504843]█[color=#4b433c]█[color=#3a3634]█[color=#39332d]██
-
- [color=#55575a]█[color=#56524d]█[color=#706a65]██[color=#8e8884]█[color=#d3d0cd]█[color=#e9e9e6]█[color=#e0dcd6]█[color=#dbcec2]███[color=#d3c2b1]██[color=#beab98]█[color=#bd9e88]██[color=#d0a39a]████[color=#d3c2b1]█[color=#dbcec2]█[color=#bd9e88]█[color=#9b8167]████[color=#a88f76]██[color=#ad9b87]█[color=#b0a395]█[color=#83776e]█[color=#443e38]█[color=#3a3634]█[color=#56524d]█[color=#4b433c]█[color=#443e38]█[color=#3a3634]█
-
- [color=#625d59]██[color=#706a65]█[color=#625d59]█[color=#83776e]█[color=#e0dcd6]█[color=#e9e9e6]███[color=#e0dcd6]█[color=#dbcec2]████[color=#d3c2b1]█[color=#beab98]█[color=#bd9e88]██[color=#a88f76]████[color=#9b8167]████[color=#a88f76]██[color=#ad9b87]█[color=#beab98]██[color=#b0a395]█[color=#504843]█[color=#313030]███[color=#56524d]█[color=#504843]█
-
- [color=#706a65]█[color=#625d59]███[color=#8e8884]█[color=#e9e9e6]█████[color=#e0dcd6]███[color=#dbcec2]██[color=#c7b9ae]█[color=#beab98]█[color=#ad9b87]█[color=#a88f76]██[color=#9b8167]███[color=#a88f76]██[color=#ad9b87]███[color=#beab98]██[color=#baaca0]█[color=#b0a395]█[color=#706a65]█[color=#3a3634]█[color=#313030]████
-
- [color=#55575a]███[color=#625d59]█[color=#83776e]█[color=#d3d0cd]█[color=#e0dcd6]███████[color=#dbcec2]██[color=#d3c2b1]█[color=#c6b4a1]██[color=#bd9e88]█[color=#ad9b87]█[color=#a88f76]█████[color=#ad9b87]█[color=#b0a395]██[color=#beab98]█[color=#baaca0]██[color=#ad9b87]█[color=#625d59]█[color=#3a3634]█[color=#313030]████
-
- [color=#55575a]███[color=#625d59]█[color=#706a65]█[color=#8e8884]█[color=#e0dcd6]██████[color=#dbcec2]██████[color=#c9c2ba]█[color=#c6b4a1]█[color=#bd9e88]█[color=#ad9b87]█[color=#a88f76]███[color=#b0a395]█[color=#beab98]█[color=#baaca0]███[color=#beab98]█[color=#8e8884]█[color=#56524d]█[color=#3a3634]██[color=#313030]███
-
- [color=#55575a]████[color=#625d59]█[color=#706a65]█[color=#b0a395]█[color=#d3d0cd]█[color=#e0dcd6]█[color=#e9e9e6]██████[color=#e0dcd6]███[color=#d3d0cd]█[color=#dbcec2]█[color=#c7b9ae]█[color=#beab98]█[color=#ad9b87]█[color=#a88f76]██[color=#ad9b87]█[color=#b0a395]█[color=#beab98]█[color=#baaca0]█[color=#b0a395]█[color=#ad9b87]█[color=#83776e]█[color=#443e38]█[color=#3a3634]██[color=#313030]███
-
- [color=#55575a]████[color=#625d59]█[color=#706a65]█[color=#83776e]█[color=#c9c2ba]█[color=#dbcec2]█[color=#d3d0cd]█[color=#e0dcd6]███[color=#e9e9e6]██[color=#e0dcd6]███[color=#d3d0cd]███[color=#c9c2ba]█[color=#c7b9ae]█[color=#b0a395]█[color=#a88f76]██[color=#ad9b87]█████[color=#625d59]█[color=#313030]█[color=#2c2824]██[color=#313030]███
-
- [color=#55575a]█████[color=#625d59]█[color=#706a65]█[color=#b0a395]█[color=#d3d0cd]█[color=#dbcec2]████[color=#d3d0cd]█[color=#c9c2ba]██[color=#dbcec2]█[color=#c9c2ba]███[color=#c7b9ae]█[color=#baaca0]██[color=#b0a395]█[color=#ad9b87]█[color=#a19082]██[color=#a88f76]█[color=#a19082]███[color=#625d59]█[color=#313030]█[color=#2c2824]█[color=#252320]███[color=#2c2824]█
-
- [color=#55575a]██████[color=#706a65]█[color=#a19082]█[color=#d3d0cd]██[color=#dbcec2]█[color=#d3c2b1]██[color=#c7b9ae]██[color=#c6b4a1]██[color=#baaca0]█[color=#beab98]██[color=#baaca0]█[color=#b0a395]██[color=#ad9b87]█[color=#a19082]█[color=#a88f76]█████[color=#9b8167]█[color=#4b433c]█[color=#313030]█[color=#2c2824]██[color=#252320]███
-
- [color=#55575a]██████[color=#625d59]█[color=#8e8884]█[color=#e0dcd6]██[color=#dbcec2]█[color=#d3c2b1]█[color=#c7b9ae]█[color=#c6b4a1]██[color=#beab98]██[color=#b0a395]█[color=#ad9b87]█[color=#b0a395]████[color=#ad9b87]██[color=#a19082]███[color=#a88f76]█[color=#9b8167]█[color=#56524d]█[color=#39332d]█[color=#2c2824]██[color=#252320]████
-
- [color=#55575a]███████[color=#83776e]█[color=#c9c2ba]█[color=#d3d0cd]██[color=#c9c2ba]█[color=#c6b4a1]█[color=#baaca0]███[color=#ad9b87]█[color=#a19082]██[color=#ad9b87]█[color=#beab98]███[color=#b0a395]██[color=#ad9b87]█[color=#a19082]█[color=#a88f76]██[color=#9b8167]█[color=#4b433c]█[color=#2c2824]██[color=#252320]█████
-- proto: BookFeather
- entities:
-<<<<<<< HEAD
- - uid: 1525
-=======
- - uid: 1566
->>>>>>> master
+ - uid: 2340
components:
- - type: MetaData
- desc: Книга "Борьба с терроризмом на космической станции" выглядит очень серьезно и профессионально. На обложке изображена космическая станция с несколькими космонавтами, которые явно готовятся к какому-то экстремальному событию. Название книги написано крупными черными буквами на голубом фоне, что придает ей строгость и важность. Авторы, Вадисон Стрэнглер и Михаил Хальтбар, указаны ниже названия в меньшем шрифте. Внутри книги можно найти много полезной информации и практических советов по борьбе с террористической угрозой на космической станции.
- name: Пособие по борьбе с терроризмом. Робаст индастриз
- type: Transform
- pos: -24.673494,-4.4728036
+ pos: 57.5,-5.5
parent: 2
- - type: Paper
- content: >-
- К сожалению, в наше время угроза террористических актов может распространяться не только на земле, но и в космическом пространстве. Борьба с терроризмом на космической станции является крайне важной задачей, которая требует особого подхода и внимания. В этом пособии мы рассмотрим несколько способов борьбы с террористами на космической станции.
-
-
- 1. Обучение персонала станции - для того чтобы эффективно бороться с террористами, необходимо, чтобы персонал станции был обучен и знал, как действовать в случае террористической угрозы. Это может включать в себя тренировки по эвакуации, использованию оружия и другие меры безопасности.
-
-
- 2. Установка систем безопасности - космическая станция должна быть оборудована различными системами безопасности, такими как камеры наблюдения, системы оповещения и датчики движения. Эти системы могут помочь своевременно обнаружить террористическую угрозу и предпринять соответствующие меры.
-
-
- 3. Ограничение доступа - необходимо ограничить доступ на космическую станцию только для авторизованных лиц. Это может быть достигнуто через системы идентификации и аутентификации, такие как биометрические сканеры или системы считывания карт доступа.
-
-
- 4. Создание кризисного плана - космическая станция должна иметь кризисный план, который определяет действия персонала в случае террористической угрозы. Это может включать в себя процедуры эвакуации, установку блокады и другие меры безопасности.
-
-
- Борьба с террористами на космической станции является сложной и ответственной задачей, которая требует совместных усилий персонала станции, правоохранительных органов и других заинтересованных сторон. Однако, при правильной подготовке и принятии соответствующих мер безопасности, возможно минимизировать риски террористической угрозы на космической станции.
-- proto: BookRandom
- entities:
-<<<<<<< HEAD
- - uid: 1526
-=======
- - uid: 1567
->>>>>>> master
+ - uid: 2341
components:
- - type: MetaData
- desc: В этой таинсвтенной книге в твердом переплете, Вы сможете открыть для себя целый "внутренний" мир.
- name: Анатомия для чайников
- type: Transform
- pos: 6.298485,-48.571903
+ pos: 63.5,10.5
parent: 2
-<<<<<<< HEAD
- - uid: 1527
-=======
- - uid: 1568
->>>>>>> master
+ - uid: 2342
components:
- type: Transform
- pos: -23.778364,-12.554576
+ pos: 46.5,0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1528
-=======
- - uid: 1569
->>>>>>> master
+ - uid: 2343
components:
- - type: MetaData
- desc: В этой книге много интересных картинок, только вряд ли Вы сможе понять их.
- name: Механика для чайников
- type: Transform
- pos: 10.142386,-3.4094415
+ pos: 62.5,27.5
parent: 2
-<<<<<<< HEAD
- - uid: 1529
-=======
- - uid: 1570
->>>>>>> master
+ - uid: 2344
components:
- type: Transform
- pos: -33.672646,-8.453057
+ pos: 6.5,56.5
parent: 2
-<<<<<<< HEAD
- - uid: 1530
-=======
- - uid: 1571
->>>>>>> master
+ - uid: 2345
components:
- type: Transform
- pos: -23.476131,-12.262708
+ pos: -46.5,-47.5
parent: 2
-<<<<<<< HEAD
- - uid: 1531
-=======
- - uid: 1572
->>>>>>> master
+ - uid: 2346
components:
- type: Transform
- pos: -23.232197,-12.535765
+ pos: -46.5,-42.5
parent: 2
-<<<<<<< HEAD
- - uid: 1532
-=======
- - uid: 1573
->>>>>>> master
+ - uid: 2347
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.507277,-8.33971
+ pos: 66.5,28.5
parent: 2
-<<<<<<< HEAD
- - uid: 1533
-=======
- - uid: 1574
->>>>>>> master
+ - uid: 2348
components:
- type: Transform
- pos: -21.537008,-4.499959
+ pos: -51.5,-47.5
parent: 2
-<<<<<<< HEAD
- - uid: 1534
-=======
- - uid: 1575
->>>>>>> master
+ - uid: 2349
components:
- type: Transform
- pos: -21.771383,-4.484334
+ pos: -4.5,-68.5
parent: 2
-<<<<<<< HEAD
- - uid: 1535
-=======
- - uid: 1576
->>>>>>> master
+ - uid: 2350
components:
- type: Transform
- pos: -22.67433,0.54259586
+ pos: -10.5,29.5
parent: 2
-<<<<<<< HEAD
- - uid: 1536
-=======
- - uid: 1577
->>>>>>> master
+ - uid: 2351
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.501118,-8.318875
+ pos: -73.5,21.5
parent: 2
-<<<<<<< HEAD
- - uid: 1537
-=======
- - uid: 1578
->>>>>>> master
+ - uid: 2352
components:
- type: Transform
- pos: -27.520205,-11.001986
+ pos: 41.5,29.5
parent: 2
-<<<<<<< HEAD
-- proto: BookSecurity
- entities:
- - uid: 1538
-=======
-- proto: BookRandomStory
- entities:
- - uid: 1579
+ - uid: 2353
components:
- type: Transform
- pos: 82.764046,5.5351195
+ pos: -68.5,-37.5
parent: 2
- - uid: 1580
+ - uid: 2354
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: 81.826546,5.6757445
+ pos: 70.5,15.5
parent: 2
- - uid: 1581
+ - uid: 2355
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: -40.3486,44.27363
+ pos: -55.5,-44.5
parent: 2
- - uid: 1582
+ - uid: 2356
components:
- type: Transform
- rot: 3.141593671850739 rad
- pos: -40.582973,44.539253
+ pos: 78.5,23.5
parent: 2
-- proto: BookSecurity
- entities:
- - uid: 1583
->>>>>>> master
+ - uid: 2357
components:
- type: Transform
- pos: -22.528498,0.6467625
+ pos: 44.5,21.5
parent: 2
-- proto: Bookshelf
- entities:
-<<<<<<< HEAD
- - uid: 1539
-=======
- - uid: 1584
->>>>>>> master
+ - uid: 2358
components:
- type: Transform
- pos: -33.5,-6.5
+ pos: 73.5,6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1540
-=======
- - uid: 1585
->>>>>>> master
+ - uid: 2359
components:
- type: Transform
- pos: -27.5,2.5
+ pos: 40.5,30.5
parent: 2
-<<<<<<< HEAD
- - uid: 1541
-=======
- - uid: 1586
->>>>>>> master
+ - uid: 2360
components:
- type: Transform
- pos: -26.5,2.5
+ pos: -68.5,34.5
parent: 2
-<<<<<<< HEAD
- - uid: 1542
-=======
- - uid: 1587
->>>>>>> master
+ - uid: 2361
components:
- type: Transform
- pos: -14.5,7.5
+ pos: 75.5,23.5
parent: 2
-<<<<<<< HEAD
- - uid: 1543
-=======
- - uid: 1588
->>>>>>> master
+ - uid: 2362
components:
- type: Transform
- pos: -14.5,11.5
+ pos: 68.5,25.5
parent: 2
-<<<<<<< HEAD
- - uid: 1544
+ - uid: 2363
components:
- type: Transform
- pos: -35.5,-63.5
+ pos: 69.5,25.5
parent: 2
- - uid: 1545
+ - uid: 2364
components:
- type: Transform
- pos: -29.5,-65.5
+ pos: -52.5,-36.5
parent: 2
- - uid: 1546
+ - uid: 2365
components:
- type: Transform
- pos: -40.5,-62.5
+ pos: 70.5,25.5
parent: 2
- - uid: 1547
+ - uid: 2366
components:
- type: Transform
- pos: -32.5,-64.5
+ pos: 71.5,25.5
parent: 2
- - uid: 1548
-=======
- - uid: 1589
->>>>>>> master
+ - uid: 2367
components:
- type: Transform
- pos: -13.5,-64.5
+ pos: -33.5,-31.5
parent: 2
-<<<<<<< HEAD
- - uid: 1549
+ - uid: 2368
components:
- type: Transform
- pos: -35.5,-65.5
+ pos: 73.5,-3.5
parent: 2
- - uid: 1550
+ - uid: 2369
components:
- type: Transform
- pos: -39.5,-62.5
+ pos: -68.5,40.5
parent: 2
- - uid: 1551
+ - uid: 2370
components:
- type: Transform
- pos: -33.5,-64.5
+ pos: 4.5,-70.5
parent: 2
- - uid: 1552
+ - uid: 2371
components:
- type: Transform
- pos: -40.5,-64.5
+ pos: -68.5,38.5
parent: 2
- - uid: 1553
+ - uid: 2372
components:
- type: Transform
- pos: -39.5,-66.5
+ pos: 72.5,25.5
parent: 2
- - uid: 1554
+ - uid: 2373
components:
- type: Transform
- pos: -33.5,-66.5
+ pos: 70.5,25.5
parent: 2
- - uid: 1555
-=======
- - uid: 1590
->>>>>>> master
+ - uid: 2374
components:
- type: Transform
- pos: -27.5,-4.5
+ pos: -31.5,-55.5
parent: 2
-<<<<<<< HEAD
- - uid: 1556
+ - uid: 2375
components:
- type: Transform
- pos: -39.5,-64.5
+ pos: 70.5,24.5
parent: 2
- - uid: 1557
+ - uid: 2376
components:
- type: Transform
- pos: -40.5,-66.5
+ pos: -69.5,45.5
parent: 2
- - uid: 1558
+ - uid: 2377
components:
- type: Transform
- pos: -35.5,-61.5
+ pos: -68.5,22.5
parent: 2
- - uid: 1559
+ - uid: 2378
components:
- type: Transform
- pos: -32.5,-66.5
+ pos: 52.5,0.5
parent: 2
- - uid: 1560
-=======
- - uid: 1591
->>>>>>> master
+ - uid: 2379
components:
- type: Transform
- pos: -19.5,-64.5
+ pos: 70.5,23.5
parent: 2
-- proto: BookshelfFilled
- entities:
-<<<<<<< HEAD
- - uid: 1561
+ - uid: 2380
components:
- type: Transform
- pos: 87.5,8.5
+ pos: -56.5,-9.5
parent: 2
- - uid: 1562
-=======
- - uid: 1592
->>>>>>> master
+ - uid: 2381
components:
- type: Transform
- pos: -30.5,-4.5
+ pos: 39.5,18.5
parent: 2
-<<<<<<< HEAD
- - uid: 1563
-=======
- - uid: 1593
->>>>>>> master
+ - uid: 2382
components:
- type: Transform
- pos: -34.5,-4.5
+ pos: 54.5,0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1564
-=======
- - uid: 1594
->>>>>>> master
+ - uid: 2383
components:
- type: Transform
- pos: -34.5,-6.5
+ pos: 35.5,20.5
parent: 2
-<<<<<<< HEAD
- - uid: 1565
-=======
- - uid: 1595
->>>>>>> master
+ - uid: 2384
components:
- type: Transform
- pos: -33.5,-4.5
+ pos: 37.5,20.5
parent: 2
-<<<<<<< HEAD
- - uid: 1566
+ - uid: 2385
components:
- type: Transform
- pos: 86.5,8.5
+ pos: 70.5,22.5
parent: 2
- - uid: 1567
+ - uid: 2386
components:
- type: Transform
- pos: -26.5,-4.5
+ pos: 70.5,21.5
parent: 2
- - uid: 1568
+ - uid: 2387
components:
- type: Transform
- pos: -65.5,-37.5
+ pos: 66.5,29.5
parent: 2
- - uid: 1569
+ - uid: 2388
components:
- type: Transform
- pos: -53.5,-48.5
+ pos: 69.5,22.5
parent: 2
- - uid: 1570
+ - uid: 2389
components:
- type: Transform
- pos: -52.5,-48.5
+ pos: 68.5,22.5
parent: 2
- - uid: 1571
+ - uid: 2390
components:
- type: Transform
- pos: -71.5,-33.5
+ pos: 67.5,22.5
parent: 2
- - uid: 1572
+ - uid: 2391
components:
- type: Transform
- pos: -71.5,-34.5
+ pos: 66.5,22.5
parent: 2
- - uid: 1573
+ - uid: 2392
components:
- type: Transform
- pos: -48.5,-42.5
+ pos: -53.5,50.5
parent: 2
- - uid: 1574
+ - uid: 2393
components:
- type: Transform
- pos: 72.5,-39.5
+ pos: 65.5,22.5
parent: 2
- - uid: 1575
+ - uid: 2394
components:
- type: Transform
- pos: -28.5,2.5
+ pos: 64.5,22.5
parent: 2
- - uid: 1576
+ - uid: 2395
components:
- type: Transform
- pos: -29.5,2.5
+ pos: 71.5,18.5
parent: 2
- - uid: 1577
+ - uid: 2396
components:
- type: Transform
- pos: -29.5,-4.5
+ pos: -48.5,54.5
parent: 2
- - uid: 1578
+ - uid: 2397
components:
- type: Transform
- pos: -21.5,-12.5
+ pos: 46.5,22.5
parent: 2
- - uid: 1579
+ - uid: 2398
components:
- type: Transform
- pos: -26.5,-6.5
+ pos: 63.5,22.5
parent: 2
- - uid: 1580
+ - uid: 2399
components:
- type: Transform
- pos: -30.5,-6.5
+ pos: 62.5,22.5
parent: 2
-- proto: BoozeDispenser
- entities:
- - uid: 1581
-=======
- - uid: 1596
+ - uid: 2400
components:
- type: Transform
- pos: -26.5,-4.5
+ pos: 62.5,21.5
parent: 2
- - uid: 1597
+ - uid: 2401
components:
- type: Transform
- pos: -53.5,-48.5
+ pos: 61.5,22.5
parent: 2
- - uid: 1598
+ - uid: 2402
components:
- type: Transform
- pos: -52.5,-48.5
+ pos: 48.5,14.5
parent: 2
- - uid: 1599
+ - uid: 2403
components:
- type: Transform
- pos: -48.5,-42.5
+ pos: -26.5,-77.5
parent: 2
- - uid: 1600
+ - uid: 2404
components:
- type: Transform
- pos: 72.5,-39.5
+ pos: 41.5,20.5
parent: 2
- - uid: 1601
+ - uid: 2405
components:
- type: Transform
- pos: -28.5,2.5
+ pos: 51.5,6.5
parent: 2
- - uid: 1602
+ - uid: 2406
components:
- type: Transform
- pos: -29.5,2.5
+ pos: -66.5,-19.5
parent: 2
- - uid: 1603
+ - uid: 2407
components:
- type: Transform
- pos: -29.5,-4.5
+ pos: 74.5,22.5
parent: 2
- - uid: 1604
+ - uid: 2408
components:
- type: Transform
- pos: -21.5,-12.5
+ pos: 23.5,16.5
parent: 2
- - uid: 1605
+ - uid: 2409
components:
- type: Transform
- pos: -26.5,-6.5
+ pos: 68.5,13.5
parent: 2
- - uid: 1606
+ - uid: 2410
components:
- type: Transform
- pos: -30.5,-6.5
+ pos: 70.5,0.5
parent: 2
- - uid: 1607
+ - uid: 2411
components:
- type: Transform
- pos: -29.5,-67.5
+ pos: -37.5,-22.5
parent: 2
- - uid: 1608
+ - uid: 2412
components:
- type: Transform
- pos: -29.5,-66.5
+ pos: 47.5,16.5
parent: 2
- - uid: 1609
+ - uid: 2413
components:
- type: Transform
- pos: 82.5,7.5
+ pos: 53.5,4.5
parent: 2
- - uid: 1610
+ - uid: 2414
components:
- type: Transform
- pos: 83.5,7.5
+ pos: 49.5,5.5
parent: 2
- - uid: 1611
+ - uid: 2415
components:
- type: Transform
- pos: 81.5,7.5
+ pos: 33.5,19.5
parent: 2
- - uid: 1612
+ - uid: 2416
components:
- type: Transform
- pos: -52.5,-35.5
+ pos: 52.5,14.5
parent: 2
- - uid: 38434
+ - uid: 2417
components:
- type: Transform
- pos: -10.5,-7.5
- parent: 38344
- - uid: 38435
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 2418
components:
- type: Transform
- pos: 3.5,-5.5
- parent: 38344
-- proto: BoozeDispenser
- entities:
- - uid: 1613
->>>>>>> master
+ pos: -0.5,1.5
+ parent: 2
+ - uid: 2419
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,-47.5
+ pos: -0.5,-6.5
parent: 2
-<<<<<<< HEAD
- - uid: 1582
-=======
- - uid: 1614
->>>>>>> master
+ - uid: 2420
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,43.5
+ pos: -0.5,-5.5
parent: 2
- - type: ContainerContainer
- containers:
- ReagentDispenser-beaker: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- beakerSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
-- proto: BorgCharger
- entities:
-<<<<<<< HEAD
- - uid: 1583
-=======
- - uid: 1615
->>>>>>> master
+ - uid: 2421
components:
- type: Transform
- pos: -78.5,11.5
+ pos: -0.5,-4.5
parent: 2
-<<<<<<< HEAD
-- proto: BorgModuleClowning
- entities:
- - uid: 1584
-=======
- - uid: 1616
+ - uid: 2422
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-6.5
+ pos: 40.5,24.5
parent: 2
- - uid: 1617
+ - uid: 2423
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-6.5
+ pos: -48.5,53.5
parent: 2
- - uid: 1618
+ - uid: 2424
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-6.5
+ pos: 49.5,6.5
parent: 2
-- proto: BorgModuleClowning
- entities:
- - uid: 1619
->>>>>>> master
+ - uid: 2425
components:
- type: Transform
- pos: 10.353839,70.644646
+ pos: 73.5,12.5
parent: 2
-- proto: BoxBeanbag
- entities:
-<<<<<<< HEAD
- - uid: 1585
+ - uid: 2426
components:
- type: Transform
- pos: 67.5,8.5
+ pos: 73.5,21.5
parent: 2
- - uid: 1586
+ - uid: 2427
components:
- type: Transform
- pos: -3.5094411,38.647697
+ pos: 65.5,-3.5
parent: 2
- - uid: 1587
+ - uid: 2428
components:
- type: Transform
- pos: -3.4469776,38.932606
+ pos: -70.5,31.5
parent: 2
- - uid: 1589
+ - uid: 2429
components:
- type: Transform
- parent: 1588
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1592
+ pos: 71.5,14.5
+ parent: 2
+ - uid: 2430
components:
- type: Transform
- pos: 67.5,8.5
+ pos: 73.5,-0.5
parent: 2
-- proto: BoxBodyBag
- entities:
- - uid: 1593
-=======
- - uid: 1620
+ - uid: 2431
components:
- type: Transform
- pos: -3.5094411,38.647697
+ pos: -70.5,21.5
parent: 2
- - uid: 1621
+ - uid: 2432
components:
- type: Transform
- pos: -3.4469776,38.932606
+ pos: 46.5,3.5
parent: 2
- - uid: 1623
+ - uid: 2433
components:
- type: Transform
- parent: 1622
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1626
+ pos: 43.5,20.5
+ parent: 2
+ - uid: 2434
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 59.413765,9.540251
+ pos: 58.5,0.5
parent: 2
- - uid: 1627
+ - uid: 2435
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 59.413765,9.52802
+ pos: 72.5,-0.5
parent: 2
-- proto: BoxBodyBag
- entities:
- - uid: 1628
->>>>>>> master
+ - uid: 2436
components:
- type: Transform
- pos: 14.516084,-57.596573
+ pos: 19.5,70.5
parent: 2
-<<<<<<< HEAD
- - uid: 1594
-=======
- - uid: 1629
->>>>>>> master
+ - uid: 2437
components:
- type: Transform
- pos: 14.64542,-37.37316
+ pos: 7.5,59.5
parent: 2
-<<<<<<< HEAD
- - uid: 1595
-=======
- - uid: 1630
->>>>>>> master
+ - uid: 2438
components:
- type: Transform
- pos: 14.02042,-37.388786
+ pos: 35.5,-25.5
parent: 2
-<<<<<<< HEAD
- - uid: 1596
-=======
- - uid: 1631
->>>>>>> master
+ - uid: 2439
components:
- type: Transform
- pos: 72.50579,23.559893
+ pos: -58.5,-43.5
parent: 2
-<<<<<<< HEAD
- - uid: 1597
-=======
- - uid: 1632
->>>>>>> master
+ - uid: 2440
components:
- type: Transform
- pos: -23.5,-74.5
+ pos: 69.5,17.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1598
-=======
- - uid: 1633
->>>>>>> master
+ - uid: 2441
components:
- type: Transform
- pos: -23.379358,-74.404076
+ pos: -58.5,-46.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1599
-=======
- - uid: 1634
->>>>>>> master
+ - uid: 2442
components:
- type: Transform
- pos: 26.500849,9.893845
+ pos: 46.5,24.5
parent: 2
-<<<<<<< HEAD
- - uid: 1600
-=======
- - uid: 1635
->>>>>>> master
+ - uid: 2443
components:
- type: Transform
- pos: 35.57008,-18.332962
+ pos: -58.5,-47.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1601
-=======
- - uid: 1636
->>>>>>> master
+ - uid: 2444
components:
- type: Transform
- pos: -24.379358,-64.44205
+ pos: 90.5,2.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1602
-=======
- - uid: 1637
->>>>>>> master
+ - uid: 2445
components:
- type: Transform
- pos: 4.458846,-52.43695
+ pos: -58.5,-42.5
parent: 2
-<<<<<<< HEAD
- - uid: 1603
-=======
- - uid: 1638
->>>>>>> master
+ - uid: 2446
components:
- type: Transform
- pos: 8.5624,-42.649765
+ pos: -10.5,33.5
parent: 2
-<<<<<<< HEAD
- - uid: 1604
-=======
- - uid: 1639
->>>>>>> master
+ - uid: 2447
components:
- type: Transform
- pos: 13.411045,-37.388786
+ pos: -58.5,-38.5
parent: 2
-- proto: BoxBottle
- entities:
-<<<<<<< HEAD
- - uid: 882
- components:
- - type: Transform
- parent: 880
-=======
- - uid: 873
+ - uid: 2448
components:
- type: Transform
- parent: 871
->>>>>>> master
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1640
+ pos: -68.5,45.5
+ parent: 2
+ - uid: 2449
components:
- type: Transform
- pos: -20.540075,-60.426083
+ pos: -61.5,-42.5
parent: 2
-- proto: BoxCandleSmall
- entities:
-<<<<<<< HEAD
- - uid: 1605
-=======
- - uid: 1641
->>>>>>> master
+ - uid: 2450
components:
- type: Transform
- pos: -22.343113,-4.447041
+ pos: -32.5,-43.5
parent: 2
-- proto: BoxCardboard
- entities:
-<<<<<<< HEAD
- - uid: 1606
-=======
- - uid: 1642
->>>>>>> master
+ - uid: 2451
components:
- type: Transform
- pos: -18.498352,-32.30649
+ pos: -111.5,23.5
parent: 2
-<<<<<<< HEAD
-- proto: BoxDarts
- entities:
- - uid: 1607
-=======
- - uid: 1643
+ - uid: 2452
components:
- type: Transform
- pos: -8.344327,-54.423183
+ pos: 63.5,0.5
parent: 2
- - uid: 1644
+ - uid: 2453
components:
- type: Transform
- pos: -8.674554,-54.618874
+ pos: 56.5,23.5
parent: 2
-- proto: BoxDarts
- entities:
- - uid: 1645
->>>>>>> master
+ - uid: 2454
components:
- type: Transform
- pos: 70.64869,23.60806
+ pos: 46.5,12.5
parent: 2
-<<<<<<< HEAD
- - uid: 1608
+ - uid: 2455
components:
- type: Transform
- pos: -62.5,-39.5
+ pos: 47.5,7.5
parent: 2
-- proto: BoxEvidenceMarkers
- entities:
- - uid: 1610
+ - uid: 2456
components:
- type: Transform
- parent: 1609
-=======
-- proto: BoxEvidenceMarkers
- entities:
- - uid: 1647
+ pos: 47.5,12.5
+ parent: 2
+ - uid: 2457
components:
- type: Transform
- parent: 1646
->>>>>>> master
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxFlashbang
- entities:
-<<<<<<< HEAD
- - uid: 1611
-=======
- - uid: 1648
->>>>>>> master
+ pos: 47.5,10.5
+ parent: 2
+ - uid: 2458
components:
- type: Transform
- pos: 58.46948,15.545851
+ pos: 47.5,11.5
parent: 2
-- proto: BoxFolderBase
- entities:
-<<<<<<< HEAD
- - uid: 1612
-=======
- - uid: 1649
->>>>>>> master
+ - uid: 2459
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.467598,-4.2868743
+ pos: 47.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 1613
-=======
- - uid: 1650
->>>>>>> master
+ - uid: 2460
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.608223,-4.4431243
+ pos: 47.5,8.5
parent: 2
-- proto: BoxFolderBlack
- entities:
-<<<<<<< HEAD
- - uid: 1614
-=======
- - uid: 1651
->>>>>>> master
+ - uid: 2461
components:
- type: Transform
- pos: 34.33272,2.6378307
+ pos: 51.5,19.5
parent: 2
-<<<<<<< HEAD
- - uid: 1615
-=======
- - uid: 1652
->>>>>>> master
+ - uid: 2462
components:
- type: Transform
- pos: -21.65159,-7.2404675
+ pos: 54.5,-3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1616
-=======
- - uid: 1653
->>>>>>> master
+ - uid: 2463
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.469776,27.71739
+ pos: 55.5,-3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1617
-=======
- - uid: 1654
->>>>>>> master
+ - uid: 2464
components:
- type: Transform
- pos: 72.83203,-43.635002
+ pos: -68.5,-42.5
parent: 2
-<<<<<<< HEAD
-- proto: BoxFolderBlue
- entities:
- - uid: 1618
-=======
- - uid: 38436
+ - uid: 2465
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.489042,33.8674
- parent: 38344
-- proto: BoxFolderBlue
- entities:
- - uid: 1655
->>>>>>> master
+ pos: 9.5,10.5
+ parent: 2
+ - uid: 2466
components:
- type: Transform
- pos: -11.722464,-1.4301846
+ pos: 9.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 1619
-=======
- - uid: 1656
->>>>>>> master
+ - uid: 2467
components:
- type: Transform
- pos: -24.381498,22.74946
+ pos: 13.5,9.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1620
-=======
- - uid: 1657
->>>>>>> master
+ - uid: 2468
components:
- type: Transform
- pos: 23.637524,-46.348213
+ pos: 12.5,9.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1621
-=======
- - uid: 1658
->>>>>>> master
+ - uid: 2469
components:
- type: Transform
- pos: -62.344925,9.596943
+ pos: 7.5,8.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1622
-=======
- - uid: 1659
->>>>>>> master
+ - uid: 2470
components:
- type: Transform
- pos: 24.450024,-42.441963
+ pos: 8.5,8.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1623
-=======
- - uid: 1660
->>>>>>> master
+ - uid: 2471
components:
- type: Transform
- pos: -13.67326,5.600397
+ pos: 9.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1624
-=======
- - uid: 1661
->>>>>>> master
+ - uid: 2472
components:
- type: Transform
- pos: 8.528144,7.5618477
+ pos: 10.5,8.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1625
-=======
- - uid: 1662
->>>>>>> master
+ - uid: 2473
components:
- type: Transform
- pos: 53.362377,16.215246
+ pos: 11.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1626
-=======
- - uid: 1663
->>>>>>> master
+ - uid: 2474
components:
- type: Transform
- pos: -4.5355453,-60.37103
+ pos: 12.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1627
-=======
- - uid: 1664
->>>>>>> master
+ - uid: 2475
components:
- type: Transform
- pos: -19.490316,-49.45443
+ pos: 12.5,7.5
parent: 2
-<<<<<<< HEAD
- - uid: 1628
-=======
- - uid: 1665
->>>>>>> master
+ - uid: 2476
components:
- type: Transform
- pos: 1.5749657,13.635027
+ pos: -9.5,10.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1629
-=======
- - uid: 1666
->>>>>>> master
+ - uid: 2477
components:
- type: Transform
- pos: 51.525723,-22.433455
+ pos: -10.5,8.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1630
-=======
- - uid: 1667
->>>>>>> master
+ - uid: 2478
components:
- type: Transform
- pos: 53.831127,16.168371
+ pos: -11.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1631
-=======
- - uid: 1668
->>>>>>> master
+ - uid: 2479
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,0.5
+ pos: -8.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 1632
-=======
- - uid: 1669
->>>>>>> master
+ - uid: 2480
components:
- type: Transform
- pos: 53.643627,16.105871
+ pos: -9.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 1633
-=======
- - uid: 1670
->>>>>>> master
+ - uid: 2481
components:
- type: Transform
- pos: -12.5,9.5
+ pos: -10.5,9.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1634
-=======
- - uid: 1671
->>>>>>> master
+ - uid: 2482
components:
- type: Transform
- pos: 8.361257,0.68303835
+ pos: -14.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 1635
-=======
- - uid: 1672
->>>>>>> master
+ - uid: 2483
components:
- type: Transform
- pos: 53.471752,16.152746
+ pos: -13.5,9.5
parent: 2
-<<<<<<< HEAD
- - uid: 1636
-=======
- - uid: 1673
->>>>>>> master
+ - uid: 2484
components:
- type: Transform
- pos: -11.316215,-1.3208096
+ pos: -12.5,9.5
parent: 2
-- proto: BoxFolderClipboard
- entities:
-<<<<<<< HEAD
- - uid: 1637
-=======
- - uid: 1674
->>>>>>> master
+ - uid: 2485
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.524487,-0.34152007
+ pos: -11.5,9.5
parent: 2
-- proto: BoxFolderGrey
- entities:
-<<<<<<< HEAD
- - uid: 1638
-=======
- - uid: 1675
->>>>>>> master
+ - uid: 2486
components:
- type: Transform
- pos: -27.454956,20.554731
+ pos: -11.5,10.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1639
-=======
- - uid: 1676
->>>>>>> master
+ - uid: 2487
components:
- type: Transform
- pos: -23.4916,-4.411229
+ pos: -11.5,11.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1640
-=======
- - uid: 1677
->>>>>>> master
+ - uid: 2488
components:
- type: Transform
- pos: -34.475735,-11.38378
+ pos: -11.5,12.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1641
-=======
- - uid: 1678
->>>>>>> master
+ - uid: 2489
components:
- type: Transform
- pos: -20.373795,-42.708656
+ pos: -11.5,-7.5
parent: 2
-<<<<<<< HEAD
- - uid: 1642
-=======
- - uid: 1679
->>>>>>> master
+ - uid: 2490
components:
- type: Transform
- pos: -20.56322,-42.446686
+ pos: -14.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1643
-=======
- - uid: 1680
->>>>>>> master
+ - uid: 2491
components:
- type: Transform
- pos: 37.533417,-10.380364
+ pos: -13.5,3.5
parent: 2
-<<<<<<< HEAD
- - type: Physics
- canCollide: False
- - uid: 1644
+ - uid: 2492
components:
- type: Transform
- pos: -39.49025,-59.400646
+ pos: -14.5,1.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 1645
-=======
- - type: Physics
- canCollide: False
- - uid: 1681
->>>>>>> master
+ - uid: 2493
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.44036,62.57854
+ pos: -13.5,1.5
parent: 2
-<<<<<<< HEAD
- - uid: 1646
+ - uid: 2494
components:
- type: Transform
- pos: -39.459,-69.3694
+ pos: -12.5,1.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 1647
+ - uid: 2495
components:
- type: Transform
- pos: -36.49025,-68.4944
+ pos: -15.5,-0.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 1648
-=======
- - uid: 1682
->>>>>>> master
+ - uid: 2496
components:
- type: Transform
- pos: -13.474747,-79.39744
+ pos: -14.5,-0.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1649
-=======
- - uid: 1683
->>>>>>> master
+ - uid: 2497
components:
- type: Transform
- pos: 36.564667,-13.317864
+ pos: -13.5,-0.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1650
-=======
- - uid: 1684
->>>>>>> master
+ - uid: 2498
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.389957,60.528397
+ pos: -12.5,-0.5
parent: 2
-- proto: BoxFolderRed
- entities:
-<<<<<<< HEAD
- - uid: 1651
-=======
- - uid: 1685
->>>>>>> master
+ - uid: 2499
components:
- type: Transform
- pos: 53.315502,16.699621
+ pos: -15.5,4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1652
-=======
- - uid: 1686
->>>>>>> master
+ - uid: 2500
components:
- type: Transform
- pos: 53.456127,16.590246
+ pos: -14.5,4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1653
-=======
- - uid: 1687
->>>>>>> master
+ - uid: 2501
components:
- type: Transform
- pos: 72.5231,22.197773
+ pos: -10.5,-7.5
parent: 2
-<<<<<<< HEAD
- - uid: 1654
-=======
- - uid: 1688
->>>>>>> master
+ - uid: 2502
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.463715,60.4104
+ pos: -13.5,4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1655
-=======
- - uid: 1689
->>>>>>> master
+ - uid: 2503
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.41077,27.525648
+ pos: -12.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1656
-=======
- - uid: 1690
->>>>>>> master
+ - uid: 2504
components:
- type: Transform
- pos: 34.494984,2.5345864
+ pos: -11.5,1.5
parent: 2
-<<<<<<< HEAD
- - uid: 1657
-=======
- - uid: 1691
->>>>>>> master
+ - uid: 2505
components:
- type: Transform
- pos: 26.5,-3.5
+ pos: -14.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1658
-=======
- - uid: 1692
->>>>>>> master
+ - uid: 2506
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.56962,9.853551
+ pos: -13.5,-4.5
parent: 2
-<<<<<<< HEAD
- - uid: 1659
-=======
- - uid: 1693
->>>>>>> master
+ - uid: 2507
components:
- type: Transform
- pos: 41.496258,20.571657
+ pos: -12.5,-4.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1660
-=======
- - uid: 1694
->>>>>>> master
+ - uid: 2508
components:
- type: Transform
- pos: 38.53962,22.54246
+ pos: -11.5,-4.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1661
-=======
- - uid: 1695
->>>>>>> master
+ - uid: 2509
components:
- type: Transform
- pos: 51.53175,-14.501758
+ pos: -9.5,-4.5
parent: 2
-<<<<<<< HEAD
- - type: Physics
- canCollide: False
- - uid: 1662
+ - uid: 2510
components:
- type: Transform
- pos: -31.566772,-61.29911
+ pos: -10.5,-4.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 1663
-=======
- - type: Physics
- canCollide: False
- - uid: 1696
->>>>>>> master
+ - uid: 2511
components:
- type: Transform
- pos: -11.5,9.5
+ pos: -10.5,-3.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1664
-=======
- - uid: 1697
->>>>>>> master
+ - uid: 2512
components:
- type: Transform
- pos: 53.393627,16.637121
+ pos: -8.5,-0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1665
-=======
- - uid: 1698
->>>>>>> master
+ - uid: 2513
components:
- type: Transform
- pos: 72.72266,-43.3225
+ pos: -9.5,-0.5
parent: 2
-<<<<<<< HEAD
- - uid: 1666
+ - uid: 2514
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.633347,27.579762
+ pos: -10.5,-2.5
parent: 2
-- proto: BoxFolderWhite
- entities:
- - uid: 1668
+ - uid: 2515
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1669
+ pos: -10.5,-1.5
+ parent: 2
+ - uid: 2516
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1670
+ pos: -11.5,-0.5
+ parent: 2
+ - uid: 2517
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1671
+ pos: -10.5,-0.5
+ parent: 2
+ - uid: 2518
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1682
-=======
- - uid: 1699
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 2519
components:
- type: Transform
- pos: 52.447506,27.564688
+ pos: -11.5,3.5
parent: 2
- - uid: 1700
+ - uid: 2520
components:
- type: Transform
- pos: 52.68188,27.642813
+ pos: -10.5,4.5
parent: 2
- - uid: 1701
+ - uid: 2521
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.56259,29.643097
+ pos: -10.5,3.5
parent: 2
- - uid: 38437
+ - uid: 2522
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.385786,33.985413
- parent: 38344
-- proto: BoxFolderWhite
- entities:
- - uid: 1703
+ pos: -10.5,2.5
+ parent: 2
+ - uid: 2523
components:
- type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1704
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 2524
components:
- type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1705
+ pos: -9.5,1.5
+ parent: 2
+ - uid: 2525
components:
- type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1706
+ pos: -8.5,1.5
+ parent: 2
+ - uid: 2526
components:
- type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1717
->>>>>>> master
+ pos: -69.5,-40.5
+ parent: 2
+ - uid: 2527
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.404982,-37.37876
+ pos: -68.5,-44.5
parent: 2
-<<<<<<< HEAD
- - uid: 1683
-=======
- - uid: 1718
->>>>>>> master
+ - uid: 2528
components:
- type: Transform
- pos: 23.325024,-46.504463
+ pos: 62.5,28.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1684
-=======
- - uid: 1719
->>>>>>> master
+ - uid: 2529
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -25.533741,-30.547684
+ pos: -63.5,7.5
parent: 2
-<<<<<<< HEAD
- - uid: 1685
-=======
- - uid: 1720
->>>>>>> master
+ - uid: 2530
components:
- type: Transform
- pos: 34.627636,-30.622177
+ pos: 40.5,-23.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1686
-=======
- - uid: 1721
->>>>>>> master
+ - uid: 2531
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.420166,-16.41551
+ pos: 69.5,-3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1687
-=======
- - uid: 1722
->>>>>>> master
+ - uid: 2532
components:
- type: Transform
- pos: 3.4281096,-27.398321
+ pos: 6.5,55.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1688
-=======
- - uid: 1723
->>>>>>> master
+ - uid: 2533
components:
- type: Transform
- pos: 53.815502,16.605871
+ pos: 59.5,12.5
parent: 2
-<<<<<<< HEAD
- - uid: 1689
-=======
- - uid: 1724
->>>>>>> master
+ - uid: 2534
components:
- type: Transform
- pos: 22.450024,-42.441963
+ pos: -23.5,27.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1690
-=======
- - uid: 1725
->>>>>>> master
+ - uid: 2535
components:
- type: Transform
- pos: 21.190166,-24.38206
+ pos: 53.5,19.5
parent: 2
-<<<<<<< HEAD
- - uid: 1691
-=======
- - uid: 1726
->>>>>>> master
+ - uid: 2536
components:
- type: Transform
- pos: 42.5,-69.5
+ pos: 52.5,-3.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1692
-=======
- - uid: 1727
->>>>>>> master
+ - uid: 2537
components:
- type: Transform
- pos: 41.5,-74.5
+ pos: 50.5,-3.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1693
-=======
- - uid: 1728
->>>>>>> master
+ - uid: 2538
components:
- type: Transform
- pos: 21.601835,-24.389095
+ pos: 51.5,-3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1694
-=======
- - uid: 1729
->>>>>>> master
+ - uid: 2539
components:
- type: Transform
- pos: 39.5,-74.5
+ pos: 53.5,-3.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1695
-=======
- - uid: 1730
->>>>>>> master
+ - uid: 2540
components:
- type: Transform
- pos: 12.018113,-52.407093
+ pos: 9.5,57.5
parent: 2
-<<<<<<< HEAD
- - uid: 1696
-=======
- - uid: 1731
->>>>>>> master
+ - uid: 2541
components:
- type: Transform
- pos: 53.784252,16.699621
+ pos: 47.5,-8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1697
-=======
- - uid: 1732
->>>>>>> master
+ - uid: 2542
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.590744,-60.30695
+ pos: 63.5,-18.5
parent: 2
-<<<<<<< HEAD
- - uid: 1698
-=======
- - uid: 1733
->>>>>>> master
+ - uid: 2543
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.278481,-58.12024
+ pos: -46.5,9.5
parent: 2
-- proto: BoxFolderYellow
- entities:
-<<<<<<< HEAD
- - uid: 1699
-=======
- - uid: 1734
->>>>>>> master
+ - uid: 2544
components:
- type: Transform
- pos: -24.600248,22.53071
+ pos: 37.5,10.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1700
-=======
- - uid: 1735
->>>>>>> master
+ - uid: 2545
components:
- type: Transform
- pos: -62.594925,9.409443
+ pos: 44.5,-28.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1701
-=======
- - uid: 1736
->>>>>>> master
+ - uid: 2546
components:
- type: Transform
- pos: 27.524498,36.5593
+ pos: 2.5,29.5
parent: 2
-<<<<<<< HEAD
- - type: Physics
- canCollide: False
- - uid: 1702
+ - uid: 2547
components:
- type: Transform
- pos: -28.464966,-74.492966
+ pos: 28.5,-19.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 1703
-=======
- - type: Physics
- canCollide: False
- - uid: 1737
->>>>>>> master
+ - uid: 2548
components:
- type: Transform
- pos: -10.5,9.5
+ pos: 29.5,1.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1704
-=======
- - uid: 1738
->>>>>>> master
+ - uid: 2549
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.366608,62.740784
+ pos: 40.5,-38.5
parent: 2
-<<<<<<< HEAD
- - uid: 1705
-=======
- - uid: 1739
->>>>>>> master
+ - uid: 2550
components:
- type: Transform
- pos: 72.33203,-43.338123
+ pos: 62.5,-29.5
parent: 2
-<<<<<<< HEAD
- - uid: 1706
-=======
- - uid: 1740
->>>>>>> master
+ - uid: 2551
components:
- type: Transform
- pos: 9.74218,32.600994
+ pos: 71.5,-51.5
parent: 2
-- proto: BoxForensicPad
- entities:
-<<<<<<< HEAD
- - uid: 1707
-=======
- - uid: 1741
->>>>>>> master
+ - uid: 2552
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.52093,12.580546
+ pos: 28.5,-70.5
parent: 2
-- proto: BoxHandcuff
- entities:
-<<<<<<< HEAD
- - uid: 1708
-=======
- - uid: 1742
->>>>>>> master
+ - uid: 2553
components:
- type: Transform
- pos: 54.270676,3.577455
+ pos: -30.5,-75.5
parent: 2
-<<<<<<< HEAD
-- proto: BoxHug
- entities:
- - uid: 1709
-=======
- - uid: 38438
+ - uid: 2554
components:
- type: Transform
- pos: 11.35289,-6.4263306
- parent: 38344
- - uid: 38439
+ pos: -46.5,-27.5
+ parent: 2
+ - uid: 2555
components:
- type: Transform
- pos: 11.63414,-6.5200806
- parent: 38344
-- proto: BoxHug
- entities:
- - uid: 1743
->>>>>>> master
+ pos: 12.5,-39.5
+ parent: 2
+ - uid: 2556
components:
- type: Transform
- pos: -12.620868,53.679634
+ pos: 49.5,-28.5
parent: 2
-<<<<<<< HEAD
- - uid: 1710
+ - uid: 2557
components:
- type: Transform
- pos: -12.364026,54.00986
+ pos: 44.5,0.5
parent: 2
-- proto: BoxingBell
- entities:
- - uid: 1711
+ - uid: 2558
components:
- type: Transform
-=======
- - uid: 1744
+ pos: 31.5,4.5
+ parent: 2
+ - uid: 2559
components:
- type: Transform
- pos: -12.364026,54.00986
+ pos: 56.5,-28.5
parent: 2
- - uid: 1745
+ - uid: 2560
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -44.568638,-67.518234
+ pos: 41.5,-45.5
parent: 2
-- proto: BoxingBell
- entities:
- - uid: 1746
+ - uid: 2561
components:
- type: Transform
->>>>>>> master
- pos: 59.5,-16.5
+ pos: 16.5,38.5
parent: 2
-- proto: BoxLatexGloves
- entities:
-<<<<<<< HEAD
- - uid: 883
+ - uid: 2562
components:
- type: Transform
- parent: 880
-=======
- - uid: 874
+ pos: -38.5,-11.5
+ parent: 2
+ - uid: 2563
components:
- type: Transform
- parent: 871
->>>>>>> master
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxLethalshot
- entities:
-<<<<<<< HEAD
- - uid: 1712
+ pos: -25.5,5.5
+ parent: 2
+ - uid: 2564
components:
- type: Transform
- pos: 65.5,8.5
+ pos: 10.5,45.5
parent: 2
- - uid: 1713
+ - uid: 2565
components:
- type: Transform
- pos: 65.5,8.5
+ pos: 17.5,3.5
parent: 2
- - uid: 1714
+ - uid: 2566
components:
- type: Transform
- pos: 65.5,8.5
+ pos: 31.5,-61.5
parent: 2
-- proto: BoxLightMixed
- entities:
- - uid: 1715
-=======
- - uid: 1747
+ - uid: 2567
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 57.472424,8.262838
+ pos: 21.5,-55.5
parent: 2
- - uid: 1748
+ - uid: 2568
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 57.472424,8.262838
+ pos: -2.5,28.5
parent: 2
- - uid: 1749
+ - uid: 2569
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 57.472424,8.262838
+ pos: 17.5,38.5
parent: 2
- - uid: 1750
+ - uid: 2570
components:
- type: Transform
- pos: 67.528076,8.772167
+ pos: 17.5,15.5
parent: 2
- - uid: 1751
+ - uid: 2571
components:
- type: Transform
- pos: 67.51245,8.787792
+ pos: 24.5,27.5
parent: 2
- - uid: 38440
+ - uid: 2572
components:
- type: Transform
- pos: 11.57361,-3.4204102
- parent: 38344
-- proto: BoxLightMixed
- entities:
- - uid: 1752
->>>>>>> master
+ pos: -48.5,-6.5
+ parent: 2
+ - uid: 2573
components:
- type: Transform
- pos: -40.493076,-17.385798
+ pos: 17.5,14.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1716
-=======
- - uid: 1753
->>>>>>> master
+ - uid: 2574
components:
- type: Transform
- pos: -77.375374,-30.29104
+ pos: -45.5,45.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1717
-=======
- - uid: 1754
->>>>>>> master
+ - uid: 2575
components:
- type: Transform
- pos: 3.3950934,31.614307
+ pos: -45.5,46.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1718
-=======
- - uid: 1755
->>>>>>> master
+ - uid: 2576
components:
- type: Transform
- pos: -60.58293,20.484503
+ pos: 10.5,84.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1719
-=======
- - uid: 1756
->>>>>>> master
+ - uid: 2577
components:
- type: Transform
- pos: -77.562874,-30.41604
+ pos: -3.5,-80.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1720
-=======
- - uid: 1757
->>>>>>> master
+ - uid: 2578
components:
- type: Transform
- pos: 12.511247,75.64397
+ pos: 28.5,58.5
parent: 2
-<<<<<<< HEAD
- - type: Physics
- canCollide: False
- - uid: 1721
+ - uid: 2579
components:
- type: Transform
- pos: -58.41385,27.693401
+ pos: -9.5,77.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 1722
-=======
- - type: Physics
- canCollide: False
- - uid: 1758
->>>>>>> master
+ - uid: 2580
components:
- type: Transform
- pos: -0.7948296,50.41453
+ pos: 25.5,27.5
parent: 2
-<<<<<<< HEAD
- - uid: 1723
-=======
- - uid: 1759
->>>>>>> master
+ - uid: 2581
components:
- type: Transform
- pos: 23.524172,8.5619135
+ pos: 12.5,49.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1724
-=======
- - uid: 1760
->>>>>>> master
+ - uid: 2582
components:
- type: Transform
- pos: -45.503593,-17.382376
+ pos: -2.5,27.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1725
-=======
- - uid: 1761
->>>>>>> master
+ - uid: 2583
components:
- type: Transform
- pos: -24.500605,11.746101
+ pos: 60.5,-14.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1726
-=======
- - uid: 1762
->>>>>>> master
+ - uid: 2584
components:
- type: Transform
- pos: -60.33293,20.609503
+ pos: 41.5,-44.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1727
-=======
- - uid: 1763
->>>>>>> master
+ - uid: 2585
components:
- type: Transform
- pos: 16.412798,54.622955
+ pos: 44.5,3.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1728
-=======
- - uid: 1764
->>>>>>> master
+ - uid: 2586
components:
- type: Transform
- pos: -54.576714,9.590466
+ pos: 43.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1729
-=======
- - uid: 1765
->>>>>>> master
+ - uid: 2587
components:
- type: Transform
- pos: -21.497026,15.557969
+ pos: 50.5,-51.5
parent: 2
-<<<<<<< HEAD
- - uid: 1730
+ - uid: 2588
components:
- type: Transform
- pos: 77.48052,-43.48631
+ pos: -45.5,47.5
parent: 2
-- proto: BoxMagazinePistolHighCapacity
- entities:
- - uid: 1731
+ - uid: 2589
components:
- type: Transform
- pos: 65.5,7.5
+ pos: 40.5,-22.5
parent: 2
-- proto: BoxMagazinePistolPractice
- entities:
- - uid: 1732
-=======
- - uid: 1766
+ - uid: 2590
components:
- type: Transform
- pos: 77.48052,-43.48631
+ pos: 40.5,-26.5
parent: 2
- - uid: 1767
+ - uid: 2591
components:
- type: Transform
- pos: -54.89915,12.543412
+ pos: 44.5,-10.5
parent: 2
- - uid: 1768
+ - uid: 2592
components:
- type: Transform
- pos: -54.6179,12.668413
+ pos: 39.5,-22.5
parent: 2
-- proto: BoxLighttube
- entities:
- - uid: 1769
+ - uid: 2593
components:
- type: Transform
- pos: -48.42282,28.724625
+ pos: 14.5,-36.5
parent: 2
-- proto: BoxMagazinePistolPractice
- entities:
- - uid: 1772
->>>>>>> master
+ - uid: 2594
components:
- type: Transform
- pos: 56.382652,19.638697
+ pos: -73.5,9.5
parent: 2
-<<<<<<< HEAD
-- proto: BoxMagazineRifle
- entities:
- - uid: 1733
-=======
-- proto: BoxMagazinePistolSubMachineGun
- entities:
- - uid: 1770
+ - uid: 2595
components:
- type: Transform
- pos: 65.45541,7.651907
+ pos: 28.5,31.5
parent: 2
- - uid: 1771
+ - uid: 2596
components:
- type: Transform
- pos: 67.50228,9.573781
+ pos: 36.5,12.5
parent: 2
-- proto: BoxMagazineRifle
- entities:
- - uid: 1773
+ - uid: 2597
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 65.546974,8.380223
+ pos: 44.5,-1.5
parent: 2
- - uid: 1774
->>>>>>> master
+ - uid: 2598
components:
- type: Transform
- pos: 65.5,9.5
+ pos: -27.5,-34.5
parent: 2
-<<<<<<< HEAD
- - uid: 1734
-=======
- - uid: 1775
->>>>>>> master
+ - uid: 2599
components:
- type: Transform
- pos: 65.5,9.5
+ pos: -45.5,57.5
parent: 2
-- proto: BoxMesonScanners
- entities:
-<<<<<<< HEAD
- - uid: 1735
-=======
- - uid: 1776
->>>>>>> master
+ - uid: 2600
components:
- type: Transform
- pos: -55.5,-1.5
+ pos: 45.5,8.5
parent: 2
-<<<<<<< HEAD
- - uid: 1736
-=======
- - uid: 1777
->>>>>>> master
+ - uid: 2601
components:
- type: Transform
- pos: -59.5,54.5
+ pos: 36.5,-0.5
parent: 2
-- proto: BoxMousetrap
- entities:
-<<<<<<< HEAD
- - uid: 1737
-=======
- - uid: 1778
->>>>>>> master
+ - uid: 2602
components:
- type: Transform
- pos: -0.78879595,50.836056
+ pos: 25.5,56.5
parent: 2
-<<<<<<< HEAD
-- proto: BoxMouthSwab
- entities:
- - uid: 1738
-=======
- - uid: 1779
+ - uid: 2603
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 52.518806,-42.397278
+ pos: 55.5,-46.5
parent: 2
-- proto: BoxMouthSwab
- entities:
- - uid: 1780
->>>>>>> master
+ - uid: 2604
components:
- type: Transform
- pos: -28.29159,45.5603
+ pos: 54.5,-46.5
parent: 2
-<<<<<<< HEAD
- - uid: 1739
-=======
- - uid: 1781
->>>>>>> master
+ - uid: 2605
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.696056,-70.31742
+ pos: 23.5,-19.5
parent: 2
-- proto: BoxMRE
- entities:
-<<<<<<< HEAD
- - uid: 1740
-=======
- - uid: 1782
->>>>>>> master
+ - uid: 2606
components:
- type: Transform
- pos: 44.472935,13.617706
+ pos: 31.5,3.5
parent: 2
-<<<<<<< HEAD
- - uid: 1741
-=======
- - uid: 1783
->>>>>>> master
+ - uid: 2607
components:
- type: Transform
- pos: 44.48856,9.602081
+ pos: -10.5,30.5
parent: 2
-<<<<<<< HEAD
- - uid: 1742
-=======
- - uid: 1784
->>>>>>> master
+ - uid: 2608
components:
- type: Transform
- pos: 41.503044,1.6465976
+ pos: 8.5,53.5
parent: 2
-<<<<<<< HEAD
- - uid: 1743
-=======
- - uid: 1785
->>>>>>> master
+ - uid: 2609
components:
- type: Transform
- pos: 44.496708,1.6549377
+ pos: 24.5,41.5
parent: 2
-<<<<<<< HEAD
- - uid: 1744
-=======
- - uid: 1786
->>>>>>> master
+ - uid: 2610
components:
- type: Transform
- pos: 41.555332,11.59931
+ pos: 32.5,-5.5
parent: 2
-- proto: BoxPDA
- entities:
-<<<<<<< HEAD
- - uid: 1745
-=======
- - uid: 1787
->>>>>>> master
+ - uid: 2611
components:
- type: Transform
- pos: -8.625056,5.687517
+ pos: 9.5,53.5
parent: 2
-<<<<<<< HEAD
-- proto: BoxSechud
- entities:
- - uid: 1746
-=======
-- proto: BoxPerformer
- entities:
- - uid: 1788
+ - uid: 2612
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 40.502743,-40.41744
+ pos: -25.5,57.5
parent: 2
-- proto: BoxSechud
- entities:
- - uid: 1789
->>>>>>> master
+ - uid: 2613
components:
- type: Transform
- pos: 48.51906,18.530525
+ pos: 40.5,-42.5
parent: 2
-- proto: BoxShotgunSlug
- entities:
-<<<<<<< HEAD
- - uid: 1747
+ - uid: 2614
components:
- type: Transform
- pos: 65.5,8.5
+ pos: 74.5,-18.5
parent: 2
-- proto: BoxSterileMask
- entities:
- - uid: 1748
-=======
- - uid: 1790
+ - uid: 2615
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 57.472416,8.580834
+ pos: -47.5,1.5
parent: 2
- - uid: 1791
+ - uid: 2616
components:
- type: Transform
- pos: 67.51245,8.412792
+ pos: 10.5,53.5
parent: 2
-- proto: BoxSterileMask
- entities:
- - uid: 1792
->>>>>>> master
+ - uid: 2617
components:
- type: Transform
- pos: 36.289875,-71.40648
+ pos: 60.5,-12.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: BoxSyringe
- entities:
-<<<<<<< HEAD
- - uid: 884
+ - uid: 2618
components:
- type: Transform
- parent: 880
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1749
-=======
- - uid: 875
+ pos: 25.5,50.5
+ parent: 2
+ - uid: 2619
components:
- type: Transform
- parent: 871
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1793
->>>>>>> master
+ pos: 37.5,-60.5
+ parent: 2
+ - uid: 2620
components:
- type: Transform
- pos: 6.549246,-38.18099
+ pos: -62.5,44.5
parent: 2
-<<<<<<< HEAD
- - uid: 1750
-=======
- - uid: 1794
->>>>>>> master
+ - uid: 2621
components:
- type: Transform
- pos: 69.94294,12.308502
+ pos: 48.5,-23.5
parent: 2
-<<<<<<< HEAD
- - uid: 1751
-=======
- - uid: 1795
->>>>>>> master
+ - uid: 2622
components:
- type: Transform
- pos: 68.5,-3.5
+ pos: 48.5,-24.5
parent: 2
-<<<<<<< HEAD
- - uid: 1752
-=======
- - uid: 1796
->>>>>>> master
+ - uid: 2623
components:
- type: Transform
- pos: 26.675022,-69.30446
+ pos: -20.5,-80.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1753
-=======
- - uid: 1797
->>>>>>> master
+ - uid: 2624
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.290853,-43.435093
+ pos: -30.5,16.5
parent: 2
-<<<<<<< HEAD
-- proto: BrbSign
- entities:
- - uid: 1754
-=======
-- proto: BoxZiptie
- entities:
- - uid: 38441
+ - uid: 2625
components:
- type: Transform
- pos: 11.542718,-1.2171936
- parent: 38344
-- proto: BrbSign
- entities:
- - uid: 1798
->>>>>>> master
+ pos: 24.5,-16.5
+ parent: 2
+ - uid: 2626
components:
- type: Transform
- pos: -13.126385,5.600397
+ pos: -35.5,28.5
parent: 2
-<<<<<<< HEAD
- - uid: 1755
-=======
- - uid: 1799
->>>>>>> master
+ - uid: 2627
components:
- type: Transform
- pos: -15.521692,-3.7452946
+ pos: -9.5,23.5
parent: 2
-- proto: BriefcaseBrown
- entities:
-<<<<<<< HEAD
- - uid: 1667
-=======
- - uid: 1702
->>>>>>> master
+ - uid: 2628
components:
- type: Transform
- pos: 15.414117,-48.366436
+ pos: 6.5,84.5
parent: 2
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
-<<<<<<< HEAD
- - 1670
- - 1671
- - 1669
- - 1668
- - 1677
- - 1673
- - 1676
- - 1680
- - 1678
- - 1679
- - 1672
- - 1681
- - 1675
- - 1674
- - uid: 1756
-=======
- - 1705
- - 1706
- - 1704
- - 1703
- - 1712
- - 1708
- - 1711
- - 1715
- - 1713
- - 1714
- - 1707
- - 1716
- - 1710
- - 1709
- - uid: 1800
->>>>>>> master
+ - uid: 2629
components:
- type: Transform
- pos: 33.50666,2.6525807
+ pos: 31.5,58.5
parent: 2
-<<<<<<< HEAD
- - uid: 1757
-=======
- - uid: 1801
->>>>>>> master
+ - uid: 2630
components:
- type: Transform
- pos: 38.408417,-12.442864
+ pos: 17.5,44.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1758
-=======
- - uid: 1802
->>>>>>> master
+ - uid: 2631
components:
- type: Transform
- pos: 53.511616,-54.341568
+ pos: 46.5,-20.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1760
+ - uid: 2632
components:
- type: Transform
- parent: 1759
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1763
-=======
- - uid: 1804
+ pos: -61.5,-16.5
+ parent: 2
+ - uid: 2633
components:
- type: Transform
- parent: 1803
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1807
->>>>>>> master
+ pos: -0.5,26.5
+ parent: 2
+ - uid: 2634
components:
- type: Transform
- pos: 40.473694,-55.352642
+ pos: -54.5,-10.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1764
-=======
- - uid: 1808
->>>>>>> master
+ - uid: 2635
components:
- type: Transform
- pos: 63.55921,-19.215805
+ pos: 52.5,-24.5
parent: 2
-<<<<<<< HEAD
- - uid: 1765
-=======
- - uid: 1809
->>>>>>> master
+ - uid: 2636
components:
- type: Transform
- pos: 63.481087,-19.60643
+ pos: 35.5,-7.5
parent: 2
-- proto: BriefcaseBrownFilled
- entities:
-<<<<<<< HEAD
- - uid: 1766
-=======
- - uid: 1810
->>>>>>> master
+ - uid: 2637
components:
- type: Transform
- pos: -15.5,7.5
+ pos: 46.5,-18.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1767
-=======
- - uid: 1811
->>>>>>> master
+ - uid: 2638
components:
- type: Transform
- pos: 42.308758,23.63735
+ pos: 73.5,-21.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1768
-=======
- - uid: 1812
->>>>>>> master
+ - uid: 2639
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.493849,0.5424672
+ pos: 48.5,-21.5
parent: 2
-<<<<<<< HEAD
- - uid: 1769
-=======
- - uid: 1813
->>>>>>> master
+ - uid: 2640
components:
- type: Transform
- pos: 30.454538,-2.394278
+ pos: 37.5,-7.5
parent: 2
-<<<<<<< HEAD
- - uid: 1770
-=======
- - uid: 1814
->>>>>>> master
+ - uid: 2641
components:
- type: Transform
- pos: -3.4562843,13.666277
+ pos: 52.5,-23.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1771
-=======
- - uid: 1815
->>>>>>> master
+ - uid: 2642
components:
- type: Transform
- pos: -22.49046,-10.098504
+ pos: 51.5,-20.5
parent: 2
-- proto: BrigmedicPDA
- entities:
-<<<<<<< HEAD
- - uid: 1772
-=======
- - uid: 1816
->>>>>>> master
+ - uid: 2643
components:
- type: Transform
- pos: -8.5,5.5
+ pos: 34.5,-7.5
parent: 2
-- proto: BrigTimer
- entities:
-<<<<<<< HEAD
- - uid: 1773
-=======
- - uid: 1817
->>>>>>> master
+ - uid: 2644
components:
- type: Transform
- pos: 45.5,-0.5
+ pos: -30.5,57.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
-<<<<<<< HEAD
- 38272:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- - uid: 1774
-=======
- 37811:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- - uid: 1818
->>>>>>> master
+ - uid: 2645
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,-1.5
+ pos: 44.5,-24.5
parent: 2
-<<<<<<< HEAD
- - uid: 1775
-=======
- - uid: 1819
->>>>>>> master
+ - uid: 2646
components:
- type: Transform
- pos: 45.5,7.5
+ pos: 56.5,-16.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
-<<<<<<< HEAD
- 38270:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- - uid: 1776
-=======
- 37809:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- - uid: 1820
->>>>>>> master
+ - uid: 2647
components:
- type: Transform
- pos: 45.5,11.5
+ pos: 47.5,-18.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
-<<<<<<< HEAD
- 38267:
-=======
- 37806:
->>>>>>> master
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
-- proto: BrokenBottle
- entities:
-<<<<<<< HEAD
- - uid: 1777
-=======
- - uid: 1821
->>>>>>> master
+ - uid: 2648
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.512104,65.64481
+ pos: 15.5,-55.5
parent: 2
-<<<<<<< HEAD
- - uid: 1778
-=======
- - uid: 1822
->>>>>>> master
+ - uid: 2649
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.051556,-35.48419
+ pos: -23.5,56.5
parent: 2
-<<<<<<< HEAD
-- proto: BruteAutoInjector
- entities:
- - uid: 885
+ - uid: 2650
components:
- type: Transform
- parent: 880
-=======
- - uid: 1823
+ pos: -16.5,57.5
+ parent: 2
+ - uid: 2651
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.527508,-79.372055
+ pos: 23.5,49.5
parent: 2
-- proto: BruteAutoInjector
- entities:
- - uid: 876
+ - uid: 2652
components:
- type: Transform
- parent: 871
->>>>>>> master
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: Brutepack
- entities:
-<<<<<<< HEAD
- - uid: 1779
-=======
- - uid: 1824
->>>>>>> master
+ pos: -48.5,13.5
+ parent: 2
+ - uid: 2653
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.497957,-24.46766
+ pos: 28.5,-69.5
parent: 2
-<<<<<<< HEAD
- - uid: 1780
-=======
- - uid: 1825
->>>>>>> master
+ - uid: 2654
components:
- type: Transform
- pos: 32.489788,-31.352707
+ pos: -27.5,57.5
parent: 2
-<<<<<<< HEAD
- - uid: 1781
-=======
- - uid: 1826
->>>>>>> master
+ - uid: 2655
components:
- type: Transform
- pos: -31.58165,-42.336353
+ pos: -50.5,-15.5
parent: 2
-<<<<<<< HEAD
- - uid: 1782
-=======
- - uid: 1827
->>>>>>> master
+ - uid: 2656
components:
- type: Transform
- pos: 31.735588,-41.564713
+ pos: -18.5,51.5
parent: 2
-<<<<<<< HEAD
- - uid: 1783
-=======
- - uid: 1828
->>>>>>> master
+ - uid: 2657
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 61.26216,-5.289681
+ pos: -46.5,-8.5
parent: 2
-- proto: Bucket
- entities:
-<<<<<<< HEAD
- - uid: 1784
-=======
- - uid: 1829
->>>>>>> master
+ - uid: 2658
components:
- type: Transform
- pos: 70.47746,19.483463
+ pos: -23.5,57.5
parent: 2
-<<<<<<< HEAD
- - uid: 1785
-=======
- - uid: 1830
->>>>>>> master
+ - uid: 2659
components:
- type: Transform
- pos: 3.6955166,-48.677258
+ pos: -0.5,-26.5
parent: 2
-<<<<<<< HEAD
- - uid: 1786
-=======
- - uid: 1831
->>>>>>> master
+ - uid: 2660
components:
- type: Transform
- pos: -38.58966,34.48895
+ pos: -11.5,50.5
parent: 2
-<<<<<<< HEAD
- - uid: 1788
+ - uid: 2661
components:
- type: Transform
- parent: 1787
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1798
-=======
- - uid: 1833
+ pos: -41.5,-63.5
+ parent: 2
+ - uid: 2662
components:
- type: Transform
- parent: 1832
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1843
->>>>>>> master
+ pos: -74.5,-20.5
+ parent: 2
+ - uid: 2663
components:
- type: Transform
- pos: 21.446554,-22.521786
+ pos: 6.5,-44.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1799
-=======
- - uid: 1844
->>>>>>> master
+ - uid: 2664
components:
- type: Transform
- pos: -76.531624,-29.54104
+ pos: -35.5,11.5
parent: 2
- - type: Physics
- canCollide: False
-<<<<<<< HEAD
- - uid: 1800
-=======
- - uid: 1845
->>>>>>> master
+ - uid: 2665
components:
- type: Transform
- pos: -28.959202,55.452602
+ pos: 45.5,-18.5
parent: 2
-<<<<<<< HEAD
- - uid: 1801
-=======
- - uid: 1846
->>>>>>> master
+ - uid: 2666
components:
- type: Transform
- pos: -27.896702,55.515106
+ pos: -17.5,63.5
parent: 2
-<<<<<<< HEAD
- - uid: 1802
+ - uid: 2667
components:
- type: Transform
- pos: 88.307175,-1.1869407
+ pos: -30.5,1.5
parent: 2
-- proto: BurnAutoInjector
- entities:
- - uid: 886
+ - uid: 2668
components:
- type: Transform
- parent: 880
-=======
-- proto: BurnAutoInjector
- entities:
- - uid: 877
+ pos: -16.5,23.5
+ parent: 2
+ - uid: 2669
components:
- type: Transform
- parent: 871
->>>>>>> master
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ButchCleaver
- entities:
-<<<<<<< HEAD
- - uid: 1803
+ pos: 45.5,-20.5
+ parent: 2
+ - uid: 2670
components:
- type: Transform
- pos: -36.5,47.5
+ pos: -18.5,22.5
parent: 2
- - uid: 1804
+ - uid: 2671
components:
- type: Transform
- pos: 8.5,73.5
+ pos: 62.5,-12.5
parent: 2
- - uid: 1805
+ - uid: 2672
components:
- type: Transform
- pos: -22.5,29.5
+ pos: 40.5,-58.5
parent: 2
- - uid: 1806
+ - uid: 2673
components:
- type: Transform
- pos: -22.5,35.5
+ pos: -13.5,-67.5
parent: 2
- - uid: 1807
+ - uid: 2674
components:
- type: Transform
- pos: -16.5,35.5
+ pos: -72.5,21.5
parent: 2
- - uid: 1808
+ - uid: 2675
components:
- type: Transform
- pos: -17.5,41.5
+ pos: 9.5,-44.5
parent: 2
- - uid: 1809
+ - uid: 2676
components:
- type: Transform
- pos: -2.5,68.5
+ pos: -18.5,20.5
parent: 2
- - uid: 1810
+ - uid: 2677
components:
- type: Transform
- pos: -3.5,68.5
+ pos: -51.5,-6.5
parent: 2
- - uid: 1811
+ - uid: 2678
components:
- type: Transform
- pos: -5.5,53.5
+ pos: -50.5,-1.5
parent: 2
- - uid: 1812
+ - uid: 2679
components:
- type: Transform
- pos: -30.5,68.5
+ pos: 46.5,-21.5
parent: 2
- - uid: 1813
+ - uid: 2680
components:
- type: Transform
- pos: -5.5,52.5
+ pos: 35.5,-34.5
parent: 2
- - uid: 1814
+ - uid: 2681
components:
- type: Transform
- pos: 24.5,19.5
+ pos: -14.5,57.5
parent: 2
- - uid: 1815
+ - uid: 2682
components:
- type: Transform
- pos: -11.5,78.5
+ pos: 27.5,-58.5
parent: 2
- - uid: 1816
+ - uid: 2683
components:
- type: Transform
- pos: 55.5,5.5
+ pos: -11.5,57.5
parent: 2
- - uid: 1817
+ - uid: 2684
components:
- type: Transform
- pos: 39.5,22.5
+ pos: -18.5,-19.5
parent: 2
- - uid: 1818
+ - uid: 2685
components:
- type: Transform
- pos: 35.5,22.5
+ pos: -23.5,26.5
parent: 2
- - uid: 1819
+ - uid: 2686
components:
- type: Transform
- pos: 72.5,18.5
+ pos: -36.5,17.5
parent: 2
- - uid: 1820
+ - uid: 2687
components:
- type: Transform
- pos: 76.5,-0.5
+ pos: -15.5,23.5
parent: 2
- - uid: 1821
+ - uid: 2688
components:
- type: Transform
- pos: 89.5,10.5
+ pos: 26.5,-68.5
parent: 2
- - uid: 1822
+ - uid: 2689
components:
- type: Transform
- pos: 53.5,8.5
+ pos: 16.5,-55.5
parent: 2
- - uid: 1823
+ - uid: 2690
components:
- type: Transform
- pos: 73.5,1.5
+ pos: 58.5,5.5
parent: 2
- - uid: 1824
+ - uid: 2691
components:
- type: Transform
- pos: 54.5,10.5
+ pos: 6.5,50.5
parent: 2
- - uid: 1825
+ - uid: 2692
components:
- type: Transform
- pos: -71.5,21.5
+ pos: 4.5,23.5
parent: 2
- - uid: 1826
+ - uid: 2693
components:
- type: Transform
- pos: -10.5,77.5
+ pos: 25.5,-69.5
parent: 2
- - uid: 1827
+ - uid: 2694
components:
- type: Transform
- pos: -68.5,21.5
+ pos: -19.5,-80.5
parent: 2
- - uid: 1828
+ - uid: 2695
components:
- type: Transform
- pos: 73.5,5.5
+ pos: -24.5,59.5
parent: 2
- - uid: 1829
+ - uid: 2696
components:
- type: Transform
- pos: -57.5,62.5
+ pos: -25.5,65.5
parent: 2
- - uid: 1830
+ - uid: 2697
components:
- type: Transform
- pos: -58.5,62.5
+ pos: 10.5,-44.5
parent: 2
- - uid: 1831
+ - uid: 2698
components:
- type: Transform
- pos: 72.5,3.5
+ pos: 37.5,-25.5
parent: 2
- - uid: 1832
+ - uid: 2699
components:
- type: Transform
- pos: 24.5,53.5
+ pos: -15.5,-71.5
parent: 2
- - uid: 1833
+ - uid: 2700
components:
- type: Transform
- pos: 25.5,53.5
+ pos: -13.5,51.5
parent: 2
- - uid: 1834
+ - uid: 2701
components:
- type: Transform
- pos: 34.5,40.5
+ pos: 0.5,68.5
parent: 2
- - uid: 1835
+ - uid: 2702
components:
- type: Transform
- pos: 61.5,0.5
+ pos: -4.5,53.5
parent: 2
- - uid: 1836
+ - uid: 2703
components:
- type: Transform
- pos: -45.5,0.5
+ pos: -28.5,-14.5
parent: 2
- - uid: 1837
+ - uid: 2704
components:
- type: Transform
- pos: 47.5,2.5
+ pos: -20.5,5.5
parent: 2
- - uid: 1838
+ - uid: 2705
components:
- type: Transform
- pos: 47.5,-2.5
+ pos: -4.5,37.5
parent: 2
- - uid: 1839
+ - uid: 2706
components:
- type: Transform
- pos: 47.5,22.5
+ pos: 5.5,-44.5
parent: 2
- - uid: 1840
+ - uid: 2707
components:
- type: Transform
- pos: 66.5,6.5
+ pos: -23.5,25.5
parent: 2
- - uid: 1841
+ - uid: 2708
components:
- type: Transform
- pos: -44.5,46.5
+ pos: -35.5,-5.5
parent: 2
- - uid: 1842
+ - uid: 2709
components:
- type: Transform
- pos: 41.5,21.5
+ pos: 17.5,-18.5
parent: 2
- - uid: 1843
+ - uid: 2710
components:
- type: Transform
- pos: 54.5,4.5
+ pos: -43.5,-13.5
parent: 2
- - uid: 1844
+ - uid: 2711
components:
- type: Transform
- pos: 41.5,24.5
+ pos: -50.5,50.5
parent: 2
- - uid: 1845
+ - uid: 2712
components:
- type: Transform
- pos: 69.5,6.5
+ pos: -77.5,9.5
parent: 2
- - uid: 1846
+ - uid: 2713
components:
- type: Transform
- pos: 49.5,11.5
+ pos: -25.5,30.5
parent: 2
- - uid: 1847
+ - uid: 2714
components:
- type: Transform
- pos: -39.5,28.5
+ pos: -69.5,7.5
parent: 2
- - uid: 1848
+ - uid: 2715
components:
- type: Transform
- pos: 76.5,24.5
+ pos: -65.5,59.5
parent: 2
- - uid: 1849
+ - uid: 2716
components:
- type: Transform
- pos: 40.5,20.5
+ pos: -53.5,33.5
parent: 2
- - uid: 1850
+ - uid: 2717
components:
- type: Transform
- pos: 50.5,6.5
+ pos: -62.5,29.5
parent: 2
- - uid: 1851
+ - uid: 2718
components:
- type: Transform
- pos: 73.5,7.5
+ pos: 4.5,-15.5
parent: 2
- - uid: 1852
+ - uid: 2719
components:
- type: Transform
- pos: 74.5,-0.5
+ pos: -51.5,2.5
parent: 2
- - uid: 1853
+ - uid: 2720
components:
- type: Transform
- pos: -0.5,8.5
+ pos: -18.5,-7.5
parent: 2
- - uid: 1854
+ - uid: 2721
components:
- type: Transform
- pos: 49.5,3.5
+ pos: -31.5,46.5
parent: 2
- - uid: 1855
+ - uid: 2722
components:
- type: Transform
- pos: 45.5,-4.5
+ pos: -18.5,-9.5
parent: 2
- - uid: 1856
+ - uid: 2723
components:
- type: Transform
- pos: -51.5,-44.5
+ pos: -48.5,-27.5
parent: 2
- - uid: 1857
+ - uid: 2724
components:
- type: Transform
- pos: -3.5,-44.5
+ pos: 3.5,-44.5
parent: 2
- - uid: 1858
+ - uid: 2725
components:
- type: Transform
- pos: 75.5,22.5
+ pos: -47.5,-27.5
parent: 2
- - uid: 1859
+ - uid: 2726
components:
- type: Transform
- pos: -67.5,47.5
+ pos: -14.5,-7.5
parent: 2
- - uid: 1860
+ - uid: 2727
components:
- type: Transform
- pos: -71.5,31.5
+ pos: -26.5,68.5
parent: 2
- - uid: 1861
+ - uid: 2728
components:
- type: Transform
- pos: -71.5,45.5
+ pos: -14.5,-65.5
parent: 2
- - uid: 1862
+ - uid: 2729
components:
- type: Transform
- pos: -68.5,42.5
+ pos: -18.5,-10.5
parent: 2
- - uid: 1863
+ - uid: 2730
components:
- type: Transform
- pos: -68.5,-40.5
+ pos: -29.5,46.5
parent: 2
- - uid: 1864
+ - uid: 2731
components:
- type: Transform
- pos: -33.5,-22.5
+ pos: -34.5,-5.5
parent: 2
- - uid: 1865
+ - uid: 2732
components:
- type: Transform
- pos: 61.5,-2.5
+ pos: 44.5,-15.5
parent: 2
- - uid: 1866
+ - uid: 2733
components:
- type: Transform
- pos: -49.5,-44.5
+ pos: -21.5,41.5
parent: 2
- - uid: 1867
+ - uid: 2734
components:
- type: Transform
- pos: 6.5,-54.5
+ pos: -25.5,19.5
parent: 2
- - uid: 1868
+ - uid: 2735
components:
- type: Transform
- pos: 68.5,15.5
+ pos: 14.5,-7.5
parent: 2
- - uid: 1869
+ - uid: 2736
components:
- type: Transform
- pos: 29.5,-7.5
+ pos: -58.5,-44.5
parent: 2
- - uid: 1870
+ - uid: 2737
components:
- type: Transform
- pos: -28.5,-39.5
+ pos: -58.5,41.5
parent: 2
- - uid: 1871
+ - uid: 2738
components:
- type: Transform
- pos: -11.5,76.5
+ pos: -64.5,25.5
parent: 2
- - uid: 1872
+ - uid: 2739
components:
- type: Transform
- pos: -11.5,83.5
+ pos: -56.5,61.5
parent: 2
- - uid: 1873
+ - uid: 2740
components:
- type: Transform
- pos: -69.5,57.5
+ pos: -33.5,12.5
parent: 2
- - uid: 1874
+ - uid: 2741
components:
- type: Transform
- pos: -68.5,23.5
+ pos: -37.5,15.5
parent: 2
- - uid: 1875
+ - uid: 2742
components:
- type: Transform
- pos: 23.5,20.5
+ pos: -58.5,-30.5
parent: 2
- - uid: 1876
+ - uid: 2743
components:
- type: Transform
- pos: 73.5,3.5
+ pos: -42.5,32.5
parent: 2
- - uid: 1877
+ - uid: 2744
components:
- type: Transform
- pos: 73.5,11.5
+ pos: -2.5,-14.5
parent: 2
- - uid: 1878
+ - uid: 2745
components:
- type: Transform
- pos: 69.5,0.5
+ pos: -54.5,-40.5
parent: 2
- - uid: 1879
+ - uid: 2746
components:
- type: Transform
- pos: 34.5,20.5
+ pos: -58.5,-39.5
parent: 2
- - uid: 1880
+ - uid: 2747
components:
- type: Transform
- pos: 62.5,-6.5
+ pos: -30.5,42.5
parent: 2
- - uid: 1881
+ - uid: 2748
components:
- type: Transform
- pos: -68.5,-41.5
+ pos: -25.5,38.5
parent: 2
- - uid: 1882
+ - uid: 2749
components:
- type: Transform
- pos: -68.5,38.5
+ pos: -34.5,18.5
parent: 2
- - uid: 1883
+ - uid: 2750
components:
- type: Transform
- pos: -48.5,-44.5
+ pos: -25.5,12.5
parent: 2
- - uid: 1884
+ - uid: 2751
components:
- type: Transform
- pos: 51.5,0.5
+ pos: -24.5,12.5
parent: 2
- - uid: 1885
+ - uid: 2752
components:
- type: Transform
- pos: 91.5,9.5
+ pos: -58.5,61.5
parent: 2
- - uid: 1886
+ - uid: 2753
components:
- type: Transform
- pos: 35.5,18.5
+ pos: -58.5,-45.5
parent: 2
- - uid: 1887
+ - uid: 2754
components:
- type: Transform
- pos: -11.5,92.5
+ pos: -74.5,-26.5
parent: 2
- - uid: 1888
+ - uid: 2755
components:
- type: Transform
- pos: -33.5,-23.5
+ pos: -59.5,34.5
parent: 2
- - uid: 1889
+ - uid: 2756
components:
- type: Transform
- pos: 6.5,-53.5
+ pos: -45.5,12.5
parent: 2
- - uid: 1890
+ - uid: 2757
components:
- type: Transform
- pos: 48.5,16.5
+ pos: -63.5,29.5
parent: 2
- - uid: 1891
+ - uid: 2758
components:
- type: Transform
- pos: 87.5,10.5
+ pos: 13.5,-24.5
parent: 2
- - uid: 1892
+ - uid: 2759
components:
- type: Transform
- pos: 63.5,25.5
+ pos: 17.5,-26.5
parent: 2
- - uid: 1893
+ - uid: 2760
components:
- type: Transform
- pos: 50.5,5.5
+ pos: -11.5,-26.5
parent: 2
- - uid: 1894
+ - uid: 2761
components:
- type: Transform
- pos: 62.5,25.5
+ pos: -25.5,48.5
parent: 2
- - uid: 1895
+ - uid: 2762
components:
- type: Transform
- pos: 34.5,19.5
+ pos: -45.5,-22.5
parent: 2
- - uid: 1896
+ - uid: 2763
components:
- type: Transform
- pos: -26.5,-52.5
+ pos: -49.5,-20.5
parent: 2
- - uid: 1897
+ - uid: 2764
components:
- type: Transform
- pos: -58.5,-37.5
+ pos: -41.5,-11.5
parent: 2
- - uid: 1898
+ - uid: 2765
components:
- type: Transform
- pos: 52.5,11.5
+ pos: 4.5,-51.5
parent: 2
- - uid: 1899
+ - uid: 2766
components:
- type: Transform
- pos: -58.5,63.5
+ pos: -52.5,-44.5
parent: 2
- - uid: 1900
+ - uid: 2767
components:
- type: Transform
- pos: 55.5,4.5
+ pos: 17.5,-27.5
parent: 2
- - uid: 1901
+ - uid: 2768
components:
- type: Transform
- pos: 45.5,-16.5
+ pos: 4.5,-53.5
parent: 2
- - uid: 1902
+ - uid: 2769
components:
- type: Transform
- pos: 50.5,16.5
+ pos: 29.5,-31.5
parent: 2
- - uid: 1903
+ - uid: 2770
components:
- type: Transform
- pos: 52.5,13.5
+ pos: -8.5,84.5
parent: 2
- - uid: 1904
+ - uid: 2771
components:
- type: Transform
- pos: 29.5,-6.5
+ pos: 21.5,-51.5
parent: 2
- - uid: 1905
+ - uid: 2772
components:
- type: Transform
- pos: 43.5,23.5
+ pos: 26.5,-34.5
parent: 2
- - uid: 1906
+ - uid: 2773
components:
- type: Transform
- pos: -38.5,-71.5
+ pos: 3.5,-24.5
parent: 2
- - uid: 1907
+ - uid: 2774
components:
- type: Transform
- pos: -38.5,-72.5
+ pos: 4.5,-50.5
parent: 2
- - uid: 1908
+ - uid: 2775
components:
- type: Transform
- pos: 73.5,15.5
+ pos: 24.5,-39.5
parent: 2
- - uid: 1909
+ - uid: 2776
components:
- type: Transform
- pos: -68.5,48.5
+ pos: 27.5,-36.5
parent: 2
- - uid: 1910
+ - uid: 2777
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: -18.5,-21.5
parent: 2
- - uid: 1911
+ - uid: 2778
components:
- type: Transform
- pos: 71.5,16.5
+ pos: -62.5,12.5
parent: 2
- - uid: 1912
+ - uid: 2779
components:
- type: Transform
- pos: -54.5,-16.5
+ pos: -64.5,21.5
parent: 2
- - uid: 1913
+ - uid: 2780
components:
- type: Transform
- pos: -68.5,35.5
+ pos: -6.5,-30.5
parent: 2
- - uid: 1914
+ - uid: 2781
components:
- type: Transform
- pos: -58.5,64.5
+ pos: 6.5,-34.5
parent: 2
- - uid: 1915
+ - uid: 2782
components:
- type: Transform
- pos: 49.5,-15.5
+ pos: 8.5,-34.5
parent: 2
- - uid: 1916
+ - uid: 2783
components:
- type: Transform
- pos: -25.5,-48.5
+ pos: -19.5,-34.5
parent: 2
- - uid: 1917
+ - uid: 2784
components:
- type: Transform
- pos: 78.5,24.5
+ pos: -10.5,-25.5
parent: 2
- - uid: 1918
+ - uid: 2785
components:
- type: Transform
- pos: -60.5,36.5
+ pos: 10.5,-24.5
parent: 2
- - uid: 1919
+ - uid: 2786
components:
- type: Transform
- pos: -0.5,-1.5
+ pos: 10.5,7.5
parent: 2
- - uid: 1920
+ - uid: 2787
components:
- type: Transform
- pos: -0.5,4.5
+ pos: 2.5,19.5
parent: 2
- - uid: 1921
+ - uid: 2788
components:
- type: Transform
- pos: -0.5,10.5
+ pos: 3.5,-14.5
parent: 2
- - uid: 1922
+ - uid: 2789
components:
- type: Transform
- pos: -0.5,5.5
+ pos: 6.5,8.5
parent: 2
- - uid: 1923
+ - uid: 2790
components:
- type: Transform
- pos: -0.5,7.5
+ pos: 33.5,-51.5
parent: 2
- - uid: 1924
+ - uid: 2791
components:
- type: Transform
- pos: -0.5,6.5
+ pos: -58.5,19.5
parent: 2
- - uid: 1925
+ - uid: 2792
components:
- type: Transform
- pos: 61.5,30.5
+ pos: -71.5,-30.5
parent: 2
- - uid: 1926
+ - uid: 2793
components:
- type: Transform
- pos: -68.5,27.5
+ pos: -51.5,7.5
parent: 2
- - uid: 1927
+ - uid: 2794
components:
- type: Transform
- pos: -71.5,35.5
+ pos: 33.5,-50.5
parent: 2
- - uid: 1928
+ - uid: 2795
components:
- type: Transform
- pos: 73.5,9.5
+ pos: 20.5,-26.5
parent: 2
- - uid: 1929
+ - uid: 2796
components:
- type: Transform
- pos: 65.5,30.5
+ pos: -13.5,-51.5
parent: 2
- - uid: 1930
+ - uid: 2797
components:
- type: Transform
- pos: -56.5,62.5
+ pos: -6.5,-23.5
parent: 2
- - uid: 1931
+ - uid: 2798
components:
- type: Transform
- pos: -11.5,74.5
+ pos: 5.5,-26.5
parent: 2
- - uid: 1932
+ - uid: 2799
components:
- type: Transform
- pos: 67.5,0.5
+ pos: -33.5,-52.5
parent: 2
- - uid: 1933
+ - uid: 2800
components:
- type: Transform
- pos: 61.5,-3.5
+ pos: -13.5,-41.5
parent: 2
- - uid: 1934
+ - uid: 2801
components:
- type: Transform
- pos: 29.5,31.5
+ pos: -11.5,-52.5
parent: 2
- - uid: 1935
+ - uid: 2802
components:
- type: Transform
- pos: 69.5,14.5
+ pos: -13.5,-40.5
parent: 2
- - uid: 1936
+ - uid: 2803
components:
- type: Transform
- pos: 45.5,16.5
+ pos: -22.5,-52.5
parent: 2
- - uid: 1937
+ - uid: 2804
components:
- type: Transform
- pos: 55.5,12.5
+ pos: -22.5,-51.5
parent: 2
- - uid: 1938
+ - uid: 2805
components:
- type: Transform
- pos: 61.5,25.5
+ pos: -20.5,-27.5
parent: 2
- - uid: 1939
+ - uid: 2806
components:
- type: Transform
- pos: 72.5,5.5
+ pos: -23.5,-34.5
parent: 2
- - uid: 1940
+ - uid: 2807
components:
- type: Transform
- pos: 46.5,-4.5
+ pos: 62.5,26.5
parent: 2
- - uid: 1941
+ - uid: 2808
components:
- type: Transform
- pos: 52.5,6.5
+ pos: -22.5,-53.5
parent: 2
- - uid: 1942
+ - uid: 2809
components:
- type: Transform
- pos: -11.5,75.5
+ pos: 7.5,-26.5
parent: 2
- - uid: 1943
+ - uid: 2810
components:
- type: Transform
- pos: 51.5,16.5
+ pos: 6.5,-26.5
parent: 2
- - uid: 1944
-=======
- - uid: 1847
+ - uid: 2811
components:
- type: Transform
- pos: -28.612309,-72.15309
+ pos: -47.5,-32.5
parent: 2
-- proto: ButtonFrameCautionSecurity
- entities:
- - uid: 1848
+ - uid: 2812
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: -61.5,-33.5
+ pos: 8.5,56.5
parent: 2
-- proto: CableApcExtension
- entities:
- - uid: 1849
+ - uid: 2813
components:
- type: Transform
- pos: 13.5,-8.5
+ pos: 8.5,57.5
parent: 2
- - uid: 1850
+ - uid: 2814
components:
- type: Transform
- pos: -15.5,-8.5
+ pos: 36.5,1.5
parent: 2
- - uid: 1851
+ - uid: 2815
components:
- type: Transform
- pos: 92.5,11.5
+ pos: 34.5,1.5
parent: 2
- - uid: 1852
+ - uid: 2816
components:
- type: Transform
- pos: 19.5,19.5
+ pos: 56.5,-14.5
parent: 2
- - uid: 1853
+ - uid: 2817
components:
- type: Transform
- pos: -3.5,30.5
+ pos: -5.5,51.5
parent: 2
- - uid: 1854
+ - uid: 2818
components:
- type: Transform
- pos: -4.5,30.5
+ pos: 60.5,-29.5
parent: 2
- - uid: 1855
+ - uid: 2819
components:
- type: Transform
- pos: 19.5,16.5
+ pos: 10.5,35.5
parent: 2
- - uid: 1856
+ - uid: 2820
components:
- type: Transform
- pos: -5.5,31.5
+ pos: 10.5,36.5
parent: 2
- - uid: 1857
+ - uid: 2821
components:
- type: Transform
- pos: 76.5,6.5
+ pos: 72.5,-24.5
parent: 2
- - uid: 1858
+ - uid: 2822
components:
- type: Transform
- pos: -48.5,-27.5
+ pos: 21.5,10.5
parent: 2
- - uid: 1859
+ - uid: 2823
components:
- type: Transform
- pos: -49.5,-27.5
+ pos: 52.5,-17.5
parent: 2
- - uid: 1860
+ - uid: 2824
components:
- type: Transform
- pos: -51.5,-27.5
+ pos: 52.5,-16.5
parent: 2
- - uid: 1861
+ - uid: 2825
components:
- type: Transform
- pos: -51.5,-26.5
+ pos: 73.5,-24.5
parent: 2
- - uid: 1862
+ - uid: 2826
components:
- type: Transform
- pos: -14.5,37.5
+ pos: -52.5,-15.5
parent: 2
- - uid: 1863
+ - uid: 2827
components:
- type: Transform
- pos: 80.5,-2.5
+ pos: 4.5,33.5
parent: 2
- - uid: 1864
+ - uid: 2828
components:
- type: Transform
- pos: -56.5,-48.5
+ pos: 10.5,34.5
parent: 2
- - uid: 1865
+ - uid: 2829
components:
- type: Transform
- pos: -58.5,-48.5
+ pos: -9.5,33.5
parent: 2
- - uid: 1866
+ - uid: 2830
components:
- type: Transform
- pos: -14.5,36.5
+ pos: 25.5,34.5
parent: 2
- - uid: 1867
+ - uid: 2831
components:
- type: Transform
- pos: 38.5,-4.5
+ pos: -1.5,-61.5
parent: 2
- - uid: 1868
+ - uid: 2832
components:
- type: Transform
- pos: 40.5,-4.5
+ pos: 48.5,-13.5
parent: 2
- - uid: 1869
+ - uid: 2833
components:
- type: Transform
- pos: 41.5,-4.5
+ pos: 25.5,38.5
parent: 2
- - uid: 1870
+ - uid: 2834
components:
- type: Transform
- pos: 39.5,-4.5
+ pos: 51.5,-18.5
parent: 2
- - uid: 1871
+ - uid: 2835
components:
- type: Transform
- pos: 92.5,4.5
+ pos: 28.5,36.5
parent: 2
- - uid: 1872
+ - uid: 2836
components:
- type: Transform
- pos: 94.5,3.5
+ pos: 19.5,37.5
parent: 2
- - uid: 1873
+ - uid: 2837
components:
- type: Transform
- pos: 97.5,-0.5
+ pos: -2.5,-80.5
parent: 2
- - uid: 1874
+ - uid: 2838
components:
- type: Transform
- pos: 94.5,4.5
+ pos: 19.5,36.5
parent: 2
- - uid: 1875
+ - uid: 2839
components:
- type: Transform
- pos: 90.5,9.5
+ pos: -56.5,-13.5
parent: 2
- - uid: 1876
+ - uid: 2840
components:
- type: Transform
- pos: 94.5,-0.5
+ pos: 0.5,33.5
parent: 2
- - uid: 1877
+ - uid: 2841
components:
- type: Transform
- pos: 94.5,0.5
+ pos: 30.5,36.5
parent: 2
- - uid: 1878
+ - uid: 2842
components:
- type: Transform
- pos: 94.5,6.5
+ pos: -53.5,-13.5
parent: 2
- - uid: 1879
+ - uid: 2843
components:
- type: Transform
- pos: -67.5,-44.5
+ pos: 6.5,65.5
parent: 2
- - uid: 1880
+ - uid: 2844
components:
- type: Transform
- pos: -67.5,-43.5
+ pos: -56.5,-3.5
parent: 2
- - uid: 1881
+ - uid: 2845
components:
- type: Transform
- pos: -66.5,-45.5
+ pos: -22.5,-30.5
parent: 2
- - uid: 1882
+ - uid: 2846
components:
- type: Transform
- pos: -67.5,-45.5
+ pos: -48.5,-8.5
parent: 2
- - uid: 1883
+ - uid: 2847
components:
- type: Transform
- pos: 96.5,3.5
+ pos: -52.5,1.5
parent: 2
- - uid: 1884
+ - uid: 2848
components:
- type: Transform
- pos: 97.5,-1.5
+ pos: -58.5,-3.5
parent: 2
- - uid: 1885
+ - uid: 2849
components:
- type: Transform
- pos: -65.5,-45.5
+ pos: 19.5,42.5
parent: 2
- - uid: 1886
+ - uid: 2850
components:
- type: Transform
- pos: -25.5,13.5
+ pos: 18.5,44.5
parent: 2
- - uid: 1887
+ - uid: 2851
components:
- type: Transform
- pos: -25.5,14.5
+ pos: 1.5,47.5
parent: 2
- - uid: 1888
+ - uid: 2852
components:
- type: Transform
- pos: -36.5,37.5
+ pos: 19.5,39.5
parent: 2
- - uid: 1889
+ - uid: 2853
components:
- type: Transform
- pos: -25.5,12.5
+ pos: 2.5,34.5
parent: 2
- - uid: 1890
+ - uid: 2854
components:
- type: Transform
- pos: 92.5,6.5
+ pos: 49.5,-18.5
parent: 2
- - uid: 1891
+ - uid: 2855
components:
- type: Transform
- pos: 92.5,2.5
+ pos: 6.5,52.5
parent: 2
- - uid: 1892
+ - uid: 2856
components:
- type: Transform
- pos: 94.5,-1.5
+ pos: 6.5,54.5
parent: 2
- - uid: 1893
+ - uid: 2857
components:
- type: Transform
- pos: -57.5,-49.5
+ pos: 10.5,90.5
parent: 2
- - uid: 1894
+ - uid: 2858
components:
- type: Transform
- pos: 92.5,7.5
+ pos: 17.5,87.5
parent: 2
- - uid: 1895
+ - uid: 2859
components:
- type: Transform
- pos: 92.5,1.5
+ pos: 10.5,86.5
parent: 2
- - uid: 1896
+ - uid: 2860
components:
- type: Transform
- pos: 94.5,1.5
+ pos: 50.5,-28.5
parent: 2
- - uid: 1897
+ - uid: 2861
components:
- type: Transform
- pos: 93.5,10.5
+ pos: 27.5,36.5
parent: 2
- - uid: 1898
+ - uid: 2862
components:
- type: Transform
- pos: 92.5,9.5
+ pos: 19.5,35.5
parent: 2
- - uid: 1899
+ - uid: 2863
components:
- type: Transform
- pos: 91.5,9.5
+ pos: 19.5,41.5
parent: 2
- - uid: 1900
+ - uid: 2864
components:
- type: Transform
- pos: 77.5,5.5
+ pos: -23.5,-65.5
parent: 2
- - uid: 1901
+ - uid: 2865
components:
- type: Transform
- pos: 77.5,4.5
+ pos: -23.5,-66.5
parent: 2
- - uid: 1902
+ - uid: 2866
components:
- type: Transform
- pos: 96.5,7.5
+ pos: -23.5,-64.5
parent: 2
- - uid: 1903
+ - uid: 2867
components:
- type: Transform
- pos: 19.5,17.5
+ pos: -20.5,-65.5
parent: 2
- - uid: 1904
+ - uid: 2868
components:
- type: Transform
- pos: 92.5,10.5
+ pos: 16.5,41.5
parent: 2
- - uid: 1905
+ - uid: 2869
components:
- type: Transform
- pos: 89.5,-1.5
+ pos: 15.5,23.5
parent: 2
- - uid: 1906
+ - uid: 2870
components:
- type: Transform
- pos: 93.5,-2.5
+ pos: 18.5,41.5
parent: 2
- - uid: 1907
+ - uid: 2871
components:
- type: Transform
- pos: 88.5,-2.5
+ pos: -23.5,-67.5
parent: 2
- - uid: 1908
+ - uid: 2872
components:
- type: Transform
- pos: 92.5,-2.5
+ pos: -2.5,38.5
parent: 2
- - uid: 1909
+ - uid: 2873
components:
- type: Transform
- pos: 88.5,-1.5
+ pos: -23.5,-69.5
parent: 2
- - uid: 1910
+ - uid: 2874
components:
- type: Transform
- pos: 95.5,-2.5
+ pos: -21.5,-65.5
parent: 2
- - uid: 1911
+ - uid: 2875
components:
- type: Transform
- pos: 91.5,-2.5
+ pos: 17.5,41.5
parent: 2
- - uid: 1912
+ - uid: 2876
components:
- type: Transform
- pos: 97.5,-3.5
+ pos: 14.5,23.5
parent: 2
- - uid: 1913
+ - uid: 2877
components:
- type: Transform
- pos: 97.5,-2.5
+ pos: -17.5,-71.5
parent: 2
- - uid: 1914
+ - uid: 2878
components:
- type: Transform
- pos: 90.5,-1.5
+ pos: -34.5,-75.5
parent: 2
- - uid: 1915
+ - uid: 2879
components:
- type: Transform
- pos: 92.5,5.5
+ pos: -16.5,-70.5
parent: 2
- - uid: 1916
+ - uid: 2880
components:
- type: Transform
- pos: 89.5,9.5
+ pos: 28.5,33.5
parent: 2
- - uid: 1917
+ - uid: 2881
components:
- type: Transform
- pos: 94.5,2.5
+ pos: -3.5,37.5
parent: 2
- - uid: 1918
+ - uid: 2882
components:
- type: Transform
- pos: 94.5,-3.5
+ pos: 6.5,-55.5
parent: 2
- - uid: 1919
+ - uid: 2883
components:
- type: Transform
- pos: -37.5,37.5
+ pos: 23.5,52.5
parent: 2
- - uid: 1920
+ - uid: 2884
components:
- type: Transform
- pos: -67.5,-38.5
+ pos: -50.5,-16.5
parent: 2
- - uid: 1921
+ - uid: 2885
components:
- type: Transform
- pos: -77.5,16.5
+ pos: 57.5,-27.5
parent: 2
- - uid: 1922
+ - uid: 2886
components:
- type: Transform
- pos: -77.5,17.5
+ pos: 41.5,-48.5
parent: 2
- - uid: 1923
+ - uid: 2887
components:
- type: Transform
- pos: -113.5,23.5
+ pos: 52.5,-30.5
parent: 2
- - uid: 1924
+ - uid: 2888
components:
- type: Transform
- pos: -112.5,23.5
+ pos: 52.5,-28.5
parent: 2
- - uid: 1925
+ - uid: 2889
components:
- type: Transform
- pos: -77.5,15.5
+ pos: 37.5,-15.5
parent: 2
- - uid: 1926
+ - uid: 2890
components:
- type: Transform
- pos: -111.5,23.5
+ pos: 34.5,-12.5
parent: 2
- - uid: 1927
+ - uid: 2891
components:
- type: Transform
- pos: -47.5,-27.5
+ pos: 54.5,-26.5
parent: 2
- - uid: 1928
+ - uid: 2892
components:
- type: Transform
- pos: 79.5,5.5
+ pos: 56.5,-26.5
parent: 2
- - uid: 1929
+ - uid: 2893
components:
- type: Transform
- pos: 91.5,1.5
+ pos: -38.5,-27.5
parent: 2
- - uid: 1930
+ - uid: 2894
components:
- type: Transform
- pos: 93.5,1.5
+ pos: -6.5,41.5
parent: 2
- - uid: 1931
+ - uid: 2895
components:
- type: Transform
- pos: 12.5,-28.5
+ pos: -8.5,33.5
parent: 2
- - uid: 1932
+ - uid: 2896
components:
- type: Transform
- pos: 14.5,87.5
+ pos: -24.5,1.5
parent: 2
- - uid: 1933
+ - uid: 2897
components:
- type: Transform
- pos: -58.5,-47.5
+ pos: -66.5,-20.5
parent: 2
- - uid: 1934
+ - uid: 2898
components:
- type: Transform
- pos: 79.5,7.5
+ pos: -30.5,20.5
parent: 2
- - uid: 1935
+ - uid: 2899
components:
- type: Transform
- pos: 77.5,6.5
+ pos: -26.5,25.5
parent: 2
- - uid: 1936
+ - uid: 2900
components:
- type: Transform
- pos: 76.5,4.5
+ pos: -35.5,26.5
parent: 2
- - uid: 1937
+ - uid: 2901
components:
- type: Transform
- pos: 78.5,5.5
+ pos: -21.5,-79.5
parent: 2
- - uid: 1938
+ - uid: 2902
components:
- type: Transform
- pos: 95.5,1.5
+ pos: -32.5,61.5
parent: 2
- - uid: 1939
+ - uid: 2903
components:
- type: Transform
- pos: 88.5,-4.5
+ pos: 36.5,-30.5
parent: 2
- - uid: 1940
+ - uid: 2904
components:
- type: Transform
- pos: 88.5,-3.5
+ pos: 31.5,-70.5
parent: 2
- - uid: 1941
+ - uid: 2905
components:
- type: Transform
- pos: -59.5,-47.5
+ pos: 31.5,-67.5
parent: 2
- - uid: 1942
+ - uid: 2906
components:
- type: Transform
- pos: 86.5,-1.5
+ pos: 32.5,-59.5
parent: 2
- - uid: 1943
+ - uid: 2907
components:
- type: Transform
- pos: 96.5,5.5
+ pos: -44.5,39.5
parent: 2
- - uid: 1944
+ - uid: 2908
components:
- type: Transform
- pos: -57.5,-48.5
+ pos: -30.5,21.5
parent: 2
- - uid: 1945
+ - uid: 2909
components:
- type: Transform
- pos: -58.5,-48.5
+ pos: -40.5,-27.5
parent: 2
- - uid: 1946
+ - uid: 2910
components:
- type: Transform
- pos: 94.5,-2.5
+ pos: -69.5,-20.5
parent: 2
- - uid: 1947
+ - uid: 2911
components:
- type: Transform
- pos: 96.5,1.5
+ pos: -48.5,-26.5
parent: 2
- - uid: 1948
+ - uid: 2912
components:
- type: Transform
- pos: 94.5,5.5
+ pos: -28.5,1.5
parent: 2
- - uid: 1949
+ - uid: 2913
components:
- type: Transform
- pos: 92.5,3.5
+ pos: 35.5,-28.5
parent: 2
- - uid: 1950
+ - uid: 2914
components:
- type: Transform
- pos: -58.5,-49.5
+ pos: 36.5,-31.5
parent: 2
- - uid: 1951
+ - uid: 2915
components:
- type: Transform
- pos: -60.5,-35.5
+ pos: -31.5,57.5
parent: 2
- - uid: 1952
+ - uid: 2916
components:
- type: Transform
- pos: 96.5,6.5
+ pos: -2.5,51.5
parent: 2
- - uid: 1953
+ - uid: 2917
components:
- type: Transform
- pos: 96.5,2.5
+ pos: -15.5,52.5
parent: 2
- - uid: 1954
+ - uid: 2918
components:
- type: Transform
- pos: 11.5,89.5
+ pos: -29.5,57.5
parent: 2
- - uid: 1955
+ - uid: 2919
components:
- type: Transform
- pos: 11.5,88.5
+ pos: -9.5,-19.5
parent: 2
- - uid: 1956
+ - uid: 2920
components:
- type: Transform
- pos: 11.5,87.5
+ pos: -20.5,41.5
parent: 2
- - uid: 1957
+ - uid: 2921
components:
- type: Transform
- pos: 12.5,87.5
+ pos: -25.5,32.5
parent: 2
- - uid: 1958
+ - uid: 2922
components:
- type: Transform
- pos: 13.5,87.5
+ pos: -28.5,42.5
parent: 2
- - uid: 1959
+ - uid: 2923
components:
- type: Transform
- pos: 15.5,87.5
+ pos: -37.5,12.5
parent: 2
- - uid: 1960
+ - uid: 2924
components:
- type: Transform
- pos: 16.5,87.5
+ pos: -26.5,20.5
parent: 2
- - uid: 1961
+ - uid: 2925
components:
- type: Transform
- pos: 10.5,87.5
+ pos: -37.5,13.5
parent: 2
- - uid: 1962
+ - uid: 2926
components:
- type: Transform
- pos: 10.5,86.5
+ pos: -29.5,28.5
parent: 2
- - uid: 1963
+ - uid: 2927
components:
- type: Transform
- pos: 10.5,85.5
+ pos: -25.5,52.5
parent: 2
- - uid: 1964
+ - uid: 2928
components:
- type: Transform
- pos: 10.5,84.5
+ pos: -25.5,51.5
parent: 2
- - uid: 1965
+ - uid: 2929
components:
- type: Transform
- pos: 10.5,83.5
+ pos: -73.5,-20.5
parent: 2
- - uid: 1966
+ - uid: 2930
components:
- type: Transform
- pos: 10.5,82.5
+ pos: 30.5,-34.5
parent: 2
- - uid: 1967
+ - uid: 2931
components:
- type: Transform
- pos: 10.5,81.5
+ pos: 60.5,-30.5
parent: 2
- - uid: 1968
+ - uid: 2932
components:
- type: Transform
- pos: 11.5,81.5
+ pos: -33.5,-2.5
parent: 2
- - uid: 1969
+ - uid: 2933
components:
- type: Transform
- pos: 11.5,80.5
+ pos: 11.5,23.5
parent: 2
- - uid: 1970
+ - uid: 2934
components:
- type: Transform
- pos: 11.5,79.5
+ pos: -12.5,-71.5
parent: 2
- - uid: 1971
+ - uid: 2935
components:
- type: Transform
- pos: 11.5,78.5
+ pos: -8.5,-75.5
parent: 2
- - uid: 1972
+ - uid: 2936
components:
- type: Transform
- pos: 11.5,77.5
+ pos: -22.5,-73.5
parent: 2
- - uid: 1973
+ - uid: 2937
components:
- type: Transform
- pos: 11.5,76.5
+ pos: -8.5,-76.5
parent: 2
- - uid: 1974
+ - uid: 2938
components:
- type: Transform
- pos: 11.5,75.5
+ pos: 32.5,-61.5
parent: 2
- - uid: 1975
+ - uid: 2939
components:
- type: Transform
- pos: 11.5,74.5
+ pos: 26.5,-67.5
parent: 2
- - uid: 1976
+ - uid: 2940
components:
- type: Transform
- pos: 12.5,78.5
+ pos: -41.5,-73.5
parent: 2
- - uid: 1977
->>>>>>> master
+ - uid: 2941
components:
- type: Transform
- pos: 13.5,78.5
+ pos: -16.5,49.5
parent: 2
-<<<<<<< HEAD
- - uid: 1945
-=======
- - uid: 1978
->>>>>>> master
+ - uid: 2942
components:
- type: Transform
- pos: 14.5,78.5
+ pos: 4.5,-44.5
parent: 2
-<<<<<<< HEAD
- - uid: 1946
-=======
- - uid: 1979
->>>>>>> master
+ - uid: 2943
components:
- type: Transform
- pos: 15.5,78.5
+ pos: -23.5,1.5
parent: 2
-<<<<<<< HEAD
- - uid: 1947
+ - uid: 2944
components:
- type: Transform
- pos: 78.5,22.5
+ pos: -8.5,-73.5
parent: 2
- - uid: 1948
+ - uid: 2945
components:
- type: Transform
- pos: 16.5,78.5
+ pos: 25.5,-65.5
parent: 2
- - uid: 1949
+ - uid: 2946
components:
- type: Transform
- pos: 69.5,-0.5
+ pos: -64.5,-20.5
parent: 2
- - uid: 1950
+ - uid: 2947
components:
- type: Transform
- pos: 64.5,6.5
+ pos: -72.5,-20.5
parent: 2
- - uid: 1951
+ - uid: 2948
components:
- type: Transform
- pos: -71.5,41.5
+ pos: -41.5,-26.5
parent: 2
- - uid: 1952
+ - uid: 2949
components:
- type: Transform
- pos: 56.5,6.5
+ pos: 13.5,23.5
parent: 2
- - uid: 1953
+ - uid: 2950
components:
- type: Transform
- pos: 24.5,16.5
+ pos: -2.5,-76.5
parent: 2
- - uid: 1954
+ - uid: 2951
components:
- type: Transform
- pos: 44.5,22.5
+ pos: -18.5,-71.5
parent: 2
- - uid: 1955
+ - uid: 2952
components:
- type: Transform
- pos: 57.5,-4.5
+ pos: -32.5,-76.5
parent: 2
- - uid: 1956
+ - uid: 2953
components:
- type: Transform
- pos: -1.5,-6.5
+ pos: -25.5,-74.5
parent: 2
- - uid: 1957
+ - uid: 2954
components:
- type: Transform
- pos: 64.5,0.5
+ pos: 0.5,-69.5
parent: 2
- - uid: 1958
+ - uid: 2955
components:
- type: Transform
- pos: 47.5,4.5
+ pos: -8.5,-67.5
parent: 2
- - uid: 1959
+ - uid: 2956
components:
- type: Transform
- pos: -50.5,-44.5
+ pos: -30.5,-26.5
parent: 2
- - uid: 1960
+ - uid: 2957
components:
- type: Transform
- pos: 65.5,-2.5
+ pos: -28.5,-19.5
parent: 2
- - uid: 1961
+ - uid: 2958
components:
- type: Transform
- pos: 73.5,8.5
+ pos: 68.5,-15.5
parent: 2
- - uid: 1962
+ - uid: 2959
components:
- type: Transform
- pos: -0.5,9.5
+ pos: -33.5,10.5
parent: 2
- - uid: 1963
+ - uid: 2960
components:
- type: Transform
- pos: 61.5,9.5
+ pos: -34.5,12.5
parent: 2
- - uid: 1964
+ - uid: 2961
components:
- type: Transform
- pos: 38.5,21.5
+ pos: -23.5,-0.5
parent: 2
- - uid: 1965
+ - uid: 2962
components:
- type: Transform
- pos: 49.5,0.5
+ pos: -6.5,45.5
parent: 2
- - uid: 1966
+ - uid: 2963
components:
- type: Transform
- pos: 43.5,17.5
+ pos: -63.5,25.5
parent: 2
- - uid: 1967
+ - uid: 2964
components:
- type: Transform
- pos: 48.5,22.5
+ pos: -56.5,50.5
parent: 2
- - uid: 1968
+ - uid: 2965
components:
- type: Transform
- pos: -65.5,-23.5
+ pos: -115.5,18.5
parent: 2
- - uid: 1969
+ - uid: 2966
components:
- type: Transform
- pos: -38.5,28.5
+ pos: 27.5,-35.5
parent: 2
- - uid: 1970
+ - uid: 2967
components:
- type: Transform
- pos: -65.5,-22.5
+ pos: -36.5,-52.5
parent: 2
- - uid: 1971
+ - uid: 2968
components:
- type: Transform
- pos: 89.5,2.5
+ pos: 6.5,-24.5
parent: 2
- - uid: 1972
+ - uid: 2969
components:
- type: Transform
- pos: 71.5,15.5
+ pos: 7.5,-34.5
parent: 2
- - uid: 1973
+ - uid: 2970
components:
- type: Transform
- pos: 37.5,21.5
+ pos: 6.5,14.5
parent: 2
- - uid: 1974
+ - uid: 2971
components:
- type: Transform
- pos: 74.5,3.5
+ pos: -9.5,-14.5
parent: 2
- - uid: 1975
+ - uid: 2972
components:
- type: Transform
- pos: 74.5,24.5
+ pos: 11.5,-16.5
parent: 2
- - uid: 1976
+ - uid: 2973
components:
- type: Transform
- pos: 71.5,0.5
+ pos: 51.5,-45.5
parent: 2
- - uid: 1977
+ - uid: 2974
components:
- type: Transform
- pos: 32.5,50.5
+ pos: 70.5,-15.5
parent: 2
- - uid: 1978
+ - uid: 2975
components:
- type: Transform
- pos: 72.5,4.5
+ pos: 6.5,64.5
parent: 2
- - uid: 1979
+ - uid: 2976
components:
- type: Transform
- pos: 43.5,21.5
+ pos: 6.5,63.5
parent: 2
- - uid: 1980
+ - uid: 2977
components:
- type: Transform
- pos: 53.5,9.5
+ pos: -59.5,-16.5
parent: 2
- - uid: 1981
+ - uid: 2978
components:
- type: Transform
- pos: 54.5,8.5
+ pos: 10.5,88.5
parent: 2
- - uid: 1982
+ - uid: 2979
components:
- type: Transform
- pos: 46.5,5.5
+ pos: 20.5,44.5
parent: 2
- - uid: 1983
+ - uid: 2980
components:
- type: Transform
- pos: 74.5,8.5
+ pos: -11.5,73.5
parent: 2
- - uid: 1984
+ - uid: 2981
components:
- type: Transform
- pos: 43.5,22.5
+ pos: 0.5,35.5
parent: 2
- - uid: 1985
+ - uid: 2982
components:
- type: Transform
- pos: 46.5,16.5
+ pos: -31.5,35.5
parent: 2
- - uid: 1986
+ - uid: 2983
components:
- type: Transform
- pos: 47.5,19.5
+ pos: 12.5,87.5
parent: 2
- - uid: 1987
+ - uid: 2984
components:
- type: Transform
- pos: 54.5,11.5
+ pos: -67.5,-20.5
parent: 2
- - uid: 1988
+ - uid: 2985
components:
- type: Transform
- pos: 41.5,18.5
+ pos: -30.5,19.5
parent: 2
- - uid: 1989
+ - uid: 2986
components:
- type: Transform
- pos: 49.5,7.5
+ pos: -41.5,-27.5
parent: 2
- - uid: 1990
+ - uid: 2987
components:
- type: Transform
- pos: 52.5,19.5
+ pos: -27.5,1.5
parent: 2
- - uid: 1991
+ - uid: 2988
components:
- type: Transform
- pos: 50.5,12.5
+ pos: -30.5,38.5
parent: 2
- - uid: 1992
+ - uid: 2989
components:
- type: Transform
- pos: 44.5,19.5
+ pos: 31.5,-59.5
parent: 2
- - uid: 1993
+ - uid: 2990
components:
- type: Transform
- pos: -51.5,-46.5
+ pos: -35.5,-74.5
parent: 2
- - uid: 1994
+ - uid: 2991
components:
- type: Transform
- pos: 75.5,8.5
+ pos: 10.5,89.5
parent: 2
- - uid: 1995
+ - uid: 2992
components:
- type: Transform
- pos: 57.5,-3.5
+ pos: 73.5,-18.5
parent: 2
- - uid: 1996
+ - uid: 2993
components:
- type: Transform
- pos: -59.5,-28.5
+ pos: 41.5,-52.5
parent: 2
- - uid: 1997
+ - uid: 2994
components:
- type: Transform
- pos: -68.5,43.5
+ pos: 45.5,1.5
parent: 2
- - uid: 1998
+ - uid: 2995
components:
- type: Transform
- pos: 25.5,16.5
+ pos: 40.5,-41.5
parent: 2
- - uid: 1999
+ - uid: 2996
components:
- type: Transform
- pos: -23.5,-36.5
+ pos: -12.5,-61.5
parent: 2
- - uid: 2000
+ - uid: 2997
components:
- type: Transform
- pos: -68.5,31.5
+ pos: -24.5,25.5
parent: 2
- - uid: 2001
+ - uid: 2998
components:
- type: Transform
- pos: 53.5,6.5
+ pos: -30.5,50.5
parent: 2
- - uid: 2002
+ - uid: 2999
components:
- type: Transform
- pos: 53.5,6.5
+ pos: -36.5,-15.5
parent: 2
- - uid: 2003
+ - uid: 3000
components:
- type: Transform
- pos: 58.5,12.5
+ pos: -11.5,41.5
parent: 2
- - uid: 2004
+ - uid: 3001
components:
- type: Transform
- pos: 41.5,19.5
+ pos: -37.5,-25.5
parent: 2
- - uid: 2005
+ - uid: 3002
components:
- type: Transform
- pos: 60.5,9.5
+ pos: -41.5,45.5
parent: 2
- - uid: 2006
+ - uid: 3003
components:
- type: Transform
- pos: -56.5,-8.5
+ pos: -4.5,66.5
parent: 2
- - uid: 2007
+ - uid: 3004
components:
- type: Transform
- pos: -41.5,-32.5
+ pos: -33.5,-24.5
parent: 2
- - uid: 2008
+ - uid: 3005
components:
- type: Transform
- pos: -46.5,-45.5
+ pos: 75.5,28.5
parent: 2
- - uid: 2009
+ - uid: 3006
components:
- type: Transform
- pos: -62.5,-34.5
+ pos: -54.5,-23.5
parent: 2
- - uid: 2010
+ - uid: 3007
components:
- type: Transform
- pos: 33.5,50.5
+ pos: -63.5,-30.5
parent: 2
- - uid: 2011
+ - uid: 3008
components:
- type: Transform
- pos: -12.5,30.5
+ pos: -15.5,-61.5
parent: 2
- - uid: 2012
+ - uid: 3009
components:
- type: Transform
- pos: -28.5,31.5
+ pos: -11.5,40.5
parent: 2
- - uid: 2013
+ - uid: 3010
components:
- type: Transform
- pos: 27.5,39.5
+ pos: -11.5,43.5
parent: 2
- - uid: 2014
+ - uid: 3011
components:
- type: Transform
- pos: -70.5,27.5
+ pos: -28.5,54.5
parent: 2
- - uid: 2015
+ - uid: 3012
components:
- type: Transform
- pos: 58.5,3.5
+ pos: -56.5,41.5
parent: 2
- - uid: 2016
+ - uid: 3013
components:
- type: Transform
- pos: -12.5,71.5
+ pos: -28.5,23.5
parent: 2
- - uid: 2017
+ - uid: 3014
components:
- type: Transform
- pos: -11.5,79.5
+ pos: 6.5,39.5
parent: 2
- - uid: 2018
+ - uid: 3015
components:
- type: Transform
- pos: -69.5,49.5
+ pos: 56.5,-19.5
parent: 2
- - uid: 2019
+ - uid: 3016
components:
- type: Transform
- pos: -68.5,29.5
+ pos: 41.5,-20.5
parent: 2
- - uid: 2020
+ - uid: 3017
components:
- type: Transform
- pos: -39.5,-74.5
+ pos: 24.5,-14.5
parent: 2
- - uid: 2021
+ - uid: 3018
components:
- type: Transform
- pos: -62.5,-32.5
+ pos: 23.5,-14.5
parent: 2
- - uid: 2022
+ - uid: 3019
components:
- type: Transform
- pos: 27.5,50.5
+ pos: 80.5,-21.5
parent: 2
- - uid: 2023
+ - uid: 3020
components:
- type: Transform
- pos: -69.5,41.5
+ pos: -54.5,0.5
parent: 2
- - uid: 2024
+ - uid: 3021
components:
- type: Transform
- pos: -68.5,26.5
+ pos: -18.5,11.5
parent: 2
- - uid: 2025
+ - uid: 3022
components:
- type: Transform
- pos: 53.5,0.5
+ pos: 7.5,27.5
parent: 2
- - uid: 2026
+ - uid: 3023
components:
- type: Transform
- pos: -66.5,-33.5
+ pos: 20.5,18.5
parent: 2
- - uid: 2027
+ - uid: 3024
components:
- type: Transform
- pos: 26.5,50.5
+ pos: 20.5,27.5
parent: 2
- - uid: 2028
+ - uid: 3025
components:
- type: Transform
- pos: 30.5,31.5
+ pos: -15.5,53.5
parent: 2
- - uid: 2029
+ - uid: 3026
components:
- type: Transform
- pos: -68.5,-39.5
+ pos: 28.5,56.5
parent: 2
- - uid: 2030
+ - uid: 3027
components:
- type: Transform
- pos: 73.5,13.5
+ pos: 19.5,51.5
parent: 2
- - uid: 2031
+ - uid: 3028
components:
- type: Transform
- pos: 73.5,18.5
+ pos: -21.5,68.5
parent: 2
- - uid: 2032
+ - uid: 3029
components:
- type: Transform
- pos: -70.5,-35.5
+ pos: -29.5,51.5
parent: 2
- - uid: 2033
+ - uid: 3030
components:
- type: Transform
- pos: 24.5,17.5
+ pos: 10.5,58.5
parent: 2
- - uid: 2034
+ - uid: 3031
components:
- type: Transform
- pos: -32.5,-41.5
+ pos: -58.5,-16.5
parent: 2
- - uid: 2035
+ - uid: 3032
components:
- type: Transform
- pos: 69.5,15.5
+ pos: -0.5,-66.5
parent: 2
- - uid: 2036
+ - uid: 3033
components:
- type: Transform
- pos: -37.5,-32.5
+ pos: 37.5,-26.5
parent: 2
- - uid: 2037
+ - uid: 3034
components:
- type: Transform
- pos: 23.5,-1.5
+ pos: 36.5,-34.5
parent: 2
- - uid: 2038
+ - uid: 3035
components:
- type: Transform
- pos: -11.5,82.5
+ pos: -17.5,-80.5
parent: 2
- - uid: 2039
+ - uid: 3036
components:
- type: Transform
- pos: 29.5,-4.5
+ pos: -32.5,-77.5
parent: 2
- - uid: 2040
+ - uid: 3037
components:
- type: Transform
- pos: -56.5,-6.5
+ pos: 0.5,-68.5
parent: 2
- - uid: 2041
+ - uid: 3038
components:
- type: Transform
- pos: 35.5,21.5
+ pos: -25.5,-75.5
parent: 2
- - uid: 2042
+ - uid: 3039
components:
- type: Transform
- pos: 56.5,-3.5
+ pos: -35.5,31.5
parent: 2
- - uid: 2043
+ - uid: 3040
components:
- type: Transform
- pos: 65.5,-4.5
+ pos: -29.5,-26.5
parent: 2
- - uid: 2044
+ - uid: 3041
components:
- type: Transform
- pos: 65.5,0.5
+ pos: -38.5,0.5
parent: 2
- - uid: 2045
+ - uid: 3042
components:
- type: Transform
- pos: -31.5,-42.5
+ pos: -0.5,-65.5
parent: 2
- - uid: 2046
+ - uid: 3043
components:
- type: Transform
- pos: 66.5,26.5
+ pos: 17.5,24.5
parent: 2
- - uid: 2047
+ - uid: 3044
components:
- type: Transform
- pos: 47.5,6.5
+ pos: 26.5,28.5
parent: 2
- - uid: 2048
+ - uid: 3045
components:
- type: Transform
- pos: 63.5,-3.5
+ pos: -25.5,36.5
parent: 2
- - uid: 2049
+ - uid: 3046
components:
- type: Transform
- pos: 76.5,22.5
+ pos: -39.5,12.5
parent: 2
- - uid: 2050
+ - uid: 3047
components:
- type: Transform
- pos: -37.5,-23.5
+ pos: -24.5,21.5
parent: 2
- - uid: 2051
+ - uid: 3048
components:
- type: Transform
- pos: 91.5,2.5
+ pos: -43.5,40.5
parent: 2
- - uid: 2052
+ - uid: 3049
components:
- type: Transform
- pos: 57.5,12.5
+ pos: -43.5,41.5
parent: 2
- - uid: 2053
+ - uid: 3050
components:
- type: Transform
- pos: 46.5,8.5
+ pos: -25.5,35.5
parent: 2
- - uid: 2054
+ - uid: 3051
components:
- type: Transform
- pos: -70.5,-33.5
+ pos: -6.5,37.5
parent: 2
- - uid: 2055
+ - uid: 3052
components:
- type: Transform
- pos: 43.5,18.5
+ pos: -37.5,-24.5
parent: 2
- - uid: 2056
+ - uid: 3053
components:
- type: Transform
- pos: 61.5,-5.5
+ pos: -5.5,27.5
parent: 2
- - uid: 2057
+ - uid: 3054
components:
- type: Transform
- pos: -66.5,-37.5
+ pos: -41.5,14.5
parent: 2
- - uid: 2058
+ - uid: 3055
components:
- type: Transform
- pos: 55.5,14.5
+ pos: -34.5,20.5
parent: 2
- - uid: 2059
+ - uid: 3056
components:
- type: Transform
- pos: 31.5,50.5
+ pos: -45.5,33.5
parent: 2
- - uid: 2060
+ - uid: 3057
components:
- type: Transform
- pos: 72.5,22.5
+ pos: -45.5,32.5
parent: 2
- - uid: 2061
+ - uid: 3058
components:
- type: Transform
- pos: 73.5,-4.5
+ pos: -31.5,5.5
parent: 2
- - uid: 2062
+ - uid: 3059
components:
- type: Transform
- pos: 53.5,30.5
+ pos: 8.5,-13.5
parent: 2
- - uid: 2063
+ - uid: 3060
components:
- type: Transform
- pos: 53.5,29.5
+ pos: -20.5,-34.5
parent: 2
- - uid: 2064
+ - uid: 3061
components:
- type: Transform
- pos: -69.5,31.5
+ pos: 54.5,-4.5
parent: 2
- - uid: 2065
+ - uid: 3062
components:
- type: Transform
- pos: 29.5,50.5
+ pos: 17.5,-25.5
parent: 2
- - uid: 2066
+ - uid: 3063
components:
- type: Transform
- pos: 59.5,-3.5
+ pos: -4.5,-11.5
parent: 2
- - uid: 2067
+ - uid: 3064
components:
- type: Transform
- pos: -68.5,47.5
+ pos: -17.5,-34.5
parent: 2
- - uid: 2068
+ - uid: 3065
components:
- type: Transform
- pos: 53.5,27.5
+ pos: 10.5,-13.5
parent: 2
- - uid: 2069
+ - uid: 3066
components:
- type: Transform
- pos: 28.5,39.5
+ pos: 17.5,-43.5
parent: 2
- - uid: 2070
+ - uid: 3067
components:
- type: Transform
- pos: 53.5,28.5
+ pos: 25.5,-37.5
parent: 2
- - uid: 2071
+ - uid: 3068
components:
- type: Transform
- pos: -68.5,36.5
+ pos: 20.5,-25.5
parent: 2
- - uid: 2072
+ - uid: 3069
components:
- type: Transform
- pos: -69.5,21.5
+ pos: 17.5,-44.5
parent: 2
- - uid: 2073
+ - uid: 3070
components:
- type: Transform
- pos: 47.5,5.5
+ pos: 25.5,-34.5
parent: 2
- - uid: 2074
+ - uid: 3071
components:
- type: Transform
- pos: 42.5,20.5
+ pos: -34.5,-42.5
parent: 2
- - uid: 2075
+ - uid: 3072
components:
- type: Transform
- pos: -15.5,31.5
+ pos: -9.5,-23.5
parent: 2
- - uid: 2076
+ - uid: 3073
components:
- type: Transform
- pos: -15.5,29.5
+ pos: -25.5,-34.5
parent: 2
- - uid: 2077
+ - uid: 3074
components:
- type: Transform
- pos: -68.5,49.5
+ pos: -50.5,38.5
parent: 2
- - uid: 2078
+ - uid: 3075
components:
- type: Transform
- pos: 90.5,3.5
+ pos: 12.5,-24.5
parent: 2
- - uid: 2079
+ - uid: 3076
components:
- type: Transform
- pos: 28.5,50.5
+ pos: 24.5,-34.5
parent: 2
- - uid: 2080
+ - uid: 3077
components:
- type: Transform
- pos: 30.5,50.5
+ pos: 14.5,-38.5
parent: 2
- - uid: 2081
+ - uid: 3078
components:
- type: Transform
- pos: -48.5,51.5
+ pos: 25.5,-38.5
parent: 2
- - uid: 2082
+ - uid: 3079
components:
- type: Transform
- pos: 51.5,7.5
+ pos: -11.5,-11.5
parent: 2
- - uid: 2083
+ - uid: 3080
components:
- type: Transform
- pos: 57.5,0.5
+ pos: 13.5,3.5
parent: 2
- - uid: 2084
+ - uid: 3081
components:
- type: Transform
- pos: 33.5,21.5
+ pos: 24.5,-45.5
parent: 2
- - uid: 2085
+ - uid: 3082
components:
- type: Transform
- pos: -11.5,80.5
+ pos: 19.5,-28.5
parent: 2
- - uid: 2086
+ - uid: 3083
components:
- type: Transform
- pos: 61.5,15.5
+ pos: 17.5,-41.5
parent: 2
- - uid: 2087
+ - uid: 3084
components:
- type: Transform
- pos: -0.5,3.5
+ pos: -28.5,-34.5
parent: 2
- - uid: 2088
+ - uid: 3085
components:
- type: Transform
- pos: -68.5,-38.5
+ pos: -18.5,8.5
parent: 2
- - uid: 2089
+ - uid: 3086
components:
- type: Transform
- pos: -15.5,28.5
+ pos: -18.5,9.5
parent: 2
- - uid: 2090
+ - uid: 3087
components:
- type: Transform
- pos: 24.5,20.5
+ pos: -0.5,-62.5
parent: 2
- - uid: 2091
+ - uid: 3088
components:
- type: Transform
- pos: 58.5,12.5
+ pos: -20.5,-61.5
parent: 2
- - uid: 2092
+ - uid: 3089
components:
- type: Transform
- pos: 69.5,16.5
+ pos: 29.5,-64.5
parent: 2
- - uid: 2093
+ - uid: 3090
components:
- type: Transform
- pos: 33.5,20.5
+ pos: -41.5,46.5
parent: 2
- - uid: 2094
+ - uid: 3091
components:
- type: Transform
- pos: -70.5,-36.5
+ pos: -58.5,-1.5
parent: 2
- - uid: 2095
+ - uid: 3092
components:
- type: Transform
- pos: 66.5,0.5
+ pos: -18.5,10.5
parent: 2
- - uid: 2096
+ - uid: 3093
components:
- type: Transform
- pos: -46.5,-44.5
+ pos: 4.5,68.5
parent: 2
- - uid: 2097
+ - uid: 3094
components:
- type: Transform
- pos: -46.5,-43.5
+ pos: 1.5,68.5
parent: 2
- - uid: 2098
+ - uid: 3095
components:
- type: Transform
- pos: -67.5,-37.5
+ pos: -18.5,5.5
parent: 2
- - uid: 2099
+ - uid: 3096
components:
- type: Transform
- pos: 13.5,-8.5
+ pos: -47.5,-47.5
parent: 2
- - uid: 2100
+ - uid: 3097
components:
- type: Transform
- pos: -23.5,-44.5
+ pos: -5.5,-62.5
parent: 2
- - uid: 2101
+ - uid: 3098
components:
- type: Transform
- pos: -25.5,-45.5
+ pos: -29.5,96.5
parent: 2
- - uid: 2102
+ - uid: 3099
components:
- type: Transform
- pos: -23.5,-45.5
+ pos: 6.5,89.5
parent: 2
- - uid: 2103
+ - uid: 3100
components:
- type: Transform
- pos: -70.5,-37.5
+ pos: 10.5,82.5
parent: 2
- - uid: 2104
+ - uid: 3101
components:
- type: Transform
- pos: -54.5,-38.5
+ pos: 67.5,-16.5
parent: 2
- - uid: 2105
+ - uid: 3102
components:
- type: Transform
- pos: -68.5,37.5
+ pos: -47.5,-2.5
parent: 2
- - uid: 2106
+ - uid: 3103
components:
- type: Transform
- pos: 47.5,-4.5
+ pos: -48.5,-7.5
parent: 2
- - uid: 2107
+ - uid: 3104
components:
- type: Transform
- pos: -68.5,32.5
+ pos: 80.5,-20.5
parent: 2
- - uid: 2108
+ - uid: 3105
components:
- type: Transform
- pos: -11.5,87.5
+ pos: 73.5,-15.5
parent: 2
- - uid: 2109
+ - uid: 3106
components:
- type: Transform
- pos: -68.5,33.5
+ pos: 56.5,-20.5
parent: 2
- - uid: 2110
+ - uid: 3107
components:
- type: Transform
- pos: -11.5,86.5
+ pos: 42.5,-20.5
parent: 2
- - uid: 2111
+ - uid: 3108
components:
- type: Transform
- pos: 55.5,6.5
+ pos: 25.5,-14.5
parent: 2
- - uid: 2112
+ - uid: 3109
components:
- type: Transform
- pos: -26.5,-45.5
+ pos: 22.5,18.5
parent: 2
- - uid: 2113
+ - uid: 3110
components:
- type: Transform
- pos: -15.5,27.5
+ pos: 9.5,27.5
parent: 2
- - uid: 2114
+ - uid: 3111
components:
- type: Transform
- pos: 35.5,19.5
+ pos: 20.5,26.5
parent: 2
- - uid: 2115
+ - uid: 3112
components:
- type: Transform
- pos: 46.5,15.5
+ pos: 2.5,27.5
parent: 2
- - uid: 2116
+ - uid: 3113
components:
- type: Transform
- pos: -38.5,-73.5
+ pos: 21.5,24.5
parent: 2
- - uid: 2117
+ - uid: 3114
components:
- type: Transform
- pos: 47.5,-3.5
+ pos: 19.5,49.5
parent: 2
- - uid: 2118
+ - uid: 3115
components:
- type: Transform
- pos: 34.5,-25.5
+ pos: 0.5,63.5
parent: 2
- - uid: 2119
+ - uid: 3116
components:
- type: Transform
- pos: -0.5,-0.5
+ pos: -9.5,-61.5
parent: 2
- - uid: 2120
+ - uid: 3117
components:
- type: Transform
- pos: 25.5,20.5
+ pos: -14.5,-61.5
parent: 2
- - uid: 2121
+ - uid: 3118
components:
- type: Transform
- pos: 44.5,18.5
+ pos: 38.5,-69.5
parent: 2
- - uid: 2122
+ - uid: 3119
components:
- type: Transform
- pos: -29.5,58.5
+ pos: 44.5,-62.5
parent: 2
- - uid: 2123
+ - uid: 3120
components:
- type: Transform
- pos: -70.5,49.5
+ pos: 75.5,27.5
parent: 2
- - uid: 2124
+ - uid: 3121
components:
- type: Transform
- pos: 36.5,21.5
+ pos: -43.5,39.5
parent: 2
- - uid: 2125
+ - uid: 3122
components:
- type: Transform
- pos: 61.5,-4.5
+ pos: 13.5,-44.5
parent: 2
- - uid: 2126
+ - uid: 3123
components:
- type: Transform
- pos: -52.5,55.5
+ pos: -27.5,54.5
parent: 2
- - uid: 2127
+ - uid: 3124
components:
- type: Transform
- pos: 60.5,-3.5
+ pos: -11.5,42.5
parent: 2
- - uid: 2128
+ - uid: 3125
components:
- type: Transform
- pos: -11.5,88.5
+ pos: 27.5,33.5
parent: 2
- - uid: 2129
+ - uid: 3126
components:
- type: Transform
- pos: 37.5,19.5
+ pos: 16.5,23.5
parent: 2
- - uid: 2130
+ - uid: 3127
components:
- type: Transform
- pos: 72.5,-4.5
+ pos: -4.5,59.5
parent: 2
- - uid: 2131
+ - uid: 3128
components:
- type: Transform
- pos: 73.5,10.5
+ pos: -42.5,31.5
parent: 2
- - uid: 2132
+ - uid: 3129
components:
- type: Transform
- pos: 73.5,14.5
+ pos: 36.5,-28.5
parent: 2
- - uid: 2133
+ - uid: 3130
components:
- type: Transform
- pos: 42.5,24.5
+ pos: -32.5,57.5
parent: 2
- - uid: 2134
+ - uid: 3131
components:
- type: Transform
- pos: -66.5,-35.5
+ pos: -41.5,-24.5
parent: 2
- - uid: 2135
+ - uid: 3132
components:
- type: Transform
- pos: 75.5,3.5
+ pos: -25.5,50.5
parent: 2
- - uid: 2136
+ - uid: 3133
components:
- type: Transform
- pos: 73.5,0.5
+ pos: 11.5,2.5
parent: 2
- - uid: 2137
+ - uid: 3134
components:
- type: Transform
- pos: 77.5,22.5
+ pos: 13.5,-15.5
parent: 2
- - uid: 2138
+ - uid: 3135
components:
- type: Transform
- pos: 50.5,3.5
+ pos: -19.5,-36.5
parent: 2
- - uid: 2139
+ - uid: 3136
components:
- type: Transform
- pos: 72.5,1.5
+ pos: -14.5,-34.5
parent: 2
- - uid: 2140
+ - uid: 3137
components:
- type: Transform
- pos: -24.5,-45.5
+ pos: 4.5,15.5
parent: 2
- - uid: 2141
+ - uid: 3138
components:
- type: Transform
- pos: 56.5,1.5
+ pos: -6.5,14.5
parent: 2
- - uid: 2142
+ - uid: 3139
components:
- type: Transform
- pos: 60.5,0.5
+ pos: 6.5,17.5
parent: 2
- - uid: 2143
+ - uid: 3140
components:
- type: Transform
- pos: 39.5,21.5
+ pos: 1.5,-12.5
parent: 2
- - uid: 2144
+ - uid: 3141
components:
- type: Transform
- pos: -68.5,25.5
+ pos: -117.5,18.5
parent: 2
- - uid: 2145
+ - uid: 3142
components:
- type: Transform
- pos: -45.5,-45.5
+ pos: 9.5,1.5
parent: 2
- - uid: 2146
+ - uid: 3143
components:
- type: Transform
- pos: 50.5,14.5
+ pos: 10.5,1.5
parent: 2
- - uid: 2147
+ - uid: 3144
components:
- type: Transform
- pos: 39.5,24.5
+ pos: -2.5,17.5
parent: 2
- - uid: 2148
+ - uid: 3145
components:
- type: Transform
- pos: -66.5,-36.5
+ pos: -4.5,19.5
parent: 2
- - uid: 2149
+ - uid: 3146
components:
- type: Transform
- pos: -41.5,-23.5
+ pos: 21.5,49.5
parent: 2
- - uid: 2150
+ - uid: 3147
components:
- type: Transform
- pos: -9.5,84.5
+ pos: 12.5,1.5
parent: 2
- - uid: 2151
+ - uid: 3148
components:
- type: Transform
- pos: -69.5,-37.5
+ pos: 11.5,-14.5
parent: 2
- - uid: 2152
+ - uid: 3149
components:
- type: Transform
- pos: 73.5,17.5
+ pos: -11.5,-15.5
parent: 2
- - uid: 2153
+ - uid: 3150
components:
- type: Transform
- pos: -80.5,14.5
+ pos: -11.5,-13.5
parent: 2
- - uid: 2154
+ - uid: 3151
components:
- type: Transform
- pos: 64.5,-3.5
+ pos: 4.5,-49.5
parent: 2
- - uid: 2155
+ - uid: 3152
components:
- type: Transform
- pos: -63.5,-45.5
+ pos: -21.5,-40.5
parent: 2
- - uid: 2156
+ - uid: 3153
components:
- type: Transform
- pos: -81.5,14.5
+ pos: -20.5,-40.5
parent: 2
- - uid: 2157
+ - uid: 3154
components:
- type: Transform
- pos: -82.5,14.5
+ pos: -18.5,-43.5
parent: 2
- - uid: 2158
+ - uid: 3155
components:
- type: Transform
- pos: -39.5,26.5
+ pos: -19.5,-40.5
parent: 2
- - uid: 2159
+ - uid: 3156
components:
- type: Transform
- pos: -83.5,14.5
+ pos: -18.5,-40.5
parent: 2
- - uid: 2160
+ - uid: 3157
components:
- type: Transform
- pos: -84.5,14.5
+ pos: 21.5,-43.5
parent: 2
- - uid: 2161
+ - uid: 3158
components:
- type: Transform
- pos: -85.5,14.5
+ pos: 24.5,-46.5
parent: 2
- - uid: 2162
+ - uid: 3159
components:
- type: Transform
- pos: -41.5,-22.5
+ pos: -11.5,-50.5
parent: 2
- - uid: 2163
+ - uid: 3160
components:
- type: Transform
- pos: 19.5,68.5
+ pos: 44.5,-14.5
parent: 2
- - uid: 2164
+ - uid: 3161
components:
- type: Transform
- pos: 50.5,4.5
+ pos: 16.5,-51.5
parent: 2
- - uid: 2165
+ - uid: 3162
components:
- type: Transform
- pos: 75.5,-0.5
+ pos: 4.5,-39.5
parent: 2
- - uid: 2166
+ - uid: 3163
components:
- type: Transform
- pos: -37.5,-31.5
+ pos: -0.5,-44.5
parent: 2
- - uid: 2167
+ - uid: 3164
components:
- type: Transform
- pos: -41.5,-31.5
+ pos: -53.5,34.5
parent: 2
- - uid: 2168
+ - uid: 3165
components:
- type: Transform
- pos: -51.5,55.5
+ pos: -37.5,-55.5
parent: 2
- - uid: 2169
+ - uid: 3166
components:
- type: Transform
- pos: 50.5,19.5
+ pos: 4.5,-38.5
parent: 2
- - uid: 2170
+ - uid: 3167
components:
- type: Transform
- pos: 49.5,9.5
+ pos: -15.5,-42.5
parent: 2
- - uid: 2171
+ - uid: 3168
components:
- type: Transform
- pos: 51.5,12.5
+ pos: -0.5,-40.5
parent: 2
- - uid: 2172
+ - uid: 3169
components:
- type: Transform
- pos: 90.5,1.5
+ pos: 31.5,-48.5
parent: 2
- - uid: 2173
+ - uid: 3170
components:
- type: Transform
- pos: 56.5,0.5
+ pos: -39.5,-52.5
parent: 2
- - uid: 2174
+ - uid: 3171
components:
- type: Transform
- pos: -61.5,-28.5
+ pos: -40.5,-52.5
parent: 2
- - uid: 2175
+ - uid: 3172
components:
- type: Transform
- pos: 39.5,23.5
+ pos: 27.5,-49.5
parent: 2
- - uid: 2176
+ - uid: 3173
components:
- type: Transform
- pos: 50.5,13.5
+ pos: 14.5,-34.5
parent: 2
- - uid: 2177
+ - uid: 3174
components:
- type: Transform
- pos: -38.5,-74.5
+ pos: 24.5,-38.5
parent: 2
- - uid: 2178
+ - uid: 3175
components:
- type: Transform
- pos: 83.5,12.5
+ pos: 23.5,-38.5
parent: 2
- - uid: 2179
+ - uid: 3176
components:
- type: Transform
- pos: 7.5,-46.5
+ pos: 22.5,-38.5
parent: 2
- - uid: 2180
+ - uid: 3177
components:
- type: Transform
- pos: 77.5,9.5
+ pos: 20.5,-38.5
parent: 2
- - uid: 2181
+ - uid: 3178
components:
- type: Transform
- pos: 41.5,22.5
+ pos: 21.5,-38.5
parent: 2
- - uid: 2182
+ - uid: 3179
components:
- type: Transform
- pos: 56.5,7.5
+ pos: 20.5,-39.5
parent: 2
- - uid: 2183
+ - uid: 3180
components:
- type: Transform
- pos: -68.5,41.5
+ pos: 27.5,-40.5
parent: 2
- - uid: 2184
+ - uid: 3181
components:
- type: Transform
- pos: -11.5,85.5
+ pos: 27.5,-41.5
parent: 2
- - uid: 2185
+ - uid: 3182
components:
- type: Transform
- pos: -68.5,30.5
+ pos: 27.5,-42.5
parent: 2
- - uid: 2186
+ - uid: 3183
components:
- type: Transform
- pos: -29.5,31.5
+ pos: 4.5,-23.5
parent: 2
- - uid: 2187
+ - uid: 3184
components:
- type: Transform
- pos: -49.5,-47.5
+ pos: 16.5,-34.5
parent: 2
- - uid: 2188
+ - uid: 3185
components:
- type: Transform
- pos: 64.5,30.5
+ pos: 15.5,-34.5
parent: 2
- - uid: 2189
+ - uid: 3186
components:
- type: Transform
- pos: -49.5,55.5
+ pos: 23.5,-51.5
parent: 2
- - uid: 2190
+ - uid: 3187
components:
- type: Transform
- pos: -50.5,-47.5
+ pos: -52.5,24.5
parent: 2
- - uid: 2191
+ - uid: 3188
components:
- type: Transform
- pos: -53.5,-47.5
+ pos: -53.5,22.5
parent: 2
- - uid: 2192
+ - uid: 3189
components:
- type: Transform
- pos: 70.5,13.5
+ pos: -52.5,22.5
parent: 2
- - uid: 2193
+ - uid: 3190
components:
- type: Transform
- pos: -11.5,72.5
+ pos: -64.5,9.5
parent: 2
- - uid: 2194
+ - uid: 3191
components:
- type: Transform
- pos: 64.5,31.5
+ pos: -41.5,21.5
parent: 2
- - uid: 2195
+ - uid: 3192
components:
- type: Transform
- pos: -46.5,-46.5
+ pos: -46.5,19.5
parent: 2
- - uid: 2196
+ - uid: 3193
components:
- type: Transform
- pos: -44.5,-35.5
+ pos: -47.5,12.5
parent: 2
- - uid: 2197
+ - uid: 3194
components:
- type: Transform
- pos: 67.5,30.5
+ pos: -0.5,-42.5
parent: 2
- - uid: 2198
+ - uid: 3195
components:
- type: Transform
- pos: 73.5,22.5
+ pos: 16.5,-49.5
parent: 2
- - uid: 2199
+ - uid: 3196
components:
- type: Transform
- pos: 53.5,7.5
+ pos: 4.5,-36.5
parent: 2
- - uid: 2200
+ - uid: 3197
components:
- type: Transform
- pos: -48.5,-47.5
+ pos: -36.5,-53.5
parent: 2
- - uid: 2201
+ - uid: 3198
components:
- type: Transform
- pos: -44.5,-34.5
+ pos: -15.5,-57.5
parent: 2
- - uid: 2202
+ - uid: 3199
components:
- type: Transform
- pos: 50.5,0.5
+ pos: 37.5,-38.5
parent: 2
- - uid: 2203
+ - uid: 3200
components:
- type: Transform
- pos: 39.5,19.5
+ pos: -39.5,-9.5
parent: 2
- - uid: 2204
+ - uid: 3201
components:
- type: Transform
- pos: 62.5,0.5
+ pos: -23.5,-50.5
parent: 2
- - uid: 2205
+ - uid: 3202
components:
- type: Transform
- pos: 39.5,20.5
+ pos: -36.5,-54.5
parent: 2
- - uid: 2206
+ - uid: 3203
components:
- type: Transform
- pos: -31.5,-56.5
+ pos: 8.5,2.5
parent: 2
- - uid: 2207
+ - uid: 3204
components:
- type: Transform
- pos: 49.5,8.5
+ pos: 4.5,13.5
parent: 2
- - uid: 2208
+ - uid: 3205
components:
- type: Transform
- pos: 62.5,30.5
+ pos: 12.5,14.5
parent: 2
- - uid: 2209
+ - uid: 3206
components:
- type: Transform
- pos: 63.5,30.5
+ pos: 9.5,-50.5
parent: 2
- - uid: 2210
+ - uid: 3207
components:
- type: Transform
- pos: -53.5,-44.5
+ pos: 22.5,-45.5
parent: 2
- - uid: 2211
+ - uid: 3208
components:
- type: Transform
- pos: -42.5,-47.5
+ pos: 13.5,-30.5
parent: 2
- - uid: 2212
+ - uid: 3209
components:
- type: Transform
- pos: -15.5,33.5
+ pos: 20.5,-43.5
parent: 2
- - uid: 2213
+ - uid: 3210
components:
- type: Transform
- pos: 64.5,32.5
+ pos: -26.5,54.5
parent: 2
- - uid: 2214
+ - uid: 3211
components:
- type: Transform
- pos: -51.5,-45.5
+ pos: 3.5,-7.5
parent: 2
- - uid: 2215
+ - uid: 3212
components:
- type: Transform
- pos: 41.5,23.5
+ pos: 4.5,-16.5
parent: 2
- - uid: 2216
+ - uid: 3213
components:
- type: Transform
- pos: 56.5,12.5
+ pos: 20.5,-42.5
parent: 2
- - uid: 2217
+ - uid: 3214
components:
- type: Transform
- pos: -68.5,44.5
+ pos: 12.5,-23.5
parent: 2
- - uid: 2218
+ - uid: 3215
components:
- type: Transform
- pos: -40.5,-48.5
+ pos: -38.5,-55.5
parent: 2
- - uid: 2219
+ - uid: 3216
components:
- type: Transform
- pos: -41.5,-48.5
+ pos: 4.5,-37.5
parent: 2
- - uid: 2220
+ - uid: 3217
components:
- type: Transform
- pos: -68.5,39.5
+ pos: 16.5,-50.5
parent: 2
- - uid: 2221
+ - uid: 3218
components:
- type: Transform
- pos: 3.5,-58.5
+ pos: -0.5,-41.5
parent: 2
- - uid: 2222
+ - uid: 3219
components:
- type: Transform
- pos: -15.5,32.5
+ pos: 35.5,-38.5
parent: 2
- - uid: 2223
+ - uid: 3220
components:
- type: Transform
- pos: 75.5,24.5
+ pos: 28.5,-29.5
parent: 2
- - uid: 2224
+ - uid: 3221
components:
- type: Transform
- pos: 68.5,0.5
+ pos: 33.5,-38.5
parent: 2
- - uid: 2225
+ - uid: 3222
components:
- type: Transform
- pos: 69.5,-2.5
+ pos: 36.5,-38.5
parent: 2
- - uid: 2226
+ - uid: 3223
components:
- type: Transform
- pos: 62.5,-3.5
+ pos: 4.5,-13.5
parent: 2
- - uid: 2227
+ - uid: 3224
components:
- type: Transform
- pos: 69.5,-1.5
+ pos: -57.5,-28.5
parent: 2
- - uid: 2228
+ - uid: 3225
components:
- type: Transform
- pos: -54.5,-44.5
+ pos: 22.5,-49.5
parent: 2
- - uid: 2229
+ - uid: 3226
components:
- type: Transform
- pos: 2.5,-58.5
+ pos: -60.5,-6.5
parent: 2
- - uid: 2230
+ - uid: 3227
components:
- type: Transform
- pos: 52.5,27.5
+ pos: 13.5,-34.5
parent: 2
- - uid: 2231
+ - uid: 3228
components:
- type: Transform
- pos: -46.5,-48.5
+ pos: -13.5,-57.5
parent: 2
- - uid: 2232
+ - uid: 3229
components:
- type: Transform
- pos: -69.5,27.5
+ pos: -16.5,-55.5
parent: 2
- - uid: 2233
+ - uid: 3230
components:
- type: Transform
- pos: 62.5,29.5
+ pos: -54.5,-36.5
parent: 2
- - uid: 2234
+ - uid: 3231
components:
- type: Transform
- pos: -20.5,68.5
+ pos: 12.5,-34.5
parent: 2
- - uid: 2235
+ - uid: 3232
components:
- type: Transform
- pos: 3.5,-60.5
+ pos: -46.5,-13.5
parent: 2
- - uid: 2236
+ - uid: 3233
components:
- type: Transform
- pos: 51.5,27.5
+ pos: 18.5,-53.5
parent: 2
- - uid: 2237
+ - uid: 3234
components:
- type: Transform
- pos: 50.5,27.5
+ pos: 23.5,-43.5
parent: 2
- - uid: 2238
+ - uid: 3235
components:
- type: Transform
- pos: 50.5,28.5
+ pos: 28.5,-37.5
parent: 2
- - uid: 2239
+ - uid: 3236
components:
- type: Transform
- pos: -39.5,-48.5
+ pos: 11.5,-50.5
parent: 2
- - uid: 2240
+ - uid: 3237
components:
- type: Transform
- pos: 50.5,26.5
+ pos: 22.5,-44.5
parent: 2
- - uid: 2241
+ - uid: 3238
components:
- type: Transform
- pos: -42.5,-48.5
+ pos: -2.5,-12.5
parent: 2
- - uid: 2242
+ - uid: 3239
components:
- type: Transform
- pos: 54.5,28.5
+ pos: -7.5,9.5
parent: 2
- - uid: 2243
+ - uid: 3240
components:
- type: Transform
- pos: 58.5,6.5
+ pos: -15.5,14.5
parent: 2
- - uid: 2244
+ - uid: 3241
components:
- type: Transform
- pos: 55.5,28.5
+ pos: -23.5,-52.5
parent: 2
- - uid: 2245
+ - uid: 3242
components:
- type: Transform
- pos: 56.5,28.5
+ pos: 1.5,-14.5
parent: 2
- - uid: 2246
+ - uid: 3243
components:
- type: Transform
- pos: 55.5,3.5
+ pos: 10.5,-2.5
parent: 2
- - uid: 2247
+ - uid: 3244
components:
- type: Transform
- pos: 55.5,13.5
+ pos: -13.5,-15.5
parent: 2
- - uid: 2248
+ - uid: 3245
components:
- type: Transform
- pos: 57.5,28.5
+ pos: -4.5,-10.5
parent: 2
- - uid: 2249
+ - uid: 3246
components:
- type: Transform
- pos: 58.5,28.5
+ pos: 13.5,-3.5
parent: 2
- - uid: 2250
+ - uid: 3247
components:
- type: Transform
- pos: 58.5,27.5
+ pos: 13.5,-14.5
parent: 2
- - uid: 2251
+ - uid: 3248
components:
- type: Transform
- pos: 47.5,1.5
+ pos: -0.5,-14.5
parent: 2
- - uid: 2252
+ - uid: 3249
components:
- type: Transform
- pos: 58.5,26.5
+ pos: -6.5,18.5
parent: 2
- - uid: 2253
+ - uid: 3250
components:
- type: Transform
- pos: 58.5,25.5
+ pos: -6.5,19.5
parent: 2
- - uid: 2254
+ - uid: 3251
components:
- type: Transform
- pos: 57.5,26.5
+ pos: 24.5,-44.5
parent: 2
- - uid: 2255
+ - uid: 3252
components:
- type: Transform
- pos: 56.5,26.5
+ pos: -44.5,-10.5
parent: 2
- - uid: 2256
+ - uid: 3253
components:
- type: Transform
- pos: 55.5,26.5
+ pos: 21.5,-30.5
parent: 2
- - uid: 2257
+ - uid: 3254
components:
- type: Transform
- pos: 73.5,2.5
+ pos: 21.5,-50.5
parent: 2
- - uid: 2258
+ - uid: 3255
components:
- type: Transform
- pos: 55.5,26.5
+ pos: 22.5,-47.5
parent: 2
- - uid: 2259
+ - uid: 3256
components:
- type: Transform
- pos: -70.5,35.5
+ pos: 21.5,-25.5
parent: 2
- - uid: 2260
+ - uid: 3257
components:
- type: Transform
- pos: -69.5,35.5
+ pos: -8.5,-25.5
parent: 2
- - uid: 2261
+ - uid: 3258
components:
- type: Transform
- pos: -53.5,-36.5
+ pos: -6.5,-33.5
parent: 2
- - uid: 2262
+ - uid: 3259
components:
- type: Transform
- pos: -33.5,-32.5
+ pos: -15.5,16.5
parent: 2
- - uid: 2263
+ - uid: 3260
components:
- type: Transform
- pos: 55.5,25.5
+ pos: -7.5,13.5
parent: 2
- - uid: 2264
+ - uid: 3261
components:
- type: Transform
- pos: 58.5,24.5
+ pos: -54.5,18.5
parent: 2
- - uid: 2265
+ - uid: 3262
components:
- type: Transform
- pos: 58.5,23.5
+ pos: -52.5,8.5
parent: 2
- - uid: 2266
+ - uid: 3263
components:
- type: Transform
- pos: 58.5,22.5
+ pos: -79.5,14.5
parent: 2
- - uid: 2267
+ - uid: 3264
components:
- type: Transform
- pos: 2.5,-60.5
+ pos: 26.5,-29.5
parent: 2
- - uid: 2268
+ - uid: 3265
components:
- type: Transform
- pos: -15.5,30.5
+ pos: -66.5,5.5
parent: 2
- - uid: 2269
+ - uid: 3266
components:
- type: Transform
- pos: -70.5,41.5
+ pos: -7.5,33.5
parent: 2
- - uid: 2270
+ - uid: 3267
components:
- type: Transform
- pos: 57.5,23.5
+ pos: -11.5,44.5
parent: 2
- - uid: 2271
+ - uid: 3268
components:
- type: Transform
- pos: -68.5,24.5
+ pos: -62.5,59.5
parent: 2
- - uid: 2272
+ - uid: 3269
components:
- type: Transform
- pos: 48.5,19.5
+ pos: -31.5,-2.5
parent: 2
- - uid: 2273
+ - uid: 3270
components:
- type: Transform
- pos: 54.5,19.5
+ pos: -60.5,8.5
parent: 2
- - uid: 2274
+ - uid: 3271
components:
- type: Transform
- pos: 56.5,2.5
+ pos: -48.5,28.5
parent: 2
- - uid: 2275
+ - uid: 3272
components:
- type: Transform
- pos: 76.5,-1.5
+ pos: -65.5,5.5
parent: 2
- - uid: 2276
+ - uid: 3273
components:
- type: Transform
- pos: -42.5,-46.5
+ pos: -60.5,25.5
parent: 2
- - uid: 2277
+ - uid: 3274
components:
- type: Transform
- pos: -67.5,48.5
+ pos: -56.5,6.5
parent: 2
- - uid: 2278
+ - uid: 3275
components:
- type: Transform
- pos: 54.5,17.5
+ pos: -57.5,5.5
parent: 2
- - uid: 2279
+ - uid: 3276
components:
- type: Transform
- pos: 75.5,25.5
+ pos: -50.5,5.5
parent: 2
- - uid: 2280
+ - uid: 3277
components:
- type: Transform
- pos: 47.5,0.5
+ pos: -19.5,-52.5
parent: 2
- - uid: 2281
+ - uid: 3278
components:
- type: Transform
- pos: 55.5,17.5
+ pos: -5.5,33.5
parent: 2
- - uid: 2282
+ - uid: 3279
components:
- type: Transform
- pos: 56.5,17.5
+ pos: -47.5,18.5
parent: 2
- - uid: 2283
+ - uid: 3280
components:
- type: Transform
- pos: 57.5,17.5
+ pos: -50.5,15.5
parent: 2
- - uid: 2284
+ - uid: 3281
components:
- type: Transform
- pos: 58.5,17.5
+ pos: -28.5,-11.5
parent: 2
- - uid: 2285
+ - uid: 3282
components:
- type: Transform
- pos: 59.5,17.5
+ pos: -6.5,33.5
parent: 2
- - uid: 2286
+ - uid: 3283
components:
- type: Transform
- pos: 59.5,16.5
+ pos: -48.5,18.5
parent: 2
- - uid: 2287
+ - uid: 3284
components:
- type: Transform
- pos: 60.5,16.5
+ pos: -36.5,-18.5
parent: 2
- - uid: 2288
+ - uid: 3285
components:
- type: Transform
- pos: 61.5,16.5
+ pos: -37.5,-19.5
parent: 2
- - uid: 2289
+ - uid: 3286
components:
- type: Transform
- pos: 61.5,17.5
+ pos: -47.5,40.5
parent: 2
- - uid: 2290
+ - uid: 3287
components:
- type: Transform
- pos: 52.5,12.5
+ pos: -45.5,30.5
parent: 2
- - uid: 2291
+ - uid: 3288
components:
- type: Transform
- pos: 61.5,18.5
+ pos: -10.5,53.5
parent: 2
- - uid: 2292
+ - uid: 3289
components:
- type: Transform
- pos: 54.5,16.5
+ pos: -49.5,39.5
parent: 2
- - uid: 2293
+ - uid: 3290
components:
- type: Transform
- pos: 49.5,13.5
+ pos: -36.5,-17.5
parent: 2
- - uid: 2294
+ - uid: 3291
components:
- type: Transform
- pos: 51.5,8.5
+ pos: 31.5,-41.5
parent: 2
- - uid: 2295
+ - uid: 3292
components:
- type: Transform
- pos: 54.5,12.5
+ pos: -57.5,-23.5
parent: 2
- - uid: 2296
+ - uid: 3293
components:
- type: Transform
- pos: 53.5,16.5
+ pos: 31.5,-42.5
parent: 2
- - uid: 2297
+ - uid: 3294
components:
- type: Transform
- pos: 50.5,11.5
+ pos: 6.5,-50.5
parent: 2
- - uid: 2298
+ - uid: 3295
components:
- type: Transform
- pos: 50.5,8.5
+ pos: 9.5,-38.5
parent: 2
- - uid: 2299
+ - uid: 3296
components:
- type: Transform
- pos: 53.5,12.5
+ pos: -60.5,11.5
parent: 2
- - uid: 2300
+ - uid: 3297
components:
- type: Transform
- pos: 61.5,19.5
+ pos: -47.5,21.5
parent: 2
- - uid: 2301
+ - uid: 3298
components:
- type: Transform
- pos: 62.5,18.5
+ pos: -68.5,15.5
parent: 2
- - uid: 2302
+ - uid: 3299
components:
- type: Transform
- pos: 63.5,18.5
+ pos: -65.5,10.5
parent: 2
- - uid: 2303
+ - uid: 3300
components:
- type: Transform
- pos: 64.5,18.5
+ pos: -59.5,11.5
parent: 2
- - uid: 2304
+ - uid: 3301
components:
- type: Transform
- pos: -31.5,-54.5
+ pos: -47.5,20.5
parent: 2
- - uid: 2305
+ - uid: 3302
components:
- type: Transform
- pos: 65.5,18.5
+ pos: 48.5,-16.5
parent: 2
- - uid: 2306
+ - uid: 3303
components:
- type: Transform
- pos: 43.5,19.5
+ pos: 36.5,-41.5
parent: 2
- - uid: 2307
+ - uid: 3304
components:
- type: Transform
- pos: 60.5,12.5
+ pos: -57.5,-26.5
parent: 2
- - uid: 2308
+ - uid: 3305
components:
- type: Transform
- pos: 47.5,3.5
+ pos: 34.5,34.5
parent: 2
- - uid: 2309
+ - uid: 3306
components:
- type: Transform
- pos: 62.5,15.5
+ pos: 46.5,-16.5
parent: 2
- - uid: 2310
+ - uid: 3307
components:
- type: Transform
- pos: 52.5,16.5
+ pos: 34.5,38.5
parent: 2
- - uid: 2311
+ - uid: 3308
components:
- type: Transform
- pos: 63.5,15.5
+ pos: 5.5,9.5
parent: 2
- - uid: 2312
+ - uid: 3309
components:
- type: Transform
- pos: 64.5,15.5
+ pos: -11.5,-23.5
parent: 2
- - uid: 2313
+ - uid: 3310
components:
- type: Transform
- pos: 64.5,16.5
+ pos: 47.5,-16.5
parent: 2
- - uid: 2314
+ - uid: 3311
components:
- type: Transform
- pos: 65.5,16.5
+ pos: -5.5,-17.5
parent: 2
- - uid: 2315
+ - uid: 3312
components:
- type: Transform
- pos: 83.5,11.5
+ pos: -12.5,-23.5
parent: 2
- - uid: 2316
+ - uid: 3313
components:
- type: Transform
- pos: -70.5,45.5
+ pos: -4.5,-26.5
parent: 2
- - uid: 2317
+ - uid: 3314
components:
- type: Transform
- pos: -68.5,46.5
+ pos: -13.5,-23.5
parent: 2
- - uid: 2318
+ - uid: 3315
components:
- type: Transform
- pos: 55.5,0.5
+ pos: 15.5,13.5
parent: 2
- - uid: 2319
+ - uid: 3316
components:
- type: Transform
- pos: 69.5,13.5
+ pos: -32.5,-46.5
parent: 2
- - uid: 2320
+ - uid: 3317
components:
- type: Transform
- pos: 56.5,16.5
+ pos: -14.5,-23.5
parent: 2
- - uid: 2321
+ - uid: 3318
components:
- type: Transform
- pos: 57.5,18.5
+ pos: -5.5,-26.5
parent: 2
- - uid: 2322
+ - uid: 3319
components:
- type: Transform
- pos: -29.5,93.5
+ pos: 8.5,-4.5
parent: 2
- - uid: 2323
+ - uid: 3320
components:
- type: Transform
- pos: 41.5,17.5
+ pos: -17.5,-38.5
parent: 2
- - uid: 2324
+ - uid: 3321
components:
- type: Transform
- pos: 41.5,16.5
+ pos: -17.5,-39.5
parent: 2
- - uid: 2325
+ - uid: 3322
components:
- type: Transform
- pos: 42.5,16.5
+ pos: 66.5,30.5
parent: 2
- - uid: 2326
+ - uid: 3323
components:
- type: Transform
- pos: 40.5,16.5
+ pos: -57.5,-27.5
parent: 2
- - uid: 2327
+ - uid: 3324
components:
- type: Transform
- pos: 36.5,19.5
+ pos: -17.5,-43.5
parent: 2
- - uid: 2328
+ - uid: 3325
components:
- type: Transform
- pos: -40.5,-74.5
+ pos: -9.5,-12.5
parent: 2
- - uid: 2329
+ - uid: 3326
components:
- type: Transform
- pos: 69.5,5.5
+ pos: 15.5,14.5
parent: 2
- - uid: 2330
+ - uid: 3327
components:
- type: Transform
- pos: -68.5,28.5
+ pos: -39.5,-55.5
parent: 2
- - uid: 2331
+ - uid: 3328
components:
- type: Transform
- pos: -71.5,49.5
+ pos: -19.5,68.5
parent: 2
- - uid: 2332
+ - uid: 3329
components:
- type: Transform
- pos: 37.5,-43.5
+ pos: 36.5,-43.5
parent: 2
- - uid: 2333
+ - uid: 3330
components:
- type: Transform
- pos: 59.5,0.5
+ pos: 25.5,-27.5
parent: 2
- - uid: 2334
+ - uid: 3331
components:
- type: Transform
- pos: -71.5,27.5
+ pos: 25.5,-25.5
parent: 2
- - uid: 2335
+ - uid: 3332
components:
- type: Transform
- pos: 73.5,16.5
+ pos: 26.5,-30.5
parent: 2
- - uid: 2336
+ - uid: 3333
components:
- type: Transform
- pos: 52.5,10.5
+ pos: 49.5,-13.5
parent: 2
- - uid: 2337
+ - uid: 3334
components:
- type: Transform
- pos: 38.5,19.5
+ pos: 4.5,-40.5
parent: 2
- - uid: 2338
+ - uid: 3335
components:
- type: Transform
- pos: -26.5,-78.5
+ pos: -13.5,-50.5
parent: 2
- - uid: 2339
+ - uid: 3336
components:
- type: Transform
- pos: -3.5,-75.5
+ pos: -6.5,-32.5
parent: 2
- - uid: 2340
+ - uid: 3337
components:
- type: Transform
- pos: 57.5,-5.5
+ pos: -13.5,13.5
parent: 2
- - uid: 2341
+ - uid: 3338
components:
- type: Transform
- pos: 63.5,10.5
+ pos: 23.5,8.5
parent: 2
- - uid: 2342
+ - uid: 3339
components:
- type: Transform
- pos: 46.5,0.5
+ pos: 17.5,-31.5
parent: 2
- - uid: 2343
+ - uid: 3340
components:
- type: Transform
- pos: 62.5,27.5
+ pos: 46.5,-17.5
parent: 2
- - uid: 2344
+ - uid: 3341
components:
- type: Transform
- pos: 6.5,56.5
+ pos: 49.5,-14.5
parent: 2
- - uid: 2345
+ - uid: 3342
components:
- type: Transform
- pos: -46.5,-47.5
+ pos: 17.5,-32.5
parent: 2
- - uid: 2346
+ - uid: 3343
components:
- type: Transform
- pos: -46.5,-42.5
+ pos: 31.5,-38.5
parent: 2
- - uid: 2347
+ - uid: 3344
components:
- type: Transform
- pos: 66.5,28.5
+ pos: 10.5,-15.5
parent: 2
- - uid: 2348
+ - uid: 3345
components:
- type: Transform
- pos: -51.5,-47.5
+ pos: -29.5,33.5
parent: 2
- - uid: 2349
+ - uid: 3346
components:
- type: Transform
- pos: -4.5,-68.5
+ pos: 34.5,35.5
parent: 2
- - uid: 2350
+ - uid: 3347
components:
- type: Transform
- pos: -10.5,29.5
+ pos: -18.5,-45.5
parent: 2
- - uid: 2351
+ - uid: 3348
components:
- type: Transform
- pos: -73.5,21.5
+ pos: -55.5,32.5
parent: 2
- - uid: 2352
+ - uid: 3349
components:
- type: Transform
- pos: 41.5,29.5
+ pos: -0.5,-37.5
parent: 2
- - uid: 2353
+ - uid: 3350
components:
- type: Transform
- pos: -68.5,-37.5
+ pos: -14.5,-25.5
parent: 2
- - uid: 2354
+ - uid: 3351
components:
- type: Transform
- pos: 70.5,15.5
+ pos: -62.5,-22.5
parent: 2
- - uid: 2355
+ - uid: 3352
components:
- type: Transform
- pos: -55.5,-44.5
+ pos: 4.5,-17.5
parent: 2
- - uid: 2356
+ - uid: 3353
components:
- type: Transform
- pos: 78.5,23.5
+ pos: -5.5,-13.5
parent: 2
- - uid: 2357
+ - uid: 3354
components:
- type: Transform
- pos: 44.5,21.5
+ pos: 56.5,-21.5
parent: 2
- - uid: 2358
+ - uid: 3355
components:
- type: Transform
- pos: 73.5,6.5
+ pos: 43.5,-20.5
parent: 2
- - uid: 2359
+ - uid: 3356
components:
- type: Transform
- pos: 40.5,30.5
+ pos: 34.5,33.5
parent: 2
- - uid: 2360
+ - uid: 3357
components:
- type: Transform
- pos: -68.5,34.5
+ pos: 25.5,-10.5
parent: 2
- - uid: 2361
+ - uid: 3358
components:
- type: Transform
- pos: 75.5,23.5
+ pos: -35.5,16.5
parent: 2
- - uid: 2362
+ - uid: 3359
components:
- type: Transform
- pos: 68.5,25.5
+ pos: 68.5,26.5
parent: 2
- - uid: 2363
+ - uid: 3360
components:
- type: Transform
- pos: 69.5,25.5
+ pos: 35.5,35.5
parent: 2
- - uid: 2364
+ - uid: 3361
components:
- type: Transform
- pos: -52.5,-36.5
+ pos: 17.5,-24.5
parent: 2
- - uid: 2365
+ - uid: 3362
components:
- type: Transform
- pos: 70.5,25.5
+ pos: 35.5,36.5
parent: 2
- - uid: 2366
+ - uid: 3363
components:
- type: Transform
- pos: 71.5,25.5
+ pos: 29.5,-30.5
parent: 2
- - uid: 2367
+ - uid: 3364
components:
- type: Transform
- pos: -33.5,-31.5
+ pos: 31.5,-39.5
parent: 2
- - uid: 2368
+ - uid: 3365
components:
- type: Transform
- pos: 73.5,-3.5
+ pos: 10.5,-26.5
parent: 2
- - uid: 2369
+ - uid: 3366
components:
- type: Transform
- pos: -68.5,40.5
+ pos: -0.5,-47.5
parent: 2
- - uid: 2370
+ - uid: 3367
components:
- type: Transform
- pos: 4.5,-70.5
+ pos: -77.5,12.5
parent: 2
- - uid: 2371
+ - uid: 3368
components:
- type: Transform
- pos: -68.5,38.5
+ pos: -77.5,11.5
parent: 2
- - uid: 2372
+ - uid: 3369
components:
- type: Transform
- pos: 72.5,25.5
+ pos: -62.5,10.5
parent: 2
- - uid: 2373
+ - uid: 3370
components:
- type: Transform
- pos: 70.5,25.5
+ pos: -66.5,15.5
parent: 2
- - uid: 2374
+ - uid: 3371
components:
- type: Transform
- pos: -31.5,-55.5
+ pos: -50.5,13.5
parent: 2
- - uid: 2375
+ - uid: 3372
components:
- type: Transform
- pos: 70.5,24.5
+ pos: -63.5,16.5
parent: 2
- - uid: 2376
+ - uid: 3373
components:
- type: Transform
- pos: -69.5,45.5
+ pos: 33.5,-47.5
parent: 2
- - uid: 2377
+ - uid: 3374
components:
- type: Transform
- pos: -68.5,22.5
+ pos: -47.5,13.5
parent: 2
- - uid: 2378
+ - uid: 3375
components:
- type: Transform
- pos: 52.5,0.5
+ pos: -48.5,20.5
parent: 2
- - uid: 2379
+ - uid: 3376
components:
- type: Transform
- pos: 70.5,23.5
+ pos: -65.5,36.5
parent: 2
- - uid: 2380
+ - uid: 3377
components:
- type: Transform
- pos: -56.5,-9.5
+ pos: -2.5,-64.5
parent: 2
- - uid: 2381
+ - uid: 3378
components:
- type: Transform
- pos: 39.5,18.5
+ pos: -21.5,-60.5
parent: 2
- - uid: 2382
+ - uid: 3379
components:
- type: Transform
- pos: 54.5,0.5
+ pos: -2.5,-8.5
parent: 2
- - uid: 2383
+ - uid: 3380
components:
- type: Transform
- pos: 35.5,20.5
+ pos: -42.5,-11.5
parent: 2
- - uid: 2384
+ - uid: 3381
components:
- type: Transform
- pos: 37.5,20.5
+ pos: -25.5,47.5
parent: 2
- - uid: 2385
+ - uid: 3382
components:
- type: Transform
- pos: 70.5,22.5
+ pos: -36.5,-16.5
parent: 2
- - uid: 2386
+ - uid: 3383
components:
- type: Transform
- pos: 70.5,21.5
+ pos: 62.5,3.5
parent: 2
- - uid: 2387
+ - uid: 3384
components:
- type: Transform
- pos: 66.5,29.5
+ pos: -28.5,-13.5
parent: 2
- - uid: 2388
+ - uid: 3385
components:
- type: Transform
- pos: 69.5,22.5
+ pos: -17.5,-41.5
parent: 2
- - uid: 2389
+ - uid: 3386
components:
- type: Transform
- pos: 68.5,22.5
+ pos: 29.5,-22.5
parent: 2
- - uid: 2390
+ - uid: 3387
components:
- type: Transform
- pos: 67.5,22.5
+ pos: 17.5,-38.5
parent: 2
- - uid: 2391
+ - uid: 3388
components:
- type: Transform
- pos: 66.5,22.5
+ pos: 3.5,-39.5
parent: 2
- - uid: 2392
+ - uid: 3389
components:
- type: Transform
- pos: -53.5,50.5
+ pos: 16.5,-52.5
parent: 2
- - uid: 2393
+ - uid: 3390
components:
- type: Transform
- pos: 65.5,22.5
+ pos: -12.5,-52.5
parent: 2
- - uid: 2394
+ - uid: 3391
components:
- type: Transform
- pos: 64.5,22.5
+ pos: -28.5,-49.5
parent: 2
- - uid: 2395
+ - uid: 3392
components:
- type: Transform
- pos: 71.5,18.5
+ pos: -28.5,-51.5
parent: 2
- - uid: 2396
+ - uid: 3393
components:
- type: Transform
- pos: -48.5,54.5
+ pos: 17.5,-40.5
parent: 2
- - uid: 2397
+ - uid: 3394
components:
- type: Transform
- pos: 46.5,22.5
+ pos: 88.5,10.5
parent: 2
- - uid: 2398
+ - uid: 3395
components:
- type: Transform
- pos: 63.5,22.5
+ pos: -10.5,-23.5
parent: 2
- - uid: 2399
+ - uid: 3396
components:
- type: Transform
- pos: 62.5,22.5
+ pos: 7.5,16.5
parent: 2
- - uid: 2400
+ - uid: 3397
components:
- type: Transform
- pos: 62.5,21.5
+ pos: -14.5,-15.5
parent: 2
- - uid: 2401
+ - uid: 3398
components:
- type: Transform
- pos: 61.5,22.5
+ pos: 35.5,37.5
parent: 2
- - uid: 2402
+ - uid: 3399
components:
- type: Transform
- pos: 48.5,14.5
+ pos: 21.5,51.5
parent: 2
- - uid: 2403
+ - uid: 3400
components:
- type: Transform
- pos: -26.5,-77.5
+ pos: -24.5,-52.5
parent: 2
- - uid: 2404
+ - uid: 3401
components:
- type: Transform
- pos: 41.5,20.5
+ pos: -4.5,14.5
parent: 2
- - uid: 2405
+ - uid: 3402
components:
- type: Transform
- pos: 51.5,6.5
+ pos: -10.5,-32.5
parent: 2
- - uid: 2406
+ - uid: 3403
components:
- type: Transform
- pos: -66.5,-19.5
+ pos: -10.5,-13.5
parent: 2
- - uid: 2407
+ - uid: 3404
components:
- type: Transform
- pos: 74.5,22.5
+ pos: 5.5,18.5
parent: 2
- - uid: 2408
+ - uid: 3405
components:
- type: Transform
- pos: 23.5,16.5
+ pos: -12.5,-13.5
parent: 2
- - uid: 2409
+ - uid: 3406
components:
- type: Transform
- pos: 68.5,13.5
+ pos: -4.5,-36.5
parent: 2
- - uid: 2410
+ - uid: 3407
components:
- type: Transform
- pos: 70.5,0.5
+ pos: -5.5,-10.5
parent: 2
- - uid: 2411
+ - uid: 3408
components:
- type: Transform
- pos: -37.5,-22.5
+ pos: 7.5,-9.5
parent: 2
- - uid: 2412
+ - uid: 3409
components:
- type: Transform
- pos: 47.5,16.5
+ pos: 10.5,-12.5
parent: 2
- - uid: 2413
+ - uid: 3410
components:
- type: Transform
- pos: 53.5,4.5
+ pos: 7.5,-13.5
parent: 2
- - uid: 2414
+ - uid: 3411
components:
- type: Transform
- pos: 49.5,5.5
+ pos: -5.5,14.5
parent: 2
- - uid: 2415
+ - uid: 3412
components:
- type: Transform
- pos: 33.5,19.5
+ pos: 7.5,15.5
parent: 2
- - uid: 2416
+ - uid: 3413
components:
- type: Transform
- pos: 52.5,14.5
+ pos: -8.5,-26.5
parent: 2
- - uid: 2417
+ - uid: 3414
components:
- type: Transform
- pos: -0.5,2.5
+ pos: 18.5,-52.5
parent: 2
- - uid: 2418
+ - uid: 3415
components:
- type: Transform
- pos: -0.5,1.5
+ pos: -11.5,-12.5
parent: 2
- - uid: 2419
+ - uid: 3416
components:
- type: Transform
- pos: -0.5,-6.5
+ pos: -48.5,24.5
parent: 2
- - uid: 2420
+ - uid: 3417
components:
- type: Transform
- pos: -0.5,-5.5
+ pos: -63.5,17.5
parent: 2
- - uid: 2421
+ - uid: 3418
components:
- type: Transform
- pos: -0.5,-4.5
+ pos: -60.5,10.5
parent: 2
- - uid: 2422
+ - uid: 3419
components:
- type: Transform
- pos: 40.5,24.5
+ pos: -63.5,10.5
parent: 2
- - uid: 2423
+ - uid: 3420
components:
- type: Transform
- pos: -48.5,53.5
+ pos: -122.5,26.5
parent: 2
- - uid: 2424
+ - uid: 3421
components:
- type: Transform
- pos: 49.5,6.5
+ pos: -63.5,57.5
parent: 2
- - uid: 2425
+ - uid: 3422
components:
- type: Transform
- pos: 73.5,12.5
+ pos: -62.5,4.5
parent: 2
- - uid: 2426
+ - uid: 3423
components:
- type: Transform
- pos: 73.5,21.5
+ pos: -48.5,27.5
parent: 2
- - uid: 2427
+ - uid: 3424
components:
- type: Transform
- pos: 65.5,-3.5
+ pos: -48.5,39.5
parent: 2
- - uid: 2428
+ - uid: 3425
components:
- type: Transform
- pos: -70.5,31.5
+ pos: -48.5,-14.5
parent: 2
- - uid: 2429
+ - uid: 3426
components:
- type: Transform
- pos: 71.5,14.5
+ pos: -7.5,-25.5
parent: 2
- - uid: 2430
+ - uid: 3427
components:
- type: Transform
- pos: 73.5,-0.5
+ pos: -6.5,-34.5
parent: 2
- - uid: 2431
+ - uid: 3428
components:
- type: Transform
- pos: -70.5,21.5
+ pos: -16.5,16.5
parent: 2
- - uid: 2432
+ - uid: 3429
components:
- type: Transform
- pos: 46.5,3.5
+ pos: -7.5,14.5
parent: 2
- - uid: 2433
+ - uid: 3430
components:
- type: Transform
- pos: 43.5,20.5
+ pos: 9.5,15.5
parent: 2
- - uid: 2434
+ - uid: 3431
components:
- type: Transform
- pos: 58.5,0.5
+ pos: 8.5,15.5
parent: 2
- - uid: 2435
+ - uid: 3432
components:
- type: Transform
- pos: 72.5,-0.5
+ pos: 15.5,-41.5
parent: 2
- - uid: 2436
+ - uid: 3433
components:
- type: Transform
- pos: 19.5,70.5
+ pos: 30.5,-22.5
parent: 2
- - uid: 2437
+ - uid: 3434
components:
- type: Transform
- pos: 7.5,59.5
+ pos: -69.5,-25.5
parent: 2
- - uid: 2438
+ - uid: 3435
components:
- type: Transform
- pos: 35.5,-25.5
+ pos: -72.5,-25.5
parent: 2
- - uid: 2439
+ - uid: 3436
components:
- type: Transform
- pos: -58.5,-43.5
+ pos: -46.5,13.5
parent: 2
- - uid: 2440
+ - uid: 3437
components:
- type: Transform
- pos: 69.5,17.5
+ pos: -68.5,-26.5
parent: 2
- - uid: 2441
+ - uid: 3438
components:
- type: Transform
- pos: -58.5,-46.5
+ pos: -5.5,-34.5
parent: 2
- - uid: 2442
+ - uid: 3439
components:
- type: Transform
- pos: 46.5,24.5
+ pos: -6.5,-25.5
parent: 2
- - uid: 2443
+ - uid: 3440
components:
- type: Transform
- pos: -58.5,-47.5
+ pos: 69.5,4.5
parent: 2
- - uid: 2444
+ - uid: 3441
components:
- type: Transform
- pos: 90.5,2.5
+ pos: -48.5,-16.5
parent: 2
- - uid: 2445
+ - uid: 3442
components:
- type: Transform
- pos: -58.5,-42.5
+ pos: 15.5,16.5
parent: 2
- - uid: 2446
+ - uid: 3443
components:
- type: Transform
- pos: -10.5,33.5
+ pos: 12.5,16.5
parent: 2
- - uid: 2447
+ - uid: 3444
components:
- type: Transform
- pos: -58.5,-38.5
+ pos: 12.5,13.5
parent: 2
- - uid: 2448
+ - uid: 3445
components:
- type: Transform
- pos: -68.5,45.5
+ pos: -3.5,-14.5
parent: 2
- - uid: 2449
+ - uid: 3446
components:
- type: Transform
- pos: -61.5,-42.5
+ pos: -5.5,-14.5
parent: 2
- - uid: 2450
+ - uid: 3447
components:
- type: Transform
- pos: -32.5,-43.5
+ pos: -8.5,-15.5
parent: 2
- - uid: 2451
+ - uid: 3448
components:
- type: Transform
- pos: -111.5,23.5
+ pos: 37.5,-34.5
parent: 2
- - uid: 2452
+ - uid: 3449
components:
- type: Transform
- pos: 63.5,0.5
+ pos: 17.5,0.5
parent: 2
- - uid: 2453
+ - uid: 3450
components:
- type: Transform
- pos: 56.5,23.5
+ pos: -52.5,9.5
parent: 2
- - uid: 2454
+ - uid: 3451
components:
- type: Transform
- pos: 46.5,12.5
+ pos: -69.5,15.5
parent: 2
- - uid: 2455
+ - uid: 3452
components:
- type: Transform
- pos: 47.5,7.5
+ pos: 25.5,-24.5
parent: 2
- - uid: 2456
+ - uid: 3453
components:
- type: Transform
- pos: 47.5,12.5
+ pos: -50.5,37.5
parent: 2
- - uid: 2457
+ - uid: 3454
components:
- type: Transform
- pos: 47.5,10.5
+ pos: -59.5,5.5
parent: 2
- - uid: 2458
+ - uid: 3455
components:
- type: Transform
- pos: 47.5,11.5
+ pos: -67.5,15.5
parent: 2
- - uid: 2459
+ - uid: 3456
components:
- type: Transform
- pos: 47.5,9.5
+ pos: -21.5,-20.5
parent: 2
- - uid: 2460
+ - uid: 3457
components:
- type: Transform
- pos: 47.5,8.5
+ pos: -62.5,50.5
parent: 2
- - uid: 2461
+ - uid: 3458
components:
- type: Transform
- pos: 51.5,19.5
+ pos: -44.5,-7.5
parent: 2
- - uid: 2462
+ - uid: 3459
components:
- type: Transform
- pos: 54.5,-3.5
+ pos: -44.5,-8.5
parent: 2
- - uid: 2463
+ - uid: 3460
components:
- type: Transform
- pos: 55.5,-3.5
+ pos: -53.5,23.5
parent: 2
- - uid: 2464
+ - uid: 3461
components:
- type: Transform
- pos: -68.5,-42.5
+ pos: -32.5,-4.5
parent: 2
- - uid: 2465
+ - uid: 3462
components:
- type: Transform
- pos: 9.5,10.5
+ pos: -1.5,51.5
parent: 2
- - uid: 2466
+ - uid: 3463
components:
- type: Transform
- pos: 9.5,9.5
+ pos: -32.5,-3.5
parent: 2
- - uid: 2467
+ - uid: 3464
components:
- type: Transform
- pos: 13.5,9.5
+ pos: -32.5,1.5
parent: 2
- - uid: 2468
+ - uid: 3465
components:
- type: Transform
- pos: 12.5,9.5
+ pos: 67.5,-23.5
parent: 2
- - uid: 2469
+ - uid: 3466
components:
- type: Transform
- pos: 7.5,8.5
+ pos: 5.5,-19.5
parent: 2
- - uid: 2470
+ - uid: 3467
components:
- type: Transform
- pos: 8.5,8.5
+ pos: 75.5,-24.5
parent: 2
- - uid: 2471
+ - uid: 3468
components:
- type: Transform
- pos: 9.5,8.5
+ pos: 24.5,-42.5
parent: 2
- - uid: 2472
+ - uid: 3469
components:
- type: Transform
- pos: 10.5,8.5
+ pos: 22.5,-6.5
parent: 2
- - uid: 2473
+ - uid: 3470
components:
- type: Transform
- pos: 11.5,8.5
+ pos: 48.5,-46.5
parent: 2
- - uid: 2474
+ - uid: 3471
components:
- type: Transform
- pos: 12.5,8.5
+ pos: 42.5,-46.5
parent: 2
- - uid: 2475
+ - uid: 3472
components:
- type: Transform
- pos: 12.5,7.5
+ pos: -64.5,43.5
parent: 2
- - uid: 2476
+ - uid: 3473
components:
- type: Transform
- pos: -9.5,10.5
+ pos: 43.5,-46.5
parent: 2
- - uid: 2477
+ - uid: 3474
components:
- type: Transform
- pos: -10.5,8.5
+ pos: -62.5,40.5
parent: 2
- - uid: 2478
+ - uid: 3475
components:
- type: Transform
- pos: -11.5,8.5
+ pos: 27.5,-1.5
parent: 2
- - uid: 2479
+ - uid: 3476
components:
- type: Transform
- pos: -8.5,9.5
+ pos: 40.5,7.5
parent: 2
- - uid: 2480
+ - uid: 3477
components:
- type: Transform
- pos: -9.5,9.5
+ pos: 27.5,-19.5
parent: 2
- - uid: 2481
+ - uid: 3478
components:
- type: Transform
- pos: -10.5,9.5
+ pos: 40.5,5.5
parent: 2
- - uid: 2482
+ - uid: 3479
components:
- type: Transform
- pos: -14.5,9.5
+ pos: -55.5,42.5
parent: 2
- - uid: 2483
+ - uid: 3480
components:
- type: Transform
- pos: -13.5,9.5
+ pos: 52.5,-10.5
parent: 2
- - uid: 2484
+ - uid: 3481
components:
- type: Transform
- pos: -12.5,9.5
+ pos: 37.5,-0.5
parent: 2
- - uid: 2485
+ - uid: 3482
components:
- type: Transform
- pos: -11.5,9.5
+ pos: 30.5,5.5
parent: 2
- - uid: 2486
+ - uid: 3483
components:
- type: Transform
- pos: -11.5,10.5
+ pos: -19.5,-51.5
parent: 2
- - uid: 2487
+ - uid: 3484
components:
- type: Transform
- pos: -11.5,11.5
+ pos: 30.5,7.5
parent: 2
- - uid: 2488
+ - uid: 3485
components:
- type: Transform
- pos: -11.5,12.5
+ pos: 24.5,-1.5
parent: 2
- - uid: 2489
+ - uid: 3486
components:
- type: Transform
- pos: -11.5,-7.5
+ pos: 29.5,10.5
parent: 2
- - uid: 2490
+ - uid: 3487
components:
- type: Transform
- pos: -14.5,3.5
+ pos: 44.5,12.5
parent: 2
- - uid: 2491
+ - uid: 3488
components:
- type: Transform
- pos: -13.5,3.5
+ pos: 44.5,-8.5
parent: 2
- - uid: 2492
+ - uid: 3489
components:
- type: Transform
- pos: -14.5,1.5
+ pos: 29.5,5.5
parent: 2
- - uid: 2493
+ - uid: 3490
components:
- type: Transform
- pos: -13.5,1.5
+ pos: 45.5,12.5
parent: 2
- - uid: 2494
+ - uid: 3491
components:
- type: Transform
- pos: -12.5,1.5
+ pos: 23.5,-5.5
parent: 2
- - uid: 2495
+ - uid: 3492
components:
- type: Transform
- pos: -15.5,-0.5
+ pos: 45.5,13.5
parent: 2
- - uid: 2496
+ - uid: 3493
components:
- type: Transform
- pos: -14.5,-0.5
+ pos: 53.5,-10.5
parent: 2
- - uid: 2497
+ - uid: 3494
components:
- type: Transform
- pos: -13.5,-0.5
+ pos: 26.5,-1.5
parent: 2
- - uid: 2498
+ - uid: 3495
components:
- type: Transform
- pos: -12.5,-0.5
+ pos: 40.5,-44.5
parent: 2
- - uid: 2499
+ - uid: 3496
components:
- type: Transform
- pos: -15.5,4.5
+ pos: 31.5,5.5
parent: 2
- - uid: 2500
+ - uid: 3497
components:
- type: Transform
- pos: -14.5,4.5
+ pos: 28.5,10.5
parent: 2
- - uid: 2501
+ - uid: 3498
components:
- type: Transform
- pos: -10.5,-7.5
+ pos: 32.5,10.5
parent: 2
- - uid: 2502
+ - uid: 3499
components:
- type: Transform
- pos: -13.5,4.5
+ pos: 40.5,6.5
parent: 2
- - uid: 2503
+ - uid: 3500
components:
- type: Transform
- pos: -12.5,3.5
+ pos: 29.5,60.5
parent: 2
- - uid: 2504
+ - uid: 3501
components:
- type: Transform
- pos: -11.5,1.5
+ pos: -56.5,1.5
parent: 2
- - uid: 2505
+ - uid: 3502
components:
- type: Transform
- pos: -14.5,-4.5
+ pos: 28.5,60.5
parent: 2
- - uid: 2506
+ - uid: 3503
components:
- type: Transform
- pos: -13.5,-4.5
+ pos: 39.5,-15.5
parent: 2
- - uid: 2507
+ - uid: 3504
components:
- type: Transform
- pos: -12.5,-4.5
+ pos: 64.5,-11.5
parent: 2
- - uid: 2508
+ - uid: 3505
components:
- type: Transform
- pos: -11.5,-4.5
+ pos: 59.5,-9.5
parent: 2
- - uid: 2509
+ - uid: 3506
components:
- type: Transform
- pos: -9.5,-4.5
+ pos: 64.5,-10.5
parent: 2
- - uid: 2510
+ - uid: 3507
components:
- type: Transform
- pos: -10.5,-4.5
+ pos: -5.5,23.5
parent: 2
- - uid: 2511
+ - uid: 3508
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: 0.5,-80.5
parent: 2
- - uid: 2512
+ - uid: 3509
components:
- type: Transform
- pos: -8.5,-0.5
+ pos: -6.5,57.5
parent: 2
- - uid: 2513
+ - uid: 3510
components:
- type: Transform
- pos: -9.5,-0.5
+ pos: 17.5,5.5
parent: 2
- - uid: 2514
+ - uid: 3511
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: 19.5,52.5
parent: 2
- - uid: 2515
+ - uid: 3512
components:
- type: Transform
- pos: -10.5,-1.5
+ pos: 17.5,-0.5
parent: 2
- - uid: 2516
+ - uid: 3513
components:
- type: Transform
- pos: -11.5,-0.5
+ pos: 33.5,37.5
parent: 2
- - uid: 2517
+ - uid: 3514
components:
- type: Transform
- pos: -10.5,-0.5
+ pos: 36.5,37.5
parent: 2
- - uid: 2518
+ - uid: 3515
components:
- type: Transform
- pos: -10.5,0.5
+ pos: 13.5,29.5
parent: 2
- - uid: 2519
+ - uid: 3516
components:
- type: Transform
- pos: -11.5,3.5
+ pos: 41.5,-75.5
parent: 2
- - uid: 2520
+ - uid: 3517
components:
- type: Transform
- pos: -10.5,4.5
+ pos: 17.5,10.5
parent: 2
- - uid: 2521
+ - uid: 3518
components:
- type: Transform
- pos: -10.5,3.5
+ pos: 21.5,47.5
parent: 2
- - uid: 2522
+ - uid: 3519
components:
- type: Transform
- pos: -10.5,2.5
+ pos: -22.5,43.5
parent: 2
- - uid: 2523
+ - uid: 3520
components:
- type: Transform
- pos: -10.5,1.5
+ pos: 10.5,41.5
parent: 2
- - uid: 2524
+ - uid: 3521
components:
- type: Transform
- pos: -9.5,1.5
+ pos: 28.5,30.5
parent: 2
- - uid: 2525
+ - uid: 3522
components:
- type: Transform
- pos: -8.5,1.5
+ pos: 34.5,39.5
parent: 2
- - uid: 2526
+ - uid: 3523
components:
- type: Transform
- pos: -69.5,-40.5
+ pos: 10.5,44.5
parent: 2
- - uid: 2527
+ - uid: 3524
components:
- type: Transform
- pos: -68.5,-44.5
+ pos: -34.5,-80.5
parent: 2
- - uid: 2528
+ - uid: 3525
components:
- type: Transform
- pos: 62.5,28.5
+ pos: -14.5,-75.5
parent: 2
- - uid: 2529
+ - uid: 3526
components:
- type: Transform
- pos: -63.5,7.5
+ pos: -19.5,-69.5
parent: 2
- - uid: 2530
+ - uid: 3527
components:
- type: Transform
- pos: 40.5,-23.5
+ pos: -20.5,-69.5
parent: 2
- - uid: 2531
+ - uid: 3528
components:
- type: Transform
- pos: 69.5,-3.5
+ pos: -6.5,-70.5
parent: 2
- - uid: 2532
+ - uid: 3529
components:
- type: Transform
- pos: 6.5,55.5
+ pos: -18.5,-3.5
parent: 2
- - uid: 2533
+ - uid: 3530
components:
- type: Transform
- pos: 59.5,12.5
+ pos: 17.5,22.5
parent: 2
- - uid: 2534
+ - uid: 3531
components:
- type: Transform
- pos: -23.5,27.5
+ pos: 4.5,57.5
parent: 2
- - uid: 2535
+ - uid: 3532
components:
- type: Transform
- pos: 53.5,19.5
+ pos: 21.5,48.5
parent: 2
- - uid: 2536
+ - uid: 3533
components:
- type: Transform
- pos: 52.5,-3.5
+ pos: 17.5,64.5
parent: 2
- - uid: 2537
+ - uid: 3534
components:
- type: Transform
- pos: 50.5,-3.5
+ pos: 52.5,-20.5
parent: 2
- - uid: 2538
+ - uid: 3535
components:
- type: Transform
- pos: 51.5,-3.5
+ pos: -31.5,-75.5
parent: 2
- - uid: 2539
+ - uid: 3536
components:
- type: Transform
- pos: 53.5,-3.5
+ pos: -5.5,-65.5
parent: 2
- - uid: 2540
+ - uid: 3537
components:
- type: Transform
- pos: 9.5,57.5
+ pos: -13.5,-71.5
parent: 2
- - uid: 2541
+ - uid: 3538
components:
- type: Transform
- pos: 47.5,-8.5
+ pos: -3.5,-62.5
parent: 2
- - uid: 2542
+ - uid: 3539
components:
- type: Transform
- pos: 63.5,-18.5
+ pos: 18.5,53.5
parent: 2
- - uid: 2543
+ - uid: 3540
components:
- type: Transform
- pos: -46.5,9.5
+ pos: 5.5,59.5
parent: 2
- - uid: 2544
+ - uid: 3541
components:
- type: Transform
- pos: 37.5,10.5
+ pos: -51.5,-9.5
parent: 2
- - uid: 2545
+ - uid: 3542
components:
- type: Transform
- pos: 44.5,-28.5
+ pos: -60.5,-16.5
parent: 2
- - uid: 2546
+ - uid: 3543
components:
- type: Transform
- pos: 2.5,29.5
+ pos: 14.5,35.5
parent: 2
- - uid: 2547
+ - uid: 3544
components:
- type: Transform
- pos: 28.5,-19.5
+ pos: 67.5,-24.5
parent: 2
- - uid: 2548
+ - uid: 3545
components:
- type: Transform
- pos: 29.5,1.5
+ pos: 67.5,-22.5
parent: 2
- - uid: 2549
+ - uid: 3546
components:
- type: Transform
- pos: 40.5,-38.5
+ pos: 7.5,57.5
parent: 2
- - uid: 2550
+ - uid: 3547
components:
- type: Transform
- pos: 62.5,-29.5
+ pos: 14.5,71.5
parent: 2
- - uid: 2551
+ - uid: 3548
components:
- type: Transform
- pos: 71.5,-51.5
+ pos: 34.5,37.5
parent: 2
- - uid: 2552
+ - uid: 3549
components:
- type: Transform
- pos: 28.5,-70.5
+ pos: 5.5,57.5
parent: 2
- - uid: 2553
+ - uid: 3550
components:
- type: Transform
- pos: -30.5,-75.5
+ pos: 13.5,72.5
parent: 2
- - uid: 2554
+ - uid: 3551
components:
- type: Transform
- pos: -46.5,-27.5
+ pos: 34.5,-10.5
parent: 2
- - uid: 2555
+ - uid: 3552
components:
- type: Transform
- pos: 12.5,-39.5
+ pos: 21.5,49.5
parent: 2
- - uid: 2556
+ - uid: 3553
components:
- type: Transform
- pos: 49.5,-28.5
+ pos: 25.5,49.5
parent: 2
- - uid: 2557
+ - uid: 3554
components:
- type: Transform
- pos: 44.5,0.5
+ pos: 17.5,2.5
parent: 2
- - uid: 2558
+ - uid: 3555
components:
- type: Transform
- pos: 31.5,4.5
+ pos: 10.5,61.5
parent: 2
- - uid: 2559
+ - uid: 3556
components:
- type: Transform
- pos: 56.5,-28.5
+ pos: -22.5,-26.5
parent: 2
- - uid: 2560
+ - uid: 3557
components:
- type: Transform
- pos: 41.5,-45.5
+ pos: 10.5,62.5
parent: 2
- - uid: 2561
+ - uid: 3558
components:
- type: Transform
- pos: 16.5,38.5
+ pos: 0.5,51.5
parent: 2
- - uid: 2562
+ - uid: 3559
components:
- type: Transform
- pos: -38.5,-11.5
+ pos: 75.5,-23.5
parent: 2
- - uid: 2563
+ - uid: 3560
components:
- type: Transform
- pos: -25.5,5.5
+ pos: 25.5,48.5
parent: 2
- - uid: 2564
+ - uid: 3561
components:
- type: Transform
- pos: 10.5,45.5
+ pos: -3.5,37.5
parent: 2
- - uid: 2565
+ - uid: 3562
components:
- type: Transform
- pos: 17.5,3.5
+ pos: -2.5,37.5
parent: 2
- - uid: 2566
+ - uid: 3563
components:
- type: Transform
- pos: 31.5,-61.5
+ pos: 34.5,-11.5
parent: 2
- - uid: 2567
+ - uid: 3564
components:
- type: Transform
- pos: 21.5,-55.5
+ pos: 15.5,60.5
parent: 2
- - uid: 2568
+ - uid: 3565
components:
- type: Transform
- pos: -2.5,28.5
+ pos: 28.5,-15.5
parent: 2
- - uid: 2569
+ - uid: 3566
components:
- type: Transform
- pos: 17.5,38.5
+ pos: 68.5,-24.5
parent: 2
- - uid: 2570
+ - uid: 3567
components:
- type: Transform
- pos: 17.5,15.5
+ pos: 13.5,60.5
parent: 2
- - uid: 2571
+ - uid: 3568
components:
- type: Transform
- pos: 24.5,27.5
+ pos: -52.5,-13.5
parent: 2
- - uid: 2572
+ - uid: 3569
components:
- type: Transform
- pos: -48.5,-6.5
+ pos: 62.5,-11.5
parent: 2
- - uid: 2573
+ - uid: 3570
components:
- type: Transform
- pos: 17.5,14.5
+ pos: 44.5,-7.5
parent: 2
- - uid: 2574
+ - uid: 3571
components:
- type: Transform
- pos: -45.5,45.5
+ pos: 44.5,5.5
parent: 2
- - uid: 2575
+ - uid: 3572
components:
- type: Transform
- pos: -45.5,46.5
+ pos: 34.5,-0.5
parent: 2
- - uid: 2576
+ - uid: 3573
components:
- type: Transform
- pos: 10.5,84.5
+ pos: 35.5,-0.5
parent: 2
- - uid: 2577
+ - uid: 3574
components:
- type: Transform
- pos: -3.5,-80.5
+ pos: -34.5,-79.5
parent: 2
- - uid: 2578
+ - uid: 3575
components:
- type: Transform
- pos: 28.5,58.5
+ pos: -37.5,50.5
parent: 2
- - uid: 2579
+ - uid: 3576
components:
- type: Transform
- pos: -9.5,77.5
+ pos: -31.5,24.5
parent: 2
- - uid: 2580
+ - uid: 3577
components:
- type: Transform
- pos: 25.5,27.5
+ pos: -34.5,-78.5
parent: 2
- - uid: 2581
+ - uid: 3578
components:
- type: Transform
- pos: 12.5,49.5
+ pos: -31.5,-78.5
parent: 2
- - uid: 2582
+ - uid: 3579
components:
- type: Transform
- pos: -2.5,27.5
+ pos: -30.5,-78.5
parent: 2
- - uid: 2583
+ - uid: 3580
components:
- type: Transform
- pos: 60.5,-14.5
+ pos: -30.5,-79.5
parent: 2
- - uid: 2584
+ - uid: 3581
components:
- type: Transform
- pos: 41.5,-44.5
+ pos: -30.5,-80.5
parent: 2
- - uid: 2585
+ - uid: 3582
components:
- type: Transform
- pos: 44.5,3.5
+ pos: 17.5,52.5
parent: 2
- - uid: 2586
+ - uid: 3583
components:
- type: Transform
- pos: 43.5,3.5
+ pos: -0.5,-80.5
parent: 2
- - uid: 2587
+ - uid: 3584
components:
- type: Transform
- pos: 50.5,-51.5
+ pos: 26.5,-64.5
parent: 2
- - uid: 2588
+ - uid: 3585
components:
- type: Transform
- pos: -45.5,47.5
+ pos: 5.5,-43.5
parent: 2
- - uid: 2589
+ - uid: 3586
components:
- type: Transform
- pos: 40.5,-22.5
+ pos: 2.5,52.5
parent: 2
- - uid: 2590
+ - uid: 3587
components:
- type: Transform
- pos: 40.5,-26.5
+ pos: -28.5,-26.5
parent: 2
- - uid: 2591
+ - uid: 3588
components:
- type: Transform
- pos: 44.5,-10.5
+ pos: -39.5,61.5
parent: 2
- - uid: 2592
+ - uid: 3589
components:
- type: Transform
- pos: 39.5,-22.5
+ pos: -30.5,22.5
parent: 2
- - uid: 2593
+ - uid: 3590
components:
- type: Transform
- pos: 14.5,-36.5
+ pos: 15.5,-45.5
parent: 2
- - uid: 2594
+ - uid: 3591
components:
- type: Transform
- pos: -73.5,9.5
+ pos: 15.5,-46.5
parent: 2
- - uid: 2595
+ - uid: 3592
components:
- type: Transform
- pos: 28.5,31.5
+ pos: -37.5,-11.5
parent: 2
- - uid: 2596
+ - uid: 3593
components:
- type: Transform
- pos: 36.5,12.5
+ pos: 3.5,-43.5
parent: 2
- - uid: 2597
+ - uid: 3594
components:
- type: Transform
- pos: 44.5,-1.5
+ pos: -40.5,61.5
parent: 2
- - uid: 2598
+ - uid: 3595
components:
- type: Transform
- pos: -27.5,-34.5
+ pos: 2.5,65.5
parent: 2
- - uid: 2599
+ - uid: 3596
components:
- type: Transform
- pos: -45.5,57.5
+ pos: -37.5,-10.5
parent: 2
- - uid: 2600
+ - uid: 3597
components:
- type: Transform
- pos: 45.5,8.5
+ pos: -39.5,5.5
parent: 2
- - uid: 2601
+ - uid: 3598
components:
- type: Transform
- pos: 36.5,-0.5
+ pos: -8.5,-80.5
parent: 2
- - uid: 2602
+ - uid: 3599
components:
- type: Transform
- pos: 25.5,56.5
+ pos: -46.5,-32.5
parent: 2
- - uid: 2603
+ - uid: 3600
components:
- type: Transform
- pos: 55.5,-46.5
+ pos: -51.5,-32.5
parent: 2
- - uid: 2604
+ - uid: 3601
components:
- type: Transform
- pos: 54.5,-46.5
+ pos: -32.5,-2.5
parent: 2
- - uid: 2605
+ - uid: 3602
components:
- type: Transform
- pos: 23.5,-19.5
+ pos: -54.5,-20.5
parent: 2
- - uid: 2606
+ - uid: 3603
components:
- type: Transform
- pos: 31.5,3.5
+ pos: -14.5,42.5
parent: 2
- - uid: 2607
+ - uid: 3604
components:
- type: Transform
- pos: -10.5,30.5
+ pos: -20.5,-13.5
parent: 2
- - uid: 2608
+ - uid: 3605
components:
- type: Transform
- pos: 8.5,53.5
+ pos: -14.5,35.5
parent: 2
- - uid: 2609
+ - uid: 3606
components:
- type: Transform
- pos: 24.5,41.5
+ pos: -0.5,-28.5
parent: 2
- - uid: 2610
+ - uid: 3607
components:
- type: Transform
- pos: 32.5,-5.5
+ pos: -21.5,49.5
parent: 2
- - uid: 2611
+ - uid: 3608
components:
- type: Transform
- pos: 9.5,53.5
+ pos: -28.5,46.5
parent: 2
- - uid: 2612
+ - uid: 3609
components:
- type: Transform
- pos: -25.5,57.5
+ pos: -46.5,-30.5
parent: 2
- - uid: 2613
+ - uid: 3610
components:
- type: Transform
- pos: 40.5,-42.5
+ pos: -46.5,-24.5
parent: 2
- - uid: 2614
+ - uid: 3611
components:
- type: Transform
- pos: 74.5,-18.5
+ pos: -35.5,15.5
parent: 2
- - uid: 2615
+ - uid: 3612
components:
- type: Transform
- pos: -47.5,1.5
+ pos: -8.5,77.5
parent: 2
- - uid: 2616
+ - uid: 3613
components:
- type: Transform
- pos: 10.5,53.5
+ pos: 36.5,-33.5
parent: 2
- - uid: 2617
+ - uid: 3614
components:
- type: Transform
- pos: 60.5,-12.5
+ pos: -30.5,7.5
parent: 2
- - uid: 2618
+ - uid: 3615
components:
- type: Transform
- pos: 25.5,50.5
+ pos: -14.5,-69.5
parent: 2
- - uid: 2619
+ - uid: 3616
components:
- type: Transform
- pos: 37.5,-60.5
+ pos: -13.5,-69.5
parent: 2
- - uid: 2620
+ - uid: 3617
components:
- type: Transform
- pos: -62.5,44.5
+ pos: -22.5,36.5
parent: 2
- - uid: 2621
+ - uid: 3618
components:
- type: Transform
- pos: 48.5,-23.5
+ pos: 12.5,78.5
parent: 2
- - uid: 2622
+ - uid: 3619
components:
- type: Transform
- pos: 48.5,-24.5
+ pos: -0.5,-19.5
parent: 2
- - uid: 2623
+ - uid: 3620
components:
- type: Transform
- pos: -20.5,-80.5
+ pos: 27.5,-55.5
parent: 2
- - uid: 2624
+ - uid: 3621
components:
- type: Transform
- pos: -30.5,16.5
+ pos: 17.5,17.5
parent: 2
- - uid: 2625
+ - uid: 3622
components:
- type: Transform
- pos: 24.5,-16.5
+ pos: 36.5,-25.5
parent: 2
- - uid: 2626
+ - uid: 3623
components:
- type: Transform
- pos: -35.5,28.5
+ pos: 28.5,42.5
parent: 2
- - uid: 2627
+ - uid: 3624
components:
- type: Transform
- pos: -9.5,23.5
+ pos: -23.5,-63.5
parent: 2
- - uid: 2628
+ - uid: 3625
components:
- type: Transform
- pos: 6.5,84.5
+ pos: 4.5,84.5
parent: 2
- - uid: 2629
+ - uid: 3626
components:
- type: Transform
- pos: 31.5,58.5
+ pos: -11.5,71.5
parent: 2
- - uid: 2630
+ - uid: 3627
components:
- type: Transform
- pos: 17.5,44.5
+ pos: -10.5,57.5
parent: 2
- - uid: 2631
+ - uid: 3628
components:
- type: Transform
- pos: 46.5,-20.5
+ pos: -41.5,52.5
parent: 2
- - uid: 2632
+ - uid: 3629
components:
- type: Transform
- pos: -61.5,-16.5
+ pos: -4.5,-80.5
parent: 2
- - uid: 2633
+ - uid: 3630
components:
- type: Transform
- pos: -0.5,26.5
+ pos: -10.5,-70.5
parent: 2
- - uid: 2634
+ - uid: 3631
components:
- type: Transform
- pos: -54.5,-10.5
+ pos: 39.5,-72.5
parent: 2
- - uid: 2635
+ - uid: 3632
components:
- type: Transform
- pos: 52.5,-24.5
+ pos: 17.5,16.5
parent: 2
- - uid: 2636
+ - uid: 3633
components:
- type: Transform
- pos: 35.5,-7.5
+ pos: 11.5,81.5
parent: 2
- - uid: 2637
+ - uid: 3634
components:
- type: Transform
- pos: 46.5,-18.5
+ pos: 5.5,91.5
parent: 2
- - uid: 2638
+ - uid: 3635
components:
- type: Transform
- pos: 73.5,-21.5
+ pos: -2.5,-19.5
parent: 2
- - uid: 2639
+ - uid: 3636
components:
- type: Transform
- pos: 48.5,-21.5
+ pos: -0.5,-23.5
parent: 2
- - uid: 2640
+ - uid: 3637
components:
- type: Transform
- pos: 37.5,-7.5
+ pos: -18.5,57.5
parent: 2
- - uid: 2641
+ - uid: 3638
components:
- type: Transform
- pos: 52.5,-23.5
+ pos: -9.5,-80.5
parent: 2
- - uid: 2642
+ - uid: 3639
components:
- type: Transform
- pos: 51.5,-20.5
+ pos: 5.5,84.5
parent: 2
- - uid: 2643
+ - uid: 3640
components:
- type: Transform
- pos: 34.5,-7.5
+ pos: -15.5,50.5
parent: 2
- - uid: 2644
+ - uid: 3641
components:
- type: Transform
- pos: -30.5,57.5
+ pos: -0.5,-24.5
parent: 2
- - uid: 2645
+ - uid: 3642
components:
- type: Transform
- pos: 44.5,-24.5
+ pos: 6.5,68.5
parent: 2
- - uid: 2646
+ - uid: 3643
components:
- type: Transform
- pos: 56.5,-16.5
+ pos: 33.5,-66.5
parent: 2
- - uid: 2647
+ - uid: 3644
components:
- type: Transform
- pos: 47.5,-18.5
+ pos: -58.5,-0.5
parent: 2
- - uid: 2648
+ - uid: 3645
components:
- type: Transform
- pos: 15.5,-55.5
+ pos: 1.5,46.5
parent: 2
- - uid: 2649
+ - uid: 3646
components:
- type: Transform
- pos: -23.5,56.5
+ pos: 17.5,50.5
parent: 2
- - uid: 2650
+ - uid: 3647
components:
- type: Transform
- pos: -16.5,57.5
+ pos: 28.5,40.5
parent: 2
- - uid: 2651
+ - uid: 3648
components:
- type: Transform
- pos: 23.5,49.5
+ pos: -55.5,-13.5
parent: 2
- - uid: 2652
+ - uid: 3649
components:
- type: Transform
- pos: -48.5,13.5
+ pos: 1.5,45.5
parent: 2
- - uid: 2653
+ - uid: 3650
components:
- type: Transform
- pos: 28.5,-69.5
+ pos: -54.5,-8.5
parent: 2
- - uid: 2654
+ - uid: 3651
components:
- type: Transform
- pos: -27.5,57.5
+ pos: 17.5,51.5
parent: 2
- - uid: 2655
+ - uid: 3652
components:
- type: Transform
- pos: -50.5,-15.5
+ pos: 1.5,44.5
parent: 2
- - uid: 2656
+ - uid: 3653
components:
- type: Transform
- pos: -18.5,51.5
+ pos: 1.5,42.5
parent: 2
- - uid: 2657
+ - uid: 3654
components:
- type: Transform
- pos: -46.5,-8.5
+ pos: 1.5,43.5
parent: 2
- - uid: 2658
+ - uid: 3655
components:
- type: Transform
- pos: -23.5,57.5
+ pos: 1.5,39.5
parent: 2
- - uid: 2659
+ - uid: 3656
components:
- type: Transform
- pos: -0.5,-26.5
+ pos: 1.5,40.5
parent: 2
- - uid: 2660
+ - uid: 3657
components:
- type: Transform
- pos: -11.5,50.5
+ pos: 1.5,41.5
parent: 2
- - uid: 2661
+ - uid: 3658
components:
- type: Transform
- pos: -41.5,-63.5
+ pos: 30.5,60.5
parent: 2
- - uid: 2662
+ - uid: 3659
components:
- type: Transform
- pos: -74.5,-20.5
+ pos: -48.5,1.5
parent: 2
- - uid: 2663
+ - uid: 3660
components:
- type: Transform
- pos: 6.5,-44.5
+ pos: 37.5,-9.5
parent: 2
- - uid: 2664
+ - uid: 3661
components:
- type: Transform
- pos: -35.5,11.5
+ pos: -52.5,-1.5
parent: 2
- - uid: 2665
+ - uid: 3662
components:
- type: Transform
- pos: 45.5,-18.5
+ pos: -58.5,-15.5
parent: 2
- - uid: 2666
+ - uid: 3663
components:
- type: Transform
- pos: -17.5,63.5
+ pos: -54.5,-13.5
parent: 2
- - uid: 2667
+ - uid: 3664
components:
- type: Transform
- pos: -30.5,1.5
+ pos: 30.5,56.5
parent: 2
- - uid: 2668
+ - uid: 3665
components:
- type: Transform
- pos: -16.5,23.5
+ pos: 5.5,66.5
parent: 2
- - uid: 2669
+ - uid: 3666
components:
- type: Transform
- pos: 45.5,-20.5
+ pos: 74.5,-24.5
parent: 2
- - uid: 2670
+ - uid: 3667
components:
- type: Transform
- pos: -18.5,22.5
+ pos: 41.5,-12.5
parent: 2
- - uid: 2671
+ - uid: 3668
components:
- type: Transform
- pos: 62.5,-12.5
+ pos: 57.5,-30.5
parent: 2
- - uid: 2672
+ - uid: 3669
components:
- type: Transform
- pos: 40.5,-58.5
+ pos: 61.5,-30.5
parent: 2
- - uid: 2673
+ - uid: 3670
components:
- type: Transform
- pos: -13.5,-67.5
+ pos: 58.5,-13.5
parent: 2
- - uid: 2674
+ - uid: 3671
components:
- type: Transform
- pos: -72.5,21.5
+ pos: 34.5,-13.5
parent: 2
- - uid: 2675
+ - uid: 3672
components:
- type: Transform
- pos: 9.5,-44.5
+ pos: 48.5,-18.5
parent: 2
- - uid: 2676
+ - uid: 3673
components:
- type: Transform
- pos: -18.5,20.5
+ pos: 34.5,-15.5
parent: 2
- - uid: 2677
+ - uid: 3674
components:
- type: Transform
- pos: -51.5,-6.5
+ pos: 40.5,-35.5
parent: 2
- - uid: 2678
+ - uid: 3675
components:
- type: Transform
- pos: -50.5,-1.5
+ pos: 60.5,-28.5
parent: 2
- - uid: 2679
+ - uid: 3676
components:
- type: Transform
- pos: 46.5,-21.5
+ pos: 34.5,-14.5
parent: 2
- - uid: 2680
+ - uid: 3677
components:
- type: Transform
- pos: 35.5,-34.5
+ pos: -33.5,23.5
parent: 2
- - uid: 2681
+ - uid: 3678
components:
- type: Transform
- pos: -14.5,57.5
+ pos: -39.5,-63.5
parent: 2
- - uid: 2682
+ - uid: 3679
components:
- type: Transform
- pos: 27.5,-58.5
+ pos: -25.5,-76.5
parent: 2
- - uid: 2683
+ - uid: 3680
components:
- type: Transform
- pos: -11.5,57.5
+ pos: -8.5,23.5
parent: 2
- - uid: 2684
+ - uid: 3681
components:
- type: Transform
- pos: -18.5,-19.5
+ pos: 37.5,-30.5
parent: 2
- - uid: 2685
+ - uid: 3682
components:
- type: Transform
- pos: -23.5,26.5
+ pos: 0.5,-19.5
parent: 2
- - uid: 2686
+ - uid: 3683
components:
- type: Transform
- pos: -36.5,17.5
+ pos: -6.5,62.5
parent: 2
- - uid: 2687
+ - uid: 3684
components:
- type: Transform
- pos: -15.5,23.5
+ pos: -6.5,40.5
parent: 2
- - uid: 2688
+ - uid: 3685
components:
- type: Transform
- pos: 26.5,-68.5
+ pos: 6.5,88.5
parent: 2
- - uid: 2689
+ - uid: 3686
components:
- type: Transform
- pos: 16.5,-55.5
+ pos: -11.5,68.5
parent: 2
- - uid: 2690
+ - uid: 3687
components:
- type: Transform
- pos: 58.5,5.5
+ pos: -40.5,23.5
parent: 2
- - uid: 2691
+ - uid: 3688
components:
- type: Transform
- pos: 6.5,50.5
+ pos: 3.5,60.5
parent: 2
- - uid: 2692
+ - uid: 3689
components:
- type: Transform
- pos: 4.5,23.5
+ pos: -37.5,5.5
parent: 2
- - uid: 2693
+ - uid: 3690
components:
- type: Transform
- pos: 25.5,-69.5
+ pos: 1.5,-19.5
parent: 2
- - uid: 2694
+ - uid: 3691
components:
- type: Transform
- pos: -19.5,-80.5
+ pos: -0.5,-25.5
parent: 2
- - uid: 2695
+ - uid: 3692
components:
- type: Transform
- pos: -24.5,59.5
+ pos: -41.5,56.5
parent: 2
- - uid: 2696
+ - uid: 3693
components:
- type: Transform
- pos: -25.5,65.5
+ pos: -23.5,68.5
parent: 2
- - uid: 2697
+ - uid: 3694
components:
- type: Transform
- pos: 10.5,-44.5
+ pos: -28.5,-1.5
parent: 2
- - uid: 2698
+ - uid: 3695
components:
- type: Transform
- pos: 37.5,-25.5
+ pos: -0.5,51.5
parent: 2
- - uid: 2699
+ - uid: 3696
components:
- type: Transform
- pos: -15.5,-71.5
+ pos: -41.5,53.5
parent: 2
- - uid: 2700
+ - uid: 3697
components:
- type: Transform
- pos: -13.5,51.5
+ pos: -51.5,-29.5
parent: 2
- - uid: 2701
+ - uid: 3698
components:
- type: Transform
- pos: 0.5,68.5
+ pos: -28.5,24.5
parent: 2
- - uid: 2702
+ - uid: 3699
components:
- type: Transform
- pos: -4.5,53.5
+ pos: 25.5,52.5
parent: 2
- - uid: 2703
+ - uid: 3700
components:
- type: Transform
- pos: -28.5,-14.5
+ pos: -3.5,-63.5
parent: 2
- - uid: 2704
+ - uid: 3701
components:
- type: Transform
- pos: -20.5,5.5
+ pos: -18.5,-71.5
parent: 2
- - uid: 2705
+ - uid: 3702
components:
- type: Transform
- pos: -4.5,37.5
+ pos: 17.5,9.5
parent: 2
- - uid: 2706
+ - uid: 3703
components:
- type: Transform
- pos: 5.5,-44.5
+ pos: -36.5,5.5
parent: 2
- - uid: 2707
+ - uid: 3704
components:
- type: Transform
- pos: -23.5,25.5
+ pos: -25.5,31.5
parent: 2
- - uid: 2708
+ - uid: 3705
components:
- type: Transform
- pos: -35.5,-5.5
+ pos: -11.5,39.5
parent: 2
- - uid: 2709
+ - uid: 3706
components:
- type: Transform
- pos: 17.5,-18.5
+ pos: -26.5,31.5
parent: 2
- - uid: 2710
+ - uid: 3707
components:
- type: Transform
- pos: -43.5,-13.5
+ pos: 7.5,58.5
parent: 2
- - uid: 2711
+ - uid: 3708
components:
- type: Transform
- pos: -50.5,50.5
+ pos: -30.5,-18.5
parent: 2
- - uid: 2712
+ - uid: 3709
components:
- type: Transform
- pos: -77.5,9.5
+ pos: -4.5,49.5
parent: 2
- - uid: 2713
+ - uid: 3710
components:
- type: Transform
- pos: -25.5,30.5
+ pos: -58.5,-41.5
parent: 2
- - uid: 2714
+ - uid: 3711
components:
- type: Transform
- pos: -69.5,7.5
+ pos: 11.5,75.5
parent: 2
- - uid: 2715
+ - uid: 3712
components:
- type: Transform
- pos: -65.5,59.5
+ pos: 11.5,74.5
parent: 2
- - uid: 2716
+ - uid: 3713
components:
- type: Transform
- pos: -53.5,33.5
+ pos: 6.5,86.5
parent: 2
- - uid: 2717
+ - uid: 3714
components:
- type: Transform
- pos: -62.5,29.5
+ pos: -22.5,68.5
parent: 2
- - uid: 2718
+ - uid: 3715
components:
- type: Transform
- pos: 4.5,-15.5
+ pos: 41.5,-71.5
parent: 2
- - uid: 2719
+ - uid: 3716
components:
- type: Transform
- pos: -51.5,2.5
+ pos: -58.5,-48.5
parent: 2
- - uid: 2720
+ - uid: 3717
components:
- type: Transform
- pos: -18.5,-7.5
+ pos: 14.5,-45.5
parent: 2
- - uid: 2721
+ - uid: 3718
components:
- type: Transform
- pos: -31.5,46.5
+ pos: -22.5,-11.5
parent: 2
- - uid: 2722
+ - uid: 3719
components:
- type: Transform
- pos: -18.5,-9.5
+ pos: -48.5,-28.5
parent: 2
- - uid: 2723
+ - uid: 3720
components:
- type: Transform
- pos: -48.5,-27.5
+ pos: -27.5,-32.5
parent: 2
- - uid: 2724
+ - uid: 3721
components:
- type: Transform
- pos: 3.5,-44.5
+ pos: -3.5,49.5
parent: 2
- - uid: 2725
+ - uid: 3722
components:
- type: Transform
- pos: -47.5,-27.5
+ pos: -1.5,68.5
parent: 2
- - uid: 2726
+ - uid: 3723
components:
- type: Transform
- pos: -14.5,-7.5
+ pos: -30.5,28.5
parent: 2
- - uid: 2727
+ - uid: 3724
components:
- type: Transform
- pos: -26.5,68.5
+ pos: -31.5,26.5
parent: 2
- - uid: 2728
+ - uid: 3725
components:
- type: Transform
- pos: -14.5,-65.5
+ pos: -10.5,-58.5
parent: 2
- - uid: 2729
+ - uid: 3726
components:
- type: Transform
- pos: -18.5,-10.5
+ pos: -42.5,29.5
parent: 2
- - uid: 2730
+ - uid: 3727
components:
- type: Transform
- pos: -29.5,46.5
+ pos: 3.5,-10.5
parent: 2
- - uid: 2731
+ - uid: 3728
components:
- type: Transform
- pos: -34.5,-5.5
+ pos: -11.5,30.5
parent: 2
- - uid: 2732
+ - uid: 3729
components:
- type: Transform
- pos: 44.5,-15.5
+ pos: -14.5,30.5
parent: 2
- - uid: 2733
+ - uid: 3730
components:
- type: Transform
- pos: -21.5,41.5
+ pos: -53.5,24.5
parent: 2
- - uid: 2734
+ - uid: 3731
components:
- type: Transform
- pos: -25.5,19.5
+ pos: 0.5,-16.5
parent: 2
- - uid: 2735
+ - uid: 3732
components:
- type: Transform
- pos: 14.5,-7.5
+ pos: -63.5,22.5
parent: 2
- - uid: 2736
+ - uid: 3733
components:
- type: Transform
- pos: -58.5,-44.5
+ pos: -55.5,29.5
parent: 2
- - uid: 2737
+ - uid: 3734
components:
- type: Transform
- pos: -58.5,41.5
+ pos: -40.5,21.5
parent: 2
- - uid: 2738
+ - uid: 3735
components:
- type: Transform
- pos: -64.5,25.5
+ pos: 9.5,-39.5
parent: 2
- - uid: 2739
+ - uid: 3736
components:
- type: Transform
- pos: -56.5,61.5
+ pos: 20.5,-46.5
parent: 2
- - uid: 2740
+ - uid: 3737
components:
- type: Transform
- pos: -33.5,12.5
+ pos: -77.5,6.5
parent: 2
- - uid: 2741
+ - uid: 3738
components:
- type: Transform
- pos: -37.5,15.5
+ pos: -52.5,15.5
parent: 2
- - uid: 2742
+ - uid: 3739
components:
- type: Transform
- pos: -58.5,-30.5
+ pos: -33.5,-13.5
parent: 2
- - uid: 2743
+ - uid: 3740
components:
- type: Transform
- pos: -42.5,32.5
+ pos: -7.5,30.5
parent: 2
- - uid: 2744
+ - uid: 3741
components:
- type: Transform
- pos: -2.5,-14.5
+ pos: -29.5,-18.5
parent: 2
- - uid: 2745
+ - uid: 3742
components:
- type: Transform
- pos: -54.5,-40.5
+ pos: -8.5,30.5
parent: 2
- - uid: 2746
+ - uid: 3743
components:
- type: Transform
- pos: -58.5,-39.5
+ pos: -1.5,-14.5
parent: 2
- - uid: 2747
+ - uid: 3744
components:
- type: Transform
- pos: -30.5,42.5
+ pos: -21.5,5.5
parent: 2
- - uid: 2748
+ - uid: 3745
components:
- type: Transform
- pos: -25.5,38.5
+ pos: -55.5,-20.5
parent: 2
- - uid: 2749
+ - uid: 3746
components:
- type: Transform
- pos: -34.5,18.5
+ pos: -37.5,9.5
parent: 2
- - uid: 2750
+ - uid: 3747
components:
- type: Transform
- pos: -25.5,12.5
+ pos: -57.5,29.5
parent: 2
- - uid: 2751
+ - uid: 3748
components:
- type: Transform
- pos: -24.5,12.5
+ pos: -67.5,-34.5
parent: 2
- - uid: 2752
+ - uid: 3749
components:
- type: Transform
- pos: -58.5,61.5
+ pos: 0.5,19.5
parent: 2
- - uid: 2753
+ - uid: 3750
components:
- type: Transform
- pos: -58.5,-45.5
+ pos: -8.5,14.5
parent: 2
- - uid: 2754
+ - uid: 3751
components:
- type: Transform
- pos: -74.5,-26.5
+ pos: 10.5,5.5
parent: 2
- - uid: 2755
+ - uid: 3752
components:
- type: Transform
- pos: -59.5,34.5
+ pos: -4.5,13.5
parent: 2
- - uid: 2756
+ - uid: 3753
components:
- type: Transform
- pos: -45.5,12.5
+ pos: -19.5,-37.5
parent: 2
- - uid: 2757
+ - uid: 3754
components:
- type: Transform
- pos: -63.5,29.5
+ pos: 3.5,-25.5
parent: 2
- - uid: 2758
+ - uid: 3755
components:
- type: Transform
- pos: 13.5,-24.5
+ pos: 5.5,8.5
parent: 2
- - uid: 2759
+ - uid: 3756
components:
- type: Transform
- pos: 17.5,-26.5
+ pos: -58.5,28.5
parent: 2
- - uid: 2760
+ - uid: 3757
components:
- type: Transform
- pos: -11.5,-26.5
+ pos: -18.5,-37.5
parent: 2
- - uid: 2761
+ - uid: 3758
components:
- type: Transform
- pos: -25.5,48.5
+ pos: -16.5,-42.5
parent: 2
- - uid: 2762
+ - uid: 3759
components:
- type: Transform
- pos: -45.5,-22.5
+ pos: -12.5,14.5
parent: 2
- - uid: 2763
+ - uid: 3760
components:
- type: Transform
- pos: -49.5,-20.5
+ pos: -31.5,-14.5
parent: 2
- - uid: 2764
+ - uid: 3761
components:
- type: Transform
- pos: -41.5,-11.5
+ pos: -31.5,36.5
parent: 2
- - uid: 2765
+ - uid: 3762
components:
- type: Transform
- pos: 4.5,-51.5
+ pos: -69.5,5.5
parent: 2
- - uid: 2766
+ - uid: 3763
components:
- type: Transform
- pos: -52.5,-44.5
+ pos: -70.5,5.5
parent: 2
- - uid: 2767
+ - uid: 3764
components:
- type: Transform
- pos: 17.5,-27.5
+ pos: -1.5,26.5
parent: 2
- - uid: 2768
+ - uid: 3765
components:
- type: Transform
- pos: 4.5,-53.5
+ pos: 31.5,-43.5
parent: 2
- - uid: 2769
+ - uid: 3766
components:
- type: Transform
- pos: 29.5,-31.5
+ pos: 14.5,-37.5
parent: 2
- - uid: 2770
+ - uid: 3767
components:
- type: Transform
- pos: -8.5,84.5
+ pos: 19.5,-46.5
parent: 2
- - uid: 2771
+ - uid: 3768
components:
- type: Transform
- pos: 21.5,-51.5
+ pos: 21.5,-45.5
parent: 2
- - uid: 2772
+ - uid: 3769
components:
- type: Transform
- pos: 26.5,-34.5
+ pos: 19.5,-42.5
parent: 2
- - uid: 2773
+ - uid: 3770
components:
- type: Transform
- pos: 3.5,-24.5
+ pos: 13.5,-39.5
parent: 2
- - uid: 2774
+ - uid: 3771
components:
- type: Transform
- pos: 4.5,-50.5
+ pos: 25.5,-44.5
parent: 2
- - uid: 2775
+ - uid: 3772
components:
- type: Transform
- pos: 24.5,-39.5
+ pos: -64.5,5.5
parent: 2
- - uid: 2776
+ - uid: 3773
components:
- type: Transform
- pos: 27.5,-36.5
+ pos: -33.5,33.5
parent: 2
- - uid: 2777
+ - uid: 3774
components:
- type: Transform
- pos: -18.5,-21.5
+ pos: -57.5,-9.5
parent: 2
- - uid: 2778
+ - uid: 3775
components:
- type: Transform
- pos: -62.5,12.5
+ pos: -65.5,-24.5
parent: 2
- - uid: 2779
+ - uid: 3776
components:
- type: Transform
- pos: -64.5,21.5
+ pos: 11.5,-39.5
parent: 2
- - uid: 2780
+ - uid: 3777
components:
- type: Transform
- pos: -6.5,-30.5
+ pos: -0.5,-32.5
parent: 2
- - uid: 2781
+ - uid: 3778
components:
- type: Transform
- pos: 6.5,-34.5
+ pos: 35.5,-42.5
parent: 2
- - uid: 2782
+ - uid: 3779
components:
- type: Transform
- pos: 8.5,-34.5
+ pos: -65.5,-25.5
parent: 2
- - uid: 2783
+ - uid: 3780
components:
- type: Transform
- pos: -19.5,-34.5
+ pos: -69.5,-34.5
parent: 2
- - uid: 2784
+ - uid: 3781
components:
- type: Transform
- pos: -10.5,-25.5
+ pos: -13.5,-42.5
parent: 2
- - uid: 2785
+ - uid: 3782
components:
- type: Transform
- pos: 10.5,-24.5
+ pos: 86.5,10.5
parent: 2
- - uid: 2786
+ - uid: 3783
components:
- type: Transform
- pos: 10.5,7.5
+ pos: -12.5,-15.5
parent: 2
- - uid: 2787
+ - uid: 3784
components:
- type: Transform
- pos: 2.5,19.5
+ pos: 4.5,14.5
parent: 2
- - uid: 2788
+ - uid: 3785
components:
- type: Transform
- pos: 3.5,-14.5
+ pos: -56.5,29.5
parent: 2
- - uid: 2789
+ - uid: 3786
components:
- type: Transform
- pos: 6.5,8.5
+ pos: -76.5,8.5
parent: 2
- - uid: 2790
+ - uid: 3787
components:
- type: Transform
- pos: 33.5,-51.5
+ pos: -54.5,14.5
parent: 2
- - uid: 2791
+ - uid: 3788
components:
- type: Transform
- pos: -58.5,19.5
+ pos: -53.5,37.5
parent: 2
- - uid: 2792
+ - uid: 3789
components:
- type: Transform
- pos: -71.5,-30.5
+ pos: -22.5,17.5
parent: 2
- - uid: 2793
+ - uid: 3790
components:
- type: Transform
- pos: -51.5,7.5
+ pos: -21.5,17.5
parent: 2
- - uid: 2794
+ - uid: 3791
components:
- type: Transform
- pos: 33.5,-50.5
+ pos: -25.5,9.5
parent: 2
- - uid: 2795
+ - uid: 3792
components:
- type: Transform
- pos: 20.5,-26.5
+ pos: -22.5,9.5
parent: 2
- - uid: 2796
+ - uid: 3793
components:
- type: Transform
- pos: -13.5,-51.5
+ pos: 90.5,8.5
parent: 2
- - uid: 2797
+ - uid: 3794
components:
- type: Transform
- pos: -6.5,-23.5
+ pos: -45.5,28.5
parent: 2
- - uid: 2798
+ - uid: 3795
components:
- type: Transform
- pos: 5.5,-26.5
+ pos: -23.5,9.5
parent: 2
- - uid: 2799
+ - uid: 3796
components:
- type: Transform
- pos: -33.5,-52.5
+ pos: -72.5,11.5
parent: 2
- - uid: 2800
+ - uid: 3797
components:
- type: Transform
- pos: -13.5,-41.5
+ pos: -46.5,8.5
parent: 2
- - uid: 2801
+ - uid: 3798
components:
- type: Transform
- pos: -11.5,-52.5
+ pos: -46.5,17.5
parent: 2
- - uid: 2802
+ - uid: 3799
components:
- type: Transform
- pos: -13.5,-40.5
+ pos: -53.5,36.5
parent: 2
- - uid: 2803
+ - uid: 3800
components:
- type: Transform
- pos: -22.5,-52.5
+ pos: -24.5,9.5
parent: 2
- - uid: 2804
+ - uid: 3801
components:
- type: Transform
- pos: -22.5,-51.5
+ pos: -45.5,29.5
parent: 2
- - uid: 2805
+ - uid: 3802
components:
- type: Transform
- pos: -20.5,-27.5
+ pos: -32.5,50.5
parent: 2
- - uid: 2806
+ - uid: 3803
components:
- type: Transform
- pos: -23.5,-34.5
+ pos: -34.5,49.5
parent: 2
- - uid: 2807
+ - uid: 3804
components:
- type: Transform
- pos: 62.5,26.5
+ pos: -51.5,-25.5
parent: 2
- - uid: 2808
+ - uid: 3805
components:
- type: Transform
- pos: -22.5,-53.5
+ pos: -24.5,-8.5
parent: 2
- - uid: 2809
+ - uid: 3806
components:
- type: Transform
- pos: 7.5,-26.5
+ pos: 5.5,-7.5
parent: 2
- - uid: 2810
+ - uid: 3807
components:
- type: Transform
- pos: 6.5,-26.5
+ pos: -33.5,-7.5
parent: 2
- - uid: 2811
+ - uid: 3808
components:
- type: Transform
- pos: -47.5,-32.5
+ pos: -37.5,39.5
parent: 2
- - uid: 2812
+ - uid: 3809
components:
- type: Transform
- pos: 8.5,56.5
+ pos: 42.5,-71.5
parent: 2
- - uid: 2813
+ - uid: 3810
components:
- type: Transform
- pos: 8.5,57.5
+ pos: 20.5,-55.5
parent: 2
- - uid: 2814
+ - uid: 3811
components:
- type: Transform
- pos: 36.5,1.5
+ pos: 5.5,47.5
parent: 2
- - uid: 2815
+ - uid: 3812
components:
- type: Transform
- pos: 34.5,1.5
+ pos: 62.5,-18.5
parent: 2
- - uid: 2816
+ - uid: 3813
components:
- type: Transform
- pos: 56.5,-14.5
+ pos: 29.5,-3.5
parent: 2
- - uid: 2817
+ - uid: 3814
components:
- type: Transform
- pos: -5.5,51.5
+ pos: 28.5,9.5
parent: 2
- - uid: 2818
+ - uid: 3815
components:
- type: Transform
- pos: 60.5,-29.5
+ pos: -38.5,57.5
parent: 2
- - uid: 2819
+ - uid: 3816
components:
- type: Transform
- pos: 10.5,35.5
+ pos: -10.5,-59.5
parent: 2
- - uid: 2820
+ - uid: 3817
components:
- type: Transform
- pos: 10.5,36.5
+ pos: -12.5,57.5
parent: 2
- - uid: 2821
+ - uid: 3818
components:
- type: Transform
- pos: 72.5,-24.5
+ pos: -42.5,27.5
parent: 2
- - uid: 2822
+ - uid: 3819
components:
- type: Transform
- pos: 21.5,10.5
+ pos: -4.5,68.5
parent: 2
- - uid: 2823
+ - uid: 3820
components:
- type: Transform
- pos: 52.5,-17.5
+ pos: 33.5,-34.5
parent: 2
- - uid: 2824
+ - uid: 3821
components:
- type: Transform
- pos: 52.5,-16.5
+ pos: -22.5,-32.5
parent: 2
- - uid: 2825
+ - uid: 3822
components:
- type: Transform
- pos: 73.5,-24.5
+ pos: -44.5,-74.5
parent: 2
- - uid: 2826
+ - uid: 3823
components:
- type: Transform
- pos: -52.5,-15.5
+ pos: 8.5,23.5
parent: 2
- - uid: 2827
+ - uid: 3824
components:
- type: Transform
- pos: 4.5,33.5
+ pos: -9.5,30.5
parent: 2
- - uid: 2828
+ - uid: 3825
components:
- type: Transform
- pos: 10.5,34.5
+ pos: 6.5,47.5
parent: 2
- - uid: 2829
+ - uid: 3826
components:
- type: Transform
- pos: -9.5,33.5
+ pos: 10.5,64.5
parent: 2
- - uid: 2830
+ - uid: 3827
components:
- type: Transform
- pos: 25.5,34.5
+ pos: -62.5,-36.5
parent: 2
- - uid: 2831
+ - uid: 3828
components:
- type: Transform
- pos: -1.5,-61.5
+ pos: 40.5,-46.5
parent: 2
- - uid: 2832
+ - uid: 3829
components:
- type: Transform
- pos: 48.5,-13.5
+ pos: 35.5,2.5
parent: 2
- - uid: 2833
+ - uid: 3830
components:
- type: Transform
- pos: 25.5,38.5
+ pos: 25.5,5.5
parent: 2
- - uid: 2834
+ - uid: 3831
components:
- type: Transform
- pos: 51.5,-18.5
+ pos: 41.5,1.5
parent: 2
- - uid: 2835
+ - uid: 3832
components:
- type: Transform
- pos: 28.5,36.5
+ pos: 57.5,-46.5
parent: 2
- - uid: 2836
+ - uid: 3833
components:
- type: Transform
- pos: 19.5,37.5
+ pos: 21.5,11.5
parent: 2
- - uid: 2837
+ - uid: 3834
components:
- type: Transform
- pos: -2.5,-80.5
+ pos: -35.5,18.5
parent: 2
- - uid: 2838
+ - uid: 3835
components:
- type: Transform
- pos: 19.5,36.5
+ pos: 12.5,-55.5
parent: 2
- - uid: 2839
+ - uid: 3836
components:
- type: Transform
- pos: -56.5,-13.5
+ pos: -10.5,-55.5
parent: 2
- - uid: 2840
+ - uid: 3837
components:
- type: Transform
- pos: 0.5,33.5
+ pos: -11.5,51.5
parent: 2
- - uid: 2841
+ - uid: 3838
components:
- type: Transform
- pos: 30.5,36.5
+ pos: 44.5,-59.5
parent: 2
- - uid: 2842
+ - uid: 3839
components:
- type: Transform
- pos: -53.5,-13.5
+ pos: -27.5,-24.5
parent: 2
- - uid: 2843
+ - uid: 3840
components:
- type: Transform
- pos: 6.5,65.5
+ pos: 17.5,-10.5
parent: 2
- - uid: 2844
+ - uid: 3841
components:
- type: Transform
- pos: -56.5,-3.5
+ pos: -23.5,-15.5
parent: 2
- - uid: 2845
+ - uid: 3842
components:
- type: Transform
- pos: -22.5,-30.5
+ pos: -13.5,-19.5
parent: 2
- - uid: 2846
+ - uid: 3843
components:
- type: Transform
- pos: -48.5,-8.5
+ pos: 6.5,71.5
parent: 2
- - uid: 2847
+ - uid: 3844
components:
- type: Transform
- pos: -52.5,1.5
+ pos: -33.5,-29.5
parent: 2
- - uid: 2848
+ - uid: 3845
components:
- type: Transform
- pos: -58.5,-3.5
+ pos: -40.5,60.5
parent: 2
- - uid: 2849
+ - uid: 3846
components:
- type: Transform
- pos: 19.5,42.5
+ pos: -18.5,-13.5
parent: 2
- - uid: 2850
+ - uid: 3847
components:
- type: Transform
- pos: 18.5,44.5
+ pos: -27.5,-19.5
parent: 2
- - uid: 2851
+ - uid: 3848
components:
- type: Transform
- pos: 1.5,47.5
+ pos: -40.5,5.5
parent: 2
- - uid: 2852
+ - uid: 3849
components:
- type: Transform
- pos: 19.5,39.5
+ pos: -54.5,-22.5
parent: 2
- - uid: 2853
+ - uid: 3850
components:
- type: Transform
- pos: 2.5,34.5
+ pos: -50.5,39.5
parent: 2
- - uid: 2854
+ - uid: 3851
components:
- type: Transform
- pos: 49.5,-18.5
+ pos: -55.5,-30.5
parent: 2
- - uid: 2855
+ - uid: 3852
components:
- type: Transform
- pos: 6.5,52.5
+ pos: -2.5,-9.5
parent: 2
- - uid: 2856
+ - uid: 3853
components:
- type: Transform
- pos: 6.5,54.5
+ pos: -3.5,-6.5
parent: 2
- - uid: 2857
+ - uid: 3854
components:
- type: Transform
- pos: 10.5,90.5
+ pos: 21.5,50.5
parent: 2
- - uid: 2858
+ - uid: 3855
components:
- type: Transform
- pos: 17.5,87.5
+ pos: 11.5,50.5
parent: 2
- - uid: 2859
+ - uid: 3856
components:
- type: Transform
- pos: 10.5,86.5
+ pos: -18.5,60.5
parent: 2
- - uid: 2860
+ - uid: 3857
components:
- type: Transform
- pos: 50.5,-28.5
+ pos: -36.5,50.5
parent: 2
- - uid: 2861
+ - uid: 3858
components:
- type: Transform
- pos: 27.5,36.5
+ pos: -29.5,97.5
parent: 2
- - uid: 2862
+ - uid: 3859
components:
- type: Transform
- pos: 19.5,35.5
+ pos: -38.5,62.5
parent: 2
- - uid: 2863
+ - uid: 3860
components:
- type: Transform
- pos: 19.5,41.5
+ pos: -19.5,-13.5
parent: 2
- - uid: 2864
+ - uid: 3861
components:
- type: Transform
- pos: -23.5,-65.5
+ pos: -26.5,-19.5
parent: 2
- - uid: 2865
+ - uid: 3862
components:
- type: Transform
- pos: -23.5,-66.5
+ pos: -29.5,-25.5
parent: 2
- - uid: 2866
+ - uid: 3863
components:
- type: Transform
- pos: -23.5,-64.5
+ pos: -37.5,-12.5
parent: 2
- - uid: 2867
+ - uid: 3864
components:
- type: Transform
- pos: -20.5,-65.5
+ pos: -24.5,-20.5
parent: 2
- - uid: 2868
+ - uid: 3865
components:
- type: Transform
- pos: 16.5,41.5
+ pos: -9.5,-8.5
parent: 2
- - uid: 2869
+ - uid: 3866
components:
- type: Transform
- pos: 15.5,23.5
+ pos: -25.5,46.5
parent: 2
- - uid: 2870
+ - uid: 3867
components:
- type: Transform
- pos: 18.5,41.5
+ pos: -45.5,-28.5
parent: 2
- - uid: 2871
+ - uid: 3868
components:
- type: Transform
- pos: -23.5,-67.5
+ pos: -43.5,-11.5
parent: 2
- - uid: 2872
+ - uid: 3869
components:
- type: Transform
- pos: -2.5,38.5
+ pos: -49.5,-19.5
parent: 2
- - uid: 2873
+ - uid: 3870
components:
- type: Transform
- pos: -23.5,-69.5
+ pos: 4.5,-46.5
parent: 2
- - uid: 2874
+ - uid: 3871
components:
- type: Transform
- pos: -21.5,-65.5
+ pos: 7.5,68.5
parent: 2
- - uid: 2875
+ - uid: 3872
components:
- type: Transform
- pos: 17.5,41.5
+ pos: -57.5,-24.5
parent: 2
- - uid: 2876
+ - uid: 3873
components:
- type: Transform
- pos: 14.5,23.5
+ pos: 17.5,7.5
parent: 2
- - uid: 2877
+ - uid: 3874
components:
- type: Transform
- pos: -17.5,-71.5
+ pos: 1.5,-80.5
parent: 2
- - uid: 2878
+ - uid: 3875
components:
- type: Transform
- pos: -34.5,-75.5
+ pos: -35.5,49.5
parent: 2
- - uid: 2879
+ - uid: 3876
components:
- type: Transform
- pos: -16.5,-70.5
+ pos: -51.5,-26.5
parent: 2
- - uid: 2880
+ - uid: 3877
components:
- type: Transform
- pos: 28.5,33.5
+ pos: -33.5,51.5
parent: 2
- - uid: 2881
+ - uid: 3878
components:
- type: Transform
- pos: -3.5,37.5
+ pos: -22.5,-8.5
parent: 2
- - uid: 2882
+ - uid: 3879
components:
- type: Transform
- pos: 6.5,-55.5
+ pos: -34.5,-24.5
parent: 2
- - uid: 2883
+ - uid: 3880
components:
- type: Transform
- pos: 23.5,52.5
+ pos: 5.5,44.5
parent: 2
- - uid: 2884
+ - uid: 3881
components:
- type: Transform
- pos: -50.5,-16.5
+ pos: 6.5,35.5
parent: 2
- - uid: 2885
+ - uid: 3882
components:
- type: Transform
- pos: 57.5,-27.5
+ pos: 58.5,-9.5
parent: 2
- - uid: 2886
+ - uid: 3883
components:
- type: Transform
- pos: 41.5,-48.5
+ pos: 52.5,-14.5
parent: 2
- - uid: 2887
+ - uid: 3884
components:
- type: Transform
- pos: 52.5,-30.5
+ pos: -22.5,11.5
parent: 2
- - uid: 2888
+ - uid: 3885
components:
- type: Transform
- pos: 52.5,-28.5
+ pos: 3.5,-19.5
parent: 2
- - uid: 2889
+ - uid: 3886
components:
- type: Transform
- pos: 37.5,-15.5
+ pos: -31.5,1.5
parent: 2
- - uid: 2890
+ - uid: 3887
components:
- type: Transform
- pos: 34.5,-12.5
+ pos: -45.5,-32.5
parent: 2
- - uid: 2891
+ - uid: 3888
components:
- type: Transform
- pos: 54.5,-26.5
+ pos: -23.5,-20.5
parent: 2
- - uid: 2892
+ - uid: 3889
components:
- type: Transform
- pos: 56.5,-26.5
+ pos: -8.5,-8.5
parent: 2
- - uid: 2893
+ - uid: 3890
components:
- type: Transform
- pos: -38.5,-27.5
+ pos: -27.5,46.5
parent: 2
- - uid: 2894
+ - uid: 3891
components:
- type: Transform
- pos: -6.5,41.5
+ pos: -45.5,-29.5
parent: 2
- - uid: 2895
+ - uid: 3892
components:
- type: Transform
- pos: -8.5,33.5
+ pos: -47.5,-19.5
parent: 2
- - uid: 2896
+ - uid: 3893
components:
- type: Transform
- pos: -24.5,1.5
+ pos: -43.5,-12.5
parent: 2
- - uid: 2897
+ - uid: 3894
components:
- type: Transform
- pos: -66.5,-20.5
+ pos: -54.5,-30.5
parent: 2
- - uid: 2898
+ - uid: 3895
components:
- type: Transform
- pos: -30.5,20.5
+ pos: 5.5,35.5
parent: 2
- - uid: 2899
+ - uid: 3896
components:
- type: Transform
- pos: -26.5,25.5
+ pos: 8.5,38.5
parent: 2
- - uid: 2900
+ - uid: 3897
components:
- type: Transform
- pos: -35.5,26.5
+ pos: 31.5,26.5
parent: 2
- - uid: 2901
+ - uid: 3898
components:
- type: Transform
- pos: -21.5,-79.5
+ pos: -10.5,-8.5
parent: 2
- - uid: 2902
+ - uid: 3899
components:
- type: Transform
- pos: -32.5,61.5
+ pos: 11.5,53.5
parent: 2
- - uid: 2903
+ - uid: 3900
components:
- type: Transform
- pos: 36.5,-30.5
+ pos: -47.5,55.5
parent: 2
- - uid: 2904
+ - uid: 3901
components:
- type: Transform
- pos: 31.5,-70.5
+ pos: 23.5,44.5
parent: 2
- - uid: 2905
+ - uid: 3902
components:
- type: Transform
- pos: 31.5,-67.5
+ pos: 23.5,29.5
parent: 2
- - uid: 2906
+ - uid: 3903
components:
- type: Transform
- pos: 32.5,-59.5
+ pos: 8.5,27.5
parent: 2
- - uid: 2907
+ - uid: 3904
components:
- type: Transform
- pos: -44.5,39.5
+ pos: 17.5,62.5
parent: 2
- - uid: 2908
+ - uid: 3905
components:
- type: Transform
- pos: -30.5,21.5
+ pos: 12.5,28.5
parent: 2
- - uid: 2909
+ - uid: 3906
components:
- type: Transform
- pos: -40.5,-27.5
+ pos: 23.5,41.5
parent: 2
- - uid: 2910
+ - uid: 3907
components:
- type: Transform
- pos: -69.5,-20.5
+ pos: 23.5,46.5
parent: 2
- - uid: 2911
+ - uid: 3908
components:
- type: Transform
- pos: -48.5,-26.5
+ pos: 1.5,-67.5
parent: 2
- - uid: 2912
+ - uid: 3909
components:
- type: Transform
- pos: -28.5,1.5
+ pos: -41.5,-75.5
parent: 2
- - uid: 2913
+ - uid: 3910
components:
- type: Transform
- pos: 35.5,-28.5
+ pos: -42.5,-74.5
parent: 2
- - uid: 2914
+ - uid: 3911
components:
- type: Transform
- pos: 36.5,-31.5
+ pos: -43.5,-74.5
parent: 2
- - uid: 2915
+ - uid: 3912
components:
- type: Transform
- pos: -31.5,57.5
+ pos: -30.5,10.5
parent: 2
- - uid: 2916
+ - uid: 3913
components:
- type: Transform
- pos: -2.5,51.5
+ pos: 36.5,-66.5
parent: 2
- - uid: 2917
+ - uid: 3914
components:
- type: Transform
- pos: -15.5,52.5
+ pos: 1.5,64.5
parent: 2
- - uid: 2918
+ - uid: 3915
components:
- type: Transform
- pos: -29.5,57.5
+ pos: 3.5,62.5
parent: 2
- - uid: 2919
+ - uid: 3916
components:
- type: Transform
- pos: -9.5,-19.5
+ pos: 2.5,63.5
parent: 2
- - uid: 2920
+ - uid: 3917
components:
- type: Transform
- pos: -20.5,41.5
+ pos: -18.5,61.5
parent: 2
- - uid: 2921
+ - uid: 3918
components:
- type: Transform
- pos: -25.5,32.5
+ pos: 2.5,66.5
parent: 2
- - uid: 2922
+ - uid: 3919
components:
- type: Transform
- pos: -28.5,42.5
+ pos: 38.5,50.5
parent: 2
- - uid: 2923
+ - uid: 3920
components:
- type: Transform
- pos: -37.5,12.5
+ pos: -15.5,51.5
parent: 2
- - uid: 2924
+ - uid: 3921
components:
- type: Transform
- pos: -26.5,20.5
+ pos: -34.5,60.5
parent: 2
- - uid: 2925
+ - uid: 3922
components:
- type: Transform
- pos: -37.5,13.5
+ pos: 2.5,-76.5
parent: 2
- - uid: 2926
+ - uid: 3923
components:
- type: Transform
- pos: -29.5,28.5
+ pos: 23.5,27.5
parent: 2
- - uid: 2927
+ - uid: 3924
components:
- type: Transform
- pos: -25.5,52.5
+ pos: 6.5,27.5
parent: 2
- - uid: 2928
+ - uid: 3925
components:
- type: Transform
- pos: -25.5,51.5
+ pos: 21.5,40.5
parent: 2
- - uid: 2929
+ - uid: 3926
components:
- type: Transform
- pos: -73.5,-20.5
+ pos: 25.5,-64.5
parent: 2
- - uid: 2930
+ - uid: 3927
components:
- type: Transform
- pos: 30.5,-34.5
+ pos: -62.5,-35.5
parent: 2
- - uid: 2931
+ - uid: 3928
components:
- type: Transform
- pos: 60.5,-30.5
+ pos: 67.5,-17.5
parent: 2
- - uid: 2932
+ - uid: 3929
components:
- type: Transform
- pos: -33.5,-2.5
+ pos: 56.5,-18.5
parent: 2
- - uid: 2933
+ - uid: 3930
components:
- type: Transform
- pos: 11.5,23.5
+ pos: 36.5,50.5
parent: 2
- - uid: 2934
+ - uid: 3931
components:
- type: Transform
- pos: -12.5,-71.5
+ pos: 12.5,64.5
parent: 2
- - uid: 2935
+ - uid: 3932
components:
- type: Transform
- pos: -8.5,-75.5
+ pos: 10.5,60.5
parent: 2
- - uid: 2936
+ - uid: 3933
components:
- type: Transform
- pos: -22.5,-73.5
+ pos: -56.5,-15.5
parent: 2
- - uid: 2937
+ - uid: 3934
components:
- type: Transform
- pos: -8.5,-76.5
+ pos: -20.5,49.5
parent: 2
- - uid: 2938
+ - uid: 3935
components:
- type: Transform
- pos: 32.5,-61.5
+ pos: 10.5,23.5
parent: 2
- - uid: 2939
+ - uid: 3936
components:
- type: Transform
- pos: 26.5,-67.5
+ pos: 4.5,-55.5
parent: 2
- - uid: 2940
+ - uid: 3937
components:
- type: Transform
- pos: -41.5,-73.5
+ pos: -5.5,-55.5
parent: 2
- - uid: 2941
+ - uid: 3938
components:
- type: Transform
- pos: -16.5,49.5
+ pos: 10.5,42.5
parent: 2
- - uid: 2942
+ - uid: 3939
components:
- type: Transform
- pos: 4.5,-44.5
+ pos: 10.5,-55.5
parent: 2
- - uid: 2943
+ - uid: 3940
components:
- type: Transform
- pos: -23.5,1.5
+ pos: 17.5,-3.5
parent: 2
- - uid: 2944
+ - uid: 3941
components:
- type: Transform
- pos: -8.5,-73.5
+ pos: -7.5,-55.5
parent: 2
- - uid: 2945
+ - uid: 3942
components:
- type: Transform
- pos: 25.5,-65.5
+ pos: -41.5,-76.5
parent: 2
- - uid: 2946
+ - uid: 3943
components:
- type: Transform
- pos: -64.5,-20.5
+ pos: -70.5,-34.5
parent: 2
- - uid: 2947
+ - uid: 3944
components:
- type: Transform
- pos: -72.5,-20.5
+ pos: -68.5,-34.5
parent: 2
- - uid: 2948
+ - uid: 3945
components:
- type: Transform
- pos: -41.5,-26.5
+ pos: -66.5,-34.5
parent: 2
- - uid: 2949
+ - uid: 3946
components:
- type: Transform
- pos: 13.5,23.5
+ pos: -62.5,31.5
parent: 2
- - uid: 2950
+ - uid: 3947
components:
- type: Transform
- pos: -2.5,-76.5
+ pos: -54.5,38.5
parent: 2
- - uid: 2951
+ - uid: 3948
components:
- type: Transform
- pos: -18.5,-71.5
+ pos: -58.5,-9.5
parent: 2
- - uid: 2952
+ - uid: 3949
components:
- type: Transform
- pos: -32.5,-76.5
+ pos: -55.5,10.5
parent: 2
- - uid: 2953
+ - uid: 3950
components:
- type: Transform
- pos: -25.5,-74.5
+ pos: -56.5,10.5
parent: 2
- - uid: 2954
+ - uid: 3951
components:
- type: Transform
- pos: 0.5,-69.5
+ pos: 39.5,-69.5
parent: 2
- - uid: 2955
+ - uid: 3952
components:
- type: Transform
- pos: -8.5,-67.5
+ pos: -76.5,9.5
parent: 2
- - uid: 2956
+ - uid: 3953
components:
- type: Transform
- pos: -30.5,-26.5
+ pos: -57.5,18.5
parent: 2
- - uid: 2957
+ - uid: 3954
components:
- type: Transform
- pos: -28.5,-19.5
+ pos: -51.5,10.5
parent: 2
- - uid: 2958
+ - uid: 3955
components:
- type: Transform
- pos: 68.5,-15.5
+ pos: -61.5,7.5
parent: 2
- - uid: 2959
+ - uid: 3956
components:
- type: Transform
- pos: -33.5,10.5
+ pos: -52.5,10.5
parent: 2
- - uid: 2960
+ - uid: 3957
components:
- type: Transform
- pos: -34.5,12.5
+ pos: -71.5,6.5
parent: 2
- - uid: 2961
+ - uid: 3958
components:
- type: Transform
- pos: -23.5,-0.5
+ pos: -71.5,5.5
parent: 2
- - uid: 2962
+ - uid: 3959
components:
- type: Transform
- pos: -6.5,45.5
+ pos: -63.5,24.5
parent: 2
- - uid: 2963
+ - uid: 3960
components:
- type: Transform
- pos: -63.5,25.5
+ pos: -59.5,17.5
parent: 2
- - uid: 2964
+ - uid: 3961
components:
- type: Transform
- pos: -56.5,50.5
+ pos: -57.5,17.5
parent: 2
- - uid: 2965
+ - uid: 3962
components:
- type: Transform
- pos: -115.5,18.5
+ pos: -49.5,37.5
parent: 2
- - uid: 2966
+ - uid: 3963
components:
- type: Transform
- pos: 27.5,-35.5
+ pos: -35.5,13.5
parent: 2
- - uid: 2967
+ - uid: 3964
components:
- type: Transform
- pos: -36.5,-52.5
+ pos: -53.5,41.5
parent: 2
- - uid: 2968
+ - uid: 3965
components:
- type: Transform
- pos: 6.5,-24.5
+ pos: -52.5,42.5
parent: 2
- - uid: 2969
+ - uid: 3966
components:
- type: Transform
- pos: 7.5,-34.5
+ pos: -62.5,46.5
parent: 2
- - uid: 2970
+ - uid: 3967
components:
- type: Transform
- pos: 6.5,14.5
+ pos: -65.5,47.5
parent: 2
- - uid: 2971
+ - uid: 3968
components:
- type: Transform
- pos: -9.5,-14.5
+ pos: -65.5,46.5
parent: 2
- - uid: 2972
+ - uid: 3969
components:
- type: Transform
- pos: 11.5,-16.5
+ pos: -65.5,45.5
parent: 2
- - uid: 2973
+ - uid: 3970
components:
- type: Transform
- pos: 51.5,-45.5
+ pos: -63.5,31.5
parent: 2
- - uid: 2974
+ - uid: 3971
components:
- type: Transform
- pos: 70.5,-15.5
+ pos: -61.5,31.5
parent: 2
- - uid: 2975
+ - uid: 3972
components:
- type: Transform
- pos: 6.5,64.5
+ pos: -42.5,-30.5
parent: 2
- - uid: 2976
+ - uid: 3973
components:
- type: Transform
- pos: 6.5,63.5
+ pos: -4.5,-7.5
parent: 2
- - uid: 2977
+ - uid: 3974
components:
- type: Transform
- pos: -59.5,-16.5
+ pos: -38.5,-24.5
parent: 2
- - uid: 2978
+ - uid: 3975
components:
- type: Transform
- pos: 10.5,88.5
+ pos: -50.5,-32.5
parent: 2
- - uid: 2979
+ - uid: 3976
components:
- type: Transform
- pos: 20.5,44.5
+ pos: -32.5,-1.5
parent: 2
- - uid: 2980
+ - uid: 3977
components:
- type: Transform
- pos: -11.5,73.5
+ pos: -10.5,27.5
parent: 2
- - uid: 2981
+ - uid: 3978
components:
- type: Transform
- pos: 0.5,35.5
+ pos: -37.5,-27.5
parent: 2
- - uid: 2982
+ - uid: 3979
components:
- type: Transform
- pos: -31.5,35.5
+ pos: -65.5,48.5
parent: 2
- - uid: 2983
+ - uid: 3980
components:
- type: Transform
- pos: 12.5,87.5
+ pos: -47.5,37.5
parent: 2
- - uid: 2984
+ - uid: 3981
components:
- type: Transform
- pos: -67.5,-20.5
+ pos: -46.5,41.5
parent: 2
- - uid: 2985
+ - uid: 3982
components:
- type: Transform
- pos: -30.5,19.5
+ pos: -32.5,-10.5
parent: 2
- - uid: 2986
+ - uid: 3983
components:
- type: Transform
- pos: -41.5,-27.5
+ pos: -32.5,-11.5
parent: 2
- - uid: 2987
+ - uid: 3984
components:
- type: Transform
- pos: -27.5,1.5
+ pos: -36.5,23.5
parent: 2
- - uid: 2988
+ - uid: 3985
components:
- type: Transform
- pos: -30.5,38.5
+ pos: 6.5,80.5
parent: 2
- - uid: 2989
+ - uid: 3986
components:
- type: Transform
- pos: 31.5,-59.5
+ pos: -24.5,61.5
parent: 2
- - uid: 2990
+ - uid: 3987
components:
- type: Transform
- pos: -35.5,-74.5
+ pos: -23.5,5.5
parent: 2
- - uid: 2991
+ - uid: 3988
components:
- type: Transform
- pos: 10.5,89.5
+ pos: 15.5,-43.5
parent: 2
- - uid: 2992
+ - uid: 3989
components:
- type: Transform
- pos: 73.5,-18.5
+ pos: -33.5,-11.5
parent: 2
- - uid: 2993
+ - uid: 3990
components:
- type: Transform
- pos: 41.5,-52.5
+ pos: -22.5,5.5
parent: 2
- - uid: 2994
+ - uid: 3991
components:
- type: Transform
- pos: 45.5,1.5
+ pos: -25.5,64.5
parent: 2
- - uid: 2995
+ - uid: 3992
components:
- type: Transform
- pos: 40.5,-41.5
+ pos: 6.5,81.5
parent: 2
- - uid: 2996
+ - uid: 3993
components:
- type: Transform
- pos: -12.5,-61.5
+ pos: -35.5,23.5
parent: 2
- - uid: 2997
+ - uid: 3994
components:
- type: Transform
- pos: -24.5,25.5
+ pos: -5.5,68.5
parent: 2
- - uid: 2998
+ - uid: 3995
components:
- type: Transform
- pos: -30.5,50.5
+ pos: -65.5,-34.5
parent: 2
- - uid: 2999
+ - uid: 3996
components:
- type: Transform
- pos: -36.5,-15.5
+ pos: -32.5,-8.5
parent: 2
- - uid: 3000
+ - uid: 3997
components:
- type: Transform
- pos: -11.5,41.5
+ pos: 7.5,-7.5
parent: 2
- - uid: 3001
+ - uid: 3998
components:
- type: Transform
- pos: -37.5,-25.5
+ pos: -24.5,63.5
parent: 2
- - uid: 3002
+ - uid: 3999
components:
- type: Transform
- pos: -41.5,45.5
+ pos: -29.5,94.5
parent: 2
- - uid: 3003
+ - uid: 4000
components:
- type: Transform
- pos: -4.5,66.5
+ pos: 6.5,78.5
parent: 2
- - uid: 3004
+ - uid: 4001
components:
- type: Transform
- pos: -33.5,-24.5
+ pos: -38.5,23.5
parent: 2
- - uid: 3005
+ - uid: 4002
components:
- type: Transform
- pos: 75.5,28.5
+ pos: -10.5,68.5
parent: 2
- - uid: 3006
+ - uid: 4003
components:
- type: Transform
- pos: -54.5,-23.5
+ pos: -39.5,23.5
parent: 2
- - uid: 3007
+ - uid: 4004
components:
- type: Transform
- pos: -63.5,-30.5
+ pos: 11.5,-19.5
parent: 2
- - uid: 3008
+ - uid: 4005
components:
- type: Transform
- pos: -15.5,-61.5
+ pos: -9.5,-76.5
parent: 2
- - uid: 3009
+ - uid: 4006
components:
- type: Transform
- pos: -11.5,40.5
+ pos: 29.5,-34.5
parent: 2
- - uid: 3010
+ - uid: 4007
components:
- type: Transform
- pos: -11.5,43.5
+ pos: 41.5,-61.5
parent: 2
- - uid: 3011
+ - uid: 4008
components:
- type: Transform
- pos: -28.5,54.5
+ pos: 40.5,-61.5
parent: 2
- - uid: 3012
+ - uid: 4009
components:
- type: Transform
- pos: -56.5,41.5
+ pos: -64.5,-34.5
parent: 2
- - uid: 3013
+ - uid: 4010
components:
- type: Transform
- pos: -28.5,23.5
+ pos: 10.5,28.5
parent: 2
- - uid: 3014
+ - uid: 4011
components:
- type: Transform
- pos: 6.5,39.5
+ pos: -18.5,-73.5
parent: 2
- - uid: 3015
+ - uid: 4012
components:
- type: Transform
- pos: 56.5,-19.5
+ pos: -2.5,23.5
parent: 2
- - uid: 3016
+ - uid: 4013
components:
- type: Transform
- pos: 41.5,-20.5
+ pos: -3.5,23.5
parent: 2
- - uid: 3017
+ - uid: 4014
components:
- type: Transform
- pos: 24.5,-14.5
+ pos: 38.5,-61.5
parent: 2
- - uid: 3018
+ - uid: 4015
components:
- type: Transform
- pos: 23.5,-14.5
+ pos: 36.5,-32.5
parent: 2
- - uid: 3019
+ - uid: 4016
components:
- type: Transform
- pos: 80.5,-21.5
+ pos: -62.5,-33.5
parent: 2
- - uid: 3020
+ - uid: 4017
components:
- type: Transform
- pos: -54.5,0.5
+ pos: -25.5,59.5
parent: 2
- - uid: 3021
+ - uid: 4018
components:
- type: Transform
- pos: -18.5,11.5
+ pos: 6.5,82.5
parent: 2
- - uid: 3022
+ - uid: 4019
components:
- type: Transform
- pos: 7.5,27.5
+ pos: -33.5,-77.5
parent: 2
- - uid: 3023
+ - uid: 4020
components:
- type: Transform
- pos: 20.5,18.5
+ pos: -40.5,39.5
parent: 2
- - uid: 3024
+ - uid: 4021
components:
- type: Transform
- pos: 20.5,27.5
+ pos: -17.5,-75.5
parent: 2
- - uid: 3025
+ - uid: 4022
components:
- type: Transform
- pos: -15.5,53.5
+ pos: 0.5,38.5
parent: 2
- - uid: 3026
+ - uid: 4023
components:
- type: Transform
- pos: 28.5,56.5
+ pos: -30.5,18.5
parent: 2
- - uid: 3027
+ - uid: 4024
components:
- type: Transform
- pos: 19.5,51.5
+ pos: 0.5,36.5
parent: 2
- - uid: 3028
+ - uid: 4025
components:
- type: Transform
- pos: -21.5,68.5
+ pos: -67.5,57.5
parent: 2
- - uid: 3029
+ - uid: 4026
components:
- type: Transform
- pos: -29.5,51.5
+ pos: -23.5,14.5
parent: 2
- - uid: 3030
+ - uid: 4027
components:
- type: Transform
- pos: 10.5,58.5
+ pos: -68.5,57.5
parent: 2
- - uid: 3031
+ - uid: 4028
components:
- type: Transform
- pos: -58.5,-16.5
+ pos: -57.5,24.5
parent: 2
- - uid: 3032
+ - uid: 4029
components:
- type: Transform
- pos: -0.5,-66.5
+ pos: -32.5,28.5
parent: 2
- - uid: 3033
+ - uid: 4030
components:
- type: Transform
- pos: 37.5,-26.5
+ pos: -47.5,-7.5
parent: 2
- - uid: 3034
+ - uid: 4031
components:
- type: Transform
- pos: 36.5,-34.5
+ pos: -31.5,28.5
parent: 2
- - uid: 3035
+ - uid: 4032
components:
- type: Transform
- pos: -17.5,-80.5
+ pos: -61.5,33.5
parent: 2
- - uid: 3036
+ - uid: 4033
components:
- type: Transform
- pos: -32.5,-77.5
+ pos: -58.5,24.5
parent: 2
- - uid: 3037
+ - uid: 4034
components:
- type: Transform
- pos: 0.5,-68.5
+ pos: -46.5,-7.5
parent: 2
- - uid: 3038
+ - uid: 4035
components:
- type: Transform
- pos: -25.5,-75.5
+ pos: -63.5,-34.5
parent: 2
- - uid: 3039
+ - uid: 4036
components:
- type: Transform
- pos: -35.5,31.5
+ pos: 11.5,-7.5
parent: 2
- - uid: 3040
+ - uid: 4037
components:
- type: Transform
- pos: -29.5,-26.5
+ pos: -52.5,29.5
parent: 2
- - uid: 3041
+ - uid: 4038
components:
- type: Transform
- pos: -38.5,0.5
+ pos: -15.5,-37.5
parent: 2
- - uid: 3042
+ - uid: 4039
components:
- type: Transform
- pos: -0.5,-65.5
+ pos: -37.5,-30.5
parent: 2
- - uid: 3043
+ - uid: 4040
components:
- type: Transform
- pos: 17.5,24.5
+ pos: -26.5,59.5
parent: 2
- - uid: 3044
+ - uid: 4041
components:
- type: Transform
- pos: 26.5,28.5
+ pos: -23.5,-1.5
parent: 2
- - uid: 3045
+ - uid: 4042
components:
- type: Transform
- pos: -25.5,36.5
+ pos: -25.5,49.5
parent: 2
- - uid: 3046
+ - uid: 4043
components:
- type: Transform
- pos: -39.5,12.5
+ pos: -41.5,18.5
parent: 2
- - uid: 3047
+ - uid: 4044
components:
- type: Transform
- pos: -24.5,21.5
+ pos: 6.5,74.5
parent: 2
- - uid: 3048
+ - uid: 4045
components:
- type: Transform
- pos: -43.5,40.5
+ pos: -36.5,-30.5
parent: 2
- - uid: 3049
+ - uid: 4046
components:
- type: Transform
- pos: -43.5,41.5
+ pos: -26.5,60.5
parent: 2
- - uid: 3050
+ - uid: 4047
components:
- type: Transform
- pos: -25.5,35.5
+ pos: -41.5,19.5
parent: 2
- - uid: 3051
+ - uid: 4048
components:
- type: Transform
- pos: -6.5,37.5
+ pos: 3.5,-11.5
parent: 2
- - uid: 3052
+ - uid: 4049
components:
- type: Transform
- pos: -37.5,-24.5
+ pos: -37.5,-7.5
parent: 2
- - uid: 3053
+ - uid: 4050
components:
- type: Transform
- pos: -5.5,27.5
+ pos: -37.5,-6.5
parent: 2
- - uid: 3054
+ - uid: 4051
components:
- type: Transform
- pos: -41.5,14.5
+ pos: -55.5,19.5
parent: 2
- - uid: 3055
+ - uid: 4052
components:
- type: Transform
- pos: -34.5,20.5
+ pos: -53.5,21.5
parent: 2
- - uid: 3056
+ - uid: 4053
components:
- type: Transform
- pos: -45.5,33.5
+ pos: -37.5,-5.5
parent: 2
- - uid: 3057
+ - uid: 4054
components:
- type: Transform
- pos: -45.5,32.5
+ pos: -28.5,-31.5
parent: 2
- - uid: 3058
+ - uid: 4055
components:
- type: Transform
- pos: -31.5,5.5
+ pos: -44.5,22.5
parent: 2
- - uid: 3059
+ - uid: 4056
components:
- type: Transform
- pos: 8.5,-13.5
+ pos: -7.5,-19.5
parent: 2
- - uid: 3060
+ - uid: 4057
components:
- type: Transform
- pos: -20.5,-34.5
+ pos: -6.5,-60.5
parent: 2
- - uid: 3061
+ - uid: 4058
components:
- type: Transform
- pos: 54.5,-4.5
+ pos: -5.5,-59.5
parent: 2
- - uid: 3062
+ - uid: 4059
components:
- type: Transform
- pos: 17.5,-25.5
+ pos: -4.5,-59.5
parent: 2
- - uid: 3063
+ - uid: 4060
components:
- type: Transform
- pos: -4.5,-11.5
+ pos: -41.5,48.5
parent: 2
- - uid: 3064
+ - uid: 4061
components:
- type: Transform
- pos: -17.5,-34.5
+ pos: 28.5,-64.5
parent: 2
- - uid: 3065
+ - uid: 4062
components:
- type: Transform
- pos: 10.5,-13.5
+ pos: -36.5,-24.5
parent: 2
- - uid: 3066
+ - uid: 4063
components:
- type: Transform
- pos: 17.5,-43.5
+ pos: -5.5,-19.5
parent: 2
- - uid: 3067
+ - uid: 4064
components:
- type: Transform
- pos: 25.5,-37.5
+ pos: 9.5,-19.5
parent: 2
- - uid: 3068
+ - uid: 4065
components:
- type: Transform
- pos: 20.5,-25.5
+ pos: 7.5,-19.5
parent: 2
- - uid: 3069
+ - uid: 4066
components:
- type: Transform
- pos: 17.5,-44.5
+ pos: -10.5,28.5
parent: 2
- - uid: 3070
+ - uid: 4067
components:
- type: Transform
- pos: 25.5,-34.5
+ pos: -33.5,-18.5
parent: 2
- - uid: 3071
+ - uid: 4068
components:
- type: Transform
- pos: -34.5,-42.5
+ pos: -2.5,45.5
parent: 2
- - uid: 3072
+ - uid: 4069
components:
- type: Transform
- pos: -9.5,-23.5
+ pos: -37.5,-8.5
parent: 2
- - uid: 3073
+ - uid: 4070
components:
- type: Transform
- pos: -25.5,-34.5
+ pos: 32.5,-38.5
parent: 2
- - uid: 3074
+ - uid: 4071
components:
- type: Transform
- pos: -50.5,38.5
+ pos: -64.5,27.5
parent: 2
- - uid: 3075
+ - uid: 4072
components:
- type: Transform
- pos: 12.5,-24.5
+ pos: 1.5,-65.5
parent: 2
- - uid: 3076
+ - uid: 4073
components:
- type: Transform
- pos: 24.5,-34.5
+ pos: 37.5,43.5
parent: 2
- - uid: 3077
+ - uid: 4074
components:
- type: Transform
- pos: 14.5,-38.5
+ pos: 7.5,17.5
parent: 2
- - uid: 3078
+ - uid: 4075
components:
- type: Transform
- pos: 25.5,-38.5
+ pos: -76.5,-26.5
parent: 2
- - uid: 3079
+ - uid: 4076
components:
- type: Transform
- pos: -11.5,-11.5
+ pos: -65.5,14.5
parent: 2
- - uid: 3080
+ - uid: 4077
components:
- type: Transform
- pos: 13.5,3.5
+ pos: -60.5,-28.5
parent: 2
- - uid: 3081
+ - uid: 4078
components:
- type: Transform
- pos: 24.5,-45.5
+ pos: 23.5,-50.5
parent: 2
- - uid: 3082
+ - uid: 4079
components:
- type: Transform
- pos: 19.5,-28.5
+ pos: -13.5,-39.5
parent: 2
- - uid: 3083
+ - uid: 4080
components:
- type: Transform
- pos: 17.5,-41.5
+ pos: -13.5,-38.5
parent: 2
- - uid: 3084
+ - uid: 4081
components:
- type: Transform
- pos: -28.5,-34.5
+ pos: -17.5,-46.5
parent: 2
- - uid: 3085
+ - uid: 4082
components:
- type: Transform
- pos: -18.5,8.5
+ pos: -11.5,97.5
parent: 2
- - uid: 3086
+ - uid: 4083
components:
- type: Transform
- pos: -18.5,9.5
+ pos: -26.5,63.5
parent: 2
- - uid: 3087
+ - uid: 4084
components:
- type: Transform
- pos: -0.5,-62.5
+ pos: -29.5,-32.5
parent: 2
- - uid: 3088
+ - uid: 4085
components:
- type: Transform
- pos: -20.5,-61.5
+ pos: -37.5,-2.5
parent: 2
- - uid: 3089
+ - uid: 4086
components:
- type: Transform
- pos: 29.5,-64.5
+ pos: 6.5,75.5
parent: 2
- - uid: 3090
+ - uid: 4087
components:
- type: Transform
- pos: -41.5,46.5
+ pos: -41.5,20.5
parent: 2
- - uid: 3091
+ - uid: 4088
components:
- type: Transform
- pos: -58.5,-1.5
+ pos: -43.5,37.5
parent: 2
- - uid: 3092
+ - uid: 4089
components:
- type: Transform
- pos: -18.5,10.5
+ pos: -26.5,-2.5
parent: 2
- - uid: 3093
+ - uid: 4090
components:
- type: Transform
- pos: 4.5,68.5
+ pos: -41.5,-1.5
parent: 2
- - uid: 3094
+ - uid: 4091
components:
- type: Transform
- pos: 1.5,68.5
+ pos: -36.5,42.5
parent: 2
- - uid: 3095
+ - uid: 4092
components:
- type: Transform
- pos: -18.5,5.5
+ pos: -15.5,68.5
parent: 2
- - uid: 3096
+ - uid: 4093
components:
- type: Transform
- pos: -47.5,-47.5
+ pos: 35.5,-58.5
parent: 2
- - uid: 3097
+ - uid: 4094
components:
- type: Transform
- pos: -5.5,-62.5
+ pos: 29.5,-67.5
parent: 2
- - uid: 3098
+ - uid: 4095
components:
- type: Transform
- pos: -29.5,96.5
+ pos: -14.5,68.5
parent: 2
- - uid: 3099
+ - uid: 4096
components:
- type: Transform
- pos: 6.5,89.5
+ pos: -18.5,-75.5
parent: 2
- - uid: 3100
+ - uid: 4097
components:
- type: Transform
- pos: 10.5,82.5
+ pos: -37.5,42.5
parent: 2
- - uid: 3101
+ - uid: 4098
components:
- type: Transform
- pos: 67.5,-16.5
+ pos: -3.5,-19.5
parent: 2
- - uid: 3102
+ - uid: 4099
components:
- type: Transform
- pos: -47.5,-2.5
+ pos: -30.5,-12.5
parent: 2
- - uid: 3103
+ - uid: 4100
components:
- type: Transform
- pos: -48.5,-7.5
+ pos: -31.5,-18.5
parent: 2
- - uid: 3104
+ - uid: 4101
components:
- type: Transform
- pos: 80.5,-20.5
+ pos: -30.5,11.5
parent: 2
- - uid: 3105
+ - uid: 4102
components:
- type: Transform
- pos: 73.5,-15.5
+ pos: -22.5,14.5
parent: 2
- - uid: 3106
+ - uid: 4103
components:
- type: Transform
- pos: 56.5,-20.5
+ pos: -1.5,-17.5
parent: 2
- - uid: 3107
+ - uid: 4104
components:
- type: Transform
- pos: 42.5,-20.5
+ pos: -55.5,41.5
parent: 2
- - uid: 3108
+ - uid: 4105
components:
- type: Transform
- pos: 25.5,-14.5
+ pos: -57.5,4.5
parent: 2
- - uid: 3109
+ - uid: 4106
components:
- type: Transform
- pos: 22.5,18.5
+ pos: 31.5,30.5
parent: 2
- - uid: 3110
+ - uid: 4107
components:
- type: Transform
- pos: 9.5,27.5
+ pos: 30.5,-29.5
parent: 2
- - uid: 3111
+ - uid: 4108
components:
- type: Transform
- pos: 20.5,26.5
+ pos: -0.5,-31.5
parent: 2
- - uid: 3112
+ - uid: 4109
components:
- type: Transform
- pos: 2.5,27.5
+ pos: -13.5,15.5
parent: 2
- - uid: 3113
+ - uid: 4110
components:
- type: Transform
- pos: 21.5,24.5
+ pos: 22.5,-39.5
parent: 2
- - uid: 3114
+ - uid: 4111
components:
- type: Transform
- pos: 19.5,49.5
+ pos: 37.5,50.5
parent: 2
- - uid: 3115
+ - uid: 4112
components:
- type: Transform
- pos: 0.5,63.5
+ pos: -64.5,59.5
parent: 2
- - uid: 3116
+ - uid: 4113
components:
- type: Transform
- pos: -9.5,-61.5
+ pos: -37.5,-1.5
parent: 2
- - uid: 3117
+ - uid: 4114
components:
- type: Transform
- pos: -14.5,-61.5
+ pos: -29.5,-28.5
parent: 2
- - uid: 3118
+ - uid: 4115
components:
- type: Transform
- pos: 38.5,-69.5
+ pos: -26.5,64.5
parent: 2
- - uid: 3119
+ - uid: 4116
components:
- type: Transform
- pos: 44.5,-62.5
+ pos: -25.5,63.5
parent: 2
- - uid: 3120
+ - uid: 4117
components:
- type: Transform
- pos: 75.5,27.5
+ pos: 6.5,76.5
parent: 2
- - uid: 3121
+ - uid: 4118
components:
- type: Transform
- pos: -43.5,39.5
+ pos: 6.5,73.5
parent: 2
- - uid: 3122
+ - uid: 4119
components:
- type: Transform
- pos: 13.5,-44.5
+ pos: 12.5,-7.5
parent: 2
- - uid: 3123
+ - uid: 4120
components:
- type: Transform
- pos: -27.5,54.5
+ pos: -41.5,-2.5
parent: 2
- - uid: 3124
+ - uid: 4121
components:
- type: Transform
- pos: -11.5,42.5
+ pos: -66.5,57.5
parent: 2
- - uid: 3125
+ - uid: 4122
components:
- type: Transform
- pos: 27.5,33.5
+ pos: -53.5,5.5
parent: 2
- - uid: 3126
+ - uid: 4123
components:
- type: Transform
- pos: 16.5,23.5
+ pos: 6.5,-19.5
parent: 2
- - uid: 3127
+ - uid: 4124
components:
- type: Transform
- pos: -4.5,59.5
+ pos: -15.5,-79.5
parent: 2
- - uid: 3128
+ - uid: 4125
components:
- type: Transform
- pos: -42.5,31.5
+ pos: -1.5,23.5
parent: 2
- - uid: 3129
+ - uid: 4126
components:
- type: Transform
- pos: 36.5,-28.5
+ pos: 4.5,-19.5
parent: 2
- - uid: 3130
+ - uid: 4127
components:
- type: Transform
- pos: -32.5,57.5
+ pos: -52.5,-32.5
parent: 2
- - uid: 3131
+ - uid: 4128
components:
- type: Transform
- pos: -41.5,-24.5
+ pos: -28.5,-2.5
parent: 2
- - uid: 3132
-=======
- - uid: 1980
+ - uid: 4129
components:
- type: Transform
- pos: 16.5,78.5
+ pos: -62.5,45.5
parent: 2
- - uid: 1981
+ - uid: 4130
components:
- type: Transform
- pos: 10.5,90.5
+ pos: -61.5,29.5
parent: 2
- - uid: 1982
+ - uid: 4131
components:
- type: Transform
- pos: 10.5,89.5
+ pos: -54.5,-22.5
parent: 2
- - uid: 1983
+ - uid: 4132
components:
- type: Transform
- pos: 6.5,71.5
+ pos: -60.5,29.5
parent: 2
- - uid: 1984
+ - uid: 4133
components:
- type: Transform
- pos: 6.5,72.5
+ pos: -3.5,-74.5
parent: 2
- - uid: 1985
+ - uid: 4134
components:
- type: Transform
- pos: 6.5,73.5
+ pos: 0.5,-70.5
parent: 2
- - uid: 1986
+ - uid: 4135
components:
- type: Transform
- pos: 6.5,74.5
+ pos: -15.5,-69.5
parent: 2
- - uid: 1987
+ - uid: 4136
components:
- type: Transform
- pos: 6.5,75.5
+ pos: -40.5,37.5
parent: 2
- - uid: 1988
+ - uid: 4137
components:
- type: Transform
- pos: 6.5,76.5
+ pos: 33.5,-60.5
parent: 2
- - uid: 1989
+ - uid: 4138
components:
- type: Transform
- pos: 6.5,77.5
+ pos: 11.5,78.5
parent: 2
- - uid: 1990
+ - uid: 4139
components:
- type: Transform
- pos: 6.5,78.5
+ pos: 17.5,20.5
parent: 2
- - uid: 1991
+ - uid: 4140
components:
- type: Transform
- pos: 6.5,79.5
+ pos: 26.5,31.5
parent: 2
- - uid: 1992
+ - uid: 4141
components:
- type: Transform
- pos: 6.5,80.5
+ pos: -5.5,-80.5
parent: 2
- - uid: 1993
+ - uid: 4142
components:
- type: Transform
- pos: 6.5,81.5
+ pos: -14.5,-78.5
parent: 2
- - uid: 1994
+ - uid: 4143
components:
- type: Transform
- pos: 6.5,82.5
+ pos: -9.5,-70.5
parent: 2
- - uid: 1995
+ - uid: 4144
components:
- type: Transform
- pos: 6.5,83.5
+ pos: -23.5,-6.5
parent: 2
- - uid: 1996
+ - uid: 4145
components:
- type: Transform
- pos: 6.5,84.5
+ pos: -57.5,-30.5
parent: 2
- - uid: 1997
+ - uid: 4146
components:
- type: Transform
- pos: 6.5,85.5
+ pos: -41.5,-28.5
parent: 2
- - uid: 1998
+ - uid: 4147
components:
- type: Transform
- pos: 6.5,86.5
+ pos: -4.5,-8.5
parent: 2
- - uid: 1999
+ - uid: 4148
components:
- type: Transform
- pos: 6.5,87.5
+ pos: 11.5,-11.5
parent: 2
- - uid: 2000
+ - uid: 4149
components:
- type: Transform
- pos: 6.5,88.5
+ pos: -77.5,14.5
parent: 2
- - uid: 2001
+ - uid: 4150
components:
- type: Transform
- pos: 6.5,89.5
+ pos: -75.5,15.5
parent: 2
- - uid: 2002
+ - uid: 4151
components:
- type: Transform
- pos: 7.5,81.5
+ pos: -56.5,14.5
parent: 2
- - uid: 2003
+ - uid: 4152
components:
- type: Transform
- pos: 9.5,81.5
+ pos: -76.5,15.5
parent: 2
- - uid: 2004
+ - uid: 4153
components:
- type: Transform
- pos: 8.5,81.5
+ pos: -57.5,10.5
parent: 2
- - uid: 2005
+ - uid: 4154
components:
- type: Transform
- pos: 20.5,68.5
+ pos: -72.5,15.5
parent: 2
- - uid: 2006
+ - uid: 4155
components:
- type: Transform
- pos: 20.5,67.5
+ pos: -73.5,5.5
parent: 2
- - uid: 2007
+ - uid: 4156
components:
- type: Transform
- pos: 20.5,66.5
+ pos: -55.5,33.5
parent: 2
- - uid: 2008
+ - uid: 4157
components:
- type: Transform
- pos: 19.5,66.5
+ pos: -55.5,-11.5
parent: 2
- - uid: 2009
+ - uid: 4158
components:
- type: Transform
- pos: 18.5,66.5
+ pos: -74.5,5.5
parent: 2
- - uid: 2010
+ - uid: 4159
components:
- type: Transform
- pos: 17.5,66.5
+ pos: -70.5,15.5
parent: 2
- - uid: 2011
+ - uid: 4160
components:
- type: Transform
- pos: 21.5,66.5
+ pos: -71.5,15.5
parent: 2
- - uid: 2012
+ - uid: 4161
components:
- type: Transform
- pos: 22.5,66.5
+ pos: -0.5,-46.5
parent: 2
- - uid: 2013
+ - uid: 4162
components:
- type: Transform
- pos: 23.5,66.5
+ pos: -71.5,-34.5
parent: 2
- - uid: 2014
+ - uid: 4163
components:
- type: Transform
- pos: 20.5,69.5
+ pos: -14.5,-32.5
parent: 2
- - uid: 2015
+ - uid: 4164
components:
- type: Transform
- pos: 20.5,70.5
+ pos: -9.5,-11.5
parent: 2
- - uid: 2016
+ - uid: 4165
components:
- type: Transform
- pos: 20.5,71.5
+ pos: -0.5,-45.5
parent: 2
- - uid: 2017
+ - uid: 4166
components:
- type: Transform
- pos: 19.5,70.5
+ pos: -14.5,-31.5
parent: 2
- - uid: 2018
+ - uid: 4167
components:
- type: Transform
- pos: 18.5,70.5
+ pos: -13.5,-46.5
parent: 2
- - uid: 2019
+ - uid: 4168
components:
- type: Transform
- pos: 17.5,70.5
+ pos: -4.5,16.5
parent: 2
- - uid: 2020
+ - uid: 4169
components:
- type: Transform
- pos: 21.5,70.5
+ pos: -19.5,-39.5
parent: 2
- - uid: 2021
+ - uid: 4170
components:
- type: Transform
- pos: 22.5,70.5
+ pos: -13.5,-45.5
parent: 2
- - uid: 2022
+ - uid: 4171
components:
- type: Transform
- pos: 23.5,70.5
+ pos: 2.5,-14.5
parent: 2
- - uid: 2023
+ - uid: 4172
components:
- type: Transform
- pos: 16.5,66.5
+ pos: -29.5,76.5
parent: 2
- - uid: 2024
+ - uid: 4173
components:
- type: Transform
- pos: 15.5,66.5
+ pos: -60.5,-22.5
parent: 2
- - uid: 2025
+ - uid: 4174
components:
- type: Transform
- pos: 14.5,66.5
+ pos: -0.5,17.5
parent: 2
- - uid: 2026
+ - uid: 4175
components:
- type: Transform
- pos: 14.5,67.5
+ pos: -59.5,-22.5
parent: 2
- - uid: 2027
+ - uid: 4176
components:
- type: Transform
- pos: 13.5,67.5
+ pos: -17.5,-37.5
parent: 2
- - uid: 2028
+ - uid: 4177
components:
- type: Transform
- pos: 12.5,67.5
+ pos: -7.5,-34.5
parent: 2
- - uid: 2029
+ - uid: 4178
components:
- type: Transform
- pos: 11.5,67.5
+ pos: -13.5,-35.5
parent: 2
- - uid: 2030
+ - uid: 4179
components:
- type: Transform
- pos: 11.5,68.5
+ pos: -4.5,-25.5
parent: 2
- - uid: 2031
+ - uid: 4180
components:
- type: Transform
- pos: 11.5,69.5
+ pos: -28.5,-38.5
parent: 2
- - uid: 2032
+ - uid: 4181
components:
- type: Transform
- pos: 11.5,70.5
+ pos: -13.5,-33.5
parent: 2
- - uid: 2033
+ - uid: 4182
components:
- type: Transform
- pos: 11.5,66.5
+ pos: -4.5,-23.5
parent: 2
- - uid: 2034
+ - uid: 4183
components:
- type: Transform
- pos: 17.5,64.5
+ pos: -4.5,-24.5
parent: 2
- - uid: 2035
+ - uid: 4184
components:
- type: Transform
- pos: 17.5,63.5
+ pos: -27.5,-52.5
parent: 2
- - uid: 2036
+ - uid: 4185
components:
- type: Transform
- pos: 17.5,62.5
+ pos: 13.5,-12.5
parent: 2
- - uid: 2037
+ - uid: 4186
components:
- type: Transform
- pos: 17.5,61.5
+ pos: -10.5,-15.5
parent: 2
- - uid: 2038
+ - uid: 4187
components:
- type: Transform
- pos: 17.5,60.5
+ pos: -17.5,-36.5
parent: 2
- - uid: 2039
+ - uid: 4188
components:
- type: Transform
- pos: 16.5,60.5
+ pos: -16.5,13.5
parent: 2
- - uid: 2040
+ - uid: 4189
components:
- type: Transform
- pos: 15.5,60.5
+ pos: -8.5,-31.5
parent: 2
- - uid: 2041
+ - uid: 4190
components:
- type: Transform
- pos: 14.5,60.5
+ pos: -12.5,-25.5
parent: 2
- - uid: 2042
+ - uid: 4191
components:
- type: Transform
- pos: 13.5,60.5
+ pos: -0.5,-35.5
parent: 2
- - uid: 2043
+ - uid: 4192
components:
- type: Transform
- pos: 12.5,60.5
+ pos: -30.5,31.5
parent: 2
- - uid: 2044
+ - uid: 4193
components:
- type: Transform
- pos: 18.5,60.5
+ pos: -7.5,16.5
parent: 2
- - uid: 2045
+ - uid: 4194
components:
- type: Transform
- pos: 19.5,60.5
+ pos: -8.5,-34.5
parent: 2
- - uid: 2046
+ - uid: 4195
components:
- type: Transform
- pos: 20.5,60.5
+ pos: 5.5,-34.5
parent: 2
- - uid: 2047
+ - uid: 4196
components:
- type: Transform
- pos: 21.5,60.5
+ pos: 14.5,-24.5
parent: 2
- - uid: 2048
+ - uid: 4197
components:
- type: Transform
- pos: 17.5,59.5
+ pos: -13.5,-34.5
parent: 2
- - uid: 2049
+ - uid: 4198
components:
- type: Transform
- pos: 17.5,58.5
+ pos: 63.5,4.5
parent: 2
- - uid: 2050
+ - uid: 4199
components:
- type: Transform
- pos: 1.5,60.5
+ pos: -29.5,-52.5
parent: 2
- - uid: 2051
+ - uid: 4200
components:
- type: Transform
- pos: 1.5,66.5
+ pos: -13.5,-43.5
parent: 2
- - uid: 2052
+ - uid: 4201
components:
- type: Transform
- pos: 1.5,65.5
+ pos: 7.5,-12.5
parent: 2
- - uid: 2053
+ - uid: 4202
components:
- type: Transform
- pos: 1.5,64.5
+ pos: 5.5,-31.5
parent: 2
- - uid: 2054
+ - uid: 4203
components:
- type: Transform
- pos: 1.5,63.5
+ pos: 3.5,-30.5
parent: 2
- - uid: 2055
+ - uid: 4204
components:
- type: Transform
- pos: 1.5,62.5
+ pos: 3.5,-31.5
parent: 2
- - uid: 2056
+ - uid: 4205
components:
- type: Transform
- pos: 2.5,62.5
+ pos: 62.5,4.5
parent: 2
- - uid: 2057
+ - uid: 4206
components:
- type: Transform
- pos: 1.5,61.5
+ pos: -64.5,-28.5
parent: 2
- - uid: 2058
+ - uid: 4207
components:
- type: Transform
- pos: 1.5,61.5
+ pos: 3.5,-32.5
parent: 2
- - uid: 2059
+ - uid: 4208
components:
- type: Transform
- pos: 3.5,62.5
+ pos: -0.5,-38.5
parent: 2
- - uid: 2060
+ - uid: 4209
components:
- type: Transform
- pos: 3.5,63.5
+ pos: -57.5,19.5
parent: 2
- - uid: 2061
+ - uid: 4210
components:
- type: Transform
- pos: 3.5,64.5
+ pos: -56.5,32.5
parent: 2
- - uid: 2062
+ - uid: 4211
components:
- type: Transform
- pos: 4.5,64.5
+ pos: -9.5,-13.5
parent: 2
- - uid: 2063
+ - uid: 4212
components:
- type: Transform
- pos: 5.5,64.5
+ pos: 8.5,-11.5
parent: 2
- - uid: 2064
+ - uid: 4213
components:
- type: Transform
- pos: 6.5,64.5
+ pos: -16.5,-25.5
parent: 2
- - uid: 2065
+ - uid: 4214
components:
- type: Transform
- pos: 6.5,63.5
+ pos: 1.5,-47.5
parent: 2
- - uid: 2066
+ - uid: 4215
components:
- type: Transform
- pos: 6.5,63.5
+ pos: 17.5,-33.5
parent: 2
- - uid: 2067
+ - uid: 4216
components:
- type: Transform
- pos: 6.5,62.5
+ pos: 31.5,-23.5
parent: 2
- - uid: 2068
+ - uid: 4217
components:
- type: Transform
- pos: 6.5,65.5
+ pos: 84.5,10.5
parent: 2
- - uid: 2069
+ - uid: 4218
components:
- type: Transform
- pos: 24.5,58.5
+ pos: 61.5,-6.5
parent: 2
- - uid: 2070
+ - uid: 4219
components:
- type: Transform
- pos: 24.5,57.5
+ pos: 17.5,-35.5
parent: 2
- - uid: 2071
+ - uid: 4220
components:
- type: Transform
- pos: 24.5,56.5
+ pos: 33.5,-48.5
parent: 2
- - uid: 2072
+ - uid: 4221
components:
- type: Transform
- pos: 25.5,56.5
+ pos: 22.5,-28.5
parent: 2
- - uid: 2073
+ - uid: 4222
components:
- type: Transform
- pos: 26.5,56.5
+ pos: -12.5,-30.5
parent: 2
- - uid: 2074
+ - uid: 4223
components:
- type: Transform
- pos: 27.5,56.5
+ pos: -22.5,-34.5
parent: 2
- - uid: 2075
+ - uid: 4224
components:
- type: Transform
- pos: 28.5,56.5
+ pos: 45.5,-13.5
parent: 2
- - uid: 2076
+ - uid: 4225
components:
- type: Transform
- pos: 29.5,56.5
+ pos: -57.5,14.5
parent: 2
- - uid: 2077
+ - uid: 4226
components:
- type: Transform
- pos: 30.5,56.5
+ pos: -3.5,17.5
parent: 2
- - uid: 2078
+ - uid: 4227
components:
- type: Transform
- pos: 31.5,56.5
+ pos: -3.5,14.5
parent: 2
- - uid: 2079
+ - uid: 4228
components:
- type: Transform
- pos: 31.5,57.5
+ pos: 5.5,16.5
parent: 2
- - uid: 2080
+ - uid: 4229
components:
- type: Transform
- pos: 31.5,58.5
+ pos: 11.5,-12.5
parent: 2
- - uid: 2081
+ - uid: 4230
components:
- type: Transform
- pos: 31.5,59.5
+ pos: -2.5,14.5
parent: 2
- - uid: 2082
+ - uid: 4231
components:
- type: Transform
- pos: 25.5,58.5
+ pos: 10.5,-14.5
parent: 2
- - uid: 2083
+ - uid: 4232
components:
- type: Transform
- pos: 25.5,59.5
+ pos: -4.5,15.5
parent: 2
- - uid: 2084
+ - uid: 4233
components:
- type: Transform
- pos: 25.5,60.5
+ pos: 4.5,16.5
parent: 2
- - uid: 2085
+ - uid: 4234
components:
- type: Transform
- pos: 25.5,61.5
+ pos: 7.5,-15.5
parent: 2
- - uid: 2086
+ - uid: 4235
components:
- type: Transform
- pos: 26.5,61.5
+ pos: -18.5,-25.5
parent: 2
- - uid: 2087
+ - uid: 4236
components:
- type: Transform
- pos: 27.5,61.5
+ pos: 7.5,-10.5
parent: 2
- - uid: 2088
+ - uid: 4237
components:
- type: Transform
- pos: 28.5,61.5
+ pos: -8.5,17.5
parent: 2
- - uid: 2089
+ - uid: 4238
components:
- type: Transform
- pos: 29.5,61.5
+ pos: 13.5,1.5
parent: 2
- - uid: 2090
+ - uid: 4239
components:
- type: Transform
- pos: 31.5,61.5
+ pos: -19.5,-42.5
parent: 2
- - uid: 2091
+ - uid: 4240
components:
- type: Transform
- pos: 30.5,61.5
+ pos: -9.5,-15.5
parent: 2
- - uid: 2092
+ - uid: 4241
components:
- type: Transform
- pos: 2.5,60.5
+ pos: -4.5,17.5
parent: 2
- - uid: 2093
+ - uid: 4242
components:
- type: Transform
- pos: 3.5,60.5
+ pos: -66.5,-30.5
parent: 2
- - uid: 2094
+ - uid: 4243
components:
- type: Transform
- pos: 24.5,21.5
+ pos: 60.5,4.5
parent: 2
- - uid: 2095
+ - uid: 4244
components:
- type: Transform
- pos: 24.5,20.5
+ pos: -17.5,-25.5
parent: 2
- - uid: 2096
+ - uid: 4245
components:
- type: Transform
- pos: 24.5,19.5
+ pos: -19.5,-43.5
parent: 2
- - uid: 2097
+ - uid: 4246
components:
- type: Transform
- pos: 24.5,18.5
+ pos: -32.5,-28.5
parent: 2
- - uid: 2098
+ - uid: 4247
components:
- type: Transform
- pos: 24.5,17.5
+ pos: -37.5,0.5
parent: 2
- - uid: 2099
+ - uid: 4248
components:
- type: Transform
- pos: 24.5,16.5
+ pos: -32.5,33.5
parent: 2
- - uid: 2100
+ - uid: 4249
components:
- type: Transform
- pos: 23.5,18.5
+ pos: 92.5,9.5
parent: 2
- - uid: 2101
+ - uid: 4250
components:
- type: Transform
- pos: 22.5,18.5
+ pos: -30.5,33.5
parent: 2
- - uid: 2102
+ - uid: 4251
components:
- type: Transform
- pos: 25.5,18.5
+ pos: -59.5,32.5
parent: 2
- - uid: 2103
+ - uid: 4252
components:
- type: Transform
- pos: 26.5,18.5
+ pos: -53.5,25.5
parent: 2
- - uid: 2104
+ - uid: 4253
components:
- type: Transform
- pos: 21.5,18.5
+ pos: -41.5,12.5
parent: 2
- - uid: 2105
+ - uid: 4254
components:
- type: Transform
- pos: 20.5,18.5
+ pos: -31.5,33.5
parent: 2
- - uid: 2106
+ - uid: 4255
components:
- type: Transform
- pos: 20.5,19.5
+ pos: 4.5,-31.5
parent: 2
- - uid: 2107
+ - uid: 4256
components:
- type: Transform
- pos: 20.5,17.5
+ pos: -29.5,89.5
parent: 2
- - uid: 2108
+ - uid: 4257
components:
- type: Transform
- pos: 19.5,20.5
+ pos: -29.5,72.5
parent: 2
- - uid: 2109
+ - uid: 4258
components:
- type: Transform
- pos: -6.5,47.5
+ pos: -29.5,79.5
parent: 2
- - uid: 2110
+ - uid: 4259
components:
- type: Transform
- pos: -6.5,46.5
+ pos: -29.5,74.5
parent: 2
- - uid: 2111
+ - uid: 4260
components:
- type: Transform
- pos: -6.5,45.5
+ pos: -29.5,78.5
parent: 2
- - uid: 2112
+ - uid: 4261
components:
- type: Transform
- pos: -6.5,44.5
+ pos: 0.5,-59.5
parent: 2
- - uid: 2113
+ - uid: 4262
components:
- type: Transform
- pos: -6.5,43.5
+ pos: 19.5,45.5
parent: 2
- - uid: 2114
+ - uid: 4263
components:
- type: Transform
- pos: -6.5,42.5
+ pos: 25.5,-17.5
parent: 2
- - uid: 2115
+ - uid: 4264
components:
- type: Transform
- pos: -6.5,41.5
+ pos: 56.5,-10.5
parent: 2
- - uid: 2116
+ - uid: 4265
components:
- type: Transform
- pos: -6.5,40.5
+ pos: 22.5,9.5
parent: 2
- - uid: 2117
+ - uid: 4266
components:
- type: Transform
- pos: -6.5,39.5
+ pos: 39.5,2.5
parent: 2
- - uid: 2118
+ - uid: 4267
components:
- type: Transform
- pos: -6.5,38.5
+ pos: -65.5,40.5
parent: 2
- - uid: 2119
+ - uid: 4268
components:
- type: Transform
- pos: -6.5,37.5
+ pos: -51.5,-11.5
parent: 2
- - uid: 2120
+ - uid: 4269
components:
- type: Transform
- pos: -5.5,37.5
+ pos: 31.5,57.5
parent: 2
- - uid: 2121
+ - uid: 4270
components:
- type: Transform
- pos: -4.5,37.5
+ pos: 52.5,-22.5
parent: 2
- - uid: 2122
+ - uid: 4271
components:
- type: Transform
- pos: -3.5,37.5
+ pos: -13.5,-75.5
parent: 2
- - uid: 2123
+ - uid: 4272
components:
- type: Transform
- pos: -2.5,37.5
+ pos: 31.5,31.5
parent: 2
- - uid: 2124
+ - uid: 4273
components:
- type: Transform
- pos: -2.5,38.5
+ pos: 37.5,-62.5
parent: 2
- - uid: 2125
+ - uid: 4274
components:
- type: Transform
- pos: -2.5,39.5
+ pos: -35.5,41.5
parent: 2
- - uid: 2126
+ - uid: 4275
components:
- type: Transform
- pos: -2.5,40.5
+ pos: 25.5,51.5
parent: 2
- - uid: 2127
+ - uid: 4276
components:
- type: Transform
- pos: -2.5,41.5
+ pos: -46.5,6.5
parent: 2
- - uid: 2128
+ - uid: 4277
components:
- type: Transform
- pos: -2.5,42.5
+ pos: -22.5,42.5
parent: 2
- - uid: 2129
+ - uid: 4278
components:
- type: Transform
- pos: -1.5,40.5
+ pos: -18.5,-17.5
parent: 2
- - uid: 2130
+ - uid: 4279
components:
- type: Transform
- pos: -0.5,40.5
+ pos: 2.5,51.5
parent: 2
- - uid: 2131
+ - uid: 4280
components:
- type: Transform
- pos: 0.49999997,40.5
+ pos: -51.5,52.5
parent: 2
- - uid: 2132
+ - uid: 4281
components:
- type: Transform
- pos: 1.5,40.5
+ pos: 2.5,53.5
parent: 2
- - uid: 2133
+ - uid: 4282
components:
- type: Transform
- pos: 1.5,41.5
+ pos: 27.5,-10.5
parent: 2
- - uid: 2134
+ - uid: 4283
components:
- type: Transform
- pos: 1.5,42.5
+ pos: -44.5,51.5
parent: 2
- - uid: 2135
+ - uid: 4284
components:
- type: Transform
- pos: 1.5,43.5
+ pos: 1.5,51.5
parent: 2
- - uid: 2136
+ - uid: 4285
components:
- type: Transform
- pos: 1.5,44.5
+ pos: -54.5,45.5
parent: 2
- - uid: 2137
+ - uid: 4286
components:
- type: Transform
- pos: 1.5,45.5
+ pos: -45.5,50.5
parent: 2
- - uid: 2138
+ - uid: 4287
components:
- type: Transform
- pos: 1.5,46.5
+ pos: -43.5,51.5
parent: 2
- - uid: 2139
+ - uid: 4288
components:
- type: Transform
- pos: 1.5,47.5
+ pos: 41.5,-3.5
parent: 2
- - uid: 2140
+ - uid: 4289
components:
- type: Transform
- pos: 0.50000006,39.5
+ pos: 33.5,-4.5
parent: 2
- - uid: 2141
+ - uid: 4290
components:
- type: Transform
- pos: 0.50000006,38.5
+ pos: 39.5,-3.5
parent: 2
- - uid: 2142
+ - uid: 4291
components:
- type: Transform
- pos: 0.50000006,37.5
+ pos: 21.5,-7.5
parent: 2
- - uid: 2143
+ - uid: 4292
components:
- type: Transform
- pos: 0.50000006,36.5
+ pos: 28.5,-10.5
parent: 2
- - uid: 2144
+ - uid: 4293
components:
- type: Transform
- pos: 0.49999997,35.5
+ pos: 26.5,-19.5
parent: 2
- - uid: 2145
+ - uid: 4294
components:
- type: Transform
- pos: 0.49999997,34.5
+ pos: 15.5,32.5
parent: 2
- - uid: 2146
+ - uid: 4295
components:
- type: Transform
- pos: -5.5,30.5
+ pos: 23.5,5.5
parent: 2
- - uid: 2147
+ - uid: 4296
components:
- type: Transform
- pos: -2.5,30.5
+ pos: 24.5,9.5
parent: 2
- - uid: 2148
+ - uid: 4297
components:
- type: Transform
- pos: -2.5,31.5
+ pos: 21.5,8.5
parent: 2
- - uid: 2149
+ - uid: 4298
components:
- type: Transform
- pos: -2.5,32.5
+ pos: 42.5,7.5
parent: 2
- - uid: 2150
+ - uid: 4299
components:
- type: Transform
- pos: -1.5,31.5
+ pos: 42.5,9.5
parent: 2
- - uid: 2151
+ - uid: 4300
components:
- type: Transform
- pos: -0.5,31.5
+ pos: -57.5,53.5
parent: 2
- - uid: 2152
+ - uid: 4301
components:
- type: Transform
- pos: 0.49999997,31.5
+ pos: 24.5,-10.5
parent: 2
- - uid: 2153
+ - uid: 4302
components:
- type: Transform
- pos: -2.5,29.5
+ pos: -57.5,45.5
parent: 2
- - uid: 2154
+ - uid: 4303
components:
- type: Transform
- pos: -2.5,28.5
+ pos: -57.5,48.5
parent: 2
- - uid: 2155
+ - uid: 4304
components:
- type: Transform
- pos: -2.5,27.5
+ pos: 21.5,-10.5
parent: 2
- - uid: 2156
+ - uid: 4305
components:
- type: Transform
- pos: -2.5,26.5
+ pos: -58.5,48.5
parent: 2
- - uid: 2157
+ - uid: 4306
components:
- type: Transform
- pos: -1.5,26.5
+ pos: 84.5,9.5
parent: 2
- - uid: 2158
+ - uid: 4307
components:
- type: Transform
- pos: -0.5,26.5
+ pos: 36.5,-22.5
parent: 2
- - uid: 2159
+ - uid: 4308
components:
- type: Transform
- pos: 0.50000006,26.5
+ pos: 38.5,5.5
parent: 2
- - uid: 2160
+ - uid: 4309
components:
- type: Transform
- pos: -6.5,30.5
+ pos: 60.5,-11.5
parent: 2
- - uid: 2161
+ - uid: 4310
components:
- type: Transform
- pos: -7.5,30.5
+ pos: 40.5,11.5
parent: 2
- - uid: 2162
+ - uid: 4311
components:
- type: Transform
- pos: -8.5,30.5
+ pos: 54.5,-7.5
parent: 2
- - uid: 2163
+ - uid: 4312
components:
- type: Transform
- pos: -9.5,30.5
+ pos: 39.5,5.5
parent: 2
- - uid: 2164
+ - uid: 4313
components:
- type: Transform
- pos: -9.5,31.5
+ pos: 36.5,-3.5
parent: 2
- - uid: 2165
+ - uid: 4314
components:
- type: Transform
- pos: -9.5,32.5
+ pos: 40.5,12.5
parent: 2
- - uid: 2166
+ - uid: 4315
components:
- type: Transform
- pos: -9.5,33.5
+ pos: 43.5,5.5
parent: 2
- - uid: 2167
+ - uid: 4316
components:
- type: Transform
- pos: -8.5,33.5
+ pos: -62.5,41.5
parent: 2
- - uid: 2168
+ - uid: 4317
components:
- type: Transform
- pos: -7.5,33.5
+ pos: 57.5,-15.5
parent: 2
- - uid: 2169
+ - uid: 4318
components:
- type: Transform
- pos: -6.5,33.5
+ pos: 46.5,-28.5
parent: 2
- - uid: 2170
+ - uid: 4319
components:
- type: Transform
- pos: -5.5,33.5
+ pos: 58.5,-15.5
parent: 2
- - uid: 2171
+ - uid: 4320
components:
- type: Transform
- pos: -9.5,29.5
+ pos: 40.5,-33.5
parent: 2
- - uid: 2172
+ - uid: 4321
components:
- type: Transform
- pos: -9.5,28.5
+ pos: -65.5,43.5
parent: 2
- - uid: 2173
+ - uid: 4322
components:
- type: Transform
- pos: -9.5,27.5
+ pos: 5.5,27.5
parent: 2
- - uid: 2174
+ - uid: 4323
components:
- type: Transform
- pos: -8.5,27.5
+ pos: 21.5,34.5
parent: 2
- - uid: 2175
+ - uid: 4324
components:
- type: Transform
- pos: -7.5,27.5
+ pos: 14.5,45.5
parent: 2
- - uid: 2176
+ - uid: 4325
components:
- type: Transform
- pos: -6.5,27.5
+ pos: 41.5,28.5
parent: 2
- - uid: 2177
+ - uid: 4326
components:
- type: Transform
- pos: -5.5,27.5
+ pos: -2.5,57.5
parent: 2
- - uid: 2178
+ - uid: 4327
components:
- type: Transform
- pos: -10.5,30.5
+ pos: 1.5,-76.5
parent: 2
- - uid: 2179
+ - uid: 4328
components:
- type: Transform
- pos: -11.5,30.5
+ pos: -0.5,-76.5
parent: 2
- - uid: 2180
+ - uid: 4329
components:
- type: Transform
- pos: -12.5,30.5
+ pos: 30.5,26.5
parent: 2
- - uid: 2181
+ - uid: 4330
components:
- type: Transform
- pos: -13.5,30.5
+ pos: 47.5,-28.5
parent: 2
- - uid: 2182
+ - uid: 4331
components:
- type: Transform
- pos: -14.5,30.5
+ pos: 43.5,28.5
parent: 2
- - uid: 2183
+ - uid: 4332
components:
- type: Transform
- pos: -12.5,31.5
+ pos: 44.5,-22.5
parent: 2
- - uid: 2184
+ - uid: 4333
components:
- type: Transform
- pos: -12.5,32.5
+ pos: 41.5,-9.5
parent: 2
- - uid: 2185
+ - uid: 4334
components:
- type: Transform
- pos: -12.5,33.5
+ pos: 15.5,46.5
parent: 2
- - uid: 2186
+ - uid: 4335
components:
- type: Transform
- pos: -12.5,34.5
+ pos: 39.5,29.5
parent: 2
- - uid: 2187
+ - uid: 4336
components:
- type: Transform
- pos: -12.5,29.5
+ pos: 16.5,46.5
parent: 2
- - uid: 2188
+ - uid: 4337
components:
- type: Transform
- pos: -12.5,28.5
+ pos: 43.5,30.5
parent: 2
- - uid: 2189
+ - uid: 4338
components:
- type: Transform
- pos: -12.5,27.5
+ pos: 26.5,59.5
parent: 2
- - uid: 2190
+ - uid: 4339
components:
- type: Transform
- pos: -12.5,26.5
+ pos: -53.5,-15.5
parent: 2
- - uid: 2191
+ - uid: 4340
components:
- type: Transform
- pos: -15.5,30.5
+ pos: 41.5,30.5
parent: 2
- - uid: 2192
+ - uid: 4341
components:
- type: Transform
- pos: -15.5,29.5
+ pos: -58.5,-19.5
parent: 2
- - uid: 2193
+ - uid: 4342
components:
- type: Transform
- pos: -15.5,28.5
+ pos: 25.5,-8.5
parent: 2
- - uid: 2194
+ - uid: 4343
components:
- type: Transform
- pos: -15.5,27.5
+ pos: 43.5,-0.5
parent: 2
- - uid: 2195
+ - uid: 4344
components:
- type: Transform
- pos: -15.5,26.5
+ pos: 40.5,0.5
parent: 2
- - uid: 2196
+ - uid: 4345
components:
- type: Transform
- pos: -15.5,31.5
+ pos: 62.5,-30.5
parent: 2
- - uid: 2197
+ - uid: 4346
components:
- type: Transform
- pos: -15.5,32.5
+ pos: 40.5,-0.5
parent: 2
- - uid: 2198
+ - uid: 4347
components:
- type: Transform
- pos: -15.5,33.5
+ pos: 42.5,-44.5
parent: 2
- - uid: 2199
+ - uid: 4348
components:
- type: Transform
- pos: -7.5,51.5
+ pos: 12.5,52.5
parent: 2
- - uid: 2200
+ - uid: 4349
components:
- type: Transform
- pos: -7.5,50.5
+ pos: 10.5,49.5
parent: 2
- - uid: 2201
+ - uid: 4350
components:
- type: Transform
- pos: -7.5,49.5
+ pos: 31.5,55.5
parent: 2
- - uid: 2202
+ - uid: 4351
components:
- type: Transform
- pos: -7.5,49.5
+ pos: 75.5,-17.5
parent: 2
- - uid: 2203
+ - uid: 4352
components:
- type: Transform
- pos: -8.5,49.5
+ pos: 44.5,-21.5
parent: 2
- - uid: 2204
+ - uid: 4353
components:
- type: Transform
- pos: -9.5,49.5
+ pos: 39.5,-9.5
parent: 2
- - uid: 2205
+ - uid: 4354
components:
- type: Transform
- pos: -10.5,49.5
+ pos: 67.5,-21.5
parent: 2
- - uid: 2206
+ - uid: 4355
components:
- type: Transform
- pos: -11.5,49.5
+ pos: -50.5,-14.5
parent: 2
- - uid: 2207
+ - uid: 4356
components:
- type: Transform
- pos: -12.5,49.5
+ pos: 40.5,-43.5
parent: 2
- - uid: 2208
+ - uid: 4357
components:
- type: Transform
- pos: -11.5,50.5
+ pos: 52.5,-33.5
parent: 2
- - uid: 2209
+ - uid: 4358
components:
- type: Transform
- pos: -11.5,51.5
+ pos: 44.5,8.5
parent: 2
- - uid: 2210
+ - uid: 4359
components:
- type: Transform
- pos: -11.5,52.5
+ pos: 41.5,-28.5
parent: 2
- - uid: 2211
+ - uid: 4360
components:
- type: Transform
- pos: -11.5,53.5
+ pos: 58.5,-12.5
parent: 2
- - uid: 2212
+ - uid: 4361
components:
- type: Transform
- pos: -10.5,53.5
+ pos: 42.5,-28.5
parent: 2
- - uid: 2213
+ - uid: 4362
components:
- type: Transform
- pos: -9.5,53.5
+ pos: 64.5,-21.5
parent: 2
- - uid: 2214
+ - uid: 4363
components:
- type: Transform
- pos: -5.5,50.5
+ pos: 22.5,-3.5
parent: 2
- - uid: 2215
+ - uid: 4364
components:
- type: Transform
- pos: -5.5,51.5
+ pos: 63.5,-21.5
parent: 2
- - uid: 2216
+ - uid: 4365
components:
- type: Transform
- pos: -5.5,52.5
+ pos: 22.5,-2.5
parent: 2
- - uid: 2217
+ - uid: 4366
components:
- type: Transform
- pos: -5.5,53.5
+ pos: 78.5,-18.5
parent: 2
- - uid: 2218
+ - uid: 4367
components:
- type: Transform
- pos: -5.5,49.5
+ pos: 17.5,63.5
parent: 2
- - uid: 2219
+ - uid: 4368
components:
- type: Transform
- pos: -6.5,49.5
+ pos: 41.5,-30.5
parent: 2
- - uid: 2220
+ - uid: 4369
components:
- type: Transform
- pos: -4.5,53.5
+ pos: 43.5,-28.5
parent: 2
- - uid: 2221
+ - uid: 4370
components:
- type: Transform
- pos: -3.5,53.5
+ pos: 18.5,66.5
parent: 2
- - uid: 2222
+ - uid: 4371
components:
- type: Transform
- pos: -2.5,53.5
+ pos: 85.5,10.5
parent: 2
- - uid: 2223
+ - uid: 4372
components:
- type: Transform
- pos: 3.5,55.5
+ pos: -25.5,-73.5
parent: 2
- - uid: 2224
+ - uid: 4373
components:
- type: Transform
- pos: 3.5,54.5
+ pos: -16.5,-78.5
parent: 2
- - uid: 2225
+ - uid: 4374
components:
- type: Transform
- pos: 3.5,53.5
+ pos: -33.5,-75.5
parent: 2
- - uid: 2226
+ - uid: 4375
components:
- type: Transform
- pos: 3.5,52.5
+ pos: -18.5,17.5
parent: 2
- - uid: 2227
+ - uid: 4376
components:
- type: Transform
- pos: 3.5,51.5
+ pos: -18.5,15.5
parent: 2
- - uid: 2228
+ - uid: 4377
components:
- type: Transform
- pos: 2.5,51.5
+ pos: -51.5,-4.5
parent: 2
- - uid: 2229
+ - uid: 4378
components:
- type: Transform
- pos: 1.5,51.5
+ pos: -54.5,-5.5
parent: 2
- - uid: 2230
+ - uid: 4379
components:
- type: Transform
- pos: 0.50000006,51.5
+ pos: -27.5,-62.5
parent: 2
- - uid: 2231
+ - uid: 4380
components:
- type: Transform
- pos: -0.5,51.5
+ pos: -38.5,-63.5
parent: 2
- - uid: 2232
+ - uid: 4381
components:
- type: Transform
- pos: -0.5,52.5
+ pos: -22.5,-28.5
parent: 2
- - uid: 2233
+ - uid: 4382
components:
- type: Transform
- pos: -0.5,53.5
+ pos: -27.5,-63.5
parent: 2
- - uid: 2234
+ - uid: 4383
components:
- type: Transform
- pos: -0.5,54.5
+ pos: -37.5,-63.5
parent: 2
- - uid: 2235
+ - uid: 4384
components:
- type: Transform
- pos: 3.5,50.5
+ pos: 2.5,36.5
parent: 2
- - uid: 2236
+ - uid: 4385
components:
- type: Transform
- pos: -4.5,49.5
+ pos: 39.5,-12.5
parent: 2
- - uid: 2237
+ - uid: 4386
components:
- type: Transform
- pos: -3.5,49.5
+ pos: 36.5,-12.5
parent: 2
- - uid: 2238
+ - uid: 4387
components:
- type: Transform
- pos: -2.5,49.5
+ pos: 4.5,36.5
parent: 2
- - uid: 2239
+ - uid: 4388
components:
- type: Transform
- pos: -2.5,50.5
+ pos: 26.5,34.5
parent: 2
- - uid: 2240
+ - uid: 4389
components:
- type: Transform
- pos: -7.5,48.5
+ pos: -53.5,0.5
parent: 2
- - uid: 2241
+ - uid: 4390
components:
- type: Transform
- pos: 1.5,48.5
+ pos: 13.5,33.5
parent: 2
- - uid: 2242
+ - uid: 4391
components:
- type: Transform
- pos: 0.50000006,48.5
+ pos: -26.5,-71.5
parent: 2
- - uid: 2243
+ - uid: 4392
components:
- type: Transform
- pos: 2.5,47.5
+ pos: -29.5,83.5
parent: 2
- - uid: 2244
+ - uid: 4393
components:
- type: Transform
- pos: 3.5,47.5
+ pos: 0.5,-64.5
parent: 2
- - uid: 2245
+ - uid: 4394
components:
- type: Transform
- pos: 4.5,60.5
+ pos: 1.5,-66.5
parent: 2
- - uid: 2246
+ - uid: 4395
components:
- type: Transform
- pos: 5.5,60.5
+ pos: 27.5,18.5
parent: 2
- - uid: 2247
+ - uid: 4396
components:
- type: Transform
- pos: 5.5,59.5
+ pos: -27.5,-65.5
parent: 2
- - uid: 2248
+ - uid: 4397
components:
- type: Transform
- pos: 5.5,58.5
+ pos: -13.5,-65.5
parent: 2
- - uid: 2249
+ - uid: 4398
components:
- type: Transform
- pos: 5.5,57.5
+ pos: -3.5,-68.5
parent: 2
- - uid: 2250
+ - uid: 4399
components:
- type: Transform
- pos: 6.5,57.5
+ pos: -36.5,-59.5
parent: 2
- - uid: 2251
+ - uid: 4400
components:
- type: Transform
- pos: 6.5,56.5
+ pos: 10.5,83.5
parent: 2
- - uid: 2252
+ - uid: 4401
components:
- type: Transform
- pos: 6.5,55.5
+ pos: -36.5,-63.5
parent: 2
- - uid: 2253
+ - uid: 4402
components:
- type: Transform
- pos: 6.5,54.5
+ pos: -29.5,-74.5
parent: 2
- - uid: 2254
+ - uid: 4403
components:
- type: Transform
- pos: 6.5,53.5
+ pos: -35.5,-73.5
parent: 2
- - uid: 2255
+ - uid: 4404
components:
- type: Transform
- pos: 6.5,52.5
+ pos: -29.5,-73.5
parent: 2
- - uid: 2256
+ - uid: 4405
components:
- type: Transform
- pos: 4.5,47.5
+ pos: -52.5,0.5
parent: 2
- - uid: 2257
+ - uid: 4406
components:
- type: Transform
- pos: 5.5,47.5
+ pos: 21.5,-5.5
parent: 2
- - uid: 2258
+ - uid: 4407
components:
- type: Transform
- pos: 6.5,47.5
+ pos: 33.5,-0.5
parent: 2
- - uid: 2259
+ - uid: 4408
components:
- type: Transform
- pos: 6.5,48.5
+ pos: 35.5,-9.5
parent: 2
- - uid: 2260
+ - uid: 4409
components:
- type: Transform
- pos: 6.5,49.5
+ pos: 14.5,72.5
parent: 2
- - uid: 2261
+ - uid: 4410
components:
- type: Transform
- pos: 6.5,50.5
+ pos: 6.5,57.5
parent: 2
- - uid: 2262
+ - uid: 4411
components:
- type: Transform
- pos: 2.5,40.5
+ pos: 42.5,12.5
parent: 2
- - uid: 2263
+ - uid: 4412
components:
- type: Transform
- pos: -11.5,41.5
+ pos: 33.5,10.5
parent: 2
- - uid: 2264
+ - uid: 4413
components:
- type: Transform
- pos: -10.5,41.5
+ pos: 49.5,-10.5
parent: 2
- - uid: 2265
+ - uid: 4414
components:
- type: Transform
- pos: -9.5,41.5
+ pos: 48.5,-28.5
parent: 2
- - uid: 2266
+ - uid: 4415
components:
- type: Transform
- pos: -8.5,41.5
+ pos: 14.5,46.5
parent: 2
- - uid: 2267
+ - uid: 4416
components:
- type: Transform
- pos: -7.5,41.5
+ pos: 4.5,27.5
parent: 2
- - uid: 2268
+ - uid: 4417
components:
- type: Transform
- pos: -11.5,42.5
+ pos: -5.5,-70.5
parent: 2
- - uid: 2269
+ - uid: 4418
components:
- type: Transform
- pos: -11.5,43.5
+ pos: -8.5,-68.5
parent: 2
- - uid: 2270
+ - uid: 4419
components:
- type: Transform
- pos: -11.5,44.5
+ pos: -13.5,-80.5
parent: 2
- - uid: 2271
+ - uid: 4420
components:
- type: Transform
- pos: -11.5,45.5
+ pos: -29.5,71.5
parent: 2
- - uid: 2272
+ - uid: 4421
components:
- type: Transform
- pos: -11.5,46.5
+ pos: -29.5,84.5
parent: 2
- - uid: 2273
+ - uid: 4422
components:
- type: Transform
- pos: -11.5,40.5
+ pos: 52.5,-7.5
parent: 2
- - uid: 2274
+ - uid: 4423
components:
- type: Transform
- pos: -11.5,39.5
+ pos: 30.5,0.5
parent: 2
- - uid: 2275
+ - uid: 4424
components:
- type: Transform
- pos: -11.5,38.5
+ pos: -57.5,54.5
parent: 2
- - uid: 2276
+ - uid: 4425
components:
- type: Transform
- pos: -11.5,37.5
+ pos: 20.5,-10.5
parent: 2
- - uid: 2277
+ - uid: 4426
components:
- type: Transform
- pos: -11.5,36.5
+ pos: 30.5,-9.5
parent: 2
- - uid: 2278
+ - uid: 4427
components:
- type: Transform
- pos: -12.5,41.5
+ pos: -29.5,90.5
parent: 2
- - uid: 2279
+ - uid: 4428
components:
- type: Transform
- pos: -3.5,48.5
+ pos: -42.5,26.5
parent: 2
- - uid: 2280
+ - uid: 4429
components:
- type: Transform
- pos: -3.5,47.5
+ pos: -13.5,57.5
parent: 2
- - uid: 2281
+ - uid: 4430
components:
- type: Transform
- pos: -3.5,46.5
+ pos: -37.5,57.5
parent: 2
- - uid: 2282
+ - uid: 4431
components:
- type: Transform
- pos: -3.5,45.5
+ pos: 26.5,-65.5
parent: 2
- - uid: 2283
+ - uid: 4432
components:
- type: Transform
- pos: -2.5,45.5
+ pos: -10.5,-60.5
parent: 2
- - uid: 2284
+ - uid: 4433
components:
- type: Transform
- pos: -12.5,4.5
+ pos: -1.5,-59.5
parent: 2
- - uid: 2285
+ - uid: 4434
components:
- type: Transform
- pos: -13.5,6.5
+ pos: 19.5,46.5
parent: 2
- - uid: 2286
+ - uid: 4435
components:
- type: Transform
- pos: -13.5,5.5
+ pos: -54.5,-4.5
parent: 2
- - uid: 2287
+ - uid: 4436
components:
- type: Transform
- pos: -13.5,4.5
+ pos: 15.5,35.5
parent: 2
- - uid: 2288
+ - uid: 4437
components:
- type: Transform
- pos: -11.5,4.5
+ pos: 25.5,-16.5
parent: 2
- - uid: 2289
+ - uid: 4438
components:
- type: Transform
- pos: -10.5,4.5
+ pos: 56.5,-11.5
parent: 2
- - uid: 2290
+ - uid: 4439
components:
- type: Transform
- pos: -10.5,3.5
+ pos: 37.5,0.5
parent: 2
- - uid: 2291
+ - uid: 4440
components:
- type: Transform
- pos: -10.5,2.5
+ pos: 23.5,9.5
parent: 2
- - uid: 2292
+ - uid: 4441
components:
- type: Transform
- pos: -10.5,1.5
+ pos: 42.5,0.5
parent: 2
- - uid: 2293
+ - uid: 4442
components:
- type: Transform
- pos: -10.5,0.5
+ pos: -61.5,-19.5
parent: 2
- - uid: 2294
+ - uid: 4443
components:
- type: Transform
- pos: -10.5,-0.5
+ pos: -60.5,-19.5
parent: 2
- - uid: 2295
+ - uid: 4444
components:
- type: Transform
- pos: -9.5,-0.5
+ pos: -63.5,43.5
parent: 2
- - uid: 2296
+ - uid: 4445
components:
- type: Transform
- pos: -9.5,-1.5
+ pos: -18.5,16.5
parent: 2
- - uid: 2297
+ - uid: 4446
components:
- type: Transform
- pos: -9.5,-2.5
+ pos: 7.5,30.5
parent: 2
- - uid: 2298
+ - uid: 4447
components:
- type: Transform
- pos: -9.5,-3.5
+ pos: -10.5,-81.5
parent: 2
- - uid: 2299
+ - uid: 4448
components:
- type: Transform
- pos: -9.5,-4.5
+ pos: -3.5,-70.5
parent: 2
- - uid: 2300
+ - uid: 4449
components:
- type: Transform
- pos: -10.5,-4.5
+ pos: -2.5,-70.5
parent: 2
- - uid: 2301
+ - uid: 4450
components:
- type: Transform
- pos: -11.5,-4.5
+ pos: -57.5,2.5
parent: 2
- - uid: 2302
+ - uid: 4451
components:
- type: Transform
- pos: -12.5,-4.5
+ pos: -6.5,-58.5
parent: 2
- - uid: 2303
+ - uid: 4452
components:
- type: Transform
- pos: -13.5,-4.5
+ pos: 31.5,-64.5
parent: 2
- - uid: 2304
+ - uid: 4453
components:
- type: Transform
- pos: -14.5,-4.5
+ pos: -25.5,-60.5
parent: 2
- - uid: 2305
+ - uid: 4454
components:
- type: Transform
- pos: -12.5,-2.5
+ pos: -36.5,-61.5
parent: 2
- - uid: 2306
+ - uid: 4455
components:
- type: Transform
- pos: -11.5,-2.5
+ pos: 29.5,-66.5
parent: 2
- - uid: 2307
+ - uid: 4456
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: -10.5,-78.5
parent: 2
- - uid: 2308
+ - uid: 4457
components:
- type: Transform
- pos: -10.5,4.5
+ pos: 10.5,30.5
parent: 2
- - uid: 2309
+ - uid: 4458
components:
- type: Transform
- pos: -9.5,4.5
+ pos: 8.5,55.5
parent: 2
- - uid: 2310
+ - uid: 4459
components:
- type: Transform
- pos: -8.5,4.5
+ pos: 14.5,69.5
parent: 2
- - uid: 2311
+ - uid: 4460
components:
- type: Transform
- pos: -10.5,5.5
+ pos: -50.5,0.5
parent: 2
- - uid: 2312
+ - uid: 4461
components:
- type: Transform
- pos: -11.5,0.5
+ pos: 17.5,61.5
parent: 2
- - uid: 2313
+ - uid: 4462
components:
- type: Transform
- pos: -12.5,0.5
+ pos: 27.5,56.5
parent: 2
- - uid: 2314
+ - uid: 4463
components:
- type: Transform
- pos: -13.5,0.5
+ pos: 26.5,36.5
parent: 2
- - uid: 2315
+ - uid: 4464
components:
- type: Transform
- pos: -13.5,3.5
+ pos: -0.5,57.5
parent: 2
- - uid: 2316
+ - uid: 4465
components:
- type: Transform
- pos: -9.5,-5.5
+ pos: 4.5,34.5
parent: 2
- - uid: 2317
+ - uid: 4466
components:
- type: Transform
- pos: -11.5,12.5
+ pos: 38.5,-12.5
parent: 2
- - uid: 2318
+ - uid: 4467
components:
- type: Transform
- pos: -11.5,11.5
+ pos: -51.5,-10.5
parent: 2
- - uid: 2319
+ - uid: 4468
components:
- type: Transform
- pos: -11.5,10.5
+ pos: -58.5,-14.5
parent: 2
- - uid: 2320
+ - uid: 4469
components:
- type: Transform
- pos: -11.5,9.5
+ pos: -51.5,-1.5
parent: 2
- - uid: 2321
+ - uid: 4470
components:
- type: Transform
- pos: -12.5,9.5
+ pos: 58.5,4.5
parent: 2
- - uid: 2322
+ - uid: 4471
components:
- type: Transform
- pos: -13.5,9.5
+ pos: 13.5,32.5
parent: 2
- - uid: 2323
+ - uid: 4472
components:
- type: Transform
- pos: -14.5,9.5
+ pos: -26.5,-60.5
parent: 2
- - uid: 2324
+ - uid: 4473
components:
- type: Transform
- pos: -15.5,9.5
+ pos: -26.5,-72.5
parent: 2
- - uid: 2325
+ - uid: 4474
components:
- type: Transform
- pos: -11.5,8.5
+ pos: -18.5,14.5
parent: 2
- - uid: 2326
+ - uid: 4475
components:
- type: Transform
- pos: -11.5,7.5
+ pos: -27.5,-61.5
parent: 2
- - uid: 2327
+ - uid: 4476
components:
- type: Transform
- pos: -11.5,9.5
+ pos: 71.5,-21.5
parent: 2
- - uid: 2328
+ - uid: 4477
components:
- type: Transform
- pos: -10.5,9.5
+ pos: 32.5,-55.5
parent: 2
- - uid: 2329
+ - uid: 4478
components:
- type: Transform
- pos: -9.5,9.5
+ pos: 41.5,-29.5
parent: 2
- - uid: 2330
+ - uid: 4479
components:
- type: Transform
- pos: -8.5,9.5
+ pos: 79.5,-18.5
parent: 2
- - uid: 2331
+ - uid: 4480
components:
- type: Transform
- pos: -7.5,9.5
+ pos: 47.5,-10.5
parent: 2
- - uid: 2332
+ - uid: 4481
components:
- type: Transform
- pos: -6.5,9.5
+ pos: 78.5,9.5
parent: 2
- - uid: 2333
+ - uid: 4482
components:
- type: Transform
- pos: 11.5,17.5
+ pos: 52.5,-41.5
parent: 2
- - uid: 2334
+ - uid: 4483
components:
- type: Transform
- pos: 11.5,16.5
+ pos: 70.5,-18.5
parent: 2
- - uid: 2335
+ - uid: 4484
components:
- type: Transform
- pos: 11.5,15.5
+ pos: 52.5,-39.5
parent: 2
- - uid: 2336
+ - uid: 4485
components:
- type: Transform
- pos: 11.5,14.5
+ pos: 40.5,-20.5
parent: 2
- - uid: 2337
+ - uid: 4486
components:
- type: Transform
- pos: 10.5,14.5
+ pos: 77.5,-18.5
parent: 2
- - uid: 2338
+ - uid: 4487
components:
- type: Transform
- pos: 9.5,14.5
+ pos: 19.5,69.5
parent: 2
- - uid: 2339
+ - uid: 4488
components:
- type: Transform
- pos: 8.5,14.5
+ pos: 63.5,-9.5
parent: 2
- - uid: 2340
+ - uid: 4489
components:
- type: Transform
- pos: 7.5,14.5
+ pos: 51.5,-43.5
parent: 2
- - uid: 2341
+ - uid: 4490
components:
- type: Transform
- pos: 6.5,14.5
+ pos: 52.5,-37.5
parent: 2
- - uid: 2342
+ - uid: 4491
components:
- type: Transform
- pos: 5.5,14.5
+ pos: 75.5,-18.5
parent: 2
- - uid: 2343
+ - uid: 4492
components:
- type: Transform
- pos: 4.5,14.5
+ pos: 76.5,-18.5
parent: 2
- - uid: 2344
+ - uid: 4493
components:
- type: Transform
- pos: 3.5,14.5
+ pos: 40.5,4.5
parent: 2
- - uid: 2345
+ - uid: 4494
components:
- type: Transform
- pos: 3.5,15.5
+ pos: 53.5,-40.5
parent: 2
- - uid: 2346
+ - uid: 4495
components:
- type: Transform
- pos: 3.5,16.5
+ pos: -29.5,85.5
parent: 2
- - uid: 2347
+ - uid: 4496
components:
- type: Transform
- pos: 2.5,16.5
+ pos: 52.5,-42.5
parent: 2
- - uid: 2348
+ - uid: 4497
components:
- type: Transform
- pos: 1.5,16.5
+ pos: 51.5,-46.5
parent: 2
- - uid: 2349
+ - uid: 4498
components:
- type: Transform
- pos: 0.49999997,16.5
+ pos: 35.5,-21.5
parent: 2
- - uid: 2350
+ - uid: 4499
components:
- type: Transform
- pos: -0.5,16.5
+ pos: 40.5,1.5
parent: 2
- - uid: 2351
+ - uid: 4500
components:
- type: Transform
- pos: -1.5,16.5
+ pos: -36.5,-11.5
parent: 2
- - uid: 2352
+ - uid: 4501
components:
- type: Transform
- pos: -2.5,16.5
+ pos: 22.5,-4.5
parent: 2
- - uid: 2353
+ - uid: 4502
components:
- type: Transform
- pos: -3.5,16.5
+ pos: 52.5,-32.5
parent: 2
- - uid: 2354
+ - uid: 4503
components:
- type: Transform
- pos: -4.5,16.5
+ pos: 43.5,-35.5
parent: 2
- - uid: 2355
+ - uid: 4504
components:
- type: Transform
- pos: -4.5,15.5
+ pos: 30.5,-1.5
parent: 2
- - uid: 2356
+ - uid: 4505
components:
- type: Transform
- pos: -4.5,14.5
+ pos: 53.5,-7.5
parent: 2
- - uid: 2357
+ - uid: 4506
components:
- type: Transform
- pos: -5.5,14.5
+ pos: 40.5,8.5
parent: 2
- - uid: 2358
+ - uid: 4507
components:
- type: Transform
- pos: -6.5,14.5
+ pos: 21.5,0.5
parent: 2
- - uid: 2359
+ - uid: 4508
components:
- type: Transform
- pos: -7.5,14.5
+ pos: 50.5,-10.5
parent: 2
- - uid: 2360
+ - uid: 4509
components:
- type: Transform
- pos: -8.5,14.5
+ pos: 43.5,-34.5
parent: 2
- - uid: 2361
+ - uid: 4510
components:
- type: Transform
- pos: -9.5,14.5
+ pos: 41.5,-50.5
parent: 2
- - uid: 2362
+ - uid: 4511
components:
- type: Transform
- pos: -9.5,13.5
+ pos: 78.5,-21.5
parent: 2
- - uid: 2363
+ - uid: 4512
components:
- type: Transform
- pos: -10.5,14.5
+ pos: -29.5,77.5
parent: 2
- - uid: 2364
+ - uid: 4513
components:
- type: Transform
- pos: -11.5,14.5
+ pos: 41.5,-46.5
parent: 2
- - uid: 2365
+ - uid: 4514
components:
- type: Transform
- pos: -11.5,15.5
+ pos: 52.5,-31.5
parent: 2
- - uid: 2366
+ - uid: 4515
components:
- type: Transform
- pos: -11.5,16.5
+ pos: 37.5,-3.5
parent: 2
- - uid: 2367
+ - uid: 4516
components:
- type: Transform
- pos: -12.5,14.5
+ pos: 40.5,9.5
parent: 2
- - uid: 2368
+ - uid: 4517
components:
- type: Transform
- pos: -13.5,14.5
+ pos: 23.5,42.5
parent: 2
- - uid: 2369
+ - uid: 4518
components:
- type: Transform
- pos: -14.5,14.5
+ pos: 29.5,-1.5
parent: 2
- - uid: 2370
+ - uid: 4519
components:
- type: Transform
- pos: -15.5,14.5
+ pos: 35.5,-19.5
parent: 2
- - uid: 2371
+ - uid: 4520
components:
- type: Transform
- pos: 12.5,14.5
+ pos: 32.5,5.5
parent: 2
- - uid: 2372
+ - uid: 4521
components:
- type: Transform
- pos: 13.5,14.5
+ pos: 35.5,-3.5
parent: 2
- - uid: 2373
+ - uid: 4522
components:
- type: Transform
- pos: 14.5,14.5
+ pos: 70.5,-24.5
parent: 2
- - uid: 2374
+ - uid: 4523
components:
- type: Transform
- pos: 8.5,13.5
+ pos: 16.5,60.5
parent: 2
- - uid: 2375
+ - uid: 4524
components:
- type: Transform
- pos: -1.5,15.5
+ pos: 17.5,60.5
parent: 2
- - uid: 2376
+ - uid: 4525
components:
- type: Transform
- pos: -1.5,14.5
+ pos: 1.5,57.5
parent: 2
- - uid: 2377
+ - uid: 4526
components:
- type: Transform
- pos: -1.5,13.5
+ pos: -56.5,0.5
parent: 2
- - uid: 2378
+ - uid: 4527
components:
- type: Transform
- pos: -0.5,13.5
+ pos: 24.5,56.5
parent: 2
- - uid: 2379
+ - uid: 4528
components:
- type: Transform
- pos: -0.5,14.5
+ pos: 26.5,56.5
parent: 2
- - uid: 2380
+ - uid: 4529
components:
- type: Transform
- pos: -4.5,17.5
+ pos: -54.5,-15.5
parent: 2
- - uid: 2381
+ - uid: 4530
components:
- type: Transform
- pos: -4.5,18.5
+ pos: 26.5,-13.5
parent: 2
- - uid: 2382
+ - uid: 4531
components:
- type: Transform
- pos: -3.5,18.5
+ pos: 14.5,42.5
parent: 2
- - uid: 2383
+ - uid: 4532
components:
- type: Transform
- pos: -2.5,18.5
+ pos: 21.5,37.5
parent: 2
- - uid: 2384
+ - uid: 4533
components:
- type: Transform
- pos: -1.5,18.5
+ pos: -12.5,23.5
parent: 2
- - uid: 2385
+ - uid: 4534
components:
- type: Transform
- pos: -0.5,18.5
+ pos: -27.5,-68.5
parent: 2
- - uid: 2386
+ - uid: 4535
components:
- type: Transform
- pos: 0.49999997,18.5
+ pos: 19.5,20.5
parent: 2
- - uid: 2387
+ - uid: 4536
components:
- type: Transform
- pos: 1.5,18.5
+ pos: 39.5,50.5
parent: 2
- - uid: 2388
+ - uid: 4537
components:
- type: Transform
- pos: 2.5,18.5
+ pos: -14.5,23.5
parent: 2
- - uid: 2389
+ - uid: 4538
components:
- type: Transform
- pos: 3.5,18.5
+ pos: -27.5,-66.5
parent: 2
- - uid: 2390
+ - uid: 4539
components:
- type: Transform
- pos: 3.5,17.5
+ pos: 21.5,18.5
parent: 2
- - uid: 2391
+ - uid: 4540
components:
- type: Transform
- pos: 4.5,16.5
+ pos: -7.5,-64.5
parent: 2
- - uid: 2392
+ - uid: 4541
components:
- type: Transform
- pos: 5.5,16.5
+ pos: 64.5,25.5
parent: 2
- - uid: 2393
+ - uid: 4542
components:
- type: Transform
- pos: 6.5,16.5
+ pos: -38.5,-9.5
parent: 2
- - uid: 2394
+ - uid: 4543
components:
- type: Transform
- pos: 7.5,16.5
+ pos: -3.5,48.5
parent: 2
- - uid: 2395
+ - uid: 4544
components:
- type: Transform
- pos: 7.5,15.5
+ pos: 14.5,41.5
parent: 2
- - uid: 2396
+ - uid: 4545
components:
- type: Transform
- pos: -8.5,16.5
+ pos: -29.5,91.5
parent: 2
- - uid: 2397
+ - uid: 4546
components:
- type: Transform
- pos: -7.5,16.5
+ pos: 31.5,-60.5
parent: 2
- - uid: 2398
+ - uid: 4547
components:
- type: Transform
- pos: -6.5,16.5
+ pos: 6.5,77.5
parent: 2
- - uid: 2399
+ - uid: 4548
components:
- type: Transform
- pos: -5.5,16.5
+ pos: -3.5,-60.5
parent: 2
- - uid: 2400
+ - uid: 4549
components:
- type: Transform
- pos: -8.5,15.5
+ pos: 17.5,48.5
parent: 2
- - uid: 2401
+ - uid: 4550
components:
- type: Transform
- pos: -4.5,13.5
+ pos: 21.5,31.5
parent: 2
- - uid: 2402
+ - uid: 4551
components:
- type: Transform
- pos: 3.5,13.5
+ pos: -41.5,54.5
parent: 2
- - uid: 2403
+ - uid: 4552
components:
- type: Transform
- pos: 10.5,12.5
+ pos: -14.5,-67.5
parent: 2
- - uid: 2404
+ - uid: 4553
components:
- type: Transform
- pos: 10.5,11.5
+ pos: 28.5,41.5
parent: 2
- - uid: 2405
+ - uid: 4554
components:
- type: Transform
- pos: 10.5,10.5
+ pos: -6.5,-64.5
parent: 2
- - uid: 2406
+ - uid: 4555
components:
- type: Transform
- pos: 10.5,9.5
+ pos: -15.5,-67.5
parent: 2
- - uid: 2407
+ - uid: 4556
components:
- type: Transform
- pos: 10.5,8.5
+ pos: 20.5,30.5
parent: 2
- - uid: 2408
+ - uid: 4557
components:
- type: Transform
- pos: 9.5,9.5
+ pos: -39.5,57.5
parent: 2
- - uid: 2409
+ - uid: 4558
components:
- type: Transform
- pos: 8.5,9.5
+ pos: 41.5,-73.5
parent: 2
- - uid: 2410
+ - uid: 4559
components:
- type: Transform
- pos: 7.5,9.5
+ pos: 16.5,35.5
parent: 2
- - uid: 2411
+ - uid: 4560
components:
- type: Transform
- pos: 6.5,9.5
+ pos: -3.5,46.5
parent: 2
- - uid: 2412
+ - uid: 4561
components:
- type: Transform
- pos: 11.5,9.5
+ pos: 23.5,30.5
parent: 2
- - uid: 2413
+ - uid: 4562
components:
- type: Transform
- pos: 12.5,9.5
+ pos: 19.5,19.5
parent: 2
- - uid: 2414
+ - uid: 4563
components:
- type: Transform
- pos: 13.5,9.5
+ pos: -11.5,-61.5
parent: 2
- - uid: 2415
+ - uid: 4564
components:
- type: Transform
- pos: 14.5,9.5
+ pos: -17.5,49.5
parent: 2
- - uid: 2416
+ - uid: 4565
components:
- type: Transform
- pos: 14.5,3.5
+ pos: -1.5,29.5
parent: 2
- - uid: 2417
+ - uid: 4566
components:
- type: Transform
- pos: 14.5,2.5
+ pos: 1.5,23.5
parent: 2
- - uid: 2418
+ - uid: 4567
components:
- type: Transform
- pos: 14.5,1.5
+ pos: 0.5,23.5
parent: 2
- - uid: 2419
+ - uid: 4568
components:
- type: Transform
- pos: 13.5,1.5
+ pos: 0.5,29.5
parent: 2
- - uid: 2420
+ - uid: 4569
components:
- type: Transform
- pos: 12.5,1.5
+ pos: -0.5,29.5
parent: 2
- - uid: 2421
+ - uid: 4570
components:
- type: Transform
- pos: 11.5,1.5
+ pos: -61.5,10.5
parent: 2
- - uid: 2422
+ - uid: 4571
components:
- type: Transform
- pos: 10.5,1.5
+ pos: -6.5,49.5
parent: 2
- - uid: 2423
+ - uid: 4572
components:
- type: Transform
- pos: 9.5,1.5
+ pos: 28.5,43.5
parent: 2
- - uid: 2424
+ - uid: 4573
components:
- type: Transform
- pos: 8.5,1.5
+ pos: 2.5,-7.5
parent: 2
- - uid: 2425
+ - uid: 4574
components:
- type: Transform
- pos: 14.5,4.5
+ pos: -0.5,23.5
parent: 2
- - uid: 2426
+ - uid: 4575
components:
- type: Transform
- pos: 14.5,5.5
+ pos: -0.5,32.5
parent: 2
- - uid: 2427
+ - uid: 4576
components:
- type: Transform
- pos: 13.5,5.5
+ pos: 0.5,31.5
parent: 2
- - uid: 2428
+ - uid: 4577
components:
- type: Transform
- pos: 8.5,2.5
+ pos: -65.5,28.5
parent: 2
- - uid: 2429
+ - uid: 4578
components:
- type: Transform
- pos: 8.5,3.5
+ pos: -32.5,-6.5
parent: 2
- - uid: 2430
+ - uid: 4579
components:
- type: Transform
- pos: 8.5,4.5
+ pos: -28.5,-15.5
parent: 2
- - uid: 2431
+ - uid: 4580
components:
- type: Transform
- pos: 8.5,5.5
+ pos: -36.5,-12.5
parent: 2
- - uid: 2432
+ - uid: 4581
components:
- type: Transform
- pos: 9.5,5.5
+ pos: -18.5,-14.5
parent: 2
- - uid: 2433
+ - uid: 4582
components:
- type: Transform
- pos: 10.5,5.5
+ pos: 15.5,-19.5
parent: 2
- - uid: 2434
+ - uid: 4583
components:
- type: Transform
- pos: 10.5,6.5
+ pos: -11.5,52.5
parent: 2
- - uid: 2435
+ - uid: 4584
components:
- type: Transform
- pos: 7.5,5.5
+ pos: 37.5,-69.5
parent: 2
- - uid: 2436
+ - uid: 4585
components:
- type: Transform
- pos: 7.5,6.5
+ pos: 34.5,-67.5
parent: 2
- - uid: 2437
+ - uid: 4586
components:
- type: Transform
- pos: 10.5,0.5
+ pos: 40.5,-67.5
parent: 2
- - uid: 2438
+ - uid: 4587
components:
- type: Transform
- pos: 10.5,-0.5
+ pos: -26.5,42.5
parent: 2
- - uid: 2439
+ - uid: 4588
components:
- type: Transform
- pos: 10.5,-1.5
+ pos: -51.5,50.5
parent: 2
- - uid: 2440
+ - uid: 4589
components:
- type: Transform
- pos: 11.5,-1.5
+ pos: 16.5,-19.5
parent: 2
- - uid: 2441
+ - uid: 4590
components:
- type: Transform
- pos: 9.5,-2.5
+ pos: -32.5,-0.5
parent: 2
- - uid: 2442
+ - uid: 4591
components:
- type: Transform
- pos: 9.5,-3.5
+ pos: -42.5,12.5
parent: 2
- - uid: 2443
+ - uid: 4592
components:
- type: Transform
- pos: 9.5,-4.5
+ pos: -65.5,29.5
parent: 2
- - uid: 2444
+ - uid: 4593
components:
- type: Transform
- pos: 8.5,-4.5
+ pos: 27.5,-59.5
parent: 2
- - uid: 2445
+ - uid: 4594
components:
- type: Transform
- pos: 10.5,-4.5
+ pos: -28.5,-30.5
parent: 2
- - uid: 2446
+ - uid: 4595
components:
- type: Transform
- pos: 11.5,-4.5
+ pos: -27.5,11.5
parent: 2
- - uid: 2447
+ - uid: 4596
components:
- type: Transform
- pos: 11.5,-4.5
+ pos: 39.5,-58.5
parent: 2
- - uid: 2448
+ - uid: 4597
components:
- type: Transform
- pos: 12.5,-4.5
+ pos: -32.5,0.5
parent: 2
- - uid: 2449
+ - uid: 4598
components:
- type: Transform
- pos: 13.5,-4.5
+ pos: -41.5,8.5
parent: 2
- - uid: 2450
+ - uid: 4599
components:
- type: Transform
- pos: 14.5,-4.5
+ pos: -29.5,86.5
parent: 2
- - uid: 2451
+ - uid: 4600
components:
- type: Transform
- pos: 8.5,-5.5
+ pos: 75.5,-22.5
parent: 2
- - uid: 2452
+ - uid: 4601
components:
- type: Transform
- pos: 14.5,-3.5
+ pos: -27.5,-30.5
parent: 2
- - uid: 2453
+ - uid: 4602
components:
- type: Transform
- pos: -0.5,10.5
+ pos: 0.5,32.5
parent: 2
- - uid: 2454
+ - uid: 4603
components:
- type: Transform
- pos: -0.5,9.5
+ pos: 35.5,-60.5
parent: 2
- - uid: 2455
+ - uid: 4604
components:
- type: Transform
- pos: -0.5,8.5
+ pos: -32.5,52.5
parent: 2
- - uid: 2456
+ - uid: 4605
components:
- type: Transform
- pos: -0.5,7.5
+ pos: -32.5,53.5
parent: 2
- - uid: 2457
+ - uid: 4606
components:
- type: Transform
- pos: -0.5,6.5
+ pos: -2.5,35.5
parent: 2
- - uid: 2458
+ - uid: 4607
components:
- type: Transform
- pos: -0.5,5.5
+ pos: -41.5,9.5
parent: 2
- - uid: 2459
+ - uid: 4608
components:
- type: Transform
- pos: -0.5,4.5
+ pos: -27.5,22.5
parent: 2
- - uid: 2460
+ - uid: 4609
components:
- type: Transform
- pos: -0.5,3.5
+ pos: 35.5,-70.5
parent: 2
- - uid: 2461
+ - uid: 4610
components:
- type: Transform
- pos: -0.5,2.5
+ pos: -37.5,19.5
parent: 2
- - uid: 2462
+ - uid: 4611
components:
- type: Transform
- pos: -0.5,1.5
+ pos: -66.5,59.5
parent: 2
- - uid: 2463
+ - uid: 4612
components:
- type: Transform
- pos: -0.5,0.5
+ pos: -41.5,7.5
parent: 2
- - uid: 2464
+ - uid: 4613
components:
- type: Transform
- pos: -0.5,-0.5
+ pos: -25.5,42.5
parent: 2
- - uid: 2465
+ - uid: 4614
components:
- type: Transform
- pos: -0.5,-1.5
+ pos: -32.5,54.5
parent: 2
- - uid: 2466
+ - uid: 4615
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: 24.5,-55.5
parent: 2
- - uid: 2467
+ - uid: 4616
components:
- type: Transform
- pos: -0.5,-3.5
+ pos: 3.5,-55.5
parent: 2
- - uid: 2468
+ - uid: 4617
components:
- type: Transform
- pos: -0.5,-4.5
+ pos: -28.5,-28.5
parent: 2
- - uid: 2469
+ - uid: 4618
components:
- type: Transform
- pos: -0.5,-5.5
+ pos: -64.5,-45.5
parent: 2
- - uid: 2470
+ - uid: 4619
components:
- type: Transform
- pos: -0.5,-6.5
+ pos: -29.5,49.5
parent: 2
- - uid: 2471
+ - uid: 4620
components:
- type: Transform
- pos: -0.5,-7.5
+ pos: -41.5,0.5
parent: 2
- - uid: 2472
+ - uid: 4621
components:
- type: Transform
- pos: 10.5,-10.5
+ pos: -34.5,-26.5
parent: 2
- - uid: 2473
+ - uid: 4622
components:
- type: Transform
- pos: 10.5,-11.5
+ pos: 34.5,50.5
parent: 2
- - uid: 2474
+ - uid: 4623
components:
- type: Transform
- pos: 10.5,-12.5
+ pos: 3.5,77.5
parent: 2
- - uid: 2475
+ - uid: 4624
components:
- type: Transform
- pos: 9.5,-12.5
+ pos: -65.5,27.5
parent: 2
- - uid: 2476
+ - uid: 4625
components:
- type: Transform
- pos: 8.5,-12.5
+ pos: -2.5,29.5
parent: 2
- - uid: 2477
+ - uid: 4626
components:
- type: Transform
- pos: 8.5,-11.5
+ pos: -31.5,54.5
parent: 2
- - uid: 2478
- components:
- - type: Transform
- pos: 8.5,-9.5
- parent: 2
- - uid: 2479
+ - uid: 4627
components:
- type: Transform
- pos: 8.5,-13.5
+ pos: -28.5,-29.5
parent: 2
- - uid: 2480
+ - uid: 4628
components:
- type: Transform
- pos: 8.5,-14.5
+ pos: -27.5,12.5
parent: 2
- - uid: 2481
+ - uid: 4629
components:
- type: Transform
- pos: 8.5,-15.5
+ pos: -34.5,19.5
parent: 2
- - uid: 2482
+ - uid: 4630
components:
- type: Transform
- pos: 8.5,-16.5
+ pos: 14.5,-19.5
parent: 2
- - uid: 2483
+ - uid: 4631
components:
- type: Transform
- pos: 9.5,-15.5
+ pos: -27.5,9.5
parent: 2
- - uid: 2484
+ - uid: 4632
components:
- type: Transform
- pos: 10.5,-15.5
+ pos: -36.5,20.5
parent: 2
- - uid: 2485
+ - uid: 4633
components:
- type: Transform
- pos: 11.5,-15.5
+ pos: -5.5,37.5
parent: 2
- - uid: 2486
+ - uid: 4634
components:
- type: Transform
- pos: 12.5,-15.5
+ pos: -9.5,53.5
parent: 2
- - uid: 2487
+ - uid: 4635
components:
- type: Transform
- pos: 13.5,-15.5
+ pos: 30.5,-60.5
parent: 2
- - uid: 2488
+ - uid: 4636
components:
- type: Transform
- pos: 13.5,-14.5
+ pos: 40.5,-68.5
parent: 2
- - uid: 2489
+ - uid: 4637
components:
- type: Transform
- pos: 13.5,-13.5
+ pos: -18.5,58.5
parent: 2
- - uid: 2490
+ - uid: 4638
components:
- type: Transform
- pos: 13.5,-16.5
+ pos: 13.5,-19.5
parent: 2
- - uid: 2491
+ - uid: 4639
components:
- type: Transform
- pos: -12.5,-11.5
+ pos: -26.5,14.5
parent: 2
- - uid: 2492
+ - uid: 4640
components:
- type: Transform
- pos: -12.5,-12.5
+ pos: -59.5,35.5
parent: 2
- - uid: 2493
+ - uid: 4641
components:
- type: Transform
- pos: -12.5,-13.5
+ pos: 31.5,27.5
parent: 2
- - uid: 2494
+ - uid: 4642
components:
- type: Transform
- pos: -12.5,-14.5
+ pos: 35.5,50.5
parent: 2
- - uid: 2495
+ - uid: 4643
components:
- type: Transform
- pos: -12.5,-15.5
+ pos: 35.5,29.5
parent: 2
- - uid: 2496
+ - uid: 4644
components:
- type: Transform
- pos: -12.5,-16.5
+ pos: 35.5,30.5
parent: 2
- - uid: 2497
+ - uid: 4645
components:
- type: Transform
- pos: -11.5,-10.5
+ pos: 43.5,29.5
parent: 2
- - uid: 2498
+ - uid: 4646
components:
- type: Transform
- pos: -11.5,-11.5
+ pos: -36.5,-26.5
parent: 2
- - uid: 2499
+ - uid: 4647
components:
- type: Transform
- pos: -10.5,-11.5
+ pos: -43.5,-27.5
parent: 2
- - uid: 2500
+ - uid: 4648
components:
- type: Transform
- pos: -10.5,-12.5
+ pos: -34.5,-30.5
parent: 2
- - uid: 2501
+ - uid: 4649
components:
- type: Transform
- pos: -10.5,-13.5
+ pos: -25.5,33.5
parent: 2
- - uid: 2502
+ - uid: 4650
components:
- type: Transform
- pos: -10.5,-14.5
+ pos: -27.5,42.5
parent: 2
- - uid: 2503
+ - uid: 4651
components:
- type: Transform
- pos: -10.5,-15.5
+ pos: -64.5,57.5
parent: 2
- - uid: 2504
+ - uid: 4652
components:
- type: Transform
- pos: -10.5,-16.5
+ pos: -41.5,50.5
parent: 2
- - uid: 2505
+ - uid: 4653
components:
- type: Transform
- pos: -8.5,-11.5
+ pos: -44.5,38.5
parent: 2
- - uid: 2506
+ - uid: 4654
components:
- type: Transform
- pos: -8.5,-12.5
+ pos: -12.5,-69.5
parent: 2
- - uid: 2507
+ - uid: 4655
components:
- type: Transform
- pos: -8.5,-13.5
+ pos: -19.5,-71.5
parent: 2
- - uid: 2508
+ - uid: 4656
components:
- type: Transform
- pos: -8.5,-14.5
+ pos: -30.5,8.5
parent: 2
- - uid: 2509
+ - uid: 4657
components:
- type: Transform
- pos: -8.5,-15.5
+ pos: -30.5,23.5
parent: 2
- - uid: 2510
+ - uid: 4658
components:
- type: Transform
- pos: -8.5,-16.5
+ pos: -45.5,-27.5
parent: 2
- - uid: 2511
+ - uid: 4659
components:
- type: Transform
- pos: -9.5,-11.5
+ pos: -23.5,-2.5
parent: 2
- - uid: 2512
+ - uid: 4660
components:
- type: Transform
- pos: -13.5,-11.5
+ pos: -58.5,-8.5
parent: 2
- - uid: 2513
+ - uid: 4661
components:
- type: Transform
- pos: -14.5,-11.5
+ pos: -66.5,55.5
parent: 2
- - uid: 2514
+ - uid: 4662
components:
- type: Transform
- pos: -14.5,-12.5
+ pos: -12.5,49.5
parent: 2
- - uid: 2515
+ - uid: 4663
components:
- type: Transform
- pos: -14.5,-13.5
+ pos: -29.5,-19.5
parent: 2
- - uid: 2516
+ - uid: 4664
components:
- type: Transform
- pos: -14.5,-14.5
+ pos: -25.5,14.5
parent: 2
- - uid: 2517
+ - uid: 4665
components:
- type: Transform
- pos: -14.5,-15.5
+ pos: 17.5,-19.5
parent: 2
- - uid: 2518
+ - uid: 4666
components:
- type: Transform
- pos: -14.5,-16.5
+ pos: -29.5,-7.5
parent: 2
- - uid: 2519
+ - uid: 4667
components:
- type: Transform
- pos: -13.5,-16.5
+ pos: -4.5,-65.5
parent: 2
- - uid: 2520
+ - uid: 4668
components:
- type: Transform
- pos: -11.5,-16.5
+ pos: -16.5,-65.5
parent: 2
- - uid: 2521
+ - uid: 4669
components:
- type: Transform
- pos: -10.5,-16.5
+ pos: 36.5,-69.5
parent: 2
- - uid: 2522
+ - uid: 4670
components:
- type: Transform
- pos: -9.5,-16.5
+ pos: -36.5,19.5
parent: 2
- - uid: 2523
+ - uid: 4671
components:
- type: Transform
- pos: -0.5,-7.5
+ pos: -27.5,5.5
parent: 2
- - uid: 2524
+ - uid: 4672
components:
- type: Transform
- pos: -9.5,-7.5
+ pos: -34.5,5.5
parent: 2
- - uid: 2525
+ - uid: 4673
components:
- type: Transform
- pos: -13.5,-9.5
+ pos: -38.5,-30.5
parent: 2
- - uid: 2526
+ - uid: 4674
components:
- type: Transform
- pos: 8.5,-7.5
+ pos: -43.5,-17.5
parent: 2
- - uid: 2527
+ - uid: 4675
components:
- type: Transform
- pos: 14.5,-8.5
+ pos: -48.5,49.5
parent: 2
- - uid: 2528
+ - uid: 4676
components:
- type: Transform
- pos: 8.5,-8.5
+ pos: -27.5,10.5
parent: 2
- - uid: 2529
+ - uid: 4677
components:
- type: Transform
- pos: -0.5,-8.5
+ pos: -6.5,-59.5
parent: 2
- - uid: 2530
+ - uid: 4678
components:
- type: Transform
- pos: -0.5,-9.5
+ pos: -41.5,47.5
parent: 2
- - uid: 2531
+ - uid: 4679
components:
- type: Transform
- pos: 2.5,-8.5
+ pos: -25.5,25.5
parent: 2
- - uid: 2532
+ - uid: 4680
components:
- type: Transform
- pos: 2.5,-9.5
+ pos: -28.5,25.5
parent: 2
- - uid: 2533
+ - uid: 4681
components:
- type: Transform
- pos: 2.5,-10.5
+ pos: -35.5,-18.5
parent: 2
- - uid: 2534
+ - uid: 4682
components:
- type: Transform
- pos: 2.5,-11.5
+ pos: -27.5,-7.5
parent: 2
- - uid: 2535
+ - uid: 4683
components:
- type: Transform
- pos: -3.5,-8.5
+ pos: -28.5,14.5
parent: 2
- - uid: 2536
+ - uid: 4684
components:
- type: Transform
- pos: -3.5,-9.5
+ pos: -18.5,-5.5
parent: 2
- - uid: 2537
+ - uid: 4685
components:
- type: Transform
- pos: -3.5,-10.5
+ pos: 12.5,-44.5
parent: 2
- - uid: 2538
+ - uid: 4686
components:
- type: Transform
- pos: -3.5,-11.5
+ pos: 28.5,-34.5
parent: 2
- - uid: 2539
+ - uid: 4687
components:
- type: Transform
- pos: -2.5,-11.5
+ pos: -29.5,87.5
parent: 2
- - uid: 2540
+ - uid: 4688
components:
- type: Transform
- pos: -1.5,-11.5
+ pos: -28.5,-6.5
parent: 2
- - uid: 2541
+ - uid: 4689
components:
- type: Transform
- pos: -0.5,-11.5
+ pos: -27.5,50.5
parent: 2
- - uid: 2542
+ - uid: 4690
components:
- type: Transform
- pos: -9.5,-9.5
+ pos: -39.5,-19.5
parent: 2
- - uid: 2543
+ - uid: 4691
components:
- type: Transform
- pos: 1.5,-11.5
+ pos: -42.5,34.5
parent: 2
- - uid: 2544
+ - uid: 4692
components:
- type: Transform
- pos: 0.49999997,-12.5
+ pos: -48.5,32.5
parent: 2
- - uid: 2545
+ - uid: 4693
components:
- type: Transform
- pos: 0.50000006,-13.5
+ pos: -3.5,53.5
parent: 2
- - uid: 2546
+ - uid: 4694
components:
- type: Transform
- pos: 0.49999997,-14.5
+ pos: -48.5,31.5
parent: 2
- - uid: 2547
+ - uid: 4695
components:
- type: Transform
- pos: 0.49999997,-15.5
+ pos: -58.5,23.5
parent: 2
- - uid: 2548
+ - uid: 4696
components:
- type: Transform
- pos: -0.5,-15.5
+ pos: -48.5,33.5
parent: 2
- - uid: 2549
+ - uid: 4697
components:
- type: Transform
- pos: -1.5,-15.5
+ pos: -18.5,62.5
parent: 2
- - uid: 2550
+ - uid: 4698
components:
- type: Transform
- pos: -2.5,-15.5
+ pos: -50.5,11.5
parent: 2
- - uid: 2551
+ - uid: 4699
components:
- type: Transform
- pos: -3.5,-15.5
+ pos: -48.5,30.5
parent: 2
- - uid: 2552
+ - uid: 4700
components:
- type: Transform
- pos: -4.5,-15.5
+ pos: -46.5,30.5
parent: 2
- - uid: 2553
+ - uid: 4701
components:
- type: Transform
- pos: -4.5,-14.5
+ pos: -63.5,35.5
parent: 2
- - uid: 2554
+ - uid: 4702
components:
- type: Transform
- pos: 1.5,-15.5
+ pos: -45.5,13.5
parent: 2
- - uid: 2555
+ - uid: 4703
components:
- type: Transform
- pos: 2.5,-15.5
+ pos: -59.5,7.5
parent: 2
- - uid: 2556
+ - uid: 4704
components:
- type: Transform
- pos: 3.5,-15.5
+ pos: -64.5,8.5
parent: 2
- - uid: 2557
+ - uid: 4705
components:
- type: Transform
- pos: 3.5,-14.5
+ pos: -62.5,7.5
parent: 2
- - uid: 2558
+ - uid: 4706
components:
- type: Transform
- pos: -13.5,-8.5
+ pos: -65.5,-26.5
parent: 2
- - uid: 2559
+ - uid: 4707
components:
- type: Transform
- pos: -9.5,-8.5
+ pos: -45.5,14.5
parent: 2
- - uid: 2560
+ - uid: 4708
components:
- type: Transform
- pos: -5.5,-10.5
+ pos: -63.5,55.5
parent: 2
- - uid: 2561
+ - uid: 4709
components:
- type: Transform
- pos: 7.5,-8.5
+ pos: -33.5,-0.5
parent: 2
- - uid: 2562
+ - uid: 4710
components:
- type: Transform
- pos: -4.5,-10.5
+ pos: -68.5,7.5
parent: 2
- - uid: 2563
+ - uid: 4711
components:
- type: Transform
- pos: -4.5,-11.5
+ pos: -50.5,10.5
parent: 2
- - uid: 2564
+ - uid: 4712
components:
- type: Transform
- pos: -5.5,-11.5
+ pos: -77.5,10.5
parent: 2
- - uid: 2565
+ - uid: 4713
components:
- type: Transform
- pos: -5.5,-12.5
+ pos: -65.5,7.5
parent: 2
- - uid: 2566
+ - uid: 4714
components:
- type: Transform
- pos: -6.5,-10.5
+ pos: -50.5,16.5
parent: 2
- - uid: 2567
+ - uid: 4715
components:
- type: Transform
- pos: -6.5,-11.5
+ pos: -65.5,21.5
parent: 2
- - uid: 2568
+ - uid: 4716
components:
- type: Transform
- pos: 3.5,-10.5
+ pos: -63.5,34.5
parent: 2
- - uid: 2569
+ - uid: 4717
components:
- type: Transform
- pos: 3.5,-11.5
+ pos: -48.5,34.5
parent: 2
- - uid: 2570
+ - uid: 4718
components:
- type: Transform
- pos: 4.5,-10.5
+ pos: -63.5,27.5
parent: 2
- - uid: 2571
+ - uid: 4719
components:
- type: Transform
- pos: 4.5,-9.5
+ pos: -47.5,41.5
parent: 2
- - uid: 2572
+ - uid: 4720
components:
- type: Transform
- pos: 4.5,-11.5
+ pos: -64.5,36.5
parent: 2
- - uid: 2573
+ - uid: 4721
components:
- type: Transform
- pos: 4.5,-12.5
+ pos: -36.5,-14.5
parent: 2
- - uid: 2574
+ - uid: 4722
components:
- type: Transform
- pos: 5.5,-11.5
+ pos: -33.5,-25.5
parent: 2
- - uid: 2575
+ - uid: 4723
components:
- type: Transform
- pos: 5.5,-10.5
+ pos: -29.5,75.5
parent: 2
- - uid: 2576
+ - uid: 4724
components:
- type: Transform
- pos: 4.5,-9.5
+ pos: -9.5,57.5
parent: 2
- - uid: 2577
+ - uid: 4725
components:
- type: Transform
- pos: -46.5,-19.5
+ pos: 37.5,-28.5
parent: 2
- - uid: 2578
+ - uid: 4726
components:
- type: Transform
- pos: -45.5,-19.5
+ pos: -8.5,-59.5
parent: 2
- - uid: 2579
+ - uid: 4727
components:
- type: Transform
- pos: -44.5,-19.5
+ pos: -10.5,84.5
parent: 2
- - uid: 2580
+ - uid: 4728
components:
- type: Transform
- pos: -43.5,-19.5
+ pos: -42.5,42.5
parent: 2
- - uid: 2581
+ - uid: 4729
components:
- type: Transform
- pos: -42.5,-19.5
+ pos: -25.5,-2.5
parent: 2
- - uid: 2582
+ - uid: 4730
components:
- type: Transform
- pos: -41.5,-19.5
+ pos: -66.5,9.5
parent: 2
- - uid: 2583
+ - uid: 4731
components:
- type: Transform
- pos: -40.5,-19.5
+ pos: -52.5,26.5
parent: 2
- - uid: 2584
+ - uid: 4732
components:
- type: Transform
- pos: -39.5,-19.5
+ pos: -4.5,-14.5
parent: 2
- - uid: 2585
+ - uid: 4733
components:
- type: Transform
- pos: -38.5,-19.5
+ pos: -40.5,-19.5
parent: 2
- - uid: 2586
+ - uid: 4734
components:
- type: Transform
- pos: -37.5,-19.5
+ pos: -22.5,-16.5
parent: 2
- - uid: 2587
+ - uid: 4735
components:
- type: Transform
- pos: -36.5,-19.5
+ pos: -68.5,-30.5
parent: 2
- - uid: 2588
+ - uid: 4736
components:
- type: Transform
- pos: -35.5,-19.5
+ pos: -52.5,2.5
parent: 2
- - uid: 2589
+ - uid: 4737
components:
- type: Transform
- pos: -34.5,-19.5
+ pos: -59.5,41.5
parent: 2
- - uid: 2590
+ - uid: 4738
components:
- type: Transform
- pos: -33.5,-19.5
+ pos: -62.5,55.5
parent: 2
- - uid: 2591
+ - uid: 4739
components:
- type: Transform
- pos: -32.5,-19.5
+ pos: -71.5,10.5
parent: 2
- - uid: 2592
+ - uid: 4740
components:
- type: Transform
- pos: -31.5,-19.5
+ pos: -53.5,26.5
parent: 2
- - uid: 2593
+ - uid: 4741
components:
- type: Transform
- pos: -30.5,-19.5
+ pos: -6.5,-14.5
parent: 2
- - uid: 2594
+ - uid: 4742
components:
- type: Transform
- pos: -29.5,-19.5
+ pos: 33.5,-49.5
parent: 2
- - uid: 2595
+ - uid: 4743
components:
- type: Transform
- pos: -28.5,-19.5
+ pos: -27.5,20.5
parent: 2
- - uid: 2596
+ - uid: 4744
components:
- type: Transform
- pos: -27.5,-19.5
+ pos: -42.5,36.5
parent: 2
- - uid: 2597
+ - uid: 4745
components:
- type: Transform
- pos: -26.5,-19.5
+ pos: -41.5,-19.5
parent: 2
- - uid: 2598
+ - uid: 4746
components:
- type: Transform
- pos: -22.5,-15.5
+ pos: -18.5,-15.5
parent: 2
- - uid: 2599
+ - uid: 4747
components:
- type: Transform
- pos: -24.5,-19.5
+ pos: -18.5,-16.5
parent: 2
- - uid: 2600
+ - uid: 4748
components:
- type: Transform
- pos: -23.5,-19.5
+ pos: -71.5,9.5
parent: 2
- - uid: 2601
+ - uid: 4749
components:
- type: Transform
- pos: -23.5,-17.5
+ pos: -7.5,-59.5
parent: 2
- - uid: 2602
+ - uid: 4750
components:
- type: Transform
- pos: -23.5,-16.5
+ pos: -16.5,-80.5
parent: 2
- - uid: 2603
+ - uid: 4751
components:
- type: Transform
- pos: -23.5,-15.5
+ pos: -29.5,73.5
parent: 2
- - uid: 2604
+ - uid: 4752
components:
- type: Transform
- pos: -24.5,-15.5
+ pos: -35.5,32.5
parent: 2
- - uid: 2605
+ - uid: 4753
components:
- type: Transform
- pos: -22.5,-19.5
+ pos: -10.5,31.5
parent: 2
- - uid: 2606
+ - uid: 4754
components:
- type: Transform
- pos: -23.5,-20.5
+ pos: -37.5,-29.5
parent: 2
- - uid: 2607
+ - uid: 4755
components:
- type: Transform
- pos: -23.5,-21.5
+ pos: -44.5,37.5
parent: 2
- - uid: 2608
+ - uid: 4756
components:
- type: Transform
- pos: -27.5,-18.5
+ pos: -10.5,57.5
parent: 2
- - uid: 2609
+ - uid: 4757
components:
- type: Transform
- pos: -27.5,-17.5
+ pos: -4.5,-60.5
parent: 2
- - uid: 2610
+ - uid: 4758
components:
- type: Transform
- pos: -22.5,-14.5
+ pos: -11.5,53.5
parent: 2
- - uid: 2611
+ - uid: 4759
components:
- type: Transform
- pos: -27.5,-15.5
+ pos: 20.5,19.5
parent: 2
- - uid: 2612
+ - uid: 4760
components:
- type: Transform
- pos: -27.5,-14.5
+ pos: 20.5,29.5
parent: 2
- - uid: 2613
+ - uid: 4761
components:
- type: Transform
- pos: -27.5,-13.5
+ pos: -4.5,62.5
parent: 2
- - uid: 2614
+ - uid: 4762
components:
- type: Transform
- pos: -27.5,-12.5
+ pos: -63.5,-40.5
parent: 2
- - uid: 2615
+ - uid: 4763
components:
- type: Transform
- pos: -28.5,-12.5
+ pos: 23.5,-20.5
parent: 2
- - uid: 2616
+ - uid: 4764
components:
- type: Transform
- pos: -29.5,-12.5
+ pos: 29.5,-10.5
parent: 2
- - uid: 2617
+ - uid: 4765
components:
- type: Transform
- pos: -30.5,-12.5
+ pos: -51.5,48.5
parent: 2
- - uid: 2618
+ - uid: 4766
components:
- type: Transform
- pos: -31.5,-12.5
+ pos: 30.5,-10.5
parent: 2
- - uid: 2619
+ - uid: 4767
components:
- type: Transform
- pos: -32.5,-12.5
+ pos: -59.5,-19.5
parent: 2
- - uid: 2620
+ - uid: 4768
components:
- type: Transform
- pos: -31.5,-13.5
+ pos: 45.5,-0.5
parent: 2
- - uid: 2621
+ - uid: 4769
components:
- type: Transform
- pos: -31.5,-14.5
+ pos: -49.5,45.5
parent: 2
- - uid: 2622
+ - uid: 4770
components:
- type: Transform
- pos: -31.5,-15.5
+ pos: -51.5,45.5
parent: 2
- - uid: 2623
+ - uid: 4771
components:
- type: Transform
- pos: -32.5,-11.5
+ pos: -39.5,-65.5
parent: 2
- - uid: 2624
+ - uid: 4772
components:
- type: Transform
- pos: -32.5,-10.5
+ pos: 62.5,-26.5
parent: 2
- - uid: 2625
+ - uid: 4773
components:
- type: Transform
- pos: -32.5,-9.5
+ pos: 62.5,-28.5
parent: 2
- - uid: 2626
+ - uid: 4774
components:
- type: Transform
- pos: -32.5,-8.5
+ pos: 62.5,-23.5
parent: 2
- - uid: 2627
+ - uid: 4775
components:
- type: Transform
- pos: -32.5,-7.5
+ pos: 45.5,3.5
parent: 2
- - uid: 2628
+ - uid: 4776
components:
- type: Transform
- pos: -32.5,-6.5
+ pos: 26.5,-14.5
parent: 2
- - uid: 2629
+ - uid: 4777
components:
- type: Transform
- pos: -32.5,-5.5
+ pos: 62.5,-25.5
parent: 2
- - uid: 2630
+ - uid: 4778
components:
- type: Transform
- pos: -32.5,-4.5
+ pos: 17.5,35.5
parent: 2
- - uid: 2631
+ - uid: 4779
components:
- type: Transform
- pos: -32.5,-3.5
+ pos: 76.5,-21.5
parent: 2
- - uid: 2632
+ - uid: 4780
components:
- type: Transform
- pos: -32.5,-2.5
+ pos: 41.5,-49.5
parent: 2
- - uid: 2633
+ - uid: 4781
components:
- type: Transform
- pos: -32.5,-1.5
+ pos: 43.5,-36.5
parent: 2
- - uid: 2634
+ - uid: 4782
components:
- type: Transform
- pos: -31.5,-1.5
+ pos: 40.5,-7.5
parent: 2
- - uid: 2635
+ - uid: 4783
components:
- type: Transform
- pos: -30.5,-1.5
+ pos: -39.5,-64.5
parent: 2
- - uid: 2636
+ - uid: 4784
components:
- type: Transform
- pos: -29.5,-1.5
+ pos: -50.5,45.5
parent: 2
- - uid: 2637
+ - uid: 4785
components:
- type: Transform
- pos: -28.5,-1.5
+ pos: -52.5,45.5
parent: 2
- - uid: 2638
+ - uid: 4786
components:
- type: Transform
- pos: -27.5,-1.5
+ pos: -45.5,55.5
parent: 2
- - uid: 2639
+ - uid: 4787
components:
- type: Transform
- pos: -26.5,-1.5
+ pos: -56.5,45.5
parent: 2
- - uid: 2640
+ - uid: 4788
components:
- type: Transform
- pos: -26.5,-0.5
+ pos: -45.5,53.5
parent: 2
- - uid: 2641
+ - uid: 4789
components:
- type: Transform
- pos: -25.5,-1.5
+ pos: 31.5,-11.5
parent: 2
- - uid: 2642
+ - uid: 4790
components:
- type: Transform
- pos: -24.5,-1.5
+ pos: -29.5,88.5
parent: 2
- - uid: 2643
+ - uid: 4791
components:
- type: Transform
- pos: -23.5,-1.5
+ pos: 31.5,-19.5
parent: 2
- - uid: 2644
+ - uid: 4792
components:
- type: Transform
- pos: -22.5,-1.5
+ pos: 22.5,-19.5
parent: 2
- - uid: 2645
+ - uid: 4793
components:
- type: Transform
- pos: -21.5,-1.5
+ pos: 21.5,-19.5
parent: 2
- - uid: 2646
+ - uid: 4794
components:
- type: Transform
- pos: -23.5,-0.5
+ pos: 30.5,-19.5
parent: 2
- - uid: 2647
+ - uid: 4795
components:
- type: Transform
- pos: -23.5,0.5
+ pos: 41.5,2.5
parent: 2
- - uid: 2648
+ - uid: 4796
components:
- type: Transform
- pos: -23.5,1.5
+ pos: -64.5,40.5
parent: 2
- - uid: 2649
+ - uid: 4797
components:
- type: Transform
- pos: -22.5,1.5
+ pos: -64.5,-40.5
parent: 2
- - uid: 2650
+ - uid: 4798
components:
- type: Transform
- pos: -21.5,1.5
+ pos: -60.5,-35.5
parent: 2
- - uid: 2651
+ - uid: 4799
components:
- type: Transform
- pos: -21.5,2.5
+ pos: -59.5,-35.5
parent: 2
- - uid: 2652
+ - uid: 4800
components:
- type: Transform
- pos: -28.5,-5.5
+ pos: 39.5,-20.5
parent: 2
- - uid: 2653
+ - uid: 4801
components:
- type: Transform
- pos: -28.5,-5.5
+ pos: 0.5,30.5
parent: 2
- - uid: 2654
+ - uid: 4802
components:
- type: Transform
- pos: -28.5,-4.5
+ pos: 29.5,-19.5
parent: 2
- - uid: 2655
+ - uid: 4803
components:
- type: Transform
- pos: -28.5,-3.5
+ pos: 20.5,-19.5
parent: 2
- - uid: 2656
+ - uid: 4804
components:
- type: Transform
- pos: -28.5,-2.5
+ pos: -60.5,40.5
parent: 2
- - uid: 2657
+ - uid: 4805
components:
- type: Transform
- pos: -27.5,-5.5
+ pos: -53.5,29.5
parent: 2
- - uid: 2658
+ - uid: 4806
components:
- type: Transform
- pos: -28.5,-6.5
+ pos: -65.5,34.5
parent: 2
- - uid: 2659
+ - uid: 4807
components:
- type: Transform
- pos: -28.5,-7.5
+ pos: -65.5,35.5
parent: 2
- - uid: 2660
+ - uid: 4808
components:
- type: Transform
- pos: -28.5,-8.5
+ pos: -65.5,32.5
parent: 2
- - uid: 2661
+ - uid: 4809
components:
- type: Transform
- pos: -31.5,-5.5
+ pos: -66.5,7.5
parent: 2
- - uid: 2662
+ - uid: 4810
components:
- type: Transform
- pos: -30.5,-5.5
+ pos: -50.5,32.5
parent: 2
- - uid: 2663
+ - uid: 4811
components:
- type: Transform
- pos: -29.5,-5.5
+ pos: -50.5,34.5
parent: 2
- - uid: 2664
+ - uid: 4812
components:
- type: Transform
- pos: -32.5,-0.5
+ pos: -48.5,29.5
parent: 2
- - uid: 2665
+ - uid: 4813
components:
- type: Transform
- pos: -32.5,0.5
+ pos: -33.5,14.5
parent: 2
- - uid: 2666
+ - uid: 4814
components:
- type: Transform
- pos: -32.5,1.5
+ pos: -22.5,13.5
parent: 2
- - uid: 2667
+ - uid: 4815
components:
- type: Transform
- pos: -32.5,2.5
+ pos: -25.5,34.5
parent: 2
- - uid: 2668
+ - uid: 4816
components:
- type: Transform
- pos: -39.5,-0.5
+ pos: -54.5,41.5
parent: 2
- - uid: 2669
+ - uid: 4817
components:
- type: Transform
- pos: -39.5,-1.5
+ pos: -46.5,32.5
parent: 2
- - uid: 2670
+ - uid: 4818
components:
- type: Transform
- pos: -40.5,-1.5
+ pos: -6.5,44.5
parent: 2
- - uid: 2671
+ - uid: 4819
components:
- type: Transform
- pos: -41.5,-1.5
+ pos: -49.5,32.5
parent: 2
- - uid: 2672
+ - uid: 4820
components:
- type: Transform
- pos: -41.5,-0.5
+ pos: -58.5,26.5
parent: 2
- - uid: 2673
+ - uid: 4821
components:
- type: Transform
- pos: -41.5,0.5
+ pos: -54.5,40.5
parent: 2
- - uid: 2674
+ - uid: 4822
components:
- type: Transform
- pos: -41.5,1.5
+ pos: -61.5,40.5
parent: 2
- - uid: 2675
+ - uid: 4823
components:
- type: Transform
- pos: -41.5,-2.5
+ pos: -59.5,24.5
parent: 2
- - uid: 2676
+ - uid: 4824
components:
- type: Transform
- pos: -41.5,-3.5
+ pos: -58.5,60.5
parent: 2
- - uid: 2677
+ - uid: 4825
components:
- type: Transform
- pos: -41.5,-4.5
+ pos: -47.5,32.5
parent: 2
- - uid: 2678
+ - uid: 4826
components:
- type: Transform
- pos: -41.5,-5.5
+ pos: -50.5,33.5
parent: 2
- - uid: 2679
+ - uid: 4827
components:
- type: Transform
- pos: -41.5,-6.5
+ pos: -22.5,41.5
parent: 2
- - uid: 2680
+ - uid: 4828
components:
- type: Transform
- pos: -41.5,-7.5
+ pos: -51.5,49.5
parent: 2
- - uid: 2681
+ - uid: 4829
components:
- type: Transform
- pos: -41.5,-8.5
+ pos: -65.5,26.5
parent: 2
- - uid: 2682
+ - uid: 4830
components:
- type: Transform
- pos: -41.5,-9.5
+ pos: -45.5,-15.5
parent: 2
- - uid: 2683
+ - uid: 4831
components:
- type: Transform
- pos: -41.5,-10.5
+ pos: 23.5,-49.5
parent: 2
- - uid: 2684
+ - uid: 4832
components:
- type: Transform
- pos: -41.5,-11.5
+ pos: -64.5,14.5
parent: 2
- - uid: 2685
+ - uid: 4833
components:
- type: Transform
- pos: -42.5,-11.5
+ pos: -47.5,4.5
parent: 2
- - uid: 2686
+ - uid: 4834
components:
- type: Transform
- pos: -43.5,-11.5
+ pos: 20.5,-45.5
parent: 2
- - uid: 2687
+ - uid: 4835
components:
- type: Transform
- pos: -43.5,-12.5
+ pos: -45.5,17.5
parent: 2
- - uid: 2688
+ - uid: 4836
components:
- type: Transform
- pos: -43.5,-13.5
+ pos: -38.5,34.5
parent: 2
- - uid: 2689
+ - uid: 4837
components:
- type: Transform
- pos: -43.5,-14.5
+ pos: -39.5,34.5
parent: 2
- - uid: 2690
+ - uid: 4838
components:
- type: Transform
- pos: -43.5,-15.5
+ pos: -33.5,11.5
parent: 2
- - uid: 2691
+ - uid: 4839
components:
- type: Transform
- pos: -43.5,-16.5
+ pos: -42.5,-19.5
parent: 2
- - uid: 2692
+ - uid: 4840
components:
- type: Transform
- pos: -43.5,-17.5
+ pos: -43.5,-19.5
parent: 2
- - uid: 2693
+ - uid: 4841
components:
- type: Transform
pos: -43.5,-18.5
parent: 2
- - uid: 2694
+ - uid: 4842
components:
- type: Transform
- pos: -43.5,-19.5
+ pos: -47.5,34.5
parent: 2
- - uid: 2695
+ - uid: 4843
components:
- type: Transform
- pos: -36.5,-19.5
+ pos: -57.5,56.5
parent: 2
- - uid: 2696
+ - uid: 4844
components:
- type: Transform
- pos: -36.5,-18.5
+ pos: -56.5,56.5
parent: 2
- - uid: 2697
+ - uid: 4845
components:
- type: Transform
- pos: -36.5,-17.5
+ pos: -23.5,-17.5
parent: 2
- - uid: 2698
+ - uid: 4846
components:
- type: Transform
- pos: -36.5,-16.5
+ pos: -9.5,27.5
parent: 2
- - uid: 2699
+ - uid: 4847
components:
- type: Transform
- pos: -36.5,-15.5
+ pos: 27.5,-57.5
parent: 2
- - uid: 2700
+ - uid: 4848
components:
- type: Transform
- pos: -36.5,-14.5
+ pos: 39.5,-67.5
parent: 2
- - uid: 2701
+ - uid: 4849
components:
- type: Transform
- pos: -36.5,-13.5
+ pos: 31.5,60.5
parent: 2
- - uid: 2702
+ - uid: 4850
components:
- type: Transform
- pos: -36.5,-12.5
+ pos: 62.5,-21.5
parent: 2
- - uid: 2703
+ - uid: 4851
components:
- type: Transform
- pos: -36.5,-11.5
+ pos: 40.5,-39.5
parent: 2
- - uid: 2704
+ - uid: 4852
components:
- type: Transform
- pos: -36.5,-10.5
+ pos: -51.5,-8.5
parent: 2
- - uid: 2705
+ - uid: 4853
components:
- type: Transform
- pos: -36.5,-9.5
+ pos: 74.5,-15.5
parent: 2
- - uid: 2706
+ - uid: 4854
components:
- type: Transform
- pos: -36.5,-8.5
+ pos: -62.5,-40.5
parent: 2
- - uid: 2707
+ - uid: 4855
components:
- type: Transform
- pos: -36.5,-7.5
+ pos: -42.5,35.5
parent: 2
- - uid: 2708
+ - uid: 4856
components:
- type: Transform
- pos: -36.5,-6.5
+ pos: -62.5,-41.5
parent: 2
- - uid: 2709
+ - uid: 4857
components:
- type: Transform
- pos: -36.5,-5.5
+ pos: -6.5,46.5
parent: 2
- - uid: 2710
+ - uid: 4858
components:
- type: Transform
- pos: -36.5,-4.5
+ pos: 28.5,-22.5
parent: 2
- - uid: 2711
+ - uid: 4859
components:
- type: Transform
- pos: -36.5,-3.5
+ pos: 17.5,-52.5
parent: 2
- - uid: 2712
+ - uid: 4860
components:
- type: Transform
- pos: -36.5,-2.5
+ pos: -58.5,56.5
parent: 2
- - uid: 2713
+ - uid: 4861
components:
- type: Transform
- pos: -36.5,-1.5
+ pos: -72.5,5.5
parent: 2
- - uid: 2714
+ - uid: 4862
components:
- type: Transform
- pos: -37.5,-1.5
+ pos: -45.5,22.5
parent: 2
- - uid: 2715
+ - uid: 4863
components:
- type: Transform
- pos: -38.5,-1.5
+ pos: -62.5,14.5
parent: 2
- - uid: 2716
+ - uid: 4864
components:
- type: Transform
- pos: -37.5,-0.5
+ pos: -46.5,-15.5
parent: 2
- - uid: 2717
+ - uid: 4865
components:
- type: Transform
- pos: -37.5,0.5
+ pos: -70.5,-25.5
parent: 2
- - uid: 2718
+ - uid: 4866
components:
- type: Transform
- pos: -37.5,1.5
+ pos: -29.5,-31.5
parent: 2
- - uid: 2719
+ - uid: 4867
components:
- type: Transform
- pos: -40.5,-11.5
+ pos: -49.5,-32.5
parent: 2
- - uid: 2720
+ - uid: 4868
components:
- type: Transform
- pos: -39.5,-11.5
+ pos: -32.5,-44.5
parent: 2
- - uid: 2721
+ - uid: 4869
components:
- type: Transform
- pos: -38.5,-11.5
+ pos: 17.5,-34.5
parent: 2
- - uid: 2722
+ - uid: 4870
components:
- type: Transform
- pos: -37.5,-11.5
+ pos: 17.5,-37.5
parent: 2
- - uid: 2723
+ - uid: 4871
components:
- type: Transform
- pos: -37.5,-15.5
+ pos: 27.5,-38.5
parent: 2
- - uid: 2724
+ - uid: 4872
components:
- type: Transform
- pos: -38.5,-15.5
+ pos: -35.5,-52.5
parent: 2
- - uid: 2725
+ - uid: 4873
components:
- type: Transform
- pos: -39.5,-15.5
+ pos: 9.5,-24.5
parent: 2
- - uid: 2726
+ - uid: 4874
components:
- type: Transform
- pos: -40.5,-15.5
+ pos: -12.5,-33.5
parent: 2
- - uid: 2727
+ - uid: 4875
components:
- type: Transform
- pos: -22.5,-13.5
+ pos: 32.5,31.5
parent: 2
- - uid: 2728
+ - uid: 4876
components:
- type: Transform
- pos: 68.5,17.5
+ pos: -18.5,-28.5
parent: 2
- - uid: 2729
+ - uid: 4877
components:
- type: Transform
- pos: 77.5,-41.5
+ pos: -8.5,-32.5
parent: 2
- - uid: 2730
+ - uid: 4878
components:
- type: Transform
- pos: 77.5,-42.5
+ pos: -70.5,-40.5
parent: 2
- - uid: 2731
+ - uid: 4879
components:
- type: Transform
- pos: 77.5,-43.5
+ pos: -18.5,-29.5
parent: 2
- - uid: 2732
+ - uid: 4880
components:
- type: Transform
- pos: 77.5,-44.5
+ pos: 35.5,31.5
parent: 2
- - uid: 2733
+ - uid: 4881
components:
- type: Transform
- pos: 77.5,-45.5
+ pos: 6.5,-31.5
parent: 2
- - uid: 2734
+ - uid: 4882
components:
- type: Transform
- pos: 77.5,-46.5
+ pos: 17.5,-29.5
parent: 2
- - uid: 2735
+ - uid: 4883
components:
- type: Transform
- pos: 76.5,-44.5
+ pos: 34.5,31.5
parent: 2
- - uid: 2736
+ - uid: 4884
components:
- type: Transform
- pos: 75.5,-44.5
+ pos: 33.5,31.5
parent: 2
- - uid: 2737
+ - uid: 4885
components:
- type: Transform
- pos: 74.5,-44.5
+ pos: 27.5,-22.5
parent: 2
- - uid: 2738
+ - uid: 4886
components:
- type: Transform
- pos: 73.5,-44.5
+ pos: 9.5,-26.5
parent: 2
- - uid: 2739
+ - uid: 4887
components:
- type: Transform
- pos: 72.5,-44.5
+ pos: 27.5,-50.5
parent: 2
- - uid: 2740
+ - uid: 4888
components:
- type: Transform
- pos: 71.5,-44.5
+ pos: 8.5,-24.5
parent: 2
- - uid: 2741
+ - uid: 4889
components:
- type: Transform
- pos: 70.5,-44.5
+ pos: 5.5,-11.5
parent: 2
- - uid: 2742
+ - uid: 4890
components:
- type: Transform
- pos: 69.5,-44.5
+ pos: 12.5,15.5
parent: 2
- - uid: 2743
+ - uid: 4891
components:
- type: Transform
- pos: 73.5,-43.5
+ pos: -14.5,-30.5
parent: 2
- - uid: 2744
+ - uid: 4892
components:
- type: Transform
- pos: 73.5,-42.5
+ pos: -13.5,-53.5
parent: 2
- - uid: 2745
+ - uid: 4893
components:
- type: Transform
- pos: 73.5,-41.5
+ pos: -74.5,-24.5
parent: 2
- - uid: 2746
+ - uid: 4894
components:
- type: Transform
- pos: 73.5,-40.5
+ pos: 11.5,-24.5
parent: 2
- - uid: 2747
+ - uid: 4895
components:
- type: Transform
- pos: 73.5,-39.5
+ pos: -34.5,-52.5
parent: 2
- - uid: 2748
+ - uid: 4896
components:
- type: Transform
- pos: 73.5,-38.5
+ pos: 27.5,-37.5
parent: 2
- - uid: 2749
+ - uid: 4897
components:
- type: Transform
- pos: 73.5,-37.5
+ pos: -13.5,-30.5
parent: 2
- - uid: 2750
+ - uid: 4898
components:
- type: Transform
- pos: 73.5,-45.5
+ pos: 17.5,-36.5
parent: 2
- - uid: 2751
+ - uid: 4899
components:
- type: Transform
- pos: 73.5,-46.5
+ pos: 17.5,-39.5
parent: 2
- - uid: 2752
+ - uid: 4900
components:
- type: Transform
- pos: 73.5,-47.5
+ pos: -18.5,-26.5
parent: 2
- - uid: 2753
+ - uid: 4901
components:
- type: Transform
- pos: 73.5,-48.5
+ pos: -9.5,-32.5
parent: 2
- - uid: 2754
+ - uid: 4902
components:
- type: Transform
- pos: 73.5,-49.5
+ pos: -18.5,-27.5
parent: 2
- - uid: 2755
+ - uid: 4903
components:
- type: Transform
- pos: 73.5,-50.5
+ pos: 65.5,6.5
parent: 2
- - uid: 2756
+ - uid: 4904
components:
- type: Transform
- pos: 72.5,-49.5
+ pos: -76.5,-30.5
parent: 2
- - uid: 2757
+ - uid: 4905
components:
- type: Transform
- pos: 71.5,-49.5
+ pos: -74.5,-25.5
parent: 2
- - uid: 2758
+ - uid: 4906
components:
- type: Transform
- pos: 70.5,-49.5
+ pos: -74.5,-30.5
parent: 2
- - uid: 2759
+ - uid: 4907
components:
- type: Transform
- pos: 69.5,-49.5
+ pos: -75.5,-30.5
parent: 2
- - uid: 2760
+ - uid: 4908
components:
- type: Transform
- pos: 69.5,-43.5
+ pos: -8.5,-30.5
parent: 2
- - uid: 2761
+ - uid: 4909
components:
- type: Transform
- pos: 69.5,-42.5
+ pos: 31.5,-47.5
parent: 2
- - uid: 2762
+ - uid: 4910
components:
- type: Transform
- pos: 69.5,-41.5
+ pos: 19.5,-44.5
parent: 2
- - uid: 2763
+ - uid: 4911
components:
- type: Transform
- pos: 69.5,-40.5
+ pos: 29.5,-37.5
parent: 2
- - uid: 2764
+ - uid: 4912
components:
- type: Transform
- pos: 68.5,-40.5
+ pos: -32.5,-47.5
parent: 2
- - uid: 2765
+ - uid: 4913
components:
- type: Transform
- pos: 67.5,-40.5
+ pos: 3.5,-28.5
parent: 2
- - uid: 2766
+ - uid: 4914
components:
- type: Transform
- pos: 66.5,-40.5
+ pos: 3.5,-29.5
parent: 2
- - uid: 2767
+ - uid: 4915
components:
- type: Transform
- pos: 65.5,-40.5
+ pos: 5.5,-24.5
parent: 2
- - uid: 2768
+ - uid: 4916
components:
- type: Transform
- pos: 64.5,-40.5
+ pos: 20.5,-27.5
parent: 2
- - uid: 2769
+ - uid: 4917
components:
- type: Transform
- pos: 87.5,-14.5
+ pos: 71.5,-15.5
parent: 2
- - uid: 2770
+ - uid: 4918
components:
- type: Transform
- pos: 87.5,-15.5
+ pos: 56.5,-22.5
parent: 2
- - uid: 2771
+ - uid: 4919
components:
- type: Transform
- pos: 87.5,-16.5
+ pos: 27.5,-16.5
parent: 2
- - uid: 2772
+ - uid: 4920
components:
- type: Transform
- pos: 87.5,-17.5
+ pos: -19.5,-67.5
parent: 2
- - uid: 2773
+ - uid: 4921
components:
- type: Transform
- pos: 87.5,-18.5
+ pos: 29.5,11.5
parent: 2
- - uid: 2774
+ - uid: 4922
components:
- type: Transform
- pos: 87.5,-19.5
+ pos: -60.5,37.5
parent: 2
- - uid: 2775
+ - uid: 4923
components:
- type: Transform
- pos: 87.5,-20.5
+ pos: -58.5,36.5
parent: 2
- - uid: 2776
+ - uid: 4924
components:
- type: Transform
- pos: 87.5,-21.5
+ pos: -60.5,38.5
parent: 2
- - uid: 2777
+ - uid: 4925
components:
- type: Transform
- pos: 87.5,-22.5
+ pos: -67.5,-40.5
parent: 2
- - uid: 2778
+ - uid: 4926
components:
- type: Transform
- pos: 87.5,-23.5
+ pos: 62.5,-17.5
parent: 2
- - uid: 2779
+ - uid: 4927
components:
- type: Transform
- pos: 87.5,-24.5
+ pos: 27.5,-3.5
parent: 2
- - uid: 2780
+ - uid: 4928
components:
- type: Transform
- pos: 86.5,-18.5
+ pos: -58.5,-34.5
parent: 2
- - uid: 2781
+ - uid: 4929
components:
- type: Transform
- pos: 85.5,-18.5
+ pos: -62.5,57.5
parent: 2
- - uid: 2782
+ - uid: 4930
components:
- type: Transform
- pos: 84.5,-18.5
+ pos: -31.5,-7.5
parent: 2
- - uid: 2783
+ - uid: 4931
components:
- type: Transform
- pos: 83.5,-18.5
+ pos: -22.5,-20.5
parent: 2
- - uid: 2784
+ - uid: 4932
components:
- type: Transform
- pos: 82.5,-18.5
+ pos: -45.5,-33.5
parent: 2
- - uid: 2785
+ - uid: 4933
components:
- type: Transform
- pos: 81.5,-18.5
+ pos: -29.5,80.5
parent: 2
- - uid: 2786
+ - uid: 4934
components:
- type: Transform
- pos: 80.5,-18.5
+ pos: -29.5,81.5
parent: 2
- - uid: 2787
+ - uid: 4935
components:
- type: Transform
- pos: 79.5,-18.5
+ pos: -6.5,-7.5
parent: 2
- - uid: 2788
+ - uid: 4936
components:
- type: Transform
- pos: 78.5,-18.5
+ pos: -26.5,46.5
parent: 2
- - uid: 2789
+ - uid: 4937
components:
- type: Transform
- pos: 77.5,-18.5
+ pos: -45.5,-30.5
parent: 2
- - uid: 2790
+ - uid: 4938
components:
- type: Transform
- pos: 77.5,-21.5
+ pos: -48.5,-19.5
parent: 2
- - uid: 2791
+ - uid: 4939
components:
- type: Transform
- pos: 78.5,-21.5
+ pos: -43.5,-14.5
parent: 2
- - uid: 2792
+ - uid: 4940
components:
- type: Transform
- pos: 79.5,-21.5
+ pos: -54.5,-31.5
parent: 2
- - uid: 2793
+ - uid: 4941
components:
- type: Transform
- pos: 80.5,-21.5
+ pos: -2.5,-10.5
parent: 2
- - uid: 2794
+ - uid: 4942
components:
- type: Transform
- pos: 81.5,-21.5
+ pos: -39.5,21.5
parent: 2
- - uid: 2795
+ - uid: 4943
components:
- type: Transform
- pos: 82.5,-21.5
+ pos: -31.5,50.5
parent: 2
- - uid: 2796
+ - uid: 4944
components:
- type: Transform
- pos: 83.5,-21.5
+ pos: -11.5,-6.5
parent: 2
- - uid: 2797
+ - uid: 4945
components:
- type: Transform
- pos: 84.5,-21.5
+ pos: -36.5,49.5
parent: 2
- - uid: 2798
+ - uid: 4946
components:
- type: Transform
- pos: 85.5,-21.5
+ pos: -51.5,-28.5
parent: 2
- - uid: 2799
+ - uid: 4947
components:
- type: Transform
- pos: 86.5,-21.5
+ pos: -28.5,-7.5
parent: 2
- - uid: 2800
+ - uid: 4948
components:
- type: Transform
- pos: 88.5,-21.5
+ pos: 6.5,-7.5
parent: 2
- - uid: 2801
+ - uid: 4949
components:
- type: Transform
- pos: 88.5,-18.5
+ pos: -54.5,46.5
parent: 2
- - uid: 2802
+ - uid: 4950
components:
- type: Transform
- pos: 89.5,-15.5
+ pos: -33.5,-14.5
parent: 2
- - uid: 2803
+ - uid: 4951
components:
- type: Transform
- pos: 88.5,-15.5
+ pos: 4.5,-11.5
parent: 2
- - uid: 2804
+ - uid: 4952
components:
- type: Transform
- pos: 88.5,-24.5
+ pos: -58.5,27.5
parent: 2
- - uid: 2805
+ - uid: 4953
components:
- type: Transform
- pos: 89.5,-24.5
+ pos: 49.5,-16.5
parent: 2
- - uid: 2806
+ - uid: 4954
components:
- type: Transform
- pos: 89.5,-25.5
+ pos: -31.5,-52.5
parent: 2
- - uid: 2807
+ - uid: 4955
components:
- type: Transform
- pos: 90.5,-25.5
+ pos: 7.5,7.5
parent: 2
- - uid: 2808
+ - uid: 4956
components:
- type: Transform
- pos: 91.5,-25.5
+ pos: 8.5,-15.5
parent: 2
- - uid: 2809
+ - uid: 4957
components:
- type: Transform
- pos: 92.5,-25.5
+ pos: -61.5,-35.5
parent: 2
- - uid: 2810
+ - uid: 4958
components:
- type: Transform
- pos: 93.5,-25.5
+ pos: 4.5,-26.5
parent: 2
- - uid: 2811
+ - uid: 4959
components:
- type: Transform
- pos: 94.5,-25.5
+ pos: -33.5,-12.5
parent: 2
- - uid: 2812
+ - uid: 4960
components:
- type: Transform
- pos: 94.5,-24.5
+ pos: -57.5,-6.5
parent: 2
- - uid: 2813
+ - uid: 4961
components:
- type: Transform
- pos: 94.5,-23.5
+ pos: -56.5,4.5
parent: 2
- - uid: 2814
+ - uid: 4962
components:
- type: Transform
- pos: 89.5,-14.5
+ pos: -15.5,13.5
parent: 2
- - uid: 2815
+ - uid: 4963
components:
- type: Transform
- pos: 90.5,-14.5
+ pos: -13.5,-25.5
parent: 2
- - uid: 2816
+ - uid: 4964
components:
- type: Transform
- pos: 91.5,-14.5
+ pos: -6.5,-31.5
parent: 2
- - uid: 2817
+ - uid: 4965
components:
- type: Transform
- pos: 92.5,-14.5
+ pos: -18.5,-46.5
parent: 2
- - uid: 2818
+ - uid: 4966
components:
- type: Transform
- pos: 93.5,-14.5
+ pos: 12.5,-3.5
parent: 2
- - uid: 2819
+ - uid: 4967
components:
- type: Transform
- pos: 94.5,-14.5
+ pos: -76.5,6.5
parent: 2
- - uid: 2820
+ - uid: 4968
components:
- type: Transform
- pos: 94.5,-15.5
+ pos: -53.5,14.5
parent: 2
- - uid: 2821
+ - uid: 4969
components:
- type: Transform
- pos: 94.5,-16.5
+ pos: -53.5,35.5
parent: 2
- - uid: 2822
+ - uid: 4970
components:
- type: Transform
- pos: 94.5,-17.5
+ pos: 13.5,-45.5
parent: 2
- - uid: 2823
+ - uid: 4971
components:
- type: Transform
- pos: 94.5,-18.5
+ pos: -29.5,82.5
parent: 2
- - uid: 2824
+ - uid: 4972
components:
- type: Transform
- pos: 94.5,-19.5
+ pos: -29.5,92.5
parent: 2
- - uid: 2825
+ - uid: 4973
components:
- type: Transform
- pos: 94.5,-20.5
+ pos: 5.5,23.5
parent: 2
- - uid: 2826
+ - uid: 4974
components:
- type: Transform
- pos: 94.5,-21.5
+ pos: 6.5,49.5
parent: 2
- - uid: 2827
+ - uid: 4975
components:
- type: Transform
- pos: 94.5,-22.5
+ pos: -50.5,1.5
parent: 2
- - uid: 2828
+ - uid: 4976
components:
- type: Transform
- pos: 94.5,-23.5
+ pos: 14.5,67.5
parent: 2
- - uid: 2829
+ - uid: 4977
components:
- type: Transform
- pos: 71.5,-14.5
+ pos: 80.5,-20.5
parent: 2
- - uid: 2830
+ - uid: 4978
components:
- type: Transform
- pos: 71.5,-15.5
+ pos: 45.5,7.5
parent: 2
- - uid: 2831
+ - uid: 4979
components:
- type: Transform
- pos: 71.5,-16.5
+ pos: -21.5,-80.5
parent: 2
- - uid: 2832
+ - uid: 4980
components:
- type: Transform
- pos: 71.5,-17.5
+ pos: -23.5,-60.5
parent: 2
- - uid: 2833
+ - uid: 4981
components:
- type: Transform
- pos: 71.5,-18.5
+ pos: -51.5,0.5
parent: 2
- - uid: 2834
+ - uid: 4982
components:
- type: Transform
- pos: 71.5,-19.5
+ pos: 11.5,64.5
parent: 2
- - uid: 2835
+ - uid: 4983
components:
- type: Transform
- pos: 71.5,-20.5
+ pos: 6.5,47.5
parent: 2
- - uid: 2836
+ - uid: 4984
components:
- type: Transform
- pos: 71.5,-21.5
+ pos: 7.5,23.5
parent: 2
- - uid: 2837
+ - uid: 4985
components:
- type: Transform
- pos: 71.5,-22.5
+ pos: -45.5,-74.5
parent: 2
- - uid: 2838
+ - uid: 4986
components:
- type: Transform
- pos: 71.5,-23.5
+ pos: -22.5,-31.5
parent: 2
- - uid: 2839
+ - uid: 4987
components:
- type: Transform
- pos: 71.5,-24.5
+ pos: -26.5,1.5
parent: 2
- - uid: 2840
+ - uid: 4988
components:
- type: Transform
- pos: 70.5,-18.5
+ pos: -32.5,26.5
parent: 2
- - uid: 2841
+ - uid: 4989
components:
- type: Transform
- pos: 69.5,-18.5
+ pos: -41.5,11.5
parent: 2
- - uid: 2842
+ - uid: 4990
components:
- type: Transform
- pos: 68.5,-18.5
+ pos: -63.5,36.5
parent: 2
- - uid: 2843
+ - uid: 4991
components:
- type: Transform
- pos: 67.5,-18.5
+ pos: -47.5,42.5
parent: 2
- - uid: 2844
+ - uid: 4992
components:
- type: Transform
- pos: 66.5,-18.5
+ pos: 4.5,-14.5
parent: 2
- - uid: 2845
+ - uid: 4993
components:
- type: Transform
- pos: 65.5,-18.5
+ pos: -55.5,24.5
parent: 2
- - uid: 2846
+ - uid: 4994
components:
- type: Transform
- pos: 65.5,-21.5
+ pos: -54.5,26.5
parent: 2
- - uid: 2847
+ - uid: 4995
components:
- type: Transform
- pos: 66.5,-21.5
+ pos: -74.5,-29.5
parent: 2
- - uid: 2848
+ - uid: 4996
components:
- type: Transform
- pos: 67.5,-21.5
+ pos: -71.5,11.5
parent: 2
- - uid: 2849
+ - uid: 4997
components:
- type: Transform
- pos: 68.5,-21.5
+ pos: -18.5,-8.5
parent: 2
- - uid: 2850
+ - uid: 4998
components:
- type: Transform
- pos: 69.5,-21.5
+ pos: 40.5,-59.5
parent: 2
- - uid: 2851
+ - uid: 4999
components:
- type: Transform
- pos: 70.5,-21.5
+ pos: -41.5,42.5
parent: 2
- - uid: 2852
+ - uid: 5000
components:
- type: Transform
- pos: 71.5,-21.5
+ pos: -20.5,-60.5
parent: 2
- - uid: 2853
+ - uid: 5001
components:
- type: Transform
- pos: 72.5,-21.5
+ pos: -1.5,-64.5
parent: 2
- - uid: 2854
+ - uid: 5002
components:
- type: Transform
- pos: 73.5,-21.5
+ pos: 72.5,-15.5
parent: 2
- - uid: 2855
+ - uid: 5003
components:
- type: Transform
- pos: 74.5,-21.5
+ pos: 72.5,-18.5
parent: 2
- - uid: 2856
+ - uid: 5004
components:
- type: Transform
- pos: 75.5,-21.5
+ pos: 54.5,-40.5
parent: 2
- - uid: 2857
+ - uid: 5005
components:
- type: Transform
- pos: 75.5,-18.5
+ pos: 52.5,-38.5
parent: 2
- - uid: 2858
+ - uid: 5006
components:
- type: Transform
- pos: 74.5,-18.5
+ pos: -48.5,48.5
parent: 2
- - uid: 2859
+ - uid: 5007
components:
- type: Transform
- pos: 73.5,-18.5
+ pos: 34.5,-19.5
parent: 2
- - uid: 2860
+ - uid: 5008
components:
- type: Transform
- pos: 72.5,-18.5
+ pos: 75.5,-15.5
parent: 2
- - uid: 2861
+ - uid: 5009
components:
- type: Transform
- pos: 71.5,-18.5
+ pos: 39.5,-7.5
parent: 2
- - uid: 2862
+ - uid: 5010
components:
- type: Transform
- pos: 70.5,-18.5
+ pos: -50.5,-2.5
parent: 2
- - uid: 2863
+ - uid: 5011
components:
- type: Transform
- pos: -38.5,36.5
+ pos: 30.5,-11.5
parent: 2
- - uid: 2864
+ - uid: 5012
components:
- type: Transform
- pos: -38.5,35.5
+ pos: -46.5,45.5
parent: 2
- - uid: 2865
+ - uid: 5013
components:
- type: Transform
- pos: -38.5,34.5
+ pos: 31.5,-55.5
parent: 2
- - uid: 2866
+ - uid: 5014
components:
- type: Transform
- pos: -38.5,33.5
+ pos: 70.5,-21.5
parent: 2
- - uid: 2867
+ - uid: 5015
components:
- type: Transform
- pos: -38.5,32.5
+ pos: 35.5,-12.5
parent: 2
- - uid: 2868
+ - uid: 5016
components:
- type: Transform
- pos: -38.5,31.5
+ pos: 6.5,36.5
parent: 2
- - uid: 2869
+ - uid: 5017
components:
- type: Transform
- pos: -39.5,34.5
+ pos: -55.5,-3.5
parent: 2
- - uid: 2870
+ - uid: 5018
components:
- type: Transform
- pos: -40.5,34.5
+ pos: 13.5,31.5
parent: 2
- - uid: 2871
+ - uid: 5019
components:
- type: Transform
- pos: -37.5,32.5
+ pos: -26.5,-73.5
parent: 2
- - uid: 2872
+ - uid: 5020
components:
- type: Transform
- pos: -40.5,30.5
+ pos: -36.5,-60.5
parent: 2
- - uid: 2873
+ - uid: 5021
components:
- type: Transform
- pos: -40.5,29.5
+ pos: 28.5,-66.5
parent: 2
- - uid: 2874
+ - uid: 5022
components:
- type: Transform
- pos: -40.5,28.5
+ pos: -5.5,49.5
parent: 2
- - uid: 2875
+ - uid: 5023
components:
- type: Transform
- pos: -39.5,28.5
+ pos: -7.5,51.5
parent: 2
- - uid: 2876
+ - uid: 5024
components:
- type: Transform
- pos: -38.5,28.5
+ pos: -32.5,-18.5
parent: 2
- - uid: 2877
+ - uid: 5025
components:
- type: Transform
- pos: -38.5,27.5
+ pos: -36.5,-8.5
parent: 2
- - uid: 2878
+ - uid: 5026
components:
- type: Transform
- pos: -37.5,27.5
+ pos: -64.5,53.5
parent: 2
- - uid: 2879
+ - uid: 5027
components:
- type: Transform
- pos: -37.5,26.5
+ pos: 36.5,-55.5
parent: 2
- - uid: 2880
+ - uid: 5028
components:
- type: Transform
- pos: -39.5,38.5
+ pos: -25.5,-52.5
parent: 2
- - uid: 2881
+ - uid: 5029
components:
- type: Transform
- pos: -39.5,37.5
+ pos: -57.5,49.5
parent: 2
- - uid: 2882
+ - uid: 5030
components:
- type: Transform
- pos: -40.5,37.5
+ pos: 42.5,-12.5
parent: 2
- - uid: 2883
+ - uid: 5031
components:
- type: Transform
- pos: -41.5,37.5
+ pos: 29.5,-14.5
parent: 2
- - uid: 2884
+ - uid: 5032
components:
- type: Transform
- pos: -42.5,37.5
+ pos: -14.5,14.5
parent: 2
- - uid: 2885
+ - uid: 5033
components:
- type: Transform
- pos: -43.5,37.5
+ pos: 3.5,18.5
parent: 2
- - uid: 2886
+ - uid: 5034
components:
- type: Transform
- pos: -44.5,37.5
+ pos: 27.5,-39.5
parent: 2
- - uid: 2887
+ - uid: 5035
components:
- type: Transform
- pos: -44.5,38.5
+ pos: 3.5,19.5
parent: 2
- - uid: 2888
+ - uid: 5036
components:
- type: Transform
- pos: -44.5,39.5
+ pos: 4.5,19.5
parent: 2
- - uid: 2889
+ - uid: 5037
components:
- type: Transform
- pos: -44.5,40.5
+ pos: 5.5,19.5
parent: 2
- - uid: 2890
+ - uid: 5038
components:
- type: Transform
- pos: -44.5,41.5
+ pos: 10.5,15.5
parent: 2
- - uid: 2891
+ - uid: 5039
components:
- type: Transform
- pos: -44.5,42.5
+ pos: -1.5,17.5
parent: 2
- - uid: 2892
+ - uid: 5040
components:
- type: Transform
- pos: -43.5,42.5
+ pos: -3.5,19.5
parent: 2
- - uid: 2893
+ - uid: 5041
components:
- type: Transform
- pos: -42.5,42.5
+ pos: 11.5,15.5
parent: 2
- - uid: 2894
+ - uid: 5042
components:
- type: Transform
- pos: -41.5,42.5
+ pos: -5.5,19.5
parent: 2
- - uid: 2895
+ - uid: 5043
components:
- type: Transform
- pos: -40.5,42.5
+ pos: -41.5,15.5
parent: 2
- - uid: 2896
+ - uid: 5044
components:
- type: Transform
- pos: -39.5,42.5
+ pos: 16.5,-24.5
parent: 2
- - uid: 2897
+ - uid: 5045
components:
- type: Transform
- pos: -38.5,42.5
+ pos: -77.5,5.5
parent: 2
- - uid: 2898
+ - uid: 5046
components:
- type: Transform
- pos: -37.5,42.5
+ pos: -52.5,17.5
parent: 2
- - uid: 2899
+ - uid: 5047
components:
- type: Transform
- pos: -36.5,42.5
+ pos: -58.5,6.5
parent: 2
- - uid: 2900
+ - uid: 5048
components:
- type: Transform
- pos: -35.5,42.5
+ pos: 20.5,-28.5
parent: 2
- - uid: 2901
+ - uid: 5049
components:
- type: Transform
- pos: -35.5,41.5
+ pos: -0.5,-33.5
parent: 2
- - uid: 2902
+ - uid: 5050
components:
- type: Transform
- pos: -35.5,40.5
+ pos: -63.5,33.5
parent: 2
- - uid: 2903
+ - uid: 5051
components:
- type: Transform
- pos: -35.5,39.5
+ pos: 25.5,-23.5
parent: 2
- - uid: 2904
+ - uid: 5052
components:
- type: Transform
- pos: -35.5,38.5
+ pos: -35.5,57.5
parent: 2
- - uid: 2905
+ - uid: 5053
components:
- type: Transform
- pos: -35.5,37.5
+ pos: -20.5,63.5
parent: 2
- - uid: 2906
+ - uid: 5054
components:
- type: Transform
- pos: -35.5,36.5
+ pos: -11.5,-19.5
parent: 2
- - uid: 2907
+ - uid: 5055
components:
- type: Transform
- pos: -35.5,35.5
+ pos: 41.5,-32.5
parent: 2
- - uid: 2908
+ - uid: 5056
components:
- type: Transform
- pos: -35.5,34.5
+ pos: 43.5,-33.5
parent: 2
- - uid: 2909
+ - uid: 5057
components:
- type: Transform
- pos: -35.5,33.5
+ pos: 41.5,-51.5
parent: 2
- - uid: 2910
+ - uid: 5058
components:
- type: Transform
- pos: -35.5,32.5
+ pos: 29.5,-15.5
parent: 2
- - uid: 2911
+ - uid: 5059
components:
- type: Transform
- pos: -35.5,31.5
+ pos: 14.5,60.5
parent: 2
- - uid: 2912
+ - uid: 5060
components:
- type: Transform
- pos: -35.5,30.5
+ pos: 14.5,68.5
parent: 2
- - uid: 2913
+ - uid: 5061
components:
- type: Transform
- pos: -35.5,29.5
+ pos: 17.5,66.5
parent: 2
- - uid: 2914
+ - uid: 5062
components:
- type: Transform
- pos: -35.5,28.5
+ pos: 31.5,59.5
parent: 2
- - uid: 2915
+ - uid: 5063
components:
- type: Transform
- pos: -35.5,27.5
+ pos: 38.5,-12.5
parent: 2
- - uid: 2916
+ - uid: 5064
components:
- type: Transform
- pos: -35.5,26.5
+ pos: -45.5,48.5
parent: 2
- - uid: 2917
+ - uid: 5065
components:
- type: Transform
- pos: -35.5,25.5
+ pos: -16.5,63.5
parent: 2
- - uid: 2918
+ - uid: 5066
components:
- type: Transform
- pos: -35.5,24.5
+ pos: -51.5,53.5
parent: 2
- - uid: 2919
+ - uid: 5067
components:
- type: Transform
- pos: -35.5,23.5
+ pos: -57.5,50.5
parent: 2
- - uid: 2920
+ - uid: 5068
components:
- type: Transform
- pos: -36.5,23.5
+ pos: -58.5,45.5
parent: 2
- - uid: 2921
+ - uid: 5069
components:
- type: Transform
- pos: -37.5,23.5
+ pos: -63.5,-19.5
parent: 2
- - uid: 2922
+ - uid: 5070
components:
- type: Transform
- pos: -38.5,23.5
+ pos: 42.5,-0.5
parent: 2
- - uid: 2923
+ - uid: 5071
components:
- type: Transform
- pos: -34.5,23.5
+ pos: 4.5,35.5
parent: 2
- - uid: 2924
+ - uid: 5072
components:
- type: Transform
- pos: -33.5,23.5
+ pos: 15.5,30.5
parent: 2
- - uid: 2925
+ - uid: 5073
components:
- type: Transform
- pos: -32.5,23.5
+ pos: 40.5,-12.5
parent: 2
- - uid: 2926
+ - uid: 5074
components:
- type: Transform
- pos: -31.5,23.5
+ pos: 38.5,-9.5
parent: 2
- - uid: 2927
+ - uid: 5075
components:
- type: Transform
- pos: -30.5,23.5
+ pos: 44.5,-20.5
parent: 2
- - uid: 2928
+ - uid: 5076
components:
- type: Transform
- pos: -29.5,23.5
+ pos: 64.5,-29.5
parent: 2
- - uid: 2929
+ - uid: 5077
components:
- type: Transform
- pos: -28.5,23.5
+ pos: -61.5,43.5
parent: 2
- - uid: 2930
+ - uid: 5078
components:
- type: Transform
- pos: -30.5,8.5
+ pos: -51.5,42.5
parent: 2
- - uid: 2931
+ - uid: 5079
components:
- type: Transform
- pos: -30.5,9.5
+ pos: 48.5,-51.5
parent: 2
- - uid: 2932
+ - uid: 5080
components:
- type: Transform
- pos: -30.5,10.5
+ pos: 59.5,-11.5
parent: 2
- - uid: 2933
+ - uid: 5081
components:
- type: Transform
- pos: -30.5,11.5
+ pos: 14.5,43.5
parent: 2
- - uid: 2934
+ - uid: 5082
components:
- type: Transform
- pos: -30.5,12.5
+ pos: 21.5,38.5
parent: 2
- - uid: 2935
+ - uid: 5083
components:
- type: Transform
- pos: -30.5,13.5
+ pos: 15.5,31.5
parent: 2
- - uid: 2936
+ - uid: 5084
components:
- type: Transform
- pos: -30.5,14.5
+ pos: 2.5,35.5
parent: 2
- - uid: 2937
+ - uid: 5085
components:
- type: Transform
- pos: -30.5,15.5
+ pos: 26.5,35.5
parent: 2
- - uid: 2938
+ - uid: 5086
components:
- type: Transform
- pos: -30.5,16.5
+ pos: 31.5,28.5
parent: 2
- - uid: 2939
+ - uid: 5087
components:
- type: Transform
- pos: -30.5,17.5
+ pos: -19.5,63.5
parent: 2
- - uid: 2940
+ - uid: 5088
components:
- type: Transform
- pos: -30.5,18.5
+ pos: 34.5,-60.5
parent: 2
- - uid: 2941
+ - uid: 5089
components:
- type: Transform
- pos: -30.5,19.5
+ pos: -28.5,68.5
parent: 2
- - uid: 2942
+ - uid: 5090
components:
- type: Transform
- pos: -30.5,20.5
+ pos: -37.5,42.5
parent: 2
- - uid: 2943
+ - uid: 5091
components:
- type: Transform
- pos: -30.5,21.5
+ pos: -65.5,50.5
parent: 2
- - uid: 2944
+ - uid: 5092
components:
- type: Transform
- pos: -30.5,22.5
+ pos: -65.5,49.5
parent: 2
- - uid: 2945
+ - uid: 5093
components:
- type: Transform
- pos: -30.5,17.5
+ pos: -48.5,41.5
parent: 2
- - uid: 2946
+ - uid: 5094
components:
- type: Transform
- pos: -29.5,17.5
+ pos: -36.5,12.5
parent: 2
- - uid: 2947
+ - uid: 5095
components:
- type: Transform
- pos: -28.5,17.5
+ pos: -23.5,-3.5
parent: 2
- - uid: 2948
+ - uid: 5096
components:
- type: Transform
- pos: -27.5,17.5
+ pos: -54.5,-29.5
parent: 2
- - uid: 2949
+ - uid: 5097
components:
- type: Transform
- pos: -26.5,17.5
+ pos: -12.5,-7.5
parent: 2
- - uid: 2950
+ - uid: 5098
components:
- type: Transform
- pos: -25.5,17.5
+ pos: -40.5,-24.5
parent: 2
- - uid: 2951
+ - uid: 5099
components:
- type: Transform
- pos: -24.5,17.5
+ pos: -23.5,-4.5
parent: 2
- - uid: 2952
+ - uid: 5100
components:
- type: Transform
- pos: -28.5,25.5
+ pos: 83.5,9.5
parent: 2
- - uid: 2953
+ - uid: 5101
components:
- type: Transform
- pos: -28.5,24.5
+ pos: -53.5,-32.5
parent: 2
- - uid: 2954
+ - uid: 5102
components:
- type: Transform
- pos: -27.5,25.5
+ pos: 2.5,-19.5
parent: 2
- - uid: 2955
+ - uid: 5103
components:
- type: Transform
- pos: -26.5,25.5
+ pos: -52.5,21.5
parent: 2
- - uid: 2956
+ - uid: 5104
components:
- type: Transform
- pos: -25.5,25.5
+ pos: 37.5,42.5
parent: 2
- - uid: 2957
+ - uid: 5105
components:
- type: Transform
- pos: -24.5,25.5
+ pos: -57.5,8.5
parent: 2
- - uid: 2958
+ - uid: 5106
components:
- type: Transform
- pos: -24.5,26.5
+ pos: -52.5,5.5
parent: 2
- - uid: 2959
+ - uid: 5107
components:
- type: Transform
- pos: -23.5,26.5
+ pos: 32.5,27.5
parent: 2
- - uid: 2960
+ - uid: 5108
components:
- type: Transform
- pos: -22.5,26.5
+ pos: -63.5,14.5
parent: 2
- - uid: 2961
+ - uid: 5109
components:
- type: Transform
- pos: -41.5,25.5
+ pos: -46.5,23.5
parent: 2
- - uid: 2962
+ - uid: 5110
components:
- type: Transform
- pos: -42.5,25.5
+ pos: -48.5,23.5
parent: 2
- - uid: 2963
+ - uid: 5111
components:
- type: Transform
- pos: -42.5,26.5
+ pos: -22.5,-25.5
parent: 2
- - uid: 2964
+ - uid: 5112
components:
- type: Transform
- pos: -42.5,27.5
+ pos: 21.5,45.5
parent: 2
- - uid: 2965
+ - uid: 5113
components:
- type: Transform
- pos: -42.5,28.5
+ pos: -1.5,34.5
parent: 2
- - uid: 2966
+ - uid: 5114
components:
- type: Transform
- pos: -42.5,29.5
+ pos: -23.5,55.5
parent: 2
- - uid: 2967
+ - uid: 5115
components:
- type: Transform
- pos: -42.5,30.5
+ pos: -2.5,62.5
parent: 2
- - uid: 2968
+ - uid: 5116
components:
- type: Transform
- pos: -42.5,31.5
+ pos: -29.5,95.5
parent: 2
- - uid: 2969
+ - uid: 5117
components:
- type: Transform
- pos: -42.5,32.5
+ pos: -27.5,-31.5
parent: 2
- - uid: 2970
+ - uid: 5118
components:
- type: Transform
- pos: -42.5,33.5
+ pos: 11.5,77.5
parent: 2
- - uid: 2971
+ - uid: 5119
components:
- type: Transform
- pos: -42.5,34.5
+ pos: 54.5,-2.5
parent: 2
- - uid: 2972
+ - uid: 5120
components:
- type: Transform
- pos: -42.5,35.5
+ pos: 4.5,-34.5
parent: 2
- - uid: 2973
+ - uid: 5121
components:
- type: Transform
- pos: -42.5,36.5
+ pos: 35.5,28.5
parent: 2
- - uid: 2974
+ - uid: 5122
components:
- type: Transform
- pos: -37.5,43.5
+ pos: 37.5,30.5
parent: 2
- - uid: 2975
+ - uid: 5123
components:
- type: Transform
- pos: -13.5,83.5
+ pos: 4.5,-10.5
parent: 2
- - uid: 2976
+ - uid: 5124
components:
- type: Transform
- pos: -11.5,82.5
+ pos: -63.5,21.5
parent: 2
- - uid: 2977
+ - uid: 5125
components:
- type: Transform
- pos: -11.5,83.5
+ pos: -30.5,32.5
parent: 2
- - uid: 2978
+ - uid: 5126
components:
- type: Transform
- pos: -11.5,84.5
+ pos: -22.5,10.5
parent: 2
- - uid: 2979
+ - uid: 5127
components:
- type: Transform
- pos: -11.5,85.5
+ pos: -54.5,37.5
parent: 2
- - uid: 2980
+ - uid: 5128
components:
- type: Transform
- pos: -11.5,86.5
+ pos: -11.5,37.5
parent: 2
- - uid: 2981
+ - uid: 5129
components:
- type: Transform
- pos: -11.5,87.5
+ pos: 38.5,30.5
parent: 2
- - uid: 2982
+ - uid: 5130
components:
- type: Transform
- pos: -11.5,88.5
+ pos: -2.5,50.5
parent: 2
- - uid: 2983
+ - uid: 5131
components:
- type: Transform
- pos: -11.5,89.5
+ pos: -34.5,61.5
parent: 2
- - uid: 2984
+ - uid: 5132
components:
- type: Transform
- pos: -11.5,90.5
+ pos: 37.5,41.5
parent: 2
- - uid: 2985
+ - uid: 5133
components:
- type: Transform
- pos: -11.5,91.5
+ pos: 35.5,32.5
parent: 2
- - uid: 2986
+ - uid: 5134
components:
- type: Transform
- pos: -11.5,92.5
+ pos: 17.5,23.5
parent: 2
- - uid: 2987
+ - uid: 5135
components:
- type: Transform
- pos: -11.5,93.5
+ pos: 26.5,29.5
parent: 2
- - uid: 2988
+ - uid: 5136
components:
- type: Transform
- pos: -11.5,94.5
+ pos: 34.5,41.5
parent: 2
- - uid: 2989
+ - uid: 5137
components:
- type: Transform
- pos: -11.5,95.5
+ pos: 6.5,44.5
parent: 2
- - uid: 2990
+ - uid: 5138
components:
- type: Transform
- pos: -11.5,96.5
+ pos: -7.5,-70.5
parent: 2
- - uid: 2991
+ - uid: 5139
components:
- type: Transform
- pos: -11.5,97.5
+ pos: -6.5,-80.5
parent: 2
- - uid: 2992
+ - uid: 5140
components:
- type: Transform
- pos: -11.5,98.5
+ pos: -1.5,-70.5
parent: 2
- - uid: 2993
+ - uid: 5141
components:
- type: Transform
- pos: -11.5,84.5
+ pos: -17.5,-65.5
parent: 2
- - uid: 2994
+ - uid: 5142
components:
- type: Transform
- pos: -10.5,84.5
+ pos: -41.5,37.5
parent: 2
- - uid: 2995
+ - uid: 5143
components:
- type: Transform
- pos: -9.5,84.5
+ pos: 35.5,-71.5
parent: 2
- - uid: 2996
+ - uid: 5144
components:
- type: Transform
- pos: -8.5,84.5
+ pos: 35.5,-72.5
parent: 2
- - uid: 2997
+ - uid: 5145
components:
- type: Transform
- pos: -11.5,79.5
+ pos: 40.5,-65.5
parent: 2
- - uid: 2998
+ - uid: 5146
components:
- type: Transform
- pos: -11.5,80.5
+ pos: 11.5,1.5
parent: 2
- - uid: 2999
+ - uid: 5147
components:
- type: Transform
- pos: -11.5,81.5
+ pos: -6.5,16.5
parent: 2
- - uid: 3000
+ - uid: 5148
components:
- type: Transform
- pos: -11.5,78.5
+ pos: -5.5,16.5
parent: 2
- - uid: 3001
+ - uid: 5149
components:
- type: Transform
- pos: -11.5,77.5
+ pos: -13.5,-13.5
parent: 2
- - uid: 3002
+ - uid: 5150
components:
- type: Transform
- pos: -11.5,76.5
+ pos: 7.5,-14.5
parent: 2
- - uid: 3003
+ - uid: 5151
components:
- type: Transform
- pos: -11.5,75.5
+ pos: -0.5,-39.5
parent: 2
- - uid: 3004
+ - uid: 5152
components:
- type: Transform
- pos: -11.5,74.5
+ pos: 36.5,41.5
parent: 2
- - uid: 3005
+ - uid: 5153
components:
- type: Transform
- pos: -11.5,73.5
+ pos: 39.5,30.5
parent: 2
- - uid: 3006
+ - uid: 5154
components:
- type: Transform
- pos: -11.5,72.5
+ pos: -2.5,39.5
parent: 2
- - uid: 3007
+ - uid: 5155
components:
- type: Transform
- pos: -11.5,71.5
+ pos: -60.5,27.5
parent: 2
- - uid: 3008
+ - uid: 5156
components:
- type: Transform
- pos: -10.5,77.5
+ pos: -51.5,8.5
parent: 2
- - uid: 3009
+ - uid: 5157
components:
- type: Transform
- pos: -9.5,77.5
+ pos: -35.5,9.5
parent: 2
- - uid: 3010
+ - uid: 5158
components:
- type: Transform
- pos: -8.5,77.5
+ pos: -29.5,-14.5
parent: 2
- - uid: 3011
+ - uid: 5159
components:
- type: Transform
- pos: -12.5,77.5
+ pos: -43.5,42.5
parent: 2
- - uid: 3012
+ - uid: 5160
components:
- type: Transform
- pos: -13.5,77.5
+ pos: -22.5,-60.5
parent: 2
- - uid: 3013
+ - uid: 5161
components:
- type: Transform
- pos: -14.5,77.5
+ pos: -0.5,-64.5
parent: 2
- - uid: 3014
+ - uid: 5162
components:
- type: Transform
- pos: -12.5,80.5
+ pos: 35.5,27.5
parent: 2
- - uid: 3015
+ - uid: 5163
components:
- type: Transform
- pos: -13.5,80.5
+ pos: 33.5,-19.5
parent: 2
- - uid: 3016
+ - uid: 5164
components:
- type: Transform
- pos: -13.5,81.5
+ pos: 19.5,67.5
parent: 2
- - uid: 3017
+ - uid: 5165
components:
- type: Transform
- pos: -13.5,82.5
+ pos: 38.5,-2.5
parent: 2
- - uid: 3018
+ - uid: 5166
components:
- type: Transform
- pos: -13.5,83.5
+ pos: 40.5,10.5
parent: 2
- - uid: 3019
+ - uid: 5167
components:
- type: Transform
- pos: -12.5,84.5
+ pos: 11.5,39.5
parent: 2
- - uid: 3020
+ - uid: 5168
components:
- type: Transform
- pos: -7.5,70.5
+ pos: -53.5,-1.5
parent: 2
- - uid: 3021
+ - uid: 5169
components:
- type: Transform
- pos: -7.5,69.5
+ pos: 29.5,-16.5
parent: 2
- - uid: 3022
+ - uid: 5170
components:
- type: Transform
- pos: -7.5,68.5
+ pos: 31.5,-15.5
parent: 2
- - uid: 3023
+ - uid: 5171
components:
- type: Transform
- pos: -8.5,68.5
+ pos: 30.5,-15.5
parent: 2
- - uid: 3024
+ - uid: 5172
components:
- type: Transform
- pos: -9.5,68.5
+ pos: 56.5,-24.5
parent: 2
- - uid: 3025
+ - uid: 5173
components:
- type: Transform
- pos: -10.5,68.5
+ pos: 51.5,-42.5
parent: 2
- - uid: 3026
+ - uid: 5174
components:
- type: Transform
- pos: -11.5,68.5
+ pos: 45.5,9.5
parent: 2
- - uid: 3027
+ - uid: 5175
components:
- type: Transform
- pos: -12.5,68.5
+ pos: 45.5,5.5
parent: 2
- - uid: 3028
+ - uid: 5176
components:
- type: Transform
- pos: -13.5,68.5
+ pos: -48.5,55.5
parent: 2
- - uid: 3029
+ - uid: 5177
components:
- type: Transform
- pos: -14.5,68.5
+ pos: -36.5,57.5
parent: 2
- - uid: 3030
+ - uid: 5178
components:
- type: Transform
- pos: -15.5,68.5
+ pos: -4.5,-55.5
parent: 2
- - uid: 3031
+ - uid: 5179
components:
- type: Transform
- pos: -16.5,68.5
+ pos: 8.5,-55.5
parent: 2
- - uid: 3032
+ - uid: 5180
components:
- type: Transform
- pos: -17.5,68.5
+ pos: 22.5,53.5
parent: 2
- - uid: 3033
+ - uid: 5181
components:
- type: Transform
- pos: -18.5,68.5
+ pos: -49.5,-14.5
parent: 2
- - uid: 3034
+ - uid: 5182
components:
- type: Transform
- pos: -19.5,68.5
+ pos: 35.5,41.5
parent: 2
- - uid: 3035
+ - uid: 5183
components:
- type: Transform
- pos: -20.5,68.5
+ pos: 41.5,-15.5
parent: 2
- - uid: 3036
+ - uid: 5184
components:
- type: Transform
- pos: -21.5,68.5
+ pos: 49.5,-20.5
parent: 2
- - uid: 3037
+ - uid: 5185
components:
- type: Transform
- pos: -22.5,68.5
+ pos: 69.5,-24.5
parent: 2
- - uid: 3038
+ - uid: 5186
components:
- type: Transform
- pos: -23.5,68.5
+ pos: 50.5,-50.5
parent: 2
- - uid: 3039
+ - uid: 5187
components:
- type: Transform
- pos: -24.5,68.5
+ pos: 50.5,-49.5
parent: 2
- - uid: 3040
+ - uid: 5188
components:
- type: Transform
- pos: -25.5,68.5
+ pos: 56.5,-29.5
parent: 2
- - uid: 3041
+ - uid: 5189
components:
- type: Transform
- pos: -26.5,68.5
+ pos: 35.5,-15.5
parent: 2
- - uid: 3042
+ - uid: 5190
components:
- type: Transform
- pos: -27.5,68.5
+ pos: 14.5,70.5
parent: 2
- - uid: 3043
+ - uid: 5191
components:
- type: Transform
- pos: -28.5,68.5
+ pos: 41.5,-19.5
parent: 2
- - uid: 3044
+ - uid: 5192
components:
- type: Transform
- pos: -29.5,68.5
+ pos: 39.5,-46.5
parent: 2
- - uid: 3045
+ - uid: 5193
components:
- type: Transform
- pos: -29.5,69.5
+ pos: 36.5,30.5
parent: 2
- - uid: 3046
+ - uid: 5194
components:
- type: Transform
- pos: -29.5,67.5
+ pos: 35.5,1.5
parent: 2
- - uid: 3047
+ - uid: 5195
components:
- type: Transform
- pos: -24.5,67.5
+ pos: 27.5,5.5
parent: 2
- - uid: 3048
+ - uid: 5196
components:
- type: Transform
- pos: -26.5,66.5
+ pos: 40.5,0.5
parent: 2
- - uid: 3049
+ - uid: 5197
components:
- type: Transform
- pos: -26.5,65.5
+ pos: -59.5,19.5
parent: 2
- - uid: 3050
+ - uid: 5198
components:
- type: Transform
- pos: -5.5,68.5
+ pos: -72.5,-34.5
parent: 2
- - uid: 3051
+ - uid: 5199
components:
- type: Transform
- pos: -6.5,68.5
+ pos: 34.5,-38.5
parent: 2
- - uid: 3052
+ - uid: 5200
components:
- type: Transform
- pos: -24.5,65.5
+ pos: -57.5,-25.5
parent: 2
- - uid: 3053
+ - uid: 5201
components:
- type: Transform
- pos: -25.5,65.5
+ pos: -62.5,11.5
parent: 2
- - uid: 3054
+ - uid: 5202
components:
- type: Transform
- pos: -26.5,60.5
+ pos: -3.5,26.5
parent: 2
- - uid: 3055
+ - uid: 5203
components:
- type: Transform
- pos: -27.5,60.5
+ pos: 19.5,-55.5
parent: 2
- - uid: 3056
+ - uid: 5204
components:
- type: Transform
- pos: -25.5,61.5
+ pos: -9.5,-60.5
parent: 2
- - uid: 3057
+ - uid: 5205
components:
- type: Transform
- pos: -24.5,61.5
+ pos: -0.5,-58.5
parent: 2
- - uid: 3058
+ - uid: 5206
components:
- type: Transform
- pos: -25.5,59.5
+ pos: 17.5,13.5
parent: 2
- - uid: 3059
+ - uid: 5207
components:
- type: Transform
- pos: -24.5,59.5
+ pos: -25.5,68.5
parent: 2
- - uid: 3060
+ - uid: 5208
components:
- type: Transform
- pos: -25.5,60.5
+ pos: -7.5,-8.5
parent: 2
- - uid: 3061
+ - uid: 5209
components:
- type: Transform
- pos: -25.5,62.5
+ pos: -24.5,-19.5
parent: 2
- - uid: 3062
+ - uid: 5210
components:
- type: Transform
- pos: -25.5,63.5
+ pos: -54.5,-32.5
parent: 2
- - uid: 3063
+ - uid: 5211
components:
- type: Transform
- pos: -24.5,63.5
+ pos: -35.5,14.5
parent: 2
- - uid: 3064
+ - uid: 5212
components:
- type: Transform
- pos: -25.5,64.5
+ pos: -11.5,77.5
parent: 2
- - uid: 3065
+ - uid: 5213
components:
- type: Transform
- pos: -4.5,68.5
+ pos: -59.5,18.5
parent: 2
- - uid: 3066
+ - uid: 5214
components:
- type: Transform
- pos: -3.5,68.5
+ pos: -23.5,-16.5
parent: 2
- - uid: 3067
+ - uid: 5215
components:
- type: Transform
- pos: -2.5,68.5
+ pos: 17.5,-8.5
parent: 2
- - uid: 3068
+ - uid: 5216
components:
- type: Transform
- pos: -1.5,68.5
+ pos: -8.5,-55.5
parent: 2
- - uid: 3069
+ - uid: 5217
components:
- type: Transform
- pos: -0.5,68.5
+ pos: -47.5,38.5
parent: 2
- - uid: 3070
+ - uid: 5218
components:
- type: Transform
- pos: 0.49999997,68.5
+ pos: -35.5,12.5
parent: 2
- - uid: 3071
+ - uid: 5219
components:
- type: Transform
- pos: 1.5,68.5
+ pos: -56.5,-30.5
parent: 2
- - uid: 3072
+ - uid: 5220
components:
- type: Transform
- pos: 2.5,68.5
+ pos: -19.5,49.5
parent: 2
- - uid: 3073
+ - uid: 5221
components:
- type: Transform
- pos: 3.5,68.5
+ pos: -38.5,61.5
parent: 2
- - uid: 3074
+ - uid: 5222
components:
- type: Transform
- pos: 4.5,68.5
+ pos: -1.5,-80.5
parent: 2
- - uid: 3075
+ - uid: 5223
components:
- type: Transform
- pos: 5.5,68.5
+ pos: 17.5,6.5
parent: 2
- - uid: 3076
+ - uid: 5224
components:
- type: Transform
- pos: 6.5,68.5
+ pos: 27.5,25.5
parent: 2
- - uid: 3077
+ - uid: 5225
components:
- type: Transform
- pos: 7.5,68.5
+ pos: 11.5,45.5
parent: 2
- - uid: 3078
+ - uid: 5226
components:
- type: Transform
- pos: 8.5,68.5
+ pos: 11.5,51.5
parent: 2
- - uid: 3079
+ - uid: 5227
components:
- type: Transform
- pos: 6.5,67.5
+ pos: -5.5,-64.5
parent: 2
- - uid: 3080
+ - uid: 5228
components:
- type: Transform
- pos: 6.5,69.5
+ pos: -14.5,-71.5
parent: 2
- - uid: 3081
+ - uid: 5229
components:
- type: Transform
- pos: -11.5,69.5
+ pos: 17.5,-1.5
parent: 2
- - uid: 3082
+ - uid: 5230
components:
- type: Transform
- pos: -11.5,67.5
+ pos: 10.5,43.5
parent: 2
- - uid: 3083
+ - uid: 5231
components:
- type: Transform
- pos: -30.5,84.5
+ pos: -73.5,-34.5
parent: 2
- - uid: 3084
+ - uid: 5232
components:
- type: Transform
- pos: -29.5,84.5
+ pos: 23.5,51.5
parent: 2
- - uid: 3085
+ - uid: 5233
components:
- type: Transform
- pos: -29.5,85.5
+ pos: -2.5,49.5
parent: 2
- - uid: 3086
+ - uid: 5234
components:
- type: Transform
- pos: -29.5,86.5
+ pos: 10.5,40.5
parent: 2
- - uid: 3087
+ - uid: 5235
components:
- type: Transform
- pos: -29.5,87.5
+ pos: -74.5,-34.5
parent: 2
- - uid: 3088
+ - uid: 5236
components:
- type: Transform
- pos: -29.5,88.5
+ pos: -59.5,30.5
parent: 2
- - uid: 3089
+ - uid: 5237
components:
- type: Transform
- pos: -29.5,89.5
+ pos: -25.5,-77.5
parent: 2
- - uid: 3090
+ - uid: 5238
components:
- type: Transform
- pos: -29.5,90.5
+ pos: -11.5,84.5
parent: 2
- - uid: 3091
+ - uid: 5239
components:
- type: Transform
- pos: -29.5,91.5
+ pos: -11.5,93.5
parent: 2
- - uid: 3092
+ - uid: 5240
components:
- type: Transform
- pos: -29.5,92.5
+ pos: -25.5,61.5
parent: 2
- - uid: 3093
+ - uid: 5241
components:
- type: Transform
- pos: -29.5,93.5
+ pos: 6.5,79.5
parent: 2
- - uid: 3094
+ - uid: 5242
components:
- type: Transform
- pos: -29.5,94.5
+ pos: -37.5,-3.5
parent: 2
- - uid: 3095
+ - uid: 5243
components:
- type: Transform
- pos: -29.5,95.5
+ pos: -32.5,-9.5
parent: 2
- - uid: 3096
+ - uid: 5244
components:
- type: Transform
- pos: -29.5,96.5
+ pos: -6.5,-19.5
parent: 2
- - uid: 3097
+ - uid: 5245
components:
- type: Transform
- pos: -29.5,97.5
+ pos: -37.5,23.5
parent: 2
- - uid: 3098
+ - uid: 5246
components:
- type: Transform
- pos: -29.5,98.5
+ pos: -9.5,68.5
parent: 2
- - uid: 3099
+ - uid: 5247
components:
- type: Transform
- pos: -29.5,84.5
+ pos: 2.5,57.5
parent: 2
- - uid: 3100
+ - uid: 5248
components:
- type: Transform
- pos: -29.5,83.5
+ pos: 9.5,-55.5
parent: 2
- - uid: 3101
+ - uid: 5249
components:
- type: Transform
- pos: -29.5,82.5
+ pos: -6.5,-55.5
parent: 2
- - uid: 3102
+ - uid: 5250
components:
- type: Transform
- pos: -29.5,81.5
+ pos: 41.5,-65.5
parent: 2
- - uid: 3103
+ - uid: 5251
components:
- type: Transform
- pos: -29.5,80.5
+ pos: 49.5,-46.5
parent: 2
- - uid: 3104
+ - uid: 5252
components:
- type: Transform
- pos: -29.5,79.5
+ pos: 79.5,-21.5
parent: 2
- - uid: 3105
+ - uid: 5253
components:
- type: Transform
- pos: -29.5,78.5
+ pos: 42.5,28.5
parent: 2
- - uid: 3106
+ - uid: 5254
components:
- type: Transform
- pos: -29.5,77.5
+ pos: 0.5,34.5
parent: 2
- - uid: 3107
+ - uid: 5255
components:
- type: Transform
- pos: -29.5,76.5
+ pos: 63.5,-11.5
parent: 2
- - uid: 3108
+ - uid: 5256
components:
- type: Transform
- pos: -29.5,75.5
+ pos: -8.5,-69.5
parent: 2
- - uid: 3109
+ - uid: 5257
components:
- type: Transform
- pos: -29.5,74.5
+ pos: -4.5,-70.5
parent: 2
- - uid: 3110
+ - uid: 5258
components:
- type: Transform
- pos: -29.5,73.5
+ pos: 14.5,44.5
parent: 2
- - uid: 3111
+ - uid: 5259
components:
- type: Transform
- pos: -29.5,72.5
+ pos: 21.5,39.5
parent: 2
- - uid: 3112
+ - uid: 5260
components:
- type: Transform
- pos: -29.5,71.5
+ pos: -13.5,-78.5
parent: 2
- - uid: 3113
+ - uid: 5261
components:
- type: Transform
- pos: -28.5,77.5
+ pos: 52.5,-19.5
parent: 2
- - uid: 3114
+ - uid: 5262
components:
- type: Transform
- pos: -27.5,77.5
+ pos: 0.5,-76.5
parent: 2
- - uid: 3115
+ - uid: 5263
components:
- type: Transform
- pos: -26.5,77.5
+ pos: -17.5,-73.5
parent: 2
- - uid: 3116
+ - uid: 5264
components:
- type: Transform
- pos: -31.5,77.5
+ pos: 23.5,28.5
parent: 2
- - uid: 3117
+ - uid: 5265
components:
- type: Transform
- pos: -32.5,77.5
+ pos: 27.5,-1.5
parent: 2
- - uid: 3118
+ - uid: 5266
components:
- type: Transform
- pos: -30.5,77.5
+ pos: 60.5,-15.5
parent: 2
- - uid: 3119
+ - uid: 5267
components:
- type: Transform
- pos: -31.5,83.5
+ pos: 39.5,-61.5
parent: 2
- - uid: 3120
+ - uid: 5268
components:
- type: Transform
- pos: -31.5,82.5
+ pos: -18.5,26.5
parent: 2
- - uid: 3121
+ - uid: 5269
components:
- type: Transform
- pos: -31.5,81.5
+ pos: -19.5,-75.5
parent: 2
- - uid: 3122
+ - uid: 5270
components:
- type: Transform
- pos: -31.5,80.5
+ pos: -10.5,-76.5
parent: 2
- - uid: 3123
+ - uid: 5271
components:
- type: Transform
- pos: -30.5,80.5
+ pos: -46.5,22.5
parent: 2
- - uid: 3124
+ - uid: 5272
components:
- type: Transform
- pos: -28.5,84.5
+ pos: -60.5,-8.5
parent: 2
- - uid: 3125
+ - uid: 5273
components:
- type: Transform
- pos: -27.5,84.5
+ pos: -62.5,-21.5
parent: 2
- - uid: 3126
+ - uid: 5274
components:
- type: Transform
- pos: -26.5,84.5
+ pos: -46.5,24.5
parent: 2
- - uid: 3127
+ - uid: 5275
components:
- type: Transform
- pos: -0.5,59.5
+ pos: -65.5,15.5
parent: 2
- - uid: 3128
+ - uid: 5276
components:
- type: Transform
- pos: -0.5,58.5
+ pos: -50.5,14.5
parent: 2
- - uid: 3129
+ - uid: 5277
components:
- type: Transform
- pos: -0.5,57.5
+ pos: -63.5,15.5
parent: 2
- - uid: 3130
+ - uid: 5278
components:
- type: Transform
- pos: -1.5,57.5
+ pos: -69.5,-30.5
parent: 2
- - uid: 3131
+ - uid: 5279
components:
- type: Transform
- pos: -2.5,57.5
+ pos: -39.5,39.5
parent: 2
- - uid: 3132
+ - uid: 5280
components:
- type: Transform
- pos: -3.5,57.5
+ pos: -11.5,81.5
parent: 2
- - uid: 3133
+ - uid: 5281
components:
- type: Transform
- pos: -4.5,57.5
+ pos: -11.5,94.5
parent: 2
- - uid: 3134
+ - uid: 5282
components:
- type: Transform
- pos: -5.5,57.5
+ pos: 41.5,-70.5
parent: 2
- - uid: 3135
+ - uid: 5283
components:
- type: Transform
- pos: -6.5,57.5
+ pos: 39.5,-73.5
parent: 2
- - uid: 3136
+ - uid: 5284
components:
- type: Transform
- pos: -7.5,57.5
+ pos: -11.5,95.5
parent: 2
- - uid: 3137
+ - uid: 5285
components:
- type: Transform
- pos: -8.5,57.5
+ pos: -41.5,55.5
parent: 2
- - uid: 3138
+ - uid: 5286
components:
- type: Transform
- pos: -9.5,57.5
+ pos: -41.5,-0.5
parent: 2
- - uid: 3139
+ - uid: 5287
components:
- type: Transform
- pos: -10.5,57.5
+ pos: 8.5,-7.5
parent: 2
- - uid: 3140
+ - uid: 5288
components:
- type: Transform
- pos: -11.5,57.5
+ pos: -38.5,39.5
parent: 2
- - uid: 3141
+ - uid: 5289
components:
- type: Transform
- pos: -12.5,57.5
+ pos: -34.5,-18.5
parent: 2
- - uid: 3142
+ - uid: 5290
components:
- type: Transform
- pos: -13.5,57.5
+ pos: 17.5,-9.5
parent: 2
- - uid: 3143
+ - uid: 5291
components:
- type: Transform
- pos: -14.5,57.5
+ pos: -32.5,-30.5
parent: 2
- - uid: 3144
+ - uid: 5292
components:
- type: Transform
- pos: -15.5,57.5
+ pos: -37.5,-9.5
parent: 2
- - uid: 3145
+ - uid: 5293
components:
- type: Transform
- pos: -16.5,57.5
+ pos: -29.5,-24.5
parent: 2
- - uid: 3146
+ - uid: 5294
components:
- type: Transform
- pos: -17.5,57.5
+ pos: -66.5,14.5
parent: 2
- - uid: 3147
+ - uid: 5295
components:
- type: Transform
- pos: -18.5,57.5
+ pos: 8.5,34.5
parent: 2
- - uid: 3148
+ - uid: 5296
components:
- type: Transform
- pos: -18.5,57.5
+ pos: 26.5,39.5
parent: 2
- - uid: 3149
+ - uid: 5297
components:
- type: Transform
- pos: -4.5,58.5
+ pos: 8.5,37.5
parent: 2
- - uid: 3150
+ - uid: 5298
components:
- type: Transform
- pos: -4.5,59.5
+ pos: 30.5,-66.5
parent: 2
- - uid: 3151
+ - uid: 5299
components:
- type: Transform
- pos: -4.5,60.5
+ pos: -11.5,90.5
parent: 2
- - uid: 3152
+ - uid: 5300
components:
- type: Transform
- pos: -4.5,61.5
+ pos: -18.5,35.5
parent: 2
- - uid: 3153
+ - uid: 5301
components:
- type: Transform
- pos: -4.5,62.5
+ pos: -24.5,-60.5
parent: 2
- - uid: 3154
+ - uid: 5302
components:
- type: Transform
- pos: -4.5,63.5
+ pos: -11.5,96.5
parent: 2
- - uid: 3155
+ - uid: 5303
components:
- type: Transform
- pos: -4.5,64.5
+ pos: -27.5,-70.5
parent: 2
- - uid: 3156
+ - uid: 5304
components:
- type: Transform
- pos: -4.5,65.5
+ pos: -36.5,-62.5
parent: 2
- - uid: 3157
+ - uid: 5305
components:
- type: Transform
- pos: -18.5,58.5
+ pos: 26.5,37.5
parent: 2
- - uid: 3158
+ - uid: 5306
components:
- type: Transform
- pos: -18.5,59.5
+ pos: -1.5,57.5
parent: 2
- - uid: 3159
+ - uid: 5307
components:
- type: Transform
- pos: -18.5,60.5
+ pos: -55.5,-1.5
parent: 2
- - uid: 3160
+ - uid: 5308
components:
- type: Transform
- pos: -18.5,61.5
+ pos: -18.5,19.5
parent: 2
- - uid: 3161
+ - uid: 5309
components:
- type: Transform
- pos: -18.5,62.5
+ pos: -27.5,-64.5
parent: 2
- - uid: 3162
+ - uid: 5310
components:
- type: Transform
- pos: -18.5,63.5
+ pos: -10.5,-79.5
parent: 2
- - uid: 3163
+ - uid: 5311
components:
- type: Transform
- pos: -18.5,64.5
+ pos: 41.5,-31.5
parent: 2
- - uid: 3164
+ - uid: 5312
components:
- type: Transform
- pos: -18.5,65.5
+ pos: 33.5,-55.5
parent: 2
- - uid: 3165
+ - uid: 5313
components:
- type: Transform
- pos: -17.5,62.5
+ pos: 72.5,-21.5
parent: 2
- - uid: 3166
+ - uid: 5314
components:
- type: Transform
- pos: -16.5,62.5
+ pos: 30.5,-0.5
parent: 2
- - uid: 3167
+ - uid: 5315
components:
- type: Transform
- pos: -15.5,62.5
+ pos: 36.5,5.5
parent: 2
- - uid: 3168
+ - uid: 5316
components:
- type: Transform
- pos: -19.5,62.5
+ pos: -57.5,47.5
parent: 2
- - uid: 3169
+ - uid: 5317
components:
- type: Transform
- pos: -20.5,62.5
+ pos: 6.5,16.5
parent: 2
- - uid: 3170
+ - uid: 5318
components:
- type: Transform
- pos: -21.5,62.5
+ pos: 14.5,-39.5
parent: 2
- - uid: 3171
+ - uid: 5319
components:
- type: Transform
- pos: -7.5,62.5
+ pos: 56.5,-9.5
parent: 2
- - uid: 3172
+ - uid: 5320
components:
- type: Transform
- pos: -6.5,62.5
+ pos: 7.5,35.5
parent: 2
- - uid: 3173
+ - uid: 5321
components:
- type: Transform
- pos: -5.5,62.5
+ pos: -11.5,89.5
parent: 2
- - uid: 3174
+ - uid: 5322
components:
- type: Transform
- pos: -4.5,62.5
+ pos: 36.5,-9.5
parent: 2
- - uid: 3175
+ - uid: 5323
components:
- type: Transform
- pos: -3.5,62.5
+ pos: -54.5,-6.5
parent: 2
- - uid: 3176
+ - uid: 5324
components:
- type: Transform
- pos: -2.5,62.5
+ pos: -30.5,37.5
parent: 2
- - uid: 3177
+ - uid: 5325
components:
- type: Transform
- pos: -1.5,62.5
+ pos: -30.5,15.5
parent: 2
- - uid: 3178
+ - uid: 5326
components:
- type: Transform
- pos: 0.49999997,57.5
+ pos: 34.5,-66.5
parent: 2
- - uid: 3179
+ - uid: 5327
components:
- type: Transform
- pos: 1.5,57.5
+ pos: 6.5,87.5
parent: 2
- - uid: 3180
+ - uid: 5328
components:
- type: Transform
- pos: 2.5,57.5
+ pos: 11.5,52.5
parent: 2
- - uid: 3181
+ - uid: 5329
components:
- type: Transform
- pos: 3.5,57.5
+ pos: -17.5,57.5
parent: 2
- - uid: 3182
+ - uid: 5330
components:
- type: Transform
- pos: 2.5,58.5
+ pos: -0.5,-22.5
parent: 2
- - uid: 3183
+ - uid: 5331
components:
- type: Transform
- pos: -0.5,56.5
+ pos: -45.5,56.5
parent: 2
- - uid: 3184
+ - uid: 5332
components:
- type: Transform
- pos: -18.5,56.5
+ pos: 37.5,-22.5
parent: 2
- - uid: 3185
+ - uid: 5333
components:
- type: Transform
- pos: -18.5,55.5
+ pos: 27.5,58.5
parent: 2
- - uid: 3186
+ - uid: 5334
components:
- type: Transform
- pos: -20.5,55.5
+ pos: 19.5,48.5
parent: 2
- - uid: 3187
+ - uid: 5335
components:
- type: Transform
- pos: -19.5,55.5
+ pos: -10.5,23.5
parent: 2
- - uid: 3188
+ - uid: 5336
components:
- type: Transform
- pos: -19.5,55.5
+ pos: -33.5,-26.5
parent: 2
- - uid: 3189
+ - uid: 5337
components:
- type: Transform
- pos: -18.5,67.5
+ pos: 60.5,-27.5
parent: 2
- - uid: 3190
+ - uid: 5338
components:
- type: Transform
- pos: -4.5,67.5
+ pos: 22.5,0.5
parent: 2
- - uid: 3191
+ - uid: 5339
components:
- type: Transform
- pos: -24.5,54.5
+ pos: 27.5,-2.5
parent: 2
- - uid: 3192
+ - uid: 5340
components:
- type: Transform
- pos: -24.5,53.5
+ pos: 74.5,-21.5
parent: 2
- - uid: 3193
+ - uid: 5341
components:
- type: Transform
- pos: -25.5,53.5
+ pos: 17.5,12.5
parent: 2
- - uid: 3194
+ - uid: 5342
components:
- type: Transform
- pos: -25.5,52.5
+ pos: 37.5,-27.5
parent: 2
- - uid: 3195
+ - uid: 5343
components:
- type: Transform
- pos: -25.5,51.5
+ pos: 26.5,-66.5
parent: 2
- - uid: 3196
->>>>>>> master
+ - uid: 5344
components:
- type: Transform
- pos: -25.5,50.5
+ pos: 18.5,-55.5
parent: 2
-<<<<<<< HEAD
- - uid: 3133
+ - uid: 5345
components:
- type: Transform
- pos: 11.5,2.5
+ pos: -2.5,26.5
parent: 2
- - uid: 3134
+ - uid: 5346
components:
- type: Transform
- pos: 13.5,-15.5
+ pos: -58.5,-11.5
parent: 2
- - uid: 3135
+ - uid: 5347
components:
- type: Transform
- pos: -19.5,-36.5
+ pos: 29.5,36.5
parent: 2
- - uid: 3136
+ - uid: 5348
components:
- type: Transform
- pos: -14.5,-34.5
+ pos: 62.5,-16.5
parent: 2
- - uid: 3137
+ - uid: 5349
components:
- type: Transform
- pos: 4.5,15.5
+ pos: -35.5,29.5
parent: 2
- - uid: 3138
+ - uid: 5350
components:
- type: Transform
- pos: -6.5,14.5
+ pos: 1.5,-64.5
parent: 2
- - uid: 3139
+ - uid: 5351
components:
- type: Transform
- pos: 6.5,17.5
+ pos: 41.5,-71.5
parent: 2
- - uid: 3140
+ - uid: 5352
components:
- type: Transform
- pos: 1.5,-12.5
+ pos: 48.5,-22.5
parent: 2
- - uid: 3141
+ - uid: 5353
components:
- type: Transform
- pos: -117.5,18.5
+ pos: -48.5,-2.5
parent: 2
- - uid: 3142
+ - uid: 5354
components:
- type: Transform
- pos: 9.5,1.5
+ pos: -8.5,-19.5
parent: 2
- - uid: 3143
+ - uid: 5355
components:
- type: Transform
- pos: 10.5,1.5
+ pos: 54.5,-3.5
parent: 2
- - uid: 3144
+ - uid: 5356
components:
- type: Transform
- pos: -2.5,17.5
+ pos: 51.5,-28.5
parent: 2
- - uid: 3145
+ - uid: 5357
components:
- type: Transform
- pos: -4.5,19.5
+ pos: 52.5,-29.5
parent: 2
- - uid: 3146
+ - uid: 5358
components:
- type: Transform
- pos: 21.5,49.5
+ pos: 39.5,-52.5
parent: 2
- - uid: 3147
+ - uid: 5359
components:
- type: Transform
- pos: 12.5,1.5
+ pos: 58.5,-27.5
parent: 2
- - uid: 3148
+ - uid: 5360
components:
- type: Transform
- pos: 11.5,-14.5
+ pos: 67.5,-15.5
parent: 2
- - uid: 3149
+ - uid: 5361
components:
- type: Transform
- pos: -11.5,-15.5
+ pos: -51.5,-5.5
parent: 2
- - uid: 3150
+ - uid: 5362
components:
- type: Transform
- pos: -11.5,-13.5
+ pos: 19.5,50.5
parent: 2
- - uid: 3151
+ - uid: 5363
components:
- type: Transform
- pos: 4.5,-49.5
+ pos: 19.5,17.5
parent: 2
- - uid: 3152
+ - uid: 5364
components:
- type: Transform
- pos: -21.5,-40.5
+ pos: 19.5,16.5
parent: 2
- - uid: 3153
+ - uid: 5365
components:
- type: Transform
- pos: -20.5,-40.5
+ pos: 19.5,26.5
parent: 2
- - uid: 3154
+ - uid: 5366
components:
- type: Transform
- pos: -18.5,-43.5
+ pos: 2.5,28.5
parent: 2
- - uid: 3155
+ - uid: 5367
components:
- type: Transform
- pos: -19.5,-40.5
+ pos: 23.5,18.5
parent: 2
- - uid: 3156
+ - uid: 5368
components:
- type: Transform
- pos: -18.5,-40.5
+ pos: -0.5,-59.5
parent: 2
- - uid: 3157
+ - uid: 5369
components:
- type: Transform
- pos: 21.5,-43.5
+ pos: -10.5,-61.5
parent: 2
- - uid: 3158
+ - uid: 5370
components:
- type: Transform
- pos: 24.5,-46.5
+ pos: 27.5,-66.5
parent: 2
- - uid: 3159
+ - uid: 5371
components:
- type: Transform
- pos: -11.5,-50.5
+ pos: -41.5,44.5
parent: 2
- - uid: 3160
+ - uid: 5372
components:
- type: Transform
- pos: 44.5,-14.5
+ pos: -4.5,67.5
parent: 2
- - uid: 3161
+ - uid: 5373
components:
- type: Transform
- pos: 16.5,-51.5
+ pos: 4.5,-45.5
parent: 2
- - uid: 3162
+ - uid: 5374
components:
- type: Transform
- pos: 4.5,-39.5
+ pos: -18.5,-80.5
parent: 2
- - uid: 3163
+ - uid: 5375
components:
- type: Transform
- pos: -0.5,-44.5
+ pos: -30.5,54.5
parent: 2
- - uid: 3164
+ - uid: 5376
components:
- type: Transform
- pos: -53.5,34.5
+ pos: 13.5,-43.5
parent: 2
- - uid: 3165
+ - uid: 5377
components:
- type: Transform
- pos: -37.5,-55.5
+ pos: -22.5,20.5
parent: 2
- - uid: 3166
+ - uid: 5378
components:
- type: Transform
- pos: 4.5,-38.5
+ pos: -45.5,27.5
parent: 2
- - uid: 3167
+ - uid: 5379
components:
- type: Transform
- pos: -15.5,-42.5
+ pos: -35.5,19.5
parent: 2
- - uid: 3168
+ - uid: 5380
components:
- type: Transform
- pos: -0.5,-40.5
+ pos: -41.5,17.5
parent: 2
- - uid: 3169
+ - uid: 5381
components:
- type: Transform
- pos: 31.5,-48.5
+ pos: -42.5,39.5
parent: 2
- - uid: 3170
+ - uid: 5382
components:
- type: Transform
- pos: -39.5,-52.5
+ pos: -41.5,6.5
parent: 2
- - uid: 3171
+ - uid: 5383
components:
- type: Transform
- pos: -40.5,-52.5
+ pos: -42.5,33.5
parent: 2
- - uid: 3172
+ - uid: 5384
components:
- type: Transform
- pos: 27.5,-49.5
+ pos: 15.5,-42.5
parent: 2
- - uid: 3173
+ - uid: 5385
components:
- type: Transform
- pos: 14.5,-34.5
+ pos: -23.5,22.5
parent: 2
- - uid: 3174
+ - uid: 5386
components:
- type: Transform
- pos: 24.5,-38.5
+ pos: 13.5,2.5
parent: 2
- - uid: 3175
+ - uid: 5387
components:
- type: Transform
- pos: 23.5,-38.5
+ pos: 17.5,-42.5
parent: 2
- - uid: 3176
+ - uid: 5388
components:
- type: Transform
- pos: 22.5,-38.5
+ pos: 25.5,-45.5
parent: 2
- - uid: 3177
+ - uid: 5389
components:
- type: Transform
- pos: 20.5,-38.5
+ pos: 19.5,44.5
parent: 2
- - uid: 3178
+ - uid: 5390
components:
- type: Transform
- pos: 21.5,-38.5
+ pos: 17.5,46.5
parent: 2
- - uid: 3179
+ - uid: 5391
components:
- type: Transform
- pos: 20.5,-39.5
+ pos: -54.5,1.5
parent: 2
- - uid: 3180
+ - uid: 5392
components:
- type: Transform
- pos: 27.5,-40.5
+ pos: 8.5,30.5
parent: 2
- - uid: 3181
+ - uid: 5393
components:
- type: Transform
- pos: 27.5,-41.5
+ pos: 0.5,35.5
parent: 2
- - uid: 3182
+ - uid: 5394
components:
- type: Transform
- pos: 27.5,-42.5
+ pos: 6.5,90.5
parent: 2
- - uid: 3183
+ - uid: 5395
components:
- type: Transform
- pos: 4.5,-23.5
+ pos: -7.5,50.5
parent: 2
- - uid: 3184
+ - uid: 5396
components:
- type: Transform
- pos: 16.5,-34.5
+ pos: -22.5,-65.5
parent: 2
- - uid: 3185
+ - uid: 5397
components:
- type: Transform
- pos: 15.5,-34.5
+ pos: 41.5,-67.5
parent: 2
- - uid: 3186
+ - uid: 5398
components:
- type: Transform
- pos: 23.5,-51.5
+ pos: 6.5,41.5
parent: 2
- - uid: 3187
+ - uid: 5399
components:
- type: Transform
- pos: -52.5,24.5
+ pos: -41.5,5.5
parent: 2
- - uid: 3188
+ - uid: 5400
components:
- type: Transform
- pos: -53.5,22.5
+ pos: -13.5,71.5
parent: 2
- - uid: 3189
+ - uid: 5401
components:
- type: Transform
- pos: -52.5,22.5
+ pos: -39.5,-27.5
parent: 2
- - uid: 3190
+ - uid: 5402
components:
- type: Transform
- pos: -64.5,9.5
+ pos: -70.5,-20.5
parent: 2
- - uid: 3191
+ - uid: 5403
components:
- type: Transform
- pos: -41.5,21.5
+ pos: -33.5,-28.5
parent: 2
- - uid: 3192
+ - uid: 5404
components:
- type: Transform
- pos: -46.5,19.5
+ pos: -34.5,57.5
parent: 2
- - uid: 3193
+ - uid: 5405
components:
- type: Transform
- pos: -47.5,12.5
+ pos: -35.5,61.5
parent: 2
- - uid: 3194
+ - uid: 5406
components:
- type: Transform
- pos: -0.5,-42.5
+ pos: 23.5,53.5
parent: 2
- - uid: 3195
+ - uid: 5407
components:
- type: Transform
- pos: 16.5,-49.5
+ pos: -57.5,-3.5
parent: 2
- - uid: 3196
+ - uid: 5408
components:
- type: Transform
- pos: 4.5,-36.5
+ pos: 14.5,28.5
parent: 2
- - uid: 3197
+ - uid: 5409
components:
- type: Transform
- pos: -36.5,-53.5
+ pos: -23.5,20.5
parent: 2
- - uid: 3198
+ - uid: 5410
components:
- type: Transform
- pos: -15.5,-57.5
+ pos: -55.5,37.5
parent: 2
- - uid: 3199
+ - uid: 5411
components:
- type: Transform
- pos: 37.5,-38.5
+ pos: -57.5,13.5
parent: 2
- - uid: 3200
+ - uid: 5412
components:
- type: Transform
- pos: -39.5,-9.5
+ pos: -35.5,42.5
parent: 2
- - uid: 3201
+ - uid: 5413
components:
- type: Transform
- pos: -23.5,-50.5
+ pos: -18.5,-20.5
parent: 2
- - uid: 3202
+ - uid: 5414
components:
- type: Transform
- pos: -36.5,-54.5
+ pos: 21.5,42.5
parent: 2
- - uid: 3203
+ - uid: 5415
components:
- type: Transform
- pos: 8.5,2.5
+ pos: 61.5,-11.5
parent: 2
- - uid: 3204
+ - uid: 5416
components:
- type: Transform
- pos: 4.5,13.5
+ pos: -0.5,27.5
parent: 2
- - uid: 3205
+ - uid: 5417
components:
- type: Transform
- pos: 12.5,14.5
+ pos: -12.5,-32.5
parent: 2
- - uid: 3206
+ - uid: 5418
components:
- type: Transform
- pos: 9.5,-50.5
+ pos: -28.5,-35.5
parent: 2
- - uid: 3207
+ - uid: 5419
components:
- type: Transform
- pos: 22.5,-45.5
+ pos: -64.5,-30.5
parent: 2
- - uid: 3208
+ - uid: 5420
components:
- type: Transform
- pos: 13.5,-30.5
+ pos: -41.5,42.5
parent: 2
- - uid: 3209
+ - uid: 5421
components:
- type: Transform
- pos: 20.5,-43.5
+ pos: 15.5,28.5
parent: 2
- - uid: 3210
+ - uid: 5422
components:
- type: Transform
- pos: -26.5,54.5
+ pos: 56.5,-12.5
parent: 2
- - uid: 3211
+ - uid: 5423
components:
- type: Transform
- pos: 3.5,-7.5
+ pos: 6.5,85.5
parent: 2
- - uid: 3212
+ - uid: 5424
components:
- type: Transform
- pos: 4.5,-16.5
+ pos: -32.5,47.5
parent: 2
- - uid: 3213
+ - uid: 5425
components:
- type: Transform
- pos: 20.5,-42.5
+ pos: -48.5,-25.5
parent: 2
- - uid: 3214
+ - uid: 5426
components:
- type: Transform
- pos: 12.5,-23.5
+ pos: -16.5,-7.5
parent: 2
- - uid: 3215
+ - uid: 5427
components:
- type: Transform
- pos: -38.5,-55.5
+ pos: -23.5,17.5
parent: 2
- - uid: 3216
+ - uid: 5428
components:
- type: Transform
- pos: 4.5,-37.5
+ pos: -40.5,57.5
parent: 2
- - uid: 3217
+ - uid: 5429
components:
- type: Transform
- pos: 16.5,-50.5
+ pos: -39.5,50.5
parent: 2
- - uid: 3218
+ - uid: 5430
components:
- type: Transform
- pos: -0.5,-41.5
+ pos: 11.5,76.5
parent: 2
- - uid: 3219
+ - uid: 5431
components:
- type: Transform
- pos: 35.5,-38.5
+ pos: -0.5,68.5
parent: 2
- - uid: 3220
+ - uid: 5432
components:
- type: Transform
- pos: 28.5,-29.5
+ pos: -40.5,56.5
parent: 2
- - uid: 3221
+ - uid: 5433
components:
- type: Transform
- pos: 33.5,-38.5
+ pos: -31.5,25.5
parent: 2
- - uid: 3222
+ - uid: 5434
components:
- type: Transform
- pos: 36.5,-38.5
+ pos: -11.5,38.5
parent: 2
- - uid: 3223
+ - uid: 5435
components:
- type: Transform
- pos: 4.5,-13.5
+ pos: -38.5,36.5
parent: 2
- - uid: 3224
+ - uid: 5436
components:
- type: Transform
- pos: -57.5,-28.5
+ pos: -38.5,5.5
parent: 2
- - uid: 3225
+ - uid: 5437
components:
- type: Transform
- pos: 22.5,-49.5
+ pos: -35.5,17.5
parent: 2
- - uid: 3226
+ - uid: 5438
components:
- type: Transform
- pos: -60.5,-6.5
+ pos: 8.5,-44.5
parent: 2
- - uid: 3227
+ - uid: 5439
components:
- type: Transform
- pos: 13.5,-34.5
+ pos: -42.5,30.5
parent: 2
- - uid: 3228
+ - uid: 5440
components:
- type: Transform
- pos: -13.5,-57.5
+ pos: -18.5,-18.5
parent: 2
- - uid: 3229
+ - uid: 5441
components:
- type: Transform
- pos: -16.5,-55.5
+ pos: -15.5,-65.5
parent: 2
- - uid: 3230
+ - uid: 5442
components:
- type: Transform
- pos: -54.5,-36.5
+ pos: -45.5,-26.5
parent: 2
- - uid: 3231
+ - uid: 5443
components:
- type: Transform
- pos: 12.5,-34.5
+ pos: 15.5,-44.5
parent: 2
- - uid: 3232
+ - uid: 5444
components:
- type: Transform
- pos: -46.5,-13.5
+ pos: 11.5,-44.5
parent: 2
- - uid: 3233
+ - uid: 5445
components:
- type: Transform
- pos: 18.5,-53.5
+ pos: -36.5,-13.5
parent: 2
- - uid: 3234
+ - uid: 5446
components:
- type: Transform
- pos: 23.5,-43.5
+ pos: -42.5,37.5
parent: 2
- - uid: 3235
+ - uid: 5447
components:
- type: Transform
- pos: 28.5,-37.5
+ pos: -29.5,52.5
parent: 2
- - uid: 3236
+ - uid: 5448
components:
- type: Transform
- pos: 11.5,-50.5
+ pos: -0.5,-63.5
parent: 2
- - uid: 3237
+ - uid: 5449
components:
- type: Transform
- pos: 22.5,-44.5
+ pos: -70.5,11.5
parent: 2
- - uid: 3238
+ - uid: 5450
components:
- type: Transform
- pos: -2.5,-12.5
+ pos: -46.5,18.5
parent: 2
- - uid: 3239
+ - uid: 5451
components:
- type: Transform
- pos: -7.5,9.5
+ pos: -30.5,26.5
parent: 2
- - uid: 3240
+ - uid: 5452
components:
- type: Transform
- pos: -15.5,14.5
+ pos: 0.5,-15.5
parent: 2
- - uid: 3241
+ - uid: 5453
components:
- type: Transform
- pos: -23.5,-52.5
+ pos: -58.5,25.5
parent: 2
- - uid: 3242
+ - uid: 5454
components:
- type: Transform
- pos: 1.5,-14.5
+ pos: -33.5,19.5
parent: 2
- - uid: 3243
+ - uid: 5455
components:
- type: Transform
- pos: 10.5,-2.5
+ pos: -26.5,12.5
parent: 2
- - uid: 3244
+ - uid: 5456
components:
- type: Transform
- pos: -13.5,-15.5
+ pos: -33.5,15.5
parent: 2
- - uid: 3245
+ - uid: 5457
components:
- type: Transform
- pos: -4.5,-10.5
+ pos: -74.5,-27.5
parent: 2
- - uid: 3246
+ - uid: 5458
components:
- type: Transform
- pos: 13.5,-3.5
+ pos: -74.5,-28.5
parent: 2
- - uid: 3247
+ - uid: 5459
components:
- type: Transform
- pos: 13.5,-14.5
+ pos: -44.5,12.5
parent: 2
- - uid: 3248
+ - uid: 5460
components:
- type: Transform
- pos: -0.5,-14.5
+ pos: 10.5,-50.5
parent: 2
- - uid: 3249
+ - uid: 5461
components:
- type: Transform
- pos: -6.5,18.5
+ pos: -53.5,32.5
parent: 2
- - uid: 3250
+ - uid: 5462
components:
- type: Transform
- pos: -6.5,19.5
+ pos: -57.5,32.5
parent: 2
- - uid: 3251
+ - uid: 5463
components:
- type: Transform
- pos: 24.5,-44.5
+ pos: -29.5,1.5
parent: 2
- - uid: 3252
+ - uid: 5464
components:
- type: Transform
- pos: -44.5,-10.5
+ pos: -74.5,-21.5
parent: 2
- - uid: 3253
+ - uid: 5465
components:
- type: Transform
- pos: 21.5,-30.5
+ pos: -18.5,-6.5
parent: 2
- - uid: 3254
+ - uid: 5466
components:
- type: Transform
- pos: 21.5,-50.5
+ pos: 8.5,1.5
parent: 2
- - uid: 3255
+ - uid: 5467
components:
- type: Transform
- pos: 22.5,-47.5
+ pos: 58.5,8.5
parent: 2
- - uid: 3256
+ - uid: 5468
components:
- type: Transform
- pos: 21.5,-25.5
+ pos: 34.5,-42.5
parent: 2
- - uid: 3257
+ - uid: 5469
components:
- type: Transform
- pos: -8.5,-25.5
+ pos: -62.5,-28.5
parent: 2
- - uid: 3258
+ - uid: 5470
components:
- type: Transform
- pos: -6.5,-33.5
+ pos: -57.5,-10.5
parent: 2
- - uid: 3259
+ - uid: 5471
components:
- type: Transform
- pos: -15.5,16.5
+ pos: -27.5,31.5
parent: 2
- - uid: 3260
+ - uid: 5472
components:
- type: Transform
- pos: -7.5,13.5
+ pos: -11.5,-25.5
parent: 2
- - uid: 3261
+ - uid: 5473
components:
- type: Transform
- pos: -54.5,18.5
+ pos: 5.5,-35.5
parent: 2
- - uid: 3262
+ - uid: 5474
components:
- type: Transform
- pos: -52.5,8.5
+ pos: 7.5,-24.5
parent: 2
- - uid: 3263
+ - uid: 5475
components:
- type: Transform
- pos: -79.5,14.5
+ pos: -58.5,-22.5
parent: 2
- - uid: 3264
+ - uid: 5476
components:
- type: Transform
- pos: 26.5,-29.5
+ pos: -46.5,7.5
parent: 2
- - uid: 3265
+ - uid: 5477
components:
- type: Transform
- pos: -66.5,5.5
+ pos: -51.5,6.5
parent: 2
- - uid: 3266
+ - uid: 5478
components:
- type: Transform
- pos: -7.5,33.5
+ pos: -65.5,25.5
parent: 2
- - uid: 3267
+ - uid: 5479
components:
- type: Transform
- pos: -11.5,44.5
+ pos: -13.5,-44.5
parent: 2
- - uid: 3268
+ - uid: 5480
components:
- type: Transform
- pos: -62.5,59.5
+ pos: -28.5,-52.5
parent: 2
- - uid: 3269
+ - uid: 5481
components:
- type: Transform
- pos: -31.5,-2.5
+ pos: 5.5,-33.5
parent: 2
- - uid: 3270
+ - uid: 5482
components:
- type: Transform
- pos: -60.5,8.5
+ pos: 15.5,-24.5
parent: 2
- - uid: 3271
+ - uid: 5483
components:
- type: Transform
- pos: -48.5,28.5
+ pos: -41.5,-36.5
parent: 2
- - uid: 3272
+ - uid: 5484
components:
- type: Transform
- pos: -65.5,5.5
+ pos: -13.5,-52.5
parent: 2
- - uid: 3273
+ - uid: 5485
components:
- type: Transform
- pos: -60.5,25.5
+ pos: 22.5,-10.5
parent: 2
- - uid: 3274
+ - uid: 5486
components:
- type: Transform
- pos: -56.5,6.5
+ pos: -58.5,50.5
parent: 2
- - uid: 3275
+ - uid: 5487
components:
- type: Transform
- pos: -57.5,5.5
+ pos: -45.5,51.5
parent: 2
- - uid: 3276
+ - uid: 5488
components:
- type: Transform
- pos: -50.5,5.5
+ pos: -57.5,46.5
parent: 2
- - uid: 3277
+ - uid: 5489
components:
- type: Transform
- pos: -19.5,-52.5
+ pos: 11.5,3.5
parent: 2
- - uid: 3278
+ - uid: 5490
components:
- type: Transform
- pos: -5.5,33.5
+ pos: 11.5,-3.5
parent: 2
- - uid: 3279
+ - uid: 5491
components:
- type: Transform
- pos: -47.5,18.5
+ pos: 2.5,17.5
parent: 2
- - uid: 3280
+ - uid: 5492
components:
- type: Transform
- pos: -50.5,15.5
+ pos: -9.5,14.5
parent: 2
- - uid: 3281
+ - uid: 5493
components:
- type: Transform
- pos: -28.5,-11.5
+ pos: -0.5,19.5
parent: 2
- - uid: 3282
+ - uid: 5494
components:
- type: Transform
- pos: -6.5,33.5
+ pos: -13.5,-11.5
parent: 2
- - uid: 3283
+ - uid: 5495
components:
- type: Transform
- pos: -48.5,18.5
+ pos: -13.5,16.5
parent: 2
- - uid: 3284
+ - uid: 5496
components:
- type: Transform
- pos: -36.5,-18.5
+ pos: -7.5,-32.5
parent: 2
- - uid: 3285
+ - uid: 5497
components:
- type: Transform
- pos: -37.5,-19.5
+ pos: -15.5,-25.5
parent: 2
- - uid: 3286
+ - uid: 5498
components:
- type: Transform
- pos: -47.5,40.5
+ pos: -18.5,-44.5
parent: 2
- - uid: 3287
+ - uid: 5499
components:
- type: Transform
- pos: -45.5,30.5
+ pos: -38.5,-48.5
parent: 2
- - uid: 3288
+ - uid: 5500
components:
- type: Transform
- pos: -10.5,53.5
+ pos: -30.5,-52.5
parent: 2
- - uid: 3289
+ - uid: 5501
components:
- type: Transform
- pos: -49.5,39.5
+ pos: -44.5,17.5
parent: 2
- - uid: 3290
+ - uid: 5502
components:
- type: Transform
- pos: -36.5,-17.5
+ pos: -65.5,9.5
parent: 2
- - uid: 3291
+ - uid: 5503
components:
- type: Transform
- pos: 31.5,-41.5
+ pos: -63.5,23.5
parent: 2
- - uid: 3292
+ - uid: 5504
components:
- type: Transform
- pos: -57.5,-23.5
+ pos: -78.5,14.5
parent: 2
- - uid: 3293
+ - uid: 5505
components:
- type: Transform
- pos: 31.5,-42.5
+ pos: 13.5,-13.5
parent: 2
- - uid: 3294
+ - uid: 5506
components:
- type: Transform
- pos: 6.5,-50.5
+ pos: -4.5,-31.5
parent: 2
- - uid: 3295
+ - uid: 5507
components:
- type: Transform
- pos: 9.5,-38.5
+ pos: -9.5,-25.5
parent: 2
- - uid: 3296
+ - uid: 5508
components:
- type: Transform
- pos: -60.5,11.5
+ pos: 30.5,-31.5
parent: 2
- - uid: 3297
+ - uid: 5509
components:
- type: Transform
- pos: -47.5,21.5
+ pos: -47.5,-16.5
parent: 2
- - uid: 3298
+ - uid: 5510
components:
- type: Transform
- pos: -68.5,15.5
+ pos: -46.5,-12.5
parent: 2
- - uid: 3299
+ - uid: 5511
components:
- type: Transform
- pos: -65.5,10.5
+ pos: -63.5,59.5
parent: 2
- - uid: 3300
+ - uid: 5512
components:
- type: Transform
- pos: -59.5,11.5
+ pos: -62.5,25.5
parent: 2
- - uid: 3301
+ - uid: 5513
components:
- type: Transform
- pos: -47.5,20.5
+ pos: -61.5,-22.5
parent: 2
- - uid: 3302
+ - uid: 5514
components:
- type: Transform
- pos: 48.5,-16.5
+ pos: -47.5,19.5
parent: 2
- - uid: 3303
+ - uid: 5515
components:
- type: Transform
- pos: 36.5,-41.5
+ pos: -64.5,-22.5
parent: 2
- - uid: 3304
+ - uid: 5516
components:
- type: Transform
- pos: -57.5,-26.5
+ pos: 21.5,-34.5
parent: 2
- - uid: 3305
+ - uid: 5517
components:
- type: Transform
- pos: 34.5,34.5
+ pos: 8.5,-50.5
parent: 2
- - uid: 3306
+ - uid: 5518
components:
- type: Transform
- pos: 46.5,-16.5
+ pos: -38.5,-52.5
parent: 2
- - uid: 3307
+ - uid: 5519
components:
- type: Transform
- pos: 34.5,38.5
+ pos: 31.5,-50.5
parent: 2
- - uid: 3308
+ - uid: 5520
components:
- type: Transform
- pos: 5.5,9.5
+ pos: 17.5,-45.5
parent: 2
- - uid: 3309
+ - uid: 5521
components:
- type: Transform
- pos: -11.5,-23.5
+ pos: 32.5,-49.5
parent: 2
- - uid: 3310
+ - uid: 5522
components:
- type: Transform
- pos: 47.5,-16.5
+ pos: 17.5,47.5
parent: 2
- - uid: 3311
+ - uid: 5523
components:
- type: Transform
- pos: -5.5,-17.5
+ pos: 1.5,48.5
parent: 2
- - uid: 3312
+ - uid: 5524
components:
- type: Transform
- pos: -12.5,-23.5
+ pos: 19.5,18.5
parent: 2
- - uid: 3313
+ - uid: 5525
components:
- type: Transform
- pos: -4.5,-26.5
+ pos: 41.5,-74.5
parent: 2
- - uid: 3314
+ - uid: 5526
components:
- type: Transform
- pos: -13.5,-23.5
+ pos: -12.5,-61.5
parent: 2
- - uid: 3315
+ - uid: 5527
components:
- type: Transform
- pos: 15.5,13.5
+ pos: 20.5,17.5
parent: 2
- - uid: 3316
+ - uid: 5528
components:
- type: Transform
- pos: -32.5,-46.5
+ pos: 20.5,28.5
parent: 2
- - uid: 3317
+ - uid: 5529
components:
- type: Transform
- pos: -14.5,-23.5
+ pos: -3.5,-73.5
parent: 2
- - uid: 3318
+ - uid: 5530
components:
- type: Transform
- pos: -5.5,-26.5
+ pos: -46.5,-74.5
parent: 2
- - uid: 3319
+ - uid: 5531
components:
- type: Transform
- pos: 8.5,-4.5
+ pos: -3.5,47.5
parent: 2
- - uid: 3320
+ - uid: 5532
components:
- type: Transform
- pos: -17.5,-38.5
+ pos: 23.5,31.5
parent: 2
- - uid: 3321
+ - uid: 5533
components:
- type: Transform
- pos: -17.5,-39.5
+ pos: -55.5,0.5
parent: 2
- - uid: 3322
+ - uid: 5534
components:
- type: Transform
- pos: 66.5,30.5
+ pos: 77.5,-21.5
parent: 2
- - uid: 3323
+ - uid: 5535
components:
- type: Transform
- pos: -57.5,-27.5
+ pos: 44.5,-46.5
parent: 2
- - uid: 3324
+ - uid: 5536
components:
- type: Transform
- pos: -17.5,-43.5
+ pos: 48.5,-10.5
parent: 2
- - uid: 3325
+ - uid: 5537
components:
- type: Transform
- pos: -9.5,-12.5
+ pos: 28.5,-1.5
parent: 2
- - uid: 3326
+ - uid: 5538
components:
- type: Transform
- pos: 15.5,14.5
+ pos: 54.5,-6.5
parent: 2
- - uid: 3327
+ - uid: 5539
components:
- type: Transform
- pos: -39.5,-55.5
+ pos: 43.5,8.5
parent: 2
- - uid: 3328
+ - uid: 5540
components:
- type: Transform
- pos: -19.5,68.5
+ pos: 1.5,-7.5
parent: 2
- - uid: 3329
+ - uid: 5541
components:
- type: Transform
- pos: 36.5,-43.5
+ pos: 4.5,77.5
parent: 2
- - uid: 3330
+ - uid: 5542
components:
- type: Transform
- pos: 25.5,-27.5
+ pos: 33.5,-67.5
parent: 2
- - uid: 3331
+ - uid: 5543
components:
- type: Transform
- pos: 25.5,-25.5
+ pos: -3.5,-65.5
parent: 2
- - uid: 3332
+ - uid: 5544
components:
- type: Transform
- pos: 26.5,-30.5
+ pos: -21.5,-71.5
parent: 2
- - uid: 3333
+ - uid: 5545
components:
- type: Transform
- pos: 49.5,-13.5
+ pos: -29.5,23.5
parent: 2
- - uid: 3334
+ - uid: 5546
components:
- type: Transform
- pos: 4.5,-40.5
+ pos: -42.5,-27.5
parent: 2
- - uid: 3335
+ - uid: 5547
components:
- type: Transform
- pos: -13.5,-50.5
+ pos: -22.5,-1.5
parent: 2
- - uid: 3336
+ - uid: 5548
components:
- type: Transform
- pos: -6.5,-32.5
+ pos: -45.5,34.5
parent: 2
- - uid: 3337
+ - uid: 5549
components:
- type: Transform
- pos: -13.5,13.5
+ pos: 38.5,-71.5
parent: 2
- - uid: 3338
+ - uid: 5550
components:
- type: Transform
- pos: 23.5,8.5
+ pos: 31.5,-66.5
parent: 2
- - uid: 3339
+ - uid: 5551
components:
- type: Transform
- pos: 17.5,-31.5
+ pos: -6.5,-61.5
parent: 2
- - uid: 3340
+ - uid: 5552
components:
- type: Transform
- pos: 46.5,-17.5
+ pos: -73.5,-30.5
parent: 2
- - uid: 3341
+ - uid: 5553
components:
- type: Transform
- pos: 49.5,-14.5
+ pos: -72.5,9.5
parent: 2
- - uid: 3342
+ - uid: 5554
components:
- type: Transform
- pos: 17.5,-32.5
+ pos: 0.5,-14.5
parent: 2
- - uid: 3343
+ - uid: 5555
components:
- type: Transform
- pos: 31.5,-38.5
+ pos: -52.5,16.5
parent: 2
- - uid: 3344
+ - uid: 5556
components:
- type: Transform
- pos: 10.5,-15.5
+ pos: -50.5,12.5
parent: 2
- - uid: 3345
+ - uid: 5557
components:
- type: Transform
- pos: -29.5,33.5
+ pos: -52.5,27.5
parent: 2
- - uid: 3346
+ - uid: 5558
components:
- type: Transform
- pos: 34.5,35.5
+ pos: -51.5,47.5
parent: 2
- - uid: 3347
+ - uid: 5559
components:
- type: Transform
- pos: -18.5,-45.5
+ pos: -45.5,52.5
parent: 2
- - uid: 3348
+ - uid: 5560
components:
- type: Transform
- pos: -55.5,32.5
+ pos: -55.5,45.5
parent: 2
- - uid: 3349
+ - uid: 5561
components:
- type: Transform
- pos: -0.5,-37.5
+ pos: -45.5,54.5
parent: 2
- - uid: 3350
+ - uid: 5562
components:
- type: Transform
- pos: -14.5,-25.5
+ pos: -30.5,71.5
parent: 2
- - uid: 3351
+ - uid: 5563
components:
- type: Transform
- pos: -62.5,-22.5
+ pos: 40.5,-34.5
parent: 2
- - uid: 3352
+ - uid: 5564
components:
- type: Transform
- pos: 4.5,-17.5
+ pos: -41.5,10.5
parent: 2
- - uid: 3353
+ - uid: 5565
components:
- type: Transform
- pos: -5.5,-13.5
+ pos: 8.5,-26.5
parent: 2
- - uid: 3354
+ - uid: 5566
components:
- type: Transform
- pos: 56.5,-21.5
+ pos: 25.5,-42.5
parent: 2
- - uid: 3355
+ - uid: 5567
components:
- type: Transform
- pos: 43.5,-20.5
+ pos: -54.5,-27.5
parent: 2
- - uid: 3356
+ - uid: 5568
components:
- type: Transform
- pos: 34.5,33.5
+ pos: -29.5,54.5
parent: 2
- - uid: 3357
+ - uid: 5569
components:
- type: Transform
- pos: 25.5,-10.5
+ pos: -22.5,-27.5
parent: 2
- - uid: 3358
+ - uid: 5570
components:
- type: Transform
- pos: -35.5,16.5
+ pos: 21.5,46.5
parent: 2
- - uid: 3359
+ - uid: 5571
components:
- type: Transform
- pos: 68.5,26.5
+ pos: -2.5,34.5
parent: 2
- - uid: 3360
+ - uid: 5572
components:
- type: Transform
- pos: 35.5,35.5
+ pos: -38.5,50.5
parent: 2
- - uid: 3361
+ - uid: 5573
components:
- type: Transform
- pos: 17.5,-24.5
+ pos: 32.5,-60.5
parent: 2
- - uid: 3362
+ - uid: 5574
components:
- type: Transform
- pos: 35.5,36.5
+ pos: 11.5,79.5
parent: 2
- - uid: 3363
+ - uid: 5575
components:
- type: Transform
- pos: 29.5,-30.5
+ pos: 39.5,-70.5
parent: 2
- - uid: 3364
+ - uid: 5576
components:
- type: Transform
- pos: 31.5,-39.5
+ pos: -18.5,59.5
parent: 2
- - uid: 3365
+ - uid: 5577
components:
- type: Transform
- pos: 10.5,-26.5
+ pos: 39.5,-75.5
parent: 2
- - uid: 3366
+ - uid: 5578
components:
- type: Transform
- pos: -0.5,-47.5
+ pos: -15.5,-75.5
parent: 2
- - uid: 3367
+ - uid: 5579
components:
- type: Transform
- pos: -77.5,12.5
+ pos: -39.5,37.5
parent: 2
- - uid: 3368
+ - uid: 5580
components:
- type: Transform
- pos: -77.5,11.5
+ pos: -6.5,27.5
parent: 2
- - uid: 3369
+ - uid: 5581
components:
- type: Transform
- pos: -62.5,10.5
+ pos: -58.5,-20.5
parent: 2
- - uid: 3370
+ - uid: 5582
components:
- type: Transform
- pos: -66.5,15.5
+ pos: 2.5,61.5
parent: 2
- - uid: 3371
+ - uid: 5583
components:
- type: Transform
- pos: -50.5,13.5
+ pos: -18.5,-65.5
parent: 2
- - uid: 3372
+ - uid: 5584
components:
- type: Transform
- pos: -63.5,16.5
+ pos: -0.5,-70.5
parent: 2
- - uid: 3373
+ - uid: 5585
components:
- type: Transform
- pos: 33.5,-47.5
+ pos: 17.5,21.5
parent: 2
- - uid: 3374
+ - uid: 5586
components:
- type: Transform
- pos: -47.5,13.5
+ pos: 26.5,30.5
parent: 2
- - uid: 3375
+ - uid: 5587
components:
- type: Transform
- pos: -48.5,20.5
+ pos: 18.5,38.5
parent: 2
- - uid: 3376
+ - uid: 5588
components:
- type: Transform
- pos: -65.5,36.5
+ pos: -61.5,1.5
parent: 2
- - uid: 3377
+ - uid: 5589
components:
- type: Transform
- pos: -2.5,-64.5
+ pos: 56.5,-30.5
parent: 2
- - uid: 3378
+ - uid: 5590
components:
- type: Transform
- pos: -21.5,-60.5
+ pos: 40.5,-36.5
parent: 2
- - uid: 3379
+ - uid: 5591
components:
- type: Transform
- pos: -2.5,-8.5
+ pos: 27.5,-56.5
parent: 2
- - uid: 3380
+ - uid: 5592
components:
- type: Transform
- pos: -42.5,-11.5
+ pos: 5.5,90.5
parent: 2
- - uid: 3381
+ - uid: 5593
components:
- type: Transform
- pos: -25.5,47.5
+ pos: -18.5,28.5
parent: 2
- - uid: 3382
+ - uid: 5594
components:
- type: Transform
- pos: -36.5,-16.5
+ pos: -37.5,43.5
parent: 2
- - uid: 3383
+ - uid: 5595
components:
- type: Transform
- pos: 62.5,3.5
+ pos: 24.5,5.5
parent: 2
- - uid: 3384
+ - uid: 5596
components:
- type: Transform
- pos: -28.5,-13.5
+ pos: 21.5,9.5
parent: 2
- - uid: 3385
+ - uid: 5597
components:
- type: Transform
- pos: -17.5,-41.5
+ pos: 6.5,71.5
parent: 2
- - uid: 3386
+ - uid: 5598
components:
- type: Transform
- pos: 29.5,-22.5
+ pos: -10.5,-56.5
parent: 2
- - uid: 3387
+ - uid: 5599
components:
- type: Transform
- pos: 17.5,-38.5
+ pos: 13.5,-55.5
parent: 2
- - uid: 3388
+ - uid: 5600
components:
- type: Transform
- pos: 3.5,-39.5
+ pos: 0.5,-61.5
parent: 2
- - uid: 3389
+ - uid: 5601
components:
- type: Transform
- pos: 16.5,-52.5
+ pos: 50.5,-46.5
parent: 2
- - uid: 3390
+ - uid: 5602
components:
- type: Transform
- pos: -12.5,-52.5
+ pos: 69.5,-18.5
parent: 2
- - uid: 3391
+ - uid: 5603
components:
- type: Transform
- pos: -28.5,-49.5
+ pos: 52.5,-21.5
parent: 2
- - uid: 3392
+ - uid: 5604
components:
- type: Transform
- pos: -28.5,-51.5
+ pos: 40.5,-15.5
parent: 2
- - uid: 3393
+ - uid: 5605
components:
- type: Transform
- pos: 17.5,-40.5
+ pos: 26.5,57.5
parent: 2
- - uid: 3394
+ - uid: 5606
components:
- type: Transform
- pos: 88.5,10.5
+ pos: -64.5,7.5
parent: 2
- - uid: 3395
+ - uid: 5607
components:
- type: Transform
- pos: -10.5,-23.5
+ pos: 34.5,-9.5
parent: 2
- - uid: 3396
+ - uid: 5608
components:
- type: Transform
- pos: 7.5,16.5
+ pos: 56.5,-46.5
parent: 2
- - uid: 3397
+ - uid: 5609
components:
- type: Transform
- pos: -14.5,-15.5
+ pos: 21.5,-2.5
parent: 2
- - uid: 3398
+ - uid: 5610
components:
- type: Transform
- pos: 35.5,37.5
+ pos: 43.5,12.5
parent: 2
- - uid: 3399
+ - uid: 5611
components:
- type: Transform
- pos: 21.5,51.5
+ pos: 29.5,9.5
parent: 2
- - uid: 3400
+ - uid: 5612
components:
- type: Transform
- pos: -24.5,-52.5
+ pos: -58.5,-28.5
parent: 2
- - uid: 3401
+ - uid: 5613
components:
- type: Transform
- pos: -4.5,14.5
+ pos: 21.5,53.5
parent: 2
- - uid: 3402
+ - uid: 5614
components:
- type: Transform
- pos: -10.5,-32.5
+ pos: 10.5,39.5
parent: 2
- - uid: 3403
+ - uid: 5615
components:
- type: Transform
- pos: -10.5,-13.5
+ pos: 28.5,32.5
parent: 2
- - uid: 3404
+ - uid: 5616
components:
- type: Transform
- pos: 5.5,18.5
+ pos: 17.5,-2.5
parent: 2
- - uid: 3405
+ - uid: 5617
components:
- type: Transform
- pos: -12.5,-13.5
+ pos: -4.5,-19.5
parent: 2
- - uid: 3406
+ - uid: 5618
components:
- type: Transform
- pos: -4.5,-36.5
+ pos: -46.5,39.5
parent: 2
- - uid: 3407
+ - uid: 5619
components:
- type: Transform
- pos: -5.5,-10.5
+ pos: -58.5,58.5
parent: 2
- - uid: 3408
+ - uid: 5620
components:
- type: Transform
- pos: 7.5,-9.5
+ pos: -64.5,58.5
parent: 2
- - uid: 3409
+ - uid: 5621
components:
- type: Transform
- pos: 10.5,-12.5
+ pos: -52.5,50.5
parent: 2
- - uid: 3410
+ - uid: 5622
components:
- type: Transform
- pos: 7.5,-13.5
+ pos: -25.5,-30.5
parent: 2
- - uid: 3411
+ - uid: 5623
components:
- type: Transform
- pos: -5.5,14.5
+ pos: 10.5,-19.5
parent: 2
- - uid: 3412
+ - uid: 5624
components:
- type: Transform
- pos: 7.5,15.5
+ pos: -65.5,57.5
parent: 2
- - uid: 3413
+ - uid: 5625
components:
- type: Transform
- pos: -8.5,-26.5
+ pos: -34.5,62.5
parent: 2
- - uid: 3414
+ - uid: 5626
components:
- type: Transform
- pos: 18.5,-52.5
+ pos: -13.5,68.5
parent: 2
- - uid: 3415
+ - uid: 5627
components:
- type: Transform
- pos: -11.5,-12.5
+ pos: 44.5,-63.5
parent: 2
- - uid: 3416
+ - uid: 5628
components:
- type: Transform
- pos: -48.5,24.5
+ pos: 2.5,60.5
parent: 2
- - uid: 3417
+ - uid: 5629
components:
- type: Transform
- pos: -63.5,17.5
+ pos: -35.5,24.5
parent: 2
- - uid: 3418
+ - uid: 5630
components:
- type: Transform
- pos: -60.5,10.5
+ pos: -6.5,68.5
parent: 2
- - uid: 3419
+ - uid: 5631
components:
- type: Transform
- pos: -63.5,10.5
+ pos: -38.5,42.5
parent: 2
- - uid: 3420
+ - uid: 5632
components:
- type: Transform
- pos: -122.5,26.5
+ pos: -65.5,30.5
parent: 2
- - uid: 3421
+ - uid: 5633
components:
- type: Transform
- pos: -63.5,57.5
+ pos: -62.5,47.5
parent: 2
- - uid: 3422
+ - uid: 5634
components:
- type: Transform
- pos: -62.5,4.5
+ pos: -56.5,24.5
parent: 2
- - uid: 3423
+ - uid: 5635
components:
- type: Transform
- pos: -48.5,27.5
+ pos: -51.5,18.5
parent: 2
- - uid: 3424
+ - uid: 5636
components:
- type: Transform
- pos: -48.5,39.5
+ pos: -5.5,-16.5
parent: 2
- - uid: 3425
+ - uid: 5637
components:
- type: Transform
- pos: -48.5,-14.5
+ pos: -31.5,27.5
parent: 2
- - uid: 3426
+ - uid: 5638
components:
- type: Transform
- pos: -7.5,-25.5
+ pos: -24.5,14.5
parent: 2
- - uid: 3427
+ - uid: 5639
components:
- type: Transform
- pos: -6.5,-34.5
+ pos: -27.5,-2.5
parent: 2
- - uid: 3428
+ - uid: 5640
components:
- type: Transform
- pos: -16.5,16.5
+ pos: 9.5,-7.5
parent: 2
- - uid: 3429
+ - uid: 5641
components:
- type: Transform
- pos: -7.5,14.5
+ pos: -45.5,19.5
parent: 2
- - uid: 3430
+ - uid: 5642
components:
- type: Transform
- pos: 9.5,15.5
+ pos: -66.5,43.5
parent: 2
- - uid: 3431
+ - uid: 5643
components:
- type: Transform
- pos: 8.5,15.5
+ pos: -63.5,-22.5
parent: 2
- - uid: 3432
+ - uid: 5644
components:
- type: Transform
- pos: 15.5,-41.5
+ pos: -25.5,-19.5
parent: 2
- - uid: 3433
+ - uid: 5645
components:
- type: Transform
- pos: 30.5,-22.5
+ pos: -28.5,5.5
parent: 2
- - uid: 3434
+ - uid: 5646
components:
- type: Transform
- pos: -69.5,-25.5
+ pos: 6.5,72.5
parent: 2
- - uid: 3435
+ - uid: 5647
components:
- type: Transform
- pos: -72.5,-25.5
+ pos: 0.5,37.5
parent: 2
- - uid: 3436
+ - uid: 5648
components:
- type: Transform
- pos: -46.5,13.5
+ pos: 0.5,-67.5
parent: 2
- - uid: 3437
+ - uid: 5649
components:
- type: Transform
- pos: -68.5,-26.5
+ pos: -13.5,-79.5
parent: 2
- - uid: 3438
+ - uid: 5650
components:
- type: Transform
- pos: -5.5,-34.5
+ pos: 9.5,23.5
parent: 2
- - uid: 3439
+ - uid: 5651
components:
- type: Transform
- pos: -6.5,-25.5
+ pos: 5.5,-55.5
parent: 2
- - uid: 3440
+ - uid: 5652
components:
- type: Transform
- pos: 69.5,4.5
+ pos: -15.5,-80.5
parent: 2
- - uid: 3441
+ - uid: 5653
components:
- type: Transform
- pos: -48.5,-16.5
+ pos: 10.5,29.5
parent: 2
- - uid: 3442
+ - uid: 5654
components:
- type: Transform
- pos: 15.5,16.5
+ pos: -10.5,-77.5
parent: 2
- - uid: 3443
+ - uid: 5655
components:
- type: Transform
- pos: 12.5,16.5
+ pos: 2.5,-77.5
parent: 2
- - uid: 3444
+ - uid: 5656
components:
- type: Transform
- pos: 12.5,13.5
+ pos: 11.5,28.5
parent: 2
- - uid: 3445
+ - uid: 5657
components:
- type: Transform
- pos: -3.5,-14.5
+ pos: -12.5,-78.5
parent: 2
- - uid: 3446
+ - uid: 5658
components:
- type: Transform
- pos: -5.5,-14.5
+ pos: -31.5,-77.5
parent: 2
- - uid: 3447
+ - uid: 5659
components:
- type: Transform
- pos: -8.5,-15.5
+ pos: -13.5,-7.5
parent: 2
- - uid: 3448
+ - uid: 5660
components:
- type: Transform
- pos: 37.5,-34.5
+ pos: -42.5,-24.5
parent: 2
- - uid: 3449
+ - uid: 5661
components:
- type: Transform
- pos: 17.5,0.5
+ pos: -23.5,-5.5
parent: 2
- - uid: 3450
+ - uid: 5662
components:
- type: Transform
- pos: -52.5,9.5
+ pos: -48.5,46.5
parent: 2
- - uid: 3451
+ - uid: 5663
components:
- type: Transform
- pos: -69.5,15.5
+ pos: -62.5,49.5
parent: 2
- - uid: 3452
+ - uid: 5664
components:
- type: Transform
- pos: 25.5,-24.5
+ pos: -54.5,48.5
parent: 2
- - uid: 3453
+ - uid: 5665
components:
- type: Transform
- pos: -50.5,37.5
+ pos: -74.5,15.5
parent: 2
- - uid: 3454
+ - uid: 5666
components:
- type: Transform
- pos: -59.5,5.5
+ pos: -47.5,22.5
parent: 2
- - uid: 3455
+ - uid: 5667
components:
- type: Transform
- pos: -67.5,15.5
+ pos: -61.5,14.5
parent: 2
- - uid: 3456
+ - uid: 5668
components:
- type: Transform
- pos: -21.5,-20.5
+ pos: -60.5,9.5
parent: 2
- - uid: 3457
+ - uid: 5669
components:
- type: Transform
- pos: -62.5,50.5
+ pos: -54.5,47.5
parent: 2
- - uid: 3458
+ - uid: 5670
components:
- type: Transform
- pos: -44.5,-7.5
+ pos: -47.5,-15.5
parent: 2
- - uid: 3459
+ - uid: 5671
components:
- type: Transform
- pos: -44.5,-8.5
+ pos: -64.5,54.5
parent: 2
- - uid: 3460
+ - uid: 5672
components:
- type: Transform
- pos: -53.5,23.5
+ pos: -55.5,50.5
parent: 2
- - uid: 3461
+ - uid: 5673
components:
- type: Transform
- pos: -32.5,-4.5
+ pos: -52.5,18.5
parent: 2
- - uid: 3462
+ - uid: 5674
components:
- type: Transform
- pos: -1.5,51.5
+ pos: -77.5,4.5
parent: 2
- - uid: 3463
+ - uid: 5675
components:
- type: Transform
- pos: -32.5,-3.5
+ pos: -58.5,5.5
parent: 2
- - uid: 3464
+ - uid: 5676
components:
- type: Transform
- pos: -32.5,1.5
+ pos: -19.5,-27.5
parent: 2
- - uid: 3465
+ - uid: 5677
components:
- type: Transform
- pos: 67.5,-23.5
+ pos: 9.5,-3.5
parent: 2
- - uid: 3466
+ - uid: 5678
components:
- type: Transform
- pos: 5.5,-19.5
+ pos: 8.5,-2.5
parent: 2
- - uid: 3467
+ - uid: 5679
components:
- type: Transform
- pos: 75.5,-24.5
+ pos: 10.5,-4.5
parent: 2
- - uid: 3468
+ - uid: 5680
components:
- type: Transform
- pos: 24.5,-42.5
+ pos: 10.5,63.5
parent: 2
- - uid: 3469
+ - uid: 5681
components:
- type: Transform
- pos: 22.5,-6.5
+ pos: 45.5,0.5
parent: 2
- - uid: 3470
+ - uid: 5682
components:
- type: Transform
- pos: 48.5,-46.5
+ pos: 36.5,-1.5
parent: 2
- - uid: 3471
+ - uid: 5683
components:
- type: Transform
- pos: 42.5,-46.5
+ pos: 57.5,-13.5
parent: 2
- - uid: 3472
+ - uid: 5684
components:
- type: Transform
- pos: -64.5,43.5
+ pos: -56.5,2.5
parent: 2
- - uid: 3473
+ - uid: 5685
components:
- type: Transform
- pos: 43.5,-46.5
+ pos: 23.5,47.5
parent: 2
- - uid: 3474
+ - uid: 5686
components:
- type: Transform
- pos: -62.5,40.5
+ pos: 14.5,-55.5
parent: 2
- - uid: 3475
+ - uid: 5687
components:
- type: Transform
- pos: 27.5,-1.5
+ pos: -29.5,57.5
parent: 2
- - uid: 3476
+ - uid: 5688
components:
- type: Transform
- pos: 40.5,7.5
+ pos: -15.5,57.5
parent: 2
- - uid: 3477
+ - uid: 5689
components:
- type: Transform
- pos: 27.5,-19.5
+ pos: -42.5,25.5
parent: 2
- - uid: 3478
+ - uid: 5690
components:
- type: Transform
- pos: 40.5,5.5
+ pos: 48.5,-20.5
parent: 2
- - uid: 3479
+ - uid: 5691
components:
- type: Transform
- pos: -55.5,42.5
+ pos: 6.5,23.5
parent: 2
- - uid: 3480
+ - uid: 5692
components:
- type: Transform
- pos: 52.5,-10.5
+ pos: 6.5,48.5
parent: 2
- - uid: 3481
+ - uid: 5693
components:
- type: Transform
- pos: 37.5,-0.5
+ pos: -52.5,-16.5
parent: 2
- - uid: 3482
+ - uid: 5694
components:
- type: Transform
- pos: 30.5,5.5
+ pos: 14.5,66.5
parent: 2
- - uid: 3483
+ - uid: 5695
components:
- type: Transform
- pos: -19.5,-51.5
+ pos: 37.5,-55.5
parent: 2
- - uid: 3484
+ - uid: 5696
components:
- type: Transform
- pos: 30.5,7.5
+ pos: 38.5,-46.5
parent: 2
- - uid: 3485
+ - uid: 5697
components:
- type: Transform
- pos: 24.5,-1.5
+ pos: 47.5,-20.5
parent: 2
- - uid: 3486
+ - uid: 5698
components:
- type: Transform
- pos: 29.5,10.5
+ pos: 36.5,-7.5
parent: 2
- - uid: 3487
+ - uid: 5699
components:
- type: Transform
- pos: 44.5,12.5
+ pos: -49.5,1.5
parent: 2
- - uid: 3488
+ - uid: 5700
components:
- type: Transform
- pos: 44.5,-8.5
+ pos: 10.5,46.5
parent: 2
- - uid: 3489
+ - uid: 5701
components:
- type: Transform
- pos: 29.5,5.5
+ pos: 17.5,4.5
parent: 2
- - uid: 3490
+ - uid: 5702
components:
- type: Transform
- pos: 45.5,12.5
+ pos: -54.5,-7.5
parent: 2
- - uid: 3491
+ - uid: 5703
components:
- type: Transform
- pos: 23.5,-5.5
+ pos: -45.5,49.5
parent: 2
- - uid: 3492
+ - uid: 5704
components:
- type: Transform
- pos: 45.5,13.5
+ pos: -53.5,45.5
parent: 2
- - uid: 3493
+ - uid: 5705
components:
- type: Transform
- pos: 53.5,-10.5
+ pos: 38.5,-3.5
parent: 2
- - uid: 3494
+ - uid: 5706
components:
- type: Transform
- pos: 26.5,-1.5
+ pos: -62.5,-19.5
parent: 2
- - uid: 3495
+ - uid: 5707
components:
- type: Transform
- pos: 40.5,-44.5
+ pos: -17.5,68.5
parent: 2
- - uid: 3496
+ - uid: 5708
components:
- type: Transform
- pos: 31.5,5.5
+ pos: -35.5,36.5
parent: 2
- - uid: 3497
+ - uid: 5709
components:
- type: Transform
- pos: 28.5,10.5
+ pos: -19.5,-65.5
parent: 2
- - uid: 3498
+ - uid: 5710
components:
- type: Transform
- pos: 32.5,10.5
+ pos: 1.5,-70.5
parent: 2
- - uid: 3499
+ - uid: 5711
components:
- type: Transform
- pos: 40.5,6.5
+ pos: 6.5,83.5
parent: 2
- - uid: 3500
+ - uid: 5712
components:
- type: Transform
- pos: 29.5,60.5
+ pos: 17.5,19.5
parent: 2
- - uid: 3501
+ - uid: 5713
components:
- type: Transform
- pos: -56.5,1.5
+ pos: 31.5,29.5
parent: 2
- - uid: 3502
+ - uid: 5714
components:
- type: Transform
- pos: 28.5,60.5
+ pos: 40.5,-3.5
parent: 2
- - uid: 3503
+ - uid: 5715
components:
- type: Transform
- pos: 39.5,-15.5
+ pos: 23.5,0.5
parent: 2
- - uid: 3504
+ - uid: 5716
components:
- type: Transform
- pos: 64.5,-11.5
+ pos: 4.5,-9.5
parent: 2
- - uid: 3505
+ - uid: 5717
components:
- type: Transform
- pos: 59.5,-9.5
+ pos: -17.5,-61.5
parent: 2
- - uid: 3506
+ - uid: 5718
components:
- type: Transform
- pos: 64.5,-10.5
+ pos: -19.5,-61.5
parent: 2
- - uid: 3507
+ - uid: 5719
components:
- type: Transform
- pos: -5.5,23.5
+ pos: 15.5,15.5
parent: 2
- - uid: 3508
+ - uid: 5720
components:
- type: Transform
- pos: 0.5,-80.5
+ pos: -5.5,-9.5
parent: 2
- - uid: 3509
+ - uid: 5721
components:
- type: Transform
- pos: -6.5,57.5
+ pos: -5.5,-12.5
parent: 2
- - uid: 3510
+ - uid: 5722
components:
- type: Transform
- pos: 17.5,5.5
+ pos: -18.5,7.5
parent: 2
- - uid: 3511
+ - uid: 5723
components:
- type: Transform
- pos: 19.5,52.5
+ pos: 53.5,-8.5
parent: 2
- - uid: 3512
+ - uid: 5724
components:
- type: Transform
- pos: 17.5,-0.5
+ pos: 23.5,-10.5
parent: 2
- - uid: 3513
+ - uid: 5725
components:
- type: Transform
- pos: 33.5,37.5
+ pos: -57.5,51.5
parent: 2
- - uid: 3514
+ - uid: 5726
components:
- type: Transform
- pos: 36.5,37.5
+ pos: -57.5,52.5
parent: 2
- - uid: 3515
+ - uid: 5727
components:
- type: Transform
- pos: 13.5,29.5
+ pos: 3.5,35.5
parent: 2
- - uid: 3516
+ - uid: 5728
components:
- type: Transform
- pos: 41.5,-75.5
+ pos: 41.5,-0.5
parent: 2
- - uid: 3517
+ - uid: 5729
components:
- type: Transform
- pos: 17.5,10.5
+ pos: 39.5,-74.5
parent: 2
- - uid: 3518
+ - uid: 5730
components:
- type: Transform
- pos: 21.5,47.5
+ pos: -27.5,-60.5
parent: 2
- - uid: 3519
+ - uid: 5731
components:
- type: Transform
- pos: -22.5,43.5
+ pos: -18.5,13.5
parent: 2
- - uid: 3520
+ - uid: 5732
components:
- type: Transform
- pos: 10.5,41.5
+ pos: -26.5,-70.5
parent: 2
- - uid: 3521
+ - uid: 5733
components:
- type: Transform
- pos: 28.5,30.5
+ pos: -3.5,-69.5
parent: 2
- - uid: 3522
+ - uid: 5734
components:
- type: Transform
- pos: 34.5,39.5
+ pos: -30.5,12.5
parent: 2
- - uid: 3523
+ - uid: 5735
components:
- type: Transform
- pos: 10.5,44.5
+ pos: 19.5,47.5
parent: 2
- - uid: 3524
+ - uid: 5736
components:
- type: Transform
- pos: -34.5,-80.5
+ pos: 15.5,38.5
parent: 2
- - uid: 3525
+ - uid: 5737
components:
- type: Transform
- pos: -14.5,-75.5
+ pos: 13.5,49.5
parent: 2
- - uid: 3526
+ - uid: 5738
components:
- type: Transform
- pos: -19.5,-69.5
+ pos: 0.5,39.5
parent: 2
- - uid: 3527
+ - uid: 5739
components:
- type: Transform
- pos: -20.5,-69.5
+ pos: -34.5,-48.5
parent: 2
- - uid: 3528
+ - uid: 5740
components:
- type: Transform
- pos: -6.5,-70.5
+ pos: 45.5,-10.5
parent: 2
- - uid: 3529
+ - uid: 5741
components:
- type: Transform
- pos: -18.5,-3.5
+ pos: 38.5,-22.5
parent: 2
- - uid: 3530
+ - uid: 5742
components:
- type: Transform
- pos: 17.5,22.5
+ pos: 40.5,-25.5
parent: 2
- - uid: 3531
+ - uid: 5743
components:
- type: Transform
- pos: 4.5,57.5
+ pos: -26.5,53.5
parent: 2
- - uid: 3532
+ - uid: 5744
components:
- type: Transform
- pos: 21.5,48.5
+ pos: 4.5,-7.5
parent: 2
- - uid: 3533
+ - uid: 5745
components:
- type: Transform
- pos: 17.5,64.5
+ pos: -57.5,-20.5
parent: 2
- - uid: 3534
+ - uid: 5746
components:
- type: Transform
- pos: 52.5,-20.5
+ pos: 31.5,-9.5
parent: 2
- - uid: 3535
+ - uid: 5747
components:
- type: Transform
- pos: -31.5,-75.5
+ pos: 25.5,-9.5
parent: 2
- - uid: 3536
+ - uid: 5748
components:
- type: Transform
- pos: -5.5,-65.5
+ pos: -39.5,27.5
parent: 2
- - uid: 3537
+ - uid: 5749
components:
- type: Transform
- pos: -13.5,-71.5
+ pos: 22.5,-1.5
parent: 2
- - uid: 3538
+ - uid: 5750
components:
- type: Transform
- pos: -3.5,-62.5
+ pos: 22.5,2.5
parent: 2
- - uid: 3539
+ - uid: 5751
components:
- type: Transform
- pos: 18.5,53.5
+ pos: 50.5,-10.5
parent: 2
- - uid: 3540
+ - uid: 5752
components:
- type: Transform
- pos: 5.5,59.5
+ pos: 53.5,-6.5
parent: 2
- - uid: 3541
+ - uid: 5753
components:
- type: Transform
- pos: -51.5,-9.5
+ pos: -37.5,28.5
parent: 2
- - uid: 3542
+ - uid: 5754
components:
- type: Transform
- pos: -60.5,-16.5
+ pos: -37.5,27.5
parent: 2
- - uid: 3543
+ - uid: 5755
components:
- type: Transform
- pos: 14.5,35.5
+ pos: 74.5,-44.5
parent: 2
- - uid: 3544
+ - uid: 5756
components:
- type: Transform
- pos: 67.5,-24.5
+ pos: 22.5,-5.5
parent: 2
- - uid: 3545
+ - uid: 5757
components:
- type: Transform
- pos: 67.5,-22.5
+ pos: -37.5,26.5
parent: 2
- - uid: 3546
+ - uid: 5758
components:
- type: Transform
- pos: 7.5,57.5
+ pos: -8.5,-64.5
parent: 2
- - uid: 3547
+ - uid: 5759
components:
- type: Transform
- pos: 14.5,71.5
+ pos: 21.5,36.5
parent: 2
- - uid: 3548
+ - uid: 5760
components:
- type: Transform
- pos: 34.5,37.5
+ pos: -27.5,-67.5
parent: 2
- - uid: 3549
+ - uid: 5761
components:
- type: Transform
- pos: 5.5,57.5
+ pos: 15.5,41.5
parent: 2
- - uid: 3550
+ - uid: 5762
components:
- type: Transform
- pos: 13.5,72.5
+ pos: 26.5,-12.5
parent: 2
- - uid: 3551
+ - uid: 5763
components:
- type: Transform
- pos: 34.5,-10.5
+ pos: 20.5,31.5
parent: 2
- - uid: 3552
+ - uid: 5764
components:
- type: Transform
- pos: 21.5,49.5
+ pos: -13.5,23.5
parent: 2
- - uid: 3553
+ - uid: 5765
components:
- type: Transform
- pos: 25.5,49.5
+ pos: 10.5,85.5
parent: 2
- - uid: 3554
+ - uid: 5766
components:
- type: Transform
- pos: 17.5,2.5
+ pos: 40.5,-69.5
parent: 2
- - uid: 3555
+ - uid: 5767
components:
- type: Transform
- pos: 10.5,61.5
+ pos: -16.5,-66.5
parent: 2
- - uid: 3556
+ - uid: 5768
components:
- type: Transform
- pos: -22.5,-26.5
+ pos: 35.5,-69.5
parent: 2
- - uid: 3557
+ - uid: 5769
components:
- type: Transform
- pos: 10.5,62.5
+ pos: -38.5,33.5
parent: 2
- - uid: 3558
+ - uid: 5770
components:
- type: Transform
- pos: 0.5,51.5
+ pos: -38.5,32.5
parent: 2
- - uid: 3559
+ - uid: 5771
components:
- type: Transform
- pos: 75.5,-23.5
+ pos: -6.5,23.5
parent: 2
- - uid: 3560
+ - uid: 5772
components:
- type: Transform
- pos: 25.5,48.5
+ pos: -41.5,51.5
parent: 2
- - uid: 3561
+ - uid: 5773
components:
- type: Transform
- pos: -3.5,37.5
+ pos: 39.5,-65.5
parent: 2
- - uid: 3562
+ - uid: 5774
components:
- type: Transform
- pos: -2.5,37.5
+ pos: -13.5,-61.5
parent: 2
- - uid: 3563
+ - uid: 5775
components:
- type: Transform
- pos: 34.5,-11.5
+ pos: -0.5,-60.5
parent: 2
- - uid: 3564
+ - uid: 5776
components:
- type: Transform
- pos: 15.5,60.5
+ pos: 18.5,35.5
parent: 2
- - uid: 3565
+ - uid: 5777
components:
- type: Transform
- pos: 28.5,-15.5
+ pos: -3.5,-58.5
parent: 2
- - uid: 3566
+ - uid: 5778
components:
- type: Transform
- pos: 68.5,-24.5
+ pos: -64.5,56.5
parent: 2
- - uid: 3567
+ - uid: 5779
components:
- type: Transform
- pos: 13.5,60.5
+ pos: 40.5,-32.5
parent: 2
- - uid: 3568
+ - uid: 5780
components:
- type: Transform
- pos: -52.5,-13.5
+ pos: 36.5,-15.5
parent: 2
- - uid: 3569
+ - uid: 5781
components:
- type: Transform
- pos: 62.5,-11.5
+ pos: -60.5,1.5
parent: 2
- - uid: 3570
+ - uid: 5782
components:
- type: Transform
- pos: 44.5,-7.5
+ pos: 26.5,5.5
parent: 2
- - uid: 3571
+ - uid: 5783
components:
- type: Transform
- pos: 44.5,5.5
+ pos: 38.5,-7.5
parent: 2
- - uid: 3572
+ - uid: 5784
components:
- type: Transform
- pos: 34.5,-0.5
+ pos: 44.5,-23.5
parent: 2
- - uid: 3573
+ - uid: 5785
components:
- type: Transform
- pos: 35.5,-0.5
+ pos: 69.5,-15.5
parent: 2
- - uid: 3574
+ - uid: 5786
components:
- type: Transform
- pos: -34.5,-79.5
+ pos: 71.5,-24.5
parent: 2
- - uid: 3575
+ - uid: 5787
components:
- type: Transform
- pos: -37.5,50.5
+ pos: 55.5,-26.5
parent: 2
- - uid: 3576
+ - uid: 5788
components:
- type: Transform
- pos: -31.5,24.5
+ pos: 39.5,-71.5
parent: 2
- - uid: 3577
+ - uid: 5789
components:
- type: Transform
- pos: -34.5,-78.5
+ pos: 10.5,27.5
parent: 2
- - uid: 3578
+ - uid: 5790
components:
- type: Transform
- pos: -31.5,-78.5
+ pos: 0.5,57.5
parent: 2
- - uid: 3579
+ - uid: 5791
components:
- type: Transform
- pos: -30.5,-78.5
+ pos: 31.5,-16.5
parent: 2
- - uid: 3580
+ - uid: 5792
components:
- type: Transform
- pos: -30.5,-79.5
+ pos: 56.5,-23.5
parent: 2
- - uid: 3581
+ - uid: 5793
components:
- type: Transform
- pos: -30.5,-80.5
+ pos: 71.5,-18.5
parent: 2
- - uid: 3582
+ - uid: 5794
components:
- type: Transform
- pos: 17.5,52.5
+ pos: 52.5,-40.5
parent: 2
- - uid: 3583
+ - uid: 5795
components:
- type: Transform
- pos: -0.5,-80.5
+ pos: 52.5,-36.5
parent: 2
- - uid: 3584
+ - uid: 5796
components:
- type: Transform
- pos: 26.5,-64.5
+ pos: 10.5,57.5
parent: 2
- - uid: 3585
+ - uid: 5797
components:
- type: Transform
- pos: 5.5,-43.5
+ pos: 26.5,27.5
parent: 2
- - uid: 3586
+ - uid: 5798
components:
- type: Transform
- pos: 2.5,52.5
+ pos: 17.5,25.5
parent: 2
- - uid: 3587
+ - uid: 5799
components:
- type: Transform
- pos: -28.5,-26.5
+ pos: 5.5,68.5
parent: 2
- - uid: 3588
+ - uid: 5800
components:
- type: Transform
- pos: -39.5,61.5
+ pos: -35.5,-48.5
parent: 2
- - uid: 3589
+ - uid: 5801
components:
- type: Transform
- pos: -30.5,22.5
+ pos: -6.5,-62.5
parent: 2
- - uid: 3590
+ - uid: 5802
components:
- type: Transform
- pos: 15.5,-45.5
+ pos: 36.5,-29.5
parent: 2
- - uid: 3591
+ - uid: 5803
components:
- type: Transform
- pos: 15.5,-46.5
+ pos: 13.5,28.5
parent: 2
- - uid: 3592
+ - uid: 5804
components:
- type: Transform
- pos: -37.5,-11.5
+ pos: 7.5,-55.5
parent: 2
- - uid: 3593
+ - uid: 5805
components:
- type: Transform
- pos: 3.5,-43.5
+ pos: 17.5,-4.5
parent: 2
- - uid: 3594
+ - uid: 5806
components:
- type: Transform
- pos: -40.5,61.5
+ pos: 12.5,23.5
parent: 2
- - uid: 3595
+ - uid: 5807
components:
- type: Transform
- pos: 2.5,65.5
+ pos: -65.5,-20.5
parent: 2
- - uid: 3596
+ - uid: 5808
components:
- type: Transform
- pos: -37.5,-10.5
+ pos: -32.5,5.5
parent: 2
- - uid: 3597
+ - uid: 5809
components:
- type: Transform
- pos: -39.5,5.5
+ pos: -41.5,4.5
parent: 2
- - uid: 3598
+ - uid: 5810
components:
- type: Transform
- pos: -8.5,-80.5
+ pos: -3.5,62.5
parent: 2
- - uid: 3599
+ - uid: 5811
components:
- type: Transform
- pos: -46.5,-32.5
+ pos: 43.5,-69.5
parent: 2
- - uid: 3600
+ - uid: 5812
components:
- type: Transform
- pos: -51.5,-32.5
+ pos: -0.5,-17.5
parent: 2
- - uid: 3601
+ - uid: 5813
components:
- type: Transform
- pos: -32.5,-2.5
+ pos: -35.5,20.5
parent: 2
- - uid: 3602
+ - uid: 5814
components:
- type: Transform
- pos: -54.5,-20.5
+ pos: -26.5,9.5
parent: 2
- - uid: 3603
+ - uid: 5815
components:
- type: Transform
- pos: -14.5,42.5
+ pos: -35.5,40.5
parent: 2
- - uid: 3604
+ - uid: 5816
components:
- type: Transform
- pos: -20.5,-13.5
+ pos: 35.5,-62.5
parent: 2
- - uid: 3605
+ - uid: 5817
components:
- type: Transform
- pos: -14.5,35.5
+ pos: -29.5,34.5
parent: 2
- - uid: 3606
+ - uid: 5818
components:
- type: Transform
- pos: -0.5,-28.5
+ pos: -59.5,31.5
parent: 2
- - uid: 3607
+ - uid: 5819
components:
- type: Transform
- pos: -21.5,49.5
+ pos: -10.5,-19.5
parent: 2
- - uid: 3608
+ - uid: 5820
components:
- type: Transform
- pos: -28.5,46.5
+ pos: -41.5,13.5
parent: 2
- - uid: 3609
+ - uid: 5821
components:
- type: Transform
- pos: -46.5,-30.5
+ pos: -37.5,-0.5
parent: 2
- - uid: 3610
+ - uid: 5822
components:
- type: Transform
- pos: -46.5,-24.5
+ pos: -25.5,22.5
parent: 2
- - uid: 3611
+ - uid: 5823
components:
- type: Transform
- pos: -35.5,15.5
+ pos: -35.5,25.5
parent: 2
- - uid: 3612
+ - uid: 5824
components:
- type: Transform
- pos: -8.5,77.5
+ pos: -55.5,35.5
parent: 2
- - uid: 3613
+ - uid: 5825
components:
- type: Transform
- pos: 36.5,-33.5
+ pos: -30.5,-28.5
parent: 2
- - uid: 3614
+ - uid: 5826
components:
- type: Transform
- pos: -30.5,7.5
+ pos: -29.5,68.5
parent: 2
- - uid: 3615
+ - uid: 5827
components:
- type: Transform
- pos: -14.5,-69.5
+ pos: -33.5,9.5
parent: 2
- - uid: 3616
+ - uid: 5828
components:
- type: Transform
- pos: -13.5,-69.5
+ pos: -63.5,-28.5
parent: 2
- - uid: 3617
+ - uid: 5829
components:
- type: Transform
- pos: -22.5,36.5
+ pos: -41.5,-25.5
parent: 2
- - uid: 3618
+ - uid: 5830
components:
- type: Transform
- pos: 12.5,78.5
+ pos: -21.5,-78.5
parent: 2
- - uid: 3619
+ - uid: 5831
components:
- type: Transform
- pos: -0.5,-19.5
+ pos: -23.5,0.5
parent: 2
- - uid: 3620
+ - uid: 5832
components:
- type: Transform
- pos: 27.5,-55.5
+ pos: -32.5,23.5
parent: 2
- - uid: 3621
+ - uid: 5833
components:
- type: Transform
- pos: 17.5,17.5
+ pos: 31.5,-65.5
parent: 2
- - uid: 3622
+ - uid: 5834
components:
- type: Transform
- pos: 36.5,-25.5
+ pos: -34.5,17.5
parent: 2
- - uid: 3623
+ - uid: 5835
components:
- type: Transform
- pos: 28.5,42.5
+ pos: -33.5,-5.5
parent: 2
- - uid: 3624
+ - uid: 5836
components:
- type: Transform
- pos: -23.5,-63.5
+ pos: 11.5,83.5
parent: 2
- - uid: 3625
+ - uid: 5837
components:
- type: Transform
- pos: 4.5,84.5
+ pos: -35.5,8.5
parent: 2
- - uid: 3626
+ - uid: 5838
components:
- type: Transform
- pos: -11.5,71.5
+ pos: -0.5,-34.5
parent: 2
- - uid: 3627
+ - uid: 5839
components:
- type: Transform
- pos: -10.5,57.5
+ pos: 29.5,-29.5
parent: 2
- - uid: 3628
+ - uid: 5840
components:
- type: Transform
- pos: -41.5,52.5
+ pos: -57.5,41.5
parent: 2
- - uid: 3629
+ - uid: 5841
components:
- type: Transform
- pos: -4.5,-80.5
+ pos: -46.5,-19.5
parent: 2
- - uid: 3630
+ - uid: 5842
components:
- type: Transform
- pos: -10.5,-70.5
+ pos: -5.5,-7.5
parent: 2
- - uid: 3631
+ - uid: 5843
components:
- type: Transform
- pos: 39.5,-72.5
+ pos: -24.5,17.5
parent: 2
- - uid: 3632
+ - uid: 5844
components:
- type: Transform
- pos: 17.5,16.5
+ pos: 17.5,-28.5
parent: 2
- - uid: 3633
+ - uid: 5845
components:
- type: Transform
- pos: 11.5,81.5
+ pos: 4.5,-24.5
parent: 2
- - uid: 3634
+ - uid: 5846
components:
- type: Transform
- pos: 5.5,91.5
+ pos: 27.5,-51.5
parent: 2
- - uid: 3635
+ - uid: 5847
components:
- type: Transform
- pos: -2.5,-19.5
+ pos: -65.5,-28.5
parent: 2
- - uid: 3636
+ - uid: 5848
components:
- type: Transform
- pos: -0.5,-23.5
+ pos: -25.5,37.5
parent: 2
- - uid: 3637
+ - uid: 5849
components:
- type: Transform
- pos: -18.5,57.5
+ pos: -56.5,19.5
parent: 2
- - uid: 3638
+ - uid: 5850
components:
- type: Transform
- pos: -9.5,-80.5
+ pos: -57.5,-22.5
parent: 2
- - uid: 3639
+ - uid: 5851
components:
- type: Transform
- pos: 5.5,84.5
+ pos: -13.5,-14.5
parent: 2
- - uid: 3640
+ - uid: 5852
components:
- type: Transform
- pos: -15.5,50.5
+ pos: 5.5,14.5
parent: 2
- - uid: 3641
+ - uid: 5853
components:
- type: Transform
- pos: -0.5,-24.5
+ pos: -18.5,-34.5
parent: 2
- - uid: 3642
+ - uid: 5854
components:
- type: Transform
- pos: 6.5,68.5
+ pos: -65.5,-27.5
parent: 2
- - uid: 3643
+ - uid: 5855
components:
- type: Transform
- pos: 33.5,-66.5
+ pos: -4.5,18.5
parent: 2
- - uid: 3644
+ - uid: 5856
components:
- type: Transform
- pos: -58.5,-0.5
+ pos: -5.5,-25.5
parent: 2
- - uid: 3645
+ - uid: 5857
components:
- type: Transform
- pos: 1.5,46.5
+ pos: 58.5,9.5
parent: 2
- - uid: 3646
+ - uid: 5858
components:
- type: Transform
- pos: 17.5,50.5
+ pos: 58.5,7.5
parent: 2
- - uid: 3647
+ - uid: 5859
components:
- type: Transform
- pos: 28.5,40.5
+ pos: -13.5,-54.5
parent: 2
- - uid: 3648
+ - uid: 5860
components:
- type: Transform
- pos: -55.5,-13.5
+ pos: -13.5,-47.5
parent: 2
- - uid: 3649
+ - uid: 5861
components:
- type: Transform
- pos: 1.5,45.5
+ pos: -12.5,-31.5
parent: 2
- - uid: 3650
+ - uid: 5862
components:
- type: Transform
- pos: -54.5,-8.5
+ pos: 36.5,-39.5
parent: 2
- - uid: 3651
+ - uid: 5863
components:
- type: Transform
- pos: 17.5,51.5
+ pos: -19.5,-41.5
parent: 2
- - uid: 3652
+ - uid: 5864
components:
- type: Transform
- pos: 1.5,44.5
+ pos: -66.5,-29.5
parent: 2
- - uid: 3653
+ - uid: 5865
components:
- type: Transform
- pos: 1.5,42.5
+ pos: 31.5,-51.5
parent: 2
- - uid: 3654
+ - uid: 5866
components:
- type: Transform
- pos: 1.5,43.5
+ pos: 12.5,3.5
parent: 2
- - uid: 3655
+ - uid: 5867
components:
- type: Transform
- pos: 1.5,39.5
+ pos: 3.5,-26.5
parent: 2
- - uid: 3656
+ - uid: 5868
components:
- type: Transform
- pos: 1.5,40.5
+ pos: -13.5,-29.5
parent: 2
- - uid: 3657
+ - uid: 5869
components:
- type: Transform
- pos: 1.5,41.5
+ pos: 10.5,6.5
parent: 2
- - uid: 3658
+ - uid: 5870
components:
- type: Transform
- pos: 30.5,60.5
+ pos: -15.5,-38.5
parent: 2
- - uid: 3659
+ - uid: 5871
components:
- type: Transform
- pos: -48.5,1.5
+ pos: -58.5,-36.5
parent: 2
- - uid: 3660
+ - uid: 5872
components:
- type: Transform
- pos: 37.5,-9.5
+ pos: 61.5,4.5
parent: 2
- - uid: 3661
+ - uid: 5873
components:
- type: Transform
- pos: -52.5,-1.5
+ pos: 13.5,15.5
parent: 2
- - uid: 3662
+ - uid: 5874
components:
- type: Transform
- pos: -58.5,-15.5
+ pos: 14.5,15.5
parent: 2
- - uid: 3663
+ - uid: 5875
components:
- type: Transform
- pos: -54.5,-13.5
+ pos: 27.5,-29.5
parent: 2
- - uid: 3664
+ - uid: 5876
components:
- type: Transform
- pos: 30.5,56.5
+ pos: 21.5,-29.5
parent: 2
- - uid: 3665
+ - uid: 5877
components:
- type: Transform
- pos: 5.5,66.5
+ pos: 25.5,-46.5
parent: 2
- - uid: 3666
+ - uid: 5878
components:
- type: Transform
- pos: 74.5,-24.5
+ pos: -62.5,-42.5
parent: 2
- - uid: 3667
+ - uid: 5879
components:
- type: Transform
- pos: 41.5,-12.5
+ pos: -58.5,-35.5
parent: 2
- - uid: 3668
+ - uid: 5880
components:
- type: Transform
- pos: 57.5,-30.5
+ pos: 23.5,-45.5
parent: 2
- - uid: 3669
+ - uid: 5881
components:
- type: Transform
- pos: 61.5,-30.5
+ pos: -17.5,-40.5
parent: 2
- - uid: 3670
+ - uid: 5882
components:
- type: Transform
- pos: 58.5,-13.5
+ pos: -47.5,14.5
parent: 2
- - uid: 3671
+ - uid: 5883
components:
- type: Transform
- pos: 34.5,-13.5
+ pos: -0.5,0.5
parent: 2
- - uid: 3672
+ - uid: 5884
components:
- type: Transform
- pos: 48.5,-18.5
+ pos: -56.5,7.5
parent: 2
- - uid: 3673
+ - uid: 5885
components:
- type: Transform
- pos: 34.5,-15.5
+ pos: -61.5,25.5
parent: 2
- - uid: 3674
+ - uid: 5886
components:
- type: Transform
- pos: 40.5,-35.5
+ pos: -53.5,18.5
parent: 2
- - uid: 3675
+ - uid: 5887
components:
- type: Transform
- pos: 60.5,-28.5
+ pos: -51.5,5.5
parent: 2
- - uid: 3676
+ - uid: 5888
components:
- type: Transform
- pos: 34.5,-14.5
+ pos: -58.5,-6.5
parent: 2
- - uid: 3677
+ - uid: 5889
components:
- type: Transform
- pos: -33.5,23.5
+ pos: -56.5,8.5
parent: 2
- - uid: 3678
+ - uid: 5890
components:
- type: Transform
- pos: -39.5,-63.5
+ pos: 0.5,17.5
parent: 2
- - uid: 3679
+ - uid: 5891
components:
- type: Transform
- pos: -25.5,-76.5
+ pos: -7.5,12.5
parent: 2
- - uid: 3680
+ - uid: 5892
components:
- type: Transform
- pos: -8.5,23.5
+ pos: -15.5,15.5
parent: 2
- - uid: 3681
+ - uid: 5893
components:
- type: Transform
- pos: 37.5,-30.5
+ pos: -5.5,-31.5
parent: 2
- - uid: 3682
+ - uid: 5894
components:
- type: Transform
- pos: 0.5,-19.5
+ pos: 22.5,-34.5
parent: 2
- - uid: 3683
+ - uid: 5895
components:
- type: Transform
- pos: -6.5,62.5
+ pos: -13.5,-37.5
parent: 2
- - uid: 3684
+ - uid: 5896
components:
- type: Transform
- pos: -6.5,40.5
+ pos: -55.5,27.5
parent: 2
- - uid: 3685
+ - uid: 5897
components:
- type: Transform
- pos: 6.5,88.5
+ pos: -8.5,57.5
parent: 2
- - uid: 3686
+ - uid: 5898
components:
- type: Transform
- pos: -11.5,68.5
+ pos: 7.5,-44.5
parent: 2
- - uid: 3687
+ - uid: 5899
components:
- type: Transform
- pos: -40.5,23.5
+ pos: -32.5,-7.5
parent: 2
- - uid: 3688
+ - uid: 5900
components:
- type: Transform
- pos: 3.5,60.5
+ pos: -24.5,-6.5
parent: 2
- - uid: 3689
+ - uid: 5901
components:
- type: Transform
- pos: -37.5,5.5
+ pos: -51.5,-27.5
parent: 2
- - uid: 3690
+ - uid: 5902
components:
- type: Transform
- pos: 1.5,-19.5
+ pos: -33.5,50.5
parent: 2
- - uid: 3691
+ - uid: 5903
components:
- type: Transform
- pos: -0.5,-25.5
+ pos: -24.5,-11.5
parent: 2
- - uid: 3692
+ - uid: 5904
components:
- type: Transform
- pos: -41.5,56.5
+ pos: -12.5,-19.5
parent: 2
- - uid: 3693
+ - uid: 5905
components:
- type: Transform
- pos: -23.5,68.5
+ pos: -24.5,68.5
parent: 2
- - uid: 3694
+ - uid: 5906
components:
- type: Transform
- pos: -28.5,-1.5
+ pos: 44.5,-60.5
parent: 2
- - uid: 3695
+ - uid: 5907
components:
- type: Transform
- pos: -0.5,51.5
+ pos: -0.5,-61.5
parent: 2
- - uid: 3696
+ - uid: 5908
components:
- type: Transform
- pos: -41.5,53.5
+ pos: 17.5,11.5
parent: 2
- - uid: 3697
+ - uid: 5909
components:
- type: Transform
- pos: -51.5,-29.5
+ pos: -30.5,-40.5
parent: 2
- - uid: 3698
+ - uid: 5910
components:
- type: Transform
- pos: -28.5,24.5
+ pos: 23.5,-7.5
parent: 2
- - uid: 3699
+ - uid: 5911
components:
- type: Transform
- pos: 25.5,52.5
+ pos: 50.5,-7.5
parent: 2
- - uid: 3700
+ - uid: 5912
components:
- type: Transform
- pos: -3.5,-63.5
+ pos: -8.5,-23.5
parent: 2
- - uid: 3701
+ - uid: 5913
components:
- type: Transform
- pos: -18.5,-71.5
+ pos: -24.5,-34.5
parent: 2
- - uid: 3702
+ - uid: 5914
components:
- type: Transform
- pos: 17.5,9.5
+ pos: -66.5,-40.5
parent: 2
- - uid: 3703
+ - uid: 5915
components:
- type: Transform
- pos: -36.5,5.5
+ pos: -58.5,-33.5
parent: 2
- - uid: 3704
+ - uid: 5916
components:
- type: Transform
- pos: -25.5,31.5
+ pos: -26.5,-34.5
parent: 2
- - uid: 3705
+ - uid: 5917
components:
- type: Transform
- pos: -11.5,39.5
+ pos: 59.5,4.5
parent: 2
- - uid: 3706
+ - uid: 5918
components:
- type: Transform
- pos: -26.5,31.5
+ pos: -27.5,13.5
parent: 2
- - uid: 3707
+ - uid: 5919
components:
- type: Transform
- pos: 7.5,58.5
+ pos: 14.5,-43.5
parent: 2
- - uid: 3708
+ - uid: 5920
components:
- type: Transform
- pos: -30.5,-18.5
+ pos: 0.5,62.5
parent: 2
- - uid: 3709
+ - uid: 5921
components:
- type: Transform
- pos: -4.5,49.5
+ pos: -49.5,13.5
parent: 2
- - uid: 3710
+ - uid: 5922
components:
- type: Transform
- pos: -58.5,-41.5
+ pos: 67.5,25.5
parent: 2
- - uid: 3711
+ - uid: 5923
components:
- type: Transform
- pos: 11.5,75.5
+ pos: -41.5,-3.5
parent: 2
- - uid: 3712
+ - uid: 5924
components:
- type: Transform
- pos: 11.5,74.5
+ pos: -46.5,-6.5
parent: 2
- - uid: 3713
+ - uid: 5925
components:
- type: Transform
- pos: 6.5,86.5
+ pos: 61.5,30.5
parent: 2
- - uid: 3714
+ - uid: 5926
components:
- type: Transform
- pos: -22.5,68.5
+ pos: 0.5,-47.5
parent: 2
- - uid: 3715
+ - uid: 5927
components:
- type: Transform
- pos: 41.5,-71.5
+ pos: -14.5,-33.5
parent: 2
- - uid: 3716
+ - uid: 5928
components:
- type: Transform
- pos: -58.5,-48.5
+ pos: 67.5,26.5
parent: 2
- - uid: 3717
+ - uid: 5929
components:
- type: Transform
- pos: 14.5,-45.5
+ pos: -64.5,55.5
parent: 2
- - uid: 3718
+ - uid: 5930
components:
- type: Transform
- pos: -22.5,-11.5
+ pos: -56.5,-1.5
parent: 2
- - uid: 3719
+ - uid: 5931
components:
- type: Transform
- pos: -48.5,-28.5
+ pos: -44.5,7.5
parent: 2
- - uid: 3720
+ - uid: 5932
components:
- type: Transform
- pos: -27.5,-32.5
+ pos: 62.5,5.5
parent: 2
- - uid: 3721
+ - uid: 5933
components:
- type: Transform
- pos: -3.5,49.5
+ pos: -15.5,-7.5
parent: 2
- - uid: 3722
+ - uid: 5934
components:
- type: Transform
- pos: -1.5,68.5
+ pos: -26.5,5.5
parent: 2
- - uid: 3723
+ - uid: 5935
components:
- type: Transform
- pos: -30.5,28.5
+ pos: -29.5,5.5
parent: 2
- - uid: 3724
+ - uid: 5936
components:
- type: Transform
- pos: -31.5,26.5
+ pos: -63.5,51.5
parent: 2
- - uid: 3725
+ - uid: 5937
components:
- type: Transform
- pos: -10.5,-58.5
+ pos: 3.5,68.5
parent: 2
- - uid: 3726
+ - uid: 5938
components:
- type: Transform
- pos: -42.5,29.5
+ pos: 62.5,6.5
parent: 2
- - uid: 3727
+ - uid: 5939
components:
- type: Transform
- pos: 3.5,-10.5
+ pos: -33.5,1.5
parent: 2
- - uid: 3728
+ - uid: 5940
components:
- type: Transform
- pos: -11.5,30.5
+ pos: -22.5,33.5
parent: 2
- - uid: 3729
+ - uid: 5941
components:
- type: Transform
- pos: -14.5,30.5
+ pos: 3.5,27.5
parent: 2
- - uid: 3730
+ - uid: 5942
components:
- type: Transform
- pos: -53.5,24.5
+ pos: 25.5,-1.5
parent: 2
- - uid: 3731
+ - uid: 5943
components:
- type: Transform
- pos: 0.5,-16.5
+ pos: -54.5,10.5
parent: 2
- - uid: 3732
+ - uid: 5944
components:
- type: Transform
- pos: -63.5,22.5
+ pos: -5.5,-15.5
parent: 2
- - uid: 3733
+ - uid: 5945
components:
- type: Transform
- pos: -55.5,29.5
+ pos: -36.5,61.5
parent: 2
- - uid: 3734
+ - uid: 5946
components:
- type: Transform
- pos: -40.5,21.5
+ pos: 51.5,-10.5
parent: 2
- - uid: 3735
+ - uid: 5947
components:
- type: Transform
- pos: 9.5,-39.5
+ pos: 62.5,7.5
parent: 2
- - uid: 3736
+ - uid: 5948
components:
- type: Transform
- pos: 20.5,-46.5
+ pos: 37.5,-66.5
parent: 2
- - uid: 3737
+ - uid: 5949
components:
- type: Transform
- pos: -77.5,6.5
+ pos: 44.5,-0.5
parent: 2
- - uid: 3738
+ - uid: 5950
components:
- type: Transform
- pos: -52.5,15.5
+ pos: 17.5,-7.5
parent: 2
- - uid: 3739
+ - uid: 5951
components:
- type: Transform
- pos: -33.5,-13.5
+ pos: -36.5,18.5
parent: 2
- - uid: 3740
+ - uid: 5952
components:
- type: Transform
- pos: -7.5,30.5
+ pos: 31.5,-29.5
parent: 2
- - uid: 3741
+ - uid: 5953
components:
- type: Transform
- pos: -29.5,-18.5
+ pos: 62.5,8.5
parent: 2
- - uid: 3742
+ - uid: 5954
components:
- type: Transform
- pos: -8.5,30.5
+ pos: 62.5,9.5
parent: 2
- - uid: 3743
+ - uid: 5955
components:
- type: Transform
- pos: -1.5,-14.5
+ pos: 62.5,10.5
parent: 2
- - uid: 3744
+ - uid: 5956
components:
- type: Transform
- pos: -21.5,5.5
+ pos: -17.5,23.5
parent: 2
- - uid: 3745
+ - uid: 5957
components:
- type: Transform
- pos: -55.5,-20.5
+ pos: -25.5,20.5
parent: 2
- - uid: 3746
+ - uid: 5958
components:
- type: Transform
- pos: -37.5,9.5
+ pos: 62.5,11.5
parent: 2
- - uid: 3747
+ - uid: 5959
components:
- type: Transform
- pos: -57.5,29.5
+ pos: 62.5,12.5
parent: 2
- - uid: 3748
+ - uid: 5960
components:
- type: Transform
- pos: -67.5,-34.5
+ pos: 63.5,12.5
parent: 2
- - uid: 3749
+ - uid: 5961
components:
- type: Transform
- pos: 0.5,19.5
+ pos: -40.5,62.5
parent: 2
- - uid: 3750
+ - uid: 5962
components:
- type: Transform
- pos: -8.5,14.5
+ pos: 27.5,-46.5
parent: 2
- - uid: 3751
+ - uid: 5963
components:
- type: Transform
- pos: 10.5,5.5
+ pos: 27.5,-48.5
parent: 2
- - uid: 3752
+ - uid: 5964
components:
- type: Transform
- pos: -4.5,13.5
+ pos: 27.5,-47.5
parent: 2
- - uid: 3753
+ - uid: 5965
components:
- type: Transform
- pos: -19.5,-37.5
+ pos: 27.5,-43.5
parent: 2
- - uid: 3754
+ - uid: 5966
components:
- type: Transform
- pos: 3.5,-25.5
+ pos: 27.5,-44.5
parent: 2
- - uid: 3755
+ - uid: 5967
components:
- type: Transform
- pos: 5.5,8.5
+ pos: 27.5,-45.5
parent: 2
- - uid: 3756
+ - uid: 5968
components:
- type: Transform
- pos: -58.5,28.5
+ pos: -13.5,-49.5
parent: 2
- - uid: 3757
+ - uid: 5969
components:
- type: Transform
- pos: -18.5,-37.5
+ pos: 10.5,-16.5
parent: 2
- - uid: 3758
+ - uid: 5970
components:
- type: Transform
- pos: -16.5,-42.5
+ pos: -14.5,-26.5
parent: 2
- - uid: 3759
+ - uid: 5971
components:
- type: Transform
- pos: -12.5,14.5
+ pos: 1.5,17.5
parent: 2
- - uid: 3760
+ - uid: 5972
components:
- type: Transform
- pos: -31.5,-14.5
+ pos: 10.5,-5.5
parent: 2
- - uid: 3761
+ - uid: 5973
components:
- type: Transform
- pos: -31.5,36.5
+ pos: 4.5,17.5
parent: 2
- - uid: 3762
+ - uid: 5974
components:
- type: Transform
- pos: -69.5,5.5
+ pos: 3.5,17.5
parent: 2
- - uid: 3763
+ - uid: 5975
components:
- type: Transform
- pos: -70.5,5.5
+ pos: 8.5,-3.5
parent: 2
- - uid: 3764
+ - uid: 5976
components:
- type: Transform
- pos: -1.5,26.5
+ pos: -59.5,29.5
parent: 2
- - uid: 3765
+ - uid: 5977
components:
- type: Transform
- pos: 31.5,-43.5
+ pos: -41.5,-29.5
parent: 2
- - uid: 3766
+ - uid: 5978
components:
- type: Transform
- pos: 14.5,-37.5
+ pos: 64.5,12.5
parent: 2
- - uid: 3767
+ - uid: 5979
components:
- type: Transform
- pos: 19.5,-46.5
+ pos: 4.5,-62.5
parent: 2
- - uid: 3768
+ - uid: 5980
components:
- type: Transform
- pos: 21.5,-45.5
+ pos: -51.5,-3.5
parent: 2
- - uid: 3769
+ - uid: 5981
components:
- type: Transform
- pos: 19.5,-42.5
+ pos: 65.5,12.5
parent: 2
- - uid: 3770
+ - uid: 5982
components:
- type: Transform
- pos: 13.5,-39.5
+ pos: 66.5,12.5
parent: 2
- - uid: 3771
+ - uid: 5983
components:
- type: Transform
- pos: 25.5,-44.5
+ pos: -65.5,55.5
parent: 2
- - uid: 3772
+ - uid: 5984
components:
- type: Transform
- pos: -64.5,5.5
+ pos: 65.5,11.5
parent: 2
- - uid: 3773
+ - uid: 5985
components:
- type: Transform
- pos: -33.5,33.5
+ pos: 65.5,13.5
parent: 2
- - uid: 3774
+ - uid: 5986
components:
- type: Transform
- pos: -57.5,-9.5
+ pos: -47.5,-14.5
parent: 2
- - uid: 3775
+ - uid: 5987
components:
- type: Transform
- pos: -65.5,-24.5
+ pos: 25.5,-67.5
parent: 2
- - uid: 3776
+ - uid: 5988
components:
- type: Transform
- pos: 11.5,-39.5
+ pos: 63.5,13.5
parent: 2
- - uid: 3777
+ - uid: 5989
components:
- type: Transform
- pos: -0.5,-32.5
+ pos: -36.5,-44.5
parent: 2
- - uid: 3778
+ - uid: 5990
components:
- type: Transform
- pos: 35.5,-42.5
+ pos: -21.5,-34.5
parent: 2
- - uid: 3779
+ - uid: 5991
components:
- type: Transform
- pos: -65.5,-25.5
+ pos: -69.5,-26.5
parent: 2
- - uid: 3780
+ - uid: 5992
components:
- type: Transform
- pos: -69.5,-34.5
+ pos: 35.5,-64.5
parent: 2
- - uid: 3781
+ - uid: 5993
components:
- type: Transform
- pos: -13.5,-42.5
+ pos: 25.5,-29.5
parent: 2
- - uid: 3782
+ - uid: 5994
components:
- type: Transform
- pos: 86.5,10.5
+ pos: 30.5,-25.5
parent: 2
- - uid: 3783
+ - uid: 5995
components:
- type: Transform
- pos: -12.5,-15.5
+ pos: 29.5,-25.5
parent: 2
- - uid: 3784
+ - uid: 5996
components:
- type: Transform
- pos: 4.5,14.5
+ pos: -120.5,18.5
parent: 2
- - uid: 3785
+ - uid: 5997
components:
- type: Transform
- pos: -56.5,29.5
+ pos: 35.5,-63.5
parent: 2
- - uid: 3786
+ - uid: 5998
components:
- type: Transform
- pos: -76.5,8.5
+ pos: 35.5,-61.5
parent: 2
- - uid: 3787
+ - uid: 5999
components:
- type: Transform
- pos: -54.5,14.5
+ pos: 69.5,3.5
parent: 2
- - uid: 3788
+ - uid: 6000
components:
- type: Transform
- pos: -53.5,37.5
+ pos: 36.5,-40.5
parent: 2
- - uid: 3789
+ - uid: 6001
components:
- type: Transform
- pos: -22.5,17.5
+ pos: 30.5,-24.5
parent: 2
- - uid: 3790
+ - uid: 6002
components:
- type: Transform
- pos: -21.5,17.5
+ pos: 36.5,-61.5
parent: 2
- - uid: 3791
+ - uid: 6003
components:
- type: Transform
- pos: -25.5,9.5
+ pos: 44.5,-18.5
parent: 2
- - uid: 3792
+ - uid: 6004
components:
- type: Transform
- pos: -22.5,9.5
+ pos: -32.5,-39.5
parent: 2
- - uid: 3793
+ - uid: 6005
components:
- type: Transform
- pos: 90.5,8.5
+ pos: -13.5,-48.5
parent: 2
- - uid: 3794
+ - uid: 6006
components:
- type: Transform
- pos: -45.5,28.5
+ pos: 61.5,6.5
parent: 2
- - uid: 3795
+ - uid: 6007
components:
- type: Transform
- pos: -23.5,9.5
+ pos: 31.5,-49.5
parent: 2
- - uid: 3796
+ - uid: 6008
components:
- type: Transform
- pos: -72.5,11.5
+ pos: 57.5,-9.5
parent: 2
- - uid: 3797
+ - uid: 6009
components:
- type: Transform
- pos: -46.5,8.5
+ pos: -5.5,-23.5
parent: 2
- - uid: 3798
+ - uid: 6010
components:
- type: Transform
- pos: -46.5,17.5
+ pos: -13.5,-12.5
parent: 2
- - uid: 3799
+ - uid: 6011
components:
- type: Transform
- pos: -53.5,36.5
+ pos: -1.5,19.5
parent: 2
- - uid: 3800
+ - uid: 6012
components:
- type: Transform
- pos: -24.5,9.5
+ pos: -10.5,14.5
parent: 2
- - uid: 3801
+ - uid: 6013
components:
- type: Transform
- pos: -45.5,29.5
+ pos: 12.5,-12.5
parent: 2
- - uid: 3802
+ - uid: 6014
components:
- type: Transform
- pos: -32.5,50.5
+ pos: -34.5,-41.5
parent: 2
- - uid: 3803
+ - uid: 6015
components:
- type: Transform
- pos: -34.5,49.5
+ pos: -59.5,-6.5
parent: 2
- - uid: 3804
+ - uid: 6016
components:
- type: Transform
- pos: -51.5,-25.5
+ pos: 36.5,10.5
parent: 2
- - uid: 3805
+ - uid: 6017
components:
- type: Transform
- pos: -24.5,-8.5
+ pos: 42.5,8.5
parent: 2
- - uid: 3806
+ - uid: 6018
components:
- type: Transform
- pos: 5.5,-7.5
+ pos: 63.5,6.5
parent: 2
- - uid: 3807
+ - uid: 6019
components:
- type: Transform
- pos: -33.5,-7.5
+ pos: 34.5,11.5
parent: 2
- - uid: 3808
+ - uid: 6020
components:
- type: Transform
- pos: -37.5,39.5
+ pos: 26.5,-15.5
parent: 2
- - uid: 3809
+ - uid: 6021
components:
- type: Transform
- pos: 42.5,-71.5
+ pos: 45.5,-4.5
parent: 2
- - uid: 3810
+ - uid: 6022
components:
- type: Transform
- pos: 20.5,-55.5
+ pos: 28.5,-3.5
parent: 2
- - uid: 3811
+ - uid: 6023
components:
- type: Transform
- pos: 5.5,47.5
+ pos: 29.5,-5.5
parent: 2
- - uid: 3812
+ - uid: 6024
components:
- type: Transform
- pos: 62.5,-18.5
+ pos: 35.5,-20.5
parent: 2
- - uid: 3813
+ - uid: 6025
components:
- type: Transform
- pos: 29.5,-3.5
+ pos: 61.5,-27.5
parent: 2
- - uid: 3814
+ - uid: 6026
components:
- type: Transform
- pos: 28.5,9.5
+ pos: 68.5,-18.5
parent: 2
- - uid: 3815
+ - uid: 6027
components:
- type: Transform
- pos: -38.5,57.5
+ pos: 28.5,5.5
parent: 2
- - uid: 3816
+ - uid: 6028
components:
- type: Transform
- pos: -10.5,-59.5
+ pos: 35.5,0.5
parent: 2
- - uid: 3817
+ - uid: 6029
components:
- type: Transform
- pos: -12.5,57.5
+ pos: 59.5,-27.5
parent: 2
- - uid: 3818
+ - uid: 6030
components:
- type: Transform
- pos: -42.5,27.5
+ pos: 22.5,-0.5
parent: 2
- - uid: 3819
+ - uid: 6031
components:
- type: Transform
- pos: -4.5,68.5
+ pos: 34.5,-55.5
parent: 2
- - uid: 3820
+ - uid: 6032
components:
- type: Transform
- pos: 33.5,-34.5
+ pos: 77.5,-41.5
parent: 2
- - uid: 3821
+ - uid: 6033
components:
- type: Transform
- pos: -22.5,-32.5
+ pos: -65.5,51.5
parent: 2
- - uid: 3822
+ - uid: 6034
components:
- type: Transform
- pos: -44.5,-74.5
+ pos: 56.5,-15.5
parent: 2
- - uid: 3823
+ - uid: 6035
components:
- type: Transform
- pos: 8.5,23.5
+ pos: 66.5,-18.5
parent: 2
- - uid: 3824
+ - uid: 6036
components:
- type: Transform
- pos: -9.5,30.5
+ pos: 52.5,-35.5
parent: 2
- - uid: 3825
+ - uid: 6037
components:
- type: Transform
- pos: 6.5,47.5
+ pos: 28.5,-5.5
parent: 2
- - uid: 3826
+ - uid: 6038
components:
- type: Transform
- pos: 10.5,64.5
+ pos: 62.5,-22.5
parent: 2
- - uid: 3827
+ - uid: 6039
components:
- type: Transform
- pos: -62.5,-36.5
+ pos: 27.5,-6.5
parent: 2
- - uid: 3828
+ - uid: 6040
components:
- type: Transform
- pos: 40.5,-46.5
+ pos: 24.5,-15.5
parent: 2
- - uid: 3829
+ - uid: 6041
components:
- type: Transform
- pos: 35.5,2.5
+ pos: 27.5,-15.5
parent: 2
- - uid: 3830
+ - uid: 6042
components:
- type: Transform
- pos: 25.5,5.5
+ pos: 39.5,-19.5
parent: 2
- - uid: 3831
+ - uid: 6043
components:
- type: Transform
- pos: 41.5,1.5
+ pos: 30.5,-5.5
parent: 2
- - uid: 3832
+ - uid: 6044
components:
- type: Transform
- pos: 57.5,-46.5
+ pos: -16.5,-34.5
parent: 2
- - uid: 3833
+ - uid: 6045
components:
- type: Transform
- pos: 21.5,11.5
+ pos: 27.5,-34.5
parent: 2
- - uid: 3834
+ - uid: 6046
components:
- type: Transform
- pos: -35.5,18.5
+ pos: -35.5,27.5
parent: 2
- - uid: 3835
+ - uid: 6047
components:
- type: Transform
- pos: 12.5,-55.5
+ pos: -31.5,-28.5
parent: 2
- - uid: 3836
+ - uid: 6048
components:
- type: Transform
- pos: -10.5,-55.5
+ pos: -37.5,1.5
parent: 2
- - uid: 3837
+ - uid: 6049
components:
- type: Transform
- pos: -11.5,51.5
+ pos: -55.5,36.5
parent: 2
- - uid: 3838
+ - uid: 6050
components:
- type: Transform
- pos: 44.5,-59.5
+ pos: -72.5,-30.5
parent: 2
- - uid: 3839
+ - uid: 6051
components:
- type: Transform
- pos: -27.5,-24.5
+ pos: -67.5,-30.5
parent: 2
- - uid: 3840
+ - uid: 6052
components:
- type: Transform
- pos: 17.5,-10.5
+ pos: -0.5,-36.5
parent: 2
- - uid: 3841
+ - uid: 6053
components:
- type: Transform
- pos: -23.5,-15.5
+ pos: -28.5,-25.5
parent: 2
- - uid: 3842
+ - uid: 6054
components:
- type: Transform
- pos: -13.5,-19.5
+ pos: -51.5,-20.5
parent: 2
- - uid: 3843
+ - uid: 6055
components:
- type: Transform
- pos: 6.5,71.5
+ pos: -23.5,-10.5
parent: 2
- - uid: 3844
+ - uid: 6056
components:
- type: Transform
- pos: -33.5,-29.5
+ pos: 17.5,-12.5
parent: 2
- - uid: 3845
+ - uid: 6057
components:
- type: Transform
- pos: -40.5,60.5
+ pos: -45.5,-24.5
parent: 2
- - uid: 3846
+ - uid: 6058
components:
- type: Transform
- pos: -18.5,-13.5
+ pos: 40.5,-66.5
parent: 2
- - uid: 3847
+ - uid: 6059
components:
- type: Transform
- pos: -27.5,-19.5
+ pos: -33.5,49.5
parent: 2
- - uid: 3848
+ - uid: 6060
components:
- type: Transform
- pos: -40.5,5.5
+ pos: -41.5,22.5
parent: 2
- - uid: 3849
+ - uid: 6061
components:
- type: Transform
- pos: -54.5,-22.5
+ pos: -30.5,6.5
parent: 2
- - uid: 3850
+ - uid: 6062
components:
- type: Transform
- pos: -50.5,39.5
+ pos: 27.5,-69.5
parent: 2
- - uid: 3851
+ - uid: 6063
components:
- type: Transform
- pos: -55.5,-30.5
+ pos: 29.5,-70.5
parent: 2
- - uid: 3852
+ - uid: 6064
components:
- type: Transform
- pos: -2.5,-9.5
+ pos: -8.5,-71.5
parent: 2
- - uid: 3853
+ - uid: 6065
components:
- type: Transform
- pos: -3.5,-6.5
+ pos: -58.5,-2.5
parent: 2
- - uid: 3854
+ - uid: 6066
components:
- type: Transform
- pos: 21.5,50.5
+ pos: -48.5,47.5
parent: 2
- - uid: 3855
+ - uid: 6067
components:
- type: Transform
- pos: 11.5,50.5
+ pos: -38.5,12.5
parent: 2
- - uid: 3856
+ - uid: 6068
components:
- type: Transform
- pos: -18.5,60.5
+ pos: -23.5,21.5
parent: 2
- - uid: 3857
+ - uid: 6069
components:
- type: Transform
- pos: -36.5,50.5
+ pos: -39.5,42.5
parent: 2
- - uid: 3858
+ - uid: 6070
components:
- type: Transform
- pos: -29.5,97.5
+ pos: -16.5,-75.5
parent: 2
- - uid: 3859
+ - uid: 6071
components:
- type: Transform
- pos: -38.5,62.5
+ pos: -15.5,-73.5
parent: 2
- - uid: 3860
+ - uid: 6072
components:
- type: Transform
- pos: -19.5,-13.5
+ pos: -16.5,-74.5
parent: 2
- - uid: 3861
+ - uid: 6073
components:
- type: Transform
- pos: -26.5,-19.5
+ pos: 5.5,77.5
parent: 2
- - uid: 3862
+ - uid: 6074
components:
- type: Transform
- pos: -29.5,-25.5
+ pos: -27.5,68.5
parent: 2
- - uid: 3863
+ - uid: 6075
components:
- type: Transform
- pos: -37.5,-12.5
+ pos: 42.5,-61.5
parent: 2
- - uid: 3864
+ - uid: 6076
components:
- type: Transform
- pos: -24.5,-20.5
+ pos: -25.5,-16.5
parent: 2
- - uid: 3865
+ - uid: 6077
components:
- type: Transform
- pos: -9.5,-8.5
+ pos: -68.5,-20.5
parent: 2
- - uid: 3866
+ - uid: 6078
components:
- type: Transform
- pos: -25.5,46.5
+ pos: -33.5,48.5
parent: 2
- - uid: 3867
+ - uid: 6079
components:
- type: Transform
- pos: -45.5,-28.5
+ pos: -48.5,-30.5
parent: 2
- - uid: 3868
+ - uid: 6080
components:
- type: Transform
- pos: -43.5,-11.5
+ pos: -48.5,-29.5
parent: 2
- - uid: 3869
+ - uid: 6081
components:
- type: Transform
- pos: -49.5,-19.5
+ pos: -37.5,11.5
parent: 2
- - uid: 3870
+ - uid: 6082
components:
- type: Transform
- pos: 4.5,-46.5
+ pos: -36.5,48.5
parent: 2
- - uid: 3871
+ - uid: 6083
components:
- type: Transform
- pos: 7.5,68.5
+ pos: -49.5,50.5
parent: 2
- - uid: 3872
+ - uid: 6084
components:
- type: Transform
- pos: -57.5,-24.5
+ pos: -18.5,-11.5
parent: 2
- - uid: 3873
+ - uid: 6085
components:
- type: Transform
- pos: 17.5,7.5
+ pos: -45.5,-25.5
parent: 2
- - uid: 3874
+ - uid: 6086
components:
- type: Transform
- pos: 1.5,-80.5
+ pos: -50.5,-20.5
parent: 2
- - uid: 3875
+ - uid: 6087
components:
- type: Transform
- pos: -35.5,49.5
+ pos: -30.5,-11.5
parent: 2
- - uid: 3876
+ - uid: 6088
components:
- type: Transform
- pos: -51.5,-26.5
+ pos: -45.5,-23.5
parent: 2
- - uid: 3877
+ - uid: 6089
components:
- type: Transform
- pos: -33.5,51.5
+ pos: -30.5,5.5
parent: 2
- - uid: 3878
+ - uid: 6090
components:
- type: Transform
- pos: -22.5,-8.5
+ pos: -23.5,-11.5
parent: 2
- - uid: 3879
+ - uid: 6091
components:
- type: Transform
- pos: -34.5,-24.5
+ pos: 30.5,-69.5
parent: 2
- - uid: 3880
+ - uid: 6092
components:
- type: Transform
- pos: 5.5,44.5
+ pos: -23.5,-7.5
parent: 2
- - uid: 3881
+ - uid: 6093
components:
- type: Transform
- pos: 6.5,35.5
+ pos: 0.5,-10.5
parent: 2
- - uid: 3882
+ - uid: 6094
components:
- type: Transform
- pos: 58.5,-9.5
+ pos: -14.5,-73.5
parent: 2
- - uid: 3883
+ - uid: 6095
components:
- type: Transform
- pos: 52.5,-14.5
+ pos: -13.5,-73.5
parent: 2
- - uid: 3884
+ - uid: 6096
components:
- type: Transform
- pos: -22.5,11.5
+ pos: -12.5,41.5
parent: 2
- - uid: 3885
+ - uid: 6097
components:
- type: Transform
- pos: 3.5,-19.5
+ pos: -18.5,53.5
parent: 2
- - uid: 3886
+ - uid: 6098
components:
- type: Transform
- pos: -31.5,1.5
+ pos: -0.5,-10.5
parent: 2
- - uid: 3887
+ - uid: 6099
components:
- type: Transform
- pos: -45.5,-32.5
+ pos: -26.5,-16.5
parent: 2
- - uid: 3888
+ - uid: 6100
components:
- type: Transform
- pos: -23.5,-20.5
+ pos: -46.5,28.5
parent: 2
- - uid: 3889
+ - uid: 6101
components:
- type: Transform
- pos: -8.5,-8.5
+ pos: -36.5,-48.5
parent: 2
- - uid: 3890
+ - uid: 6102
components:
- type: Transform
- pos: -27.5,46.5
+ pos: -52.5,-20.5
parent: 2
- - uid: 3891
+ - uid: 6103
components:
- type: Transform
- pos: -45.5,-29.5
+ pos: -16.5,-77.5
parent: 2
- - uid: 3892
+ - uid: 6104
components:
- type: Transform
- pos: -47.5,-19.5
+ pos: 65.5,-18.5
parent: 2
- - uid: 3893
+ - uid: 6105
components:
- type: Transform
- pos: -43.5,-12.5
+ pos: 36.5,9.5
parent: 2
- - uid: 3894
+ - uid: 6106
components:
- type: Transform
- pos: -54.5,-30.5
+ pos: 36.5,8.5
parent: 2
- - uid: 3895
+ - uid: 6107
components:
- type: Transform
- pos: 5.5,35.5
+ pos: -59.5,42.5
parent: 2
- - uid: 3896
+ - uid: 6108
components:
- type: Transform
- pos: 8.5,38.5
+ pos: 26.5,-7.5
parent: 2
- - uid: 3897
+ - uid: 6109
components:
- type: Transform
- pos: 31.5,26.5
+ pos: 62.5,-14.5
parent: 2
- - uid: 3898
+ - uid: 6110
components:
- type: Transform
- pos: -10.5,-8.5
+ pos: 26.5,1.5
parent: 2
- - uid: 3899
+ - uid: 6111
components:
- type: Transform
- pos: 11.5,53.5
+ pos: 27.5,-5.5
parent: 2
- - uid: 3900
+ - uid: 6112
components:
- type: Transform
- pos: -47.5,55.5
+ pos: 31.5,-5.5
parent: 2
- - uid: 3901
+ - uid: 6113
components:
- type: Transform
- pos: 23.5,44.5
+ pos: 24.5,-20.5
parent: 2
- - uid: 3902
+ - uid: 6114
components:
- type: Transform
- pos: 23.5,29.5
+ pos: 25.5,-20.5
parent: 2
- - uid: 3903
+ - uid: 6115
components:
- type: Transform
- pos: 8.5,27.5
+ pos: 33.5,9.5
parent: 2
- - uid: 3904
+ - uid: 6116
components:
- type: Transform
- pos: 17.5,62.5
+ pos: 42.5,11.5
parent: 2
- - uid: 3905
+ - uid: 6117
components:
- type: Transform
- pos: 12.5,28.5
+ pos: 47.5,-9.5
parent: 2
- - uid: 3906
+ - uid: 6118
components:
- type: Transform
- pos: 23.5,41.5
+ pos: 56.5,-17.5
parent: 2
- - uid: 3907
+ - uid: 6119
components:
- type: Transform
- pos: 23.5,46.5
+ pos: 41.5,-7.5
parent: 2
- - uid: 3908
+ - uid: 6120
components:
- type: Transform
- pos: 1.5,-67.5
+ pos: 56.5,-25.5
parent: 2
- - uid: 3909
+ - uid: 6121
components:
- type: Transform
- pos: -41.5,-75.5
+ pos: 52.5,-34.5
parent: 2
- - uid: 3910
+ - uid: 6122
components:
- type: Transform
- pos: -42.5,-74.5
+ pos: 52.5,-15.5
parent: 2
- - uid: 3911
+ - uid: 6123
components:
- type: Transform
- pos: -43.5,-74.5
+ pos: 38.5,-15.5
parent: 2
- - uid: 3912
+ - uid: 6124
components:
- type: Transform
- pos: -30.5,10.5
+ pos: 34.5,10.5
parent: 2
- - uid: 3913
+ - uid: 6125
components:
- type: Transform
- pos: 36.5,-66.5
+ pos: 41.5,-8.5
parent: 2
- - uid: 3914
+ - uid: 6126
components:
- type: Transform
- pos: 1.5,64.5
+ pos: 28.5,35.5
parent: 2
- - uid: 3915
+ - uid: 6127
components:
- type: Transform
- pos: 3.5,62.5
+ pos: 47.5,-7.5
parent: 2
- - uid: 3916
+ - uid: 6128
components:
- type: Transform
- pos: 2.5,63.5
+ pos: 14.5,65.5
parent: 2
- - uid: 3917
+ - uid: 6129
components:
- type: Transform
- pos: -18.5,61.5
+ pos: 80.5,-18.5
parent: 2
- - uid: 3918
+ - uid: 6130
components:
- type: Transform
- pos: 2.5,66.5
+ pos: 9.5,68.5
parent: 2
- - uid: 3919
+ - uid: 6131
components:
- type: Transform
- pos: 38.5,50.5
+ pos: 37.5,-52.5
parent: 2
- - uid: 3920
+ - uid: 6132
components:
- type: Transform
- pos: -15.5,51.5
+ pos: 37.5,-54.5
parent: 2
- - uid: 3921
+ - uid: 6133
components:
- type: Transform
- pos: -34.5,60.5
+ pos: -0.5,-48.5
parent: 2
- - uid: 3922
+ - uid: 6134
components:
- type: Transform
- pos: 2.5,-76.5
+ pos: -46.5,1.5
parent: 2
- - uid: 3923
+ - uid: 6135
components:
- type: Transform
- pos: 23.5,27.5
+ pos: 10.5,71.5
parent: 2
- - uid: 3924
+ - uid: 6136
components:
- type: Transform
- pos: 6.5,27.5
+ pos: 11.5,71.5
parent: 2
- - uid: 3925
+ - uid: 6137
components:
- type: Transform
- pos: 21.5,40.5
+ pos: -45.5,1.5
parent: 2
- - uid: 3926
+ - uid: 6138
components:
- type: Transform
- pos: 25.5,-64.5
+ pos: 2.5,23.5
parent: 2
- - uid: 3927
+ - uid: 6139
components:
- type: Transform
- pos: -62.5,-35.5
+ pos: -51.5,-7.5
parent: 2
- - uid: 3928
+ - uid: 6140
components:
- type: Transform
- pos: 67.5,-17.5
+ pos: -0.5,-49.5
parent: 2
- - uid: 3929
+ - uid: 6141
components:
- type: Transform
- pos: 56.5,-18.5
+ pos: -9.5,49.5
parent: 2
- - uid: 3930
+ - uid: 6142
components:
- type: Transform
- pos: 36.5,50.5
+ pos: 4.5,30.5
parent: 2
- - uid: 3931
+ - uid: 6143
components:
- type: Transform
- pos: 12.5,64.5
+ pos: -0.5,-50.5
parent: 2
- - uid: 3932
+ - uid: 6144
components:
- type: Transform
- pos: 10.5,60.5
+ pos: 3.5,30.5
parent: 2
- - uid: 3933
+ - uid: 6145
components:
- type: Transform
- pos: -56.5,-15.5
+ pos: 4.5,42.5
parent: 2
- - uid: 3934
+ - uid: 6146
components:
- type: Transform
- pos: -20.5,49.5
+ pos: 25.5,47.5
parent: 2
- - uid: 3935
+ - uid: 6147
components:
- type: Transform
- pos: 10.5,23.5
+ pos: 14.5,38.5
parent: 2
- - uid: 3936
+ - uid: 6148
components:
- type: Transform
- pos: 4.5,-55.5
+ pos: -8.5,49.5
parent: 2
- - uid: 3937
+ - uid: 6149
components:
- type: Transform
- pos: -5.5,-55.5
+ pos: -11.5,49.5
parent: 2
- - uid: 3938
+ - uid: 6150
components:
- type: Transform
- pos: 10.5,42.5
+ pos: 20.5,36.5
parent: 2
- - uid: 3939
+ - uid: 6151
components:
- type: Transform
- pos: 10.5,-55.5
+ pos: -10.5,49.5
parent: 2
- - uid: 3940
+ - uid: 6152
components:
- type: Transform
- pos: 17.5,-3.5
+ pos: -3.5,45.5
parent: 2
- - uid: 3941
+ - uid: 6153
components:
- type: Transform
- pos: -7.5,-55.5
+ pos: 62.5,-15.5
parent: 2
- - uid: 3942
+ - uid: 6154
components:
- type: Transform
- pos: -41.5,-76.5
+ pos: 80.5,-19.5
parent: 2
- - uid: 3943
+ - uid: 6155
components:
- type: Transform
- pos: -70.5,-34.5
+ pos: -41.5,57.5
parent: 2
- - uid: 3944
+ - uid: 6156
components:
- type: Transform
- pos: -68.5,-34.5
+ pos: 28.5,0.5
parent: 2
- - uid: 3945
+ - uid: 6157
components:
- type: Transform
- pos: -66.5,-34.5
+ pos: 67.5,-18.5
parent: 2
- - uid: 3946
+ - uid: 6158
components:
- type: Transform
- pos: -62.5,31.5
+ pos: 25.5,-19.5
parent: 2
- - uid: 3947
+ - uid: 6159
components:
- type: Transform
- pos: -54.5,38.5
+ pos: -37.5,-48.5
parent: 2
- - uid: 3948
+ - uid: 6160
components:
- type: Transform
- pos: -58.5,-9.5
+ pos: 48.5,-7.5
parent: 2
- - uid: 3949
+ - uid: 6161
components:
- type: Transform
- pos: -55.5,10.5
+ pos: -57.5,42.5
parent: 2
- - uid: 3950
+ - uid: 6162
components:
- type: Transform
- pos: -56.5,10.5
+ pos: 37.5,-49.5
parent: 2
- - uid: 3951
+ - uid: 6163
components:
- type: Transform
- pos: 39.5,-69.5
+ pos: -27.5,17.5
parent: 2
- - uid: 3952
+ - uid: 6164
components:
- type: Transform
- pos: -76.5,9.5
+ pos: -11.5,45.5
parent: 2
- - uid: 3953
+ - uid: 6165
components:
- type: Transform
- pos: -57.5,18.5
+ pos: -16.5,-69.5
parent: 2
- - uid: 3954
+ - uid: 6166
components:
- type: Transform
- pos: -51.5,10.5
+ pos: -22.5,-75.5
parent: 2
- - uid: 3955
+ - uid: 6167
components:
- type: Transform
- pos: -61.5,7.5
+ pos: -47.5,45.5
parent: 2
- - uid: 3956
+ - uid: 6168
components:
- type: Transform
- pos: -52.5,10.5
+ pos: 33.5,-68.5
parent: 2
- - uid: 3957
+ - uid: 6169
components:
- type: Transform
- pos: -71.5,6.5
+ pos: -32.5,-42.5
parent: 2
- - uid: 3958
+ - uid: 6170
components:
- type: Transform
- pos: -71.5,5.5
+ pos: 14.5,64.5
parent: 2
- - uid: 3959
+ - uid: 6171
components:
- type: Transform
- pos: -63.5,24.5
+ pos: -47.5,1.5
parent: 2
- - uid: 3960
+ - uid: 6172
components:
- type: Transform
- pos: -59.5,17.5
+ pos: 2.5,30.5
parent: 2
- - uid: 3961
+ - uid: 6173
components:
- type: Transform
- pos: -57.5,17.5
+ pos: -22.5,-77.5
parent: 2
- - uid: 3962
+ - uid: 6174
components:
- type: Transform
- pos: -49.5,37.5
+ pos: -19.5,41.5
parent: 2
- - uid: 3963
+ - uid: 6175
components:
- type: Transform
- pos: -35.5,13.5
+ pos: -16.5,-73.5
parent: 2
- - uid: 3964
+ - uid: 6176
components:
- type: Transform
- pos: -53.5,41.5
+ pos: -37.5,61.5
parent: 2
- - uid: 3965
+ - uid: 6177
components:
- type: Transform
- pos: -52.5,42.5
+ pos: -2.5,33.5
parent: 2
- - uid: 3966
+ - uid: 6178
components:
- type: Transform
- pos: -62.5,46.5
+ pos: 22.5,-55.5
parent: 2
- - uid: 3967
+ - uid: 6179
components:
- type: Transform
- pos: -65.5,47.5
+ pos: 23.5,-55.5
parent: 2
- - uid: 3968
+ - uid: 6180
components:
- type: Transform
- pos: -65.5,46.5
+ pos: -7.5,68.5
parent: 2
- - uid: 3969
+ - uid: 6181
components:
- type: Transform
- pos: -65.5,45.5
+ pos: -8.5,-72.5
parent: 2
- - uid: 3970
+ - uid: 6182
components:
- type: Transform
- pos: -63.5,31.5
+ pos: 26.5,18.5
parent: 2
- - uid: 3971
+ - uid: 6183
components:
- type: Transform
- pos: -61.5,31.5
+ pos: -29.5,-75.5
parent: 2
- - uid: 3972
+ - uid: 6184
components:
- type: Transform
- pos: -42.5,-30.5
+ pos: -18.5,12.5
parent: 2
- - uid: 3973
+ - uid: 6185
components:
- type: Transform
- pos: -4.5,-7.5
+ pos: -11.5,91.5
parent: 2
- - uid: 3974
+ - uid: 6186
components:
- type: Transform
- pos: -38.5,-24.5
+ pos: -59.5,36.5
parent: 2
- - uid: 3975
+ - uid: 6187
components:
- type: Transform
- pos: -50.5,-32.5
+ pos: -61.5,27.5
parent: 2
- - uid: 3976
+ - uid: 6188
components:
- type: Transform
- pos: -32.5,-1.5
+ pos: -69.5,9.5
parent: 2
- - uid: 3977
+ - uid: 6189
components:
- type: Transform
- pos: -10.5,27.5
+ pos: -61.5,34.5
parent: 2
- - uid: 3978
+ - uid: 6190
components:
- type: Transform
- pos: -37.5,-27.5
+ pos: -69.5,8.5
parent: 2
- - uid: 3979
+ - uid: 6191
components:
- type: Transform
- pos: -65.5,48.5
+ pos: -61.5,36.5
parent: 2
- - uid: 3980
+ - uid: 6192
components:
- type: Transform
- pos: -47.5,37.5
+ pos: -30.5,17.5
parent: 2
- - uid: 3981
+ - uid: 6193
components:
- type: Transform
- pos: -46.5,41.5
+ pos: -29.5,17.5
parent: 2
- - uid: 3982
+ - uid: 6194
components:
- type: Transform
- pos: -32.5,-10.5
+ pos: -3.5,57.5
parent: 2
- - uid: 3983
+ - uid: 6195
components:
- type: Transform
- pos: -32.5,-11.5
+ pos: -35.5,34.5
parent: 2
- - uid: 3984
+ - uid: 6196
components:
- type: Transform
- pos: -36.5,23.5
+ pos: -22.5,-76.5
parent: 2
- - uid: 3985
+ - uid: 6197
components:
- type: Transform
- pos: 6.5,80.5
+ pos: -16.5,-67.5
parent: 2
- - uid: 3986
+ - uid: 6198
components:
- type: Transform
- pos: -24.5,61.5
+ pos: -34.5,23.5
parent: 2
- - uid: 3987
+ - uid: 6199
components:
- type: Transform
- pos: -23.5,5.5
+ pos: -5.5,57.5
parent: 2
- - uid: 3988
+ - uid: 6200
components:
- type: Transform
- pos: 15.5,-43.5
+ pos: -18.5,-69.5
parent: 2
- - uid: 3989
+ - uid: 6201
components:
- type: Transform
- pos: -33.5,-11.5
+ pos: 0.5,-75.5
parent: 2
- - uid: 3990
+ - uid: 6202
components:
- type: Transform
- pos: -22.5,5.5
+ pos: -32.5,-26.5
parent: 2
- - uid: 3991
+ - uid: 6203
components:
- type: Transform
- pos: -25.5,64.5
+ pos: -40.5,0.5
parent: 2
- - uid: 3992
+ - uid: 6204
components:
- type: Transform
- pos: 6.5,81.5
+ pos: -36.5,39.5
parent: 2
- - uid: 3993
+ - uid: 6205
components:
- type: Transform
- pos: -35.5,23.5
+ pos: 11.5,49.5
parent: 2
- - uid: 3994
+ - uid: 6206
components:
- type: Transform
- pos: -5.5,68.5
+ pos: 12.5,38.5
parent: 2
- - uid: 3995
+ - uid: 6207
components:
- type: Transform
- pos: -65.5,-34.5
+ pos: -30.5,30.5
parent: 2
- - uid: 3996
+ - uid: 6208
components:
- type: Transform
- pos: -32.5,-8.5
+ pos: 18.5,26.5
parent: 2
- - uid: 3997
+ - uid: 6209
components:
- type: Transform
- pos: 7.5,-7.5
+ pos: 11.5,48.5
parent: 2
- - uid: 3998
+ - uid: 6210
components:
- type: Transform
- pos: -24.5,63.5
+ pos: 6.5,42.5
parent: 2
- - uid: 3999
+ - uid: 6211
components:
- type: Transform
- pos: -29.5,94.5
+ pos: -62.5,27.5
parent: 2
- - uid: 4000
+ - uid: 6212
components:
- type: Transform
- pos: 6.5,78.5
+ pos: -32.5,35.5
parent: 2
- - uid: 4001
+ - uid: 6213
components:
- type: Transform
- pos: -38.5,23.5
+ pos: 27.5,9.5
parent: 2
- - uid: 4002
+ - uid: 6214
components:
- type: Transform
- pos: -10.5,68.5
+ pos: 22.5,5.5
parent: 2
- - uid: 4003
+ - uid: 6215
components:
- type: Transform
- pos: -39.5,23.5
+ pos: 66.5,25.5
parent: 2
- - uid: 4004
+ - uid: 6216
components:
- type: Transform
- pos: 11.5,-19.5
+ pos: 64.5,-18.5
parent: 2
- - uid: 4005
+ - uid: 6217
components:
- type: Transform
- pos: -9.5,-76.5
+ pos: 23.5,50.5
parent: 2
- - uid: 4006
+ - uid: 6218
components:
- type: Transform
- pos: 29.5,-34.5
+ pos: -65.5,41.5
parent: 2
- - uid: 4007
+ - uid: 6219
components:
- type: Transform
- pos: 41.5,-61.5
+ pos: 37.5,-48.5
parent: 2
- - uid: 4008
+ - uid: 6220
components:
- type: Transform
- pos: 40.5,-61.5
+ pos: 5.5,30.5
parent: 2
- - uid: 4009
+ - uid: 6221
components:
- type: Transform
- pos: -64.5,-34.5
+ pos: 13.5,64.5
parent: 2
- - uid: 4010
+ - uid: 6222
components:
- type: Transform
- pos: 10.5,28.5
+ pos: 7.5,-43.5
parent: 2
- - uid: 4011
+ - uid: 6223
components:
- type: Transform
- pos: -18.5,-73.5
+ pos: -1.5,-10.5
parent: 2
- - uid: 4012
+ - uid: 6224
components:
- type: Transform
- pos: -2.5,23.5
+ pos: -47.5,28.5
parent: 2
- - uid: 4013
+ - uid: 6225
components:
- type: Transform
- pos: -3.5,23.5
+ pos: -41.5,16.5
parent: 2
- - uid: 4014
+ - uid: 6226
components:
- type: Transform
- pos: 38.5,-61.5
+ pos: -39.5,0.5
parent: 2
- - uid: 4015
+ - uid: 6227
components:
- type: Transform
- pos: 36.5,-32.5
+ pos: -40.5,42.5
parent: 2
- - uid: 4016
+ - uid: 6228
components:
- type: Transform
- pos: -62.5,-33.5
+ pos: -31.5,-26.5
parent: 2
- - uid: 4017
+ - uid: 6229
components:
- type: Transform
- pos: -25.5,59.5
+ pos: -4.5,58.5
parent: 2
- - uid: 4018
+ - uid: 6230
components:
- type: Transform
- pos: 6.5,82.5
+ pos: -35.5,33.5
parent: 2
- - uid: 4019
+ - uid: 6231
components:
- type: Transform
- pos: -33.5,-77.5
+ pos: -22.5,-78.5
parent: 2
- - uid: 4020
+ - uid: 6232
components:
- type: Transform
- pos: -40.5,39.5
+ pos: -25.5,53.5
parent: 2
- - uid: 4021
+ - uid: 6233
components:
- type: Transform
- pos: -17.5,-75.5
+ pos: -29.5,-11.5
parent: 2
- - uid: 4022
+ - uid: 6234
components:
- type: Transform
- pos: 0.5,38.5
+ pos: -33.5,-30.5
parent: 2
- - uid: 4023
+ - uid: 6235
components:
- type: Transform
- pos: -30.5,18.5
+ pos: -28.5,-27.5
parent: 2
- - uid: 4024
+ - uid: 6236
components:
- type: Transform
- pos: 0.5,36.5
+ pos: -33.5,61.5
parent: 2
- - uid: 4025
+ - uid: 6237
components:
- type: Transform
- pos: -67.5,57.5
+ pos: 3.5,84.5
parent: 2
- - uid: 4026
+ - uid: 6238
components:
- type: Transform
- pos: -23.5,14.5
+ pos: 34.5,-34.5
parent: 2
- - uid: 4027
+ - uid: 6239
components:
- type: Transform
- pos: -68.5,57.5
+ pos: -16.5,-72.5
parent: 2
- - uid: 4028
+ - uid: 6240
components:
- type: Transform
- pos: -57.5,24.5
+ pos: 40.5,-64.5
parent: 2
- - uid: 4029
+ - uid: 6241
components:
- type: Transform
- pos: -32.5,28.5
+ pos: 0.5,-74.5
parent: 2
- - uid: 4030
+ - uid: 6242
components:
- type: Transform
- pos: -47.5,-7.5
+ pos: -25.5,23.5
parent: 2
- - uid: 4031
+ - uid: 6243
components:
- type: Transform
- pos: -31.5,28.5
+ pos: 22.5,-14.5
parent: 2
- - uid: 4032
+ - uid: 6244
components:
- type: Transform
- pos: -61.5,33.5
+ pos: 63.5,-29.5
parent: 2
- - uid: 4033
+ - uid: 6245
components:
- type: Transform
- pos: -58.5,24.5
+ pos: 33.5,11.5
parent: 2
- - uid: 4034
+ - uid: 6246
components:
- type: Transform
- pos: -46.5,-7.5
+ pos: 42.5,13.5
parent: 2
- - uid: 4035
+ - uid: 6247
components:
- type: Transform
- pos: -63.5,-34.5
+ pos: -62.5,43.5
parent: 2
- - uid: 4036
+ - uid: 6248
components:
- type: Transform
- pos: 11.5,-7.5
+ pos: 27.5,1.5
parent: 2
- - uid: 4037
+ - uid: 6249
components:
- type: Transform
- pos: -52.5,29.5
+ pos: 62.5,-13.5
parent: 2
- - uid: 4038
+ - uid: 6250
components:
- type: Transform
- pos: -15.5,-37.5
+ pos: -47.5,43.5
parent: 2
- - uid: 4039
+ - uid: 6251
components:
- type: Transform
- pos: -37.5,-30.5
+ pos: -46.5,5.5
parent: 2
- - uid: 4040
+ - uid: 6252
components:
- type: Transform
- pos: -26.5,59.5
+ pos: 3.5,42.5
parent: 2
- - uid: 4041
+ - uid: 6253
components:
- type: Transform
- pos: -23.5,-1.5
+ pos: -16.5,-68.5
parent: 2
- - uid: 4042
+ - uid: 6254
components:
- type: Transform
- pos: -25.5,49.5
+ pos: -35.5,35.5
parent: 2
- - uid: 4043
+ - uid: 6255
components:
- type: Transform
- pos: -41.5,18.5
+ pos: -4.5,57.5
parent: 2
- - uid: 4044
+ - uid: 6256
components:
- type: Transform
- pos: 6.5,74.5
+ pos: 11.5,80.5
parent: 2
- - uid: 4045
+ - uid: 6257
components:
- type: Transform
- pos: -36.5,-30.5
+ pos: 29.5,-69.5
parent: 2
- - uid: 4046
+ - uid: 6258
components:
- type: Transform
- pos: -26.5,60.5
+ pos: 26.5,-69.5
parent: 2
- - uid: 4047
+ - uid: 6259
components:
- type: Transform
- pos: -41.5,19.5
+ pos: 41.5,-72.5
parent: 2
- - uid: 4048
+ - uid: 6260
components:
- type: Transform
- pos: 3.5,-11.5
+ pos: -17.5,-69.5
parent: 2
- - uid: 4049
+ - uid: 6261
components:
- type: Transform
- pos: -37.5,-7.5
+ pos: 2.5,-79.5
parent: 2
- - uid: 4050
+ - uid: 6262
components:
- type: Transform
- pos: -37.5,-6.5
+ pos: -53.5,-20.5
parent: 2
- - uid: 4051
+ - uid: 6263
components:
- type: Transform
- pos: -55.5,19.5
+ pos: -33.5,-48.5
parent: 2
- - uid: 4052
+ - uid: 6264
components:
- type: Transform
- pos: -53.5,21.5
+ pos: -18.5,52.5
parent: 2
- - uid: 4053
+ - uid: 6265
components:
- type: Transform
- pos: -37.5,-5.5
+ pos: 5.5,42.5
parent: 2
- - uid: 4054
+ - uid: 6266
components:
- type: Transform
- pos: -28.5,-31.5
+ pos: 41.5,-69.5
parent: 2
- - uid: 4055
+ - uid: 6267
components:
- type: Transform
- pos: -44.5,22.5
+ pos: -35.5,39.5
parent: 2
- - uid: 4056
+ - uid: 6268
components:
- type: Transform
- pos: -7.5,-19.5
+ pos: -22.5,32.5
parent: 2
- - uid: 4057
+ - uid: 6269
components:
- type: Transform
- pos: -6.5,-60.5
+ pos: 9.5,71.5
parent: 2
- - uid: 4058
+ - uid: 6270
components:
- type: Transform
- pos: -5.5,-59.5
+ pos: 68.5,-21.5
parent: 2
- - uid: 4059
+ - uid: 6271
components:
- type: Transform
- pos: -4.5,-59.5
+ pos: -38.5,35.5
parent: 2
- - uid: 4060
+ - uid: 6272
components:
- type: Transform
- pos: -41.5,48.5
+ pos: -37.5,10.5
parent: 2
- - uid: 4061
+ - uid: 6273
components:
- type: Transform
- pos: 28.5,-64.5
+ pos: -33.5,52.5
parent: 2
- - uid: 4062
+ - uid: 6274
components:
- type: Transform
- pos: -36.5,-24.5
+ pos: -23.5,-8.5
parent: 2
- - uid: 4063
+ - uid: 6275
components:
- type: Transform
- pos: -5.5,-19.5
+ pos: -50.5,55.5
parent: 2
- - uid: 4064
+ - uid: 6276
components:
- type: Transform
- pos: 9.5,-19.5
+ pos: 20.5,5.5
parent: 2
- - uid: 4065
+ - uid: 6277
components:
- type: Transform
- pos: 7.5,-19.5
+ pos: 19.5,5.5
parent: 2
- - uid: 4066
+ - uid: 6278
components:
- type: Transform
- pos: -10.5,28.5
+ pos: -68.5,5.5
parent: 2
- - uid: 4067
+ - uid: 6279
components:
- type: Transform
- pos: -33.5,-18.5
+ pos: 21.5,5.5
parent: 2
- - uid: 4068
+ - uid: 6280
components:
- type: Transform
- pos: -2.5,45.5
+ pos: -47.5,44.5
parent: 2
- - uid: 4069
+ - uid: 6281
components:
- type: Transform
- pos: -37.5,-8.5
+ pos: 44.5,-33.5
parent: 2
- - uid: 4070
+ - uid: 6282
components:
- type: Transform
- pos: 32.5,-38.5
+ pos: 49.5,-7.5
parent: 2
- - uid: 4071
+ - uid: 6283
components:
- type: Transform
- pos: -64.5,27.5
+ pos: -17.5,-67.5
parent: 2
- - uid: 4072
+ - uid: 6284
components:
- type: Transform
- pos: 1.5,-65.5
+ pos: -7.5,49.5
parent: 2
- - uid: 4073
+ - uid: 6285
components:
- type: Transform
- pos: 37.5,43.5
+ pos: -28.5,17.5
parent: 2
- - uid: 4074
+ - uid: 6286
components:
- type: Transform
- pos: 7.5,17.5
+ pos: 46.5,-10.5
parent: 2
- - uid: 4075
+ - uid: 6287
components:
- type: Transform
- pos: -76.5,-26.5
+ pos: 40.5,-24.5
parent: 2
- - uid: 4076
+ - uid: 6288
components:
- type: Transform
- pos: -65.5,14.5
+ pos: -46.5,55.5
parent: 2
- - uid: 4077
+ - uid: 6289
components:
- type: Transform
- pos: -60.5,-28.5
+ pos: 22.5,-43.5
parent: 2
- - uid: 4078
+ - uid: 6290
components:
- type: Transform
- pos: 23.5,-50.5
+ pos: -62.5,5.5
parent: 2
- - uid: 4079
+ - uid: 6291
components:
- type: Transform
- pos: -13.5,-39.5
+ pos: 37.5,-50.5
parent: 2
- - uid: 4080
+ - uid: 6292
components:
- type: Transform
- pos: -13.5,-38.5
+ pos: 9.5,69.5
parent: 2
- - uid: 4081
+ - uid: 6293
components:
- type: Transform
- pos: -17.5,-46.5
+ pos: -52.5,-12.5
parent: 2
- - uid: 4082
+ - uid: 6294
components:
- type: Transform
- pos: -11.5,97.5
+ pos: -71.5,7.5
parent: 2
- - uid: 4083
+ - uid: 6295
components:
- type: Transform
- pos: -26.5,63.5
+ pos: -64.5,51.5
parent: 2
- - uid: 4084
+ - uid: 6296
components:
- type: Transform
- pos: -29.5,-32.5
+ pos: -22.5,12.5
parent: 2
- - uid: 4085
+ - uid: 6297
components:
- type: Transform
- pos: -37.5,-2.5
+ pos: -47.5,50.5
parent: 2
- - uid: 4086
+ - uid: 6298
components:
- type: Transform
- pos: 6.5,75.5
+ pos: -6.5,-8.5
parent: 2
- - uid: 4087
+ - uid: 6299
components:
- type: Transform
- pos: -41.5,20.5
+ pos: -65.5,33.5
parent: 2
- - uid: 4088
+ - uid: 6300
components:
- type: Transform
- pos: -43.5,37.5
+ pos: 4.5,-12.5
parent: 2
- - uid: 4089
+ - uid: 6301
components:
- type: Transform
- pos: -26.5,-2.5
+ pos: -63.5,5.5
parent: 2
- - uid: 4090
+ - uid: 6302
components:
- type: Transform
- pos: -41.5,-1.5
+ pos: -35.5,10.5
parent: 2
- - uid: 4091
+ - uid: 6303
components:
- type: Transform
- pos: -36.5,42.5
+ pos: 31.5,-34.5
parent: 2
- - uid: 4092
+ - uid: 6304
components:
- type: Transform
- pos: -15.5,68.5
+ pos: -4.5,-58.5
parent: 2
- - uid: 4093
+ - uid: 6305
components:
- type: Transform
- pos: 35.5,-58.5
+ pos: -5.5,-68.5
parent: 2
- - uid: 4094
+ - uid: 6306
components:
- type: Transform
- pos: 29.5,-67.5
+ pos: -26.5,57.5
parent: 2
- - uid: 4095
+ - uid: 6307
components:
- type: Transform
- pos: -14.5,68.5
+ pos: 24.5,18.5
parent: 2
- - uid: 4096
+ - uid: 6308
components:
- type: Transform
- pos: -18.5,-75.5
+ pos: -22.5,55.5
parent: 2
- - uid: 4097
+ - uid: 6309
components:
- type: Transform
- pos: -37.5,42.5
+ pos: 0.5,-73.5
parent: 2
- - uid: 4098
+ - uid: 6310
components:
- type: Transform
- pos: -3.5,-19.5
+ pos: 2.5,-80.5
parent: 2
- - uid: 4099
+ - uid: 6311
components:
- type: Transform
- pos: -30.5,-12.5
+ pos: 56.5,-27.5
parent: 2
- - uid: 4100
+ - uid: 6312
components:
- type: Transform
- pos: -31.5,-18.5
+ pos: 37.5,-61.5
parent: 2
- - uid: 4101
+ - uid: 6313
components:
- type: Transform
- pos: -30.5,11.5
+ pos: 32.5,-42.5
parent: 2
- - uid: 4102
+ - uid: 6314
components:
- type: Transform
- pos: -22.5,14.5
+ pos: -40.5,-11.5
parent: 2
- - uid: 4103
+ - uid: 6315
components:
- type: Transform
- pos: -1.5,-17.5
+ pos: 59.5,-30.5
parent: 2
- - uid: 4104
+ - uid: 6316
components:
- type: Transform
- pos: -55.5,41.5
+ pos: 26.5,-10.5
parent: 2
- - uid: 4105
+ - uid: 6317
components:
- type: Transform
- pos: -57.5,4.5
+ pos: -4.5,23.5
parent: 2
- - uid: 4106
+ - uid: 6318
components:
- type: Transform
- pos: 31.5,30.5
+ pos: -26.5,17.5
parent: 2
- - uid: 4107
+ - uid: 6319
components:
- type: Transform
- pos: 30.5,-29.5
+ pos: -31.5,37.5
parent: 2
- - uid: 4108
+ - uid: 6320
components:
- type: Transform
- pos: -0.5,-31.5
+ pos: 53.5,-46.5
parent: 2
- - uid: 4109
+ - uid: 6321
components:
- type: Transform
- pos: -13.5,15.5
+ pos: 52.5,-46.5
parent: 2
- - uid: 4110
+ - uid: 6322
components:
- type: Transform
- pos: 22.5,-39.5
+ pos: 58.5,-46.5
parent: 2
- - uid: 4111
+ - uid: 6323
components:
- type: Transform
- pos: 37.5,50.5
+ pos: 23.5,-18.5
parent: 2
- - uid: 4112
+ - uid: 6324
components:
- type: Transform
- pos: -64.5,59.5
+ pos: 10.5,47.5
parent: 2
- - uid: 4113
+ - uid: 6325
components:
- type: Transform
- pos: -37.5,-1.5
+ pos: 30.5,8.5
parent: 2
- - uid: 4114
+ - uid: 6326
components:
- type: Transform
- pos: -29.5,-28.5
+ pos: 36.5,-64.5
parent: 2
- - uid: 4115
+ - uid: 6327
components:
- type: Transform
- pos: -26.5,64.5
+ pos: 37.5,-64.5
parent: 2
- - uid: 4116
+ - uid: 6328
components:
- type: Transform
- pos: -25.5,63.5
+ pos: 22.5,12.5
parent: 2
- - uid: 4117
+ - uid: 6329
components:
- type: Transform
- pos: 6.5,76.5
+ pos: -54.5,-24.5
parent: 2
- - uid: 4118
+ - uid: 6330
components:
- type: Transform
- pos: 6.5,73.5
+ pos: -32.5,-14.5
parent: 2
- - uid: 4119
+ - uid: 6331
components:
- type: Transform
- pos: 12.5,-7.5
+ pos: -5.5,-11.5
parent: 2
- - uid: 4120
+ - uid: 6332
components:
- type: Transform
- pos: -41.5,-2.5
+ pos: 10.5,-39.5
parent: 2
- - uid: 4121
+ - uid: 6333
components:
- type: Transform
- pos: -66.5,57.5
+ pos: -76.5,7.5
parent: 2
- - uid: 4122
+ - uid: 6334
components:
- type: Transform
- pos: -53.5,5.5
+ pos: -53.5,15.5
parent: 2
- - uid: 4123
+ - uid: 6335
components:
- type: Transform
- pos: 6.5,-19.5
+ pos: -32.5,-52.5
parent: 2
- - uid: 4124
+ - uid: 6336
components:
- type: Transform
- pos: -15.5,-79.5
+ pos: -7.5,-23.5
parent: 2
- - uid: 4125
+ - uid: 6337
components:
- type: Transform
- pos: -1.5,23.5
+ pos: -11.5,14.5
parent: 2
- - uid: 4126
+ - uid: 6338
components:
- type: Transform
- pos: 4.5,-19.5
+ pos: -0.5,18.5
parent: 2
- - uid: 4127
+ - uid: 6339
components:
- type: Transform
- pos: -52.5,-32.5
+ pos: -37.5,-52.5
parent: 2
- - uid: 4128
+ - uid: 6340
components:
- type: Transform
- pos: -28.5,-2.5
+ pos: 5.5,-50.5
parent: 2
- - uid: 4129
+ - uid: 6341
components:
- type: Transform
- pos: -62.5,45.5
+ pos: -54.5,-26.5
parent: 2
- - uid: 4130
+ - uid: 6342
components:
- type: Transform
- pos: -61.5,29.5
+ pos: 13.5,-4.5
parent: 2
- - uid: 4131
+ - uid: 6343
components:
- type: Transform
- pos: -54.5,-22.5
+ pos: -54.5,-25.5
parent: 2
- - uid: 4132
+ - uid: 6344
components:
- type: Transform
- pos: -60.5,29.5
+ pos: 11.5,-26.5
parent: 2
- - uid: 4133
+ - uid: 6345
components:
- type: Transform
- pos: -3.5,-74.5
+ pos: -60.5,-7.5
parent: 2
- - uid: 4134
+ - uid: 6346
components:
- type: Transform
- pos: 0.5,-70.5
+ pos: -23.5,12.5
parent: 2
- - uid: 4135
+ - uid: 6347
components:
- type: Transform
- pos: -15.5,-69.5
+ pos: -65.5,-30.5
parent: 2
- - uid: 4136
+ - uid: 6348
components:
- type: Transform
- pos: -40.5,37.5
+ pos: -40.5,-30.5
parent: 2
- - uid: 4137
+ - uid: 6349
components:
- type: Transform
- pos: 33.5,-60.5
+ pos: 1.5,-8.5
parent: 2
- - uid: 4138
+ - uid: 6350
components:
- type: Transform
- pos: 11.5,78.5
+ pos: 1.5,-10.5
parent: 2
- - uid: 4139
+ - uid: 6351
components:
- type: Transform
- pos: 17.5,20.5
+ pos: -49.5,-27.5
parent: 2
- - uid: 4140
+ - uid: 6352
components:
- type: Transform
- pos: 26.5,31.5
+ pos: -51.5,51.5
parent: 2
- - uid: 4141
+ - uid: 6353
components:
- type: Transform
- pos: -5.5,-80.5
+ pos: 17.5,18.5
parent: 2
- - uid: 4142
+ - uid: 6354
components:
- type: Transform
- pos: -14.5,-78.5
+ pos: 8.5,35.5
parent: 2
- - uid: 4143
+ - uid: 6355
components:
- type: Transform
- pos: -9.5,-70.5
+ pos: 9.5,39.5
parent: 2
- - uid: 4144
+ - uid: 6356
components:
- type: Transform
- pos: -23.5,-6.5
+ pos: 1.5,-9.5
parent: 2
- - uid: 4145
+ - uid: 6357
components:
- type: Transform
- pos: -57.5,-30.5
+ pos: -8.5,-70.5
parent: 2
- - uid: 4146
+ - uid: 6358
components:
- type: Transform
- pos: -41.5,-28.5
+ pos: -62.5,48.5
parent: 2
- - uid: 4147
+ - uid: 6359
components:
- type: Transform
- pos: -4.5,-8.5
+ pos: -33.5,13.5
parent: 2
- - uid: 4148
+ - uid: 6360
components:
- type: Transform
- pos: 11.5,-11.5
+ pos: -50.5,-27.5
parent: 2
- - uid: 4149
+ - uid: 6361
components:
- type: Transform
- pos: -77.5,14.5
+ pos: 69.5,-21.5
parent: 2
- - uid: 4150
+ - uid: 6362
components:
- type: Transform
- pos: -75.5,15.5
+ pos: -54.5,39.5
parent: 2
- - uid: 4151
+ - uid: 6363
components:
- type: Transform
- pos: -56.5,14.5
+ pos: 25.5,36.5
parent: 2
- - uid: 4152
+ - uid: 6364
components:
- type: Transform
- pos: -76.5,15.5
+ pos: 6.5,34.5
parent: 2
- - uid: 4153
+ - uid: 6365
components:
- type: Transform
- pos: -57.5,10.5
+ pos: 13.5,30.5
parent: 2
- - uid: 4154
+ - uid: 6366
components:
- type: Transform
- pos: -72.5,15.5
+ pos: 28.5,-65.5
parent: 2
- - uid: 4155
+ - uid: 6367
components:
- type: Transform
- pos: -73.5,5.5
+ pos: 40.5,-9.5
parent: 2
- - uid: 4156
+ - uid: 6368
components:
- type: Transform
- pos: -55.5,33.5
+ pos: 75.5,-16.5
parent: 2
- - uid: 4157
+ - uid: 6369
components:
- type: Transform
- pos: -55.5,-11.5
+ pos: 49.5,-51.5
parent: 2
- - uid: 4158
+ - uid: 6370
components:
- type: Transform
- pos: -74.5,5.5
+ pos: 35.5,11.5
parent: 2
- - uid: 4159
+ - uid: 6371
components:
- type: Transform
- pos: -70.5,15.5
+ pos: 61.5,-9.5
parent: 2
- - uid: 4160
+ - uid: 6372
components:
- type: Transform
- pos: -71.5,15.5
+ pos: -39.5,-8.5
parent: 2
- - uid: 4161
+ - uid: 6373
components:
- type: Transform
- pos: -0.5,-46.5
+ pos: 34.5,-3.5
parent: 2
- - uid: 4162
+ - uid: 6374
components:
- type: Transform
- pos: -71.5,-34.5
+ pos: -52.5,-47.5
parent: 2
- - uid: 4163
+ - uid: 6375
components:
- type: Transform
- pos: -14.5,-32.5
+ pos: -55.5,-10.5
parent: 2
- - uid: 4164
+ - uid: 6376
components:
- type: Transform
- pos: -9.5,-11.5
+ pos: -55.5,-43.5
parent: 2
- - uid: 4165
+ - uid: 6377
components:
- type: Transform
- pos: -0.5,-45.5
+ pos: -69.5,-24.5
parent: 2
- - uid: 4166
+ - uid: 6378
components:
- type: Transform
- pos: -14.5,-31.5
+ pos: -71.5,-25.5
parent: 2
- - uid: 4167
+ - uid: 6379
components:
- type: Transform
- pos: -13.5,-46.5
+ pos: -47.5,-13.5
parent: 2
- - uid: 4168
+ - uid: 6380
components:
- type: Transform
- pos: -4.5,16.5
+ pos: -59.5,9.5
parent: 2
- - uid: 4169
+ - uid: 6381
components:
- type: Transform
- pos: -19.5,-39.5
+ pos: -60.5,14.5
parent: 2
- - uid: 4170
+ - uid: 6382
components:
- type: Transform
- pos: -13.5,-45.5
+ pos: -48.5,22.5
parent: 2
- - uid: 4171
+ - uid: 6383
components:
- type: Transform
- pos: 2.5,-14.5
+ pos: -58.5,57.5
parent: 2
- - uid: 4172
+ - uid: 6384
components:
- type: Transform
- pos: -29.5,76.5
+ pos: -59.5,-8.5
parent: 2
- - uid: 4173
+ - uid: 6385
components:
- type: Transform
- pos: -60.5,-22.5
+ pos: -54.5,50.5
parent: 2
- - uid: 4174
+ - uid: 6386
components:
- type: Transform
- pos: -0.5,17.5
+ pos: 31.5,-40.5
parent: 2
- - uid: 4175
+ - uid: 6387
components:
- type: Transform
- pos: -59.5,-22.5
+ pos: 17.5,-30.5
parent: 2
- - uid: 4176
+ - uid: 6388
components:
- type: Transform
- pos: -17.5,-37.5
+ pos: 36.5,-42.5
parent: 2
- - uid: 4177
+ - uid: 6389
components:
- type: Transform
- pos: -7.5,-34.5
+ pos: 25.5,-28.5
parent: 2
- - uid: 4178
+ - uid: 6390
components:
- type: Transform
- pos: -13.5,-35.5
+ pos: 25.5,-26.5
parent: 2
- - uid: 4179
+ - uid: 6391
components:
- type: Transform
- pos: -4.5,-25.5
+ pos: 30.5,-23.5
parent: 2
- - uid: 4180
+ - uid: 6392
components:
- type: Transform
- pos: -28.5,-38.5
+ pos: 16.5,-41.5
parent: 2
- - uid: 4181
+ - uid: 6393
components:
- type: Transform
- pos: -13.5,-33.5
+ pos: -28.5,-50.5
parent: 2
- - uid: 4182
+ - uid: 6394
components:
- type: Transform
- pos: -4.5,-23.5
+ pos: 13.5,-7.5
parent: 2
- - uid: 4183
+ - uid: 6395
components:
- type: Transform
- pos: -4.5,-24.5
+ pos: 5.5,-39.5
parent: 2
- - uid: 4184
+ - uid: 6396
components:
- type: Transform
- pos: -27.5,-52.5
+ pos: 10.5,-7.5
parent: 2
- - uid: 4185
+ - uid: 6397
components:
- type: Transform
- pos: 13.5,-12.5
+ pos: -32.5,-5.5
parent: 2
- - uid: 4186
+ - uid: 6398
components:
- type: Transform
- pos: -10.5,-15.5
+ pos: -70.5,-30.5
parent: 2
- - uid: 4187
+ - uid: 6399
components:
- type: Transform
- pos: -17.5,-36.5
+ pos: -26.5,61.5
parent: 2
- - uid: 4188
+ - uid: 6400
components:
- type: Transform
- pos: -16.5,13.5
+ pos: -26.5,62.5
parent: 2
- - uid: 4189
+ - uid: 6401
components:
- type: Transform
- pos: -8.5,-31.5
+ pos: -14.5,-27.5
parent: 2
- - uid: 4190
+ - uid: 6402
components:
- type: Transform
- pos: -12.5,-25.5
+ pos: 68.5,25.5
parent: 2
- - uid: 4191
+ - uid: 6403
components:
- type: Transform
- pos: -0.5,-35.5
+ pos: -65.5,42.5
parent: 2
- - uid: 4192
+ - uid: 6404
components:
- type: Transform
- pos: -30.5,31.5
+ pos: 75.5,-21.5
parent: 2
- - uid: 4193
+ - uid: 6405
components:
- type: Transform
- pos: -7.5,16.5
+ pos: 28.5,1.5
parent: 2
- - uid: 4194
+ - uid: 6406
components:
- type: Transform
- pos: -8.5,-34.5
+ pos: 35.5,5.5
parent: 2
- - uid: 4195
+ - uid: 6407
components:
- type: Transform
- pos: 5.5,-34.5
+ pos: 24.5,13.5
parent: 2
- - uid: 4196
+ - uid: 6408
components:
- type: Transform
- pos: 14.5,-24.5
+ pos: 32.5,8.5
parent: 2
- - uid: 4197
+ - uid: 6409
components:
- type: Transform
- pos: -13.5,-34.5
+ pos: 27.5,-7.5
parent: 2
- - uid: 4198
+ - uid: 6410
components:
- type: Transform
- pos: 63.5,4.5
+ pos: -12.5,77.5
parent: 2
- - uid: 4199
+ - uid: 6411
components:
- type: Transform
- pos: -29.5,-52.5
+ pos: 37.5,-47.5
parent: 2
- - uid: 4200
+ - uid: 6412
components:
- type: Transform
- pos: -13.5,-43.5
+ pos: 21.5,52.5
parent: 2
- - uid: 4201
+ - uid: 6413
components:
- type: Transform
- pos: 7.5,-12.5
+ pos: 62.5,-9.5
parent: 2
- - uid: 4202
+ - uid: 6414
components:
- type: Transform
- pos: 5.5,-31.5
+ pos: -44.5,-33.5
parent: 2
- - uid: 4203
+ - uid: 6415
components:
- type: Transform
- pos: 3.5,-30.5
+ pos: 24.5,12.5
parent: 2
- - uid: 4204
+ - uid: 6416
components:
- type: Transform
- pos: 3.5,-31.5
+ pos: 32.5,7.5
parent: 2
- - uid: 4205
+ - uid: 6417
components:
- type: Transform
- pos: 62.5,4.5
+ pos: 34.5,5.5
parent: 2
- - uid: 4206
+ - uid: 6418
components:
- type: Transform
- pos: -64.5,-28.5
+ pos: 75.5,26.5
parent: 2
- - uid: 4207
+ - uid: 6419
components:
- type: Transform
- pos: 3.5,-32.5
+ pos: 37.5,-46.5
parent: 2
- - uid: 4208
+ - uid: 6420
components:
- type: Transform
- pos: -0.5,-38.5
+ pos: -63.5,40.5
parent: 2
- - uid: 4209
+ - uid: 6421
components:
- type: Transform
- pos: -57.5,19.5
+ pos: 60.5,-9.5
parent: 2
- - uid: 4210
+ - uid: 6422
components:
- type: Transform
- pos: -56.5,32.5
+ pos: -48.5,50.5
parent: 2
- - uid: 4211
+ - uid: 6423
components:
- type: Transform
- pos: -9.5,-13.5
+ pos: 23.5,12.5
parent: 2
- - uid: 4212
+ - uid: 6424
components:
- type: Transform
- pos: 8.5,-11.5
+ pos: 33.5,5.5
parent: 2
- - uid: 4213
+ - uid: 6425
components:
- type: Transform
- pos: -16.5,-25.5
+ pos: 33.5,7.5
parent: 2
- - uid: 4214
+ - uid: 6426
components:
- type: Transform
- pos: 1.5,-47.5
+ pos: -56.5,-11.5
parent: 2
- - uid: 4215
+ - uid: 6427
components:
- type: Transform
- pos: 17.5,-33.5
+ pos: 35.5,-68.5
parent: 2
- - uid: 4216
+ - uid: 6428
components:
- type: Transform
- pos: 31.5,-23.5
+ pos: 35.5,-67.5
parent: 2
- - uid: 4217
+ - uid: 6429
components:
- type: Transform
- pos: 84.5,10.5
+ pos: 35.5,-65.5
parent: 2
- - uid: 4218
+ - uid: 6430
components:
- type: Transform
- pos: 61.5,-6.5
+ pos: 40.5,-62.5
parent: 2
- - uid: 4219
+ - uid: 6431
components:
- type: Transform
- pos: 17.5,-35.5
+ pos: 40.5,-60.5
parent: 2
- - uid: 4220
+ - uid: 6432
components:
- type: Transform
- pos: 33.5,-48.5
+ pos: 44.5,-61.5
parent: 2
- - uid: 4221
+ - uid: 6433
components:
- type: Transform
- pos: 22.5,-28.5
+ pos: -55.5,-42.5
parent: 2
- - uid: 4222
+ - uid: 6434
components:
- type: Transform
- pos: -12.5,-30.5
+ pos: -39.5,-11.5
parent: 2
- - uid: 4223
+ - uid: 6435
components:
- type: Transform
- pos: -22.5,-34.5
+ pos: -24.5,5.5
parent: 2
- - uid: 4224
+ - uid: 6436
components:
- type: Transform
- pos: 45.5,-13.5
+ pos: 28.5,-60.5
parent: 2
- - uid: 4225
+ - uid: 6437
components:
- type: Transform
- pos: -57.5,14.5
+ pos: 19.5,38.5
parent: 2
- - uid: 4226
+ - uid: 6438
components:
- type: Transform
- pos: -3.5,17.5
+ pos: -35.5,30.5
parent: 2
- - uid: 4227
+ - uid: 6439
components:
- type: Transform
- pos: -3.5,14.5
+ pos: 62.5,-24.5
parent: 2
- - uid: 4228
+ - uid: 6440
components:
- type: Transform
- pos: 5.5,16.5
+ pos: 42.5,-69.5
parent: 2
- - uid: 4229
+ - uid: 6441
components:
- type: Transform
- pos: 11.5,-12.5
+ pos: 35.5,-59.5
parent: 2
- - uid: 4230
+ - uid: 6442
components:
- type: Transform
- pos: -2.5,14.5
+ pos: 46.5,-19.5
parent: 2
- - uid: 4231
+ - uid: 6443
components:
- type: Transform
- pos: 10.5,-14.5
+ pos: 16.5,44.5
parent: 2
- - uid: 4232
+ - uid: 6444
components:
- type: Transform
- pos: -4.5,15.5
+ pos: -24.5,57.5
parent: 2
- - uid: 4233
+ - uid: 6445
components:
- type: Transform
- pos: 4.5,16.5
+ pos: 23.5,48.5
parent: 2
- - uid: 4234
+ - uid: 6446
components:
- type: Transform
- pos: 7.5,-15.5
+ pos: -23.5,57.5
parent: 2
- - uid: 4235
+ - uid: 6447
components:
- type: Transform
- pos: -18.5,-25.5
+ pos: -49.5,-2.5
parent: 2
- - uid: 4236
+ - uid: 6448
components:
- type: Transform
- pos: 7.5,-10.5
+ pos: -18.5,23.5
parent: 2
- - uid: 4237
+ - uid: 6449
components:
- type: Transform
- pos: -8.5,17.5
+ pos: -12.5,-67.5
parent: 2
- - uid: 4238
+ - uid: 6450
components:
- type: Transform
- pos: 13.5,1.5
+ pos: -18.5,21.5
parent: 2
- - uid: 4239
+ - uid: 6451
components:
- type: Transform
- pos: -19.5,-42.5
+ pos: 21.5,44.5
parent: 2
- - uid: 4240
+ - uid: 6452
components:
- type: Transform
- pos: -9.5,-15.5
+ pos: 17.5,-55.5
parent: 2
- - uid: 4241
+ - uid: 6453
components:
- type: Transform
- pos: -4.5,17.5
+ pos: 6.5,51.5
parent: 2
- - uid: 4242
+ - uid: 6454
components:
- type: Transform
- pos: -66.5,-30.5
+ pos: 3.5,23.5
parent: 2
- - uid: 4243
+ - uid: 6455
components:
- type: Transform
- pos: 60.5,4.5
+ pos: 25.5,-70.5
parent: 2
- - uid: 4244
+ - uid: 6456
components:
- type: Transform
- pos: -17.5,-25.5
+ pos: 67.5,25.5
parent: 2
- - uid: 4245
+ - uid: 6457
components:
- type: Transform
- pos: -19.5,-43.5
+ pos: -29.5,14.5
parent: 2
- - uid: 4246
+ - uid: 6458
components:
- type: Transform
- pos: -32.5,-28.5
+ pos: -43.5,-16.5
parent: 2
- - uid: 4247
+ - uid: 6459
components:
- type: Transform
- pos: -37.5,0.5
+ pos: 65.5,25.5
parent: 2
- - uid: 4248
+ - uid: 6460
components:
- type: Transform
- pos: -32.5,33.5
+ pos: -24.5,38.5
parent: 2
- - uid: 4249
+ - uid: 6461
components:
- type: Transform
- pos: 92.5,9.5
+ pos: -65.5,31.5
parent: 2
- - uid: 4250
+ - uid: 6462
components:
- type: Transform
- pos: -30.5,33.5
+ pos: -18.5,-12.5
parent: 2
- - uid: 4251
+ - uid: 6463
components:
- type: Transform
- pos: -59.5,32.5
+ pos: -32.5,46.5
parent: 2
- - uid: 4252
+ - uid: 6464
components:
- type: Transform
- pos: -53.5,25.5
+ pos: -30.5,46.5
parent: 2
- - uid: 4253
+ - uid: 6465
components:
- type: Transform
- pos: -41.5,12.5
+ pos: 17.5,-11.5
parent: 2
- - uid: 4254
+ - uid: 6466
components:
- type: Transform
- pos: -31.5,33.5
+ pos: -59.5,61.5
parent: 2
- - uid: 4255
+ - uid: 6467
components:
- type: Transform
- pos: 4.5,-31.5
+ pos: -48.5,52.5
parent: 2
- - uid: 4256
+ - uid: 6468
components:
- type: Transform
- pos: -29.5,89.5
+ pos: -75.5,-26.5
parent: 2
- - uid: 4257
+ - uid: 6469
components:
- type: Transform
- pos: -29.5,72.5
+ pos: -59.5,33.5
parent: 2
- - uid: 4258
+ - uid: 6470
components:
- type: Transform
- pos: -29.5,79.5
+ pos: 26.5,-70.5
parent: 2
- - uid: 4259
+ - uid: 6471
components:
- type: Transform
- pos: -29.5,74.5
+ pos: -64.5,29.5
parent: 2
- - uid: 4260
+ - uid: 6472
components:
- type: Transform
- pos: -29.5,78.5
+ pos: 4.5,-52.5
parent: 2
- - uid: 4261
+ - uid: 6473
components:
- type: Transform
- pos: 0.5,-59.5
+ pos: 7.5,-31.5
parent: 2
- - uid: 4262
+ - uid: 6474
components:
- type: Transform
- pos: 19.5,45.5
+ pos: -18.5,-4.5
parent: 2
- - uid: 4263
+ - uid: 6475
components:
- type: Transform
- pos: 25.5,-17.5
+ pos: 6.5,43.5
parent: 2
- - uid: 4264
+ - uid: 6476
components:
- type: Transform
- pos: 56.5,-10.5
+ pos: 56.5,-13.5
parent: 2
- - uid: 4265
+ - uid: 6477
components:
- type: Transform
- pos: 22.5,9.5
+ pos: 11.5,35.5
parent: 2
- - uid: 4266
+ - uid: 6478
components:
- type: Transform
- pos: 39.5,2.5
+ pos: 28.5,37.5
parent: 2
- - uid: 4267
+ - uid: 6479
components:
- type: Transform
- pos: -65.5,40.5
+ pos: 52.5,-18.5
parent: 2
- - uid: 4268
+ - uid: 6480
components:
- type: Transform
- pos: -51.5,-11.5
+ pos: 26.5,58.5
parent: 2
- - uid: 4269
+ - uid: 6481
components:
- type: Transform
- pos: 31.5,57.5
+ pos: 6.5,40.5
parent: 2
- - uid: 4270
+ - uid: 6482
components:
- type: Transform
- pos: 52.5,-22.5
+ pos: -54.5,-1.5
parent: 2
- - uid: 4271
+ - uid: 6483
components:
- type: Transform
- pos: -13.5,-75.5
+ pos: 22.5,24.5
parent: 2
- - uid: 4272
+ - uid: 6484
components:
- type: Transform
- pos: 31.5,31.5
+ pos: 24.5,24.5
parent: 2
- - uid: 4273
+ - uid: 6485
components:
- type: Transform
- pos: 37.5,-62.5
+ pos: 23.5,24.5
parent: 2
- - uid: 4274
+ - uid: 6486
components:
- type: Transform
- pos: -35.5,41.5
+ pos: 23.5,25.5
parent: 2
- - uid: 4275
+ - uid: 6487
components:
- type: Transform
- pos: 25.5,51.5
+ pos: -50.5,-13.5
parent: 2
- - uid: 4276
+ - uid: 6488
components:
- type: Transform
- pos: -46.5,6.5
+ pos: -22.5,-24.5
parent: 2
- - uid: 4277
+ - uid: 6489
components:
- type: Transform
- pos: -22.5,42.5
+ pos: -22.5,-29.5
parent: 2
- - uid: 4278
+ - uid: 6490
components:
- type: Transform
- pos: -18.5,-17.5
+ pos: -54.5,-9.5
parent: 2
- - uid: 4279
+ - uid: 6491
components:
- type: Transform
- pos: 2.5,51.5
+ pos: 19.5,40.5
parent: 2
- - uid: 4280
+ - uid: 6492
components:
- type: Transform
- pos: -51.5,52.5
+ pos: 9.5,35.5
parent: 2
- - uid: 4281
+ - uid: 6493
components:
- type: Transform
- pos: 2.5,53.5
+ pos: 50.5,-18.5
parent: 2
- - uid: 4282
+ - uid: 6494
components:
- type: Transform
- pos: 27.5,-10.5
+ pos: 6.5,53.5
parent: 2
- - uid: 4283
+ - uid: 6495
components:
- type: Transform
- pos: -44.5,51.5
+ pos: 16.5,87.5
parent: 2
- - uid: 4284
+ - uid: 6496
components:
- type: Transform
- pos: 1.5,51.5
+ pos: 15.5,87.5
parent: 2
- - uid: 4285
+ - uid: 6497
components:
- type: Transform
- pos: -54.5,45.5
+ pos: 14.5,87.5
parent: 2
- - uid: 4286
+ - uid: 6498
components:
- type: Transform
- pos: -45.5,50.5
+ pos: 13.5,87.5
parent: 2
- - uid: 4287
+ - uid: 6499
components:
- type: Transform
- pos: -43.5,51.5
+ pos: 13.5,86.5
parent: 2
- - uid: 4288
+ - uid: 6500
components:
- type: Transform
- pos: 41.5,-3.5
+ pos: 13.5,85.5
parent: 2
- - uid: 4289
+ - uid: 6501
components:
- type: Transform
- pos: 33.5,-4.5
+ pos: 10.5,87.5
parent: 2
- - uid: 4290
+ - uid: 6502
components:
- type: Transform
- pos: 39.5,-3.5
+ pos: -23.5,-68.5
parent: 2
- - uid: 4291
+ - uid: 6503
components:
- type: Transform
- pos: 21.5,-7.5
+ pos: -48.5,-42.5
parent: 2
- - uid: 4292
+ - uid: 6504
components:
- type: Transform
- pos: 28.5,-10.5
+ pos: -22.5,-69.5
parent: 2
- - uid: 4293
+ - uid: 6505
components:
- type: Transform
- pos: 26.5,-19.5
+ pos: 29.5,33.5
parent: 2
- - uid: 4294
+ - uid: 6506
components:
- type: Transform
- pos: 15.5,32.5
+ pos: -33.5,5.5
parent: 2
- - uid: 4295
+ - uid: 6507
components:
- type: Transform
- pos: 23.5,5.5
+ pos: -27.5,25.5
parent: 2
- - uid: 4296
+ - uid: 6508
components:
- type: Transform
- pos: 24.5,9.5
+ pos: 35.5,-30.5
parent: 2
- - uid: 4297
+ - uid: 6509
components:
- type: Transform
- pos: 21.5,8.5
+ pos: -37.5,14.5
parent: 2
- - uid: 4298
+ - uid: 6510
components:
- type: Transform
- pos: 42.5,7.5
+ pos: -71.5,-20.5
parent: 2
- - uid: 4299
+ - uid: 6511
components:
- type: Transform
- pos: 42.5,9.5
+ pos: -41.5,-74.5
parent: 2
- - uid: 4300
+ - uid: 6512
components:
- type: Transform
- pos: -57.5,53.5
+ pos: -36.5,-28.5
parent: 2
- - uid: 4301
+ - uid: 6513
components:
- type: Transform
- pos: 24.5,-10.5
+ pos: -35.5,-28.5
parent: 2
- - uid: 4302
+ - uid: 6514
components:
- type: Transform
- pos: -57.5,45.5
+ pos: -34.5,-28.5
parent: 2
- - uid: 4303
+ - uid: 6515
components:
- type: Transform
- pos: -57.5,48.5
+ pos: -8.5,-74.5
parent: 2
- - uid: 4304
+ - uid: 6516
components:
- type: Transform
- pos: 21.5,-10.5
+ pos: -63.5,-20.5
parent: 2
- - uid: 4305
+ - uid: 6517
components:
- type: Transform
- pos: -58.5,48.5
+ pos: 0.5,-72.5
parent: 2
- - uid: 4306
+ - uid: 6518
components:
- type: Transform
- pos: 84.5,9.5
+ pos: -6.5,-76.5
parent: 2
- - uid: 4307
+ - uid: 6519
components:
- type: Transform
- pos: 36.5,-22.5
+ pos: -7.5,-76.5
parent: 2
- - uid: 4308
+ - uid: 6520
components:
- type: Transform
- pos: 38.5,5.5
+ pos: 0.5,-71.5
parent: 2
- - uid: 4309
+ - uid: 6521
components:
- type: Transform
- pos: 60.5,-11.5
+ pos: -5.5,-76.5
parent: 2
- - uid: 4310
+ - uid: 6522
components:
- type: Transform
- pos: 40.5,11.5
+ pos: -3.5,-76.5
parent: 2
- - uid: 4311
+ - uid: 6523
components:
- type: Transform
- pos: 54.5,-7.5
+ pos: -4.5,-76.5
parent: 2
- - uid: 4312
+ - uid: 6524
components:
- type: Transform
- pos: 39.5,5.5
+ pos: -1.5,-76.5
parent: 2
- - uid: 4313
+ - uid: 6525
components:
- type: Transform
- pos: 36.5,-3.5
+ pos: -36.5,45.5
parent: 2
- - uid: 4314
+ - uid: 6526
components:
- type: Transform
- pos: 40.5,12.5
+ pos: -8.5,-66.5
parent: 2
- - uid: 4315
+ - uid: 6527
components:
- type: Transform
- pos: 43.5,5.5
+ pos: -8.5,-65.5
parent: 2
- - uid: 4316
+ - uid: 6528
components:
- type: Transform
- pos: -62.5,41.5
+ pos: -36.5,46.5
parent: 2
- - uid: 4317
+ - uid: 6529
components:
- type: Transform
- pos: 57.5,-15.5
+ pos: -32.5,48.5
parent: 2
- - uid: 4318
+ - uid: 6530
components:
- type: Transform
- pos: 46.5,-28.5
+ pos: 40.5,-52.5
parent: 2
- - uid: 4319
+ - uid: 6531
components:
- type: Transform
- pos: 58.5,-15.5
+ pos: 40.5,-40.5
parent: 2
- - uid: 4320
+ - uid: 6532
components:
- type: Transform
- pos: 40.5,-33.5
+ pos: -32.5,-24.5
parent: 2
- - uid: 4321
+ - uid: 6533
components:
- type: Transform
- pos: -65.5,43.5
+ pos: -22.5,28.5
parent: 2
- - uid: 4322
+ - uid: 6534
components:
- type: Transform
- pos: 5.5,27.5
+ pos: -19.5,28.5
parent: 2
- - uid: 4323
+ - uid: 6535
components:
- type: Transform
- pos: 21.5,34.5
+ pos: -54.5,-21.5
parent: 2
- - uid: 4324
+ - uid: 6536
components:
- type: Transform
- pos: 14.5,45.5
+ pos: -28.5,50.5
parent: 2
- - uid: 4325
+ - uid: 6537
components:
- type: Transform
- pos: 41.5,28.5
+ pos: -6.5,39.5
parent: 2
- - uid: 4326
+ - uid: 6538
components:
- type: Transform
- pos: -2.5,57.5
+ pos: 10.5,59.5
parent: 2
- - uid: 4327
+ - uid: 6539
components:
- type: Transform
- pos: 1.5,-76.5
+ pos: -6.5,38.5
parent: 2
- - uid: 4328
+ - uid: 6540
components:
- type: Transform
- pos: -0.5,-76.5
+ pos: 2.5,68.5
parent: 2
- - uid: 4329
+ - uid: 6541
components:
- type: Transform
- pos: 30.5,26.5
+ pos: -18.5,6.5
parent: 2
- - uid: 4330
+ - uid: 6542
components:
- type: Transform
- pos: 47.5,-28.5
+ pos: -54.5,-3.5
parent: 2
- - uid: 4331
+ - uid: 6543
components:
- type: Transform
- pos: 43.5,28.5
+ pos: -45.5,-6.5
parent: 2
- - uid: 4332
+ - uid: 6544
components:
- type: Transform
- pos: 44.5,-22.5
+ pos: -58.5,-13.5
parent: 2
- - uid: 4333
+ - uid: 6545
components:
- type: Transform
- pos: 41.5,-9.5
+ pos: -15.5,-34.5
parent: 2
- - uid: 4334
+ - uid: 6546
components:
- type: Transform
- pos: 15.5,46.5
+ pos: -11.5,-10.5
parent: 2
- - uid: 4335
+ - uid: 6547
components:
- type: Transform
- pos: 39.5,29.5
+ pos: -11.5,-9.5
parent: 2
- - uid: 4336
+ - uid: 6548
components:
- type: Transform
- pos: 16.5,46.5
+ pos: 1.5,-13.5
parent: 2
- - uid: 4337
+ - uid: 6549
components:
- type: Transform
- pos: 43.5,30.5
+ pos: -0.5,-43.5
parent: 2
- - uid: 4338
+ - uid: 6550
components:
- type: Transform
- pos: 26.5,59.5
+ pos: 23.5,-34.5
parent: 2
- - uid: 4339
+ - uid: 6551
components:
- type: Transform
- pos: -53.5,-15.5
+ pos: -44.5,19.5
parent: 2
- - uid: 4340
+ - uid: 6552
components:
- type: Transform
- pos: 41.5,30.5
+ pos: -36.5,-55.5
parent: 2
- - uid: 4341
+ - uid: 6553
components:
- type: Transform
- pos: -58.5,-19.5
+ pos: 21.5,-28.5
parent: 2
- - uid: 4342
+ - uid: 6554
components:
- type: Transform
- pos: 25.5,-8.5
+ pos: -48.5,-12.5
parent: 2
- - uid: 4343
+ - uid: 6555
components:
- type: Transform
- pos: 43.5,-0.5
+ pos: 3.5,-50.5
parent: 2
- - uid: 4344
+ - uid: 6556
components:
- type: Transform
- pos: 40.5,0.5
+ pos: 10.5,-3.5
parent: 2
- - uid: 4345
+ - uid: 6557
components:
- type: Transform
- pos: 62.5,-30.5
+ pos: -6.5,-11.5
parent: 2
- - uid: 4346
+ - uid: 6558
components:
- type: Transform
- pos: 40.5,-0.5
+ pos: -13.5,-36.5
parent: 2
- - uid: 4347
+ - uid: 6559
components:
- type: Transform
- pos: 42.5,-44.5
+ pos: -54.5,-37.5
parent: 2
- - uid: 4348
+ - uid: 6560
components:
- type: Transform
- pos: 12.5,52.5
+ pos: 20.5,-44.5
parent: 2
- - uid: 4349
+ - uid: 6561
components:
- type: Transform
- pos: 10.5,49.5
+ pos: 21.5,-49.5
parent: 2
- - uid: 4350
+ - uid: 6562
components:
- type: Transform
- pos: 31.5,55.5
+ pos: 22.5,-48.5
parent: 2
- - uid: 4351
+ - uid: 6563
components:
- type: Transform
- pos: 75.5,-17.5
+ pos: -44.5,-9.5
parent: 2
- - uid: 4352
+ - uid: 6564
components:
- type: Transform
- pos: 44.5,-21.5
+ pos: -29.5,-2.5
parent: 2
- - uid: 4353
+ - uid: 6565
components:
- type: Transform
- pos: 39.5,-9.5
+ pos: -55.5,26.5
parent: 2
- - uid: 4354
+ - uid: 6566
components:
- type: Transform
- pos: 67.5,-21.5
+ pos: -36.5,-19.5
parent: 2
- - uid: 4355
+ - uid: 6567
components:
- type: Transform
- pos: -50.5,-14.5
+ pos: -38.5,-19.5
parent: 2
- - uid: 4356
+ - uid: 6568
components:
- type: Transform
- pos: 40.5,-43.5
+ pos: 7.5,-50.5
parent: 2
- - uid: 4357
+ - uid: 6569
components:
- type: Transform
- pos: 52.5,-33.5
+ pos: 31.5,-46.5
parent: 2
- - uid: 4358
+ - uid: 6570
components:
- type: Transform
- pos: 44.5,8.5
+ pos: 31.5,-45.5
parent: 2
- - uid: 4359
+ - uid: 6571
components:
- type: Transform
- pos: 41.5,-28.5
+ pos: 31.5,-44.5
parent: 2
- - uid: 4360
+ - uid: 6572
components:
- type: Transform
- pos: 58.5,-12.5
+ pos: -47.5,-12.5
parent: 2
- - uid: 4361
+ - uid: 6573
components:
- type: Transform
- pos: 42.5,-28.5
+ pos: -28.5,-12.5
parent: 2
- - uid: 4362
+ - uid: 6574
components:
- type: Transform
- pos: 64.5,-21.5
+ pos: -17.5,-42.5
parent: 2
- - uid: 4363
+ - uid: 6575
components:
- type: Transform
- pos: 22.5,-3.5
+ pos: -4.5,-46.5
parent: 2
- - uid: 4364
+ - uid: 6576
components:
- type: Transform
- pos: 63.5,-21.5
+ pos: 7.5,-11.5
parent: 2
- - uid: 4365
+ - uid: 6577
components:
- type: Transform
- pos: 22.5,-2.5
+ pos: -7.5,-50.5
parent: 2
- - uid: 4366
+ - uid: 6578
components:
- type: Transform
- pos: 78.5,-18.5
+ pos: -25.5,-49.5
parent: 2
- - uid: 4367
+ - uid: 6579
components:
- type: Transform
- pos: 17.5,63.5
+ pos: 13.5,-53.5
parent: 2
- - uid: 4368
+ - uid: 6580
components:
- type: Transform
- pos: 41.5,-30.5
+ pos: -57.5,6.5
parent: 2
- - uid: 4369
+ - uid: 6581
components:
- type: Transform
- pos: 43.5,-28.5
+ pos: -62.5,51.5
parent: 2
- - uid: 4370
+ - uid: 6582
components:
- type: Transform
- pos: 18.5,66.5
+ pos: -45.5,-7.5
parent: 2
- - uid: 4371
+ - uid: 6583
components:
- type: Transform
- pos: 85.5,10.5
+ pos: 7.5,-45.5
parent: 2
- - uid: 4372
+ - uid: 6584
components:
- type: Transform
- pos: -25.5,-73.5
+ pos: 30.5,10.5
parent: 2
- - uid: 4373
+ - uid: 6585
components:
- type: Transform
- pos: -16.5,-78.5
+ pos: 45.5,11.5
parent: 2
- - uid: 4374
+ - uid: 6586
components:
- type: Transform
- pos: -33.5,-75.5
+ pos: -52.5,-11.5
parent: 2
- - uid: 4375
+ - uid: 6587
components:
- type: Transform
- pos: -18.5,17.5
+ pos: -35.5,-80.5
parent: 2
- - uid: 4376
+ - uid: 6588
components:
- type: Transform
- pos: -18.5,15.5
+ pos: -18.5,4.5
parent: 2
- - uid: 4377
+ - uid: 6589
components:
- type: Transform
- pos: -51.5,-4.5
+ pos: -18.5,3.5
parent: 2
- - uid: 4378
+ - uid: 6590
components:
- type: Transform
- pos: -54.5,-5.5
+ pos: -18.5,2.5
parent: 2
- - uid: 4379
+ - uid: 6591
components:
- type: Transform
- pos: -27.5,-62.5
+ pos: -18.5,1.5
parent: 2
- - uid: 4380
+ - uid: 6592
components:
- type: Transform
- pos: -38.5,-63.5
+ pos: -18.5,0.5
parent: 2
- - uid: 4381
+ - uid: 6593
components:
- type: Transform
- pos: -22.5,-28.5
+ pos: -18.5,-0.5
parent: 2
- - uid: 4382
+ - uid: 6594
components:
- type: Transform
- pos: -27.5,-63.5
+ pos: -18.5,-1.5
parent: 2
- - uid: 4383
+ - uid: 6595
components:
- type: Transform
- pos: -37.5,-63.5
+ pos: -18.5,-2.5
parent: 2
- - uid: 4384
+ - uid: 6596
components:
- type: Transform
- pos: 2.5,36.5
+ pos: 5.5,58.5
parent: 2
- - uid: 4385
+ - uid: 6597
components:
- type: Transform
- pos: 39.5,-12.5
+ pos: -59.5,1.5
parent: 2
- - uid: 4386
+ - uid: 6598
components:
- type: Transform
- pos: 36.5,-12.5
+ pos: 19.5,53.5
parent: 2
- - uid: 4387
+ - uid: 6599
components:
- type: Transform
- pos: 4.5,36.5
+ pos: 17.5,1.5
parent: 2
- - uid: 4388
+ - uid: 6600
components:
- type: Transform
- pos: 26.5,34.5
+ pos: 13.5,61.5
parent: 2
- - uid: 4389
+ - uid: 6601
components:
- type: Transform
- pos: -53.5,0.5
+ pos: -29.5,-80.5
parent: 2
- - uid: 4390
+ - uid: 6602
components:
- type: Transform
- pos: 13.5,33.5
+ pos: -52.5,-14.5
parent: 2
- - uid: 4391
+ - uid: 6603
components:
- type: Transform
- pos: -26.5,-71.5
+ pos: 17.5,53.5
parent: 2
- - uid: 4392
+ - uid: 6604
components:
- type: Transform
- pos: -29.5,83.5
+ pos: -39.5,49.5
parent: 2
- - uid: 4393
+ - uid: 6605
components:
- type: Transform
- pos: 0.5,-64.5
+ pos: -31.5,-5.5
parent: 2
- - uid: 4394
+ - uid: 6606
components:
- type: Transform
- pos: 1.5,-66.5
+ pos: -28.5,-3.5
parent: 2
- - uid: 4395
+ - uid: 6607
components:
- type: Transform
- pos: 27.5,18.5
+ pos: -28.5,-4.5
parent: 2
- - uid: 4396
+ - uid: 6608
components:
- type: Transform
- pos: -27.5,-65.5
+ pos: -26.5,-5.5
parent: 2
- - uid: 4397
+ - uid: 6609
components:
- type: Transform
- pos: -13.5,-65.5
+ pos: -27.5,-5.5
parent: 2
- - uid: 4398
+ - uid: 6610
components:
- type: Transform
- pos: -3.5,-68.5
+ pos: -28.5,-5.5
parent: 2
- - uid: 4399
+ - uid: 6611
components:
- type: Transform
- pos: -36.5,-59.5
+ pos: -29.5,-5.5
parent: 2
- - uid: 4400
+ - uid: 6612
components:
- type: Transform
- pos: 10.5,83.5
+ pos: -30.5,-5.5
parent: 2
- - uid: 4401
+ - uid: 6613
components:
- type: Transform
- pos: -36.5,-63.5
+ pos: 17.5,-16.5
parent: 2
- - uid: 4402
+ - uid: 6614
components:
- type: Transform
- pos: -29.5,-74.5
+ pos: 16.5,-20.5
parent: 2
- - uid: 4403
+ - uid: 6615
components:
- type: Transform
- pos: -35.5,-73.5
+ pos: 16.5,-21.5
parent: 2
- - uid: 4404
+ - uid: 6616
components:
- type: Transform
- pos: -29.5,-73.5
+ pos: 16.5,-22.5
parent: 2
- - uid: 4405
+ - uid: 6617
components:
- type: Transform
- pos: -52.5,0.5
+ pos: 17.5,-13.5
parent: 2
- - uid: 4406
+ - uid: 6618
components:
- type: Transform
- pos: 21.5,-5.5
+ pos: 17.5,-14.5
parent: 2
- - uid: 4407
+ - uid: 6619
components:
- type: Transform
- pos: 33.5,-0.5
+ pos: 17.5,-15.5
parent: 2
- - uid: 4408
+ - uid: 6620
components:
- type: Transform
- pos: 35.5,-9.5
+ pos: 17.5,-17.5
parent: 2
- - uid: 4409
+ - uid: 6621
components:
- type: Transform
- pos: 14.5,72.5
+ pos: -0.5,-30.5
parent: 2
- - uid: 4410
+ - uid: 6622
components:
- type: Transform
- pos: 6.5,57.5
+ pos: -0.5,-29.5
parent: 2
- - uid: 4411
+ - uid: 6623
components:
- type: Transform
- pos: 42.5,12.5
+ pos: -0.5,-27.5
parent: 2
- - uid: 4412
+ - uid: 6624
components:
- type: Transform
- pos: 33.5,10.5
+ pos: -29.5,50.5
parent: 2
- - uid: 4413
+ - uid: 6625
components:
- type: Transform
- pos: 49.5,-10.5
+ pos: -28.5,55.5
parent: 2
- - uid: 4414
+ - uid: 6626
components:
- type: Transform
- pos: 48.5,-28.5
+ pos: -28.5,56.5
parent: 2
- - uid: 4415
+ - uid: 6627
components:
- type: Transform
- pos: 14.5,46.5
+ pos: -8.5,41.5
parent: 2
- - uid: 4416
+ - uid: 6628
components:
- type: Transform
- pos: 4.5,27.5
+ pos: -18.5,48.5
parent: 2
- - uid: 4417
+ - uid: 6629
components:
- type: Transform
- pos: -5.5,-70.5
+ pos: 4.5,62.5
parent: 2
- - uid: 4418
+ - uid: 6630
components:
- type: Transform
- pos: -8.5,-68.5
+ pos: 2.5,64.5
parent: 2
- - uid: 4419
+ - uid: 6631
components:
- type: Transform
- pos: -13.5,-80.5
+ pos: -7.5,-80.5
parent: 2
- - uid: 4420
+ - uid: 6632
components:
- type: Transform
- pos: -29.5,71.5
+ pos: 11.5,82.5
parent: 2
- - uid: 4421
+ - uid: 6633
components:
- type: Transform
- pos: -29.5,84.5
+ pos: -36.5,62.5
parent: 2
- - uid: 4422
+ - uid: 6634
components:
- type: Transform
- pos: 52.5,-7.5
+ pos: -14.5,-19.5
parent: 2
- - uid: 4423
+ - uid: 6635
components:
- type: Transform
- pos: 30.5,0.5
+ pos: -18.5,27.5
parent: 2
- - uid: 4424
+ - uid: 6636
components:
- type: Transform
- pos: -57.5,54.5
+ pos: 5.5,92.5
parent: 2
- - uid: 4425
+ - uid: 6637
components:
- type: Transform
- pos: 20.5,-10.5
+ pos: 32.5,-66.5
parent: 2
- - uid: 4426
+ - uid: 6638
components:
- type: Transform
- pos: 30.5,-9.5
+ pos: -55.5,-15.5
parent: 2
- - uid: 4427
+ - uid: 6639
components:
- type: Transform
- pos: -29.5,90.5
+ pos: 58.5,-30.5
parent: 2
- - uid: 4428
+ - uid: 6640
components:
- type: Transform
- pos: -42.5,26.5
+ pos: 5.5,65.5
parent: 2
- - uid: 4429
+ - uid: 6641
components:
- type: Transform
- pos: -13.5,57.5
+ pos: -6.5,43.5
parent: 2
- - uid: 4430
+ - uid: 6642
components:
- type: Transform
- pos: -37.5,57.5
+ pos: -41.5,23.5
parent: 2
- - uid: 4431
+ - uid: 6643
components:
- type: Transform
- pos: 26.5,-65.5
+ pos: -3.5,-64.5
parent: 2
- - uid: 4432
+ - uid: 6644
components:
- type: Transform
- pos: -10.5,-60.5
+ pos: -19.5,-71.5
parent: 2
- - uid: 4433
+ - uid: 6645
components:
- type: Transform
- pos: -1.5,-59.5
+ pos: 17.5,8.5
parent: 2
- - uid: 4434
+ - uid: 6646
components:
- type: Transform
- pos: 19.5,46.5
+ pos: -35.5,5.5
parent: 2
- - uid: 4435
+ - uid: 6647
components:
- type: Transform
- pos: -54.5,-4.5
+ pos: -2.5,-7.5
parent: 2
- - uid: 4436
+ - uid: 6648
components:
- type: Transform
- pos: 15.5,35.5
+ pos: -32.5,-40.5
parent: 2
- - uid: 4437
+ - uid: 6649
components:
- type: Transform
- pos: 25.5,-16.5
+ pos: -42.5,-36.5
parent: 2
- - uid: 4438
+ - uid: 6650
components:
- type: Transform
- pos: 56.5,-11.5
+ pos: -54.5,49.5
parent: 2
- - uid: 4439
+ - uid: 6651
components:
- type: Transform
- pos: 37.5,0.5
+ pos: -10.5,-57.5
parent: 2
- - uid: 4440
+ - uid: 6652
components:
- type: Transform
- pos: 23.5,9.5
+ pos: -34.5,-40.5
parent: 2
- - uid: 4441
+ - uid: 6653
components:
- type: Transform
- pos: 42.5,0.5
+ pos: -35.5,-40.5
parent: 2
- - uid: 4442
+ - uid: 6654
components:
- type: Transform
- pos: -61.5,-19.5
+ pos: -42.5,28.5
parent: 2
- - uid: 4443
+ - uid: 6655
components:
- type: Transform
- pos: -60.5,-19.5
+ pos: -36.5,-40.5
parent: 2
- - uid: 4444
+ - uid: 6656
components:
- type: Transform
- pos: -63.5,43.5
+ pos: -54.5,29.5
parent: 2
- - uid: 4445
+ - uid: 6657
components:
- type: Transform
- pos: -18.5,16.5
+ pos: 45.5,-28.5
parent: 2
- - uid: 4446
+ - uid: 6658
components:
- type: Transform
- pos: 7.5,30.5
+ pos: -36.5,-39.5
parent: 2
- - uid: 4447
+ - uid: 6659
components:
- type: Transform
- pos: -10.5,-81.5
+ pos: -58.5,29.5
parent: 2
- - uid: 4448
+ - uid: 6660
components:
- type: Transform
- pos: -3.5,-70.5
+ pos: -13.5,14.5
parent: 2
- - uid: 4449
+ - uid: 6661
components:
- type: Transform
- pos: -2.5,-70.5
+ pos: -30.5,-14.5
parent: 2
- - uid: 4450
+ - uid: 6662
components:
- type: Transform
- pos: -57.5,2.5
+ pos: -36.5,-38.5
parent: 2
- - uid: 4451
+ - uid: 6663
components:
- type: Transform
- pos: -6.5,-58.5
+ pos: -35.5,-38.5
parent: 2
- - uid: 4452
+ - uid: 6664
components:
- type: Transform
- pos: 31.5,-64.5
+ pos: -34.5,-38.5
parent: 2
- - uid: 4453
+ - uid: 6665
components:
- type: Transform
- pos: -25.5,-60.5
+ pos: -33.5,-38.5
parent: 2
- - uid: 4454
+ - uid: 6666
components:
- type: Transform
- pos: -36.5,-61.5
+ pos: -32.5,-38.5
parent: 2
- - uid: 4455
+ - uid: 6667
components:
- type: Transform
- pos: 29.5,-66.5
+ pos: 24.5,-43.5
parent: 2
- - uid: 4456
+ - uid: 6668
components:
- type: Transform
- pos: -10.5,-78.5
+ pos: -32.5,-37.5
parent: 2
- - uid: 4457
+ - uid: 6669
components:
- type: Transform
- pos: 10.5,30.5
+ pos: -32.5,-36.5
parent: 2
- - uid: 4458
+ - uid: 6670
components:
- type: Transform
- pos: 8.5,55.5
+ pos: -33.5,-36.5
parent: 2
- - uid: 4459
+ - uid: 6671
components:
- type: Transform
- pos: 14.5,69.5
+ pos: -64.5,6.5
parent: 2
- - uid: 4460
+ - uid: 6672
components:
- type: Transform
- pos: -50.5,0.5
+ pos: -31.5,34.5
parent: 2
- - uid: 4461
+ - uid: 6673
components:
- type: Transform
- pos: 17.5,61.5
+ pos: -30.5,-39.5
parent: 2
- - uid: 4462
+ - uid: 6674
components:
- type: Transform
- pos: 27.5,56.5
+ pos: -29.5,-40.5
parent: 2
- - uid: 4463
+ - uid: 6675
components:
- type: Transform
- pos: 26.5,36.5
+ pos: 11.5,-55.5
parent: 2
- - uid: 4464
+ - uid: 6676
components:
- type: Transform
- pos: -0.5,57.5
+ pos: -9.5,-55.5
parent: 2
- - uid: 4465
+ - uid: 6677
components:
- type: Transform
- pos: 4.5,34.5
+ pos: 29.5,-60.5
parent: 2
- - uid: 4466
+ - uid: 6678
components:
- type: Transform
- pos: 38.5,-12.5
+ pos: -28.5,-40.5
parent: 2
- - uid: 4467
+ - uid: 6679
components:
- type: Transform
- pos: -51.5,-10.5
+ pos: -28.5,-41.5
parent: 2
- - uid: 4468
+ - uid: 6680
components:
- type: Transform
- pos: -58.5,-14.5
+ pos: -46.5,50.5
parent: 2
- - uid: 4469
+ - uid: 6681
components:
- type: Transform
- pos: -51.5,-1.5
+ pos: -3.5,-7.5
parent: 2
- - uid: 4470
+ - uid: 6682
components:
- type: Transform
- pos: 58.5,4.5
+ pos: -28.5,-42.5
parent: 2
- - uid: 4471
+ - uid: 6683
components:
- type: Transform
- pos: 13.5,32.5
+ pos: 11.5,54.5
parent: 2
- - uid: 4472
+ - uid: 6684
components:
- type: Transform
- pos: -26.5,-60.5
+ pos: -28.5,-43.5
parent: 2
- - uid: 4473
+ - uid: 6685
components:
- type: Transform
- pos: -26.5,-72.5
+ pos: -28.5,-44.5
parent: 2
- - uid: 4474
+ - uid: 6686
components:
- type: Transform
- pos: -18.5,14.5
+ pos: 23.5,43.5
parent: 2
- - uid: 4475
+ - uid: 6687
components:
- type: Transform
- pos: -27.5,-61.5
+ pos: -28.5,-45.5
parent: 2
- - uid: 4476
+ - uid: 6688
components:
- type: Transform
- pos: 71.5,-21.5
+ pos: -0.5,28.5
parent: 2
- - uid: 4477
+ - uid: 6689
components:
- type: Transform
- pos: 32.5,-55.5
+ pos: 22.5,42.5
parent: 2
- - uid: 4478
+ - uid: 6690
components:
- type: Transform
- pos: 41.5,-29.5
+ pos: 23.5,45.5
parent: 2
- - uid: 4479
+ - uid: 6691
components:
- type: Transform
- pos: 79.5,-18.5
+ pos: -7.5,57.5
parent: 2
- - uid: 4480
+ - uid: 6692
components:
- type: Transform
- pos: 47.5,-10.5
+ pos: 0.5,64.5
parent: 2
- - uid: 4481
+ - uid: 6693
components:
- type: Transform
- pos: 78.5,9.5
+ pos: 2.5,62.5
parent: 2
- - uid: 4482
+ - uid: 6694
components:
- type: Transform
- pos: 52.5,-41.5
+ pos: -56.5,-7.5
parent: 2
- - uid: 4483
+ - uid: 6695
components:
- type: Transform
- pos: 70.5,-18.5
+ pos: 21.5,35.5
parent: 2
- - uid: 4484
+ - uid: 6696
components:
- type: Transform
- pos: 52.5,-39.5
+ pos: -22.5,-33.5
parent: 2
- - uid: 4485
+ - uid: 6697
components:
- type: Transform
- pos: 40.5,-20.5
+ pos: -29.5,-45.5
parent: 2
- - uid: 4486
+ - uid: 6698
components:
- type: Transform
- pos: 77.5,-18.5
+ pos: -57.5,11.5
parent: 2
- - uid: 4487
+ - uid: 6699
components:
- type: Transform
- pos: 19.5,69.5
+ pos: -53.5,10.5
parent: 2
- - uid: 4488
+ - uid: 6700
components:
- type: Transform
- pos: 63.5,-9.5
+ pos: -60.5,7.5
parent: 2
- - uid: 4489
+ - uid: 6701
components:
- type: Transform
- pos: 51.5,-43.5
+ pos: -52.5,41.5
parent: 2
- - uid: 4490
+ - uid: 6702
components:
- type: Transform
- pos: 52.5,-37.5
+ pos: -25.5,1.5
parent: 2
- - uid: 4491
+ - uid: 6703
components:
- type: Transform
- pos: 75.5,-18.5
+ pos: -37.5,-28.5
parent: 2
- - uid: 4492
+ - uid: 6704
components:
- type: Transform
- pos: 76.5,-18.5
+ pos: -48.5,37.5
parent: 2
- - uid: 4493
+ - uid: 6705
components:
- type: Transform
- pos: 40.5,4.5
+ pos: -32.5,-45.5
parent: 2
- - uid: 4494
+ - uid: 6706
components:
- type: Transform
- pos: 53.5,-40.5
+ pos: -33.5,-45.5
parent: 2
- - uid: 4495
+ - uid: 6707
components:
- type: Transform
- pos: -29.5,85.5
+ pos: 12.5,-19.5
parent: 2
- - uid: 4496
+ - uid: 6708
components:
- type: Transform
- pos: 52.5,-42.5
+ pos: -34.5,-45.5
parent: 2
- - uid: 4497
+ - uid: 6709
components:
- type: Transform
- pos: 51.5,-46.5
+ pos: -19.5,-73.5
parent: 2
- - uid: 4498
+ - uid: 6710
components:
- type: Transform
- pos: 35.5,-21.5
+ pos: -15.5,-78.5
parent: 2
- - uid: 4499
+ - uid: 6711
components:
- type: Transform
- pos: 40.5,1.5
+ pos: -35.5,-45.5
parent: 2
- - uid: 4500
+ - uid: 6712
components:
- type: Transform
- pos: -36.5,-11.5
+ pos: -33.5,-78.5
parent: 2
- - uid: 4501
+ - uid: 6713
components:
- type: Transform
- pos: 22.5,-4.5
+ pos: -41.5,39.5
parent: 2
- - uid: 4502
+ - uid: 6714
components:
- type: Transform
- pos: 52.5,-32.5
+ pos: -36.5,-45.5
parent: 2
- - uid: 4503
+ - uid: 6715
components:
- type: Transform
- pos: 43.5,-35.5
+ pos: -40.5,-36.5
parent: 2
- - uid: 4504
+ - uid: 6716
components:
- type: Transform
- pos: 30.5,-1.5
+ pos: -52.5,28.5
parent: 2
- - uid: 4505
+ - uid: 6717
components:
- type: Transform
- pos: 53.5,-7.5
+ pos: -39.5,-36.5
parent: 2
- - uid: 4506
+ - uid: 6718
components:
- type: Transform
- pos: 40.5,8.5
+ pos: -36.5,-43.5
parent: 2
- - uid: 4507
+ - uid: 6719
components:
- type: Transform
- pos: 21.5,0.5
+ pos: -35.5,-43.5
parent: 2
- - uid: 4508
+ - uid: 6720
components:
- type: Transform
- pos: 50.5,-10.5
+ pos: -0.5,-3.5
parent: 2
- - uid: 4509
+ - uid: 6721
components:
- type: Transform
- pos: 43.5,-34.5
+ pos: -34.5,-43.5
parent: 2
- - uid: 4510
+ - uid: 6722
components:
- type: Transform
- pos: 41.5,-50.5
+ pos: -37.5,-4.5
parent: 2
- - uid: 4511
+ - uid: 6723
components:
- type: Transform
- pos: 78.5,-21.5
+ pos: 8.5,-19.5
parent: 2
- - uid: 4512
+ - uid: 6724
components:
- type: Transform
- pos: -29.5,77.5
+ pos: -19.5,-46.5
parent: 2
- - uid: 4513
+ - uid: 6725
components:
- type: Transform
- pos: 41.5,-46.5
+ pos: 27.5,-60.5
parent: 2
- - uid: 4514
+ - uid: 6726
components:
- type: Transform
- pos: 52.5,-31.5
+ pos: -55.5,14.5
parent: 2
- - uid: 4515
+ - uid: 6727
components:
- type: Transform
- pos: 37.5,-3.5
+ pos: -76.5,14.5
parent: 2
- - uid: 4516
+ - uid: 6728
components:
- type: Transform
- pos: 40.5,9.5
+ pos: -57.5,12.5
parent: 2
- - uid: 4517
+ - uid: 6729
components:
- type: Transform
- pos: 23.5,42.5
+ pos: -73.5,15.5
parent: 2
- - uid: 4518
+ - uid: 6730
components:
- type: Transform
- pos: 29.5,-1.5
+ pos: -55.5,34.5
parent: 2
- - uid: 4519
+ - uid: 6731
components:
- type: Transform
- pos: 35.5,-19.5
+ pos: -28.5,-46.5
parent: 2
- - uid: 4520
+ - uid: 6732
components:
- type: Transform
- pos: 32.5,5.5
+ pos: -15.5,-36.5
parent: 2
- - uid: 4521
+ - uid: 6733
components:
- type: Transform
- pos: 35.5,-3.5
+ pos: -28.5,-47.5
parent: 2
- - uid: 4522
+ - uid: 6734
components:
- type: Transform
- pos: 70.5,-24.5
+ pos: -27.5,-45.5
parent: 2
- - uid: 4523
+ - uid: 6735
components:
- type: Transform
- pos: 16.5,60.5
+ pos: -26.5,-47.5
parent: 2
- - uid: 4524
+ - uid: 6736
components:
- type: Transform
- pos: 17.5,60.5
+ pos: 5.5,-32.5
parent: 2
- - uid: 4525
+ - uid: 6737
components:
- type: Transform
- pos: 1.5,57.5
+ pos: -16.5,-36.5
parent: 2
- - uid: 4526
+ - uid: 6738
components:
- type: Transform
- pos: -56.5,0.5
+ pos: -23.5,-41.5
parent: 2
- - uid: 4527
+ - uid: 6739
components:
- type: Transform
- pos: 24.5,56.5
+ pos: 67.5,6.5
parent: 2
- - uid: 4528
+ - uid: 6740
components:
- type: Transform
- pos: 26.5,56.5
+ pos: -7.5,17.5
parent: 2
- - uid: 4529
+ - uid: 6741
components:
- type: Transform
- pos: -54.5,-15.5
+ pos: -38.5,-36.5
parent: 2
- - uid: 4530
+ - uid: 6742
components:
- type: Transform
- pos: 26.5,-13.5
+ pos: -1.5,14.5
parent: 2
- - uid: 4531
+ - uid: 6743
components:
- type: Transform
- pos: 14.5,42.5
+ pos: -23.5,-40.5
parent: 2
- - uid: 4532
+ - uid: 6744
components:
- type: Transform
- pos: 21.5,37.5
+ pos: 9.5,-13.5
parent: 2
- - uid: 4533
+ - uid: 6745
components:
- type: Transform
- pos: -12.5,23.5
+ pos: -26.5,22.5
parent: 2
- - uid: 4534
+ - uid: 6746
components:
- type: Transform
- pos: -27.5,-68.5
+ pos: -48.5,-43.5
parent: 2
- - uid: 4535
+ - uid: 6747
components:
- type: Transform
- pos: 19.5,20.5
+ pos: 44.5,-6.5
parent: 2
- - uid: 4536
+ - uid: 6748
components:
- type: Transform
- pos: 39.5,50.5
+ pos: 44.5,-9.5
parent: 2
- - uid: 4537
+ - uid: 6749
components:
- type: Transform
- pos: -14.5,23.5
+ pos: 43.5,-4.5
parent: 2
- - uid: 4538
+ - uid: 6750
components:
- type: Transform
- pos: -27.5,-66.5
+ pos: 44.5,-3.5
parent: 2
- - uid: 4539
+ - uid: 6751
components:
- type: Transform
- pos: 21.5,18.5
+ pos: 43.5,-3.5
parent: 2
- - uid: 4540
+ - uid: 6752
components:
- type: Transform
- pos: -7.5,-64.5
+ pos: 42.5,-3.5
parent: 2
- - uid: 4541
+ - uid: 6753
components:
- type: Transform
- pos: 64.5,25.5
+ pos: 15.5,27.5
parent: 2
- - uid: 4542
+ - uid: 6754
components:
- type: Transform
- pos: -38.5,-9.5
+ pos: -23.5,-39.5
parent: 2
- - uid: 4543
+ - uid: 6755
components:
- type: Transform
- pos: -3.5,48.5
+ pos: -24.5,-40.5
parent: 2
- - uid: 4544
+ - uid: 6756
components:
- type: Transform
- pos: 14.5,41.5
+ pos: -23.5,-38.5
parent: 2
- - uid: 4545
+ - uid: 6757
components:
- type: Transform
- pos: -29.5,91.5
+ pos: 37.5,5.5
parent: 2
- - uid: 4546
+ - uid: 6758
components:
- type: Transform
- pos: 31.5,-60.5
+ pos: -23.5,-37.5
parent: 2
- - uid: 4547
+ - uid: 6759
components:
- type: Transform
- pos: 6.5,77.5
+ pos: 30.5,1.5
parent: 2
- - uid: 4548
+ - uid: 6760
components:
- type: Transform
- pos: -3.5,-60.5
+ pos: -24.5,-38.5
parent: 2
- - uid: 4549
+ - uid: 6761
components:
- type: Transform
- pos: 17.5,48.5
+ pos: 59.5,-15.5
parent: 2
- - uid: 4550
+ - uid: 6762
components:
- type: Transform
- pos: 21.5,31.5
+ pos: -23.5,-46.5
parent: 2
- - uid: 4551
+ - uid: 6763
components:
- type: Transform
- pos: -41.5,54.5
+ pos: -58.5,-12.5
parent: 2
- - uid: 4552
+ - uid: 6764
components:
- type: Transform
- pos: -14.5,-67.5
+ pos: 29.5,56.5
parent: 2
- - uid: 4553
+ - uid: 6765
components:
- type: Transform
- pos: 28.5,41.5
+ pos: 13.5,52.5
parent: 2
- - uid: 4554
+ - uid: 6766
components:
- type: Transform
- pos: -6.5,-64.5
+ pos: -25.5,-50.5
parent: 2
- - uid: 4555
+ - uid: 6767
components:
- type: Transform
- pos: -15.5,-67.5
+ pos: 31.5,56.5
parent: 2
- - uid: 4556
+ - uid: 6768
components:
- type: Transform
- pos: 20.5,30.5
+ pos: -23.5,-49.5
parent: 2
- - uid: 4557
+ - uid: 6769
components:
- type: Transform
- pos: -39.5,57.5
+ pos: -32.5,-75.5
parent: 2
- - uid: 4558
+ - uid: 6770
components:
- type: Transform
- pos: 41.5,-73.5
+ pos: -18.5,18.5
parent: 2
- - uid: 4559
+ - uid: 6771
components:
- type: Transform
- pos: 16.5,35.5
+ pos: -37.5,-36.5
parent: 2
- - uid: 4560
+ - uid: 6772
components:
- type: Transform
- pos: -3.5,46.5
+ pos: 37.5,-12.5
parent: 2
- - uid: 4561
+ - uid: 6773
components:
- type: Transform
- pos: 23.5,30.5
+ pos: 6.5,30.5
parent: 2
- - uid: 4562
+ - uid: 6774
components:
- type: Transform
- pos: 19.5,19.5
+ pos: -51.5,-2.5
parent: 2
- - uid: 4563
+ - uid: 6775
components:
- type: Transform
- pos: -11.5,-61.5
+ pos: -10.5,-80.5
parent: 2
- - uid: 4564
+ - uid: 6776
components:
- type: Transform
- pos: -17.5,49.5
+ pos: -3.5,-71.5
parent: 2
- - uid: 4565
+ - uid: 6777
components:
- type: Transform
- pos: -1.5,29.5
+ pos: 44.5,-64.5
parent: 2
- - uid: 4566
+ - uid: 6778
components:
- type: Transform
- pos: 1.5,23.5
+ pos: 32.5,-67.5
parent: 2
- - uid: 4567
+ - uid: 6779
components:
- type: Transform
- pos: 0.5,23.5
+ pos: 15.5,29.5
parent: 2
- - uid: 4568
+ - uid: 6780
components:
- type: Transform
- pos: 0.5,29.5
+ pos: 9.5,30.5
parent: 2
- - uid: 4569
+ - uid: 6781
components:
- type: Transform
- pos: -0.5,29.5
+ pos: -58.5,0.5
parent: 2
- - uid: 4570
+ - uid: 6782
components:
- type: Transform
- pos: -61.5,10.5
+ pos: -58.5,1.5
parent: 2
- - uid: 4571
+ - uid: 6783
components:
- type: Transform
- pos: -6.5,49.5
+ pos: 51.5,-44.5
parent: 2
- - uid: 4572
+ - uid: 6784
components:
- type: Transform
- pos: 28.5,43.5
+ pos: -23.5,-35.5
parent: 2
- - uid: 4573
+ - uid: 6785
components:
- type: Transform
- pos: 2.5,-7.5
+ pos: 35.5,-22.5
parent: 2
- - uid: 4574
+ - uid: 6786
components:
- type: Transform
- pos: -0.5,23.5
+ pos: 39.5,1.5
parent: 2
- - uid: 4575
+ - uid: 6787
components:
- type: Transform
- pos: -0.5,32.5
+ pos: 68.5,6.5
parent: 2
- - uid: 4576
+ - uid: 6788
components:
- type: Transform
- pos: 0.5,31.5
+ pos: -27.5,-69.5
parent: 2
- - uid: 4577
+ - uid: 6789
components:
- type: Transform
- pos: -65.5,28.5
+ pos: 17.5,49.5
parent: 2
- - uid: 4578
+ - uid: 6790
components:
- type: Transform
- pos: -32.5,-6.5
+ pos: 22.5,31.5
parent: 2
- - uid: 4579
+ - uid: 6791
components:
- type: Transform
- pos: -28.5,-15.5
+ pos: -35.5,-75.5
parent: 2
- - uid: 4580
+ - uid: 6792
components:
- type: Transform
- pos: -36.5,-12.5
+ pos: -22.5,-6.5
parent: 2
- - uid: 4581
+ - uid: 6793
components:
- type: Transform
- pos: -18.5,-14.5
+ pos: -65.5,-40.5
parent: 2
- - uid: 4582
+ - uid: 6794
components:
- type: Transform
- pos: 15.5,-19.5
+ pos: -50.5,-12.5
parent: 2
- - uid: 4583
+ - uid: 6795
components:
- type: Transform
- pos: -11.5,52.5
+ pos: -17.5,35.5
parent: 2
- - uid: 4584
+ - uid: 6796
components:
- type: Transform
- pos: 37.5,-69.5
+ pos: -37.5,-26.5
parent: 2
- - uid: 4585
+ - uid: 6797
components:
- type: Transform
- pos: 34.5,-67.5
+ pos: -44.5,-27.5
parent: 2
- - uid: 4586
+ - uid: 6798
components:
- type: Transform
- pos: 40.5,-67.5
+ pos: -35.5,-26.5
parent: 2
- - uid: 4587
+ - uid: 6799
components:
- type: Transform
- pos: -26.5,42.5
+ pos: -41.5,49.5
parent: 2
- - uid: 4588
+ - uid: 6800
components:
- type: Transform
- pos: -51.5,50.5
+ pos: -18.5,-18.5
parent: 2
- - uid: 4589
+ - uid: 6801
components:
- type: Transform
- pos: 16.5,-19.5
+ pos: -24.5,-30.5
parent: 2
- - uid: 4590
+ - uid: 6802
components:
- type: Transform
- pos: -32.5,-0.5
+ pos: -27.5,14.5
parent: 2
- - uid: 4591
+ - uid: 6803
components:
- type: Transform
- pos: -42.5,12.5
+ pos: -47.5,30.5
parent: 2
- - uid: 4592
+ - uid: 6804
components:
- type: Transform
- pos: -65.5,29.5
+ pos: -58.5,7.5
parent: 2
- - uid: 4593
+ - uid: 6805
components:
- type: Transform
- pos: 27.5,-59.5
+ pos: -59.5,40.5
parent: 2
- - uid: 4594
+ - uid: 6806
components:
- type: Transform
- pos: -28.5,-30.5
+ pos: -48.5,45.5
parent: 2
- - uid: 4595
+ - uid: 6807
components:
- type: Transform
- pos: -27.5,11.5
+ pos: -51.5,46.5
parent: 2
- - uid: 4596
+ - uid: 6808
components:
- type: Transform
- pos: 39.5,-58.5
+ pos: 62.5,-27.5
parent: 2
- - uid: 4597
+ - uid: 6809
components:
- type: Transform
- pos: -32.5,0.5
+ pos: -5.5,62.5
parent: 2
- - uid: 4598
+ - uid: 6810
components:
- type: Transform
- pos: -41.5,8.5
+ pos: 32.5,-19.5
parent: 2
- - uid: 4599
+ - uid: 6811
components:
- type: Transform
- pos: -29.5,86.5
+ pos: -76.5,-22.5
parent: 2
- - uid: 4600
+ - uid: 6812
components:
- type: Transform
- pos: 75.5,-22.5
+ pos: -75.5,-22.5
parent: 2
- - uid: 4601
+ - uid: 6813
components:
- type: Transform
- pos: -27.5,-30.5
+ pos: -74.5,-22.5
parent: 2
- - uid: 4602
+ - uid: 6814
components:
- type: Transform
- pos: 0.5,32.5
+ pos: -74.5,-23.5
parent: 2
- - uid: 4603
+ - uid: 6815
components:
- type: Transform
- pos: 35.5,-60.5
+ pos: -18.5,50.5
parent: 2
- - uid: 4604
+ - uid: 6816
components:
- type: Transform
- pos: -32.5,52.5
+ pos: -20.5,-67.5
parent: 2
- - uid: 4605
+ - uid: 6817
components:
- type: Transform
- pos: -32.5,53.5
+ pos: 37.5,-53.5
parent: 2
- - uid: 4606
+ - uid: 6818
components:
- type: Transform
- pos: -2.5,35.5
+ pos: 35.5,-55.5
parent: 2
- - uid: 4607
+ - uid: 6819
components:
- type: Transform
- pos: -41.5,9.5
+ pos: -13.5,77.5
parent: 2
- - uid: 4608
+ - uid: 6820
components:
- type: Transform
- pos: -27.5,22.5
+ pos: -33.5,57.5
parent: 2
- - uid: 4609
+ - uid: 6821
components:
- type: Transform
- pos: 35.5,-70.5
+ pos: 32.5,-34.5
parent: 2
- - uid: 4610
+ - uid: 6822
components:
- type: Transform
- pos: -37.5,19.5
+ pos: 26.5,38.5
parent: 2
- - uid: 4611
+ - uid: 6823
components:
- type: Transform
- pos: -66.5,59.5
+ pos: 8.5,36.5
parent: 2
- - uid: 4612
+ - uid: 6824
components:
- type: Transform
- pos: -41.5,7.5
+ pos: 22.5,-46.5
parent: 2
- - uid: 4613
+ - uid: 6825
components:
- type: Transform
- pos: -25.5,42.5
+ pos: -2.5,-13.5
parent: 2
- - uid: 4614
+ - uid: 6826
components:
- type: Transform
- pos: -32.5,54.5
+ pos: 0.5,-17.5
parent: 2
- - uid: 4615
+ - uid: 6827
components:
- type: Transform
- pos: 24.5,-55.5
+ pos: -16.5,-61.5
parent: 2
- - uid: 4616
+ - uid: 6828
components:
- type: Transform
- pos: 3.5,-55.5
+ pos: -18.5,-61.5
parent: 2
- - uid: 4617
+ - uid: 6829
components:
- type: Transform
- pos: -28.5,-28.5
+ pos: -25.5,15.5
parent: 2
- - uid: 4618
+ - uid: 6830
components:
- type: Transform
- pos: -64.5,-45.5
+ pos: -56.5,-20.5
parent: 2
- - uid: 4619
+ - uid: 6831
components:
- type: Transform
- pos: -29.5,49.5
+ pos: 22.5,-7.5
parent: 2
- - uid: 4620
+ - uid: 6832
components:
- type: Transform
- pos: -41.5,0.5
+ pos: -50.5,-0.5
parent: 2
- - uid: 4621
+ - uid: 6833
components:
- type: Transform
- pos: -34.5,-26.5
+ pos: 17.5,-6.5
parent: 2
- - uid: 4622
+ - uid: 6834
components:
- type: Transform
- pos: 34.5,50.5
+ pos: -41.5,-30.5
parent: 2
- - uid: 4623
+ - uid: 6835
components:
- type: Transform
- pos: 3.5,77.5
+ pos: -44.5,-15.5
parent: 2
- - uid: 4624
+ - uid: 6836
components:
- type: Transform
- pos: -65.5,27.5
+ pos: -68.5,-24.5
parent: 2
- - uid: 4625
+ - uid: 6837
components:
- type: Transform
- pos: -2.5,29.5
+ pos: 35.5,-63.5
parent: 2
- - uid: 4626
+ - uid: 6838
components:
- type: Transform
- pos: -31.5,54.5
+ pos: -122.5,27.5
parent: 2
- - uid: 4627
+ - uid: 6839
components:
- type: Transform
- pos: -28.5,-29.5
+ pos: -48.5,-32.5
parent: 2
- - uid: 4628
+ - uid: 6840
components:
- type: Transform
- pos: -27.5,12.5
+ pos: -1.5,-19.5
parent: 2
- - uid: 4629
+ - uid: 6841
components:
- type: Transform
- pos: -34.5,19.5
+ pos: -15.5,-19.5
parent: 2
- - uid: 4630
+ - uid: 6842
components:
- type: Transform
- pos: 14.5,-19.5
+ pos: -20.5,-71.5
parent: 2
- - uid: 4631
+ - uid: 6843
components:
- type: Transform
- pos: -27.5,9.5
+ pos: -45.5,7.5
parent: 2
- - uid: 4632
+ - uid: 6844
components:
- type: Transform
- pos: -36.5,20.5
+ pos: 36.5,11.5
parent: 2
- - uid: 4633
+ - uid: 6845
components:
- type: Transform
- pos: -5.5,37.5
+ pos: -27.5,-25.5
parent: 2
- - uid: 4634
+ - uid: 6846
components:
- type: Transform
- pos: -9.5,53.5
+ pos: -46.5,34.5
parent: 2
- - uid: 4635
+ - uid: 6847
components:
- type: Transform
- pos: 30.5,-60.5
+ pos: 43.5,-61.5
parent: 2
- - uid: 4636
+ - uid: 6848
components:
- type: Transform
- pos: 40.5,-68.5
+ pos: -24.5,-16.5
parent: 2
- - uid: 4637
+ - uid: 6849
components:
- type: Transform
- pos: -18.5,58.5
+ pos: -48.5,-24.5
parent: 2
- - uid: 4638
+ - uid: 6850
components:
- type: Transform
- pos: 13.5,-19.5
+ pos: -47.5,39.5
parent: 2
- - uid: 4639
+ - uid: 6851
components:
- type: Transform
- pos: -26.5,14.5
+ pos: 31.5,-69.5
parent: 2
- - uid: 4640
+ - uid: 6852
components:
- type: Transform
- pos: -59.5,35.5
+ pos: -17.5,-77.5
parent: 2
- - uid: 4641
+ - uid: 6853
components:
- type: Transform
- pos: 31.5,27.5
+ pos: 66.5,-21.5
parent: 2
- - uid: 4642
+ - uid: 6854
components:
- type: Transform
- pos: 35.5,50.5
+ pos: 22.5,1.5
parent: 2
- - uid: 4643
+ - uid: 6855
components:
- type: Transform
- pos: 35.5,29.5
+ pos: -0.5,-54.5
parent: 2
- - uid: 4644
+ - uid: 6856
components:
- type: Transform
- pos: 35.5,30.5
+ pos: -0.5,-53.5
parent: 2
- - uid: 4645
+ - uid: 6857
components:
- type: Transform
- pos: 43.5,29.5
+ pos: -0.5,-52.5
parent: 2
- - uid: 4646
+ - uid: 6858
components:
- type: Transform
- pos: -36.5,-26.5
+ pos: -0.5,-51.5
parent: 2
- - uid: 4647
+ - uid: 6859
components:
- type: Transform
- pos: -43.5,-27.5
+ pos: -40.5,-63.5
parent: 2
- - uid: 4648
+ - uid: 6860
components:
- type: Transform
- pos: -34.5,-30.5
+ pos: -20.5,28.5
parent: 2
- - uid: 4649
+ - uid: 6861
components:
- type: Transform
- pos: -25.5,33.5
+ pos: -16.5,-71.5
parent: 2
- - uid: 4650
+ - uid: 6862
components:
- type: Transform
- pos: -27.5,42.5
+ pos: -22.5,-74.5
parent: 2
- - uid: 4651
+ - uid: 6863
components:
- type: Transform
- pos: -64.5,57.5
+ pos: -30.5,9.5
parent: 2
- - uid: 4652
+ - uid: 6864
components:
- type: Transform
- pos: -41.5,50.5
+ pos: 25.5,18.5
parent: 2
- - uid: 4653
+ - uid: 6865
components:
- type: Transform
- pos: -44.5,38.5
+ pos: -70.5,9.5
parent: 2
- - uid: 4654
+ - uid: 6866
components:
- type: Transform
- pos: -12.5,-69.5
+ pos: -61.5,35.5
parent: 2
- - uid: 4655
+ - uid: 6867
components:
- type: Transform
- pos: -19.5,-71.5
+ pos: 13.5,38.5
parent: 2
- - uid: 4656
+ - uid: 6868
components:
- type: Transform
- pos: -30.5,8.5
+ pos: 21.5,-14.5
parent: 2
- - uid: 4657
+ - uid: 6869
components:
- type: Transform
- pos: -30.5,23.5
+ pos: 33.5,-3.5
parent: 2
- - uid: 4658
+ - uid: 6870
components:
- type: Transform
- pos: -45.5,-27.5
+ pos: 9.5,70.5
parent: 2
- - uid: 4659
+ - uid: 6871
components:
- type: Transform
- pos: -23.5,-2.5
+ pos: 65.5,-21.5
parent: 2
- - uid: 4660
+ - uid: 6872
components:
- type: Transform
- pos: -58.5,-8.5
+ pos: -23.5,-9.5
parent: 2
- - uid: 4661
+ - uid: 6873
components:
- type: Transform
- pos: -66.5,55.5
+ pos: 32.5,-0.5
parent: 2
- - uid: 4662
+ - uid: 6874
components:
- type: Transform
- pos: -12.5,49.5
+ pos: -7.5,23.5
parent: 2
- - uid: 4663
+ - uid: 6875
components:
- type: Transform
- pos: -29.5,-19.5
+ pos: -12.5,68.5
parent: 2
- - uid: 4664
+ - uid: 6876
components:
- type: Transform
- pos: -25.5,14.5
+ pos: -18.5,-67.5
parent: 2
- - uid: 4665
+ - uid: 6877
components:
- type: Transform
- pos: 17.5,-19.5
+ pos: 37.5,-51.5
parent: 2
- - uid: 4666
+ - uid: 6878
components:
- type: Transform
- pos: -29.5,-7.5
+ pos: -71.5,8.5
parent: 2
- - uid: 4667
+ - uid: 6879
components:
- type: Transform
- pos: -4.5,-65.5
+ pos: 25.5,46.5
parent: 2
- - uid: 4668
+ - uid: 6880
components:
- type: Transform
- pos: -16.5,-65.5
+ pos: -57.5,-11.5
parent: 2
- - uid: 4669
+ - uid: 6881
components:
- type: Transform
- pos: 36.5,-69.5
+ pos: 33.5,-42.5
parent: 2
- - uid: 4670
+ - uid: 6882
components:
- type: Transform
- pos: -36.5,19.5
+ pos: 26.5,60.5
parent: 2
- - uid: 4671
+ - uid: 6883
components:
- type: Transform
- pos: -27.5,5.5
+ pos: -54.5,-11.5
parent: 2
- - uid: 4672
+ - uid: 6884
components:
- type: Transform
- pos: -34.5,5.5
+ pos: -25.5,17.5
parent: 2
- - uid: 4673
+ - uid: 6885
components:
- type: Transform
- pos: -38.5,-30.5
+ pos: -29.5,35.5
parent: 2
- - uid: 4674
+ - uid: 6886
components:
- type: Transform
- pos: -43.5,-17.5
+ pos: -29.5,36.5
parent: 2
- - uid: 4675
+ - uid: 6887
components:
- type: Transform
- pos: -48.5,49.5
+ pos: -29.5,37.5
parent: 2
- - uid: 4676
+ - uid: 6888
components:
- type: Transform
- pos: -27.5,10.5
+ pos: -30.5,29.5
parent: 2
- - uid: 4677
+ - uid: 6889
components:
- type: Transform
- pos: -6.5,-59.5
+ pos: 78.5,-43.5
parent: 2
- - uid: 4678
+ - uid: 6890
components:
- type: Transform
- pos: -41.5,47.5
+ pos: -62.5,-46.5
parent: 2
- - uid: 4679
+ - uid: 6891
components:
- type: Transform
- pos: -25.5,25.5
+ pos: 31.5,8.5
parent: 2
- - uid: 4680
+ - uid: 6892
components:
- type: Transform
- pos: -28.5,25.5
+ pos: 31.5,9.5
parent: 2
- - uid: 4681
+ - uid: 6893
components:
- type: Transform
- pos: -35.5,-18.5
+ pos: 33.5,13.5
parent: 2
- - uid: 4682
+ - uid: 6894
components:
- type: Transform
- pos: -27.5,-7.5
+ pos: 32.5,13.5
parent: 2
- - uid: 4683
+ - uid: 6895
components:
- type: Transform
- pos: -28.5,14.5
+ pos: 29.5,13.5
parent: 2
- - uid: 4684
+ - uid: 6896
components:
- type: Transform
- pos: -18.5,-5.5
+ pos: 30.5,13.5
parent: 2
- - uid: 4685
+ - uid: 6897
components:
- type: Transform
- pos: 12.5,-44.5
+ pos: 31.5,10.5
parent: 2
- - uid: 4686
+ - uid: 6898
components:
- type: Transform
- pos: 28.5,-34.5
+ pos: 31.5,11.5
parent: 2
- - uid: 4687
+ - uid: 6899
components:
- type: Transform
- pos: -29.5,87.5
+ pos: 31.5,12.5
parent: 2
- - uid: 4688
+ - uid: 6900
components:
- type: Transform
- pos: -28.5,-6.5
+ pos: 31.5,13.5
parent: 2
- - uid: 4689
+ - uid: 6901
components:
- type: Transform
- pos: -27.5,50.5
+ pos: 21.5,12.5
parent: 2
- - uid: 4690
+ - uid: 6902
components:
- type: Transform
- pos: -39.5,-19.5
+ pos: 11.5,-30.5
parent: 2
- - uid: 4691
+ - uid: 6903
components:
- type: Transform
- pos: -42.5,34.5
+ pos: 12.5,-31.5
parent: 2
- - uid: 4692
+ - uid: 6904
components:
- type: Transform
- pos: -48.5,32.5
+ pos: 12.5,-30.5
parent: 2
- - uid: 4693
+ - uid: 6905
components:
- type: Transform
- pos: -3.5,53.5
+ pos: 12.5,-29.5
parent: 2
- - uid: 4694
+ - uid: 6906
components:
- type: Transform
- pos: -48.5,31.5
+ pos: 12.5,-28.5
parent: 2
- - uid: 4695
+ - uid: 6907
components:
- type: Transform
- pos: -58.5,23.5
+ pos: 12.5,-27.5
parent: 2
- - uid: 4696
+ - uid: 6908
components:
- type: Transform
- pos: -48.5,33.5
+ pos: 13.5,-26.5
parent: 2
- - uid: 4697
+ - uid: 6909
components:
- type: Transform
- pos: -18.5,62.5
+ pos: 12.5,-26.5
parent: 2
- - uid: 4698
+ - uid: 6910
components:
- type: Transform
- pos: -50.5,11.5
+ pos: -63.5,32.5
parent: 2
- - uid: 4699
+ - uid: 6911
components:
- type: Transform
- pos: -48.5,30.5
+ pos: -46.5,4.5
parent: 2
- - uid: 4700
+ - uid: 6912
components:
- type: Transform
- pos: -46.5,30.5
+ pos: -64.5,17.5
parent: 2
- - uid: 4701
+ - uid: 6913
components:
- type: Transform
- pos: -63.5,35.5
+ pos: -25.5,21.5
parent: 2
- - uid: 4702
+ - uid: 6914
components:
- type: Transform
- pos: -45.5,13.5
+ pos: 30.5,-3.5
parent: 2
- - uid: 4703
+ - uid: 6915
components:
- type: Transform
- pos: -59.5,7.5
+ pos: 40.5,-37.5
parent: 2
- - uid: 4704
+ - uid: 6916
components:
- type: Transform
- pos: -64.5,8.5
+ pos: -26.5,84.5
parent: 2
- - uid: 4705
+ - uid: 6917
components:
- type: Transform
- pos: -62.5,7.5
+ pos: -14.5,77.5
parent: 2
- - uid: 4706
+ - uid: 6918
components:
- type: Transform
- pos: -65.5,-26.5
+ pos: -12.5,84.5
parent: 2
- - uid: 4707
+ - uid: 6919
components:
- type: Transform
- pos: -45.5,14.5
+ pos: -13.5,84.5
parent: 2
- - uid: 4708
+ - uid: 6920
components:
- type: Transform
- pos: -63.5,55.5
+ pos: -14.5,84.5
parent: 2
- - uid: 4709
+ - uid: 6921
components:
- type: Transform
- pos: -33.5,-0.5
+ pos: -27.5,84.5
parent: 2
- - uid: 4710
+ - uid: 6922
components:
- type: Transform
- pos: -68.5,7.5
+ pos: -28.5,84.5
parent: 2
- - uid: 4711
+ - uid: 6923
components:
- type: Transform
- pos: -50.5,10.5
+ pos: -30.5,84.5
parent: 2
- - uid: 4712
+ - uid: 6924
components:
- type: Transform
- pos: -77.5,10.5
+ pos: -31.5,84.5
parent: 2
- - uid: 4713
+ - uid: 6925
components:
- type: Transform
- pos: -65.5,7.5
+ pos: -32.5,84.5
parent: 2
- - uid: 4714
+ - uid: 6926
components:
- type: Transform
- pos: -50.5,16.5
+ pos: -30.5,77.5
parent: 2
- - uid: 4715
+ - uid: 6927
components:
- type: Transform
- pos: -65.5,21.5
+ pos: -31.5,77.5
parent: 2
- - uid: 4716
+ - uid: 6928
components:
- type: Transform
- pos: -63.5,34.5
+ pos: 6.5,-61.5
parent: 2
- - uid: 4717
+ - uid: 6929
components:
- type: Transform
- pos: -48.5,34.5
+ pos: -32.5,77.5
parent: 2
- - uid: 4718
+ - uid: 6930
components:
- type: Transform
- pos: -63.5,27.5
+ pos: -21.5,-50.5
parent: 2
- - uid: 4719
+ - uid: 6931
components:
- type: Transform
- pos: -47.5,41.5
+ pos: -27.5,77.5
parent: 2
- - uid: 4720
+ - uid: 6932
components:
- type: Transform
- pos: -64.5,36.5
+ pos: -26.5,77.5
parent: 2
- - uid: 4721
+ - uid: 6933
components:
- type: Transform
- pos: -36.5,-14.5
+ pos: 5.5,-59.5
parent: 2
- - uid: 4722
+ - uid: 6934
components:
- type: Transform
- pos: -33.5,-25.5
+ pos: 4.5,-61.5
parent: 2
- - uid: 4723
+ - uid: 6935
components:
- type: Transform
- pos: -29.5,75.5
+ pos: 4.5,-60.5
parent: 2
- - uid: 4724
+ - uid: 6936
components:
- type: Transform
- pos: -9.5,57.5
+ pos: 4.5,-59.5
parent: 2
- - uid: 4725
+ - uid: 6937
components:
- type: Transform
- pos: 37.5,-28.5
+ pos: 4.5,-58.5
parent: 2
- - uid: 4726
+ - uid: 6938
components:
- type: Transform
- pos: -8.5,-59.5
+ pos: 6.5,-59.5
parent: 2
- - uid: 4727
+ - uid: 6939
components:
- type: Transform
- pos: -10.5,84.5
+ pos: 6.5,-58.5
parent: 2
- - uid: 4728
+ - uid: 6940
components:
- type: Transform
- pos: -42.5,42.5
+ pos: 7.5,-58.5
parent: 2
- - uid: 4729
+ - uid: 6941
components:
- type: Transform
- pos: -25.5,-2.5
+ pos: 7.5,-57.5
parent: 2
- - uid: 4730
+ - uid: 6942
components:
- type: Transform
- pos: -66.5,9.5
+ pos: 7.5,-56.5
parent: 2
- - uid: 4731
+ - uid: 6943
components:
- type: Transform
- pos: -52.5,26.5
+ pos: 5.5,-70.5
parent: 2
- - uid: 4732
+ - uid: 6944
components:
- type: Transform
- pos: -4.5,-14.5
+ pos: 5.5,-67.5
parent: 2
- - uid: 4733
+ - uid: 6945
components:
- type: Transform
- pos: -40.5,-19.5
+ pos: 5.5,-61.5
parent: 2
- - uid: 4734
+ - uid: 6946
components:
- type: Transform
- pos: -22.5,-16.5
+ pos: 6.5,-62.5
parent: 2
- - uid: 4735
+ - uid: 6947
components:
- type: Transform
- pos: -68.5,-30.5
+ pos: 6.5,-65.5
parent: 2
- - uid: 4736
+ - uid: 6948
components:
- type: Transform
- pos: -52.5,2.5
+ pos: 6.5,-66.5
parent: 2
- - uid: 4737
+ - uid: 6949
components:
- type: Transform
- pos: -59.5,41.5
+ pos: 6.5,-67.5
parent: 2
- - uid: 4738
+ - uid: 6950
components:
- type: Transform
- pos: -62.5,55.5
+ pos: 6.5,-68.5
parent: 2
- - uid: 4739
+ - uid: 6951
components:
- type: Transform
- pos: -71.5,10.5
+ pos: 6.5,-69.5
parent: 2
- - uid: 4740
+ - uid: 6952
components:
- type: Transform
- pos: -53.5,26.5
+ pos: 6.5,-70.5
parent: 2
- - uid: 4741
+ - uid: 6953
components:
- type: Transform
- pos: -6.5,-14.5
+ pos: 6.5,-71.5
parent: 2
- - uid: 4742
+ - uid: 6954
components:
- type: Transform
- pos: 33.5,-49.5
+ pos: -5.5,-85.5
parent: 2
- - uid: 4743
+ - uid: 6955
components:
- type: Transform
- pos: -27.5,20.5
+ pos: -5.5,-84.5
parent: 2
- - uid: 4744
+ - uid: 6956
components:
- type: Transform
- pos: -42.5,36.5
+ pos: -5.5,-83.5
parent: 2
- - uid: 4745
+ - uid: 6957
components:
- type: Transform
- pos: -41.5,-19.5
+ pos: -5.5,-82.5
parent: 2
- - uid: 4746
+ - uid: 6958
components:
- type: Transform
- pos: -18.5,-15.5
+ pos: -5.5,-81.5
parent: 2
- - uid: 4747
+ - uid: 6959
components:
- type: Transform
- pos: -18.5,-16.5
+ pos: -3.5,-85.5
parent: 2
- - uid: 4748
+ - uid: 6960
components:
- type: Transform
- pos: -71.5,9.5
+ pos: -3.5,-84.5
parent: 2
- - uid: 4749
+ - uid: 6961
components:
- type: Transform
- pos: -7.5,-59.5
+ pos: -3.5,-83.5
parent: 2
- - uid: 4750
+ - uid: 6962
components:
- type: Transform
- pos: -16.5,-80.5
+ pos: -3.5,-82.5
parent: 2
- - uid: 4751
+ - uid: 6963
components:
- type: Transform
- pos: -29.5,73.5
+ pos: -3.5,-81.5
parent: 2
- - uid: 4752
+ - uid: 6964
components:
- type: Transform
- pos: -35.5,32.5
+ pos: 2.5,-85.5
parent: 2
- - uid: 4753
+ - uid: 6965
components:
- type: Transform
- pos: -10.5,31.5
+ pos: 2.5,-84.5
parent: 2
- - uid: 4754
+ - uid: 6966
components:
- type: Transform
- pos: -37.5,-29.5
+ pos: 2.5,-83.5
parent: 2
- - uid: 4755
+ - uid: 6967
components:
- type: Transform
- pos: -44.5,37.5
+ pos: 2.5,-82.5
parent: 2
- - uid: 4756
+ - uid: 6968
components:
- type: Transform
- pos: -10.5,57.5
+ pos: 2.5,-81.5
parent: 2
- - uid: 4757
+ - uid: 6969
components:
- type: Transform
- pos: -4.5,-60.5
+ pos: 4.5,-85.5
parent: 2
- - uid: 4758
+ - uid: 6970
components:
- type: Transform
- pos: -11.5,53.5
+ pos: 4.5,-84.5
parent: 2
- - uid: 4759
+ - uid: 6971
components:
- type: Transform
- pos: 20.5,19.5
+ pos: 4.5,-83.5
parent: 2
- - uid: 4760
+ - uid: 6972
components:
- type: Transform
- pos: 20.5,29.5
+ pos: -116.5,18.5
parent: 2
- - uid: 4761
+ - uid: 6973
components:
- type: Transform
- pos: -4.5,62.5
+ pos: 76.5,9.5
parent: 2
- - uid: 4762
+ - uid: 6974
components:
- type: Transform
- pos: -63.5,-40.5
+ pos: 79.5,9.5
parent: 2
- - uid: 4763
+ - uid: 6975
components:
- type: Transform
- pos: 23.5,-20.5
+ pos: 81.5,9.5
parent: 2
- - uid: 4764
+ - uid: 6976
components:
- type: Transform
- pos: 29.5,-10.5
+ pos: -20.5,-50.5
parent: 2
- - uid: 4765
+ - uid: 6977
components:
- type: Transform
- pos: -51.5,48.5
+ pos: 5.5,-77.5
parent: 2
- - uid: 4766
+ - uid: 6978
components:
- type: Transform
- pos: 30.5,-10.5
+ pos: 5.5,-76.5
parent: 2
- - uid: 4767
+ - uid: 6979
components:
- type: Transform
- pos: -59.5,-19.5
+ pos: 8.5,-76.5
parent: 2
- - uid: 4768
+ - uid: 6980
components:
- type: Transform
- pos: 45.5,-0.5
+ pos: -19.5,-50.5
parent: 2
- - uid: 4769
+ - uid: 6981
components:
- type: Transform
- pos: -49.5,45.5
+ pos: -18.5,-50.5
parent: 2
- - uid: 4770
+ - uid: 6982
components:
- type: Transform
- pos: -51.5,45.5
+ pos: -24.5,-51.5
parent: 2
- - uid: 4771
+ - uid: 6983
components:
- type: Transform
- pos: -39.5,-65.5
+ pos: 9.5,-76.5
parent: 2
- - uid: 4772
+ - uid: 6984
components:
- type: Transform
- pos: 62.5,-26.5
+ pos: -24.5,-50.5
parent: 2
- - uid: 4773
+ - uid: 6985
components:
- type: Transform
- pos: 62.5,-28.5
+ pos: 5.5,-78.5
parent: 2
- - uid: 4774
+ - uid: 6986
components:
- type: Transform
- pos: 62.5,-23.5
+ pos: 5.5,-79.5
parent: 2
- - uid: 4775
+ - uid: 6987
components:
- type: Transform
- pos: 45.5,3.5
+ pos: 5.5,-80.5
parent: 2
- - uid: 4776
+ - uid: 6988
components:
- type: Transform
- pos: 26.5,-14.5
+ pos: 4.5,-80.5
parent: 2
- - uid: 4777
+ - uid: 6989
components:
- type: Transform
- pos: 62.5,-25.5
+ pos: 4.5,-82.5
parent: 2
- - uid: 4778
+ - uid: 6990
components:
- type: Transform
- pos: 17.5,35.5
+ pos: 4.5,-81.5
parent: 2
- - uid: 4779
+ - uid: 6991
components:
- type: Transform
- pos: 76.5,-21.5
+ pos: -13.5,-58.5
parent: 2
- - uid: 4780
+ - uid: 6992
components:
- type: Transform
- pos: 41.5,-49.5
+ pos: -13.5,-56.5
parent: 2
- - uid: 4781
+ - uid: 6993
components:
- type: Transform
- pos: 43.5,-36.5
+ pos: -14.5,-57.5
parent: 2
- - uid: 4782
+ - uid: 6994
components:
- type: Transform
- pos: 40.5,-7.5
+ pos: -20.5,-57.5
parent: 2
- - uid: 4783
+ - uid: 6995
components:
- type: Transform
- pos: -39.5,-64.5
+ pos: -16.5,-57.5
parent: 2
- - uid: 4784
+ - uid: 6996
components:
- type: Transform
- pos: -50.5,45.5
+ pos: -17.5,-57.5
parent: 2
- - uid: 4785
+ - uid: 6997
components:
- type: Transform
- pos: -52.5,45.5
+ pos: -18.5,-57.5
parent: 2
- - uid: 4786
+ - uid: 6998
components:
- type: Transform
- pos: -45.5,55.5
+ pos: 6.5,-73.5
parent: 2
- - uid: 4787
+ - uid: 6999
components:
- type: Transform
- pos: -56.5,45.5
+ pos: 6.5,-72.5
parent: 2
- - uid: 4788
+ - uid: 7000
components:
- type: Transform
- pos: -45.5,53.5
+ pos: 6.5,-74.5
parent: 2
- - uid: 4789
+ - uid: 7001
components:
- type: Transform
- pos: 31.5,-11.5
+ pos: 7.5,-76.5
parent: 2
- - uid: 4790
+ - uid: 7002
components:
- type: Transform
- pos: -29.5,88.5
+ pos: 6.5,-75.5
parent: 2
- - uid: 4791
+ - uid: 7003
components:
- type: Transform
- pos: 31.5,-19.5
+ pos: 8.5,-74.5
parent: 2
- - uid: 4792
+ - uid: 7004
components:
- type: Transform
- pos: 22.5,-19.5
+ pos: 9.5,-74.5
parent: 2
- - uid: 4793
+ - uid: 7005
components:
- type: Transform
- pos: 21.5,-19.5
+ pos: 7.5,-74.5
parent: 2
- - uid: 4794
+ - uid: 7006
components:
- type: Transform
- pos: 30.5,-19.5
+ pos: 3.5,-71.5
parent: 2
- - uid: 4795
+ - uid: 7007
components:
- type: Transform
- pos: 41.5,2.5
+ pos: 6.5,-76.5
parent: 2
- - uid: 4796
+ - uid: 7008
components:
- type: Transform
- pos: -64.5,40.5
+ pos: 3.5,-69.5
parent: 2
- - uid: 4797
+ - uid: 7009
components:
- type: Transform
- pos: -64.5,-40.5
+ pos: 3.5,-70.5
parent: 2
- - uid: 4798
+ - uid: 7010
components:
- type: Transform
- pos: -60.5,-35.5
+ pos: -16.5,-58.5
parent: 2
- - uid: 4799
+ - uid: 7011
components:
- type: Transform
- pos: -59.5,-35.5
+ pos: -22.5,-57.5
parent: 2
- - uid: 4800
+ - uid: 7012
components:
- type: Transform
- pos: 39.5,-20.5
+ pos: -16.5,-54.5
parent: 2
- - uid: 4801
+ - uid: 7013
components:
- type: Transform
- pos: 0.5,30.5
+ pos: -16.5,-56.5
parent: 2
- - uid: 4802
+ - uid: 7014
components:
- type: Transform
- pos: 29.5,-19.5
+ pos: -19.5,-57.5
parent: 2
- - uid: 4803
+ - uid: 7015
components:
- type: Transform
- pos: 20.5,-19.5
+ pos: -51.5,54.5
parent: 2
- - uid: 4804
+ - uid: 7016
components:
- type: Transform
- pos: -60.5,40.5
+ pos: -21.5,-57.5
parent: 2
- - uid: 4805
+ - uid: 7017
components:
- type: Transform
- pos: -53.5,29.5
+ pos: -23.5,-57.5
parent: 2
- - uid: 4806
+ - uid: 7018
components:
- type: Transform
- pos: -65.5,34.5
+ pos: -49.5,-40.5
parent: 2
- - uid: 4807
+ - uid: 7019
components:
- type: Transform
- pos: -65.5,35.5
+ pos: -50.5,-40.5
parent: 2
- - uid: 4808
+ - uid: 7020
components:
- type: Transform
- pos: -65.5,32.5
+ pos: -49.5,-41.5
parent: 2
- - uid: 4809
+ - uid: 7021
components:
- type: Transform
- pos: -66.5,7.5
+ pos: -51.5,-40.5
parent: 2
- - uid: 4810
+ - uid: 7022
components:
- type: Transform
- pos: -50.5,32.5
+ pos: -52.5,-40.5
parent: 2
- - uid: 4811
+ - uid: 7023
components:
- type: Transform
- pos: -50.5,34.5
+ pos: -44.5,-36.5
parent: 2
- - uid: 4812
+ - uid: 7024
components:
- type: Transform
- pos: -48.5,29.5
+ pos: -43.5,-36.5
parent: 2
- - uid: 4813
+ - uid: 7025
components:
- type: Transform
- pos: -33.5,14.5
+ pos: -52.5,-39.5
parent: 2
- - uid: 4814
+ - uid: 7026
components:
- type: Transform
- pos: -22.5,13.5
+ pos: -53.5,-39.5
parent: 2
- - uid: 4815
+ - uid: 7027
components:
- type: Transform
- pos: -25.5,34.5
+ pos: -54.5,-39.5
parent: 2
- - uid: 4816
+ - uid: 7028
components:
- type: Transform
- pos: -54.5,41.5
+ pos: -50.5,-39.5
parent: 2
- - uid: 4817
+ - uid: 7029
components:
- type: Transform
- pos: -46.5,32.5
+ pos: -54.5,-35.5
parent: 2
- - uid: 4818
+ - uid: 7030
components:
- type: Transform
- pos: -6.5,44.5
+ pos: -54.5,-34.5
parent: 2
- - uid: 4819
+ - uid: 7031
components:
- type: Transform
- pos: -49.5,32.5
+ pos: -54.5,-33.5
parent: 2
- - uid: 4820
+ - uid: 7032
components:
- type: Transform
- pos: -58.5,26.5
+ pos: -3.5,-45.5
parent: 2
- - uid: 4821
+ - uid: 7033
components:
- type: Transform
- pos: -54.5,40.5
+ pos: -3.5,-46.5
parent: 2
- - uid: 4822
+ - uid: 7034
components:
- type: Transform
- pos: -61.5,40.5
+ pos: -3.5,-47.5
parent: 2
- - uid: 4823
+ - uid: 7035
components:
- type: Transform
- pos: -59.5,24.5
+ pos: -3.5,-48.5
parent: 2
- - uid: 4824
+ - uid: 7036
components:
- type: Transform
- pos: -58.5,60.5
+ pos: -3.5,-49.5
parent: 2
- - uid: 4825
+ - uid: 7037
components:
- type: Transform
- pos: -47.5,32.5
+ pos: -4.5,-49.5
parent: 2
- - uid: 4826
+ - uid: 7038
components:
- type: Transform
- pos: -50.5,33.5
+ pos: -5.5,-49.5
parent: 2
- - uid: 4827
+ - uid: 7039
components:
- type: Transform
- pos: -22.5,41.5
+ pos: -6.5,-49.5
parent: 2
- - uid: 4828
+ - uid: 7040
components:
- type: Transform
- pos: -51.5,49.5
+ pos: -7.5,-49.5
parent: 2
- - uid: 4829
+ - uid: 7041
components:
- type: Transform
- pos: -65.5,26.5
+ pos: -8.5,-49.5
parent: 2
- - uid: 4830
+ - uid: 7042
components:
- type: Transform
- pos: -45.5,-15.5
+ pos: -9.5,-49.5
parent: 2
- - uid: 4831
+ - uid: 7043
components:
- type: Transform
- pos: 23.5,-49.5
+ pos: -9.5,-48.5
parent: 2
- - uid: 4832
+ - uid: 7044
components:
- type: Transform
- pos: -64.5,14.5
+ pos: -9.5,-47.5
parent: 2
- - uid: 4833
+ - uid: 7045
components:
- type: Transform
- pos: -47.5,4.5
+ pos: -48.5,-40.5
parent: 2
- - uid: 4834
+ - uid: 7046
components:
- type: Transform
- pos: 20.5,-45.5
+ pos: -10.5,-49.5
parent: 2
- - uid: 4835
+ - uid: 7047
components:
- type: Transform
- pos: -45.5,17.5
+ pos: -47.5,-40.5
parent: 2
- - uid: 4836
+ - uid: 7048
components:
- type: Transform
- pos: -38.5,34.5
+ pos: -46.5,-40.5
parent: 2
- - uid: 4837
+ - uid: 7049
components:
- type: Transform
- pos: -39.5,34.5
+ pos: -45.5,-40.5
parent: 2
- - uid: 4838
+ - uid: 7050
components:
- type: Transform
- pos: -33.5,11.5
+ pos: -44.5,-40.5
parent: 2
- - uid: 4839
+ - uid: 7051
components:
- type: Transform
- pos: -42.5,-19.5
+ pos: -43.5,-40.5
parent: 2
- - uid: 4840
+ - uid: 7052
components:
- type: Transform
- pos: -43.5,-19.5
+ pos: -42.5,-40.5
parent: 2
- - uid: 4841
+ - uid: 7053
components:
- type: Transform
- pos: -43.5,-18.5
+ pos: -9.5,-50.5
parent: 2
- - uid: 4842
+ - uid: 7054
components:
- type: Transform
- pos: -47.5,34.5
+ pos: -9.5,-51.5
parent: 2
- - uid: 4843
+ - uid: 7055
components:
- type: Transform
- pos: -57.5,56.5
+ pos: -4.5,-50.5
parent: 2
- - uid: 4844
+ - uid: 7056
components:
- type: Transform
- pos: -56.5,56.5
+ pos: -4.5,-51.5
parent: 2
- - uid: 4845
+ - uid: 7057
components:
- type: Transform
- pos: -23.5,-17.5
+ pos: -42.5,-41.5
parent: 2
- - uid: 4846
+ - uid: 7058
components:
- type: Transform
- pos: -9.5,27.5
+ pos: -42.5,-42.5
parent: 2
- - uid: 4847
+ - uid: 7059
components:
- type: Transform
- pos: 27.5,-57.5
+ pos: -42.5,-43.5
parent: 2
- - uid: 4848
+ - uid: 7060
components:
- type: Transform
- pos: 39.5,-67.5
+ pos: -7.5,-51.5
parent: 2
- - uid: 4849
+ - uid: 7061
components:
- type: Transform
- pos: 31.5,60.5
+ pos: -42.5,-44.5
parent: 2
- - uid: 4850
+ - uid: 7062
components:
- type: Transform
- pos: 62.5,-21.5
+ pos: -42.5,-45.5
parent: 2
- - uid: 4851
+ - uid: 7063
components:
- type: Transform
- pos: 40.5,-39.5
+ pos: -5.5,-46.5
parent: 2
- - uid: 4852
+ - uid: 7064
components:
- type: Transform
- pos: -51.5,-8.5
+ pos: -33.5,-51.5
parent: 2
- - uid: 4853
+ - uid: 7065
components:
- type: Transform
- pos: 74.5,-15.5
+ pos: -33.5,-50.5
parent: 2
- - uid: 4854
+ - uid: 7066
components:
- type: Transform
- pos: -62.5,-40.5
+ pos: -33.5,-49.5
parent: 2
- - uid: 4855
+ - uid: 7067
components:
- type: Transform
- pos: -42.5,35.5
+ pos: -4.5,-36.5
parent: 2
- - uid: 4856
+ - uid: 7068
components:
- type: Transform
- pos: -62.5,-41.5
+ pos: -4.5,-37.5
parent: 2
- - uid: 4857
+ - uid: 7069
components:
- type: Transform
- pos: -6.5,46.5
+ pos: -4.5,-38.5
parent: 2
- - uid: 4858
+ - uid: 7070
components:
- type: Transform
- pos: 28.5,-22.5
+ pos: -4.5,-39.5
parent: 2
- - uid: 4859
+ - uid: 7071
components:
- type: Transform
- pos: 17.5,-52.5
+ pos: -4.5,-40.5
parent: 2
- - uid: 4860
+ - uid: 7072
components:
- type: Transform
- pos: -58.5,56.5
+ pos: -4.5,-41.5
parent: 2
- - uid: 4861
+ - uid: 7073
components:
- type: Transform
- pos: -72.5,5.5
+ pos: -4.5,-42.5
parent: 2
- - uid: 4862
+ - uid: 7074
components:
- type: Transform
- pos: -45.5,22.5
+ pos: -5.5,-42.5
parent: 2
- - uid: 4863
+ - uid: 7075
components:
- type: Transform
- pos: -62.5,14.5
+ pos: -6.5,-42.5
parent: 2
- - uid: 4864
+ - uid: 7076
components:
- type: Transform
- pos: -46.5,-15.5
+ pos: -7.5,-42.5
parent: 2
- - uid: 4865
+ - uid: 7077
components:
- type: Transform
- pos: -70.5,-25.5
+ pos: -8.5,-42.5
parent: 2
- - uid: 4866
+ - uid: 7078
components:
- type: Transform
- pos: -29.5,-31.5
+ pos: -9.5,-42.5
parent: 2
- - uid: 4867
+ - uid: 7079
components:
- type: Transform
- pos: -49.5,-32.5
+ pos: -9.5,-38.5
parent: 2
- - uid: 4868
+ - uid: 7080
components:
- type: Transform
- pos: -32.5,-44.5
+ pos: -8.5,-38.5
parent: 2
- - uid: 4869
+ - uid: 7081
components:
- type: Transform
- pos: 17.5,-34.5
+ pos: -7.5,-38.5
parent: 2
- - uid: 4870
+ - uid: 7082
components:
- type: Transform
- pos: 17.5,-37.5
+ pos: -6.5,-38.5
parent: 2
- - uid: 4871
+ - uid: 7083
components:
- type: Transform
- pos: 27.5,-38.5
+ pos: -5.5,-38.5
parent: 2
- - uid: 4872
+ - uid: 7084
components:
- type: Transform
- pos: -35.5,-52.5
+ pos: -9.5,-40.5
parent: 2
- - uid: 4873
+ - uid: 7085
components:
- type: Transform
- pos: 9.5,-24.5
+ pos: -8.5,-40.5
parent: 2
- - uid: 4874
+ - uid: 7086
components:
- type: Transform
- pos: -12.5,-33.5
+ pos: -7.5,-40.5
parent: 2
- - uid: 4875
+ - uid: 7087
components:
- type: Transform
- pos: 32.5,31.5
+ pos: -6.5,-40.5
parent: 2
- - uid: 4876
+ - uid: 7088
components:
- type: Transform
- pos: -18.5,-28.5
+ pos: -5.5,-40.5
parent: 2
- - uid: 4877
+ - uid: 7089
components:
- type: Transform
- pos: -8.5,-32.5
+ pos: 82.5,9.5
parent: 2
- - uid: 4878
+ - uid: 7090
components:
- type: Transform
- pos: -70.5,-40.5
+ pos: 80.5,9.5
parent: 2
- - uid: 4879
+ - uid: 7091
components:
- type: Transform
- pos: -18.5,-29.5
+ pos: 89.5,9.5
parent: 2
- - uid: 4880
+ - uid: 7092
components:
- type: Transform
- pos: 35.5,31.5
+ pos: 92.5,10.5
parent: 2
- - uid: 4881
+ - uid: 7093
components:
- type: Transform
- pos: 6.5,-31.5
+ pos: 90.5,9.5
parent: 2
- - uid: 4882
+ - uid: 7094
components:
- type: Transform
- pos: 17.5,-29.5
+ pos: -68.5,-43.5
parent: 2
- - uid: 4883
+ - uid: 7095
components:
- type: Transform
- pos: 34.5,31.5
+ pos: 44.5,-16.5
parent: 2
- - uid: 4884
+ - uid: 7096
components:
- type: Transform
- pos: 33.5,31.5
+ pos: -58.5,-40.5
parent: 2
- - uid: 4885
+ - uid: 7097
components:
- type: Transform
- pos: 27.5,-22.5
+ pos: -61.5,-45.5
parent: 2
- - uid: 4886
+ - uid: 7098
components:
- type: Transform
- pos: 9.5,-26.5
+ pos: -58.5,-49.5
parent: 2
- - uid: 4887
+ - uid: 7099
components:
- type: Transform
- pos: 27.5,-50.5
+ pos: 44.5,-13.5
parent: 2
- - uid: 4888
+ - uid: 7100
components:
- type: Transform
- pos: 8.5,-24.5
+ pos: -65.5,-45.5
parent: 2
- - uid: 4889
+ - uid: 7101
components:
- type: Transform
- pos: 5.5,-11.5
+ pos: -62.5,-45.5
parent: 2
- - uid: 4890
+ - uid: 7102
components:
- type: Transform
- pos: 12.5,15.5
+ pos: -66.5,-45.5
parent: 2
- - uid: 4891
+ - uid: 7103
components:
- type: Transform
- pos: -14.5,-30.5
+ pos: -62.5,-44.5
parent: 2
- - uid: 4892
+ - uid: 7104
components:
- type: Transform
- pos: -13.5,-53.5
+ pos: -62.5,-43.5
parent: 2
- - uid: 4893
+ - uid: 7105
components:
- type: Transform
- pos: -74.5,-24.5
+ pos: 46.5,23.5
parent: 2
- - uid: 4894
+ - uid: 7106
components:
- type: Transform
- pos: 11.5,-24.5
+ pos: -62.5,-37.5
parent: 2
- - uid: 4895
+ - uid: 7107
components:
- type: Transform
- pos: -34.5,-52.5
+ pos: 12.5,33.5
parent: 2
- - uid: 4896
+ - uid: 7108
components:
- type: Transform
- pos: 27.5,-37.5
+ pos: -66.5,-4.5
parent: 2
- - uid: 4897
+ - uid: 7109
components:
- type: Transform
- pos: -13.5,-30.5
+ pos: -66.5,-5.5
parent: 2
- - uid: 4898
+ - uid: 7110
components:
- type: Transform
- pos: 17.5,-36.5
+ pos: -66.5,-6.5
parent: 2
- - uid: 4899
+ - uid: 7111
components:
- type: Transform
- pos: 17.5,-39.5
+ pos: -65.5,-6.5
parent: 2
- - uid: 4900
+ - uid: 7112
components:
- type: Transform
- pos: -18.5,-26.5
+ pos: -64.5,-6.5
parent: 2
- - uid: 4901
+ - uid: 7113
components:
- type: Transform
- pos: -9.5,-32.5
+ pos: -63.5,-6.5
parent: 2
- - uid: 4902
+ - uid: 7114
components:
- type: Transform
- pos: -18.5,-27.5
+ pos: -62.5,-6.5
parent: 2
- - uid: 4903
+ - uid: 7115
components:
- type: Transform
- pos: 65.5,6.5
+ pos: -67.5,-6.5
parent: 2
- - uid: 4904
+ - uid: 7116
components:
- type: Transform
- pos: -76.5,-30.5
+ pos: -68.5,-6.5
parent: 2
- - uid: 4905
+ - uid: 7117
components:
- type: Transform
- pos: -74.5,-25.5
+ pos: -69.5,-6.5
parent: 2
- - uid: 4906
+ - uid: 7118
components:
- type: Transform
- pos: -74.5,-30.5
+ pos: -70.5,-6.5
parent: 2
- - uid: 4907
+ - uid: 7119
components:
- type: Transform
- pos: -75.5,-30.5
+ pos: -71.5,-6.5
parent: 2
- - uid: 4908
+ - uid: 7120
components:
- type: Transform
- pos: -8.5,-30.5
+ pos: -72.5,-6.5
parent: 2
- - uid: 4909
+ - uid: 7121
components:
- type: Transform
- pos: 31.5,-47.5
+ pos: -73.5,-6.5
parent: 2
- - uid: 4910
+ - uid: 7122
components:
- type: Transform
- pos: 19.5,-44.5
+ pos: -74.5,-6.5
parent: 2
- - uid: 4911
+ - uid: 7123
components:
- type: Transform
- pos: 29.5,-37.5
+ pos: -75.5,-6.5
parent: 2
- - uid: 4912
+ - uid: 7124
components:
- type: Transform
- pos: -32.5,-47.5
+ pos: -76.5,-6.5
parent: 2
- - uid: 4913
+ - uid: 7125
components:
- type: Transform
- pos: 3.5,-28.5
+ pos: -76.5,-7.5
parent: 2
- - uid: 4914
+ - uid: 7126
components:
- type: Transform
- pos: 3.5,-29.5
+ pos: -76.5,-8.5
parent: 2
- - uid: 4915
+ - uid: 7127
components:
- type: Transform
- pos: 5.5,-24.5
+ pos: -76.5,-9.5
parent: 2
- - uid: 4916
+ - uid: 7128
components:
- type: Transform
- pos: 20.5,-27.5
+ pos: -77.5,-9.5
parent: 2
- - uid: 4917
+ - uid: 7129
components:
- type: Transform
- pos: 71.5,-15.5
+ pos: -78.5,-9.5
parent: 2
- - uid: 4918
+ - uid: 7130
components:
- type: Transform
- pos: 56.5,-22.5
+ pos: -79.5,-9.5
parent: 2
- - uid: 4919
+ - uid: 7131
components:
- type: Transform
- pos: 27.5,-16.5
+ pos: -80.5,-9.5
parent: 2
- - uid: 4920
+ - uid: 7132
components:
- type: Transform
- pos: -19.5,-67.5
+ pos: -81.5,-9.5
parent: 2
- - uid: 4921
+ - uid: 7133
components:
- type: Transform
- pos: 29.5,11.5
+ pos: -69.5,-7.5
parent: 2
- - uid: 4922
+ - uid: 7134
components:
- type: Transform
- pos: -60.5,37.5
+ pos: -69.5,-8.5
parent: 2
- - uid: 4923
+ - uid: 7135
components:
- type: Transform
- pos: -58.5,36.5
+ pos: -69.5,-9.5
parent: 2
- - uid: 4924
+ - uid: 7136
components:
- type: Transform
- pos: -60.5,38.5
+ pos: -69.5,-10.5
parent: 2
- - uid: 4925
+ - uid: 7137
components:
- type: Transform
- pos: -67.5,-40.5
+ pos: -69.5,-11.5
parent: 2
- - uid: 4926
+ - uid: 7138
components:
- type: Transform
- pos: 62.5,-17.5
+ pos: -69.5,-12.5
parent: 2
- - uid: 4927
+ - uid: 7139
components:
- type: Transform
- pos: 27.5,-3.5
+ pos: -70.5,-11.5
parent: 2
- - uid: 4928
+ - uid: 7140
components:
- type: Transform
- pos: -58.5,-34.5
+ pos: -71.5,-11.5
parent: 2
- - uid: 4929
+ - uid: 7141
components:
- type: Transform
- pos: -62.5,57.5
+ pos: -72.5,-11.5
parent: 2
- - uid: 4930
+ - uid: 7142
components:
- type: Transform
- pos: -31.5,-7.5
+ pos: -68.5,-11.5
parent: 2
- - uid: 4931
+ - uid: 7143
components:
- type: Transform
- pos: -22.5,-20.5
+ pos: -67.5,-11.5
parent: 2
- - uid: 4932
+ - uid: 7144
components:
- type: Transform
- pos: -45.5,-33.5
+ pos: -66.5,-11.5
parent: 2
- - uid: 4933
+ - uid: 7145
components:
- type: Transform
- pos: -29.5,80.5
+ pos: -69.5,-5.5
parent: 2
- - uid: 4934
+ - uid: 7146
components:
- type: Transform
- pos: -29.5,81.5
+ pos: -69.5,-4.5
parent: 2
- - uid: 4935
+ - uid: 7147
components:
- type: Transform
- pos: -6.5,-7.5
+ pos: -69.5,-3.5
parent: 2
- - uid: 4936
+ - uid: 7148
components:
- type: Transform
- pos: -26.5,46.5
+ pos: -69.5,-2.5
parent: 2
- - uid: 4937
+ - uid: 7149
components:
- type: Transform
- pos: -45.5,-30.5
+ pos: -69.5,-1.5
parent: 2
- - uid: 4938
+ - uid: 7150
components:
- type: Transform
- pos: -48.5,-19.5
+ pos: -69.5,-0.5
parent: 2
- - uid: 4939
+ - uid: 7151
components:
- type: Transform
- pos: -43.5,-14.5
+ pos: -69.5,0.5
parent: 2
- - uid: 4940
+ - uid: 7152
components:
- type: Transform
- pos: -54.5,-31.5
+ pos: -69.5,1.5
parent: 2
- - uid: 4941
+ - uid: 7153
components:
- type: Transform
- pos: -2.5,-10.5
+ pos: -70.5,0.5
parent: 2
- - uid: 4942
+ - uid: 7154
components:
- type: Transform
- pos: -39.5,21.5
+ pos: -71.5,0.5
parent: 2
- - uid: 4943
+ - uid: 7155
components:
- type: Transform
- pos: -31.5,50.5
+ pos: -72.5,0.5
parent: 2
- - uid: 4944
+ - uid: 7156
components:
- type: Transform
- pos: -11.5,-6.5
+ pos: -73.5,0.5
parent: 2
- - uid: 4945
+ - uid: 7157
components:
- type: Transform
- pos: -36.5,49.5
+ pos: -68.5,0.5
parent: 2
- - uid: 4946
+ - uid: 7158
components:
- type: Transform
- pos: -51.5,-28.5
+ pos: -67.5,0.5
parent: 2
- - uid: 4947
+ - uid: 7159
components:
- type: Transform
- pos: -28.5,-7.5
+ pos: -66.5,0.5
parent: 2
- - uid: 4948
+ - uid: 7160
components:
- type: Transform
- pos: 6.5,-7.5
+ pos: -65.5,0.5
parent: 2
- - uid: 4949
+ - uid: 7161
components:
- type: Transform
- pos: -54.5,46.5
+ pos: -64.5,0.5
parent: 2
- - uid: 4950
+ - uid: 7162
components:
- type: Transform
- pos: -33.5,-14.5
+ pos: -63.5,0.5
parent: 2
- - uid: 4951
+ - uid: 7163
components:
- type: Transform
- pos: 4.5,-11.5
+ pos: -62.5,0.5
parent: 2
- - uid: 4952
+ - uid: 7164
components:
- type: Transform
- pos: -58.5,27.5
+ pos: -76.5,-5.5
parent: 2
- - uid: 4953
+ - uid: 7165
components:
- type: Transform
- pos: 49.5,-16.5
+ pos: -77.5,-5.5
parent: 2
- - uid: 4954
+ - uid: 7166
components:
- type: Transform
- pos: -31.5,-52.5
+ pos: -78.5,-5.5
parent: 2
- - uid: 4955
+ - uid: 7167
components:
- type: Transform
- pos: 7.5,7.5
+ pos: -79.5,-5.5
parent: 2
- - uid: 4956
+ - uid: 7168
components:
- type: Transform
- pos: 8.5,-15.5
+ pos: -80.5,-5.5
parent: 2
- - uid: 4957
+ - uid: 7169
components:
- type: Transform
- pos: -61.5,-35.5
+ pos: -81.5,-5.5
parent: 2
- - uid: 4958
+ - uid: 7170
components:
- type: Transform
- pos: 4.5,-26.5
+ pos: -79.5,-4.5
parent: 2
- - uid: 4959
+ - uid: 7171
components:
- type: Transform
- pos: -33.5,-12.5
+ pos: -79.5,-3.5
parent: 2
- - uid: 4960
+ - uid: 7172
components:
- type: Transform
- pos: -57.5,-6.5
+ pos: -79.5,-2.5
parent: 2
- - uid: 4961
+ - uid: 7173
components:
- type: Transform
- pos: -56.5,4.5
+ pos: -80.5,-2.5
parent: 2
- - uid: 4962
+ - uid: 7174
components:
- type: Transform
- pos: -15.5,13.5
+ pos: -79.5,-10.5
parent: 2
- - uid: 4963
+ - uid: 7175
components:
- type: Transform
- pos: -13.5,-25.5
+ pos: -79.5,-11.5
parent: 2
- - uid: 4964
+ - uid: 7176
components:
- type: Transform
- pos: -6.5,-31.5
+ pos: -79.5,-12.5
parent: 2
- - uid: 4965
+ - uid: 7177
components:
- type: Transform
- pos: -18.5,-46.5
+ pos: -80.5,-12.5
parent: 2
- - uid: 4966
+ - uid: 7178
components:
- type: Transform
- pos: 12.5,-3.5
+ pos: -47.5,9.5
parent: 2
- - uid: 4967
+ - uid: 7179
components:
- type: Transform
- pos: -76.5,6.5
+ pos: 72.5,-44.5
parent: 2
- - uid: 4968
+ - uid: 7180
components:
- type: Transform
- pos: -53.5,14.5
+ pos: 71.5,-44.5
parent: 2
- - uid: 4969
+ - uid: 7181
components:
- type: Transform
- pos: -53.5,35.5
+ pos: 66.5,27.5
parent: 2
- - uid: 4970
+ - uid: 7182
components:
- type: Transform
- pos: 13.5,-45.5
+ pos: 75.5,-44.5
parent: 2
- - uid: 4971
+ - uid: 7183
components:
- type: Transform
- pos: -29.5,82.5
+ pos: 70.5,-44.5
parent: 2
- - uid: 4972
+ - uid: 7184
components:
- type: Transform
- pos: -29.5,92.5
+ pos: 77.5,-44.5
parent: 2
- - uid: 4973
+ - uid: 7185
components:
- type: Transform
- pos: 5.5,23.5
+ pos: 77.5,-45.5
parent: 2
- - uid: 4974
+ - uid: 7186
components:
- type: Transform
- pos: 6.5,49.5
+ pos: 78.5,-45.5
parent: 2
- - uid: 4975
+ - uid: 7187
components:
- type: Transform
- pos: -50.5,1.5
+ pos: 79.5,-45.5
parent: 2
- - uid: 4976
+ - uid: 7188
components:
- type: Transform
- pos: 14.5,67.5
+ pos: 76.5,-44.5
parent: 2
- - uid: 4977
+ - uid: 7189
components:
- type: Transform
- pos: 80.5,-20.5
+ pos: 73.5,-50.5
parent: 2
- - uid: 4978
+ - uid: 7190
components:
- type: Transform
- pos: 45.5,7.5
+ pos: 70.5,-42.5
parent: 2
- - uid: 4979
+ - uid: 7191
components:
- type: Transform
- pos: -21.5,-80.5
+ pos: 70.5,-41.5
parent: 2
- - uid: 4980
+ - uid: 7192
components:
- type: Transform
- pos: -23.5,-60.5
+ pos: 71.5,-49.5
parent: 2
- - uid: 4981
+ - uid: 7193
components:
- type: Transform
- pos: -51.5,0.5
+ pos: 67.5,-40.5
parent: 2
- - uid: 4982
+ - uid: 7194
components:
- type: Transform
- pos: 11.5,64.5
+ pos: 70.5,-45.5
parent: 2
- - uid: 4983
+ - uid: 7195
components:
- type: Transform
- pos: 6.5,47.5
+ pos: 77.5,-43.5
parent: 2
- - uid: 4984
+ - uid: 7196
components:
- type: Transform
- pos: 7.5,23.5
+ pos: 72.5,-51.5
parent: 2
- - uid: 4985
+ - uid: 7197
components:
- type: Transform
- pos: -45.5,-74.5
+ pos: 77.5,-42.5
parent: 2
- - uid: 4986
+ - uid: 7198
components:
- type: Transform
- pos: -22.5,-31.5
+ pos: 72.5,-49.5
parent: 2
- - uid: 4987
+ - uid: 7199
components:
- type: Transform
- pos: -26.5,1.5
+ pos: 69.5,-49.5
parent: 2
- - uid: 4988
+ - uid: 7200
components:
- type: Transform
- pos: -32.5,26.5
+ pos: 70.5,-40.5
parent: 2
- - uid: 4989
+ - uid: 7201
components:
- type: Transform
- pos: -41.5,11.5
+ pos: 73.5,-44.5
parent: 2
- - uid: 4990
+ - uid: 7202
components:
- type: Transform
- pos: -63.5,36.5
+ pos: 69.5,-40.5
parent: 2
- - uid: 4991
+ - uid: 7203
components:
- type: Transform
- pos: -47.5,42.5
+ pos: 68.5,-40.5
parent: 2
- - uid: 4992
+ - uid: 7204
components:
- type: Transform
- pos: 4.5,-14.5
+ pos: 73.5,-45.5
parent: 2
- - uid: 4993
+ - uid: 7205
components:
- type: Transform
- pos: -55.5,24.5
+ pos: 73.5,-42.5
parent: 2
- - uid: 4994
+ - uid: 7206
components:
- type: Transform
- pos: -54.5,26.5
+ pos: 74.5,-41.5
parent: 2
- - uid: 4995
+ - uid: 7207
components:
- type: Transform
- pos: -74.5,-29.5
+ pos: 68.5,-51.5
parent: 2
- - uid: 4996
+ - uid: 7208
components:
- type: Transform
- pos: -71.5,11.5
+ pos: 73.5,-43.5
parent: 2
- - uid: 4997
+ - uid: 7209
components:
- type: Transform
- pos: -18.5,-8.5
+ pos: 69.5,-51.5
parent: 2
- - uid: 4998
+ - uid: 7210
components:
- type: Transform
- pos: 40.5,-59.5
+ pos: 70.5,-43.5
parent: 2
- - uid: 4999
+ - uid: 7211
components:
- type: Transform
- pos: -41.5,42.5
+ pos: 73.5,-47.5
parent: 2
- - uid: 5000
+ - uid: 7212
components:
- type: Transform
- pos: -20.5,-60.5
+ pos: 73.5,-37.5
parent: 2
- - uid: 5001
+ - uid: 7213
components:
- type: Transform
- pos: -1.5,-64.5
+ pos: 73.5,-39.5
parent: 2
- - uid: 5002
+ - uid: 7214
components:
- type: Transform
- pos: 72.5,-15.5
+ pos: 73.5,-48.5
parent: 2
- - uid: 5003
+ - uid: 7215
components:
- type: Transform
- pos: 72.5,-18.5
+ pos: 73.5,-46.5
parent: 2
- - uid: 5004
+ - uid: 7216
components:
- type: Transform
- pos: 54.5,-40.5
+ pos: 73.5,-49.5
parent: 2
- - uid: 5005
+ - uid: 7217
components:
- type: Transform
- pos: 52.5,-38.5
+ pos: 74.5,-46.5
parent: 2
- - uid: 5006
+ - uid: 7218
components:
- type: Transform
- pos: -48.5,48.5
+ pos: 73.5,-38.5
parent: 2
- - uid: 5007
+ - uid: 7219
components:
- type: Transform
- pos: 34.5,-19.5
+ pos: 73.5,-40.5
parent: 2
- - uid: 5008
+ - uid: 7220
components:
- type: Transform
- pos: 75.5,-15.5
+ pos: 73.5,-51.5
parent: 2
- - uid: 5009
+ - uid: 7221
components:
- type: Transform
- pos: 39.5,-7.5
+ pos: 70.5,-49.5
parent: 2
- - uid: 5010
+ - uid: 7222
components:
- type: Transform
- pos: -50.5,-2.5
+ pos: 73.5,-41.5
parent: 2
- - uid: 5011
+ - uid: 7223
components:
- type: Transform
- pos: 30.5,-11.5
+ pos: 70.5,-51.5
parent: 2
- - uid: 5012
+ - uid: 7224
components:
- type: Transform
- pos: -46.5,45.5
+ pos: -118.5,49.5
parent: 2
- - uid: 5013
+ - uid: 7225
components:
- type: Transform
- pos: 31.5,-55.5
+ pos: -118.5,50.5
parent: 2
- - uid: 5014
+ - uid: 7226
components:
- type: Transform
- pos: 70.5,-21.5
+ pos: -118.5,51.5
parent: 2
- - uid: 5015
+ - uid: 7227
components:
- type: Transform
- pos: 35.5,-12.5
+ pos: -112.5,23.5
parent: 2
- - uid: 5016
+ - uid: 7228
components:
- type: Transform
- pos: 6.5,36.5
+ pos: -118.5,20.5
parent: 2
- - uid: 5017
+ - uid: 7229
components:
- type: Transform
- pos: -55.5,-3.5
+ pos: -118.5,18.5
parent: 2
- - uid: 5018
+ - uid: 7230
components:
- type: Transform
- pos: 13.5,31.5
+ pos: -113.5,23.5
parent: 2
- - uid: 5019
+ - uid: 7231
components:
- type: Transform
- pos: -26.5,-73.5
+ pos: -118.5,19.5
parent: 2
- - uid: 5020
+ - uid: 7232
components:
- type: Transform
- pos: -36.5,-60.5
+ pos: -119.5,18.5
parent: 2
- - uid: 5021
+ - uid: 7233
components:
- type: Transform
- pos: 28.5,-66.5
+ pos: -121.5,18.5
parent: 2
- - uid: 5022
+ - uid: 7234
components:
- type: Transform
- pos: -5.5,49.5
+ pos: -122.5,25.5
parent: 2
- - uid: 5023
+ - uid: 7235
components:
- type: Transform
- pos: -7.5,51.5
+ pos: -122.5,24.5
parent: 2
- - uid: 5024
+ - uid: 7236
components:
- type: Transform
- pos: -32.5,-18.5
+ pos: -122.5,23.5
parent: 2
- - uid: 5025
+ - uid: 7237
components:
- type: Transform
- pos: -36.5,-8.5
+ pos: -122.5,22.5
parent: 2
- - uid: 5026
+ - uid: 7238
components:
- type: Transform
- pos: -64.5,53.5
+ pos: -114.5,27.5
parent: 2
- - uid: 5027
+ - uid: 7239
components:
- type: Transform
- pos: 36.5,-55.5
+ pos: -114.5,26.5
parent: 2
- - uid: 5028
+ - uid: 7240
components:
- type: Transform
- pos: -25.5,-52.5
+ pos: -114.5,25.5
parent: 2
- - uid: 5029
+ - uid: 7241
components:
- type: Transform
- pos: -57.5,49.5
+ pos: -114.5,24.5
parent: 2
- - uid: 5030
+ - uid: 7242
components:
- type: Transform
- pos: 42.5,-12.5
+ pos: -114.5,23.5
parent: 2
- - uid: 5031
+ - uid: 7243
components:
- type: Transform
- pos: 29.5,-14.5
+ pos: -114.5,22.5
parent: 2
- - uid: 5032
+ - uid: 7244
components:
- type: Transform
- pos: -14.5,14.5
+ pos: -121.5,23.5
parent: 2
- - uid: 5033
+ - uid: 7245
components:
- type: Transform
- pos: 3.5,18.5
+ pos: -120.5,23.5
parent: 2
- - uid: 5034
+ - uid: 7246
components:
- type: Transform
- pos: 27.5,-39.5
+ pos: -119.5,23.5
parent: 2
- - uid: 5035
+ - uid: 7247
components:
- type: Transform
- pos: 3.5,19.5
+ pos: -118.5,23.5
parent: 2
- - uid: 5036
+ - uid: 7248
components:
- type: Transform
- pos: 4.5,19.5
+ pos: -118.5,22.5
parent: 2
- - uid: 5037
+ - uid: 7249
components:
- type: Transform
- pos: 5.5,19.5
+ pos: -118.5,24.5
parent: 2
- - uid: 5038
+ - uid: 7250
components:
- type: Transform
- pos: 10.5,15.5
+ pos: -118.5,25.5
parent: 2
- - uid: 5039
+ - uid: 7251
components:
- type: Transform
- pos: -1.5,17.5
+ pos: -118.5,26.5
parent: 2
- - uid: 5040
+ - uid: 7252
components:
- type: Transform
- pos: -3.5,19.5
+ pos: -118.5,27.5
parent: 2
- - uid: 5041
+ - uid: 7253
components:
- type: Transform
- pos: 11.5,15.5
+ pos: -118.5,28.5
parent: 2
- - uid: 5042
+ - uid: 7254
components:
- type: Transform
- pos: -5.5,19.5
+ pos: -118.5,29.5
parent: 2
- - uid: 5043
+ - uid: 7255
components:
- type: Transform
- pos: -41.5,15.5
+ pos: -118.5,30.5
parent: 2
- - uid: 5044
+ - uid: 7256
components:
- type: Transform
- pos: 16.5,-24.5
+ pos: -118.5,31.5
parent: 2
- - uid: 5045
+ - uid: 7257
components:
- type: Transform
- pos: -77.5,5.5
+ pos: -118.5,32.5
parent: 2
- - uid: 5046
+ - uid: 7258
components:
- type: Transform
- pos: -52.5,17.5
+ pos: -118.5,33.5
parent: 2
- - uid: 5047
+ - uid: 7259
components:
- type: Transform
- pos: -58.5,6.5
+ pos: -118.5,34.5
parent: 2
- - uid: 5048
+ - uid: 7260
components:
- type: Transform
- pos: 20.5,-28.5
+ pos: -118.5,35.5
parent: 2
- - uid: 5049
+ - uid: 7261
components:
- type: Transform
- pos: -0.5,-33.5
+ pos: -118.5,36.5
parent: 2
- - uid: 5050
+ - uid: 7262
components:
- type: Transform
- pos: -63.5,33.5
+ pos: -118.5,37.5
parent: 2
- - uid: 5051
+ - uid: 7263
components:
- type: Transform
- pos: 25.5,-23.5
+ pos: -118.5,38.5
parent: 2
- - uid: 5052
+ - uid: 7264
components:
- type: Transform
- pos: -35.5,57.5
+ pos: -118.5,39.5
parent: 2
- - uid: 5053
+ - uid: 7265
components:
- type: Transform
- pos: -20.5,63.5
+ pos: -118.5,40.5
parent: 2
- - uid: 5054
+ - uid: 7266
components:
- type: Transform
- pos: -11.5,-19.5
+ pos: -118.5,41.5
parent: 2
- - uid: 5055
+ - uid: 7267
components:
- type: Transform
- pos: 41.5,-32.5
+ pos: -118.5,42.5
parent: 2
- - uid: 5056
+ - uid: 7268
components:
- type: Transform
- pos: 43.5,-33.5
+ pos: -123.5,44.5
parent: 2
- - uid: 5057
+ - uid: 7269
components:
- type: Transform
- pos: 41.5,-51.5
+ pos: -123.5,43.5
parent: 2
- - uid: 5058
+ - uid: 7270
components:
- type: Transform
- pos: 29.5,-15.5
+ pos: -123.5,42.5
parent: 2
- - uid: 5059
+ - uid: 7271
components:
- type: Transform
- pos: 14.5,60.5
+ pos: -123.5,41.5
parent: 2
- - uid: 5060
+ - uid: 7272
components:
- type: Transform
- pos: 14.5,68.5
+ pos: -123.5,40.5
parent: 2
- - uid: 5061
+ - uid: 7273
components:
- type: Transform
- pos: 17.5,66.5
+ pos: -123.5,39.5
parent: 2
- - uid: 5062
+ - uid: 7274
components:
- type: Transform
- pos: 31.5,59.5
+ pos: -123.5,38.5
parent: 2
- - uid: 5063
+ - uid: 7275
components:
- type: Transform
- pos: 38.5,-12.5
+ pos: -123.5,37.5
parent: 2
- - uid: 5064
+ - uid: 7276
components:
- type: Transform
- pos: -45.5,48.5
+ pos: -123.5,36.5
parent: 2
- - uid: 5065
+ - uid: 7277
components:
- type: Transform
- pos: -16.5,63.5
+ pos: -125.5,40.5
parent: 2
- - uid: 5066
+ - uid: 7278
components:
- type: Transform
- pos: -51.5,53.5
+ pos: -124.5,40.5
parent: 2
- - uid: 5067
+ - uid: 7279
components:
- type: Transform
- pos: -57.5,50.5
+ pos: -122.5,40.5
parent: 2
- - uid: 5068
+ - uid: 7280
components:
- type: Transform
- pos: -58.5,45.5
+ pos: -121.5,40.5
parent: 2
- - uid: 5069
+ - uid: 7281
components:
- type: Transform
- pos: -63.5,-19.5
+ pos: -122.5,37.5
parent: 2
- - uid: 5070
+ - uid: 7282
components:
- type: Transform
- pos: 42.5,-0.5
+ pos: -121.5,37.5
parent: 2
- - uid: 5071
+ - uid: 7283
components:
- type: Transform
- pos: 4.5,35.5
+ pos: -124.5,37.5
parent: 2
- - uid: 5072
+ - uid: 7284
components:
- type: Transform
- pos: 15.5,30.5
+ pos: -125.5,37.5
parent: 2
- - uid: 5073
+ - uid: 7285
components:
- type: Transform
- pos: 40.5,-12.5
+ pos: -125.5,43.5
parent: 2
- - uid: 5074
+ - uid: 7286
components:
- type: Transform
- pos: 38.5,-9.5
+ pos: -124.5,43.5
parent: 2
- - uid: 5075
+ - uid: 7287
components:
- type: Transform
- pos: 44.5,-20.5
+ pos: -122.5,43.5
parent: 2
- - uid: 5076
+ - uid: 7288
components:
- type: Transform
- pos: 64.5,-29.5
+ pos: -121.5,43.5
parent: 2
- - uid: 5077
+ - uid: 7289
components:
- type: Transform
- pos: -61.5,43.5
+ pos: -113.5,44.5
parent: 2
- - uid: 5078
+ - uid: 7290
components:
- type: Transform
- pos: -51.5,42.5
+ pos: -113.5,43.5
parent: 2
- - uid: 5079
+ - uid: 7291
components:
- type: Transform
- pos: 48.5,-51.5
+ pos: -113.5,42.5
parent: 2
- - uid: 5080
+ - uid: 7292
components:
- type: Transform
- pos: 59.5,-11.5
+ pos: -113.5,41.5
parent: 2
- - uid: 5081
+ - uid: 7293
components:
- type: Transform
- pos: 14.5,43.5
+ pos: -113.5,40.5
parent: 2
- - uid: 5082
+ - uid: 7294
components:
- type: Transform
- pos: 21.5,38.5
+ pos: -113.5,39.5
parent: 2
- - uid: 5083
+ - uid: 7295
components:
- type: Transform
- pos: 15.5,31.5
+ pos: -113.5,38.5
parent: 2
- - uid: 5084
+ - uid: 7296
components:
- type: Transform
- pos: 2.5,35.5
+ pos: -113.5,37.5
parent: 2
- - uid: 5085
+ - uid: 7297
components:
- type: Transform
- pos: 26.5,35.5
+ pos: -113.5,36.5
parent: 2
- - uid: 5086
+ - uid: 7298
components:
- type: Transform
- pos: 31.5,28.5
+ pos: -115.5,42.5
parent: 2
- - uid: 5087
+ - uid: 7299
components:
- type: Transform
- pos: -19.5,63.5
+ pos: -114.5,42.5
parent: 2
- - uid: 5088
+ - uid: 7300
components:
- type: Transform
- pos: 34.5,-60.5
+ pos: -112.5,42.5
parent: 2
- - uid: 5089
+ - uid: 7301
components:
- type: Transform
- pos: -28.5,68.5
+ pos: -111.5,42.5
parent: 2
- - uid: 5090
+ - uid: 7302
components:
- type: Transform
- pos: -37.5,42.5
+ pos: -115.5,37.5
parent: 2
- - uid: 5091
+ - uid: 7303
components:
- type: Transform
- pos: -65.5,50.5
+ pos: -114.5,37.5
parent: 2
- - uid: 5092
+ - uid: 7304
components:
- type: Transform
- pos: -65.5,49.5
+ pos: -112.5,37.5
parent: 2
- - uid: 5093
+ - uid: 7305
components:
- type: Transform
- pos: -48.5,41.5
+ pos: -111.5,37.5
parent: 2
- - uid: 5094
+ - uid: 7306
components:
- type: Transform
- pos: -36.5,12.5
+ pos: -112.5,39.5
parent: 2
- - uid: 5095
+ - uid: 7307
components:
- type: Transform
- pos: -23.5,-3.5
+ pos: -111.5,39.5
parent: 2
- - uid: 5096
+ - uid: 7308
components:
- type: Transform
- pos: -54.5,-29.5
+ pos: -114.5,40.5
parent: 2
- - uid: 5097
+ - uid: 7309
components:
- type: Transform
- pos: -12.5,-7.5
+ pos: -115.5,40.5
parent: 2
- - uid: 5098
+ - uid: 7310
components:
- type: Transform
- pos: -40.5,-24.5
+ pos: -118.5,48.5
parent: 2
- - uid: 5099
+ - uid: 7311
components:
- type: Transform
- pos: -23.5,-4.5
+ pos: -118.5,47.5
parent: 2
- - uid: 5100
+ - uid: 7312
components:
- type: Transform
- pos: 83.5,9.5
+ pos: -118.5,46.5
parent: 2
- - uid: 5101
+ - uid: 7313
components:
- type: Transform
- pos: -53.5,-32.5
+ pos: -121.5,47.5
parent: 2
- - uid: 5102
+ - uid: 7314
components:
- type: Transform
- pos: 2.5,-19.5
+ pos: -120.5,47.5
parent: 2
- - uid: 5103
+ - uid: 7315
components:
- type: Transform
- pos: -52.5,21.5
+ pos: -119.5,47.5
parent: 2
- - uid: 5104
+ - uid: 7316
components:
- type: Transform
- pos: 37.5,42.5
+ pos: -117.5,47.5
parent: 2
- - uid: 5105
+ - uid: 7317
components:
- type: Transform
- pos: -57.5,8.5
+ pos: -116.5,47.5
parent: 2
- - uid: 5106
+ - uid: 7318
components:
- type: Transform
- pos: -52.5,5.5
+ pos: -115.5,47.5
parent: 2
- - uid: 5107
+ - uid: 7319
components:
- type: Transform
- pos: 32.5,27.5
+ pos: -121.5,46.5
parent: 2
- - uid: 5108
+ - uid: 7320
components:
- type: Transform
- pos: -63.5,14.5
+ pos: -115.5,46.5
parent: 2
- - uid: 5109
+ - uid: 7321
components:
- type: Transform
- pos: -46.5,23.5
+ pos: 81.5,-21.5
parent: 2
- - uid: 5110
+ - uid: 7322
components:
- type: Transform
- pos: -48.5,23.5
+ pos: 82.5,-21.5
parent: 2
- - uid: 5111
+ - uid: 7323
components:
- type: Transform
- pos: -22.5,-25.5
+ pos: 83.5,-21.5
parent: 2
- - uid: 5112
+ - uid: 7324
components:
- type: Transform
- pos: 21.5,45.5
+ pos: 84.5,-21.5
parent: 2
- - uid: 5113
+ - uid: 7325
components:
- type: Transform
- pos: -1.5,34.5
+ pos: 81.5,-18.5
parent: 2
- - uid: 5114
+ - uid: 7326
components:
- type: Transform
- pos: -23.5,55.5
+ pos: 82.5,-18.5
parent: 2
- - uid: 5115
+ - uid: 7327
components:
- type: Transform
- pos: -2.5,62.5
+ pos: 83.5,-18.5
parent: 2
- - uid: 5116
+ - uid: 7328
components:
- type: Transform
- pos: -29.5,95.5
+ pos: 84.5,-18.5
parent: 2
- - uid: 5117
+ - uid: 7329
components:
- type: Transform
- pos: -27.5,-31.5
+ pos: 84.5,-17.5
parent: 2
- - uid: 5118
+ - uid: 7330
components:
- type: Transform
- pos: 11.5,77.5
+ pos: 84.5,-16.5
parent: 2
- - uid: 5119
+ - uid: 7331
components:
- type: Transform
- pos: 54.5,-2.5
+ pos: 84.5,-15.5
parent: 2
- - uid: 5120
+ - uid: 7332
components:
- type: Transform
- pos: 4.5,-34.5
+ pos: 84.5,-14.5
parent: 2
- - uid: 5121
+ - uid: 7333
components:
- type: Transform
- pos: 35.5,28.5
+ pos: 85.5,-14.5
parent: 2
- - uid: 5122
+ - uid: 7334
components:
- type: Transform
- pos: 37.5,30.5
+ pos: 86.5,-14.5
parent: 2
- - uid: 5123
+ - uid: 7335
components:
- type: Transform
- pos: 4.5,-10.5
+ pos: 87.5,-14.5
parent: 2
- - uid: 5124
+ - uid: 7336
components:
- type: Transform
- pos: -63.5,21.5
+ pos: 88.5,-14.5
parent: 2
- - uid: 5125
+ - uid: 7337
components:
- type: Transform
- pos: -30.5,32.5
+ pos: 89.5,-14.5
parent: 2
- - uid: 5126
+ - uid: 7338
components:
- type: Transform
- pos: -22.5,10.5
+ pos: 90.5,-14.5
parent: 2
- - uid: 5127
+ - uid: 7339
components:
- type: Transform
- pos: -54.5,37.5
+ pos: 91.5,-14.5
parent: 2
- - uid: 5128
+ - uid: 7340
components:
- type: Transform
- pos: -11.5,37.5
+ pos: 92.5,-14.5
parent: 2
- - uid: 5129
+ - uid: 7341
components:
- type: Transform
- pos: 38.5,30.5
+ pos: 93.5,-14.5
parent: 2
- - uid: 5130
+ - uid: 7342
components:
- type: Transform
- pos: -2.5,50.5
+ pos: 94.5,-14.5
parent: 2
- - uid: 5131
+ - uid: 7343
components:
- type: Transform
- pos: -34.5,61.5
+ pos: 94.5,-15.5
parent: 2
- - uid: 5132
+ - uid: 7344
components:
- type: Transform
- pos: 37.5,41.5
+ pos: 94.5,-16.5
parent: 2
- - uid: 5133
+ - uid: 7345
components:
- type: Transform
- pos: 35.5,32.5
+ pos: 94.5,-17.5
parent: 2
- - uid: 5134
+ - uid: 7346
components:
- type: Transform
- pos: 17.5,23.5
+ pos: 94.5,-18.5
parent: 2
- - uid: 5135
+ - uid: 7347
components:
- type: Transform
- pos: 26.5,29.5
+ pos: 94.5,-19.5
parent: 2
- - uid: 5136
+ - uid: 7348
components:
- type: Transform
- pos: 34.5,41.5
+ pos: 94.5,-20.5
parent: 2
- - uid: 5137
+ - uid: 7349
components:
- type: Transform
- pos: 6.5,44.5
+ pos: 94.5,-21.5
parent: 2
- - uid: 5138
+ - uid: 7350
components:
- type: Transform
- pos: -7.5,-70.5
+ pos: 94.5,-22.5
parent: 2
- - uid: 5139
+ - uid: 7351
components:
- type: Transform
- pos: -6.5,-80.5
+ pos: 94.5,-23.5
parent: 2
- - uid: 5140
+ - uid: 7352
components:
- type: Transform
- pos: -1.5,-70.5
+ pos: 94.5,-24.5
parent: 2
- - uid: 5141
+ - uid: 7353
components:
- type: Transform
- pos: -17.5,-65.5
+ pos: 94.5,-25.5
parent: 2
- - uid: 5142
+ - uid: 7354
components:
- type: Transform
- pos: -41.5,37.5
+ pos: 93.5,-25.5
parent: 2
- - uid: 5143
+ - uid: 7355
components:
- type: Transform
- pos: 35.5,-71.5
+ pos: 92.5,-25.5
parent: 2
- - uid: 5144
+ - uid: 7356
components:
- type: Transform
- pos: 35.5,-72.5
+ pos: 91.5,-25.5
parent: 2
- - uid: 5145
+ - uid: 7357
components:
- type: Transform
- pos: 40.5,-65.5
+ pos: 90.5,-25.5
parent: 2
- - uid: 5146
+ - uid: 7358
components:
- type: Transform
- pos: 11.5,1.5
+ pos: 89.5,-25.5
parent: 2
- - uid: 5147
+ - uid: 7359
components:
- type: Transform
- pos: -6.5,16.5
+ pos: 88.5,-25.5
parent: 2
- - uid: 5148
+ - uid: 7360
components:
- type: Transform
- pos: -5.5,16.5
+ pos: 87.5,-25.5
parent: 2
- - uid: 5149
+ - uid: 7361
components:
- type: Transform
- pos: -13.5,-13.5
+ pos: 86.5,-25.5
parent: 2
- - uid: 5150
+ - uid: 7362
components:
- type: Transform
- pos: 7.5,-14.5
+ pos: 85.5,-25.5
parent: 2
- - uid: 5151
+ - uid: 7363
components:
- type: Transform
- pos: -0.5,-39.5
+ pos: 84.5,-25.5
parent: 2
- - uid: 5152
+ - uid: 7364
components:
- type: Transform
- pos: 36.5,41.5
+ pos: 84.5,-24.5
parent: 2
- - uid: 5153
+ - uid: 7365
components:
- type: Transform
- pos: 39.5,30.5
+ pos: 84.5,-23.5
parent: 2
- - uid: 5154
+ - uid: 7366
components:
- type: Transform
- pos: -2.5,39.5
+ pos: 84.5,-22.5
parent: 2
- - uid: 5155
+ - uid: 7367
components:
- type: Transform
- pos: -60.5,27.5
+ pos: 11.5,-59.5
parent: 2
- - uid: 5156
+ - uid: 7368
components:
- type: Transform
- pos: -51.5,8.5
+ pos: 10.5,-56.5
parent: 2
- - uid: 5157
+ - uid: 7369
components:
- type: Transform
- pos: -35.5,9.5
+ pos: 10.5,-57.5
parent: 2
- - uid: 5158
+ - uid: 7370
components:
- type: Transform
- pos: -29.5,-14.5
+ pos: 10.5,-58.5
parent: 2
- - uid: 5159
+ - uid: 7371
components:
- type: Transform
- pos: -43.5,42.5
+ pos: 10.5,-59.5
parent: 2
- - uid: 5160
+ - uid: 7372
components:
- type: Transform
- pos: -22.5,-60.5
+ pos: 12.5,-59.5
parent: 2
- - uid: 5161
+ - uid: 7373
components:
- type: Transform
- pos: -0.5,-64.5
+ pos: 83.5,10.5
parent: 2
- - uid: 5162
+ - uid: 7374
components:
- type: Transform
- pos: 35.5,27.5
+ pos: -40.5,-55.5
parent: 2
- - uid: 5163
+ - uid: 7375
components:
- type: Transform
- pos: 33.5,-19.5
+ pos: 83.5,13.5
parent: 2
- - uid: 5164
+ - uid: 7376
components:
- type: Transform
- pos: 19.5,67.5
+ pos: 84.5,13.5
parent: 2
- - uid: 5165
+ - uid: 7377
components:
- type: Transform
- pos: 38.5,-2.5
+ pos: 85.5,13.5
parent: 2
- - uid: 5166
+ - uid: 7378
components:
- type: Transform
- pos: 40.5,10.5
+ pos: 86.5,13.5
parent: 2
- - uid: 5167
+ - uid: 7379
components:
- type: Transform
- pos: 11.5,39.5
+ pos: 87.5,13.5
parent: 2
- - uid: 5168
+ - uid: 7380
components:
- type: Transform
- pos: -53.5,-1.5
+ pos: 88.5,13.5
parent: 2
- - uid: 5169
+ - uid: 7381
components:
- type: Transform
- pos: 29.5,-16.5
+ pos: 89.5,13.5
parent: 2
- - uid: 5170
+ - uid: 7382
components:
- type: Transform
- pos: 31.5,-15.5
+ pos: 90.5,13.5
parent: 2
- - uid: 5171
+ - uid: 7383
components:
- type: Transform
- pos: 30.5,-15.5
+ pos: 91.5,13.5
parent: 2
- - uid: 5172
+ - uid: 7384
components:
- type: Transform
- pos: 56.5,-24.5
+ pos: 92.5,13.5
parent: 2
- - uid: 5173
+ - uid: 7385
components:
- type: Transform
- pos: 51.5,-42.5
+ pos: 92.5,14.5
parent: 2
- - uid: 5174
+ - uid: 7386
components:
- type: Transform
- pos: 45.5,9.5
+ pos: 92.5,15.5
parent: 2
- - uid: 5175
+ - uid: 7387
components:
- type: Transform
- pos: 45.5,5.5
+ pos: 92.5,16.5
parent: 2
- - uid: 5176
+ - uid: 7388
components:
- type: Transform
- pos: -48.5,55.5
+ pos: 92.5,17.5
parent: 2
- - uid: 5177
+ - uid: 7389
components:
- type: Transform
- pos: -36.5,57.5
+ pos: 92.5,18.5
parent: 2
- - uid: 5178
+ - uid: 7390
components:
- type: Transform
- pos: -4.5,-55.5
+ pos: 92.5,19.5
parent: 2
- - uid: 5179
+ - uid: 7391
components:
- type: Transform
- pos: 8.5,-55.5
+ pos: 92.5,20.5
parent: 2
- - uid: 5180
+ - uid: 7392
components:
- type: Transform
- pos: 22.5,53.5
+ pos: 92.5,21.5
parent: 2
- - uid: 5181
+ - uid: 7393
components:
- type: Transform
- pos: -49.5,-14.5
+ pos: 92.5,22.5
parent: 2
- - uid: 5182
+ - uid: 7394
components:
- type: Transform
- pos: 35.5,41.5
+ pos: 93.5,21.5
parent: 2
- - uid: 5183
+ - uid: 7395
components:
- type: Transform
- pos: 41.5,-15.5
+ pos: 91.5,21.5
parent: 2
- - uid: 5184
+ - uid: 7396
components:
- type: Transform
- pos: 49.5,-20.5
+ pos: 92.5,23.5
parent: 2
- - uid: 5185
+ - uid: 7397
components:
- type: Transform
- pos: 69.5,-24.5
+ pos: 92.5,24.5
parent: 2
- - uid: 5186
+ - uid: 7398
components:
- type: Transform
- pos: 50.5,-50.5
+ pos: 92.5,25.5
parent: 2
- - uid: 5187
+ - uid: 7399
components:
- type: Transform
- pos: 50.5,-49.5
+ pos: 92.5,26.5
parent: 2
- - uid: 5188
+ - uid: 7400
components:
- type: Transform
- pos: 56.5,-29.5
+ pos: -76.5,3.5
parent: 2
- - uid: 5189
+ - uid: 7401
components:
- type: Transform
- pos: 35.5,-15.5
+ pos: -76.5,4.5
parent: 2
- - uid: 5190
+ - uid: 7402
components:
- type: Transform
- pos: 14.5,70.5
+ pos: -76.5,2.5
parent: 2
- - uid: 5191
+ - uid: 7403
components:
- type: Transform
- pos: 41.5,-19.5
+ pos: -76.5,1.5
parent: 2
- - uid: 5192
+ - uid: 7404
components:
- type: Transform
- pos: 39.5,-46.5
+ pos: -76.5,0.5
parent: 2
- - uid: 5193
+ - uid: 7405
components:
- type: Transform
- pos: 36.5,30.5
+ pos: -76.5,-0.5
parent: 2
- - uid: 5194
+ - uid: 7406
components:
- type: Transform
- pos: 35.5,1.5
+ pos: -76.5,-1.5
parent: 2
- - uid: 5195
+ - uid: 7407
components:
- type: Transform
- pos: 27.5,5.5
+ pos: -77.5,0.5
parent: 2
- - uid: 5196
+ - uid: 7408
components:
- type: Transform
- pos: 40.5,0.5
+ pos: -78.5,0.5
parent: 2
- - uid: 5197
+ - uid: 7409
components:
- type: Transform
- pos: -59.5,19.5
+ pos: -41.5,-55.5
parent: 2
- - uid: 5198
+ - uid: 7410
components:
- type: Transform
- pos: -72.5,-34.5
+ pos: -40.5,-58.5
parent: 2
- - uid: 5199
+ - uid: 7411
components:
- type: Transform
- pos: 34.5,-38.5
+ pos: -36.5,-58.5
parent: 2
- - uid: 5200
+ - uid: 7412
components:
- type: Transform
- pos: -57.5,-25.5
+ pos: -36.5,-57.5
parent: 2
- - uid: 5201
+ - uid: 7413
components:
- type: Transform
- pos: -62.5,11.5
+ pos: -37.5,-57.5
parent: 2
- - uid: 5202
+ - uid: 7414
components:
- type: Transform
- pos: -3.5,26.5
+ pos: -38.5,-57.5
parent: 2
- - uid: 5203
+ - uid: 7415
components:
- type: Transform
- pos: 19.5,-55.5
+ pos: -39.5,-57.5
parent: 2
- - uid: 5204
+ - uid: 7416
components:
- type: Transform
- pos: -9.5,-60.5
+ pos: -40.5,-57.5
parent: 2
- - uid: 5205
+ - uid: 7417
components:
- type: Transform
- pos: -0.5,-58.5
+ pos: -41.5,-58.5
parent: 2
- - uid: 5206
+ - uid: 7418
components:
- type: Transform
- pos: 17.5,13.5
+ pos: -42.5,-58.5
parent: 2
- - uid: 5207
+ - uid: 7419
components:
- type: Transform
- pos: -25.5,68.5
+ pos: 60.5,8.5
parent: 2
- - uid: 5208
+ - uid: 7420
components:
- type: Transform
- pos: -7.5,-8.5
+ pos: 60.5,3.5
parent: 2
- - uid: 5209
+ - uid: 7421
components:
- type: Transform
- pos: -24.5,-19.5
+ pos: 60.5,7.5
parent: 2
- - uid: 5210
+ - uid: 7422
components:
- type: Transform
- pos: -54.5,-32.5
+ pos: 70.5,6.5
parent: 2
- - uid: 5211
+ - uid: 7423
components:
- type: Transform
- pos: -35.5,14.5
+ pos: 69.5,7.5
parent: 2
- - uid: 5212
+ - uid: 7424
components:
- type: Transform
- pos: -11.5,77.5
+ pos: 69.5,8.5
parent: 2
- - uid: 5213
+ - uid: 7425
components:
- type: Transform
- pos: -59.5,18.5
+ pos: 69.5,9.5
parent: 2
- - uid: 5214
+ - uid: 7426
components:
- type: Transform
- pos: -23.5,-16.5
+ pos: 69.5,10.5
parent: 2
- - uid: 5215
+ - uid: 7427
components:
- type: Transform
- pos: 17.5,-8.5
+ pos: 52.5,4.5
parent: 2
- - uid: 5216
+ - uid: 7428
components:
- type: Transform
- pos: -8.5,-55.5
+ pos: 65.5,7.5
parent: 2
- - uid: 5217
+ - uid: 7429
components:
- type: Transform
- pos: -47.5,38.5
+ pos: 65.5,5.5
parent: 2
- - uid: 5218
+ - uid: 7430
components:
- type: Transform
- pos: -35.5,12.5
+ pos: 65.5,4.5
parent: 2
- - uid: 5219
+ - uid: 7431
components:
- type: Transform
- pos: -56.5,-30.5
+ pos: 65.5,8.5
parent: 2
- - uid: 5220
+ - uid: 7432
components:
- type: Transform
- pos: -19.5,49.5
+ pos: 57.5,7.5
parent: 2
- - uid: 5221
+ - uid: 7433
components:
- type: Transform
- pos: -38.5,61.5
+ pos: 59.5,6.5
parent: 2
- - uid: 5222
+ - uid: 7434
components:
- type: Transform
- pos: -1.5,-80.5
+ pos: 60.5,6.5
parent: 2
- - uid: 5223
+ - uid: 7435
components:
- type: Transform
- pos: 17.5,6.5
+ pos: -29.5,53.5
parent: 2
- - uid: 5224
+ - uid: 7436
components:
- type: Transform
- pos: 27.5,25.5
+ pos: -45.5,-5.5
parent: 2
- - uid: 5225
+ - uid: 7437
components:
- type: Transform
- pos: 11.5,45.5
+ pos: -45.5,-4.5
parent: 2
- - uid: 5226
+ - uid: 7438
components:
- type: Transform
- pos: 11.5,51.5
+ pos: -45.5,-3.5
parent: 2
- - uid: 5227
+ - uid: 7439
components:
- type: Transform
- pos: -5.5,-64.5
+ pos: -41.5,-54.5
parent: 2
- - uid: 5228
+ - uid: 7440
components:
- type: Transform
- pos: -14.5,-71.5
+ pos: -41.5,-53.5
parent: 2
- - uid: 5229
+ - uid: 7441
components:
- type: Transform
- pos: 17.5,-1.5
+ pos: -41.5,-52.5
parent: 2
- - uid: 5230
+ - uid: 7442
components:
- type: Transform
- pos: 10.5,43.5
+ pos: -40.5,-76.5
parent: 2
- - uid: 5231
+ - uid: 7443
components:
- type: Transform
- pos: -73.5,-34.5
+ pos: -40.5,-77.5
parent: 2
- - uid: 5232
+ - uid: 7444
components:
- type: Transform
- pos: 23.5,51.5
+ pos: -40.5,-78.5
parent: 2
- - uid: 5233
+ - uid: 7445
components:
- type: Transform
- pos: -2.5,49.5
+ pos: 91.5,3.5
parent: 2
- - uid: 5234
+ - uid: 7446
components:
- type: Transform
- pos: 10.5,40.5
+ pos: 91.5,4.5
parent: 2
- - uid: 5235
+ - uid: 7447
components:
- type: Transform
- pos: -74.5,-34.5
+ pos: 88.5,2.5
parent: 2
- - uid: 5236
+ - uid: 7448
components:
- type: Transform
- pos: -59.5,30.5
+ pos: 87.5,2.5
parent: 2
- - uid: 5237
+ - uid: 7449
components:
- type: Transform
- pos: -25.5,-77.5
+ pos: 87.5,3.5
parent: 2
- - uid: 5238
+ - uid: 7450
components:
- type: Transform
- pos: -11.5,84.5
+ pos: 87.5,4.5
parent: 2
- - uid: 5239
+ - uid: 7451
components:
- type: Transform
- pos: -11.5,93.5
+ pos: 87.5,5.5
parent: 2
- - uid: 5240
+ - uid: 7452
components:
- type: Transform
- pos: -25.5,61.5
+ pos: 87.5,6.5
parent: 2
- - uid: 5241
+ - uid: 7453
components:
- type: Transform
- pos: 6.5,79.5
+ pos: 87.5,1.5
parent: 2
- - uid: 5242
+ - uid: 7454
components:
- type: Transform
- pos: -37.5,-3.5
+ pos: 87.5,0.5
parent: 2
- - uid: 5243
+ - uid: 7455
components:
- type: Transform
- pos: -32.5,-9.5
+ pos: 87.5,-0.5
parent: 2
- - uid: 5244
+ - uid: 7456
components:
- type: Transform
- pos: -6.5,-19.5
+ pos: 87.5,-1.5
parent: 2
- - uid: 5245
+ - uid: 7457
components:
- type: Transform
- pos: -37.5,23.5
+ pos: 87.5,-2.5
parent: 2
- - uid: 5246
+ - uid: 7458
components:
- type: Transform
- pos: -9.5,68.5
+ pos: 87.5,-3.5
parent: 2
- - uid: 5247
+ - uid: 7459
components:
- type: Transform
- pos: 2.5,57.5
+ pos: 86.5,-2.5
parent: 2
- - uid: 5248
+ - uid: 7460
components:
- type: Transform
- pos: 9.5,-55.5
+ pos: 85.5,-2.5
parent: 2
- - uid: 5249
+ - uid: 7461
components:
- type: Transform
- pos: -6.5,-55.5
+ pos: 84.5,-2.5
parent: 2
- - uid: 5250
+ - uid: 7462
components:
- type: Transform
- pos: 41.5,-65.5
+ pos: 83.5,-2.5
parent: 2
- - uid: 5251
+ - uid: 7463
components:
- type: Transform
- pos: 49.5,-46.5
+ pos: 82.5,-2.5
parent: 2
- - uid: 5252
+ - uid: 7464
components:
- type: Transform
- pos: 79.5,-21.5
+ pos: 81.5,-2.5
parent: 2
- - uid: 5253
+ - uid: 7465
components:
- type: Transform
- pos: 42.5,28.5
+ pos: 80.5,-2.5
parent: 2
- - uid: 5254
+ - uid: 7466
components:
- type: Transform
- pos: 0.5,34.5
+ pos: 80.5,-1.5
parent: 2
- - uid: 5255
+ - uid: 7467
components:
- type: Transform
- pos: 63.5,-11.5
+ pos: 80.5,-0.5
parent: 2
- - uid: 5256
+ - uid: 7468
components:
- type: Transform
- pos: -8.5,-69.5
+ pos: 80.5,0.5
parent: 2
- - uid: 5257
+ - uid: 7469
components:
- type: Transform
- pos: -4.5,-70.5
+ pos: 80.5,1.5
parent: 2
- - uid: 5258
+ - uid: 7470
components:
- type: Transform
- pos: 14.5,44.5
+ pos: 80.5,2.5
parent: 2
- - uid: 5259
+ - uid: 7471
components:
- type: Transform
- pos: 21.5,39.5
+ pos: 80.5,3.5
parent: 2
- - uid: 5260
+ - uid: 7472
components:
- type: Transform
- pos: -13.5,-78.5
+ pos: 81.5,1.5
parent: 2
- - uid: 5261
+ - uid: 7473
components:
- type: Transform
- pos: 52.5,-19.5
+ pos: 82.5,1.5
parent: 2
- - uid: 5262
+ - uid: 7474
components:
- type: Transform
- pos: 0.5,-76.5
+ pos: 83.5,1.5
parent: 2
- - uid: 5263
+ - uid: 7475
components:
- type: Transform
- pos: -17.5,-73.5
+ pos: 84.5,1.5
parent: 2
- - uid: 5264
+ - uid: 7476
components:
- type: Transform
- pos: 23.5,28.5
+ pos: 85.5,1.5
parent: 2
- - uid: 5265
+ - uid: 7477
components:
- type: Transform
- pos: 27.5,-1.5
+ pos: 86.5,1.5
parent: 2
- - uid: 5266
+ - uid: 7478
components:
- type: Transform
- pos: 60.5,-15.5
+ pos: 82.5,2.5
parent: 2
- - uid: 5267
+ - uid: 7479
components:
- type: Transform
- pos: 39.5,-61.5
+ pos: 82.5,3.5
parent: 2
- - uid: 5268
+ - uid: 7480
components:
- type: Transform
- pos: -18.5,26.5
+ pos: 82.5,4.5
parent: 2
- - uid: 5269
+ - uid: 7481
components:
- type: Transform
- pos: -19.5,-75.5
+ pos: 82.5,5.5
parent: 2
- - uid: 5270
+ - uid: 7482
components:
- type: Transform
- pos: -10.5,-76.5
+ pos: 82.5,6.5
parent: 2
- - uid: 5271
+ - uid: 7483
components:
- type: Transform
- pos: -46.5,22.5
+ pos: 83.5,5.5
parent: 2
- - uid: 5272
+ - uid: 7484
components:
- type: Transform
- pos: -60.5,-8.5
+ pos: 84.5,5.5
parent: 2
- - uid: 5273
+ - uid: 7485
components:
- type: Transform
- pos: -62.5,-21.5
+ pos: 82.5,7.5
parent: 2
- - uid: 5274
+ - uid: 7486
components:
- type: Transform
- pos: -46.5,24.5
+ pos: 81.5,7.5
parent: 2
- - uid: 5275
+ - uid: 7487
components:
- type: Transform
- pos: -65.5,15.5
+ pos: 79.5,3.5
parent: 2
- - uid: 5276
+ - uid: 7488
components:
- type: Transform
- pos: -50.5,14.5
+ pos: 78.5,3.5
parent: 2
- - uid: 5277
+ - uid: 7489
components:
- type: Transform
- pos: -63.5,15.5
+ pos: 77.5,3.5
parent: 2
- - uid: 5278
+ - uid: 7490
components:
- type: Transform
- pos: -69.5,-30.5
+ pos: 77.5,4.5
parent: 2
- - uid: 5279
+ - uid: 7491
components:
- type: Transform
- pos: -39.5,39.5
+ pos: 77.5,5.5
parent: 2
- - uid: 5280
+ - uid: 7492
components:
- type: Transform
- pos: -11.5,81.5
+ pos: 77.5,2.5
parent: 2
- - uid: 5281
+ - uid: 7493
components:
- type: Transform
- pos: -11.5,94.5
+ pos: 77.5,1.5
parent: 2
- - uid: 5282
+ - uid: 7494
components:
- type: Transform
- pos: 41.5,-70.5
+ pos: 9.5,-77.5
parent: 2
- - uid: 5283
+ - uid: 7495
components:
- type: Transform
- pos: 39.5,-73.5
+ pos: 9.5,-78.5
parent: 2
- - uid: 5284
+ - uid: 7496
components:
- type: Transform
- pos: -11.5,95.5
+ pos: 9.5,-79.5
parent: 2
- - uid: 5285
+ - uid: 7497
components:
- type: Transform
- pos: -41.5,55.5
+ pos: 54.5,23.5
parent: 2
- - uid: 5286
+ - uid: 7498
components:
- type: Transform
- pos: -41.5,-0.5
+ pos: 55.5,23.5
parent: 2
- - uid: 5287
+ - uid: 7499
components:
- type: Transform
- pos: 8.5,-7.5
+ pos: 49.5,16.5
parent: 2
- - uid: 5288
+ - uid: 7500
components:
- type: Transform
- pos: -38.5,39.5
+ pos: 46.5,20.5
parent: 2
- - uid: 5289
+ - uid: 7501
components:
- type: Transform
- pos: -34.5,-18.5
+ pos: 46.5,21.5
parent: 2
- - uid: 5290
+ - uid: 7502
components:
- type: Transform
- pos: 17.5,-9.5
+ pos: 46.5,19.5
parent: 2
- - uid: 5291
+ - uid: 7503
components:
- type: Transform
- pos: -32.5,-30.5
+ pos: 52.5,18.5
parent: 2
- - uid: 5292
+ - uid: 7504
components:
- type: Transform
- pos: -37.5,-9.5
+ pos: 52.5,17.5
parent: 2
- - uid: 5293
+ - uid: 7505
components:
- type: Transform
- pos: -29.5,-24.5
+ pos: 46.5,17.5
parent: 2
- - uid: 5294
+ - uid: 7506
components:
- type: Transform
- pos: -66.5,14.5
+ pos: 46.5,18.5
parent: 2
- - uid: 5295
+ - uid: 7507
components:
- type: Transform
- pos: 8.5,34.5
+ pos: 46.5,25.5
parent: 2
- - uid: 5296
+ - uid: 7508
components:
- type: Transform
- pos: 26.5,39.5
+ pos: 53.5,23.5
parent: 2
- - uid: 5297
+ - uid: 7509
components:
- type: Transform
- pos: 8.5,37.5
+ pos: 52.5,23.5
parent: 2
- - uid: 5298
+ - uid: 7510
components:
- type: Transform
- pos: 30.5,-66.5
+ pos: 51.5,23.5
parent: 2
- - uid: 5299
+ - uid: 7511
components:
- type: Transform
- pos: -11.5,90.5
+ pos: 50.5,23.5
parent: 2
- - uid: 5300
+ - uid: 7512
components:
- type: Transform
- pos: -18.5,35.5
+ pos: 50.5,24.5
parent: 2
- - uid: 5301
+ - uid: 7513
components:
- type: Transform
- pos: -24.5,-60.5
+ pos: 50.5,22.5
parent: 2
- - uid: 5302
+ - uid: 7514
components:
- type: Transform
- pos: -11.5,96.5
+ pos: 51.5,-50.5
parent: 2
- - uid: 5303
+ - uid: 7515
components:
- type: Transform
- pos: -27.5,-70.5
+ pos: -22.5,30.5
parent: 2
- - uid: 5304
+ - uid: 7516
components:
- type: Transform
- pos: -36.5,-62.5
+ pos: -30.5,44.5
parent: 2
- - uid: 5305
+ - uid: 7517
components:
- type: Transform
- pos: 26.5,37.5
+ pos: -6.5,31.5
parent: 2
- - uid: 5306
+ - uid: 7518
components:
- type: Transform
- pos: -1.5,57.5
+ pos: -5.5,30.5
parent: 2
- - uid: 5307
+ - uid: 7519
components:
- type: Transform
- pos: -55.5,-1.5
+ pos: -8.5,27.5
parent: 2
- - uid: 5308
+ - uid: 7520
components:
- type: Transform
- pos: -18.5,19.5
+ pos: -21.5,28.5
parent: 2
- - uid: 5309
+ - uid: 7521
components:
- type: Transform
- pos: -27.5,-64.5
+ pos: -30.5,45.5
parent: 2
- - uid: 5310
+ - uid: 7522
components:
- type: Transform
- pos: -10.5,-79.5
+ pos: -30.5,41.5
parent: 2
- - uid: 5311
+ - uid: 7523
components:
- type: Transform
- pos: 41.5,-31.5
+ pos: -30.5,43.5
parent: 2
- - uid: 5312
+ - uid: 7524
components:
- type: Transform
- pos: 33.5,-55.5
+ pos: -28.5,58.5
parent: 2
- - uid: 5313
+ - uid: 7525
components:
- type: Transform
- pos: 72.5,-21.5
+ pos: -29.5,42.5
parent: 2
- - uid: 5314
+ - uid: 7526
components:
- type: Transform
- pos: 30.5,-0.5
+ pos: -2.5,41.5
parent: 2
- - uid: 5315
+ - uid: 7527
components:
- type: Transform
- pos: 36.5,5.5
+ pos: -6.5,42.5
parent: 2
- - uid: 5316
+ - uid: 7528
components:
- type: Transform
- pos: -57.5,47.5
+ pos: -7.5,41.5
parent: 2
- - uid: 5317
+ - uid: 7529
components:
- type: Transform
- pos: 6.5,16.5
+ pos: -2.5,40.5
parent: 2
- - uid: 5318
+ - uid: 7530
components:
- type: Transform
- pos: 14.5,-39.5
+ pos: -9.5,41.5
parent: 2
- - uid: 5319
+ - uid: 7531
components:
- type: Transform
- pos: 56.5,-9.5
+ pos: -10.5,41.5
parent: 2
- - uid: 5320
+ - uid: 7532
components:
- type: Transform
- pos: 7.5,35.5
+ pos: -27.5,58.5
parent: 2
- - uid: 5321
+ - uid: 7533
components:
- type: Transform
- pos: -11.5,89.5
+ pos: -14.5,44.5
parent: 2
- - uid: 5322
+ - uid: 7534
components:
- type: Transform
- pos: 36.5,-9.5
+ pos: -18.5,32.5
parent: 2
- - uid: 5323
+ - uid: 7535
components:
- type: Transform
- pos: -54.5,-6.5
+ pos: -14.5,39.5
parent: 2
- - uid: 5324
+ - uid: 7536
components:
- type: Transform
- pos: -30.5,37.5
+ pos: 19.5,67.5
parent: 2
- - uid: 5325
+ - uid: 7537
components:
- type: Transform
- pos: -30.5,15.5
+ pos: -18.5,29.5
parent: 2
- - uid: 5326
+ - uid: 7538
components:
- type: Transform
- pos: 34.5,-66.5
+ pos: -14.5,36.5
parent: 2
- - uid: 5327
+ - uid: 7539
components:
- type: Transform
- pos: 6.5,87.5
+ pos: -14.5,38.5
parent: 2
- - uid: 5328
+ - uid: 7540
components:
- type: Transform
- pos: 11.5,52.5
+ pos: -18.5,31.5
parent: 2
- - uid: 5329
+ - uid: 7541
components:
- type: Transform
- pos: -17.5,57.5
+ pos: -18.5,28.5
parent: 2
- - uid: 5330
+ - uid: 7542
components:
- type: Transform
- pos: -0.5,-22.5
+ pos: -18.5,30.5
parent: 2
- - uid: 5331
+ - uid: 7543
components:
- type: Transform
- pos: -45.5,56.5
+ pos: -14.5,46.5
parent: 2
- - uid: 5332
+ - uid: 7544
components:
- type: Transform
- pos: 37.5,-22.5
+ pos: -14.5,40.5
parent: 2
- - uid: 5333
+ - uid: 7545
components:
- type: Transform
- pos: 27.5,58.5
+ pos: -14.5,45.5
parent: 2
- - uid: 5334
+ - uid: 7546
components:
- type: Transform
- pos: 19.5,48.5
+ pos: -8.5,68.5
parent: 2
- - uid: 5335
+ - uid: 7547
components:
- type: Transform
- pos: -10.5,23.5
+ pos: -14.5,37.5
parent: 2
- - uid: 5336
+ - uid: 7548
components:
- type: Transform
- pos: -33.5,-26.5
+ pos: -14.5,45.5
parent: 2
- - uid: 5337
+ - uid: 7549
components:
- type: Transform
- pos: 60.5,-27.5
+ pos: -18.5,33.5
parent: 2
- - uid: 5338
+ - uid: 7550
components:
- type: Transform
- pos: 22.5,0.5
+ pos: -6.5,30.5
parent: 2
- - uid: 5339
+ - uid: 7551
components:
- type: Transform
- pos: 27.5,-2.5
+ pos: -10.5,32.5
parent: 2
- - uid: 5340
+ - uid: 7552
components:
- type: Transform
- pos: 74.5,-21.5
+ pos: -14.5,41.5
parent: 2
- - uid: 5341
+ - uid: 7553
components:
- type: Transform
- pos: 17.5,12.5
+ pos: -22.5,38.5
parent: 2
- - uid: 5342
+ - uid: 7554
components:
- type: Transform
- pos: 37.5,-27.5
+ pos: -18.5,64.5
parent: 2
- - uid: 5343
+ - uid: 7555
components:
- type: Transform
- pos: 26.5,-66.5
+ pos: 19.5,67.5
parent: 2
- - uid: 5344
+ - uid: 7556
components:
- type: Transform
- pos: 18.5,-55.5
+ pos: 20.5,67.5
parent: 2
- - uid: 5345
+ - uid: 7557
components:
- type: Transform
- pos: -2.5,26.5
+ pos: -18.5,68.5
parent: 2
- - uid: 5346
+ - uid: 7558
components:
- type: Transform
- pos: -58.5,-11.5
+ pos: -4.5,64.5
parent: 2
- - uid: 5347
+ - uid: 7559
components:
- type: Transform
- pos: 29.5,36.5
+ pos: -6.5,47.5
parent: 2
- - uid: 5348
+ - uid: 7560
components:
- type: Transform
- pos: 62.5,-16.5
+ pos: -4.5,60.5
parent: 2
- - uid: 5349
+ - uid: 7561
components:
- type: Transform
- pos: -35.5,29.5
+ pos: -18.5,67.5
parent: 2
- - uid: 5350
+ - uid: 7562
components:
- type: Transform
- pos: 1.5,-64.5
+ pos: -22.5,40.5
parent: 2
- - uid: 5351
+ - uid: 7563
components:
- type: Transform
- pos: 41.5,-71.5
+ pos: -4.5,61.5
parent: 2
- - uid: 5352
+ - uid: 7564
components:
- type: Transform
- pos: 48.5,-22.5
+ pos: -22.5,45.5
parent: 2
- - uid: 5353
+ - uid: 7565
components:
- type: Transform
- pos: -48.5,-2.5
+ pos: -22.5,36.5
parent: 2
- - uid: 5354
+ - uid: 7566
components:
- type: Transform
- pos: -8.5,-19.5
+ pos: -22.5,39.5
parent: 2
- - uid: 5355
+ - uid: 7567
components:
- type: Transform
- pos: 54.5,-3.5
+ pos: -18.5,66.5
parent: 2
- - uid: 5356
+ - uid: 7568
components:
- type: Transform
- pos: 51.5,-28.5
+ pos: -4.5,65.5
parent: 2
- - uid: 5357
+ - uid: 7569
components:
- type: Transform
- pos: 52.5,-29.5
+ pos: -22.5,37.5
parent: 2
- - uid: 5358
+ - uid: 7570
components:
- type: Transform
- pos: 39.5,-52.5
+ pos: -22.5,44.5
parent: 2
- - uid: 5359
+ - uid: 7571
components:
- type: Transform
- pos: 58.5,-27.5
+ pos: -4.5,66.5
parent: 2
- - uid: 5360
+ - uid: 7572
components:
- type: Transform
- pos: 67.5,-15.5
+ pos: -16.5,68.5
parent: 2
- - uid: 5361
+ - uid: 7573
components:
- type: Transform
- pos: -51.5,-5.5
+ pos: -18.5,65.5
parent: 2
- - uid: 5362
+ - uid: 7574
components:
- type: Transform
- pos: 19.5,50.5
+ pos: -14.5,43.5
parent: 2
- - uid: 5363
+ - uid: 7575
components:
- type: Transform
- pos: 19.5,17.5
+ pos: -18.5,36.5
parent: 2
- - uid: 5364
+ - uid: 7576
components:
- type: Transform
- pos: 19.5,16.5
+ pos: -18.5,37.5
parent: 2
- - uid: 5365
+ - uid: 7577
components:
- type: Transform
- pos: 19.5,26.5
+ pos: -4.5,62.5
parent: 2
- - uid: 5366
+ - uid: 7578
components:
- type: Transform
- pos: 2.5,28.5
+ pos: -18.5,43.5
parent: 2
- - uid: 5367
+ - uid: 7579
components:
- type: Transform
- pos: 23.5,18.5
+ pos: -18.5,41.5
parent: 2
- - uid: 5368
+ - uid: 7580
components:
- type: Transform
- pos: -0.5,-59.5
+ pos: -18.5,39.5
parent: 2
- - uid: 5369
+ - uid: 7581
components:
- type: Transform
- pos: -10.5,-61.5
+ pos: 22.5,67.5
parent: 2
- - uid: 5370
+ - uid: 7582
components:
- type: Transform
- pos: 27.5,-66.5
+ pos: -16.5,70.5
parent: 2
- - uid: 5371
+ - uid: 7583
components:
- type: Transform
- pos: -41.5,44.5
+ pos: -16.5,69.5
parent: 2
- - uid: 5372
+ - uid: 7584
components:
- type: Transform
- pos: -4.5,67.5
+ pos: -18.5,46.5
parent: 2
- - uid: 5373
+ - uid: 7585
components:
- type: Transform
- pos: 4.5,-45.5
+ pos: -18.5,47.5
parent: 2
- - uid: 5374
+ - uid: 7586
components:
- type: Transform
- pos: -18.5,-80.5
+ pos: -18.5,49.5
parent: 2
- - uid: 5375
+ - uid: 7587
components:
- type: Transform
- pos: -30.5,54.5
+ pos: -18.5,63.5
parent: 2
- - uid: 5376
+ - uid: 7588
components:
- type: Transform
- pos: 13.5,-43.5
+ pos: -15.5,41.5
parent: 2
- - uid: 5377
+ - uid: 7589
components:
- type: Transform
- pos: -22.5,20.5
+ pos: -16.5,41.5
parent: 2
- - uid: 5378
+ - uid: 7590
components:
- type: Transform
- pos: -45.5,27.5
+ pos: -13.5,30.5
parent: 2
- - uid: 5379
+ - uid: 7591
components:
- type: Transform
- pos: -35.5,19.5
+ pos: -18.5,44.5
parent: 2
- - uid: 5380
+ - uid: 7592
components:
- type: Transform
- pos: -41.5,17.5
+ pos: -18.5,45.5
parent: 2
- - uid: 5381
+ - uid: 7593
components:
- type: Transform
- pos: -42.5,39.5
+ pos: -18.5,35.5
parent: 2
- - uid: 5382
+ - uid: 7594
components:
- type: Transform
- pos: -41.5,6.5
+ pos: -18.5,34.5
parent: 2
- - uid: 5383
+ - uid: 7595
components:
- type: Transform
- pos: -42.5,33.5
+ pos: -18.5,40.5
parent: 2
- - uid: 5384
+ - uid: 7596
components:
- type: Transform
- pos: 15.5,-42.5
+ pos: -18.5,38.5
parent: 2
- - uid: 5385
+ - uid: 7597
components:
- type: Transform
- pos: -23.5,22.5
+ pos: -18.5,42.5
parent: 2
- - uid: 5386
+ - uid: 7598
components:
- type: Transform
- pos: 13.5,2.5
+ pos: -28.5,55.5
parent: 2
- - uid: 5387
+ - uid: 7599
components:
- type: Transform
- pos: 17.5,-42.5
+ pos: -22.5,31.5
parent: 2
- - uid: 5388
+ - uid: 7600
components:
- type: Transform
- pos: 25.5,-45.5
+ pos: -7.5,27.5
parent: 2
- - uid: 5389
+ - uid: 7601
components:
- type: Transform
- pos: 19.5,44.5
+ pos: -31.5,71.5
parent: 2
- - uid: 5390
+ - uid: 7602
components:
- type: Transform
- pos: 17.5,46.5
+ pos: 7.5,73.5
parent: 2
- - uid: 5391
+ - uid: 7603
components:
- type: Transform
- pos: -54.5,1.5
+ pos: -5.5,50.5
parent: 2
- - uid: 5392
+ - uid: 7604
components:
- type: Transform
- pos: 8.5,30.5
+ pos: -15.5,49.5
parent: 2
- - uid: 5393
+ - uid: 7605
components:
- type: Transform
- pos: 0.5,35.5
+ pos: -15.5,35.5
parent: 2
- - uid: 5394
+ - uid: 7606
components:
- type: Transform
- pos: 6.5,90.5
+ pos: -19.5,41.5
parent: 2
- - uid: 5395
+ - uid: 7607
components:
- type: Transform
- pos: -7.5,50.5
+ pos: -11.5,41.5
parent: 2
- - uid: 5396
+ - uid: 7608
components:
- type: Transform
- pos: -22.5,-65.5
+ pos: -22.5,34.5
parent: 2
- - uid: 5397
+ - uid: 7609
components:
- type: Transform
- pos: 41.5,-67.5
+ pos: -4.5,63.5
parent: 2
- - uid: 5398
+ - uid: 7610
components:
- type: Transform
- pos: 6.5,41.5
+ pos: -28.5,77.5
parent: 2
- - uid: 5399
+ - uid: 7611
components:
- type: Transform
- pos: -41.5,5.5
+ pos: 19.5,66.5
parent: 2
- - uid: 5400
+ - uid: 7612
components:
- type: Transform
- pos: -13.5,71.5
+ pos: 21.5,67.5
parent: 2
- - uid: 5401
+ - uid: 7613
components:
- type: Transform
- pos: -39.5,-27.5
+ pos: 23.5,67.5
parent: 2
- - uid: 5402
+ - uid: 38711
components:
- type: Transform
- pos: -70.5,-20.5
+ pos: -30.5,39.5
parent: 2
- - uid: 5403
+ - uid: 38721
components:
- type: Transform
- pos: -33.5,-28.5
- parent: 2
- - uid: 5404
+ pos: 2.5,2.5
+ parent: 38714
+ - uid: 38722
components:
- type: Transform
- pos: -34.5,57.5
- parent: 2
- - uid: 5405
+ pos: 2.5,1.5
+ parent: 38714
+ - uid: 38723
components:
- type: Transform
- pos: -35.5,61.5
- parent: 2
- - uid: 5406
+ pos: 2.5,0.5
+ parent: 38714
+ - uid: 38724
components:
- type: Transform
- pos: 23.5,53.5
- parent: 2
- - uid: 5407
+ pos: 1.5,0.5
+ parent: 38714
+ - uid: 38725
components:
- type: Transform
- pos: -57.5,-3.5
- parent: 2
- - uid: 5408
+ pos: 0.5,0.5
+ parent: 38714
+ - uid: 38726
components:
- type: Transform
- pos: 14.5,28.5
- parent: 2
- - uid: 5409
+ pos: 1.5,3.5
+ parent: 38714
+ - uid: 38727
components:
- type: Transform
- pos: -23.5,20.5
- parent: 2
- - uid: 5410
+ pos: 1.5,4.5
+ parent: 38714
+ - uid: 38728
components:
- type: Transform
- pos: -55.5,37.5
- parent: 2
- - uid: 5411
+ pos: -0.5,0.5
+ parent: 38714
+ - uid: 38729
components:
- type: Transform
- pos: -57.5,13.5
- parent: 2
- - uid: 5412
+ pos: 3.5,0.5
+ parent: 38714
+ - uid: 38730
components:
- type: Transform
- pos: -35.5,42.5
- parent: 2
- - uid: 5413
+ pos: 0.5,3.5
+ parent: 38714
+ - uid: 38731
components:
- type: Transform
- pos: -18.5,-20.5
- parent: 2
- - uid: 5414
+ pos: 2.5,3.5
+ parent: 38714
+ - uid: 38732
components:
- type: Transform
- pos: 21.5,42.5
- parent: 2
- - uid: 5415
+ pos: 1.5,-0.5
+ parent: 38714
+ - uid: 38733
components:
- type: Transform
- pos: 61.5,-11.5
- parent: 2
- - uid: 5416
+ pos: 1.5,-1.5
+ parent: 38714
+- proto: CableApcStack
+ entities:
+ - uid: 1059
components:
- type: Transform
- pos: -0.5,27.5
- parent: 2
- - uid: 5417
+ parent: 1057
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 7614
components:
- type: Transform
- pos: -12.5,-32.5
+ pos: -45.54966,-12.418917
parent: 2
- - uid: 5418
+ - type: Physics
+ canCollide: False
+ - uid: 7615
components:
- type: Transform
- pos: -28.5,-35.5
+ pos: -28.5,15.5
parent: 2
- - uid: 5419
+ - uid: 7616
components:
- type: Transform
- pos: -64.5,-30.5
+ pos: -32.5,12.5
parent: 2
- - uid: 5420
+ - uid: 7617
components:
- type: Transform
- pos: -41.5,42.5
+ pos: -57.515583,-13.27468
parent: 2
- - uid: 5421
+ - uid: 7618
components:
- type: Transform
- pos: 15.5,28.5
+ pos: -44.46949,5.4162817
parent: 2
- - uid: 5422
+ - uid: 7619
components:
- type: Transform
- pos: 56.5,-12.5
+ pos: -9.5,-31.5
parent: 2
- - uid: 5423
+ - uid: 7620
components:
- type: Transform
- pos: 6.5,85.5
+ pos: -6.5,-39.5
parent: 2
- - uid: 5424
+ - uid: 7621
components:
- type: Transform
- pos: -32.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -6.6078897,-47.40458
parent: 2
- - uid: 5425
+ - uid: 7622
components:
- type: Transform
- pos: -48.5,-25.5
+ pos: 12.4981985,82.59618
parent: 2
- - uid: 5426
+ - type: Physics
+ canCollide: False
+ - uid: 7623
components:
- type: Transform
- pos: -16.5,-7.5
+ pos: -61.497593,-47.552303
parent: 2
- - uid: 5427
+ - uid: 7624
components:
- type: Transform
- pos: -23.5,17.5
+ pos: -36.5,-75.5
parent: 2
- - uid: 5428
+ - type: Physics
+ canCollide: False
+ - uid: 7625
components:
- type: Transform
- pos: -40.5,57.5
+ pos: -79.402534,-8.605592
parent: 2
- - uid: 5429
+ - uid: 7626
components:
- type: Transform
- pos: -39.5,50.5
+ pos: -38.507664,15.744807
parent: 2
- - uid: 5430
+ - type: Physics
+ canCollide: False
+ - uid: 7627
components:
- type: Transform
- pos: 11.5,76.5
+ pos: 0.6408134,44.49488
parent: 2
- - uid: 5431
+ - type: Physics
+ canCollide: False
+ - uid: 7628
components:
- type: Transform
- pos: -0.5,68.5
+ pos: 21.512995,72.57933
parent: 2
- - uid: 5432
+ - type: Physics
+ canCollide: False
+ - uid: 7629
components:
- type: Transform
- pos: -40.5,56.5
+ pos: 2.5825934,-31.27631
parent: 2
- - uid: 5433
+ - type: Physics
+ canCollide: False
+ - uid: 7630
components:
- type: Transform
- pos: -31.5,25.5
+ pos: 55.361206,-47.377773
parent: 2
- - uid: 5434
+ - uid: 7631
components:
- type: Transform
- pos: -11.5,38.5
+ pos: -59.544273,54.0987
parent: 2
- - uid: 5435
+- proto: CableApcStack1
+ entities:
+ - uid: 7632
components:
- type: Transform
- pos: -38.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 35.537243,-66.47184
parent: 2
- - uid: 5436
+- proto: CablecuffsBroken
+ entities:
+ - uid: 7633
components:
- type: Transform
- pos: -38.5,5.5
+ pos: -38.590115,0.39123595
parent: 2
- - uid: 5437
+ - uid: 7634
components:
- type: Transform
- pos: -35.5,17.5
+ pos: -36.569214,0.9812069
parent: 2
- - uid: 5438
+- proto: CableHV
+ entities:
+ - uid: 7635
components:
- type: Transform
- pos: 8.5,-44.5
+ pos: -53.5,15.5
parent: 2
- - uid: 5439
+ - uid: 7636
components:
- type: Transform
- pos: -42.5,30.5
+ pos: -0.5,-44.5
parent: 2
- - uid: 5440
+ - uid: 7637
components:
- type: Transform
- pos: -18.5,-18.5
+ pos: -45.5,4.5
parent: 2
- - uid: 5441
+ - uid: 7638
components:
- type: Transform
- pos: -15.5,-65.5
+ pos: -46.5,4.5
parent: 2
- - uid: 5442
+ - uid: 7639
components:
- type: Transform
- pos: -45.5,-26.5
+ pos: 9.5,11.5
parent: 2
- - uid: 5443
+ - uid: 7640
components:
- type: Transform
- pos: 15.5,-44.5
+ pos: 11.5,-1.5
parent: 2
- - uid: 5444
+ - uid: 7641
components:
- type: Transform
- pos: 11.5,-44.5
+ pos: -0.5,-47.5
parent: 2
- - uid: 5445
+ - uid: 7642
components:
- type: Transform
- pos: -36.5,-13.5
+ pos: -58.5,64.5
parent: 2
- - uid: 5446
+ - uid: 7643
components:
- type: Transform
- pos: -42.5,37.5
+ pos: -51.5,-3.5
parent: 2
- - uid: 5447
+ - uid: 7644
components:
- type: Transform
- pos: -29.5,52.5
+ pos: -42.5,32.5
parent: 2
- - uid: 5448
+ - uid: 7645
components:
- type: Transform
- pos: -0.5,-63.5
+ pos: -43.5,32.5
parent: 2
- - uid: 5449
+ - uid: 7646
components:
- type: Transform
- pos: -70.5,11.5
+ pos: 10.5,7.5
parent: 2
- - uid: 5450
+ - uid: 7647
components:
- type: Transform
- pos: -46.5,18.5
+ pos: -58.5,66.5
parent: 2
- - uid: 5451
+ - uid: 7648
components:
- type: Transform
- pos: -30.5,26.5
+ pos: -58.5,62.5
parent: 2
- - uid: 5452
+ - uid: 7649
components:
- type: Transform
- pos: 0.5,-15.5
+ pos: -58.5,65.5
parent: 2
- - uid: 5453
+ - uid: 7650
components:
- type: Transform
- pos: -58.5,25.5
+ pos: -0.5,-55.5
parent: 2
- - uid: 5454
+ - uid: 7651
components:
- type: Transform
- pos: -33.5,19.5
+ pos: -0.5,-45.5
parent: 2
- - uid: 5455
+ - uid: 7652
components:
- type: Transform
- pos: -26.5,12.5
+ pos: -0.5,-46.5
parent: 2
- - uid: 5456
+ - uid: 7653
components:
- type: Transform
- pos: -33.5,15.5
+ pos: -57.5,63.5
parent: 2
- - uid: 5457
+ - uid: 7654
components:
- type: Transform
- pos: -74.5,-27.5
+ pos: -58.5,63.5
parent: 2
- - uid: 5458
+ - uid: 7655
components:
- type: Transform
- pos: -74.5,-28.5
+ pos: -61.5,-23.5
parent: 2
- - uid: 5459
+ - uid: 7656
components:
- type: Transform
- pos: -44.5,12.5
+ pos: -42.5,-44.5
parent: 2
- - uid: 5460
+ - uid: 7657
components:
- type: Transform
- pos: 10.5,-50.5
+ pos: -33.5,-50.5
parent: 2
- - uid: 5461
+ - uid: 7658
components:
- type: Transform
- pos: -53.5,32.5
+ pos: -29.5,23.5
parent: 2
- - uid: 5462
+ - uid: 7659
components:
- type: Transform
- pos: -57.5,32.5
+ pos: 4.5,17.5
parent: 2
- - uid: 5463
+ - uid: 7660
components:
- type: Transform
- pos: -29.5,1.5
+ pos: -53.5,2.5
parent: 2
- - uid: 5464
+ - uid: 7661
components:
- type: Transform
- pos: -74.5,-21.5
+ pos: -45.5,0.5
parent: 2
- - uid: 5465
+ - uid: 7662
components:
- type: Transform
- pos: -18.5,-6.5
+ pos: -4.5,-63.5
parent: 2
- - uid: 5466
+ - uid: 7663
components:
- type: Transform
- pos: 8.5,1.5
+ pos: -19.5,-61.5
parent: 2
- - uid: 5467
+ - uid: 7664
components:
- type: Transform
- pos: 58.5,8.5
+ pos: -61.5,-26.5
parent: 2
- - uid: 5468
+ - uid: 7665
components:
- type: Transform
- pos: 34.5,-42.5
+ pos: -0.5,-50.5
parent: 2
- - uid: 5469
+ - uid: 7666
components:
- type: Transform
- pos: -62.5,-28.5
+ pos: -51.5,-2.5
parent: 2
- - uid: 5470
+ - uid: 7667
components:
- type: Transform
- pos: -57.5,-10.5
+ pos: 0.5,33.5
parent: 2
- - uid: 5471
+ - uid: 7668
components:
- type: Transform
- pos: -27.5,31.5
+ pos: -1.5,34.5
parent: 2
- - uid: 5472
+ - uid: 7669
components:
- type: Transform
- pos: -11.5,-25.5
+ pos: -27.5,25.5
parent: 2
- - uid: 5473
+ - uid: 7670
components:
- type: Transform
- pos: 5.5,-35.5
+ pos: 0.5,34.5
parent: 2
- - uid: 5474
+ - uid: 7671
components:
- type: Transform
- pos: 7.5,-24.5
+ pos: -45.5,2.5
parent: 2
- - uid: 5475
+ - uid: 7672
components:
- type: Transform
- pos: -58.5,-22.5
+ pos: -58.5,55.5
parent: 2
- - uid: 5476
+ - uid: 7673
components:
- type: Transform
- pos: -46.5,7.5
+ pos: 49.5,-0.5
parent: 2
- - uid: 5477
+ - uid: 7674
components:
- type: Transform
- pos: -51.5,6.5
+ pos: -58.5,54.5
parent: 2
- - uid: 5478
+ - uid: 7675
components:
- type: Transform
- pos: -65.5,25.5
+ pos: -35.5,35.5
parent: 2
- - uid: 5479
+ - uid: 7676
components:
- type: Transform
- pos: -13.5,-44.5
+ pos: -57.5,61.5
parent: 2
- - uid: 5480
+ - uid: 7677
components:
- type: Transform
- pos: -28.5,-52.5
+ pos: -54.5,-31.5
parent: 2
- - uid: 5481
+ - uid: 7678
components:
- type: Transform
- pos: 5.5,-33.5
+ pos: 8.5,5.5
parent: 2
- - uid: 5482
+ - uid: 7679
components:
- type: Transform
- pos: 15.5,-24.5
+ pos: 57.5,-40.5
parent: 2
- - uid: 5483
+ - uid: 7680
components:
- type: Transform
- pos: -41.5,-36.5
+ pos: -35.5,32.5
parent: 2
- - uid: 5484
+ - uid: 7681
components:
- type: Transform
- pos: -13.5,-52.5
+ pos: 10.5,38.5
parent: 2
- - uid: 5485
+ - uid: 7682
components:
- type: Transform
- pos: 22.5,-10.5
+ pos: 9.5,37.5
parent: 2
- - uid: 5486
+ - uid: 7683
components:
- type: Transform
- pos: -58.5,50.5
+ pos: -24.5,-61.5
parent: 2
- - uid: 5487
+ - uid: 7684
components:
- type: Transform
- pos: -45.5,51.5
+ pos: 47.5,-3.5
parent: 2
- - uid: 5488
+ - uid: 7685
components:
- type: Transform
- pos: -57.5,46.5
+ pos: 64.5,-0.5
parent: 2
- - uid: 5489
+ - uid: 7686
components:
- type: Transform
- pos: 11.5,3.5
+ pos: -47.5,39.5
parent: 2
- - uid: 5490
+ - uid: 7687
components:
- type: Transform
- pos: 11.5,-3.5
+ pos: -49.5,0.5
parent: 2
- - uid: 5491
+ - uid: 7688
components:
- type: Transform
- pos: 2.5,17.5
+ pos: -35.5,27.5
parent: 2
- - uid: 5492
+ - uid: 7689
components:
- type: Transform
- pos: -9.5,14.5
+ pos: -52.5,0.5
parent: 2
- - uid: 5493
+ - uid: 7690
components:
- type: Transform
- pos: -0.5,19.5
+ pos: -28.5,-54.5
parent: 2
- - uid: 5494
+ - uid: 7691
components:
- type: Transform
- pos: -13.5,-11.5
+ pos: -51.5,0.5
parent: 2
- - uid: 5495
+ - uid: 7692
components:
- type: Transform
- pos: -13.5,16.5
+ pos: -54.5,-28.5
parent: 2
- - uid: 5496
+ - uid: 7693
components:
- type: Transform
- pos: -7.5,-32.5
+ pos: -26.5,25.5
parent: 2
- - uid: 5497
+ - uid: 7694
components:
- type: Transform
- pos: -15.5,-25.5
+ pos: -0.5,-48.5
parent: 2
- - uid: 5498
+ - uid: 7695
components:
- type: Transform
- pos: -18.5,-44.5
+ pos: 4.5,18.5
parent: 2
- - uid: 5499
+ - uid: 7696
components:
- type: Transform
- pos: -38.5,-48.5
+ pos: -28.5,-41.5
parent: 2
- - uid: 5500
+ - uid: 7697
components:
- type: Transform
- pos: -30.5,-52.5
+ pos: -51.5,4.5
parent: 2
- - uid: 5501
+ - uid: 7698
components:
- type: Transform
- pos: -44.5,17.5
+ pos: -58.5,61.5
parent: 2
- - uid: 5502
+ - uid: 7699
components:
- type: Transform
- pos: -65.5,9.5
+ pos: -35.5,33.5
parent: 2
- - uid: 5503
+ - uid: 7700
components:
- type: Transform
- pos: -63.5,23.5
+ pos: -28.5,-43.5
parent: 2
- - uid: 5504
+ - uid: 7701
components:
- type: Transform
- pos: -78.5,14.5
+ pos: -17.5,-61.5
parent: 2
- - uid: 5505
+ - uid: 7702
components:
- type: Transform
- pos: 13.5,-13.5
+ pos: -11.5,-61.5
parent: 2
- - uid: 5506
+ - uid: 7703
components:
- type: Transform
- pos: -4.5,-31.5
+ pos: -60.5,63.5
parent: 2
- - uid: 5507
+ - uid: 7704
components:
- type: Transform
- pos: -9.5,-25.5
+ pos: -35.5,30.5
parent: 2
- - uid: 5508
+ - uid: 7705
components:
- type: Transform
- pos: 30.5,-31.5
+ pos: -51.5,2.5
parent: 2
- - uid: 5509
+ - uid: 7706
components:
- type: Transform
- pos: -47.5,-16.5
+ pos: 77.5,-0.5
parent: 2
- - uid: 5510
+ - uid: 7707
components:
- type: Transform
- pos: -46.5,-12.5
+ pos: -54.5,-22.5
parent: 2
- - uid: 5511
+ - uid: 7708
components:
- type: Transform
- pos: -63.5,59.5
+ pos: -28.5,25.5
parent: 2
- - uid: 5512
+ - uid: 7709
components:
- type: Transform
- pos: -62.5,25.5
+ pos: -23.5,-61.5
parent: 2
- - uid: 5513
+ - uid: 7710
components:
- type: Transform
- pos: -61.5,-22.5
+ pos: -28.5,-50.5
parent: 2
- - uid: 5514
+ - uid: 7711
components:
- type: Transform
- pos: -47.5,19.5
+ pos: -57.5,2.5
parent: 2
- - uid: 5515
+ - uid: 7712
components:
- type: Transform
- pos: -64.5,-22.5
+ pos: -59.5,2.5
parent: 2
- - uid: 5516
+ - uid: 7713
components:
- type: Transform
- pos: 21.5,-34.5
+ pos: -60.5,2.5
parent: 2
- - uid: 5517
+ - uid: 7714
components:
- type: Transform
- pos: 8.5,-50.5
+ pos: 0.5,36.5
parent: 2
- - uid: 5518
+ - uid: 7715
components:
- type: Transform
- pos: -38.5,-52.5
+ pos: -1.5,31.5
parent: 2
- - uid: 5519
+ - uid: 7716
components:
- type: Transform
- pos: 31.5,-50.5
+ pos: 59.5,-0.5
parent: 2
- - uid: 5520
+ - uid: 7717
components:
- type: Transform
- pos: 17.5,-45.5
+ pos: -39.5,-4.5
parent: 2
- - uid: 5521
+ - uid: 7718
components:
- type: Transform
- pos: 32.5,-49.5
+ pos: -25.5,-61.5
parent: 2
- - uid: 5522
+ - uid: 7719
components:
- type: Transform
- pos: 17.5,47.5
+ pos: -28.5,-48.5
parent: 2
- - uid: 5523
+ - uid: 7720
components:
- type: Transform
- pos: 1.5,48.5
+ pos: -33.5,-48.5
parent: 2
- - uid: 5524
+ - uid: 7721
components:
- type: Transform
- pos: 19.5,18.5
+ pos: -18.5,-61.5
parent: 2
- - uid: 5525
+ - uid: 7722
components:
- type: Transform
- pos: 41.5,-74.5
+ pos: -35.5,26.5
parent: 2
- - uid: 5526
+ - uid: 7723
components:
- type: Transform
pos: -12.5,-61.5
parent: 2
- - uid: 5527
+ - uid: 7724
components:
- type: Transform
- pos: 20.5,17.5
+ pos: -22.5,-61.5
parent: 2
- - uid: 5528
+ - uid: 7725
components:
- type: Transform
- pos: 20.5,28.5
+ pos: -2.5,31.5
parent: 2
- - uid: 5529
+ - uid: 7726
components:
- type: Transform
- pos: -3.5,-73.5
+ pos: -13.5,-61.5
parent: 2
- - uid: 5530
+ - uid: 7727
components:
- type: Transform
- pos: -46.5,-74.5
+ pos: -42.5,-41.5
parent: 2
- - uid: 5531
+ - uid: 7728
components:
- type: Transform
- pos: -3.5,47.5
+ pos: -35.5,29.5
parent: 2
- - uid: 5532
+ - uid: 7729
components:
- type: Transform
- pos: 23.5,31.5
+ pos: -51.5,2.5
parent: 2
- - uid: 5533
+ - uid: 7730
components:
- type: Transform
- pos: -55.5,0.5
+ pos: -0.5,-54.5
parent: 2
- - uid: 5534
+ - uid: 7731
components:
- type: Transform
- pos: 77.5,-21.5
+ pos: -42.5,-43.5
parent: 2
- - uid: 5535
+ - uid: 7732
components:
- type: Transform
- pos: 44.5,-46.5
+ pos: -28.5,-34.5
parent: 2
- - uid: 5536
+ - uid: 7733
components:
- type: Transform
- pos: 48.5,-10.5
+ pos: -0.5,-42.5
parent: 2
- - uid: 5537
+ - uid: 7734
components:
- type: Transform
- pos: 28.5,-1.5
+ pos: -33.5,-51.5
parent: 2
- - uid: 5538
+ - uid: 7735
components:
- type: Transform
- pos: 54.5,-6.5
+ pos: -53.5,-3.5
parent: 2
- - uid: 5539
+ - uid: 7736
components:
- type: Transform
- pos: 43.5,8.5
+ pos: 75.5,-0.5
parent: 2
- - uid: 5540
+ - uid: 7737
components:
- type: Transform
- pos: 1.5,-7.5
+ pos: -53.5,-2.5
parent: 2
- - uid: 5541
+ - uid: 7738
components:
- type: Transform
- pos: 4.5,77.5
+ pos: -53.5,0.5
parent: 2
- - uid: 5542
+ - uid: 7739
components:
- type: Transform
- pos: 33.5,-67.5
+ pos: -53.5,-0.5
parent: 2
- - uid: 5543
+ - uid: 7740
components:
- type: Transform
- pos: -3.5,-65.5
+ pos: -53.5,0.5
parent: 2
- - uid: 5544
+ - uid: 7741
components:
- type: Transform
- pos: -21.5,-71.5
+ pos: -28.5,-40.5
parent: 2
- - uid: 5545
+ - uid: 7742
components:
- type: Transform
- pos: -29.5,23.5
+ pos: -50.5,33.5
parent: 2
- - uid: 5546
+ - uid: 7743
components:
- type: Transform
- pos: -42.5,-27.5
+ pos: -35.5,31.5
parent: 2
- - uid: 5547
+ - uid: 7744
components:
- type: Transform
- pos: -22.5,-1.5
+ pos: -9.5,-63.5
parent: 2
- - uid: 5548
+ - uid: 7745
components:
- type: Transform
- pos: -45.5,34.5
+ pos: -47.5,38.5
parent: 2
- - uid: 5549
+ - uid: 7746
components:
- type: Transform
- pos: 38.5,-71.5
+ pos: -49.5,32.5
parent: 2
- - uid: 5550
+ - uid: 7747
components:
- type: Transform
- pos: 31.5,-66.5
+ pos: 8.5,3.5
parent: 2
- - uid: 5551
+ - uid: 7748
components:
- type: Transform
- pos: -6.5,-61.5
+ pos: -0.5,-40.5
parent: 2
- - uid: 5552
+ - uid: 7749
components:
- type: Transform
- pos: -73.5,-30.5
+ pos: -0.5,-56.5
parent: 2
- - uid: 5553
+ - uid: 7750
components:
- type: Transform
- pos: -72.5,9.5
+ pos: -65.5,8.5
parent: 2
- - uid: 5554
+ - uid: 7751
components:
- type: Transform
- pos: 0.5,-14.5
+ pos: 10.5,6.5
parent: 2
- - uid: 5555
+ - uid: 7752
components:
- type: Transform
- pos: -52.5,16.5
+ pos: 51.5,-0.5
parent: 2
- - uid: 5556
+ - uid: 7753
components:
- type: Transform
- pos: -50.5,12.5
+ pos: 10.5,37.5
parent: 2
- - uid: 5557
+ - uid: 7754
components:
- type: Transform
- pos: -52.5,27.5
+ pos: 1.5,40.5
parent: 2
- - uid: 5558
+ - uid: 7755
components:
- type: Transform
- pos: -51.5,47.5
+ pos: -54.5,-32.5
parent: 2
- - uid: 5559
+ - uid: 7756
components:
- type: Transform
- pos: -45.5,52.5
+ pos: -59.5,44.5
parent: 2
- - uid: 5560
+ - uid: 7757
components:
- type: Transform
- pos: -55.5,45.5
+ pos: -61.5,-27.5
parent: 2
- - uid: 5561
+ - uid: 7758
components:
- type: Transform
- pos: -45.5,54.5
+ pos: -21.5,-61.5
parent: 2
- - uid: 5562
+ - uid: 7759
components:
- type: Transform
- pos: -30.5,71.5
+ pos: -0.5,-43.5
parent: 2
- - uid: 5563
+ - uid: 7760
components:
- type: Transform
- pos: 40.5,-34.5
+ pos: -28.5,-52.5
parent: 2
- - uid: 5564
+ - uid: 7761
components:
- type: Transform
- pos: -41.5,10.5
+ pos: -54.5,-30.5
parent: 2
- - uid: 5565
+ - uid: 7762
components:
- type: Transform
- pos: 8.5,-26.5
+ pos: -28.5,23.5
parent: 2
- - uid: 5566
+ - uid: 7763
components:
- type: Transform
- pos: 25.5,-42.5
+ pos: -33.5,-49.5
parent: 2
- - uid: 5567
+ - uid: 7764
components:
- type: Transform
- pos: -54.5,-27.5
+ pos: 4.5,15.5
parent: 2
- - uid: 5568
+ - uid: 7765
components:
- type: Transform
- pos: -29.5,54.5
+ pos: 10.5,-0.5
parent: 2
- - uid: 5569
+ - uid: 7766
components:
- type: Transform
- pos: -22.5,-27.5
+ pos: 8.5,37.5
parent: 2
- - uid: 5570
+ - uid: 7767
components:
- type: Transform
- pos: 21.5,46.5
+ pos: -67.5,-2.5
parent: 2
- - uid: 5571
+ - uid: 7768
components:
- type: Transform
- pos: -2.5,34.5
+ pos: 0.5,38.5
parent: 2
- - uid: 5572
+ - uid: 7769
components:
- type: Transform
- pos: -38.5,50.5
+ pos: 53.5,-0.5
parent: 2
- - uid: 5573
+ - uid: 7770
components:
- type: Transform
- pos: 32.5,-60.5
+ pos: 52.5,-0.5
parent: 2
- - uid: 5574
+ - uid: 7771
components:
- type: Transform
- pos: 11.5,79.5
+ pos: -0.5,-52.5
parent: 2
- - uid: 5575
+ - uid: 7772
components:
- type: Transform
- pos: 39.5,-70.5
+ pos: 0.5,31.5
parent: 2
- - uid: 5576
+ - uid: 7773
components:
- type: Transform
- pos: -18.5,59.5
+ pos: -42.5,-41.5
parent: 2
- - uid: 5577
+ - uid: 7774
components:
- type: Transform
- pos: 39.5,-75.5
+ pos: 5.5,38.5
parent: 2
- - uid: 5578
+ - uid: 7775
components:
- type: Transform
- pos: -15.5,-75.5
+ pos: 7.5,14.5
parent: 2
- - uid: 5579
+ - uid: 7776
components:
- type: Transform
- pos: -39.5,37.5
+ pos: -26.5,26.5
parent: 2
- - uid: 5580
+ - uid: 7777
components:
- type: Transform
- pos: -6.5,27.5
+ pos: -50.5,30.5
parent: 2
- - uid: 5581
+ - uid: 7778
components:
- type: Transform
- pos: -58.5,-20.5
+ pos: -46.5,34.5
parent: 2
- - uid: 5582
+ - uid: 7779
components:
- type: Transform
- pos: 2.5,61.5
+ pos: 47.5,-1.5
parent: 2
- - uid: 5583
+ - uid: 7780
components:
- type: Transform
- pos: -18.5,-65.5
+ pos: -10.5,-61.5
parent: 2
- - uid: 5584
+ - uid: 7781
components:
- type: Transform
- pos: -0.5,-70.5
+ pos: -16.5,-61.5
parent: 2
- - uid: 5585
+ - uid: 7782
components:
- type: Transform
- pos: 17.5,21.5
+ pos: -7.5,-63.5
parent: 2
- - uid: 5586
+ - uid: 7783
components:
- type: Transform
- pos: 26.5,30.5
+ pos: 8.5,11.5
parent: 2
- - uid: 5587
+ - uid: 7784
components:
- type: Transform
- pos: 18.5,38.5
+ pos: -9.5,-62.5
parent: 2
- - uid: 5588
+ - uid: 7785
components:
- type: Transform
- pos: -61.5,1.5
+ pos: -0.5,-39.5
parent: 2
- - uid: 5589
+ - uid: 7786
components:
- type: Transform
- pos: 56.5,-30.5
+ pos: -28.5,-42.5
parent: 2
- - uid: 5590
+ - uid: 7787
components:
- type: Transform
- pos: 40.5,-36.5
+ pos: 58.5,-0.5
parent: 2
- - uid: 5591
+ - uid: 7788
components:
- type: Transform
- pos: 27.5,-56.5
+ pos: 52.5,21.5
parent: 2
- - uid: 5592
+ - uid: 7789
components:
- type: Transform
- pos: 5.5,90.5
+ pos: 10.5,1.5
parent: 2
- - uid: 5593
+ - uid: 7790
components:
- type: Transform
- pos: -18.5,28.5
+ pos: 68.5,-0.5
parent: 2
- - uid: 5594
+ - uid: 7791
components:
- type: Transform
- pos: -37.5,43.5
+ pos: -35.5,36.5
parent: 2
- - uid: 5595
+ - uid: 7792
components:
- type: Transform
- pos: 24.5,5.5
+ pos: -74.5,-9.5
parent: 2
- - uid: 5596
+ - uid: 7793
components:
- type: Transform
- pos: 21.5,9.5
+ pos: 52.5,19.5
parent: 2
- - uid: 5597
+ - uid: 7794
components:
- type: Transform
- pos: 6.5,71.5
+ pos: -33.5,-52.5
parent: 2
- - uid: 5598
+ - uid: 7795
components:
- type: Transform
- pos: -10.5,-56.5
+ pos: 52.5,17.5
parent: 2
- - uid: 5599
+ - uid: 7796
components:
- type: Transform
- pos: 13.5,-55.5
+ pos: -0.5,-57.5
parent: 2
- - uid: 5600
+ - uid: 7797
components:
- type: Transform
- pos: 0.5,-61.5
+ pos: -0.5,-41.5
parent: 2
- - uid: 5601
+ - uid: 7798
components:
- type: Transform
- pos: 50.5,-46.5
+ pos: -118.5,27.5
parent: 2
- - uid: 5602
+ - uid: 7799
components:
- type: Transform
- pos: 69.5,-18.5
+ pos: 52.5,18.5
parent: 2
- - uid: 5603
+ - uid: 7800
components:
- type: Transform
- pos: 52.5,-21.5
+ pos: 52.5,16.5
parent: 2
- - uid: 5604
+ - uid: 7801
components:
- type: Transform
- pos: 40.5,-15.5
+ pos: -53.5,-6.5
parent: 2
- - uid: 5605
+ - uid: 7802
components:
- type: Transform
- pos: 26.5,57.5
+ pos: 6.5,37.5
parent: 2
- - uid: 5606
+ - uid: 7803
components:
- type: Transform
- pos: -64.5,7.5
+ pos: -54.5,-23.5
parent: 2
- - uid: 5607
+ - uid: 7804
components:
- type: Transform
- pos: 34.5,-9.5
+ pos: -50.5,-7.5
parent: 2
- - uid: 5608
+ - uid: 7805
components:
- type: Transform
- pos: 56.5,-46.5
+ pos: -46.5,38.5
parent: 2
- - uid: 5609
+ - uid: 7806
components:
- type: Transform
- pos: 21.5,-2.5
+ pos: 4.5,40.5
parent: 2
- - uid: 5610
+ - uid: 7807
components:
- type: Transform
- pos: 43.5,12.5
+ pos: -48.5,5.5
parent: 2
- - uid: 5611
+ - uid: 7808
components:
- type: Transform
- pos: 29.5,9.5
+ pos: 53.5,22.5
parent: 2
- - uid: 5612
+ - uid: 7809
components:
- type: Transform
- pos: -58.5,-28.5
+ pos: 73.5,-0.5
parent: 2
- - uid: 5613
+ - uid: 7810
components:
- type: Transform
- pos: 21.5,53.5
+ pos: -46.5,-32.5
parent: 2
- - uid: 5614
+ - uid: 7811
components:
- type: Transform
- pos: 10.5,39.5
+ pos: -35.5,25.5
parent: 2
- - uid: 5615
+ - uid: 7812
components:
- type: Transform
- pos: 28.5,32.5
+ pos: -54.5,-26.5
parent: 2
- - uid: 5616
+ - uid: 7813
components:
- type: Transform
- pos: 17.5,-2.5
+ pos: -32.5,23.5
parent: 2
- - uid: 5617
+ - uid: 7814
components:
- type: Transform
- pos: -4.5,-19.5
+ pos: 52.5,22.5
parent: 2
- - uid: 5618
+ - uid: 7815
components:
- type: Transform
- pos: -46.5,39.5
+ pos: -48.5,41.5
parent: 2
- - uid: 5619
+ - uid: 7816
components:
- type: Transform
- pos: -58.5,58.5
+ pos: -35.5,23.5
parent: 2
- - uid: 5620
+ - uid: 7817
components:
- type: Transform
- pos: -64.5,58.5
+ pos: -51.5,-4.5
parent: 2
- - uid: 5621
+ - uid: 7818
components:
- type: Transform
- pos: -52.5,50.5
+ pos: -54.5,-27.5
parent: 2
- - uid: 5622
+ - uid: 7819
components:
- type: Transform
- pos: -25.5,-30.5
+ pos: -49.5,41.5
parent: 2
- - uid: 5623
+ - uid: 7820
components:
- type: Transform
- pos: 10.5,-19.5
+ pos: -0.5,-58.5
parent: 2
- - uid: 5624
+ - uid: 7821
components:
- type: Transform
- pos: -65.5,57.5
+ pos: -51.5,41.5
parent: 2
- - uid: 5625
+ - uid: 7822
components:
- type: Transform
- pos: -34.5,62.5
+ pos: 5.5,38.5
parent: 2
- - uid: 5626
+ - uid: 7823
components:
- type: Transform
- pos: -13.5,68.5
+ pos: 55.5,-0.5
parent: 2
- - uid: 5627
+ - uid: 7824
components:
- type: Transform
- pos: 44.5,-63.5
+ pos: 10.5,10.5
parent: 2
- - uid: 5628
+ - uid: 7825
components:
- type: Transform
- pos: 2.5,60.5
+ pos: 57.5,-0.5
parent: 2
- - uid: 5629
+ - uid: 7826
components:
- type: Transform
- pos: -35.5,24.5
+ pos: 23.5,31.5
parent: 2
- - uid: 5630
+ - uid: 7827
components:
- type: Transform
- pos: -6.5,68.5
+ pos: 47.5,-0.5
parent: 2
- - uid: 5631
+ - uid: 7828
components:
- type: Transform
- pos: -38.5,42.5
+ pos: 72.5,-0.5
parent: 2
- - uid: 5632
+ - uid: 7829
components:
- type: Transform
- pos: -65.5,30.5
+ pos: -50.5,41.5
parent: 2
- - uid: 5633
+ - uid: 7830
components:
- type: Transform
- pos: -62.5,47.5
+ pos: 25.5,32.5
parent: 2
- - uid: 5634
+ - uid: 7831
components:
- type: Transform
- pos: -56.5,24.5
+ pos: -39.5,-5.5
parent: 2
- - uid: 5635
+ - uid: 7832
components:
- type: Transform
- pos: -51.5,18.5
+ pos: 24.5,31.5
parent: 2
- - uid: 5636
+ - uid: 7833
components:
- type: Transform
- pos: -5.5,-16.5
+ pos: 71.5,-0.5
parent: 2
- - uid: 5637
+ - uid: 7834
components:
- type: Transform
- pos: -31.5,27.5
+ pos: -28.5,-53.5
parent: 2
- - uid: 5638
+ - uid: 7835
components:
- type: Transform
- pos: -24.5,14.5
+ pos: -34.5,23.5
parent: 2
- - uid: 5639
+ - uid: 7836
components:
- type: Transform
- pos: -27.5,-2.5
+ pos: -54.5,30.5
parent: 2
- - uid: 5640
+ - uid: 7837
components:
- type: Transform
- pos: 9.5,-7.5
+ pos: 0.5,39.5
parent: 2
- - uid: 5641
+ - uid: 7838
components:
- type: Transform
- pos: -45.5,19.5
+ pos: -28.5,-51.5
parent: 2
- - uid: 5642
+ - uid: 7839
components:
- type: Transform
- pos: -66.5,43.5
+ pos: -31.5,23.5
parent: 2
- - uid: 5643
+ - uid: 7840
components:
- type: Transform
- pos: -63.5,-22.5
+ pos: -54.5,41.5
parent: 2
- - uid: 5644
+ - uid: 7841
components:
- type: Transform
- pos: -25.5,-19.5
+ pos: 22.5,31.5
parent: 2
- - uid: 5645
+ - uid: 7842
components:
- type: Transform
- pos: -28.5,5.5
+ pos: 5.5,14.5
parent: 2
- - uid: 5646
+ - uid: 7843
components:
- type: Transform
- pos: 6.5,72.5
+ pos: -49.5,42.5
parent: 2
- - uid: 5647
+ - uid: 7844
components:
- type: Transform
- pos: 0.5,37.5
+ pos: 10.5,5.5
parent: 2
- - uid: 5648
+ - uid: 7845
components:
- type: Transform
- pos: 0.5,-67.5
+ pos: 10.5,8.5
parent: 2
- - uid: 5649
+ - uid: 7846
components:
- type: Transform
- pos: -13.5,-79.5
+ pos: 10.5,11.5
parent: 2
- - uid: 5650
+ - uid: 7847
components:
- type: Transform
- pos: 9.5,23.5
+ pos: 9.5,5.5
parent: 2
- - uid: 5651
+ - uid: 7848
components:
- type: Transform
- pos: 5.5,-55.5
+ pos: 70.5,-0.5
parent: 2
- - uid: 5652
+ - uid: 7849
components:
- type: Transform
- pos: -15.5,-80.5
+ pos: -28.5,-47.5
parent: 2
- - uid: 5653
+ - uid: 7850
components:
- type: Transform
- pos: 10.5,29.5
+ pos: 0.5,35.5
parent: 2
- - uid: 5654
+ - uid: 7851
components:
- type: Transform
- pos: -10.5,-77.5
+ pos: -3.5,-63.5
parent: 2
- - uid: 5655
+ - uid: 7852
components:
- type: Transform
- pos: 2.5,-77.5
+ pos: -54.5,-6.5
parent: 2
- - uid: 5656
+ - uid: 7853
components:
- type: Transform
- pos: 11.5,28.5
+ pos: -9.5,-61.5
parent: 2
- - uid: 5657
+ - uid: 7854
components:
- type: Transform
- pos: -12.5,-78.5
+ pos: -14.5,-61.5
parent: 2
- - uid: 5658
+ - uid: 7855
components:
- type: Transform
- pos: -31.5,-77.5
+ pos: -6.5,-63.5
parent: 2
- - uid: 5659
+ - uid: 7856
components:
- type: Transform
- pos: -13.5,-7.5
+ pos: -15.5,-61.5
parent: 2
- - uid: 5660
+ - uid: 7857
components:
- type: Transform
- pos: -42.5,-24.5
+ pos: 10.5,39.5
parent: 2
- - uid: 5661
+ - uid: 7858
components:
- type: Transform
- pos: -23.5,-5.5
+ pos: -48.5,40.5
parent: 2
- - uid: 5662
+ - uid: 7859
components:
- type: Transform
- pos: -48.5,46.5
+ pos: 27.5,27.5
parent: 2
- - uid: 5663
+ - uid: 7860
components:
- type: Transform
- pos: -62.5,49.5
+ pos: -54.5,31.5
parent: 2
- - uid: 5664
+ - uid: 7861
components:
- type: Transform
- pos: -54.5,48.5
+ pos: -54.5,33.5
parent: 2
- - uid: 5665
+ - uid: 7862
components:
- type: Transform
- pos: -74.5,15.5
+ pos: 6.5,14.5
parent: 2
- - uid: 5666
+ - uid: 7863
components:
- type: Transform
- pos: -47.5,22.5
+ pos: -75.5,-9.5
parent: 2
- - uid: 5667
+ - uid: 7864
components:
- type: Transform
- pos: -61.5,14.5
+ pos: 10.5,0.5
parent: 2
- - uid: 5668
+ - uid: 7865
components:
- type: Transform
- pos: -60.5,9.5
+ pos: 8.5,12.5
parent: 2
- - uid: 5669
+ - uid: 7866
components:
- type: Transform
- pos: -54.5,47.5
+ pos: -52.5,41.5
parent: 2
- - uid: 5670
+ - uid: 7867
components:
- type: Transform
- pos: -47.5,-15.5
+ pos: 27.5,26.5
parent: 2
- - uid: 5671
+ - uid: 7868
components:
- type: Transform
- pos: -64.5,54.5
+ pos: -54.5,38.5
parent: 2
- - uid: 5672
+ - uid: 7869
components:
- type: Transform
- pos: -55.5,50.5
+ pos: 25.5,31.5
parent: 2
- - uid: 5673
+ - uid: 7870
components:
- type: Transform
- pos: -52.5,18.5
+ pos: 74.5,-0.5
parent: 2
- - uid: 5674
+ - uid: 7871
components:
- type: Transform
- pos: -77.5,4.5
+ pos: -48.5,-7.5
parent: 2
- - uid: 5675
+ - uid: 7872
components:
- type: Transform
- pos: -58.5,5.5
+ pos: -28.5,-56.5
parent: 2
- - uid: 5676
+ - uid: 7873
components:
- type: Transform
- pos: -19.5,-27.5
+ pos: -8.5,-63.5
parent: 2
- - uid: 5677
+ - uid: 7874
components:
- type: Transform
- pos: 9.5,-3.5
+ pos: -0.5,-49.5
parent: 2
- - uid: 5678
+ - uid: 7875
components:
- type: Transform
- pos: 8.5,-2.5
+ pos: -50.5,33.5
parent: 2
- - uid: 5679
+ - uid: 7876
components:
- type: Transform
- pos: 10.5,-4.5
+ pos: -44.5,-1.5
parent: 2
- - uid: 5680
+ - uid: 7877
components:
- type: Transform
- pos: 10.5,63.5
+ pos: 2.5,40.5
parent: 2
- - uid: 5681
+ - uid: 7878
components:
- type: Transform
- pos: 45.5,0.5
+ pos: -37.5,-48.5
parent: 2
- - uid: 5682
+ - uid: 7879
components:
- type: Transform
- pos: 36.5,-1.5
+ pos: -38.5,-48.5
parent: 2
- - uid: 5683
+ - uid: 7880
components:
- type: Transform
- pos: 57.5,-13.5
+ pos: -58.5,-9.5
parent: 2
- - uid: 5684
+ - uid: 7881
components:
- type: Transform
- pos: -56.5,2.5
+ pos: -36.5,-48.5
parent: 2
- - uid: 5685
+ - uid: 7882
components:
- type: Transform
- pos: 23.5,47.5
+ pos: -35.5,-48.5
parent: 2
- - uid: 5686
+ - uid: 7883
components:
- type: Transform
- pos: 14.5,-55.5
+ pos: -86.5,-4.5
parent: 2
- - uid: 5687
+ - uid: 7884
components:
- type: Transform
- pos: -29.5,57.5
+ pos: -26.5,27.5
parent: 2
- - uid: 5688
+ - uid: 7885
components:
- type: Transform
- pos: -15.5,57.5
+ pos: -41.5,-6.5
parent: 2
- - uid: 5689
+ - uid: 7886
components:
- type: Transform
- pos: -42.5,25.5
+ pos: -2.5,33.5
parent: 2
- - uid: 5690
+ - uid: 7887
components:
- type: Transform
- pos: 48.5,-20.5
+ pos: -86.5,-1.5
parent: 2
- - uid: 5691
+ - uid: 7888
components:
- type: Transform
- pos: 6.5,23.5
+ pos: -82.5,-13.5
parent: 2
- - uid: 5692
+ - uid: 7889
components:
- type: Transform
- pos: 6.5,48.5
+ pos: -83.5,-13.5
parent: 2
- - uid: 5693
+ - uid: 7890
components:
- type: Transform
- pos: -52.5,-16.5
+ pos: -2.5,34.5
parent: 2
- - uid: 5694
+ - uid: 7891
components:
- type: Transform
- pos: 14.5,66.5
+ pos: 56.5,-0.5
parent: 2
- - uid: 5695
+ - uid: 7892
components:
- type: Transform
- pos: 37.5,-55.5
+ pos: -84.5,-13.5
parent: 2
- - uid: 5696
+ - uid: 7893
components:
- type: Transform
- pos: 38.5,-46.5
+ pos: -85.5,-13.5
parent: 2
- - uid: 5697
+ - uid: 7894
components:
- type: Transform
- pos: 47.5,-20.5
+ pos: 63.5,-0.5
parent: 2
- - uid: 5698
+ - uid: 7895
components:
- type: Transform
- pos: 36.5,-7.5
+ pos: 48.5,-0.5
parent: 2
- - uid: 5699
+ - uid: 7896
components:
- type: Transform
- pos: -49.5,1.5
+ pos: 50.5,-0.5
parent: 2
- - uid: 5700
+ - uid: 7897
components:
- type: Transform
- pos: 10.5,46.5
+ pos: 54.5,-0.5
parent: 2
- - uid: 5701
+ - uid: 7898
components:
- type: Transform
- pos: 17.5,4.5
+ pos: -86.5,-13.5
parent: 2
- - uid: 5702
+ - uid: 7899
components:
- type: Transform
- pos: -54.5,-7.5
+ pos: -41.5,-1.5
parent: 2
- - uid: 5703
+ - uid: 7900
components:
- type: Transform
- pos: -45.5,49.5
+ pos: -40.5,-1.5
parent: 2
- - uid: 5704
+ - uid: 7901
components:
- type: Transform
- pos: -53.5,45.5
+ pos: 1.5,39.5
parent: 2
- - uid: 5705
+ - uid: 7902
components:
- type: Transform
- pos: 38.5,-3.5
+ pos: -30.5,23.5
parent: 2
- - uid: 5706
+ - uid: 7903
components:
- type: Transform
- pos: -62.5,-19.5
+ pos: -28.5,24.5
parent: 2
- - uid: 5707
+ - uid: 7904
components:
- type: Transform
- pos: -17.5,68.5
+ pos: -53.5,41.5
parent: 2
- - uid: 5708
+ - uid: 7905
components:
- type: Transform
- pos: -35.5,36.5
+ pos: -33.5,-53.5
parent: 2
- - uid: 5709
+ - uid: 7906
components:
- type: Transform
- pos: -19.5,-65.5
+ pos: 62.5,-0.5
parent: 2
- - uid: 5710
+ - uid: 7907
components:
- type: Transform
- pos: 1.5,-70.5
+ pos: -0.5,-53.5
parent: 2
- - uid: 5711
+ - uid: 7908
components:
- type: Transform
- pos: 6.5,83.5
+ pos: -0.5,31.5
parent: 2
- - uid: 5712
+ - uid: 7909
components:
- type: Transform
- pos: 17.5,19.5
+ pos: 5.5,40.5
parent: 2
- - uid: 5713
+ - uid: 7910
components:
- type: Transform
- pos: 31.5,29.5
+ pos: -42.5,-42.5
parent: 2
- - uid: 5714
+ - uid: 7911
components:
- type: Transform
- pos: 40.5,-3.5
+ pos: 4.5,16.5
parent: 2
- - uid: 5715
+ - uid: 7912
components:
- type: Transform
- pos: 23.5,0.5
+ pos: 76.5,-0.5
parent: 2
- - uid: 5716
+ - uid: 7913
components:
- type: Transform
- pos: 4.5,-9.5
+ pos: -2.5,-63.5
parent: 2
- - uid: 5717
+ - uid: 7914
components:
- type: Transform
- pos: -17.5,-61.5
+ pos: -49.5,-2.5
parent: 2
- - uid: 5718
+ - uid: 7915
components:
- type: Transform
- pos: -19.5,-61.5
+ pos: -50.5,-2.5
parent: 2
- - uid: 5719
+ - uid: 7916
components:
- type: Transform
- pos: 15.5,15.5
+ pos: 60.5,-0.5
parent: 2
- - uid: 5720
+ - uid: 7917
components:
- type: Transform
- pos: -5.5,-9.5
+ pos: -47.5,-2.5
parent: 2
- - uid: 5721
+ - uid: 7918
components:
- type: Transform
- pos: -5.5,-12.5
+ pos: 0.5,37.5
parent: 2
- - uid: 5722
+ - uid: 7919
components:
- type: Transform
- pos: -18.5,7.5
+ pos: -6.5,-63.5
parent: 2
- - uid: 5723
+ - uid: 7920
components:
- type: Transform
- pos: 53.5,-8.5
+ pos: 7.5,37.5
parent: 2
- - uid: 5724
+ - uid: 7921
components:
- type: Transform
- pos: 23.5,-10.5
+ pos: 47.5,-2.5
parent: 2
- - uid: 5725
+ - uid: 7922
components:
- type: Transform
- pos: -57.5,51.5
+ pos: -45.5,-7.5
parent: 2
- - uid: 5726
+ - uid: 7923
components:
- type: Transform
- pos: -57.5,52.5
+ pos: -40.5,-6.5
parent: 2
- - uid: 5727
+ - uid: 7924
components:
- type: Transform
- pos: 3.5,35.5
+ pos: -53.5,26.5
parent: 2
- - uid: 5728
+ - uid: 7925
components:
- type: Transform
- pos: 41.5,-0.5
+ pos: 8.5,14.5
parent: 2
- - uid: 5729
+ - uid: 7926
components:
- type: Transform
- pos: 39.5,-74.5
+ pos: 8.5,13.5
parent: 2
- - uid: 5730
+ - uid: 7927
components:
- type: Transform
- pos: -27.5,-60.5
+ pos: 10.5,9.5
parent: 2
- - uid: 5731
+ - uid: 7928
components:
- type: Transform
- pos: -18.5,13.5
+ pos: -2.5,32.5
parent: 2
- - uid: 5732
+ - uid: 7929
components:
- type: Transform
- pos: -26.5,-70.5
+ pos: -35.5,24.5
parent: 2
- - uid: 5733
+ - uid: 7930
components:
- type: Transform
- pos: -3.5,-69.5
+ pos: -28.5,-49.5
parent: 2
- - uid: 5734
+ - uid: 7931
components:
- type: Transform
- pos: -30.5,12.5
+ pos: -58.5,57.5
parent: 2
- - uid: 5735
+ - uid: 7932
components:
- type: Transform
- pos: 19.5,47.5
+ pos: 10.5,3.5
parent: 2
- - uid: 5736
+ - uid: 7933
components:
- type: Transform
- pos: 15.5,38.5
+ pos: 10.5,2.5
parent: 2
- - uid: 5737
+ - uid: 7934
components:
- type: Transform
- pos: 13.5,49.5
+ pos: -58.5,-6.5
parent: 2
- - uid: 5738
+ - uid: 7935
components:
- type: Transform
- pos: 0.5,39.5
+ pos: -53.5,24.5
parent: 2
- - uid: 5739
+ - uid: 7936
components:
- type: Transform
- pos: -34.5,-48.5
+ pos: -35.5,34.5
parent: 2
- - uid: 5740
+ - uid: 7937
components:
- type: Transform
- pos: 45.5,-10.5
+ pos: -28.5,-45.5
parent: 2
- - uid: 5741
+ - uid: 7938
components:
- type: Transform
- pos: 38.5,-22.5
+ pos: -53.5,25.5
parent: 2
- - uid: 5742
+ - uid: 7939
components:
- type: Transform
- pos: 40.5,-25.5
+ pos: -28.5,-39.5
parent: 2
- - uid: 5743
+ - uid: 7940
components:
- type: Transform
- pos: -26.5,53.5
+ pos: -54.5,-24.5
parent: 2
- - uid: 5744
+ - uid: 7941
components:
- type: Transform
- pos: 4.5,-7.5
+ pos: -42.5,-45.5
parent: 2
- - uid: 5745
+ - uid: 7942
components:
- type: Transform
- pos: -57.5,-20.5
+ pos: 0.5,32.5
parent: 2
- - uid: 5746
+ - uid: 7943
components:
- type: Transform
- pos: 31.5,-9.5
+ pos: -28.5,-44.5
parent: 2
- - uid: 5747
+ - uid: 7944
components:
- type: Transform
- pos: 25.5,-9.5
+ pos: -84.5,-1.5
parent: 2
- - uid: 5748
+ - uid: 7945
components:
- type: Transform
- pos: -39.5,27.5
+ pos: -35.5,28.5
parent: 2
- - uid: 5749
+ - uid: 7946
components:
- type: Transform
- pos: 22.5,-1.5
+ pos: -44.5,-2.5
parent: 2
- - uid: 5750
+ - uid: 7947
components:
- type: Transform
- pos: 22.5,2.5
+ pos: -83.5,-1.5
parent: 2
- - uid: 5751
+ - uid: 7948
components:
- type: Transform
- pos: 50.5,-10.5
+ pos: 4.5,14.5
parent: 2
- - uid: 5752
+ - uid: 7949
components:
- type: Transform
- pos: 53.5,-6.5
+ pos: -85.5,-1.5
parent: 2
- - uid: 5753
+ - uid: 7950
components:
- type: Transform
- pos: -37.5,28.5
+ pos: 5.5,37.5
parent: 2
- - uid: 5754
+ - uid: 7951
components:
- type: Transform
- pos: -37.5,27.5
+ pos: -0.5,-59.5
parent: 2
- - uid: 5755
+ - uid: 7952
components:
- type: Transform
- pos: 74.5,-44.5
+ pos: -86.5,-2.5
parent: 2
- - uid: 5756
+ - uid: 7953
components:
- type: Transform
- pos: 22.5,-5.5
+ pos: 10.5,-1.5
parent: 2
- - uid: 5757
+ - uid: 7954
components:
- type: Transform
- pos: -37.5,26.5
+ pos: -86.5,-3.5
parent: 2
- - uid: 5758
+ - uid: 7955
components:
- type: Transform
- pos: -8.5,-64.5
+ pos: -5.5,-63.5
parent: 2
- - uid: 5759
+ - uid: 7956
components:
- type: Transform
- pos: 21.5,36.5
+ pos: -44.5,2.5
parent: 2
- - uid: 5760
+ - uid: 7957
components:
- type: Transform
- pos: -27.5,-67.5
+ pos: -20.5,-61.5
parent: 2
- - uid: 5761
+ - uid: 7958
components:
- type: Transform
- pos: 15.5,41.5
+ pos: -28.5,-35.5
parent: 2
- - uid: 5762
+ - uid: 7959
components:
- type: Transform
- pos: 26.5,-12.5
+ pos: -28.5,-38.5
parent: 2
- - uid: 5763
+ - uid: 7960
components:
- type: Transform
- pos: 20.5,31.5
+ pos: -28.5,-37.5
parent: 2
- - uid: 5764
+ - uid: 7961
components:
- type: Transform
- pos: -13.5,23.5
+ pos: -28.5,-36.5
parent: 2
- - uid: 5765
+ - uid: 7962
components:
- type: Transform
- pos: 10.5,85.5
+ pos: -0.5,-51.5
parent: 2
- - uid: 5766
+ - uid: 7963
components:
- type: Transform
- pos: 40.5,-69.5
+ pos: -32.5,-57.5
parent: 2
- - uid: 5767
+ - uid: 7964
components:
- type: Transform
- pos: -16.5,-66.5
+ pos: -33.5,-57.5
parent: 2
- - uid: 5768
+ - uid: 7965
components:
- type: Transform
- pos: 35.5,-69.5
+ pos: -33.5,-56.5
parent: 2
- - uid: 5769
+ - uid: 7966
components:
- type: Transform
- pos: -38.5,33.5
+ pos: -33.5,-55.5
parent: 2
- - uid: 5770
+ - uid: 7967
components:
- type: Transform
- pos: -38.5,32.5
+ pos: -33.5,-54.5
parent: 2
- - uid: 5771
+ - uid: 7968
components:
- type: Transform
- pos: -6.5,23.5
+ pos: -43.5,44.5
parent: 2
- - uid: 5772
+ - uid: 7969
components:
- type: Transform
- pos: -41.5,51.5
+ pos: -43.5,45.5
parent: 2
- - uid: 5773
+ - uid: 7970
components:
- type: Transform
- pos: 39.5,-65.5
+ pos: -51.5,-6.5
parent: 2
- - uid: 5774
+ - uid: 7971
components:
- type: Transform
- pos: -13.5,-61.5
+ pos: -28.5,-55.5
parent: 2
- - uid: 5775
+ - uid: 7972
components:
- type: Transform
- pos: -0.5,-60.5
+ pos: -54.5,-29.5
parent: 2
- - uid: 5776
+ - uid: 7973
components:
- type: Transform
- pos: 18.5,35.5
+ pos: -44.5,-6.5
parent: 2
- - uid: 5777
+ - uid: 7974
components:
- type: Transform
- pos: -3.5,-58.5
+ pos: 77.5,-1.5
parent: 2
- - uid: 5778
+ - uid: 7975
components:
- type: Transform
- pos: -64.5,56.5
+ pos: 65.5,-0.5
parent: 2
- - uid: 5779
+ - uid: 7976
components:
- type: Transform
- pos: 40.5,-32.5
+ pos: 61.5,-0.5
parent: 2
- - uid: 5780
+ - uid: 7977
components:
- type: Transform
- pos: 36.5,-15.5
+ pos: -67.5,1.5
parent: 2
- - uid: 5781
+ - uid: 7978
components:
- type: Transform
- pos: -60.5,1.5
+ pos: -53.5,23.5
parent: 2
- - uid: 5782
+ - uid: 7979
components:
- type: Transform
- pos: 26.5,5.5
+ pos: -53.5,45.5
parent: 2
- - uid: 5783
+ - uid: 7980
components:
- type: Transform
- pos: 38.5,-7.5
+ pos: -46.5,45.5
parent: 2
- - uid: 5784
+ - uid: 7981
components:
- type: Transform
- pos: 44.5,-23.5
+ pos: -51.5,-39.5
parent: 2
- - uid: 5785
+ - uid: 7982
components:
- type: Transform
- pos: 69.5,-15.5
+ pos: 8.5,4.5
parent: 2
- - uid: 5786
+ - uid: 7983
components:
- type: Transform
- pos: 71.5,-24.5
+ pos: 46.5,-3.5
parent: 2
- - uid: 5787
+ - uid: 7984
components:
- type: Transform
- pos: 55.5,-26.5
+ pos: 3.5,40.5
parent: 2
- - uid: 5788
+ - uid: 7985
components:
- type: Transform
- pos: 39.5,-71.5
+ pos: -44.5,-1.5
parent: 2
- - uid: 5789
+ - uid: 7986
components:
- type: Transform
- pos: 10.5,27.5
+ pos: -33.5,23.5
parent: 2
- - uid: 5790
+ - uid: 7987
components:
- type: Transform
- pos: 0.5,57.5
+ pos: -1.5,-63.5
parent: 2
- - uid: 5791
+ - uid: 7988
components:
- type: Transform
- pos: 31.5,-16.5
+ pos: -0.5,-63.5
parent: 2
- - uid: 5792
+ - uid: 7989
components:
- type: Transform
- pos: 56.5,-23.5
+ pos: -0.5,-62.5
parent: 2
- - uid: 5793
+ - uid: 7990
components:
- type: Transform
- pos: 71.5,-18.5
+ pos: -0.5,-61.5
parent: 2
- - uid: 5794
+ - uid: 7991
components:
- type: Transform
- pos: 52.5,-40.5
+ pos: -0.5,-60.5
parent: 2
- - uid: 5795
+ - uid: 7992
components:
- type: Transform
- pos: 52.5,-36.5
+ pos: 5.5,39.5
parent: 2
- - uid: 5796
+ - uid: 7993
components:
- type: Transform
- pos: 10.5,57.5
+ pos: -54.5,32.5
parent: 2
- - uid: 5797
+ - uid: 7994
components:
- type: Transform
- pos: 26.5,27.5
+ pos: -52.5,10.5
parent: 2
- - uid: 5798
+ - uid: 7995
components:
- type: Transform
- pos: 17.5,25.5
+ pos: 9.5,3.5
parent: 2
- - uid: 5799
+ - uid: 7996
components:
- type: Transform
- pos: 5.5,68.5
+ pos: -28.5,-46.5
parent: 2
- - uid: 5800
+ - uid: 7997
components:
- type: Transform
- pos: -35.5,-48.5
+ pos: -54.5,-25.5
parent: 2
- - uid: 5801
+ - uid: 7998
components:
- type: Transform
- pos: -6.5,-62.5
+ pos: 69.5,-0.5
parent: 2
- - uid: 5802
+ - uid: 7999
components:
- type: Transform
- pos: 36.5,-29.5
+ pos: -57.5,53.5
parent: 2
- - uid: 5803
+ - uid: 8000
components:
- type: Transform
- pos: 13.5,28.5
+ pos: 69.5,-0.5
parent: 2
- - uid: 5804
+ - uid: 8001
components:
- type: Transform
- pos: 7.5,-55.5
+ pos: -73.5,11.5
parent: 2
- - uid: 5805
+ - uid: 8002
components:
- type: Transform
- pos: 17.5,-4.5
+ pos: -118.5,30.5
parent: 2
- - uid: 5806
+ - uid: 8003
components:
- type: Transform
- pos: 12.5,23.5
+ pos: -39.5,-11.5
parent: 2
- - uid: 5807
+ - uid: 8004
components:
- type: Transform
- pos: -65.5,-20.5
+ pos: -45.5,45.5
parent: 2
- - uid: 5808
+ - uid: 8005
components:
- type: Transform
- pos: -32.5,5.5
+ pos: -39.5,-8.5
parent: 2
- - uid: 5809
+ - uid: 8006
components:
- type: Transform
- pos: -41.5,4.5
+ pos: -39.5,-9.5
parent: 2
- - uid: 5810
+ - uid: 8007
components:
- type: Transform
- pos: -3.5,62.5
+ pos: -38.5,-11.5
parent: 2
- - uid: 5811
+ - uid: 8008
components:
- type: Transform
- pos: 43.5,-69.5
+ pos: -39.5,-10.5
parent: 2
- - uid: 5812
+ - uid: 8009
components:
- type: Transform
- pos: -0.5,-17.5
+ pos: 66.5,-0.5
parent: 2
- - uid: 5813
+ - uid: 8010
components:
- type: Transform
- pos: -35.5,20.5
+ pos: -90.5,-10.5
parent: 2
- - uid: 5814
+ - uid: 8011
components:
- type: Transform
- pos: -26.5,9.5
+ pos: -37.5,-11.5
parent: 2
- - uid: 5815
+ - uid: 8012
components:
- type: Transform
- pos: -35.5,40.5
+ pos: 67.5,-0.5
parent: 2
- - uid: 5816
+ - uid: 8013
components:
- type: Transform
- pos: 35.5,-62.5
+ pos: -95.5,-10.5
parent: 2
- - uid: 5817
+ - uid: 8014
components:
- type: Transform
- pos: -29.5,34.5
+ pos: -89.5,-10.5
parent: 2
- - uid: 5818
+ - uid: 8015
components:
- type: Transform
- pos: -59.5,31.5
+ pos: -75.5,-22.5
parent: 2
- - uid: 5819
+ - uid: 8016
components:
- type: Transform
- pos: -10.5,-19.5
+ pos: 17.5,5.5
parent: 2
- - uid: 5820
+ - uid: 8017
components:
- type: Transform
- pos: -41.5,13.5
+ pos: -58.5,2.5
parent: 2
- - uid: 5821
+ - uid: 8018
components:
- type: Transform
- pos: -37.5,-0.5
+ pos: 38.5,-46.5
parent: 2
- - uid: 5822
+ - uid: 8019
components:
- type: Transform
- pos: -25.5,22.5
+ pos: 17.5,-0.5
parent: 2
- - uid: 5823
+ - uid: 8020
components:
- type: Transform
- pos: -35.5,25.5
+ pos: 17.5,-53.5
parent: 2
- - uid: 5824
+ - uid: 8021
components:
- type: Transform
- pos: -55.5,35.5
+ pos: 12.5,74.5
parent: 2
- - uid: 5825
+ - uid: 8022
components:
- type: Transform
- pos: -30.5,-28.5
+ pos: -42.5,36.5
parent: 2
- - uid: 5826
+ - uid: 8023
components:
- type: Transform
- pos: -29.5,68.5
+ pos: -54.5,-85.5
parent: 2
- - uid: 5827
+ - uid: 8024
components:
- type: Transform
- pos: -33.5,9.5
+ pos: 27.5,28.5
parent: 2
- - uid: 5828
+ - uid: 8025
components:
- type: Transform
- pos: -63.5,-28.5
+ pos: 18.5,43.5
parent: 2
- - uid: 5829
+ - uid: 8026
components:
- type: Transform
- pos: -41.5,-25.5
+ pos: -44.5,-74.5
parent: 2
- - uid: 5830
+ - uid: 8027
components:
- type: Transform
- pos: -21.5,-78.5
+ pos: -61.5,2.5
parent: 2
- - uid: 5831
+ - uid: 8028
components:
- type: Transform
- pos: -23.5,0.5
+ pos: -70.5,1.5
parent: 2
- - uid: 5832
+ - uid: 8029
components:
- type: Transform
- pos: -32.5,23.5
+ pos: -69.5,6.5
parent: 2
- - uid: 5833
+ - uid: 8030
components:
- type: Transform
- pos: 31.5,-65.5
+ pos: -95.5,-5.5
parent: 2
- - uid: 5834
+ - uid: 8031
components:
- type: Transform
- pos: -34.5,17.5
+ pos: -68.5,1.5
parent: 2
- - uid: 5835
+ - uid: 8032
components:
- type: Transform
- pos: -33.5,-5.5
+ pos: -45.5,-82.5
parent: 2
- - uid: 5836
+ - uid: 8033
components:
- type: Transform
- pos: 11.5,83.5
+ pos: -29.5,-19.5
parent: 2
- - uid: 5837
+ - uid: 8034
components:
- type: Transform
- pos: -35.5,8.5
+ pos: 21.5,33.5
parent: 2
- - uid: 5838
+ - uid: 8035
components:
- type: Transform
- pos: -0.5,-34.5
+ pos: 4.5,-42.5
parent: 2
- - uid: 5839
+ - uid: 8036
components:
- type: Transform
- pos: 29.5,-29.5
+ pos: 17.5,-1.5
parent: 2
- - uid: 5840
+ - uid: 8037
components:
- type: Transform
- pos: -57.5,41.5
+ pos: 53.5,-10.5
parent: 2
- - uid: 5841
+ - uid: 8038
components:
- type: Transform
- pos: -46.5,-19.5
+ pos: 21.5,34.5
parent: 2
- - uid: 5842
+ - uid: 8039
components:
- type: Transform
- pos: -5.5,-7.5
+ pos: 22.5,-54.5
parent: 2
- - uid: 5843
+ - uid: 8040
components:
- type: Transform
- pos: -24.5,17.5
+ pos: -42.5,33.5
parent: 2
- - uid: 5844
+ - uid: 8041
components:
- type: Transform
- pos: 17.5,-28.5
+ pos: 81.5,-46.5
parent: 2
- - uid: 5845
+ - uid: 8042
components:
- type: Transform
- pos: 4.5,-24.5
+ pos: 53.5,-9.5
parent: 2
- - uid: 5846
+ - uid: 8043
components:
- type: Transform
- pos: 27.5,-51.5
+ pos: 81.5,-43.5
parent: 2
- - uid: 5847
+ - uid: 8044
components:
- type: Transform
- pos: -65.5,-28.5
+ pos: 40.5,-28.5
parent: 2
- - uid: 5848
+ - uid: 8045
components:
- type: Transform
- pos: -25.5,37.5
+ pos: 16.5,-8.5
parent: 2
- - uid: 5849
+ - uid: 8046
components:
- type: Transform
- pos: -56.5,19.5
+ pos: 15.5,-8.5
parent: 2
- - uid: 5850
+ - uid: 8047
components:
- type: Transform
- pos: -57.5,-22.5
+ pos: -39.5,37.5
parent: 2
- - uid: 5851
+ - uid: 8048
components:
- type: Transform
- pos: -13.5,-14.5
+ pos: 27.5,99.5
parent: 2
- - uid: 5852
+ - uid: 8049
components:
- type: Transform
- pos: 5.5,14.5
+ pos: 18.5,-8.5
parent: 2
- - uid: 5853
+ - uid: 8050
components:
- type: Transform
- pos: -18.5,-34.5
+ pos: -37.5,37.5
parent: 2
- - uid: 5854
+ - uid: 8051
components:
- type: Transform
- pos: -65.5,-27.5
+ pos: 21.5,35.5
parent: 2
- - uid: 5855
+ - uid: 8052
components:
- type: Transform
- pos: -4.5,18.5
+ pos: 21.5,31.5
parent: 2
- - uid: 5856
+ - uid: 8053
components:
- type: Transform
- pos: -5.5,-25.5
+ pos: 14.5,69.5
parent: 2
- - uid: 5857
+ - uid: 8054
components:
- type: Transform
- pos: 58.5,9.5
+ pos: -47.5,-84.5
parent: 2
- - uid: 5858
+ - uid: 8055
components:
- type: Transform
- pos: 58.5,7.5
+ pos: -89.5,-9.5
parent: 2
- - uid: 5859
+ - uid: 8056
components:
- type: Transform
- pos: -13.5,-54.5
+ pos: -69.5,3.5
parent: 2
- - uid: 5860
+ - uid: 8057
components:
- type: Transform
- pos: -13.5,-47.5
+ pos: 27.5,32.5
parent: 2
- - uid: 5861
+ - uid: 8058
components:
- type: Transform
- pos: -12.5,-31.5
+ pos: 32.5,100.5
parent: 2
- - uid: 5862
+ - uid: 8059
components:
- type: Transform
- pos: 36.5,-39.5
+ pos: -68.5,3.5
parent: 2
- - uid: 5863
+ - uid: 8060
components:
- type: Transform
- pos: -19.5,-41.5
+ pos: 20.5,-54.5
parent: 2
- - uid: 5864
+ - uid: 8061
components:
- type: Transform
- pos: -66.5,-29.5
+ pos: -74.5,-21.5
parent: 2
- - uid: 5865
+ - uid: 8062
components:
- type: Transform
- pos: 31.5,-51.5
+ pos: -74.5,-22.5
parent: 2
- - uid: 5866
+ - uid: 8063
components:
- type: Transform
- pos: 12.5,3.5
+ pos: -53.5,-85.5
parent: 2
- - uid: 5867
+ - uid: 8064
components:
- type: Transform
- pos: 3.5,-26.5
+ pos: -61.5,-20.5
parent: 2
- - uid: 5868
+ - uid: 8065
components:
- type: Transform
- pos: -13.5,-29.5
+ pos: 31.5,95.5
parent: 2
- - uid: 5869
+ - uid: 8066
components:
- type: Transform
- pos: 10.5,6.5
+ pos: -92.5,-10.5
parent: 2
- - uid: 5870
+ - uid: 8067
components:
- type: Transform
- pos: -15.5,-38.5
+ pos: -76.5,-23.5
parent: 2
- - uid: 5871
+ - uid: 8068
components:
- type: Transform
- pos: -58.5,-36.5
+ pos: -76.5,-22.5
parent: 2
- - uid: 5872
+ - uid: 8069
components:
- type: Transform
- pos: 61.5,4.5
+ pos: 19.5,-54.5
parent: 2
- - uid: 5873
+ - uid: 8070
components:
- type: Transform
- pos: 13.5,15.5
+ pos: 7.5,57.5
parent: 2
- - uid: 5874
+ - uid: 8071
components:
- type: Transform
- pos: 14.5,15.5
+ pos: -44.5,-84.5
parent: 2
- - uid: 5875
+ - uid: 8072
components:
- type: Transform
- pos: 27.5,-29.5
+ pos: 10.5,41.5
parent: 2
- - uid: 5876
+ - uid: 8073
components:
- type: Transform
- pos: 21.5,-29.5
+ pos: 12.5,73.5
parent: 2
- - uid: 5877
+ - uid: 8074
components:
- type: Transform
- pos: 25.5,-46.5
+ pos: 17.5,4.5
parent: 2
- - uid: 5878
+ - uid: 8075
components:
- type: Transform
- pos: -62.5,-42.5
+ pos: 12.5,72.5
parent: 2
- - uid: 5879
+ - uid: 8076
components:
- type: Transform
- pos: -58.5,-35.5
+ pos: 44.5,-28.5
parent: 2
- - uid: 5880
+ - uid: 8077
components:
- type: Transform
- pos: 23.5,-45.5
+ pos: 34.5,98.5
parent: 2
- - uid: 5881
+ - uid: 8078
components:
- type: Transform
- pos: -17.5,-40.5
+ pos: -6.5,-19.5
parent: 2
- - uid: 5882
+ - uid: 8079
components:
- type: Transform
- pos: -47.5,14.5
+ pos: -38.5,-19.5
parent: 2
- - uid: 5883
+ - uid: 8080
components:
- type: Transform
- pos: -0.5,0.5
+ pos: 52.5,-10.5
parent: 2
- - uid: 5884
+ - uid: 8081
components:
- type: Transform
- pos: -56.5,7.5
+ pos: 4.5,-49.5
parent: 2
- - uid: 5885
+ - uid: 8082
components:
- type: Transform
- pos: -61.5,25.5
+ pos: 33.5,-13.5
parent: 2
- - uid: 5886
+ - uid: 8083
components:
- type: Transform
- pos: -53.5,18.5
+ pos: -26.5,-59.5
parent: 2
- - uid: 5887
+ - uid: 8084
components:
- type: Transform
- pos: -51.5,5.5
+ pos: 33.5,-55.5
parent: 2
- - uid: 5888
+ - uid: 8085
components:
- type: Transform
- pos: -58.5,-6.5
+ pos: 17.5,-51.5
parent: 2
- - uid: 5889
+ - uid: 8086
components:
- type: Transform
- pos: -56.5,8.5
+ pos: -48.5,-74.5
parent: 2
- - uid: 5890
+ - uid: 8087
components:
- type: Transform
- pos: 0.5,17.5
+ pos: 13.5,-1.5
parent: 2
- - uid: 5891
+ - uid: 8088
components:
- type: Transform
- pos: -7.5,12.5
+ pos: -45.5,-84.5
parent: 2
- - uid: 5892
+ - uid: 8089
components:
- type: Transform
- pos: -15.5,15.5
+ pos: 51.5,-10.5
parent: 2
- - uid: 5893
+ - uid: 8090
components:
- type: Transform
- pos: -5.5,-31.5
+ pos: -36.5,-19.5
parent: 2
- - uid: 5894
+ - uid: 8091
components:
- type: Transform
- pos: 22.5,-34.5
+ pos: -37.5,-19.5
parent: 2
- - uid: 5895
+ - uid: 8092
components:
- type: Transform
- pos: -13.5,-37.5
+ pos: -5.5,-19.5
parent: 2
- - uid: 5896
+ - uid: 8093
components:
- type: Transform
- pos: -55.5,27.5
+ pos: -95.5,-6.5
parent: 2
- - uid: 5897
+ - uid: 8094
components:
- type: Transform
- pos: -8.5,57.5
+ pos: 34.5,100.5
parent: 2
- - uid: 5898
+ - uid: 8095
components:
- type: Transform
- pos: 7.5,-44.5
+ pos: 27.5,29.5
parent: 2
- - uid: 5899
+ - uid: 8096
components:
- type: Transform
- pos: -32.5,-7.5
+ pos: -11.5,-19.5
parent: 2
- - uid: 5900
+ - uid: 8097
components:
- type: Transform
- pos: -24.5,-6.5
+ pos: -27.5,-33.5
parent: 2
- - uid: 5901
+ - uid: 8098
components:
- type: Transform
- pos: -51.5,-27.5
+ pos: -55.5,-21.5
parent: 2
- - uid: 5902
+ - uid: 8099
components:
- type: Transform
- pos: -33.5,50.5
+ pos: 37.5,-50.5
parent: 2
- - uid: 5903
+ - uid: 8100
components:
- type: Transform
- pos: -24.5,-11.5
+ pos: 21.5,28.5
parent: 2
- - uid: 5904
+ - uid: 8101
components:
- type: Transform
- pos: -12.5,-19.5
+ pos: 14.5,67.5
parent: 2
- - uid: 5905
+ - uid: 8102
components:
- type: Transform
- pos: -24.5,68.5
+ pos: -50.5,-85.5
parent: 2
- - uid: 5906
+ - uid: 8103
components:
- type: Transform
- pos: 44.5,-60.5
+ pos: -62.5,2.5
parent: 2
- - uid: 5907
+ - uid: 8104
components:
- type: Transform
- pos: -0.5,-61.5
+ pos: -65.5,2.5
parent: 2
- - uid: 5908
+ - uid: 8105
components:
- type: Transform
- pos: 17.5,11.5
+ pos: 14.5,68.5
parent: 2
- - uid: 5909
+ - uid: 8106
components:
- type: Transform
- pos: -30.5,-40.5
+ pos: 21.5,29.5
parent: 2
- - uid: 5910
+ - uid: 8107
components:
- type: Transform
- pos: 23.5,-7.5
+ pos: 37.5,-49.5
parent: 2
- - uid: 5911
+ - uid: 8108
components:
- type: Transform
- pos: 50.5,-7.5
+ pos: -48.5,-22.5
parent: 2
- - uid: 5912
+ - uid: 8109
components:
- type: Transform
- pos: -8.5,-23.5
+ pos: 25.5,96.5
parent: 2
- - uid: 5913
+ - uid: 8110
components:
- type: Transform
- pos: -24.5,-34.5
+ pos: 12.5,-2.5
parent: 2
- - uid: 5914
+ - uid: 8111
components:
- type: Transform
- pos: -66.5,-40.5
+ pos: -9.5,-19.5
parent: 2
- - uid: 5915
+ - uid: 8112
components:
- type: Transform
- pos: -58.5,-33.5
+ pos: -36.5,-26.5
parent: 2
- - uid: 5916
+ - uid: 8113
components:
- type: Transform
- pos: -26.5,-34.5
+ pos: 18.5,-54.5
parent: 2
- - uid: 5917
+ - uid: 8114
components:
- type: Transform
- pos: 59.5,4.5
+ pos: -62.5,-20.5
parent: 2
- - uid: 5918
+ - uid: 8115
components:
- type: Transform
- pos: -27.5,13.5
+ pos: 8.5,57.5
parent: 2
- - uid: 5919
+ - uid: 8116
components:
- type: Transform
- pos: 14.5,-43.5
+ pos: -52.5,-85.5
parent: 2
- - uid: 5920
+ - uid: 8117
components:
- type: Transform
- pos: 0.5,62.5
+ pos: -43.5,-75.5
parent: 2
- - uid: 5921
+ - uid: 8118
components:
- type: Transform
- pos: -49.5,13.5
+ pos: -95.5,-9.5
parent: 2
- - uid: 5922
+ - uid: 8119
components:
- type: Transform
- pos: 67.5,25.5
+ pos: -59.5,60.5
parent: 2
- - uid: 5923
+ - uid: 8120
components:
- type: Transform
- pos: -41.5,-3.5
+ pos: -95.5,-7.5
parent: 2
- - uid: 5924
+ - uid: 8121
components:
- type: Transform
- pos: -46.5,-6.5
+ pos: -64.5,2.5
parent: 2
- - uid: 5925
+ - uid: 8122
components:
- type: Transform
- pos: 61.5,30.5
+ pos: -17.5,-11.5
parent: 2
- - uid: 5926
+ - uid: 8123
components:
- type: Transform
- pos: 0.5,-47.5
+ pos: -94.5,-10.5
parent: 2
- - uid: 5927
+ - uid: 8124
components:
- type: Transform
- pos: -14.5,-33.5
+ pos: -91.5,-10.5
parent: 2
- - uid: 5928
+ - uid: 8125
components:
- type: Transform
- pos: 67.5,26.5
+ pos: 33.5,-9.5
parent: 2
- - uid: 5929
+ - uid: 8126
components:
- type: Transform
- pos: -64.5,55.5
+ pos: -95.5,-4.5
parent: 2
- - uid: 5930
+ - uid: 8127
components:
- type: Transform
- pos: -56.5,-1.5
+ pos: 23.5,90.5
parent: 2
- - uid: 5931
+ - uid: 8128
components:
- type: Transform
- pos: -44.5,7.5
+ pos: -40.5,40.5
parent: 2
- - uid: 5932
+ - uid: 8129
components:
- type: Transform
- pos: 62.5,5.5
+ pos: -89.5,-8.5
parent: 2
- - uid: 5933
+ - uid: 8130
components:
- type: Transform
- pos: -15.5,-7.5
+ pos: -94.5,-4.5
parent: 2
- - uid: 5934
+ - uid: 8131
components:
- type: Transform
- pos: -26.5,5.5
+ pos: -93.5,-10.5
parent: 2
- - uid: 5935
+ - uid: 8132
components:
- type: Transform
- pos: -29.5,5.5
+ pos: 38.5,-4.5
parent: 2
- - uid: 5936
+ - uid: 8133
components:
- type: Transform
- pos: -63.5,51.5
+ pos: -46.5,-74.5
parent: 2
- - uid: 5937
+ - uid: 8134
components:
- type: Transform
- pos: 3.5,68.5
+ pos: -51.5,-7.5
parent: 2
- - uid: 5938
+ - uid: 8135
components:
- type: Transform
- pos: 62.5,6.5
+ pos: -52.5,-39.5
parent: 2
- - uid: 5939
+ - uid: 8136
components:
- type: Transform
- pos: -33.5,1.5
+ pos: -79.5,74.5
parent: 2
- - uid: 5940
+ - uid: 8137
components:
- type: Transform
- pos: -22.5,33.5
+ pos: -44.5,-1.5
parent: 2
- - uid: 5941
+ - uid: 8138
components:
- type: Transform
- pos: 3.5,27.5
+ pos: -46.5,-2.5
parent: 2
- - uid: 5942
+ - uid: 8139
components:
- type: Transform
- pos: 25.5,-1.5
+ pos: 48.5,0.5
parent: 2
- - uid: 5943
+ - uid: 8140
components:
- type: Transform
- pos: -54.5,10.5
+ pos: 60.5,25.5
parent: 2
- - uid: 5944
+ - uid: 8141
components:
- type: Transform
- pos: -5.5,-15.5
+ pos: -44.5,-2.5
parent: 2
- - uid: 5945
+ - uid: 8142
components:
- type: Transform
- pos: -36.5,61.5
+ pos: -58.5,45.5
parent: 2
- - uid: 5946
+ - uid: 8143
components:
- type: Transform
- pos: 51.5,-10.5
+ pos: -53.5,-39.5
parent: 2
- - uid: 5947
+ - uid: 8144
components:
- type: Transform
- pos: 62.5,7.5
+ pos: -55.5,-39.5
parent: 2
- - uid: 5948
+ - uid: 8145
components:
- type: Transform
- pos: 37.5,-66.5
+ pos: 68.5,22.5
parent: 2
- - uid: 5949
+ - uid: 8146
components:
- type: Transform
- pos: 44.5,-0.5
+ pos: -118.5,29.5
parent: 2
- - uid: 5950
+ - uid: 8147
components:
- type: Transform
- pos: 17.5,-7.5
+ pos: -49.5,39.5
parent: 2
- - uid: 5951
+ - uid: 8148
components:
- type: Transform
- pos: -36.5,18.5
+ pos: -69.5,5.5
parent: 2
- - uid: 5952
+ - uid: 8149
components:
- type: Transform
- pos: 31.5,-29.5
+ pos: -69.5,7.5
parent: 2
- - uid: 5953
+ - uid: 8150
components:
- type: Transform
- pos: 62.5,8.5
+ pos: -69.5,4.5
parent: 2
- - uid: 5954
+ - uid: 8151
components:
- type: Transform
- pos: 62.5,9.5
+ pos: -69.5,8.5
parent: 2
- - uid: 5955
+ - uid: 8152
components:
- type: Transform
- pos: 62.5,10.5
+ pos: -70.5,8.5
parent: 2
- - uid: 5956
+ - uid: 8153
components:
- type: Transform
- pos: -17.5,23.5
+ pos: -49.5,38.5
parent: 2
- - uid: 5957
+ - uid: 8154
components:
- type: Transform
- pos: -25.5,20.5
+ pos: -18.5,-29.5
parent: 2
- - uid: 5958
+ - uid: 8155
components:
- type: Transform
- pos: 62.5,11.5
+ pos: 55.5,22.5
parent: 2
- - uid: 5959
+ - uid: 8156
components:
- type: Transform
- pos: 62.5,12.5
+ pos: 47.5,13.5
parent: 2
- - uid: 5960
+ - uid: 8157
components:
- type: Transform
- pos: 63.5,12.5
+ pos: -54.5,39.5
parent: 2
- - uid: 5961
+ - uid: 8158
components:
- type: Transform
- pos: -40.5,62.5
+ pos: -54.5,37.5
parent: 2
- - uid: 5962
+ - uid: 8159
components:
- type: Transform
- pos: 27.5,-46.5
+ pos: -54.5,35.5
parent: 2
- - uid: 5963
+ - uid: 8160
components:
- type: Transform
- pos: 27.5,-48.5
+ pos: -54.5,34.5
parent: 2
- - uid: 5964
+ - uid: 8161
components:
- type: Transform
- pos: 27.5,-47.5
+ pos: 48.5,1.5
parent: 2
- - uid: 5965
+ - uid: 8162
components:
- type: Transform
- pos: 27.5,-43.5
+ pos: -36.5,-4.5
parent: 2
- - uid: 5966
+ - uid: 8163
components:
- type: Transform
- pos: 27.5,-44.5
+ pos: -48.5,6.5
parent: 2
- - uid: 5967
+ - uid: 8164
components:
- type: Transform
- pos: 27.5,-45.5
+ pos: 48.5,2.5
parent: 2
- - uid: 5968
+ - uid: 8165
components:
- type: Transform
- pos: -13.5,-49.5
+ pos: 48.5,3.5
parent: 2
- - uid: 5969
+ - uid: 8166
components:
- type: Transform
- pos: 10.5,-16.5
+ pos: -50.5,2.5
parent: 2
- - uid: 5970
+ - uid: 8167
components:
- type: Transform
- pos: -14.5,-26.5
+ pos: 48.5,4.5
parent: 2
- - uid: 5971
+ - uid: 8168
components:
- type: Transform
- pos: 1.5,17.5
+ pos: -51.5,-2.5
parent: 2
- - uid: 5972
+ - uid: 8169
components:
- type: Transform
- pos: 10.5,-5.5
+ pos: 28.5,103.5
parent: 2
- - uid: 5973
+ - uid: 8170
components:
- type: Transform
- pos: 4.5,17.5
+ pos: 28.5,102.5
parent: 2
- - uid: 5974
+ - uid: 8171
components:
- type: Transform
- pos: 3.5,17.5
+ pos: -50.5,45.5
parent: 2
- - uid: 5975
+ - uid: 8172
components:
- type: Transform
- pos: 8.5,-3.5
+ pos: 48.5,5.5
parent: 2
- - uid: 5976
+ - uid: 8173
components:
- type: Transform
- pos: -59.5,29.5
+ pos: -52.5,2.5
parent: 2
- - uid: 5977
+ - uid: 8174
components:
- type: Transform
- pos: -41.5,-29.5
+ pos: -41.5,-73.5
parent: 2
- - uid: 5978
+ - uid: 8175
components:
- type: Transform
- pos: 64.5,12.5
+ pos: -57.5,45.5
parent: 2
- - uid: 5979
+ - uid: 8176
components:
- type: Transform
- pos: 4.5,-62.5
+ pos: -59.5,66.5
parent: 2
- - uid: 5980
+ - uid: 8177
components:
- type: Transform
- pos: -51.5,-3.5
+ pos: -58.5,44.5
parent: 2
- - uid: 5981
+ - uid: 8178
components:
- type: Transform
- pos: 65.5,12.5
+ pos: 48.5,6.5
parent: 2
- - uid: 5982
+ - uid: 8179
components:
- type: Transform
- pos: 66.5,12.5
+ pos: 48.5,7.5
parent: 2
- - uid: 5983
+ - uid: 8180
components:
- type: Transform
- pos: -65.5,55.5
+ pos: 19.5,-54.5
parent: 2
- - uid: 5984
+ - uid: 8181
components:
- type: Transform
- pos: 65.5,11.5
+ pos: 48.5,8.5
parent: 2
- - uid: 5985
+ - uid: 8182
components:
- type: Transform
- pos: 65.5,13.5
+ pos: -81.5,70.5
parent: 2
- - uid: 5986
+ - uid: 8183
components:
- type: Transform
- pos: -47.5,-14.5
+ pos: 48.5,9.5
parent: 2
- - uid: 5987
+ - uid: 8184
components:
- type: Transform
- pos: 25.5,-67.5
+ pos: -74.5,69.5
parent: 2
- - uid: 5988
+ - uid: 8185
components:
- type: Transform
- pos: 63.5,13.5
+ pos: 48.5,10.5
parent: 2
- - uid: 5989
+ - uid: 8186
components:
- type: Transform
- pos: -36.5,-44.5
+ pos: -18.5,-30.5
parent: 2
- - uid: 5990
+ - uid: 8187
components:
- type: Transform
- pos: -21.5,-34.5
+ pos: 48.5,11.5
parent: 2
- - uid: 5991
+ - uid: 8188
components:
- type: Transform
- pos: -69.5,-26.5
+ pos: 48.5,12.5
parent: 2
- - uid: 5992
+ - uid: 8189
components:
- type: Transform
- pos: 35.5,-64.5
+ pos: -44.5,-0.5
parent: 2
- - uid: 5993
+ - uid: 8190
components:
- type: Transform
- pos: 25.5,-29.5
+ pos: -20.5,-30.5
parent: 2
- - uid: 5994
+ - uid: 8191
components:
- type: Transform
- pos: 30.5,-25.5
+ pos: 78.5,-49.5
parent: 2
- - uid: 5995
+ - uid: 8192
components:
- type: Transform
- pos: 29.5,-25.5
+ pos: -44.5,-1.5
parent: 2
- - uid: 5996
+ - uid: 8193
components:
- type: Transform
- pos: -120.5,18.5
+ pos: -51.5,45.5
parent: 2
- - uid: 5997
+ - uid: 8194
components:
- type: Transform
- pos: 35.5,-63.5
+ pos: 80.5,-51.5
parent: 2
- - uid: 5998
+ - uid: 8195
components:
- type: Transform
- pos: 35.5,-61.5
+ pos: 48.5,13.5
parent: 2
- - uid: 5999
+ - uid: 8196
components:
- type: Transform
- pos: 69.5,3.5
+ pos: -44.5,32.5
parent: 2
- - uid: 6000
+ - uid: 8197
components:
- type: Transform
- pos: 36.5,-40.5
+ pos: 47.5,14.5
parent: 2
- - uid: 6001
+ - uid: 8198
components:
- type: Transform
- pos: 30.5,-24.5
+ pos: -49.5,45.5
parent: 2
- - uid: 6002
+ - uid: 8199
components:
- type: Transform
- pos: 36.5,-61.5
+ pos: 47.5,15.5
parent: 2
- - uid: 6003
+ - uid: 8200
components:
- type: Transform
- pos: 44.5,-18.5
+ pos: -17.5,-29.5
parent: 2
- - uid: 6004
+ - uid: 8201
components:
- type: Transform
- pos: -32.5,-39.5
+ pos: -23.5,-30.5
parent: 2
- - uid: 6005
+ - uid: 8202
components:
- type: Transform
- pos: -13.5,-48.5
+ pos: 48.5,15.5
parent: 2
- - uid: 6006
+ - uid: 8203
components:
- type: Transform
- pos: 61.5,6.5
+ pos: -63.5,-6.5
parent: 2
- - uid: 6007
+ - uid: 8204
components:
- type: Transform
- pos: 31.5,-49.5
+ pos: -59.5,63.5
parent: 2
- - uid: 6008
+ - uid: 8205
components:
- type: Transform
- pos: 57.5,-9.5
+ pos: 49.5,15.5
parent: 2
- - uid: 6009
+ - uid: 8206
components:
- type: Transform
- pos: -5.5,-23.5
+ pos: -21.5,-30.5
parent: 2
- - uid: 6010
+ - uid: 8207
components:
- type: Transform
- pos: -13.5,-12.5
+ pos: 6.5,-37.5
parent: 2
- - uid: 6011
+ - uid: 8208
components:
- type: Transform
- pos: -1.5,19.5
+ pos: -58.5,-8.5
parent: 2
- - uid: 6012
+ - uid: 8209
components:
- type: Transform
- pos: -10.5,14.5
+ pos: -60.5,-9.5
parent: 2
- - uid: 6013
+ - uid: 8210
components:
- type: Transform
- pos: 12.5,-12.5
+ pos: 50.5,15.5
parent: 2
- - uid: 6014
+ - uid: 8211
components:
- type: Transform
- pos: -34.5,-41.5
+ pos: 51.5,15.5
parent: 2
- - uid: 6015
+ - uid: 8212
components:
- type: Transform
- pos: -59.5,-6.5
+ pos: -58.5,-7.5
parent: 2
- - uid: 6016
+ - uid: 8213
components:
- type: Transform
- pos: 36.5,10.5
+ pos: 52.5,15.5
parent: 2
- - uid: 6017
+ - uid: 8214
components:
- type: Transform
- pos: 42.5,8.5
+ pos: -50.5,38.5
parent: 2
- - uid: 6018
+ - uid: 8215
components:
- type: Transform
- pos: 63.5,6.5
+ pos: -72.5,69.5
parent: 2
- - uid: 6019
+ - uid: 8216
components:
- type: Transform
- pos: 34.5,11.5
+ pos: -54.5,-39.5
parent: 2
- - uid: 6020
+ - uid: 8217
components:
- type: Transform
- pos: 26.5,-15.5
+ pos: -123.5,26.5
parent: 2
- - uid: 6021
+ - uid: 8218
components:
- type: Transform
- pos: 45.5,-4.5
+ pos: -61.5,-7.5
parent: 2
- - uid: 6022
+ - uid: 8219
components:
- type: Transform
- pos: 28.5,-3.5
+ pos: -122.5,26.5
parent: 2
- - uid: 6023
+ - uid: 8220
components:
- type: Transform
- pos: 29.5,-5.5
+ pos: -47.5,4.5
parent: 2
- - uid: 6024
+ - uid: 8221
components:
- type: Transform
- pos: 35.5,-20.5
+ pos: 54.5,22.5
parent: 2
- - uid: 6025
+ - uid: 8222
components:
- type: Transform
- pos: 61.5,-27.5
+ pos: 56.5,22.5
parent: 2
- - uid: 6026
+ - uid: 8223
components:
- type: Transform
- pos: 68.5,-18.5
+ pos: 57.5,22.5
parent: 2
- - uid: 6027
+ - uid: 8224
components:
- type: Transform
- pos: 28.5,5.5
+ pos: -40.5,-7.5
parent: 2
- - uid: 6028
+ - uid: 8225
components:
- type: Transform
- pos: 35.5,0.5
+ pos: -48.5,45.5
parent: 2
- - uid: 6029
+ - uid: 8226
components:
- type: Transform
- pos: 59.5,-27.5
+ pos: -71.5,77.5
parent: 2
- - uid: 6030
+ - uid: 8227
components:
- type: Transform
- pos: 22.5,-0.5
+ pos: -61.5,-8.5
parent: 2
- - uid: 6031
+ - uid: 8228
components:
- type: Transform
- pos: 34.5,-55.5
+ pos: -88.5,-8.5
parent: 2
- - uid: 6032
+ - uid: 8229
components:
- type: Transform
- pos: 77.5,-41.5
+ pos: -118.5,28.5
parent: 2
- - uid: 6033
+ - uid: 8230
components:
- type: Transform
- pos: -65.5,51.5
+ pos: 58.5,22.5
parent: 2
- - uid: 6034
+ - uid: 8231
components:
- type: Transform
- pos: 56.5,-15.5
+ pos: 59.5,22.5
parent: 2
- - uid: 6035
+ - uid: 8232
components:
- type: Transform
- pos: 66.5,-18.5
+ pos: 59.5,23.5
parent: 2
- - uid: 6036
+ - uid: 8233
components:
- type: Transform
- pos: 52.5,-35.5
+ pos: -70.5,73.5
parent: 2
- - uid: 6037
+ - uid: 8234
components:
- type: Transform
- pos: 28.5,-5.5
+ pos: 59.5,24.5
parent: 2
- - uid: 6038
+ - uid: 8235
components:
- type: Transform
- pos: 62.5,-22.5
+ pos: -118.5,26.5
parent: 2
- - uid: 6039
+ - uid: 8236
components:
- type: Transform
- pos: 27.5,-6.5
+ pos: -72.5,70.5
parent: 2
- - uid: 6040
+ - uid: 8237
components:
- type: Transform
- pos: 24.5,-15.5
+ pos: -70.5,72.5
parent: 2
- - uid: 6041
+ - uid: 8238
components:
- type: Transform
- pos: 27.5,-15.5
+ pos: -69.5,73.5
parent: 2
- - uid: 6042
+ - uid: 8239
components:
- type: Transform
- pos: 39.5,-19.5
+ pos: 59.5,25.5
parent: 2
- - uid: 6043
+ - uid: 8240
components:
- type: Transform
- pos: 30.5,-5.5
+ pos: -39.5,-6.5
parent: 2
- - uid: 6044
+ - uid: 8241
components:
- type: Transform
- pos: -16.5,-34.5
+ pos: -68.5,72.5
parent: 2
- - uid: 6045
+ - uid: 8242
components:
- type: Transform
- pos: 27.5,-34.5
+ pos: -69.5,69.5
parent: 2
- - uid: 6046
+ - uid: 8243
components:
- type: Transform
- pos: -35.5,27.5
+ pos: -69.5,70.5
parent: 2
- - uid: 6047
+ - uid: 8244
components:
- type: Transform
- pos: -31.5,-28.5
+ pos: 78.5,-48.5
parent: 2
- - uid: 6048
+ - uid: 8245
components:
- type: Transform
- pos: -37.5,1.5
+ pos: 4.5,-40.5
parent: 2
- - uid: 6049
+ - uid: 8246
components:
- type: Transform
- pos: -55.5,36.5
+ pos: -48.5,2.5
parent: 2
- - uid: 6050
+ - uid: 8247
components:
- type: Transform
- pos: -72.5,-30.5
+ pos: -54.5,40.5
parent: 2
- - uid: 6051
+ - uid: 8248
components:
- type: Transform
- pos: -67.5,-30.5
+ pos: -50.5,36.5
parent: 2
- - uid: 6052
+ - uid: 8249
components:
- type: Transform
- pos: -0.5,-36.5
+ pos: -46.5,35.5
parent: 2
- - uid: 6053
+ - uid: 8250
components:
- type: Transform
- pos: -28.5,-25.5
+ pos: 4.5,-37.5
parent: 2
- - uid: 6054
+ - uid: 8251
components:
- type: Transform
- pos: -51.5,-20.5
+ pos: -61.5,-9.5
parent: 2
- - uid: 6055
+ - uid: 8252
components:
- type: Transform
- pos: -23.5,-10.5
+ pos: -44.5,4.5
parent: 2
- - uid: 6056
+ - uid: 8253
components:
- type: Transform
- pos: 17.5,-12.5
+ pos: 19.5,18.5
parent: 2
- - uid: 6057
+ - uid: 8254
components:
- type: Transform
- pos: -45.5,-24.5
+ pos: 11.5,-50.5
parent: 2
- - uid: 6058
+ - uid: 8255
components:
- type: Transform
- pos: 40.5,-66.5
+ pos: -26.5,-67.5
parent: 2
- - uid: 6059
+ - uid: 8256
components:
- type: Transform
- pos: -33.5,49.5
+ pos: 79.5,-44.5
parent: 2
- - uid: 6060
+ - uid: 8257
components:
- type: Transform
- pos: -41.5,22.5
+ pos: 46.5,-46.5
parent: 2
- - uid: 6061
+ - uid: 8258
components:
- type: Transform
- pos: -30.5,6.5
+ pos: -57.5,-90.5
parent: 2
- - uid: 6062
+ - uid: 8259
components:
- type: Transform
- pos: 27.5,-69.5
+ pos: 49.5,-10.5
parent: 2
- - uid: 6063
+ - uid: 8260
components:
- type: Transform
- pos: 29.5,-70.5
+ pos: -71.5,66.5
parent: 2
- - uid: 6064
+ - uid: 8261
components:
- type: Transform
- pos: -8.5,-71.5
+ pos: -73.5,66.5
parent: 2
- - uid: 6065
+ - uid: 8262
components:
- type: Transform
- pos: -58.5,-2.5
+ pos: -72.5,68.5
parent: 2
- - uid: 6066
+ - uid: 8263
components:
- type: Transform
- pos: -48.5,47.5
+ pos: -70.5,66.5
parent: 2
- - uid: 6067
+ - uid: 8264
components:
- type: Transform
- pos: -38.5,12.5
+ pos: -72.5,66.5
parent: 2
- - uid: 6068
+ - uid: 8265
components:
- type: Transform
- pos: -23.5,21.5
+ pos: -73.5,68.5
parent: 2
- - uid: 6069
+ - uid: 8266
components:
- type: Transform
- pos: -39.5,42.5
+ pos: 4.5,-43.5
parent: 2
- - uid: 6070
+ - uid: 8267
components:
- type: Transform
- pos: -16.5,-75.5
+ pos: -82.5,74.5
parent: 2
- - uid: 6071
+ - uid: 8268
components:
- type: Transform
- pos: -15.5,-73.5
+ pos: 68.5,25.5
parent: 2
- - uid: 6072
+ - uid: 8269
components:
- type: Transform
- pos: -16.5,-74.5
+ pos: -71.5,12.5
parent: 2
- - uid: 6073
+ - uid: 8270
components:
- type: Transform
- pos: 5.5,77.5
+ pos: 69.5,25.5
parent: 2
- - uid: 6074
+ - uid: 8271
components:
- type: Transform
- pos: -27.5,68.5
+ pos: 1.5,-38.5
parent: 2
- - uid: 6075
+ - uid: 8272
components:
- type: Transform
- pos: 42.5,-61.5
+ pos: -35.5,38.5
parent: 2
- - uid: 6076
+ - uid: 8273
components:
- type: Transform
- pos: -25.5,-16.5
+ pos: 69.5,24.5
parent: 2
- - uid: 6077
+ - uid: 8274
components:
- type: Transform
- pos: -68.5,-20.5
+ pos: 17.5,-7.5
parent: 2
- - uid: 6078
+ - uid: 8275
components:
- type: Transform
- pos: -33.5,48.5
+ pos: -50.5,32.5
parent: 2
- - uid: 6079
+ - uid: 8276
components:
- type: Transform
- pos: -48.5,-30.5
+ pos: -50.5,34.5
parent: 2
- - uid: 6080
+ - uid: 8277
components:
- type: Transform
- pos: -48.5,-29.5
+ pos: -50.5,37.5
parent: 2
- - uid: 6081
+ - uid: 8278
components:
- type: Transform
- pos: -37.5,11.5
+ pos: -58.5,58.5
parent: 2
- - uid: 6082
+ - uid: 8279
components:
- type: Transform
- pos: -36.5,48.5
+ pos: -76.5,77.5
parent: 2
- - uid: 6083
+ - uid: 8280
components:
- type: Transform
- pos: -49.5,50.5
+ pos: -71.5,68.5
parent: 2
- - uid: 6084
+ - uid: 8281
components:
- type: Transform
- pos: -18.5,-11.5
+ pos: 69.5,23.5
parent: 2
- - uid: 6085
+ - uid: 8282
components:
- type: Transform
- pos: -45.5,-25.5
+ pos: 69.5,22.5
parent: 2
- - uid: 6086
+ - uid: 8283
components:
- type: Transform
- pos: -50.5,-20.5
+ pos: -81.5,74.5
parent: 2
- - uid: 6087
+ - uid: 8284
components:
- type: Transform
- pos: -30.5,-11.5
+ pos: -53.5,43.5
parent: 2
- - uid: 6088
+ - uid: 8285
components:
- type: Transform
- pos: -45.5,-23.5
+ pos: -46.5,37.5
parent: 2
- - uid: 6089
+ - uid: 8286
components:
- type: Transform
- pos: -30.5,5.5
+ pos: 40.5,-26.5
parent: 2
- - uid: 6090
+ - uid: 8287
components:
- type: Transform
- pos: -23.5,-11.5
+ pos: -46.5,32.5
parent: 2
- - uid: 6091
+ - uid: 8288
components:
- type: Transform
- pos: 30.5,-69.5
+ pos: 4.5,-44.5
parent: 2
- - uid: 6092
+ - uid: 8289
components:
- type: Transform
- pos: -23.5,-7.5
+ pos: -42.5,34.5
parent: 2
- - uid: 6093
+ - uid: 8290
components:
- type: Transform
- pos: 0.5,-10.5
+ pos: -46.5,36.5
parent: 2
- - uid: 6094
+ - uid: 8291
components:
- type: Transform
- pos: -14.5,-73.5
+ pos: -53.5,42.5
parent: 2
- - uid: 6095
+ - uid: 8292
components:
- type: Transform
- pos: -13.5,-73.5
+ pos: 69.5,-1.5
parent: 2
- - uid: 6096
+ - uid: 8293
components:
- type: Transform
- pos: -12.5,41.5
+ pos: 13.5,87.5
parent: 2
- - uid: 6097
+ - uid: 8294
components:
- type: Transform
- pos: -18.5,53.5
+ pos: -54.5,-88.5
parent: 2
- - uid: 6098
+ - uid: 8295
components:
- type: Transform
- pos: -0.5,-10.5
+ pos: -45.5,32.5
parent: 2
- - uid: 6099
+ - uid: 8296
components:
- type: Transform
- pos: -26.5,-16.5
+ pos: -53.5,44.5
parent: 2
- - uid: 6100
+ - uid: 8297
components:
- type: Transform
- pos: -46.5,28.5
+ pos: -46.5,33.5
parent: 2
- - uid: 6101
+ - uid: 8298
components:
- type: Transform
- pos: -36.5,-48.5
+ pos: -46.5,32.5
parent: 2
- - uid: 6102
+ - uid: 8299
components:
- type: Transform
- pos: -52.5,-20.5
+ pos: 69.5,-2.5
parent: 2
- - uid: 6103
+ - uid: 8300
components:
- type: Transform
- pos: -16.5,-77.5
+ pos: -48.5,32.5
parent: 2
- - uid: 6104
+ - uid: 8301
components:
- type: Transform
- pos: 65.5,-18.5
+ pos: 69.5,-3.5
parent: 2
- - uid: 6105
+ - uid: 8302
components:
- type: Transform
- pos: 36.5,9.5
+ pos: 70.5,-3.5
parent: 2
- - uid: 6106
+ - uid: 8303
components:
- type: Transform
- pos: 36.5,8.5
+ pos: 67.5,22.5
parent: 2
- - uid: 6107
+ - uid: 8304
components:
- type: Transform
- pos: -59.5,42.5
+ pos: -58.5,59.5
parent: 2
- - uid: 6108
+ - uid: 8305
components:
- type: Transform
- pos: 26.5,-7.5
+ pos: -74.5,77.5
parent: 2
- - uid: 6109
+ - uid: 8306
components:
- type: Transform
- pos: 62.5,-14.5
+ pos: 71.5,-3.5
parent: 2
- - uid: 6110
+ - uid: 8307
components:
- type: Transform
- pos: 26.5,1.5
+ pos: -44.5,44.5
parent: 2
- - uid: 6111
+ - uid: 8308
components:
- type: Transform
- pos: 27.5,-5.5
+ pos: -70.5,77.5
parent: 2
- - uid: 6112
+ - uid: 8309
components:
- type: Transform
- pos: 31.5,-5.5
+ pos: 66.5,22.5
parent: 2
- - uid: 6113
+ - uid: 8310
components:
- type: Transform
- pos: 24.5,-20.5
+ pos: -69.5,72.5
parent: 2
- - uid: 6114
+ - uid: 8311
components:
- type: Transform
- pos: 25.5,-20.5
+ pos: 72.5,-3.5
parent: 2
- - uid: 6115
+ - uid: 8312
components:
- type: Transform
- pos: 33.5,9.5
+ pos: 73.5,-3.5
parent: 2
- - uid: 6116
+ - uid: 8313
components:
- type: Transform
- pos: 42.5,11.5
+ pos: 73.5,-2.5
parent: 2
- - uid: 6117
+ - uid: 8314
components:
- type: Transform
- pos: 47.5,-9.5
+ pos: 74.5,-2.5
parent: 2
- - uid: 6118
+ - uid: 8315
components:
- type: Transform
- pos: 56.5,-17.5
+ pos: 65.5,22.5
parent: 2
- - uid: 6119
+ - uid: 8316
components:
- type: Transform
- pos: 41.5,-7.5
+ pos: -59.5,-6.5
parent: 2
- - uid: 6120
+ - uid: 8317
components:
- type: Transform
- pos: 56.5,-25.5
+ pos: -54.5,45.5
parent: 2
- - uid: 6121
+ - uid: 8318
components:
- type: Transform
- pos: 52.5,-34.5
+ pos: -78.5,78.5
parent: 2
- - uid: 6122
+ - uid: 8319
components:
- type: Transform
- pos: 52.5,-15.5
+ pos: -48.5,3.5
parent: 2
- - uid: 6123
+ - uid: 8320
components:
- type: Transform
- pos: 38.5,-15.5
+ pos: -47.5,32.5
parent: 2
- - uid: 6124
+ - uid: 8321
components:
- type: Transform
- pos: 34.5,10.5
+ pos: -50.5,35.5
parent: 2
- - uid: 6125
+ - uid: 8322
components:
- type: Transform
- pos: 41.5,-8.5
+ pos: -44.5,3.5
parent: 2
- - uid: 6126
+ - uid: 8323
components:
- type: Transform
- pos: 28.5,35.5
+ pos: 82.5,-40.5
parent: 2
- - uid: 6127
+ - uid: 8324
components:
- type: Transform
- pos: 47.5,-7.5
+ pos: 82.5,-39.5
parent: 2
- - uid: 6128
+ - uid: 8325
components:
- type: Transform
- pos: 14.5,65.5
+ pos: 64.5,22.5
parent: 2
- - uid: 6129
+ - uid: 8326
components:
- type: Transform
- pos: 80.5,-18.5
+ pos: -58.5,-19.5
parent: 2
- - uid: 6130
+ - uid: 8327
components:
- type: Transform
- pos: 9.5,68.5
+ pos: 23.5,24.5
parent: 2
- - uid: 6131
+ - uid: 8328
components:
- type: Transform
- pos: 37.5,-52.5
+ pos: 40.5,-46.5
parent: 2
- - uid: 6132
+ - uid: 8329
components:
- type: Transform
- pos: 37.5,-54.5
+ pos: 11.5,64.5
parent: 2
- - uid: 6133
+ - uid: 8330
components:
- type: Transform
- pos: -0.5,-48.5
+ pos: -45.5,-86.5
parent: 2
- - uid: 6134
+ - uid: 8331
components:
- type: Transform
- pos: -46.5,1.5
+ pos: 63.5,22.5
parent: 2
- - uid: 6135
+ - uid: 8332
components:
- type: Transform
- pos: 10.5,71.5
+ pos: 21.5,24.5
parent: 2
- - uid: 6136
+ - uid: 8333
components:
- type: Transform
- pos: 11.5,71.5
+ pos: 35.5,-55.5
parent: 2
- - uid: 6137
+ - uid: 8334
components:
- type: Transform
- pos: -45.5,1.5
+ pos: -0.5,-24.5
parent: 2
- - uid: 6138
+ - uid: 8335
components:
- type: Transform
- pos: 2.5,23.5
+ pos: 62.5,22.5
parent: 2
- - uid: 6139
+ - uid: 8336
components:
- type: Transform
- pos: -51.5,-7.5
+ pos: 30.5,95.5
parent: 2
- - uid: 6140
+ - uid: 8337
components:
- type: Transform
- pos: -0.5,-49.5
+ pos: 61.5,22.5
parent: 2
- - uid: 6141
+ - uid: 8338
components:
- type: Transform
- pos: -9.5,49.5
+ pos: 23.5,87.5
parent: 2
- - uid: 6142
+ - uid: 8339
components:
- type: Transform
- pos: 4.5,30.5
+ pos: -56.5,45.5
parent: 2
- - uid: 6143
+ - uid: 8340
components:
- type: Transform
- pos: -0.5,-50.5
+ pos: -42.5,-6.5
parent: 2
- - uid: 6144
+ - uid: 8341
components:
- type: Transform
- pos: 3.5,30.5
+ pos: 61.5,21.5
parent: 2
- - uid: 6145
+ - uid: 8342
components:
- type: Transform
- pos: 4.5,42.5
+ pos: -81.5,77.5
parent: 2
- - uid: 6146
+ - uid: 8343
components:
- type: Transform
- pos: 25.5,47.5
+ pos: -81.5,76.5
parent: 2
- - uid: 6147
+ - uid: 8344
components:
- type: Transform
- pos: 14.5,38.5
+ pos: -55.5,2.5
parent: 2
- - uid: 6148
+ - uid: 8345
components:
- type: Transform
- pos: -8.5,49.5
+ pos: -53.5,2.5
parent: 2
- - uid: 6149
+ - uid: 8346
components:
- type: Transform
- pos: -11.5,49.5
+ pos: -55.5,-6.5
parent: 2
- - uid: 6150
+ - uid: 8347
components:
- type: Transform
- pos: 20.5,36.5
+ pos: -76.5,69.5
parent: 2
- - uid: 6151
+ - uid: 8348
components:
- type: Transform
- pos: -10.5,49.5
+ pos: -47.5,45.5
parent: 2
- - uid: 6152
+ - uid: 8349
components:
- type: Transform
- pos: -3.5,45.5
+ pos: 65.5,25.5
parent: 2
- - uid: 6153
+ - uid: 8350
components:
- type: Transform
- pos: 62.5,-15.5
+ pos: -71.5,70.5
parent: 2
- - uid: 6154
+ - uid: 8351
components:
- type: Transform
- pos: 80.5,-19.5
+ pos: -58.5,57.5
parent: 2
- - uid: 6155
+ - uid: 8352
components:
- type: Transform
- pos: -41.5,57.5
+ pos: -59.5,59.5
parent: 2
- - uid: 6156
+ - uid: 8353
components:
- type: Transform
- pos: 28.5,0.5
+ pos: -64.5,-6.5
parent: 2
- - uid: 6157
+ - uid: 8354
components:
- type: Transform
- pos: 67.5,-18.5
+ pos: -80.5,70.5
parent: 2
- - uid: 6158
+ - uid: 8355
components:
- type: Transform
- pos: 25.5,-19.5
+ pos: -51.5,-5.5
parent: 2
- - uid: 6159
+ - uid: 8356
components:
- type: Transform
- pos: -37.5,-48.5
+ pos: -46.5,1.5
parent: 2
- - uid: 6160
+ - uid: 8357
components:
- type: Transform
- pos: 48.5,-7.5
+ pos: 5.5,-37.5
parent: 2
- - uid: 6161
+ - uid: 8358
components:
- type: Transform
- pos: -57.5,42.5
+ pos: -54.5,41.5
parent: 2
- - uid: 6162
+ - uid: 8359
components:
- type: Transform
- pos: 37.5,-49.5
+ pos: -54.5,36.5
parent: 2
- - uid: 6163
+ - uid: 8360
components:
- type: Transform
- pos: -27.5,17.5
+ pos: -68.5,73.5
parent: 2
- - uid: 6164
+ - uid: 8361
components:
- type: Transform
- pos: -11.5,45.5
+ pos: -58.5,53.5
parent: 2
- - uid: 6165
+ - uid: 8362
components:
- type: Transform
- pos: -16.5,-69.5
+ pos: 22.5,100.5
parent: 2
- - uid: 6166
+ - uid: 8363
components:
- type: Transform
- pos: -22.5,-75.5
+ pos: 37.5,-53.5
parent: 2
- - uid: 6167
+ - uid: 8364
components:
- type: Transform
- pos: -47.5,45.5
+ pos: 21.5,96.5
parent: 2
- - uid: 6168
+ - uid: 8365
components:
- type: Transform
- pos: 33.5,-68.5
+ pos: -56.5,-19.5
parent: 2
- - uid: 6169
+ - uid: 8366
components:
- type: Transform
- pos: -32.5,-42.5
+ pos: 25.5,24.5
parent: 2
- - uid: 6170
+ - uid: 8367
components:
- type: Transform
- pos: 14.5,64.5
+ pos: -80.5,76.5
parent: 2
- - uid: 6171
+ - uid: 8368
components:
- type: Transform
- pos: -47.5,1.5
+ pos: -79.5,76.5
parent: 2
- - uid: 6172
+ - uid: 8369
components:
- type: Transform
- pos: 2.5,30.5
+ pos: -51.5,6.5
parent: 2
- - uid: 6173
+ - uid: 8370
components:
- type: Transform
- pos: -22.5,-77.5
+ pos: -56.5,-9.5
parent: 2
- - uid: 6174
+ - uid: 8371
components:
- type: Transform
- pos: -19.5,41.5
+ pos: 22.5,96.5
parent: 2
- - uid: 6175
+ - uid: 8372
components:
- type: Transform
- pos: -16.5,-73.5
+ pos: 23.5,96.5
parent: 2
- - uid: 6176
+ - uid: 8373
components:
- type: Transform
- pos: -37.5,61.5
+ pos: 33.5,-11.5
parent: 2
- - uid: 6177
+ - uid: 8374
components:
- type: Transform
- pos: -2.5,33.5
+ pos: -53.5,12.5
parent: 2
- - uid: 6178
+ - uid: 8375
components:
- type: Transform
- pos: 22.5,-55.5
+ pos: -53.5,11.5
parent: 2
- - uid: 6179
+ - uid: 8376
components:
- type: Transform
- pos: 23.5,-55.5
+ pos: -53.5,10.5
parent: 2
- - uid: 6180
+ - uid: 8377
components:
- type: Transform
- pos: -7.5,68.5
+ pos: -53.5,26.5
parent: 2
- - uid: 6181
+ - uid: 8378
components:
- type: Transform
- pos: -8.5,-72.5
+ pos: -69.5,74.5
parent: 2
- - uid: 6182
+ - uid: 8379
components:
- type: Transform
- pos: 26.5,18.5
+ pos: -52.5,27.5
parent: 2
- - uid: 6183
+ - uid: 8380
components:
- type: Transform
- pos: -29.5,-75.5
+ pos: -72.5,78.5
parent: 2
- - uid: 6184
+ - uid: 8381
components:
- type: Transform
- pos: -18.5,12.5
+ pos: -78.5,68.5
parent: 2
- - uid: 6185
+ - uid: 8382
components:
- type: Transform
- pos: -11.5,91.5
+ pos: -67.5,66.5
parent: 2
- - uid: 6186
+ - uid: 8383
components:
- type: Transform
- pos: -59.5,36.5
+ pos: -51.5,10.5
parent: 2
- - uid: 6187
+ - uid: 8384
components:
- type: Transform
- pos: -61.5,27.5
+ pos: -53.5,10.5
parent: 2
- - uid: 6188
+ - uid: 8385
components:
- type: Transform
- pos: -69.5,9.5
+ pos: -51.5,3.5
parent: 2
- - uid: 6189
+ - uid: 8386
components:
- type: Transform
- pos: -61.5,34.5
+ pos: -53.5,29.5
parent: 2
- - uid: 6190
+ - uid: 8387
components:
- type: Transform
- pos: -69.5,8.5
+ pos: -79.5,69.5
parent: 2
- - uid: 6191
+ - uid: 8388
components:
- type: Transform
- pos: -61.5,36.5
+ pos: -52.5,26.5
parent: 2
- - uid: 6192
+ - uid: 8389
components:
- type: Transform
- pos: -30.5,17.5
+ pos: -52.5,29.5
parent: 2
- - uid: 6193
+ - uid: 8390
components:
- type: Transform
- pos: -29.5,17.5
+ pos: -52.5,29.5
parent: 2
- - uid: 6194
+ - uid: 8391
components:
- type: Transform
- pos: -3.5,57.5
+ pos: -52.5,28.5
parent: 2
- - uid: 6195
+ - uid: 8392
components:
- type: Transform
- pos: -35.5,34.5
+ pos: -53.5,14.5
parent: 2
- - uid: 6196
+ - uid: 8393
components:
- type: Transform
- pos: -22.5,-76.5
+ pos: -54.5,29.5
parent: 2
- - uid: 6197
+ - uid: 8394
components:
- type: Transform
- pos: -16.5,-67.5
+ pos: -73.5,12.5
parent: 2
- - uid: 6198
+ - uid: 8395
components:
- type: Transform
- pos: -34.5,23.5
+ pos: -53.5,13.5
parent: 2
- - uid: 6199
+ - uid: 8396
components:
- type: Transform
- pos: -5.5,57.5
+ pos: -67.5,-1.5
parent: 2
- - uid: 6200
+ - uid: 8397
components:
- type: Transform
- pos: -18.5,-69.5
+ pos: -62.5,-6.5
parent: 2
- - uid: 6201
+ - uid: 8398
components:
- type: Transform
- pos: 0.5,-75.5
+ pos: -58.5,56.5
parent: 2
- - uid: 6202
+ - uid: 8399
components:
- type: Transform
- pos: -32.5,-26.5
+ pos: -44.5,-7.5
parent: 2
- - uid: 6203
+ - uid: 8400
components:
- type: Transform
- pos: -40.5,0.5
+ pos: -59.5,45.5
parent: 2
- - uid: 6204
+ - uid: 8401
components:
- type: Transform
- pos: -36.5,39.5
+ pos: 3.5,-39.5
parent: 2
- - uid: 6205
+ - uid: 8402
components:
- type: Transform
- pos: 11.5,49.5
+ pos: -36.5,-11.5
parent: 2
- - uid: 6206
+ - uid: 8403
components:
- type: Transform
- pos: 12.5,38.5
+ pos: -80.5,69.5
parent: 2
- - uid: 6207
+ - uid: 8404
components:
- type: Transform
- pos: -30.5,30.5
+ pos: -68.5,66.5
parent: 2
- - uid: 6208
+ - uid: 8405
components:
- type: Transform
- pos: 18.5,26.5
+ pos: -55.5,45.5
parent: 2
- - uid: 6209
+ - uid: 8406
components:
- type: Transform
- pos: 11.5,48.5
+ pos: -53.5,-5.5
parent: 2
- - uid: 6210
+ - uid: 8407
components:
- type: Transform
- pos: 6.5,42.5
+ pos: -53.5,-6.5
parent: 2
- - uid: 6211
+ - uid: 8408
components:
- type: Transform
- pos: -62.5,27.5
+ pos: -53.5,-4.5
parent: 2
- - uid: 6212
+ - uid: 8409
components:
- type: Transform
- pos: -32.5,35.5
+ pos: -43.5,-6.5
parent: 2
- - uid: 6213
+ - uid: 8410
components:
- type: Transform
- pos: 27.5,9.5
+ pos: -40.5,-8.5
parent: 2
- - uid: 6214
+ - uid: 8411
components:
- type: Transform
- pos: 22.5,5.5
+ pos: -118.5,25.5
parent: 2
- - uid: 6215
+ - uid: 8412
components:
- type: Transform
- pos: 66.5,25.5
+ pos: 63.5,25.5
parent: 2
- - uid: 6216
+ - uid: 8413
components:
- type: Transform
- pos: 64.5,-18.5
+ pos: -62.5,-25.5
parent: 2
- - uid: 6217
+ - uid: 8414
components:
- type: Transform
- pos: 23.5,50.5
+ pos: -56.5,-6.5
parent: 2
- - uid: 6218
+ - uid: 8415
components:
- type: Transform
- pos: -65.5,41.5
+ pos: -60.5,-25.5
parent: 2
- - uid: 6219
+ - uid: 8416
components:
- type: Transform
- pos: 37.5,-48.5
+ pos: -76.5,-7.5
parent: 2
- - uid: 6220
+ - uid: 8417
components:
- type: Transform
- pos: 5.5,30.5
+ pos: -82.5,72.5
parent: 2
- - uid: 6221
+ - uid: 8418
components:
- type: Transform
- pos: 13.5,64.5
+ pos: -80.5,72.5
parent: 2
- - uid: 6222
+ - uid: 8419
components:
- type: Transform
- pos: 7.5,-43.5
+ pos: -70.5,70.5
parent: 2
- - uid: 6223
+ - uid: 8420
components:
- type: Transform
- pos: -1.5,-10.5
+ pos: -81.5,72.5
parent: 2
- - uid: 6224
+ - uid: 8421
components:
- type: Transform
- pos: -47.5,28.5
+ pos: -47.5,-86.5
parent: 2
- - uid: 6225
+ - uid: 8422
components:
- type: Transform
- pos: -41.5,16.5
+ pos: 33.5,-8.5
parent: 2
- - uid: 6226
+ - uid: 8423
components:
- type: Transform
- pos: -39.5,0.5
+ pos: -17.5,-10.5
parent: 2
- - uid: 6227
+ - uid: 8424
components:
- type: Transform
- pos: -40.5,42.5
+ pos: -41.5,39.5
parent: 2
- - uid: 6228
+ - uid: 8425
components:
- type: Transform
- pos: -31.5,-26.5
+ pos: -48.5,-86.5
parent: 2
- - uid: 6229
+ - uid: 8426
components:
- type: Transform
- pos: -4.5,58.5
+ pos: 14.5,64.5
parent: 2
- - uid: 6230
+ - uid: 8427
components:
- type: Transform
- pos: -35.5,33.5
+ pos: 23.5,92.5
parent: 2
- - uid: 6231
+ - uid: 8428
components:
- type: Transform
- pos: -22.5,-78.5
+ pos: 13.5,64.5
parent: 2
- - uid: 6232
+ - uid: 8429
components:
- type: Transform
- pos: -25.5,53.5
+ pos: -49.5,-80.5
parent: 2
- - uid: 6233
+ - uid: 8430
components:
- type: Transform
- pos: -29.5,-11.5
+ pos: -48.5,-88.5
parent: 2
- - uid: 6234
+ - uid: 8431
components:
- type: Transform
- pos: -33.5,-30.5
+ pos: -46.5,-80.5
parent: 2
- - uid: 6235
+ - uid: 8432
components:
- type: Transform
- pos: -28.5,-27.5
+ pos: -48.5,-80.5
parent: 2
- - uid: 6236
+ - uid: 8433
components:
- type: Transform
- pos: -33.5,61.5
+ pos: -41.5,22.5
parent: 2
- - uid: 6237
+ - uid: 8434
components:
- type: Transform
- pos: 3.5,84.5
+ pos: 51.5,-35.5
parent: 2
- - uid: 6238
+ - uid: 8435
components:
- type: Transform
- pos: 34.5,-34.5
+ pos: -0.5,-20.5
parent: 2
- - uid: 6239
+ - uid: 8436
components:
- type: Transform
- pos: -16.5,-72.5
+ pos: 44.5,-8.5
parent: 2
- - uid: 6240
+ - uid: 8437
components:
- type: Transform
- pos: 40.5,-64.5
+ pos: -36.5,-1.5
parent: 2
- - uid: 6241
+ - uid: 8438
components:
- type: Transform
- pos: 0.5,-74.5
+ pos: 18.5,-17.5
parent: 2
- - uid: 6242
+ - uid: 8439
components:
- type: Transform
- pos: -25.5,23.5
+ pos: -0.5,-22.5
parent: 2
- - uid: 6243
+ - uid: 8440
components:
- type: Transform
- pos: 22.5,-14.5
+ pos: -10.5,-8.5
parent: 2
- - uid: 6244
+ - uid: 8441
components:
- type: Transform
- pos: 63.5,-29.5
+ pos: -9.5,-8.5
parent: 2
- - uid: 6245
+ - uid: 8442
components:
- type: Transform
- pos: 33.5,11.5
+ pos: 51.5,-37.5
parent: 2
- - uid: 6246
+ - uid: 8443
components:
- type: Transform
- pos: 42.5,13.5
+ pos: 44.5,-3.5
parent: 2
- - uid: 6247
+ - uid: 8444
components:
- type: Transform
- pos: -62.5,43.5
+ pos: -0.5,-26.5
parent: 2
- - uid: 6248
+ - uid: 8445
components:
- type: Transform
- pos: 27.5,1.5
+ pos: -36.5,-6.5
parent: 2
- - uid: 6249
+ - uid: 8446
components:
- type: Transform
- pos: 62.5,-13.5
+ pos: -28.5,-28.5
parent: 2
- - uid: 6250
+ - uid: 8447
components:
- type: Transform
- pos: -47.5,43.5
+ pos: -30.5,-26.5
parent: 2
- - uid: 6251
+ - uid: 8448
components:
- type: Transform
- pos: -46.5,5.5
+ pos: 19.5,-19.5
parent: 2
- - uid: 6252
+ - uid: 8449
components:
- type: Transform
- pos: 3.5,42.5
+ pos: -41.5,25.5
parent: 2
- - uid: 6253
+ - uid: 8450
components:
- type: Transform
- pos: -16.5,-68.5
+ pos: -47.5,-88.5
parent: 2
- - uid: 6254
+ - uid: 8451
components:
- type: Transform
- pos: -35.5,35.5
+ pos: 51.5,-31.5
parent: 2
- - uid: 6255
+ - uid: 8452
components:
- type: Transform
- pos: -4.5,57.5
+ pos: -25.5,-72.5
parent: 2
- - uid: 6256
+ - uid: 8453
components:
- type: Transform
- pos: 11.5,80.5
+ pos: 5.5,-7.5
parent: 2
- - uid: 6257
+ - uid: 8454
components:
- type: Transform
- pos: 29.5,-69.5
+ pos: -28.5,-33.5
parent: 2
- - uid: 6258
+ - uid: 8455
components:
- type: Transform
- pos: 26.5,-69.5
+ pos: -3.5,-19.5
parent: 2
- - uid: 6259
+ - uid: 8456
components:
- type: Transform
- pos: 41.5,-72.5
+ pos: 48.5,-10.5
parent: 2
- - uid: 6260
+ - uid: 8457
components:
- type: Transform
- pos: -17.5,-69.5
+ pos: -37.5,-26.5
parent: 2
- - uid: 6261
+ - uid: 8458
components:
- type: Transform
- pos: 2.5,-79.5
+ pos: -28.5,-32.5
parent: 2
- - uid: 6262
+ - uid: 8459
components:
- type: Transform
- pos: -53.5,-20.5
+ pos: -2.5,-19.5
parent: 2
- - uid: 6263
+ - uid: 8460
components:
- type: Transform
- pos: -33.5,-48.5
+ pos: 11.5,78.5
parent: 2
- - uid: 6264
+ - uid: 8461
components:
- type: Transform
- pos: -18.5,52.5
+ pos: -45.5,-88.5
parent: 2
- - uid: 6265
+ - uid: 8462
components:
- type: Transform
- pos: 5.5,42.5
+ pos: -57.5,-82.5
parent: 2
- - uid: 6266
+ - uid: 8463
components:
- type: Transform
- pos: 41.5,-69.5
+ pos: -52.5,45.5
parent: 2
- - uid: 6267
+ - uid: 8464
components:
- type: Transform
- pos: -35.5,39.5
+ pos: -8.5,-19.5
parent: 2
- - uid: 6268
+ - uid: 8465
components:
- type: Transform
- pos: -22.5,32.5
+ pos: -27.5,-71.5
parent: 2
- - uid: 6269
+ - uid: 8466
components:
- type: Transform
- pos: 9.5,71.5
+ pos: -0.5,-32.5
parent: 2
- - uid: 6270
+ - uid: 8467
components:
- type: Transform
- pos: 68.5,-21.5
+ pos: 17.5,23.5
parent: 2
- - uid: 6271
+ - uid: 8468
components:
- type: Transform
- pos: -38.5,35.5
+ pos: -36.5,-17.5
parent: 2
- - uid: 6272
+ - uid: 8469
components:
- type: Transform
- pos: -37.5,10.5
+ pos: 25.5,90.5
parent: 2
- - uid: 6273
+ - uid: 8470
components:
- type: Transform
- pos: -33.5,52.5
+ pos: -67.5,-20.5
parent: 2
- - uid: 6274
+ - uid: 8471
components:
- type: Transform
- pos: -23.5,-8.5
+ pos: 10.5,58.5
parent: 2
- - uid: 6275
+ - uid: 8472
components:
- type: Transform
- pos: -50.5,55.5
+ pos: -28.5,-71.5
parent: 2
- - uid: 6276
+ - uid: 8473
components:
- type: Transform
- pos: 20.5,5.5
+ pos: -0.5,-31.5
parent: 2
- - uid: 6277
+ - uid: 8474
components:
- type: Transform
- pos: 19.5,5.5
+ pos: 17.5,24.5
parent: 2
- - uid: 6278
+ - uid: 8475
components:
- type: Transform
- pos: -68.5,5.5
+ pos: 27.5,-55.5
parent: 2
- - uid: 6279
+ - uid: 8476
components:
- type: Transform
- pos: 21.5,5.5
+ pos: 52.5,-46.5
parent: 2
- - uid: 6280
+ - uid: 8477
components:
- type: Transform
- pos: -47.5,44.5
+ pos: 17.5,9.5
parent: 2
- - uid: 6281
+ - uid: 8478
components:
- type: Transform
- pos: 44.5,-33.5
+ pos: -36.5,-10.5
parent: 2
- - uid: 6282
+ - uid: 8479
components:
- type: Transform
- pos: 49.5,-7.5
+ pos: 33.5,-3.5
parent: 2
- - uid: 6283
+ - uid: 8480
components:
- type: Transform
- pos: -17.5,-67.5
+ pos: 3.5,-7.5
parent: 2
- - uid: 6284
+ - uid: 8481
components:
- type: Transform
- pos: -7.5,49.5
+ pos: 27.5,30.5
parent: 2
- - uid: 6285
+ - uid: 8482
components:
- type: Transform
- pos: -28.5,17.5
+ pos: 24.5,90.5
parent: 2
- - uid: 6286
+ - uid: 8483
components:
- type: Transform
- pos: 46.5,-10.5
+ pos: 31.5,96.5
parent: 2
- - uid: 6287
+ - uid: 8484
components:
- type: Transform
- pos: 40.5,-24.5
+ pos: 31.5,94.5
parent: 2
- - uid: 6288
+ - uid: 8485
components:
- type: Transform
- pos: -46.5,55.5
+ pos: -40.5,-26.5
parent: 2
- - uid: 6289
+ - uid: 8486
components:
- type: Transform
- pos: 22.5,-43.5
+ pos: -0.5,-35.5
parent: 2
- - uid: 6290
+ - uid: 8487
components:
- type: Transform
- pos: -62.5,5.5
+ pos: 51.5,-40.5
parent: 2
- - uid: 6291
+ - uid: 8488
components:
- type: Transform
- pos: 37.5,-50.5
+ pos: 44.5,-5.5
parent: 2
- - uid: 6292
+ - uid: 8489
components:
- type: Transform
- pos: 9.5,69.5
+ pos: 24.5,94.5
parent: 2
- - uid: 6293
+ - uid: 8490
components:
- type: Transform
- pos: -52.5,-12.5
+ pos: 26.5,87.5
parent: 2
- - uid: 6294
+ - uid: 8491
components:
- type: Transform
- pos: -71.5,7.5
+ pos: 24.5,87.5
parent: 2
- - uid: 6295
+ - uid: 8492
components:
- type: Transform
- pos: -64.5,51.5
+ pos: -29.5,-71.5
parent: 2
- - uid: 6296
+ - uid: 8493
components:
- type: Transform
- pos: -22.5,12.5
+ pos: 44.5,-4.5
parent: 2
- - uid: 6297
+ - uid: 8494
components:
- type: Transform
- pos: -47.5,50.5
+ pos: -47.5,-7.5
parent: 2
- - uid: 6298
+ - uid: 8495
components:
- type: Transform
- pos: -6.5,-8.5
+ pos: -48.5,-2.5
parent: 2
- - uid: 6299
+ - uid: 8496
components:
- type: Transform
- pos: -65.5,33.5
+ pos: -46.5,-82.5
parent: 2
- - uid: 6300
+ - uid: 8497
components:
- type: Transform
- pos: 4.5,-12.5
+ pos: -48.5,-82.5
parent: 2
- - uid: 6301
+ - uid: 8498
components:
- type: Transform
- pos: -63.5,5.5
+ pos: -55.5,-82.5
parent: 2
- - uid: 6302
+ - uid: 8499
components:
- type: Transform
- pos: -35.5,10.5
+ pos: -49.5,-82.5
parent: 2
- - uid: 6303
+ - uid: 8500
components:
- type: Transform
- pos: 31.5,-34.5
+ pos: 30.5,90.5
parent: 2
- - uid: 6304
+ - uid: 8501
components:
- type: Transform
- pos: -4.5,-58.5
+ pos: -48.5,12.5
parent: 2
- - uid: 6305
+ - uid: 8502
components:
- type: Transform
- pos: -5.5,-68.5
+ pos: -47.5,12.5
parent: 2
- - uid: 6306
+ - uid: 8503
components:
- type: Transform
- pos: -26.5,57.5
+ pos: 19.5,87.5
parent: 2
- - uid: 6307
+ - uid: 8504
components:
- type: Transform
- pos: 24.5,18.5
+ pos: -47.5,-90.5
parent: 2
- - uid: 6308
+ - uid: 8505
components:
- type: Transform
- pos: -22.5,55.5
+ pos: -0.5,-30.5
parent: 2
- - uid: 6309
+ - uid: 8506
components:
- type: Transform
- pos: 0.5,-73.5
+ pos: -48.5,-90.5
parent: 2
- - uid: 6310
+ - uid: 8507
components:
- type: Transform
- pos: 2.5,-80.5
+ pos: 80.5,-40.5
parent: 2
- - uid: 6311
+ - uid: 8508
components:
- type: Transform
- pos: 56.5,-27.5
+ pos: 10.5,60.5
parent: 2
- - uid: 6312
+ - uid: 8509
components:
- type: Transform
- pos: 37.5,-61.5
+ pos: 32.5,98.5
parent: 2
- - uid: 6313
+ - uid: 8510
components:
- type: Transform
- pos: 32.5,-42.5
+ pos: 31.5,-15.5
parent: 2
- - uid: 6314
+ - uid: 8511
components:
- type: Transform
- pos: -40.5,-11.5
+ pos: -16.5,-19.5
parent: 2
- - uid: 6315
+ - uid: 8512
components:
- type: Transform
- pos: 59.5,-30.5
+ pos: -49.5,11.5
parent: 2
- - uid: 6316
+ - uid: 8513
components:
- type: Transform
- pos: 26.5,-10.5
+ pos: -49.5,10.5
parent: 2
- - uid: 6317
+ - uid: 8514
components:
- type: Transform
- pos: -4.5,23.5
+ pos: -44.5,12.5
parent: 2
- - uid: 6318
+ - uid: 8515
components:
- type: Transform
- pos: -26.5,17.5
+ pos: 32.5,-15.5
parent: 2
- - uid: 6319
+ - uid: 8516
components:
- type: Transform
- pos: -31.5,37.5
+ pos: -14.5,-19.5
parent: 2
- - uid: 6320
+ - uid: 8517
components:
- type: Transform
- pos: 53.5,-46.5
+ pos: 18.5,24.5
parent: 2
- - uid: 6321
+ - uid: 8518
components:
- type: Transform
- pos: 52.5,-46.5
+ pos: -36.5,-5.5
parent: 2
- - uid: 6322
+ - uid: 8519
components:
- type: Transform
- pos: 58.5,-46.5
+ pos: 29.5,-15.5
parent: 2
- - uid: 6323
+ - uid: 8520
components:
- type: Transform
- pos: 23.5,-18.5
+ pos: 33.5,-15.5
parent: 2
- - uid: 6324
+ - uid: 8521
components:
- type: Transform
- pos: 10.5,47.5
+ pos: -17.5,-17.5
parent: 2
- - uid: 6325
+ - uid: 8522
components:
- type: Transform
- pos: 30.5,8.5
+ pos: -46.5,12.5
parent: 2
- - uid: 6326
+ - uid: 8523
components:
- type: Transform
- pos: 36.5,-64.5
+ pos: 78.5,-36.5
parent: 2
- - uid: 6327
+ - uid: 8524
components:
- type: Transform
- pos: 37.5,-64.5
+ pos: 33.5,98.5
parent: 2
- - uid: 6328
+ - uid: 8525
components:
- type: Transform
- pos: 22.5,12.5
+ pos: 8.5,-7.5
parent: 2
- - uid: 6329
+ - uid: 8526
components:
- type: Transform
- pos: -54.5,-24.5
+ pos: -25.5,-74.5
parent: 2
- - uid: 6330
+ - uid: 8527
components:
- type: Transform
- pos: -32.5,-14.5
+ pos: 46.5,-28.5
parent: 2
- - uid: 6331
+ - uid: 8528
components:
- type: Transform
- pos: -5.5,-11.5
+ pos: -36.5,-4.5
parent: 2
- - uid: 6332
+ - uid: 8529
components:
- type: Transform
- pos: 10.5,-39.5
+ pos: 11.5,79.5
parent: 2
- - uid: 6333
+ - uid: 8530
components:
- type: Transform
- pos: -76.5,7.5
+ pos: 18.5,45.5
parent: 2
- - uid: 6334
+ - uid: 8531
components:
- type: Transform
- pos: -53.5,15.5
+ pos: 14.5,88.5
parent: 2
- - uid: 6335
+ - uid: 8532
components:
- type: Transform
- pos: -32.5,-52.5
+ pos: 43.5,-28.5
parent: 2
- - uid: 6336
+ - uid: 8533
components:
- type: Transform
- pos: -7.5,-23.5
+ pos: -26.5,-78.5
parent: 2
- - uid: 6337
+ - uid: 8534
components:
- type: Transform
- pos: -11.5,14.5
+ pos: 10.5,-6.5
parent: 2
- - uid: 6338
+ - uid: 8535
components:
- type: Transform
- pos: -0.5,18.5
+ pos: -26.5,-70.5
parent: 2
- - uid: 6339
+ - uid: 8536
components:
- type: Transform
- pos: -37.5,-52.5
+ pos: -37.5,-1.5
parent: 2
- - uid: 6340
+ - uid: 8537
components:
- type: Transform
- pos: 5.5,-50.5
+ pos: 23.5,-21.5
parent: 2
- - uid: 6341
+ - uid: 8538
components:
- type: Transform
- pos: -54.5,-26.5
+ pos: -26.5,-33.5
parent: 2
- - uid: 6342
+ - uid: 8539
components:
- type: Transform
- pos: 13.5,-4.5
+ pos: 36.5,-3.5
parent: 2
- - uid: 6343
+ - uid: 8540
components:
- type: Transform
- pos: -54.5,-25.5
+ pos: -47.5,-22.5
parent: 2
- - uid: 6344
+ - uid: 8541
components:
- type: Transform
- pos: 11.5,-26.5
+ pos: -44.5,45.5
parent: 2
- - uid: 6345
+ - uid: 8542
components:
- type: Transform
- pos: -60.5,-7.5
+ pos: -52.5,-89.5
parent: 2
- - uid: 6346
+ - uid: 8543
components:
- type: Transform
- pos: -23.5,12.5
+ pos: -53.5,-90.5
parent: 2
- - uid: 6347
+ - uid: 8544
components:
- type: Transform
- pos: -65.5,-30.5
+ pos: -53.5,-88.5
parent: 2
- - uid: 6348
+ - uid: 8545
components:
- type: Transform
- pos: -40.5,-30.5
+ pos: -50.5,0.5
parent: 2
- - uid: 6349
+ - uid: 8546
components:
- type: Transform
- pos: 1.5,-8.5
+ pos: -53.5,-1.5
parent: 2
- - uid: 6350
+ - uid: 8547
components:
- type: Transform
- pos: 1.5,-10.5
+ pos: -26.5,-58.5
parent: 2
- - uid: 6351
+ - uid: 8548
components:
- type: Transform
- pos: -49.5,-27.5
+ pos: -49.5,-74.5
parent: 2
- - uid: 6352
+ - uid: 8549
components:
- type: Transform
- pos: -51.5,51.5
+ pos: -41.5,-74.5
parent: 2
- - uid: 6353
+ - uid: 8550
components:
- type: Transform
- pos: 17.5,18.5
+ pos: -41.5,24.5
parent: 2
- - uid: 6354
+ - uid: 8551
components:
- type: Transform
- pos: 8.5,35.5
+ pos: 20.5,87.5
parent: 2
- - uid: 6355
+ - uid: 8552
components:
- type: Transform
- pos: 9.5,39.5
+ pos: 18.5,-19.5
parent: 2
- - uid: 6356
+ - uid: 8553
components:
- type: Transform
- pos: 1.5,-9.5
+ pos: -29.5,-26.5
parent: 2
- - uid: 6357
+ - uid: 8554
components:
- type: Transform
- pos: -8.5,-70.5
+ pos: -28.5,-29.5
parent: 2
- - uid: 6358
+ - uid: 8555
components:
- type: Transform
- pos: -62.5,48.5
+ pos: -0.5,-27.5
parent: 2
- - uid: 6359
+ - uid: 8556
components:
- type: Transform
- pos: -33.5,13.5
+ pos: 45.5,-3.5
parent: 2
- - uid: 6360
+ - uid: 8557
components:
- type: Transform
- pos: -50.5,-27.5
+ pos: 51.5,-36.5
parent: 2
- - uid: 6361
+ - uid: 8558
components:
- type: Transform
- pos: 69.5,-21.5
+ pos: -8.5,-8.5
parent: 2
- - uid: 6362
+ - uid: 8559
components:
- type: Transform
- pos: -54.5,39.5
+ pos: -36.5,-8.5
parent: 2
- - uid: 6363
+ - uid: 8560
components:
- type: Transform
- pos: 25.5,36.5
+ pos: -0.5,-34.5
parent: 2
- - uid: 6364
+ - uid: 8561
components:
- type: Transform
- pos: 6.5,34.5
+ pos: -39.5,-26.5
parent: 2
- - uid: 6365
+ - uid: 8562
components:
- type: Transform
- pos: 13.5,30.5
+ pos: 78.5,-51.5
parent: 2
- - uid: 6366
+ - uid: 8563
components:
- type: Transform
- pos: 28.5,-65.5
+ pos: -69.5,-20.5
parent: 2
- - uid: 6367
+ - uid: 8564
components:
- type: Transform
- pos: 40.5,-9.5
+ pos: -15.5,-19.5
parent: 2
- - uid: 6368
+ - uid: 8565
components:
- type: Transform
- pos: 75.5,-16.5
+ pos: -65.5,-20.5
parent: 2
- - uid: 6369
+ - uid: 8566
components:
- type: Transform
- pos: 49.5,-51.5
+ pos: 31.5,92.5
parent: 2
- - uid: 6370
+ - uid: 8567
components:
- type: Transform
- pos: 35.5,11.5
+ pos: 25.5,-55.5
parent: 2
- - uid: 6371
+ - uid: 8568
components:
- type: Transform
- pos: 61.5,-9.5
+ pos: 17.5,21.5
parent: 2
- - uid: 6372
+ - uid: 8569
components:
- type: Transform
- pos: -39.5,-8.5
+ pos: 10.5,57.5
parent: 2
- - uid: 6373
+ - uid: 8570
components:
- type: Transform
- pos: 34.5,-3.5
+ pos: -54.5,-82.5
parent: 2
- - uid: 6374
+ - uid: 8571
components:
- type: Transform
- pos: -52.5,-47.5
+ pos: -57.5,51.5
parent: 2
- - uid: 6375
+ - uid: 8572
components:
- type: Transform
- pos: -55.5,-10.5
+ pos: -57.5,50.5
parent: 2
- - uid: 6376
+ - uid: 8573
components:
- type: Transform
- pos: -55.5,-43.5
+ pos: 33.5,-7.5
parent: 2
- - uid: 6377
+ - uid: 8574
components:
- type: Transform
- pos: -69.5,-24.5
+ pos: -17.5,-8.5
parent: 2
- - uid: 6378
+ - uid: 8575
components:
- type: Transform
- pos: -71.5,-25.5
+ pos: -42.5,39.5
parent: 2
- - uid: 6379
+ - uid: 8576
components:
- type: Transform
- pos: -47.5,-13.5
+ pos: 21.5,25.5
parent: 2
- - uid: 6380
+ - uid: 8577
components:
- type: Transform
- pos: -59.5,9.5
+ pos: 37.5,-52.5
parent: 2
- - uid: 6381
+ - uid: 8578
components:
- type: Transform
- pos: -60.5,14.5
+ pos: -56.5,-20.5
parent: 2
- - uid: 6382
+ - uid: 8579
components:
- type: Transform
- pos: -48.5,22.5
+ pos: -48.5,39.5
parent: 2
- - uid: 6383
+ - uid: 8580
components:
- type: Transform
- pos: -58.5,57.5
+ pos: 82.5,-37.5
parent: 2
- - uid: 6384
+ - uid: 8581
components:
- type: Transform
- pos: -59.5,-8.5
+ pos: 28.5,101.5
parent: 2
- - uid: 6385
+ - uid: 8582
components:
- type: Transform
- pos: -54.5,50.5
+ pos: -71.5,8.5
parent: 2
- - uid: 6386
+ - uid: 8583
components:
- type: Transform
- pos: 31.5,-40.5
+ pos: 10.5,82.5
parent: 2
- - uid: 6387
+ - uid: 8584
components:
- type: Transform
- pos: 17.5,-30.5
+ pos: 39.5,-22.5
parent: 2
- - uid: 6388
+ - uid: 8585
components:
- type: Transform
- pos: 36.5,-42.5
+ pos: -7.5,-8.5
parent: 2
- - uid: 6389
+ - uid: 8586
components:
- type: Transform
- pos: 25.5,-28.5
+ pos: 17.5,3.5
parent: 2
- - uid: 6390
+ - uid: 8587
components:
- type: Transform
- pos: 25.5,-26.5
+ pos: 51.5,-32.5
parent: 2
- - uid: 6391
+ - uid: 8588
components:
- type: Transform
- pos: 30.5,-23.5
+ pos: 44.5,-10.5
parent: 2
- - uid: 6392
+ - uid: 8589
components:
- type: Transform
- pos: 16.5,-41.5
+ pos: -26.5,-71.5
parent: 2
- - uid: 6393
+ - uid: 8590
components:
- type: Transform
- pos: -28.5,-50.5
+ pos: -57.5,-84.5
parent: 2
- - uid: 6394
+ - uid: 8591
components:
- type: Transform
- pos: 13.5,-7.5
+ pos: 18.5,51.5
parent: 2
- - uid: 6395
+ - uid: 8592
components:
- type: Transform
- pos: 5.5,-39.5
+ pos: 18.5,48.5
parent: 2
- - uid: 6396
+ - uid: 8593
components:
- type: Transform
- pos: 10.5,-7.5
+ pos: -71.5,9.5
parent: 2
- - uid: 6397
+ - uid: 8594
components:
- type: Transform
- pos: -32.5,-5.5
+ pos: -71.5,10.5
parent: 2
- - uid: 6398
+ - uid: 8595
components:
- type: Transform
- pos: -70.5,-30.5
+ pos: 31.5,-55.5
parent: 2
- - uid: 6399
+ - uid: 8596
components:
- type: Transform
- pos: -26.5,61.5
+ pos: -60.5,-20.5
parent: 2
- - uid: 6400
+ - uid: 8597
components:
- type: Transform
- pos: -26.5,62.5
+ pos: -44.5,38.5
parent: 2
- - uid: 6401
+ - uid: 8598
components:
- type: Transform
- pos: -14.5,-27.5
+ pos: -14.5,-8.5
parent: 2
- - uid: 6402
+ - uid: 8599
components:
- type: Transform
- pos: 68.5,25.5
+ pos: 33.5,-4.5
parent: 2
- - uid: 6403
+ - uid: 8600
components:
- type: Transform
- pos: -65.5,42.5
+ pos: 88.5,-46.5
parent: 2
- - uid: 6404
+ - uid: 8601
components:
- type: Transform
- pos: 75.5,-21.5
+ pos: 88.5,-44.5
parent: 2
- - uid: 6405
+ - uid: 8602
components:
- type: Transform
- pos: 28.5,1.5
+ pos: 25.5,94.5
parent: 2
- - uid: 6406
+ - uid: 8603
components:
- type: Transform
- pos: 35.5,5.5
+ pos: 4.5,-41.5
parent: 2
- - uid: 6407
+ - uid: 8604
components:
- type: Transform
- pos: 24.5,13.5
+ pos: -34.5,-71.5
parent: 2
- - uid: 6408
+ - uid: 8605
components:
- type: Transform
- pos: 32.5,8.5
+ pos: -36.5,39.5
parent: 2
- - uid: 6409
+ - uid: 8606
components:
- type: Transform
- pos: 27.5,-7.5
+ pos: -72.5,-20.5
parent: 2
- - uid: 6410
+ - uid: 8607
components:
- type: Transform
- pos: -12.5,77.5
+ pos: -31.5,-19.5
parent: 2
- - uid: 6411
+ - uid: 8608
components:
- type: Transform
- pos: 37.5,-47.5
+ pos: -30.5,-19.5
parent: 2
- - uid: 6412
+ - uid: 8609
components:
- type: Transform
- pos: 21.5,52.5
+ pos: -27.5,-19.5
parent: 2
- - uid: 6413
+ - uid: 8610
components:
- type: Transform
- pos: 62.5,-9.5
+ pos: -25.5,-19.5
parent: 2
- - uid: 6414
+ - uid: 8611
components:
- type: Transform
- pos: -44.5,-33.5
+ pos: -26.5,-19.5
parent: 2
- - uid: 6415
+ - uid: 8612
components:
- type: Transform
- pos: 24.5,12.5
+ pos: 51.5,-29.5
parent: 2
- - uid: 6416
+ - uid: 8613
components:
- type: Transform
- pos: 32.5,7.5
+ pos: 34.5,96.5
parent: 2
- - uid: 6417
+ - uid: 8614
components:
- type: Transform
- pos: 34.5,5.5
+ pos: 51.5,-28.5
parent: 2
- - uid: 6418
+ - uid: 8615
components:
- type: Transform
- pos: 75.5,26.5
+ pos: 35.5,96.5
parent: 2
- - uid: 6419
+ - uid: 8616
components:
- type: Transform
- pos: 37.5,-46.5
+ pos: 17.5,6.5
parent: 2
- - uid: 6420
+ - uid: 8617
components:
- type: Transform
- pos: -63.5,40.5
+ pos: 28.5,-15.5
parent: 2
- - uid: 6421
+ - uid: 8618
components:
- type: Transform
- pos: 60.5,-9.5
+ pos: -41.5,6.5
parent: 2
- - uid: 6422
+ - uid: 8619
components:
- type: Transform
- pos: -48.5,50.5
+ pos: -26.5,-61.5
parent: 2
- - uid: 6423
+ - uid: 8620
components:
- type: Transform
- pos: 23.5,12.5
+ pos: -36.5,-2.5
parent: 2
- - uid: 6424
+ - uid: 8621
components:
- type: Transform
- pos: 33.5,5.5
+ pos: -36.5,-3.5
parent: 2
- - uid: 6425
+ - uid: 8622
components:
- type: Transform
- pos: 33.5,7.5
+ pos: 0.5,-7.5
parent: 2
- - uid: 6426
+ - uid: 8623
components:
- type: Transform
- pos: -56.5,-11.5
+ pos: 34.5,92.5
parent: 2
- - uid: 6427
+ - uid: 8624
components:
- type: Transform
- pos: 35.5,-68.5
+ pos: -46.5,-0.5
parent: 2
- - uid: 6428
+ - uid: 8625
components:
- type: Transform
- pos: 35.5,-67.5
+ pos: -118.5,31.5
parent: 2
- - uid: 6429
+ - uid: 8626
components:
- type: Transform
- pos: 35.5,-65.5
+ pos: -54.5,-86.5
parent: 2
- - uid: 6430
+ - uid: 8627
components:
- type: Transform
- pos: 40.5,-62.5
+ pos: -53.5,20.5
parent: 2
- - uid: 6431
+ - uid: 8628
components:
- type: Transform
- pos: 40.5,-60.5
+ pos: -57.5,49.5
parent: 2
- - uid: 6432
+ - uid: 8629
components:
- type: Transform
- pos: 44.5,-61.5
+ pos: -53.5,19.5
parent: 2
- - uid: 6433
+ - uid: 8630
components:
- type: Transform
- pos: -55.5,-42.5
+ pos: -53.5,21.5
parent: 2
- - uid: 6434
+ - uid: 8631
components:
- type: Transform
- pos: -39.5,-11.5
+ pos: -57.5,60.5
parent: 2
- - uid: 6435
+ - uid: 8632
components:
- type: Transform
- pos: -24.5,5.5
+ pos: -44.5,0.5
parent: 2
- - uid: 6436
+ - uid: 8633
components:
- type: Transform
- pos: 28.5,-60.5
+ pos: -70.5,76.5
parent: 2
- - uid: 6437
+ - uid: 8634
components:
- type: Transform
- pos: 19.5,38.5
+ pos: -69.5,76.5
parent: 2
- - uid: 6438
+ - uid: 8635
components:
- type: Transform
- pos: -35.5,30.5
+ pos: 7.5,58.5
parent: 2
- - uid: 6439
+ - uid: 8636
components:
- type: Transform
- pos: 62.5,-24.5
+ pos: 7.5,59.5
parent: 2
- - uid: 6440
+ - uid: 8637
components:
- type: Transform
- pos: 42.5,-69.5
+ pos: -71.5,76.5
parent: 2
- - uid: 6441
+ - uid: 8638
components:
- type: Transform
- pos: 35.5,-59.5
+ pos: -73.5,78.5
parent: 2
- - uid: 6442
+ - uid: 8639
components:
- type: Transform
- pos: 46.5,-19.5
+ pos: -71.5,78.5
parent: 2
- - uid: 6443
+ - uid: 8640
components:
- type: Transform
- pos: 16.5,44.5
+ pos: -46.5,-7.5
parent: 2
- - uid: 6444
+ - uid: 8641
components:
- type: Transform
- pos: -24.5,57.5
+ pos: -79.5,70.5
parent: 2
- - uid: 6445
+ - uid: 8642
components:
- type: Transform
- pos: 23.5,48.5
+ pos: -78.5,70.5
parent: 2
- - uid: 6446
+ - uid: 8643
components:
- type: Transform
- pos: -23.5,57.5
+ pos: 2.5,-39.5
parent: 2
- - uid: 6447
+ - uid: 8644
components:
- type: Transform
- pos: -49.5,-2.5
+ pos: -71.5,72.5
parent: 2
- - uid: 6448
+ - uid: 8645
components:
- type: Transform
- pos: -18.5,23.5
+ pos: -49.5,2.5
parent: 2
- - uid: 6449
+ - uid: 8646
components:
- type: Transform
- pos: -12.5,-67.5
+ pos: -44.5,1.5
parent: 2
- - uid: 6450
+ - uid: 8647
components:
- type: Transform
- pos: -18.5,21.5
+ pos: -80.5,73.5
parent: 2
- - uid: 6451
+ - uid: 8648
components:
- type: Transform
- pos: 21.5,44.5
+ pos: -81.5,73.5
parent: 2
- - uid: 6452
+ - uid: 8649
components:
- type: Transform
- pos: 17.5,-55.5
+ pos: -57.5,-9.5
parent: 2
- - uid: 6453
+ - uid: 8650
components:
- type: Transform
- pos: 6.5,51.5
+ pos: -82.5,73.5
parent: 2
- - uid: 6454
+ - uid: 8651
components:
- type: Transform
- pos: 3.5,23.5
+ pos: -49.5,-7.5
parent: 2
- - uid: 6455
+ - uid: 8652
components:
- type: Transform
- pos: 25.5,-70.5
+ pos: -42.5,31.5
parent: 2
- - uid: 6456
+ - uid: 8653
components:
- type: Transform
- pos: 67.5,25.5
+ pos: 17.5,1.5
parent: 2
- - uid: 6457
+ - uid: 8654
components:
- type: Transform
- pos: -29.5,14.5
+ pos: 14.5,72.5
parent: 2
- - uid: 6458
+ - uid: 8655
components:
- type: Transform
- pos: -43.5,-16.5
+ pos: 53.5,-6.5
parent: 2
- - uid: 6459
+ - uid: 8656
components:
- type: Transform
- pos: 65.5,25.5
+ pos: 14.5,56.5
parent: 2
- - uid: 6460
+ - uid: 8657
components:
- type: Transform
- pos: -24.5,38.5
+ pos: 49.5,-46.5
parent: 2
- - uid: 6461
+ - uid: 8658
components:
- type: Transform
- pos: -65.5,31.5
+ pos: 15.5,56.5
parent: 2
- - uid: 6462
+ - uid: 8659
components:
- type: Transform
- pos: -18.5,-12.5
+ pos: 18.5,52.5
parent: 2
- - uid: 6463
+ - uid: 8660
components:
- type: Transform
- pos: -32.5,46.5
+ pos: 53.5,-7.5
parent: 2
- - uid: 6464
+ - uid: 8661
components:
- type: Transform
- pos: -30.5,46.5
+ pos: 10.5,43.5
parent: 2
- - uid: 6465
+ - uid: 8662
components:
- type: Transform
- pos: 17.5,-11.5
+ pos: 9.5,88.5
parent: 2
- - uid: 6466
+ - uid: 8663
components:
- type: Transform
- pos: -59.5,61.5
+ pos: 18.5,18.5
parent: 2
- - uid: 6467
+ - uid: 8664
components:
- type: Transform
- pos: -48.5,52.5
+ pos: -53.5,-21.5
parent: 2
- - uid: 6468
+ - uid: 8665
components:
- type: Transform
- pos: -75.5,-26.5
+ pos: -35.5,-19.5
parent: 2
- - uid: 6469
+ - uid: 8666
components:
- type: Transform
- pos: -59.5,33.5
+ pos: 24.5,-55.5
parent: 2
- - uid: 6470
+ - uid: 8667
components:
- type: Transform
- pos: 26.5,-70.5
+ pos: 26.5,-15.5
parent: 2
- - uid: 6471
+ - uid: 8668
components:
- type: Transform
- pos: -64.5,29.5
+ pos: 17.5,-52.5
parent: 2
- - uid: 6472
+ - uid: 8669
components:
- type: Transform
- pos: 4.5,-52.5
+ pos: 27.5,-15.5
parent: 2
- - uid: 6473
+ - uid: 8670
components:
- type: Transform
- pos: 7.5,-31.5
+ pos: 10.5,56.5
parent: 2
- - uid: 6474
+ - uid: 8671
components:
- type: Transform
- pos: -18.5,-4.5
+ pos: -73.5,-20.5
parent: 2
- - uid: 6475
+ - uid: 8672
components:
- type: Transform
- pos: 6.5,43.5
+ pos: -32.5,-19.5
parent: 2
- - uid: 6476
+ - uid: 8673
components:
- type: Transform
- pos: 56.5,-13.5
+ pos: -54.5,-21.5
parent: 2
- - uid: 6477
+ - uid: 8674
components:
- type: Transform
- pos: 11.5,35.5
+ pos: -50.5,-21.5
parent: 2
- - uid: 6478
+ - uid: 8675
components:
- type: Transform
- pos: 28.5,37.5
+ pos: 47.5,-46.5
parent: 2
- - uid: 6479
+ - uid: 8676
components:
- type: Transform
- pos: 52.5,-18.5
+ pos: -47.5,-74.5
parent: 2
- - uid: 6480
+ - uid: 8677
components:
- type: Transform
- pos: 26.5,58.5
+ pos: 53.5,-8.5
parent: 2
- - uid: 6481
+ - uid: 8678
components:
- type: Transform
- pos: 6.5,40.5
+ pos: -57.5,-6.5
parent: 2
- - uid: 6482
+ - uid: 8679
components:
- type: Transform
- pos: -54.5,-1.5
+ pos: 37.5,-3.5
parent: 2
- - uid: 6483
+ - uid: 8680
components:
- type: Transform
- pos: 22.5,24.5
+ pos: 35.5,-3.5
parent: 2
- - uid: 6484
+ - uid: 8681
components:
- type: Transform
- pos: 24.5,24.5
+ pos: 22.5,18.5
parent: 2
- - uid: 6485
+ - uid: 8682
components:
- type: Transform
- pos: 23.5,24.5
+ pos: 18.5,-9.5
parent: 2
- - uid: 6486
+ - uid: 8683
components:
- type: Transform
- pos: 23.5,25.5
+ pos: 17.5,20.5
parent: 2
- - uid: 6487
+ - uid: 8684
components:
- type: Transform
- pos: -50.5,-13.5
+ pos: -29.5,-57.5
parent: 2
- - uid: 6488
+ - uid: 8685
components:
- type: Transform
- pos: -22.5,-24.5
+ pos: -37.5,39.5
parent: 2
- - uid: 6489
+ - uid: 8686
components:
- type: Transform
- pos: -22.5,-29.5
+ pos: -35.5,-71.5
parent: 2
- - uid: 6490
+ - uid: 8687
components:
- type: Transform
- pos: -54.5,-9.5
+ pos: -13.5,-19.5
parent: 2
- - uid: 6491
+ - uid: 8688
components:
- type: Transform
- pos: 19.5,40.5
+ pos: 51.5,-30.5
parent: 2
- - uid: 6492
+ - uid: 8689
components:
- type: Transform
- pos: 9.5,35.5
+ pos: 10.5,44.5
parent: 2
- - uid: 6493
+ - uid: 8690
components:
- type: Transform
- pos: 50.5,-18.5
+ pos: 10.5,88.5
parent: 2
- - uid: 6494
+ - uid: 8691
components:
- type: Transform
- pos: 6.5,53.5
+ pos: -55.5,-80.5
parent: 2
- - uid: 6495
+ - uid: 8692
components:
- type: Transform
- pos: 16.5,87.5
+ pos: 17.5,7.5
parent: 2
- - uid: 6496
+ - uid: 8693
components:
- type: Transform
- pos: 15.5,87.5
+ pos: 16.5,56.5
parent: 2
- - uid: 6497
+ - uid: 8694
components:
- type: Transform
- pos: 14.5,87.5
+ pos: -53.5,-80.5
parent: 2
- - uid: 6498
+ - uid: 8695
components:
- type: Transform
- pos: 13.5,87.5
+ pos: -49.5,-90.5
parent: 2
- - uid: 6499
+ - uid: 8696
components:
- type: Transform
- pos: 13.5,86.5
+ pos: -50.5,-81.5
parent: 2
- - uid: 6500
+ - uid: 8697
components:
- type: Transform
- pos: 13.5,85.5
+ pos: -52.5,-81.5
parent: 2
- - uid: 6501
+ - uid: 8698
components:
- type: Transform
- pos: 10.5,87.5
+ pos: 18.5,-10.5
parent: 2
- - uid: 6502
+ - uid: 8699
components:
- type: Transform
- pos: -23.5,-68.5
+ pos: 1.5,-7.5
parent: 2
- - uid: 6503
+ - uid: 8700
components:
- type: Transform
- pos: -48.5,-42.5
+ pos: -41.5,19.5
parent: 2
- - uid: 6504
+ - uid: 8701
components:
- type: Transform
- pos: -22.5,-69.5
+ pos: -37.5,-71.5
parent: 2
- - uid: 6505
+ - uid: 8702
components:
- type: Transform
- pos: 29.5,33.5
+ pos: 18.5,-11.5
parent: 2
- - uid: 6506
+ - uid: 8703
components:
- type: Transform
- pos: -33.5,5.5
+ pos: -38.5,-73.5
parent: 2
- - uid: 6507
+ - uid: 8704
components:
- type: Transform
- pos: -27.5,25.5
+ pos: -0.5,-7.5
parent: 2
- - uid: 6508
+ - uid: 8705
components:
- type: Transform
- pos: 35.5,-30.5
+ pos: 30.5,100.5
parent: 2
- - uid: 6509
+ - uid: 8706
components:
- type: Transform
- pos: -37.5,14.5
+ pos: 30.5,98.5
parent: 2
- - uid: 6510
+ - uid: 8707
components:
- type: Transform
- pos: -71.5,-20.5
+ pos: 81.5,-44.5
parent: 2
- - uid: 6511
+ - uid: 8708
components:
- type: Transform
- pos: -41.5,-74.5
+ pos: -41.5,18.5
parent: 2
- - uid: 6512
+ - uid: 8709
components:
- type: Transform
- pos: -36.5,-28.5
+ pos: -41.5,17.5
parent: 2
- - uid: 6513
+ - uid: 8710
components:
- type: Transform
- pos: -35.5,-28.5
+ pos: -49.5,-81.5
parent: 2
- - uid: 6514
+ - uid: 8711
components:
- type: Transform
- pos: -34.5,-28.5
+ pos: 37.5,-4.5
parent: 2
- - uid: 6515
+ - uid: 8712
components:
- type: Transform
- pos: -8.5,-74.5
+ pos: 13.5,41.5
parent: 2
- - uid: 6516
+ - uid: 8713
components:
- type: Transform
- pos: -63.5,-20.5
+ pos: -56.5,-86.5
parent: 2
- - uid: 6517
+ - uid: 8714
components:
- type: Transform
- pos: 0.5,-72.5
+ pos: 13.5,42.5
parent: 2
- - uid: 6518
+ - uid: 8715
components:
- type: Transform
- pos: -6.5,-76.5
+ pos: 10.5,87.5
parent: 2
- - uid: 6519
+ - uid: 8716
components:
- type: Transform
- pos: -7.5,-76.5
+ pos: 13.5,72.5
parent: 2
- - uid: 6520
+ - uid: 8717
components:
- type: Transform
- pos: 0.5,-71.5
+ pos: -42.5,32.5
parent: 2
- - uid: 6521
+ - uid: 8718
components:
- type: Transform
- pos: -5.5,-76.5
+ pos: 12.5,45.5
parent: 2
- - uid: 6522
+ - uid: 8719
components:
- type: Transform
- pos: -3.5,-76.5
+ pos: 11.5,45.5
parent: 2
- - uid: 6523
+ - uid: 8720
components:
- type: Transform
- pos: -4.5,-76.5
+ pos: 14.5,41.5
parent: 2
- - uid: 6524
+ - uid: 8721
components:
- type: Transform
- pos: -1.5,-76.5
+ pos: 23.5,-20.5
parent: 2
- - uid: 6525
+ - uid: 8722
components:
- type: Transform
- pos: -36.5,45.5
+ pos: -56.5,-88.5
parent: 2
- - uid: 6526
+ - uid: 8723
components:
- type: Transform
- pos: -8.5,-66.5
+ pos: -57.5,-86.5
parent: 2
- - uid: 6527
+ - uid: 8724
components:
- type: Transform
- pos: -8.5,-65.5
+ pos: 18.5,41.5
parent: 2
- - uid: 6528
+ - uid: 8725
components:
- type: Transform
- pos: -36.5,46.5
+ pos: 21.5,40.5
parent: 2
- - uid: 6529
+ - uid: 8726
components:
- type: Transform
- pos: -32.5,48.5
+ pos: 20.5,41.5
parent: 2
- - uid: 6530
+ - uid: 8727
components:
- type: Transform
- pos: 40.5,-52.5
+ pos: 25.5,-20.5
parent: 2
- - uid: 6531
+ - uid: 8728
components:
- type: Transform
- pos: 40.5,-40.5
+ pos: -57.5,-88.5
parent: 2
- - uid: 6532
+ - uid: 8729
components:
- type: Transform
- pos: -32.5,-24.5
+ pos: 33.5,94.5
parent: 2
- - uid: 6533
+ - uid: 8730
components:
- type: Transform
- pos: -22.5,28.5
+ pos: 10.5,85.5
parent: 2
- - uid: 6534
+ - uid: 8731
components:
- type: Transform
- pos: -19.5,28.5
+ pos: -42.5,27.5
parent: 2
- - uid: 6535
+ - uid: 8732
components:
- type: Transform
- pos: -54.5,-21.5
+ pos: -42.5,29.5
parent: 2
- - uid: 6536
+ - uid: 8733
components:
- type: Transform
- pos: -28.5,50.5
+ pos: 4.5,-47.5
parent: 2
- - uid: 6537
+ - uid: 8734
components:
- type: Transform
- pos: -6.5,39.5
+ pos: 21.5,30.5
parent: 2
- - uid: 6538
+ - uid: 8735
components:
- type: Transform
- pos: 10.5,59.5
+ pos: -77.5,73.5
parent: 2
- - uid: 6539
+ - uid: 8736
components:
- type: Transform
- pos: -6.5,38.5
+ pos: -79.5,73.5
parent: 2
- - uid: 6540
+ - uid: 8737
components:
- type: Transform
- pos: 2.5,68.5
+ pos: 7.5,60.5
parent: 2
- - uid: 6541
+ - uid: 8738
components:
- type: Transform
- pos: -18.5,6.5
+ pos: -72.5,77.5
parent: 2
- - uid: 6542
+ - uid: 8739
components:
- type: Transform
- pos: -54.5,-3.5
+ pos: -51.5,8.5
parent: 2
- - uid: 6543
+ - uid: 8740
components:
- type: Transform
- pos: -45.5,-6.5
+ pos: -78.5,73.5
parent: 2
- - uid: 6544
+ - uid: 8741
components:
- type: Transform
- pos: -58.5,-13.5
+ pos: -47.5,0.5
parent: 2
- - uid: 6545
+ - uid: 8742
components:
- type: Transform
- pos: -15.5,-34.5
+ pos: -48.5,4.5
parent: 2
- - uid: 6546
+ - uid: 8743
components:
- type: Transform
- pos: -11.5,-10.5
+ pos: -48.5,0.5
parent: 2
- - uid: 6547
+ - uid: 8744
components:
- type: Transform
- pos: -11.5,-9.5
+ pos: -51.5,9.5
parent: 2
- - uid: 6548
+ - uid: 8745
components:
- type: Transform
- pos: 1.5,-13.5
+ pos: -73.5,77.5
parent: 2
- - uid: 6549
+ - uid: 8746
components:
- type: Transform
- pos: -0.5,-43.5
+ pos: -57.5,46.5
parent: 2
- - uid: 6550
+ - uid: 8747
components:
- type: Transform
- pos: 23.5,-34.5
+ pos: -56.5,2.5
parent: 2
- - uid: 6551
+ - uid: 8748
components:
- type: Transform
- pos: -44.5,19.5
+ pos: -63.5,66.5
parent: 2
- - uid: 6552
+ - uid: 8749
components:
- type: Transform
- pos: -36.5,-55.5
+ pos: -61.5,66.5
parent: 2
- - uid: 6553
+ - uid: 8750
components:
- type: Transform
- pos: 21.5,-28.5
+ pos: -39.5,-74.5
parent: 2
- - uid: 6554
+ - uid: 8751
components:
- type: Transform
- pos: -48.5,-12.5
+ pos: 18.5,-13.5
parent: 2
- - uid: 6555
+ - uid: 8752
components:
- type: Transform
- pos: 3.5,-50.5
+ pos: -38.5,-72.5
parent: 2
- - uid: 6556
+ - uid: 8753
components:
- type: Transform
- pos: 10.5,-3.5
+ pos: -41.5,16.5
parent: 2
- - uid: 6557
+ - uid: 8754
components:
- type: Transform
- pos: -6.5,-11.5
+ pos: 31.5,100.5
parent: 2
- - uid: 6558
+ - uid: 8755
components:
- type: Transform
- pos: -13.5,-36.5
+ pos: 13.5,88.5
parent: 2
- - uid: 6559
+ - uid: 8756
components:
- type: Transform
- pos: -54.5,-37.5
+ pos: -54.5,2.5
parent: 2
- - uid: 6560
+ - uid: 8757
components:
- type: Transform
- pos: 20.5,-44.5
+ pos: 13.5,56.5
parent: 2
- - uid: 6561
+ - uid: 8758
components:
- type: Transform
- pos: 21.5,-49.5
+ pos: -71.5,69.5
parent: 2
- - uid: 6562
+ - uid: 8759
components:
- type: Transform
- pos: 22.5,-48.5
+ pos: -57.5,52.5
parent: 2
- - uid: 6563
+ - uid: 8760
components:
- type: Transform
- pos: -44.5,-9.5
+ pos: -68.5,74.5
parent: 2
- - uid: 6564
+ - uid: 8761
components:
- type: Transform
- pos: -29.5,-2.5
+ pos: -57.5,-6.5
parent: 2
- - uid: 6565
+ - uid: 8762
components:
- type: Transform
- pos: -55.5,26.5
+ pos: -51.5,7.5
parent: 2
- - uid: 6566
+ - uid: 8763
components:
- type: Transform
- pos: -36.5,-19.5
+ pos: -45.5,-0.5
parent: 2
- - uid: 6567
+ - uid: 8764
components:
- type: Transform
- pos: -38.5,-19.5
+ pos: -61.5,-25.5
parent: 2
- - uid: 6568
+ - uid: 8765
components:
- type: Transform
- pos: 7.5,-50.5
+ pos: -61.5,-24.5
parent: 2
- - uid: 6569
+ - uid: 8766
components:
- type: Transform
- pos: 31.5,-46.5
+ pos: -53.5,-81.5
parent: 2
- - uid: 6570
+ - uid: 8767
components:
- type: Transform
- pos: 31.5,-45.5
+ pos: 18.5,46.5
parent: 2
- - uid: 6571
+ - uid: 8768
components:
- type: Transform
- pos: 31.5,-44.5
+ pos: -56.5,-80.5
parent: 2
- - uid: 6572
+ - uid: 8769
components:
- type: Transform
- pos: -47.5,-12.5
+ pos: 27.5,31.5
parent: 2
- - uid: 6573
+ - uid: 8770
components:
- type: Transform
- pos: -28.5,-12.5
+ pos: -38.5,37.5
parent: 2
- - uid: 6574
+ - uid: 8771
components:
- type: Transform
- pos: -17.5,-42.5
+ pos: 17.5,-8.5
parent: 2
- - uid: 6575
+ - uid: 8772
components:
- type: Transform
- pos: -4.5,-46.5
+ pos: -69.5,77.5
parent: 2
- - uid: 6576
+ - uid: 8773
components:
- type: Transform
- pos: 7.5,-11.5
+ pos: -57.5,47.5
parent: 2
- - uid: 6577
+ - uid: 8774
components:
- type: Transform
- pos: -7.5,-50.5
+ pos: -57.5,48.5
parent: 2
- - uid: 6578
+ - uid: 8775
components:
- type: Transform
- pos: -25.5,-49.5
+ pos: -43.5,-74.5
parent: 2
- - uid: 6579
+ - uid: 8776
components:
- type: Transform
- pos: 13.5,-53.5
+ pos: -44.5,39.5
parent: 2
- - uid: 6580
+ - uid: 8777
components:
- type: Transform
- pos: -57.5,6.5
+ pos: -15.5,-8.5
parent: 2
- - uid: 6581
+ - uid: 8778
components:
- type: Transform
- pos: -62.5,51.5
+ pos: 33.5,-5.5
parent: 2
- - uid: 6582
+ - uid: 8779
components:
- type: Transform
- pos: -45.5,-7.5
+ pos: 17.5,-50.5
parent: 2
- - uid: 6583
+ - uid: 8780
components:
- type: Transform
- pos: 7.5,-45.5
+ pos: 22.5,92.5
parent: 2
- - uid: 6584
+ - uid: 8781
components:
- type: Transform
- pos: 30.5,10.5
+ pos: -69.5,68.5
parent: 2
- - uid: 6585
+ - uid: 8782
components:
- type: Transform
- pos: 45.5,11.5
+ pos: -59.5,15.5
parent: 2
- - uid: 6586
+ - uid: 8783
components:
- type: Transform
- pos: -52.5,-11.5
+ pos: -78.5,74.5
parent: 2
- - uid: 6587
+ - uid: 8784
components:
- type: Transform
- pos: -35.5,-80.5
+ pos: -72.5,72.5
parent: 2
- - uid: 6588
+ - uid: 8785
components:
- type: Transform
- pos: -18.5,4.5
+ pos: 24.5,92.5
parent: 2
- - uid: 6589
+ - uid: 8786
components:
- type: Transform
- pos: -18.5,3.5
+ pos: -38.5,-74.5
parent: 2
- - uid: 6590
+ - uid: 8787
components:
- type: Transform
- pos: -18.5,2.5
+ pos: 18.5,-12.5
parent: 2
- - uid: 6591
+ - uid: 8788
components:
- type: Transform
- pos: -18.5,1.5
+ pos: -41.5,15.5
parent: 2
- - uid: 6592
+ - uid: 8789
components:
- type: Transform
- pos: -18.5,0.5
+ pos: -41.5,14.5
parent: 2
- - uid: 6593
+ - uid: 8790
components:
- type: Transform
- pos: -18.5,-0.5
+ pos: -38.5,-71.5
parent: 2
- - uid: 6594
+ - uid: 8791
components:
- type: Transform
- pos: -18.5,-1.5
+ pos: 14.5,65.5
parent: 2
- - uid: 6595
+ - uid: 8792
components:
- type: Transform
- pos: -18.5,-2.5
+ pos: -48.5,-85.5
parent: 2
- - uid: 6596
+ - uid: 8793
components:
- type: Transform
- pos: 5.5,58.5
+ pos: 10.5,61.5
parent: 2
- - uid: 6597
+ - uid: 8794
components:
- type: Transform
- pos: -59.5,1.5
+ pos: 78.5,-37.5
parent: 2
- - uid: 6598
+ - uid: 8795
components:
- type: Transform
- pos: 19.5,53.5
+ pos: 17.5,22.5
parent: 2
- - uid: 6599
+ - uid: 8796
components:
- type: Transform
- pos: 17.5,1.5
+ pos: 26.5,-55.5
parent: 2
- - uid: 6600
+ - uid: 8797
components:
- type: Transform
- pos: 13.5,61.5
+ pos: -68.5,-20.5
parent: 2
- - uid: 6601
+ - uid: 8798
components:
- type: Transform
- pos: -29.5,-80.5
+ pos: -38.5,-26.5
parent: 2
- - uid: 6602
+ - uid: 8799
components:
- type: Transform
- pos: -52.5,-14.5
+ pos: -0.5,-33.5
parent: 2
- - uid: 6603
+ - uid: 8800
components:
- type: Transform
- pos: 17.5,53.5
+ pos: -36.5,-9.5
parent: 2
- - uid: 6604
+ - uid: 8801
components:
- type: Transform
- pos: -39.5,49.5
+ pos: 19.5,24.5
parent: 2
- - uid: 6605
+ - uid: 8802
components:
- type: Transform
- pos: -31.5,-5.5
+ pos: -64.5,-20.5
parent: 2
- - uid: 6606
+ - uid: 8803
components:
- type: Transform
- pos: -28.5,-3.5
+ pos: 30.5,-55.5
parent: 2
- - uid: 6607
+ - uid: 8804
components:
- type: Transform
- pos: -28.5,-4.5
+ pos: 31.5,98.5
parent: 2
- - uid: 6608
+ - uid: 8805
components:
- type: Transform
- pos: -26.5,-5.5
+ pos: -45.5,-2.5
parent: 2
- - uid: 6609
+ - uid: 8806
components:
- type: Transform
- pos: -27.5,-5.5
+ pos: 40.5,-4.5
parent: 2
- - uid: 6610
+ - uid: 8807
components:
- type: Transform
- pos: -28.5,-5.5
+ pos: 85.5,-42.5
parent: 2
- - uid: 6611
+ - uid: 8808
components:
- type: Transform
- pos: -29.5,-5.5
+ pos: 84.5,-42.5
parent: 2
- - uid: 6612
+ - uid: 8809
components:
- type: Transform
- pos: -30.5,-5.5
+ pos: 33.5,96.5
parent: 2
- - uid: 6613
+ - uid: 8810
components:
- type: Transform
- pos: 17.5,-16.5
+ pos: -46.5,-88.5
parent: 2
- - uid: 6614
+ - uid: 8811
components:
- type: Transform
- pos: 16.5,-20.5
+ pos: 11.5,80.5
parent: 2
- - uid: 6615
+ - uid: 8812
components:
- type: Transform
- pos: 16.5,-21.5
+ pos: -55.5,-84.5
parent: 2
- - uid: 6616
+ - uid: 8813
components:
- type: Transform
- pos: 16.5,-22.5
+ pos: 51.5,-42.5
parent: 2
- - uid: 6617
+ - uid: 8814
components:
- type: Transform
- pos: 17.5,-13.5
+ pos: -0.5,-37.5
parent: 2
- - uid: 6618
+ - uid: 8815
components:
- type: Transform
- pos: 17.5,-14.5
+ pos: -42.5,-26.5
parent: 2
- - uid: 6619
+ - uid: 8816
components:
- type: Transform
- pos: 17.5,-15.5
+ pos: 79.5,-43.5
parent: 2
- - uid: 6620
+ - uid: 8817
components:
- type: Transform
- pos: 17.5,-17.5
+ pos: -71.5,-20.5
parent: 2
- - uid: 6621
+ - uid: 8818
components:
- type: Transform
- pos: -0.5,-30.5
+ pos: -20.5,-19.5
parent: 2
- - uid: 6622
+ - uid: 8819
components:
- type: Transform
- pos: -0.5,-29.5
+ pos: -19.5,-19.5
parent: 2
- - uid: 6623
+ - uid: 8820
components:
- type: Transform
- pos: -0.5,-27.5
+ pos: -24.5,-19.5
parent: 2
- - uid: 6624
+ - uid: 8821
components:
- type: Transform
- pos: -29.5,50.5
+ pos: -18.5,-19.5
parent: 2
- - uid: 6625
+ - uid: 8822
components:
- type: Transform
- pos: -28.5,55.5
+ pos: -23.5,-19.5
parent: 2
- - uid: 6626
+ - uid: 8823
components:
- type: Transform
- pos: -28.5,56.5
+ pos: -31.5,-57.5
parent: 2
- - uid: 6627
+ - uid: 8824
components:
- type: Transform
- pos: -8.5,41.5
+ pos: 81.5,-40.5
parent: 2
- - uid: 6628
+ - uid: 8825
components:
- type: Transform
- pos: -18.5,48.5
+ pos: -0.5,-29.5
parent: 2
- - uid: 6629
+ - uid: 8826
components:
- type: Transform
- pos: 4.5,62.5
+ pos: 44.5,-7.5
parent: 2
- - uid: 6630
+ - uid: 8827
components:
- type: Transform
- pos: 2.5,64.5
+ pos: -0.5,-28.5
parent: 2
- - uid: 6631
+ - uid: 8828
components:
- type: Transform
- pos: -7.5,-80.5
+ pos: -28.5,-26.5
parent: 2
- - uid: 6632
+ - uid: 8829
components:
- type: Transform
- pos: 11.5,82.5
+ pos: -41.5,37.5
parent: 2
- - uid: 6633
+ - uid: 8830
components:
- type: Transform
- pos: -36.5,62.5
+ pos: -31.5,-26.5
parent: 2
- - uid: 6634
+ - uid: 8831
components:
- type: Transform
- pos: -14.5,-19.5
+ pos: 22.5,-19.5
parent: 2
- - uid: 6635
+ - uid: 8832
components:
- type: Transform
- pos: -18.5,27.5
+ pos: 21.5,-19.5
parent: 2
- - uid: 6636
+ - uid: 8833
components:
- type: Transform
- pos: 5.5,92.5
+ pos: 20.5,-19.5
parent: 2
- - uid: 6637
+ - uid: 8834
components:
- type: Transform
- pos: 32.5,-66.5
+ pos: -25.5,-33.5
parent: 2
- - uid: 6638
+ - uid: 8835
components:
- type: Transform
- pos: -55.5,-15.5
+ pos: -42.5,26.5
parent: 2
- - uid: 6639
+ - uid: 8836
components:
- type: Transform
- pos: 58.5,-30.5
+ pos: 17.5,87.5
parent: 2
- - uid: 6640
+ - uid: 8837
components:
- type: Transform
- pos: 5.5,65.5
+ pos: -71.5,74.5
parent: 2
- - uid: 6641
+ - uid: 8838
components:
- type: Transform
- pos: -6.5,43.5
+ pos: -62.5,66.5
parent: 2
- - uid: 6642
+ - uid: 8839
components:
- type: Transform
- pos: -41.5,23.5
+ pos: 44.5,-46.5
parent: 2
- - uid: 6643
+ - uid: 8840
components:
- type: Transform
- pos: -3.5,-64.5
+ pos: 30.5,99.5
parent: 2
- - uid: 6644
+ - uid: 8841
components:
- type: Transform
- pos: -19.5,-71.5
+ pos: -19.5,-30.5
parent: 2
- - uid: 6645
+ - uid: 8842
components:
- type: Transform
- pos: 17.5,8.5
+ pos: -41.5,20.5
parent: 2
- - uid: 6646
+ - uid: 8843
components:
- type: Transform
- pos: -35.5,5.5
+ pos: 18.5,-16.5
parent: 2
- - uid: 6647
+ - uid: 8844
components:
- type: Transform
- pos: -2.5,-7.5
+ pos: 18.5,-15.5
parent: 2
- - uid: 6648
+ - uid: 8845
components:
- type: Transform
- pos: -32.5,-40.5
+ pos: 18.5,-14.5
parent: 2
- - uid: 6649
+ - uid: 8846
components:
- type: Transform
- pos: -42.5,-36.5
+ pos: -40.5,-74.5
parent: 2
- - uid: 6650
+ - uid: 8847
components:
- type: Transform
- pos: -54.5,49.5
+ pos: 25.5,92.5
parent: 2
- - uid: 6651
+ - uid: 8848
components:
- type: Transform
- pos: -10.5,-57.5
+ pos: 80.5,-39.5
parent: 2
- - uid: 6652
+ - uid: 8849
components:
- type: Transform
- pos: -34.5,-40.5
+ pos: 39.5,-4.5
parent: 2
- - uid: 6653
+ - uid: 8850
components:
- type: Transform
- pos: -35.5,-40.5
+ pos: -17.5,-13.5
parent: 2
- - uid: 6654
+ - uid: 8851
components:
- type: Transform
- pos: -42.5,28.5
+ pos: 82.5,-36.5
parent: 2
- - uid: 6655
+ - uid: 8852
components:
- type: Transform
- pos: -36.5,-40.5
+ pos: 51.5,-45.5
parent: 2
- - uid: 6656
+ - uid: 8853
components:
- type: Transform
- pos: -54.5,29.5
+ pos: -57.5,-19.5
parent: 2
- - uid: 6657
+ - uid: 8854
components:
- type: Transform
- pos: 45.5,-28.5
+ pos: 37.5,-54.5
parent: 2
- - uid: 6658
+ - uid: 8855
components:
- type: Transform
- pos: -36.5,-39.5
+ pos: 24.5,24.5
parent: 2
- - uid: 6659
+ - uid: 8856
components:
- type: Transform
- pos: -58.5,29.5
+ pos: 12.5,64.5
parent: 2
- - uid: 6660
+ - uid: 8857
components:
- type: Transform
- pos: -13.5,14.5
+ pos: -46.5,-86.5
parent: 2
- - uid: 6661
+ - uid: 8858
components:
- type: Transform
- pos: -30.5,-14.5
+ pos: -58.5,-84.5
parent: 2
- - uid: 6662
+ - uid: 8859
components:
- type: Transform
- pos: -36.5,-38.5
+ pos: 10.5,-50.5
parent: 2
- - uid: 6663
+ - uid: 8860
components:
- type: Transform
- pos: -35.5,-38.5
+ pos: -45.5,-80.5
parent: 2
- - uid: 6664
+ - uid: 8861
components:
- type: Transform
- pos: -34.5,-38.5
+ pos: -80.5,77.5
parent: 2
- - uid: 6665
+ - uid: 8862
components:
- type: Transform
- pos: -33.5,-38.5
+ pos: -70.5,74.5
parent: 2
- - uid: 6666
+ - uid: 8863
components:
- type: Transform
- pos: -32.5,-38.5
+ pos: -72.5,76.5
parent: 2
- - uid: 6667
+ - uid: 8864
components:
- type: Transform
- pos: 24.5,-43.5
+ pos: -72.5,12.5
parent: 2
- - uid: 6668
+ - uid: 8865
components:
- type: Transform
- pos: -32.5,-37.5
+ pos: -77.5,70.5
parent: 2
- - uid: 6669
+ - uid: 8866
components:
- type: Transform
- pos: -32.5,-36.5
+ pos: 3.5,-40.5
parent: 2
- - uid: 6670
+ - uid: 8867
components:
- type: Transform
- pos: -33.5,-36.5
+ pos: -45.5,1.5
parent: 2
- - uid: 6671
+ - uid: 8868
components:
- type: Transform
- pos: -64.5,6.5
+ pos: -47.5,1.5
parent: 2
- - uid: 6672
+ - uid: 8869
components:
- type: Transform
- pos: -31.5,34.5
+ pos: 26.5,90.5
parent: 2
- - uid: 6673
+ - uid: 8870
components:
- type: Transform
- pos: -30.5,-39.5
+ pos: 26.5,100.5
parent: 2
- - uid: 6674
+ - uid: 8871
components:
- type: Transform
- pos: -29.5,-40.5
+ pos: 78.5,-39.5
parent: 2
- - uid: 6675
+ - uid: 8872
components:
- type: Transform
- pos: 11.5,-55.5
+ pos: -44.5,-19.5
parent: 2
- - uid: 6676
+ - uid: 8873
components:
- type: Transform
- pos: -9.5,-55.5
+ pos: 4.5,-50.5
parent: 2
- - uid: 6677
+ - uid: 8874
components:
- type: Transform
- pos: 29.5,-60.5
+ pos: 17.5,11.5
parent: 2
- - uid: 6678
+ - uid: 8875
components:
- type: Transform
- pos: -28.5,-40.5
+ pos: 30.5,-15.5
parent: 2
- - uid: 6679
+ - uid: 8876
components:
- type: Transform
- pos: -28.5,-41.5
+ pos: -17.5,-19.5
parent: 2
- - uid: 6680
+ - uid: 8877
components:
- type: Transform
- pos: -46.5,50.5
+ pos: -22.5,-19.5
parent: 2
- - uid: 6681
+ - uid: 8878
components:
- type: Transform
- pos: -3.5,-7.5
+ pos: -66.5,-20.5
parent: 2
- - uid: 6682
+ - uid: 8879
components:
- type: Transform
- pos: -28.5,-42.5
+ pos: -70.5,-20.5
parent: 2
- - uid: 6683
+ - uid: 8880
components:
- type: Transform
- pos: 11.5,54.5
+ pos: 18.5,47.5
parent: 2
- - uid: 6684
+ - uid: 8881
components:
- type: Transform
- pos: -28.5,-43.5
+ pos: -42.5,12.5
parent: 2
- - uid: 6685
+ - uid: 8882
components:
- type: Transform
- pos: -28.5,-44.5
+ pos: -17.5,-15.5
parent: 2
- - uid: 6686
+ - uid: 8883
components:
- type: Transform
- pos: 23.5,43.5
+ pos: 20.5,24.5
parent: 2
- - uid: 6687
+ - uid: 8884
components:
- type: Transform
- pos: -28.5,-45.5
+ pos: 32.5,-55.5
parent: 2
- - uid: 6688
+ - uid: 8885
components:
- type: Transform
- pos: -0.5,28.5
+ pos: 33.5,-14.5
parent: 2
- - uid: 6689
+ - uid: 8886
components:
- type: Transform
- pos: 22.5,42.5
+ pos: -48.5,-84.5
parent: 2
- - uid: 6690
+ - uid: 8887
components:
- type: Transform
- pos: 23.5,45.5
+ pos: -119.5,23.5
parent: 2
- - uid: 6691
+ - uid: 8888
components:
- type: Transform
- pos: -7.5,57.5
+ pos: 26.5,99.5
parent: 2
- - uid: 6692
+ - uid: 8889
components:
- type: Transform
- pos: 0.5,64.5
+ pos: 33.5,-12.5
parent: 2
- - uid: 6693
+ - uid: 8890
components:
- type: Transform
- pos: 2.5,62.5
+ pos: -17.5,-14.5
parent: 2
- - uid: 6694
+ - uid: 8891
components:
- type: Transform
- pos: -56.5,-7.5
+ pos: -41.5,12.5
parent: 2
- - uid: 6695
+ - uid: 8892
components:
- type: Transform
- pos: 21.5,35.5
+ pos: -71.5,11.5
parent: 2
- - uid: 6696
+ - uid: 8893
components:
- type: Transform
- pos: -22.5,-33.5
+ pos: -61.5,-6.5
parent: 2
- - uid: 6697
+ - uid: 8894
components:
- type: Transform
- pos: -29.5,-45.5
+ pos: -53.5,16.5
parent: 2
- - uid: 6698
+ - uid: 8895
components:
- type: Transform
- pos: -57.5,11.5
+ pos: -53.5,17.5
parent: 2
- - uid: 6699
+ - uid: 8896
components:
- type: Transform
- pos: -53.5,10.5
+ pos: -77.5,68.5
parent: 2
- - uid: 6700
+ - uid: 8897
components:
- type: Transform
- pos: -60.5,7.5
+ pos: -53.5,18.5
parent: 2
- - uid: 6701
+ - uid: 8898
components:
- type: Transform
- pos: -52.5,41.5
+ pos: -60.5,66.5
parent: 2
- - uid: 6702
+ - uid: 8899
components:
- type: Transform
- pos: -25.5,1.5
+ pos: -51.5,10.5
parent: 2
- - uid: 6703
+ - uid: 8900
components:
- type: Transform
- pos: -37.5,-28.5
+ pos: -59.5,-9.5
parent: 2
- - uid: 6704
+ - uid: 8901
components:
- type: Transform
- pos: -48.5,37.5
+ pos: -53.5,22.5
parent: 2
- - uid: 6705
+ - uid: 8902
components:
- type: Transform
- pos: -32.5,-45.5
+ pos: 58.5,-40.5
parent: 2
- - uid: 6706
+ - uid: 8903
components:
- type: Transform
- pos: -33.5,-45.5
+ pos: 11.5,81.5
parent: 2
- - uid: 6707
+ - uid: 8904
components:
- type: Transform
- pos: 12.5,-19.5
+ pos: 41.5,-46.5
parent: 2
- - uid: 6708
+ - uid: 8905
components:
- type: Transform
- pos: -34.5,-45.5
+ pos: -40.5,39.5
parent: 2
- - uid: 6709
+ - uid: 8906
components:
- type: Transform
- pos: -19.5,-73.5
+ pos: 59.5,-40.5
parent: 2
- - uid: 6710
+ - uid: 8907
components:
- type: Transform
- pos: -15.5,-78.5
+ pos: 60.5,-40.5
parent: 2
- - uid: 6711
+ - uid: 8908
components:
- type: Transform
- pos: -35.5,-45.5
+ pos: -44.5,-86.5
parent: 2
- - uid: 6712
+ - uid: 8909
components:
- type: Transform
- pos: -33.5,-78.5
+ pos: 10.5,64.5
parent: 2
- - uid: 6713
+ - uid: 8910
components:
- type: Transform
- pos: -41.5,39.5
+ pos: 22.5,24.5
parent: 2
- - uid: 6714
+ - uid: 8911
components:
- type: Transform
- pos: -36.5,-45.5
+ pos: 34.5,-55.5
parent: 2
- - uid: 6715
+ - uid: 8912
components:
- type: Transform
- pos: -40.5,-36.5
+ pos: -59.5,-19.5
parent: 2
- - uid: 6716
+ - uid: 8913
components:
- type: Transform
- pos: -52.5,28.5
+ pos: 26.5,95.5
parent: 2
- - uid: 6717
+ - uid: 8914
components:
- type: Transform
- pos: -39.5,-36.5
+ pos: 61.5,-40.5
parent: 2
- - uid: 6718
+ - uid: 8915
components:
- type: Transform
- pos: -36.5,-43.5
+ pos: -60.5,-6.5
parent: 2
- - uid: 6719
+ - uid: 8916
components:
- type: Transform
- pos: -35.5,-43.5
+ pos: -34.5,-48.5
parent: 2
- - uid: 6720
+ - uid: 8917
components:
- type: Transform
- pos: -0.5,-3.5
+ pos: 62.5,-40.5
parent: 2
- - uid: 6721
+ - uid: 8918
components:
- type: Transform
- pos: -34.5,-43.5
+ pos: 63.5,-40.5
parent: 2
- - uid: 6722
+ - uid: 8919
components:
- type: Transform
- pos: -37.5,-4.5
+ pos: 64.5,-40.5
parent: 2
- - uid: 6723
+ - uid: 8920
components:
- type: Transform
- pos: 8.5,-19.5
+ pos: -121.5,26.5
parent: 2
- - uid: 6724
+ - uid: 8921
components:
- type: Transform
- pos: -19.5,-46.5
+ pos: -70.5,78.5
parent: 2
- - uid: 6725
+ - uid: 8922
components:
- type: Transform
- pos: 27.5,-60.5
+ pos: -73.5,69.5
parent: 2
- - uid: 6726
+ - uid: 8923
components:
- type: Transform
- pos: -55.5,14.5
+ pos: -23.5,-31.5
parent: 2
- - uid: 6727
+ - uid: 8924
components:
- type: Transform
- pos: -76.5,14.5
+ pos: 65.5,-40.5
parent: 2
- - uid: 6728
+ - uid: 8925
components:
- type: Transform
- pos: -57.5,12.5
+ pos: 26.5,92.5
parent: 2
- - uid: 6729
+ - uid: 8926
components:
- type: Transform
- pos: -73.5,15.5
+ pos: 35.5,94.5
parent: 2
- - uid: 6730
+ - uid: 8927
components:
- type: Transform
- pos: -55.5,34.5
+ pos: 32.5,96.5
parent: 2
- - uid: 6731
+ - uid: 8928
components:
- type: Transform
- pos: -28.5,-46.5
+ pos: -28.5,-19.5
parent: 2
- - uid: 6732
+ - uid: 8929
components:
- type: Transform
- pos: -15.5,-36.5
+ pos: -54.5,-80.5
parent: 2
- - uid: 6733
+ - uid: 8930
components:
- type: Transform
- pos: -28.5,-47.5
+ pos: 52.5,-40.5
parent: 2
- - uid: 6734
+ - uid: 8931
components:
- type: Transform
- pos: -27.5,-45.5
+ pos: 17.5,19.5
parent: 2
- - uid: 6735
+ - uid: 8932
components:
- type: Transform
- pos: -26.5,-47.5
+ pos: 24.5,-54.5
parent: 2
- - uid: 6736
+ - uid: 8933
components:
- type: Transform
- pos: 5.5,-32.5
+ pos: -74.5,-20.5
parent: 2
- - uid: 6737
+ - uid: 8934
components:
- type: Transform
- pos: -16.5,-36.5
+ pos: -31.5,-56.5
parent: 2
- - uid: 6738
+ - uid: 8935
components:
- type: Transform
- pos: -23.5,-41.5
+ pos: -52.5,-21.5
parent: 2
- - uid: 6739
+ - uid: 8936
components:
- type: Transform
- pos: 67.5,6.5
+ pos: -37.5,40.5
parent: 2
- - uid: 6740
+ - uid: 8937
components:
- type: Transform
- pos: -7.5,17.5
+ pos: -36.5,-71.5
parent: 2
- - uid: 6741
+ - uid: 8938
components:
- type: Transform
- pos: -38.5,-36.5
+ pos: -12.5,-19.5
parent: 2
- - uid: 6742
+ - uid: 8939
components:
- type: Transform
- pos: -1.5,14.5
+ pos: -42.5,35.5
parent: 2
- - uid: 6743
+ - uid: 8940
components:
- type: Transform
- pos: -23.5,-40.5
+ pos: 33.5,90.5
parent: 2
- - uid: 6744
+ - uid: 8941
components:
- type: Transform
- pos: 9.5,-13.5
+ pos: 14.5,-1.5
parent: 2
- - uid: 6745
+ - uid: 8942
components:
- type: Transform
- pos: -26.5,22.5
+ pos: 51.5,-43.5
parent: 2
- - uid: 6746
+ - uid: 8943
components:
- type: Transform
- pos: -48.5,-43.5
+ pos: 53.5,-40.5
parent: 2
- - uid: 6747
+ - uid: 8944
components:
- type: Transform
- pos: 44.5,-6.5
+ pos: -69.5,78.5
parent: 2
- - uid: 6748
+ - uid: 8945
components:
- type: Transform
- pos: 44.5,-9.5
+ pos: -70.5,68.5
parent: 2
- - uid: 6749
+ - uid: 8946
components:
- type: Transform
- pos: 43.5,-4.5
+ pos: -51.5,5.5
parent: 2
- - uid: 6750
+ - uid: 8947
components:
- type: Transform
- pos: 44.5,-3.5
+ pos: 54.5,-40.5
parent: 2
- - uid: 6751
+ - uid: 8948
components:
- type: Transform
- pos: 43.5,-3.5
+ pos: 55.5,-40.5
parent: 2
- - uid: 6752
+ - uid: 8949
components:
- type: Transform
- pos: 42.5,-3.5
+ pos: 16.5,41.5
parent: 2
- - uid: 6753
+ - uid: 8950
components:
- type: Transform
- pos: 15.5,27.5
+ pos: -55.5,-88.5
parent: 2
- - uid: 6754
+ - uid: 8951
components:
- type: Transform
- pos: -23.5,-39.5
+ pos: 80.5,-36.5
parent: 2
- - uid: 6755
+ - uid: 8952
components:
- type: Transform
- pos: -24.5,-40.5
+ pos: 56.5,-40.5
parent: 2
- - uid: 6756
+ - uid: 8953
components:
- type: Transform
- pos: -23.5,-38.5
+ pos: -57.5,59.5
parent: 2
- - uid: 6757
+ - uid: 8954
components:
- type: Transform
- pos: 37.5,5.5
+ pos: 24.5,96.5
parent: 2
- - uid: 6758
+ - uid: 8955
components:
- type: Transform
- pos: -23.5,-37.5
+ pos: 78.5,-38.5
parent: 2
- - uid: 6759
+ - uid: 8956
components:
- type: Transform
- pos: 30.5,1.5
+ pos: -55.5,-20.5
parent: 2
- - uid: 6760
+ - uid: 8957
components:
- type: Transform
- pos: -24.5,-38.5
+ pos: 37.5,-51.5
parent: 2
- - uid: 6761
+ - uid: 8958
components:
- type: Transform
- pos: 59.5,-15.5
+ pos: 21.5,26.5
parent: 2
- - uid: 6762
+ - uid: 8959
components:
- type: Transform
- pos: -23.5,-46.5
+ pos: 14.5,66.5
parent: 2
- - uid: 6763
+ - uid: 8960
components:
- type: Transform
- pos: -58.5,-12.5
+ pos: -49.5,-85.5
parent: 2
- - uid: 6764
+ - uid: 8961
components:
- type: Transform
- pos: 29.5,56.5
+ pos: -58.5,-86.5
parent: 2
- - uid: 6765
+ - uid: 8962
components:
- type: Transform
- pos: 13.5,52.5
+ pos: -60.5,-19.5
parent: 2
- - uid: 6766
+ - uid: 8963
components:
- type: Transform
- pos: -25.5,-50.5
+ pos: -17.5,-9.5
parent: 2
- - uid: 6767
+ - uid: 8964
components:
- type: Transform
- pos: 31.5,56.5
+ pos: 51.5,-38.5
parent: 2
- - uid: 6768
+ - uid: 8965
components:
- type: Transform
- pos: -23.5,-49.5
+ pos: -0.5,-23.5
parent: 2
- - uid: 6769
+ - uid: 8966
components:
- type: Transform
- pos: -32.5,-75.5
+ pos: -28.5,-27.5
parent: 2
- - uid: 6770
+ - uid: 8967
components:
- type: Transform
- pos: -18.5,18.5
+ pos: -24.5,-33.5
parent: 2
- - uid: 6771
+ - uid: 8968
components:
- type: Transform
- pos: -37.5,-36.5
+ pos: -42.5,25.5
parent: 2
- - uid: 6772
+ - uid: 8969
components:
- type: Transform
- pos: 37.5,-12.5
+ pos: 18.5,87.5
parent: 2
- - uid: 6773
+ - uid: 8970
components:
- type: Transform
- pos: 6.5,30.5
+ pos: 86.5,-42.5
parent: 2
- - uid: 6774
+ - uid: 8971
components:
- type: Transform
- pos: -51.5,-2.5
+ pos: 51.5,-33.5
parent: 2
- - uid: 6775
+ - uid: 8972
components:
- type: Transform
- pos: -10.5,-80.5
+ pos: -69.5,66.5
parent: 2
- - uid: 6776
+ - uid: 8973
components:
- type: Transform
- pos: -3.5,-71.5
+ pos: -81.5,69.5
parent: 2
- - uid: 6777
+ - uid: 8974
components:
- type: Transform
- pos: 44.5,-64.5
+ pos: -95.5,-8.5
parent: 2
- - uid: 6778
+ - uid: 8975
components:
- type: Transform
- pos: 32.5,-67.5
+ pos: -63.5,2.5
parent: 2
- - uid: 6779
+ - uid: 8976
components:
- type: Transform
- pos: 15.5,29.5
+ pos: 2.5,-38.5
parent: 2
- - uid: 6780
+ - uid: 8977
components:
- type: Transform
- pos: 9.5,30.5
+ pos: -77.5,78.5
parent: 2
- - uid: 6781
+ - uid: 8978
components:
- type: Transform
- pos: -58.5,0.5
+ pos: -81.5,78.5
parent: 2
- - uid: 6782
+ - uid: 8979
components:
- type: Transform
- pos: -58.5,1.5
+ pos: -17.5,-16.5
parent: 2
- - uid: 6783
+ - uid: 8980
components:
- type: Transform
- pos: 51.5,-44.5
+ pos: 33.5,-6.5
parent: 2
- - uid: 6784
+ - uid: 8981
components:
- type: Transform
- pos: -23.5,-35.5
+ pos: -16.5,-8.5
parent: 2
- - uid: 6785
+ - uid: 8982
components:
- type: Transform
- pos: 35.5,-22.5
+ pos: -43.5,39.5
parent: 2
- - uid: 6786
+ - uid: 8983
components:
- type: Transform
- pos: 39.5,1.5
+ pos: -43.5,-73.5
parent: 2
- - uid: 6787
+ - uid: 8984
components:
- type: Transform
- pos: 68.5,6.5
+ pos: -49.5,-88.5
parent: 2
- - uid: 6788
+ - uid: 8985
components:
- type: Transform
- pos: -27.5,-69.5
+ pos: 17.5,2.5
parent: 2
- - uid: 6789
+ - uid: 8986
components:
- type: Transform
- pos: 17.5,49.5
+ pos: 44.5,-9.5
parent: 2
- - uid: 6790
+ - uid: 8987
components:
- type: Transform
- pos: 22.5,31.5
+ pos: 11.5,82.5
parent: 2
- - uid: 6791
+ - uid: 8988
components:
- type: Transform
- pos: -35.5,-75.5
+ pos: -6.5,-8.5
parent: 2
- - uid: 6792
+ - uid: 8989
components:
- type: Transform
- pos: -22.5,-6.5
+ pos: 46.5,-10.5
parent: 2
- - uid: 6793
+ - uid: 8990
components:
- type: Transform
- pos: -65.5,-40.5
+ pos: 86.5,-46.5
parent: 2
- - uid: 6794
+ - uid: 8991
components:
- type: Transform
- pos: -50.5,-12.5
+ pos: 18.5,49.5
parent: 2
- - uid: 6795
+ - uid: 8992
components:
- type: Transform
- pos: -17.5,35.5
+ pos: -41.5,-26.5
parent: 2
- - uid: 6796
+ - uid: 8993
components:
- type: Transform
- pos: -37.5,-26.5
+ pos: -0.5,-36.5
parent: 2
- - uid: 6797
+ - uid: 8994
components:
- type: Transform
- pos: -44.5,-27.5
+ pos: 51.5,-41.5
parent: 2
- - uid: 6798
+ - uid: 8995
components:
- type: Transform
- pos: -35.5,-26.5
+ pos: 18.5,50.5
parent: 2
- - uid: 6799
+ - uid: 8996
components:
- type: Transform
- pos: -41.5,49.5
+ pos: -53.5,-82.5
parent: 2
- - uid: 6800
+ - uid: 8997
components:
- type: Transform
- pos: -18.5,-18.5
+ pos: 7.5,-7.5
parent: 2
- - uid: 6801
+ - uid: 8998
components:
- type: Transform
- pos: -24.5,-30.5
+ pos: -43.5,-19.5
parent: 2
- - uid: 6802
+ - uid: 8999
components:
- type: Transform
- pos: -27.5,14.5
+ pos: -17.5,-18.5
parent: 2
- - uid: 6803
+ - uid: 9000
components:
- type: Transform
- pos: -47.5,30.5
+ pos: -63.5,-20.5
parent: 2
- - uid: 6804
+ - uid: 9001
components:
- type: Transform
- pos: -58.5,7.5
+ pos: -45.5,12.5
parent: 2
- - uid: 6805
+ - uid: 9002
components:
- type: Transform
- pos: -59.5,40.5
+ pos: -30.5,-57.5
parent: 2
- - uid: 6806
+ - uid: 9003
components:
- type: Transform
- pos: -48.5,45.5
+ pos: -43.5,-26.5
parent: 2
- - uid: 6807
+ - uid: 9004
components:
- type: Transform
- pos: -51.5,46.5
+ pos: 10.5,59.5
parent: 2
- - uid: 6808
+ - uid: 9005
components:
- type: Transform
- pos: 62.5,-27.5
+ pos: -56.5,-84.5
parent: 2
- - uid: 6809
+ - uid: 9006
components:
- type: Transform
- pos: -5.5,62.5
+ pos: -23.5,-33.5
parent: 2
- - uid: 6810
+ - uid: 9007
components:
- type: Transform
- pos: 32.5,-19.5
+ pos: -41.5,23.5
parent: 2
- - uid: 6811
+ - uid: 9008
components:
- type: Transform
- pos: -76.5,-22.5
+ pos: 21.5,87.5
parent: 2
- - uid: 6812
+ - uid: 9009
components:
- type: Transform
- pos: -75.5,-22.5
+ pos: -5.5,-8.5
parent: 2
- - uid: 6813
+ - uid: 9010
components:
- type: Transform
- pos: -74.5,-22.5
+ pos: -4.5,-8.5
parent: 2
- - uid: 6814
+ - uid: 9011
components:
- type: Transform
- pos: -74.5,-23.5
+ pos: 47.5,-10.5
parent: 2
- - uid: 6815
+ - uid: 9012
components:
- type: Transform
- pos: -18.5,50.5
+ pos: 51.5,-39.5
parent: 2
- - uid: 6816
+ - uid: 9013
components:
- type: Transform
- pos: -20.5,-67.5
+ pos: -31.5,-55.5
parent: 2
- - uid: 6817
+ - uid: 9014
components:
- type: Transform
- pos: 37.5,-53.5
+ pos: 25.5,-15.5
parent: 2
- - uid: 6818
+ - uid: 9015
components:
- type: Transform
- pos: 35.5,-55.5
+ pos: -33.5,-19.5
parent: 2
- - uid: 6819
+ - uid: 9016
components:
- type: Transform
- pos: -13.5,77.5
+ pos: 82.5,-38.5
parent: 2
- - uid: 6820
+ - uid: 9017
components:
- type: Transform
- pos: -33.5,57.5
+ pos: 26.5,98.5
parent: 2
- - uid: 6821
+ - uid: 9018
components:
- type: Transform
- pos: 32.5,-34.5
+ pos: 32.5,92.5
parent: 2
- - uid: 6822
+ - uid: 9019
components:
- type: Transform
- pos: 26.5,38.5
+ pos: 10.5,-4.5
parent: 2
- - uid: 6823
+ - uid: 9020
components:
- type: Transform
- pos: 8.5,36.5
+ pos: 33.5,100.5
parent: 2
- - uid: 6824
+ - uid: 9021
components:
- type: Transform
- pos: 22.5,-46.5
+ pos: 82.5,-48.5
parent: 2
- - uid: 6825
+ - uid: 9022
components:
- type: Transform
- pos: -2.5,-13.5
+ pos: -36.5,-18.5
parent: 2
- - uid: 6826
+ - uid: 9023
components:
- type: Transform
- pos: 0.5,-17.5
+ pos: -4.5,-19.5
parent: 2
- - uid: 6827
+ - uid: 9024
components:
- type: Transform
- pos: -16.5,-61.5
+ pos: 50.5,-10.5
parent: 2
- - uid: 6828
+ - uid: 9025
components:
- type: Transform
- pos: -18.5,-61.5
+ pos: 10.5,42.5
parent: 2
- - uid: 6829
+ - uid: 9026
components:
- type: Transform
- pos: -25.5,15.5
+ pos: 10.5,63.5
parent: 2
- - uid: 6830
+ - uid: 9027
components:
- type: Transform
- pos: -56.5,-20.5
+ pos: -41.5,5.5
parent: 2
- - uid: 6831
+ - uid: 9028
components:
- type: Transform
- pos: 22.5,-7.5
+ pos: 10.5,45.5
parent: 2
- - uid: 6832
+ - uid: 9029
components:
- type: Transform
- pos: -50.5,-0.5
+ pos: 11.5,87.5
parent: 2
- - uid: 6833
+ - uid: 9030
components:
- type: Transform
- pos: 17.5,-6.5
+ pos: 17.5,18.5
parent: 2
- - uid: 6834
+ - uid: 9031
components:
- type: Transform
- pos: -41.5,-30.5
+ pos: -45.5,-90.5
parent: 2
- - uid: 6835
+ - uid: 9032
components:
- type: Transform
- pos: -44.5,-15.5
+ pos: -54.5,-84.5
parent: 2
- - uid: 6836
+ - uid: 9033
components:
- type: Transform
- pos: -68.5,-24.5
+ pos: -1.5,-19.5
parent: 2
- - uid: 6837
+ - uid: 9034
components:
- type: Transform
- pos: 35.5,-63.5
+ pos: 13.5,45.5
parent: 2
- - uid: 6838
+ - uid: 9035
components:
- type: Transform
- pos: -122.5,27.5
+ pos: 10.5,86.5
parent: 2
- - uid: 6839
+ - uid: 9036
components:
- type: Transform
- pos: -48.5,-32.5
+ pos: 26.5,91.5
parent: 2
- - uid: 6840
+ - uid: 9037
components:
- type: Transform
- pos: -1.5,-19.5
+ pos: 34.5,90.5
parent: 2
- - uid: 6841
+ - uid: 9038
components:
- type: Transform
- pos: -15.5,-19.5
+ pos: 85.5,-44.5
parent: 2
- - uid: 6842
+ - uid: 9039
components:
- type: Transform
- pos: -20.5,-71.5
+ pos: -41.5,-19.5
parent: 2
- - uid: 6843
+ - uid: 9040
components:
- type: Transform
- pos: -45.5,7.5
+ pos: -42.5,-73.5
parent: 2
- - uid: 6844
+ - uid: 9041
components:
- type: Transform
- pos: 36.5,11.5
+ pos: -45.5,-74.5
parent: 2
- - uid: 6845
+ - uid: 9042
components:
- type: Transform
- pos: -27.5,-25.5
+ pos: -77.5,69.5
parent: 2
- - uid: 6846
+ - uid: 9043
components:
- type: Transform
- pos: -46.5,34.5
+ pos: -74.5,73.5
parent: 2
- - uid: 6847
+ - uid: 9044
components:
- type: Transform
- pos: 43.5,-61.5
+ pos: -73.5,70.5
parent: 2
- - uid: 6848
+ - uid: 9045
components:
- type: Transform
- pos: -24.5,-16.5
+ pos: -79.5,72.5
parent: 2
- - uid: 6849
+ - uid: 9046
components:
- type: Transform
- pos: -48.5,-24.5
+ pos: -59.5,61.5
parent: 2
- - uid: 6850
+ - uid: 9047
components:
- type: Transform
- pos: -47.5,39.5
+ pos: -80.5,74.5
parent: 2
- - uid: 6851
+ - uid: 9048
components:
- type: Transform
- pos: 31.5,-69.5
+ pos: 5.5,-40.5
parent: 2
- - uid: 6852
+ - uid: 9049
components:
- type: Transform
- pos: -17.5,-77.5
+ pos: 18.5,44.5
parent: 2
- - uid: 6853
+ - uid: 9050
components:
- type: Transform
- pos: 66.5,-21.5
+ pos: -17.5,-12.5
parent: 2
- - uid: 6854
+ - uid: 9051
components:
- type: Transform
- pos: 22.5,1.5
+ pos: 81.5,-41.5
parent: 2
- - uid: 6855
+ - uid: 9052
components:
- type: Transform
- pos: -0.5,-54.5
+ pos: 21.5,27.5
parent: 2
- - uid: 6856
+ - uid: 9053
components:
- type: Transform
- pos: -0.5,-53.5
+ pos: -49.5,12.5
parent: 2
- - uid: 6857
+ - uid: 9054
components:
- type: Transform
- pos: -0.5,-52.5
+ pos: -25.5,-71.5
parent: 2
- - uid: 6858
+ - uid: 9055
components:
- type: Transform
- pos: -0.5,-51.5
+ pos: 45.5,-10.5
parent: 2
- - uid: 6859
+ - uid: 9056
components:
- type: Transform
- pos: -40.5,-63.5
+ pos: -3.5,-8.5
parent: 2
- - uid: 6860
+ - uid: 9057
components:
- type: Transform
- pos: -20.5,28.5
+ pos: 25.5,87.5
parent: 2
- - uid: 6861
+ - uid: 9058
components:
- type: Transform
- pos: -16.5,-71.5
+ pos: 42.5,-28.5
parent: 2
- - uid: 6862
+ - uid: 9059
components:
- type: Transform
- pos: -22.5,-74.5
+ pos: 17.5,12.5
parent: 2
- - uid: 6863
+ - uid: 9060
components:
- type: Transform
- pos: -30.5,9.5
+ pos: 22.5,90.5
parent: 2
- - uid: 6864
+ - uid: 9061
components:
- type: Transform
- pos: 25.5,18.5
+ pos: -81.5,68.5
parent: 2
- - uid: 6865
+ - uid: 9062
components:
- type: Transform
- pos: -70.5,9.5
+ pos: 6.5,-40.5
parent: 2
- - uid: 6866
+ - uid: 9063
components:
- type: Transform
- pos: -61.5,35.5
+ pos: 9.5,56.5
parent: 2
- - uid: 6867
+ - uid: 9064
components:
- type: Transform
- pos: 13.5,38.5
+ pos: -39.5,-19.5
parent: 2
- - uid: 6868
+ - uid: 9065
components:
- type: Transform
- pos: 21.5,-14.5
+ pos: 17.5,-5.5
parent: 2
- - uid: 6869
+ - uid: 9066
components:
- type: Transform
- pos: 33.5,-3.5
+ pos: -27.5,-57.5
parent: 2
- - uid: 6870
+ - uid: 9067
components:
- type: Transform
- pos: 9.5,70.5
+ pos: -38.5,-1.5
parent: 2
- - uid: 6871
+ - uid: 9068
components:
- type: Transform
- pos: 65.5,-21.5
+ pos: 12.5,-3.5
parent: 2
- - uid: 6872
+ - uid: 9069
components:
- type: Transform
- pos: -23.5,-9.5
+ pos: 9.5,-7.5
parent: 2
- - uid: 6873
+ - uid: 9070
components:
- type: Transform
- pos: 32.5,-0.5
+ pos: -48.5,-19.5
parent: 2
- - uid: 6874
+ - uid: 9071
components:
- type: Transform
- pos: -7.5,23.5
+ pos: -49.5,-22.5
parent: 2
- - uid: 6875
+ - uid: 9072
components:
- type: Transform
- pos: -12.5,68.5
+ pos: 30.5,92.5
parent: 2
- - uid: 6876
+ - uid: 9073
components:
- type: Transform
- pos: -18.5,-67.5
+ pos: 45.5,-28.5
parent: 2
- - uid: 6877
+ - uid: 9074
components:
- type: Transform
- pos: 37.5,-51.5
+ pos: -25.5,-77.5
parent: 2
- - uid: 6878
+ - uid: 9075
components:
- type: Transform
- pos: -71.5,8.5
+ pos: 25.5,-19.5
parent: 2
- - uid: 6879
+ - uid: 9076
components:
- type: Transform
- pos: 25.5,46.5
+ pos: 24.5,-22.5
parent: 2
- - uid: 6880
+ - uid: 9077
components:
- type: Transform
- pos: -57.5,-11.5
+ pos: 25.5,98.5
parent: 2
- - uid: 6881
+ - uid: 9078
components:
- type: Transform
- pos: 33.5,-42.5
+ pos: 25.5,-18.5
parent: 2
- - uid: 6882
+ - uid: 9079
components:
- type: Transform
- pos: 26.5,60.5
+ pos: 51.5,-34.5
parent: 2
- - uid: 6883
+ - uid: 9080
components:
- type: Transform
- pos: -54.5,-11.5
+ pos: -32.5,-26.5
parent: 2
- - uid: 6884
+ - uid: 9081
components:
- type: Transform
- pos: -25.5,17.5
+ pos: -34.5,-26.5
parent: 2
- - uid: 6885
+ - uid: 9082
components:
- type: Transform
- pos: -29.5,35.5
+ pos: -49.5,-19.5
parent: 2
- - uid: 6886
+ - uid: 9083
components:
- type: Transform
- pos: -29.5,36.5
+ pos: 32.5,94.5
parent: 2
- - uid: 6887
+ - uid: 9084
components:
- type: Transform
- pos: -29.5,37.5
+ pos: -35.5,39.5
parent: 2
- - uid: 6888
+ - uid: 9085
components:
- type: Transform
- pos: -30.5,29.5
+ pos: 49.5,-28.5
parent: 2
- - uid: 6889
+ - uid: 9086
components:
- type: Transform
- pos: 78.5,-43.5
+ pos: 25.5,-17.5
parent: 2
- - uid: 6890
+ - uid: 9087
components:
- type: Transform
- pos: -62.5,-46.5
+ pos: 23.5,-22.5
parent: 2
- - uid: 6891
+ - uid: 9088
components:
- type: Transform
- pos: 31.5,8.5
+ pos: 25.5,-16.5
parent: 2
- - uid: 6892
+ - uid: 9089
components:
- type: Transform
- pos: 31.5,9.5
+ pos: -28.5,-57.5
parent: 2
- - uid: 6893
+ - uid: 9090
components:
- type: Transform
- pos: 33.5,13.5
+ pos: 32.5,90.5
parent: 2
- - uid: 6894
+ - uid: 9091
components:
- type: Transform
- pos: 32.5,13.5
+ pos: 4.5,-46.5
parent: 2
- - uid: 6895
+ - uid: 9092
components:
- type: Transform
- pos: 29.5,13.5
+ pos: -42.5,30.5
parent: 2
- - uid: 6896
+ - uid: 9093
components:
- type: Transform
- pos: 30.5,13.5
+ pos: 17.5,10.5
parent: 2
- - uid: 6897
+ - uid: 9094
components:
- type: Transform
- pos: 31.5,10.5
+ pos: 4.5,-48.5
parent: 2
- - uid: 6898
+ - uid: 9095
components:
- type: Transform
- pos: 31.5,11.5
+ pos: 10.5,-7.5
parent: 2
- - uid: 6899
+ - uid: 9096
components:
- type: Transform
- pos: 31.5,12.5
+ pos: -25.5,-78.5
parent: 2
- - uid: 6900
+ - uid: 9097
components:
- type: Transform
- pos: 31.5,13.5
+ pos: -39.5,-2.5
parent: 2
- - uid: 6901
+ - uid: 9098
components:
- type: Transform
- pos: 21.5,12.5
+ pos: 17.5,-3.5
parent: 2
- - uid: 6902
+ - uid: 9099
components:
- type: Transform
- pos: 11.5,-30.5
+ pos: -26.5,-64.5
parent: 2
- - uid: 6903
+ - uid: 9100
components:
- type: Transform
- pos: 12.5,-31.5
+ pos: 21.5,-54.5
parent: 2
- - uid: 6904
+ - uid: 9101
components:
- type: Transform
- pos: 12.5,-30.5
+ pos: 15.5,-50.5
parent: 2
- - uid: 6905
+ - uid: 9102
components:
- type: Transform
- pos: 12.5,-29.5
+ pos: -39.5,-48.5
parent: 2
- - uid: 6906
+ - uid: 9103
components:
- type: Transform
- pos: 12.5,-28.5
+ pos: -78.5,72.5
parent: 2
- - uid: 6907
+ - uid: 9104
components:
- type: Transform
- pos: 12.5,-27.5
+ pos: -42.5,-48.5
parent: 2
- - uid: 6908
+ - uid: 9105
components:
- type: Transform
- pos: 13.5,-26.5
+ pos: -76.5,73.5
parent: 2
- - uid: 6909
+ - uid: 9106
components:
- type: Transform
- pos: 12.5,-26.5
+ pos: -80.5,78.5
parent: 2
- - uid: 6910
+ - uid: 9107
components:
- type: Transform
- pos: -63.5,32.5
+ pos: 17.5,55.5
parent: 2
- - uid: 6911
+ - uid: 9108
components:
- type: Transform
- pos: -46.5,4.5
+ pos: 18.5,54.5
parent: 2
- - uid: 6912
+ - uid: 9109
components:
- type: Transform
- pos: -64.5,17.5
+ pos: -51.5,-92.5
parent: 2
- - uid: 6913
+ - uid: 9110
components:
- type: Transform
- pos: -25.5,21.5
+ pos: 17.5,14.5
parent: 2
- - uid: 6914
+ - uid: 9111
components:
- type: Transform
- pos: 30.5,-3.5
+ pos: 7.5,-50.5
parent: 2
- - uid: 6915
+ - uid: 9112
components:
- type: Transform
- pos: 40.5,-37.5
+ pos: -47.5,-19.5
parent: 2
- - uid: 6916
+ - uid: 9113
components:
- type: Transform
- pos: -26.5,84.5
+ pos: 29.5,-55.5
parent: 2
- - uid: 6917
+ - uid: 9114
components:
- type: Transform
- pos: -14.5,77.5
+ pos: 24.5,-20.5
parent: 2
- - uid: 6918
+ - uid: 9115
components:
- type: Transform
- pos: -12.5,84.5
+ pos: 17.5,17.5
parent: 2
- - uid: 6919
+ - uid: 9116
components:
- type: Transform
- pos: -13.5,84.5
+ pos: 9.5,-50.5
parent: 2
- - uid: 6920
+ - uid: 9117
components:
- type: Transform
- pos: -14.5,84.5
+ pos: -49.5,-21.5
parent: 2
- - uid: 6921
+ - uid: 9118
components:
- type: Transform
- pos: -27.5,84.5
+ pos: -26.5,-68.5
parent: 2
- - uid: 6922
+ - uid: 9119
components:
- type: Transform
- pos: -28.5,84.5
+ pos: -40.5,-19.5
parent: 2
- - uid: 6923
+ - uid: 9120
components:
- type: Transform
- pos: -30.5,84.5
+ pos: -54.5,-90.5
parent: 2
- - uid: 6924
+ - uid: 9121
components:
- type: Transform
- pos: -31.5,84.5
+ pos: 11.5,-4.5
parent: 2
- - uid: 6925
+ - uid: 9122
components:
- type: Transform
- pos: -32.5,84.5
+ pos: 37.5,-22.5
parent: 2
- - uid: 6926
+ - uid: 9123
components:
- type: Transform
- pos: -30.5,77.5
+ pos: -25.5,-75.5
parent: 2
- - uid: 6927
+ - uid: 9124
components:
- type: Transform
- pos: -31.5,77.5
+ pos: 22.5,98.5
parent: 2
- - uid: 6928
+ - uid: 9125
components:
- type: Transform
- pos: 6.5,-61.5
+ pos: 88.5,-42.5
parent: 2
- - uid: 6929
+ - uid: 9126
components:
- type: Transform
- pos: -32.5,77.5
+ pos: -41.5,10.5
parent: 2
- - uid: 6930
+ - uid: 9127
components:
- type: Transform
- pos: -21.5,-50.5
+ pos: 39.5,-46.5
parent: 2
- - uid: 6931
+ - uid: 9128
components:
- type: Transform
- pos: -27.5,77.5
+ pos: 43.5,-46.5
parent: 2
- - uid: 6932
+ - uid: 9129
components:
- type: Transform
- pos: -26.5,77.5
+ pos: 10.5,84.5
parent: 2
- - uid: 6933
+ - uid: 9130
components:
- type: Transform
- pos: 5.5,-59.5
+ pos: -41.5,-0.5
parent: 2
- - uid: 6934
+ - uid: 9131
components:
- type: Transform
- pos: 4.5,-61.5
+ pos: -41.5,2.5
parent: 2
- - uid: 6935
+ - uid: 9132
components:
- type: Transform
- pos: 4.5,-60.5
+ pos: -32.5,-71.5
parent: 2
- - uid: 6936
+ - uid: 9133
components:
- type: Transform
- pos: 4.5,-59.5
+ pos: 54.5,-43.5
parent: 2
- - uid: 6937
+ - uid: 9134
components:
- type: Transform
- pos: 4.5,-58.5
+ pos: 17.5,-2.5
parent: 2
- - uid: 6938
+ - uid: 9135
components:
- type: Transform
- pos: 6.5,-59.5
+ pos: 31.5,90.5
parent: 2
- - uid: 6939
+ - uid: 9136
components:
- type: Transform
- pos: 6.5,-58.5
+ pos: 16.5,87.5
parent: 2
- - uid: 6940
+ - uid: 9137
components:
- type: Transform
- pos: 7.5,-58.5
+ pos: -40.5,-48.5
parent: 2
- - uid: 6941
+ - uid: 9138
components:
- type: Transform
- pos: 7.5,-57.5
+ pos: 24.5,98.5
parent: 2
- - uid: 6942
+ - uid: 9139
components:
- type: Transform
- pos: 7.5,-56.5
+ pos: 25.5,95.5
parent: 2
- - uid: 6943
+ - uid: 9140
components:
- type: Transform
- pos: 5.5,-70.5
+ pos: 21.5,94.5
parent: 2
- - uid: 6944
+ - uid: 9141
components:
- type: Transform
- pos: 5.5,-67.5
+ pos: 24.5,100.5
parent: 2
- - uid: 6945
+ - uid: 9142
components:
- type: Transform
- pos: 5.5,-61.5
+ pos: 15.5,87.5
parent: 2
- - uid: 6946
+ - uid: 9143
components:
- type: Transform
- pos: 6.5,-62.5
+ pos: 15.5,88.5
parent: 2
- - uid: 6947
+ - uid: 9144
components:
- type: Transform
- pos: 6.5,-65.5
+ pos: -41.5,9.5
parent: 2
- - uid: 6948
+ - uid: 9145
components:
- type: Transform
- pos: 6.5,-66.5
+ pos: 84.5,-46.5
parent: 2
- - uid: 6949
+ - uid: 9146
components:
- type: Transform
- pos: 6.5,-67.5
+ pos: -41.5,3.5
parent: 2
- - uid: 6950
+ - uid: 9147
components:
- type: Transform
- pos: 6.5,-68.5
+ pos: -30.5,-71.5
parent: 2
- - uid: 6951
+ - uid: 9148
components:
- type: Transform
- pos: 6.5,-69.5
+ pos: 55.5,-43.5
parent: 2
- - uid: 6952
+ - uid: 9149
components:
- type: Transform
- pos: 6.5,-70.5
+ pos: 25.5,-22.5
parent: 2
- - uid: 6953
+ - uid: 9150
components:
- type: Transform
- pos: 6.5,-71.5
+ pos: -39.5,-1.5
parent: 2
- - uid: 6954
+ - uid: 9151
components:
- type: Transform
- pos: -5.5,-85.5
+ pos: 25.5,100.5
parent: 2
- - uid: 6955
+ - uid: 9152
components:
- type: Transform
- pos: -5.5,-84.5
+ pos: 84.5,-43.5
parent: 2
- - uid: 6956
+ - uid: 9153
components:
- type: Transform
- pos: -5.5,-83.5
+ pos: -41.5,-48.5
parent: 2
- - uid: 6957
+ - uid: 9154
components:
- type: Transform
- pos: -5.5,-82.5
+ pos: 36.5,-3.5
parent: 2
- - uid: 6958
+ - uid: 9155
components:
- type: Transform
- pos: -5.5,-81.5
+ pos: 17.5,15.5
parent: 2
- - uid: 6959
+ - uid: 9156
components:
- type: Transform
- pos: -3.5,-85.5
+ pos: 6.5,-50.5
parent: 2
- - uid: 6960
+ - uid: 9157
components:
- type: Transform
- pos: -3.5,-84.5
+ pos: -46.5,-19.5
parent: 2
- - uid: 6961
+ - uid: 9158
components:
- type: Transform
- pos: -3.5,-83.5
+ pos: 30.5,91.5
parent: 2
- - uid: 6962
+ - uid: 9159
components:
- type: Transform
- pos: -3.5,-82.5
+ pos: 79.5,-40.5
parent: 2
- - uid: 6963
+ - uid: 9160
components:
- type: Transform
- pos: -3.5,-81.5
+ pos: -26.5,-57.5
parent: 2
- - uid: 6964
+ - uid: 9161
components:
- type: Transform
- pos: 2.5,-85.5
+ pos: 17.5,56.5
parent: 2
- - uid: 6965
+ - uid: 9162
components:
- type: Transform
- pos: 2.5,-84.5
+ pos: -42.5,-46.5
parent: 2
- - uid: 6966
+ - uid: 9163
components:
- type: Transform
- pos: 2.5,-83.5
+ pos: 22.5,19.5
parent: 2
- - uid: 6967
+ - uid: 9164
components:
- type: Transform
- pos: 2.5,-82.5
+ pos: 54.5,-46.5
parent: 2
- - uid: 6968
+ - uid: 9165
components:
- type: Transform
- pos: 2.5,-81.5
+ pos: 42.5,-4.5
parent: 2
- - uid: 6969
+ - uid: 9166
components:
- type: Transform
- pos: 4.5,-85.5
+ pos: -57.5,-80.5
parent: 2
- - uid: 6970
+ - uid: 9167
components:
- type: Transform
- pos: 4.5,-84.5
+ pos: -42.5,-47.5
parent: 2
- - uid: 6971
+ - uid: 9168
components:
- type: Transform
- pos: 4.5,-83.5
+ pos: 84.5,-44.5
parent: 2
- - uid: 6972
+ - uid: 9169
components:
- type: Transform
- pos: -116.5,18.5
+ pos: 41.5,-4.5
parent: 2
- - uid: 6973
+ - uid: 9170
components:
- type: Transform
- pos: 76.5,9.5
+ pos: 50.5,-28.5
parent: 2
- - uid: 6974
+ - uid: 9171
components:
- type: Transform
- pos: 79.5,9.5
+ pos: 17.5,-4.5
parent: 2
- - uid: 6975
+ - uid: 9172
components:
- type: Transform
- pos: 81.5,9.5
+ pos: 23.5,100.5
parent: 2
- - uid: 6976
+ - uid: 9173
components:
- type: Transform
- pos: -20.5,-50.5
+ pos: -0.5,-8.5
parent: 2
- - uid: 6977
+ - uid: 9174
components:
- type: Transform
- pos: 5.5,-77.5
+ pos: 52.5,-43.5
parent: 2
- - uid: 6978
+ - uid: 9175
components:
- type: Transform
- pos: 5.5,-76.5
+ pos: 51.5,-46.5
parent: 2
- - uid: 6979
+ - uid: 9176
components:
- type: Transform
- pos: 8.5,-76.5
+ pos: -1.5,-8.5
parent: 2
- - uid: 6980
+ - uid: 9177
components:
- type: Transform
- pos: -19.5,-50.5
+ pos: -41.5,1.5
parent: 2
- - uid: 6981
+ - uid: 9178
components:
- type: Transform
- pos: -18.5,-50.5
+ pos: -41.5,7.5
parent: 2
- - uid: 6982
+ - uid: 9179
components:
- type: Transform
- pos: -24.5,-51.5
+ pos: 22.5,94.5
parent: 2
- - uid: 6983
+ - uid: 9180
components:
- type: Transform
- pos: 9.5,-76.5
+ pos: 11.5,74.5
parent: 2
- - uid: 6984
+ - uid: 9181
components:
- type: Transform
- pos: -24.5,-50.5
+ pos: -51.5,-90.5
parent: 2
- - uid: 6985
+ - uid: 9182
components:
- type: Transform
- pos: 5.5,-78.5
+ pos: -49.5,-20.5
parent: 2
- - uid: 6986
+ - uid: 9183
components:
- type: Transform
- pos: 5.5,-79.5
+ pos: 8.5,-50.5
parent: 2
- - uid: 6987
+ - uid: 9184
components:
- type: Transform
- pos: 5.5,-80.5
+ pos: 17.5,16.5
parent: 2
- - uid: 6988
+ - uid: 9185
components:
- type: Transform
- pos: 4.5,-80.5
+ pos: 17.5,54.5
parent: 2
- - uid: 6989
+ - uid: 9186
components:
- type: Transform
- pos: 4.5,-82.5
+ pos: 13.5,43.5
parent: 2
- - uid: 6990
+ - uid: 9187
components:
- type: Transform
- pos: 4.5,-81.5
+ pos: -45.5,-19.5
parent: 2
- - uid: 6991
+ - uid: 9188
components:
- type: Transform
- pos: -13.5,-58.5
+ pos: 5.5,-50.5
parent: 2
- - uid: 6992
+ - uid: 9189
components:
- type: Transform
- pos: -13.5,-56.5
+ pos: 17.5,13.5
parent: 2
- - uid: 6993
+ - uid: 9190
components:
- type: Transform
- pos: -14.5,-57.5
+ pos: 18.5,53.5
parent: 2
- - uid: 6994
+ - uid: 9191
components:
- type: Transform
- pos: -20.5,-57.5
+ pos: -26.5,-63.5
parent: 2
- - uid: 6995
+ - uid: 9192
components:
- type: Transform
- pos: -16.5,-57.5
+ pos: 38.5,-22.5
parent: 2
- - uid: 6996
+ - uid: 9193
components:
- type: Transform
- pos: -17.5,-57.5
+ pos: 4.5,-45.5
parent: 2
- - uid: 6997
+ - uid: 9194
components:
- type: Transform
- pos: -18.5,-57.5
+ pos: 87.5,-42.5
parent: 2
- - uid: 6998
+ - uid: 9195
components:
- type: Transform
- pos: 6.5,-73.5
+ pos: -41.5,13.5
parent: 2
- - uid: 6999
+ - uid: 9196
components:
- type: Transform
- pos: 6.5,-72.5
+ pos: -26.5,-60.5
parent: 2
- - uid: 7000
+ - uid: 9197
components:
- type: Transform
- pos: 6.5,-74.5
+ pos: 10.5,83.5
parent: 2
- - uid: 7001
+ - uid: 9198
components:
- type: Transform
- pos: 7.5,-76.5
+ pos: -41.5,8.5
parent: 2
- - uid: 7002
+ - uid: 9199
components:
- type: Transform
- pos: 6.5,-75.5
+ pos: 17.5,-6.5
parent: 2
- - uid: 7003
+ - uid: 9200
components:
- type: Transform
- pos: 8.5,-74.5
+ pos: 53.5,-46.5
parent: 2
- - uid: 7004
+ - uid: 9201
components:
- type: Transform
- pos: 9.5,-74.5
+ pos: 26.5,-22.5
parent: 2
- - uid: 7005
+ - uid: 9202
components:
- type: Transform
- pos: 7.5,-74.5
+ pos: -39.5,-3.5
parent: 2
- - uid: 7006
+ - uid: 9203
components:
- type: Transform
- pos: 3.5,-71.5
+ pos: 85.5,-46.5
parent: 2
- - uid: 7007
+ - uid: 9204
components:
- type: Transform
- pos: 6.5,-76.5
+ pos: -41.5,11.5
parent: 2
- - uid: 7008
+ - uid: 9205
components:
- type: Transform
- pos: 3.5,-69.5
+ pos: -51.5,-91.5
parent: 2
- - uid: 7009
+ - uid: 9206
components:
- type: Transform
- pos: 3.5,-70.5
+ pos: 53.5,-43.5
parent: 2
- - uid: 7010
+ - uid: 9207
components:
- type: Transform
- pos: -16.5,-58.5
+ pos: -31.5,-71.5
parent: 2
- - uid: 7011
+ - uid: 9208
components:
- type: Transform
- pos: -22.5,-57.5
+ pos: -41.5,4.5
parent: 2
- - uid: 7012
+ - uid: 9209
components:
- type: Transform
- pos: -16.5,-54.5
+ pos: 21.5,32.5
parent: 2
- - uid: 7013
+ - uid: 9210
components:
- type: Transform
- pos: -16.5,-56.5
+ pos: 14.5,70.5
parent: 2
- - uid: 7014
+ - uid: 9211
components:
- type: Transform
- pos: -19.5,-57.5
+ pos: -46.5,-84.5
parent: 2
- - uid: 7015
+ - uid: 9212
components:
- type: Transform
- pos: -51.5,54.5
+ pos: 11.5,75.5
parent: 2
- - uid: 7016
+ - uid: 9213
components:
- type: Transform
- pos: -21.5,-57.5
+ pos: 80.5,-37.5
parent: 2
- - uid: 7017
+ - uid: 9214
components:
- type: Transform
- pos: -23.5,-57.5
+ pos: -45.5,-24.5
parent: 2
- - uid: 7018
+ - uid: 9215
components:
- type: Transform
- pos: -49.5,-40.5
+ pos: -13.5,-8.5
parent: 2
- - uid: 7019
+ - uid: 9216
components:
- type: Transform
- pos: -50.5,-40.5
+ pos: -44.5,37.5
parent: 2
- - uid: 7020
+ - uid: 9217
components:
- type: Transform
- pos: -49.5,-41.5
+ pos: -11.5,-8.5
parent: 2
- - uid: 7021
+ - uid: 9218
components:
- type: Transform
- pos: -51.5,-40.5
+ pos: 37.5,-48.5
parent: 2
- - uid: 7022
+ - uid: 9219
components:
- type: Transform
- pos: -52.5,-40.5
+ pos: -43.5,37.5
parent: 2
- - uid: 7023
+ - uid: 9220
components:
- type: Transform
- pos: -44.5,-36.5
+ pos: 37.5,-47.5
parent: 2
- - uid: 7024
+ - uid: 9221
components:
- type: Transform
- pos: -43.5,-36.5
+ pos: 80.5,-38.5
parent: 2
- - uid: 7025
+ - uid: 9222
components:
- type: Transform
- pos: -52.5,-39.5
+ pos: -45.5,-23.5
parent: 2
- - uid: 7026
+ - uid: 9223
components:
- type: Transform
- pos: -53.5,-39.5
+ pos: 55.5,-42.5
parent: 2
- - uid: 7027
+ - uid: 9224
components:
- type: Transform
- pos: -54.5,-39.5
+ pos: 84.5,-45.5
parent: 2
- - uid: 7028
+ - uid: 9225
components:
- type: Transform
- pos: -50.5,-39.5
+ pos: -42.5,37.5
parent: 2
- - uid: 7029
+ - uid: 9226
components:
- type: Transform
- pos: -54.5,-35.5
+ pos: 37.5,-46.5
parent: 2
- - uid: 7030
+ - uid: 9227
components:
- type: Transform
- pos: -54.5,-34.5
+ pos: -12.5,-8.5
parent: 2
- - uid: 7031
+ - uid: 9228
components:
- type: Transform
- pos: -54.5,-33.5
+ pos: -45.5,-25.5
parent: 2
- - uid: 7032
+ - uid: 9229
components:
- type: Transform
- pos: -3.5,-45.5
+ pos: 78.5,-40.5
parent: 2
- - uid: 7033
+ - uid: 9230
components:
- type: Transform
- pos: -3.5,-46.5
+ pos: -49.5,-89.5
parent: 2
- - uid: 7034
+ - uid: 9231
components:
- type: Transform
- pos: -3.5,-47.5
+ pos: -50.5,-89.5
parent: 2
- - uid: 7035
+ - uid: 9232
components:
- type: Transform
- pos: -3.5,-48.5
+ pos: 14.5,-50.5
parent: 2
- - uid: 7036
+ - uid: 9233
components:
- type: Transform
- pos: -3.5,-49.5
+ pos: 23.5,-19.5
parent: 2
- - uid: 7037
+ - uid: 9234
components:
- type: Transform
- pos: -4.5,-49.5
+ pos: -2.5,-8.5
parent: 2
- - uid: 7038
+ - uid: 9235
components:
- type: Transform
- pos: -5.5,-49.5
+ pos: -71.5,73.5
parent: 2
- - uid: 7039
+ - uid: 9236
components:
- type: Transform
- pos: -6.5,-49.5
+ pos: 40.5,-23.5
parent: 2
- - uid: 7040
+ - uid: 9237
components:
- type: Transform
- pos: -7.5,-49.5
+ pos: -28.5,-30.5
parent: 2
- - uid: 7041
+ - uid: 9238
components:
- type: Transform
- pos: -8.5,-49.5
+ pos: -44.5,-26.5
parent: 2
- - uid: 7042
+ - uid: 9239
components:
- type: Transform
- pos: -9.5,-49.5
+ pos: 47.5,-28.5
parent: 2
- - uid: 7043
+ - uid: 9240
components:
- type: Transform
- pos: -9.5,-48.5
+ pos: -25.5,-73.5
parent: 2
- - uid: 7044
+ - uid: 9241
components:
- type: Transform
- pos: -9.5,-47.5
+ pos: -33.5,-71.5
parent: 2
- - uid: 7045
+ - uid: 9242
components:
- type: Transform
- pos: -48.5,-40.5
+ pos: 52.5,-46.5
parent: 2
- - uid: 7046
+ - uid: 9243
components:
- type: Transform
- pos: -10.5,-49.5
+ pos: 2.5,-7.5
parent: 2
- - uid: 7047
+ - uid: 9244
components:
- type: Transform
- pos: -47.5,-40.5
+ pos: -86.5,-8.5
parent: 2
- - uid: 7048
+ - uid: 9245
components:
- type: Transform
- pos: -46.5,-40.5
+ pos: 43.5,-4.5
parent: 2
- - uid: 7049
+ - uid: 9246
components:
- type: Transform
- pos: -45.5,-40.5
+ pos: 11.5,77.5
parent: 2
- - uid: 7050
+ - uid: 9247
components:
- type: Transform
- pos: -44.5,-40.5
+ pos: 22.5,87.5
parent: 2
- - uid: 7051
+ - uid: 9248
components:
- type: Transform
- pos: -43.5,-40.5
+ pos: -41.5,21.5
parent: 2
- - uid: 7052
+ - uid: 9249
components:
- type: Transform
- pos: -42.5,-40.5
+ pos: -23.5,-32.5
parent: 2
- - uid: 7053
+ - uid: 9250
components:
- type: Transform
- pos: -9.5,-50.5
+ pos: 18.5,-18.5
parent: 2
- - uid: 7054
+ - uid: 9251
components:
- type: Transform
- pos: -9.5,-51.5
+ pos: -87.5,-8.5
parent: 2
- - uid: 7055
+ - uid: 9252
components:
- type: Transform
- pos: -4.5,-50.5
+ pos: 87.5,-46.5
parent: 2
- - uid: 7056
+ - uid: 9253
components:
- type: Transform
- pos: -4.5,-51.5
+ pos: -0.5,-25.5
parent: 2
- - uid: 7057
+ - uid: 9254
components:
- type: Transform
- pos: -42.5,-41.5
+ pos: 48.5,-28.5
parent: 2
- - uid: 7058
+ - uid: 9255
components:
- type: Transform
- pos: -42.5,-42.5
+ pos: 45.5,-46.5
parent: 2
- - uid: 7059
+ - uid: 9256
components:
- type: Transform
- pos: -42.5,-43.5
+ pos: 21.5,37.5
parent: 2
- - uid: 7060
+ - uid: 9257
components:
- type: Transform
- pos: -7.5,-51.5
+ pos: -78.5,69.5
parent: 2
- - uid: 7061
+ - uid: 9258
components:
- type: Transform
- pos: -42.5,-44.5
+ pos: -86.5,-11.5
parent: 2
- - uid: 7062
+ - uid: 9259
components:
- type: Transform
- pos: -42.5,-45.5
+ pos: -80.5,68.5
parent: 2
- - uid: 7063
+ - uid: 9260
components:
- type: Transform
- pos: -5.5,-46.5
+ pos: -86.5,-10.5
parent: 2
- - uid: 7064
+ - uid: 9261
components:
- type: Transform
- pos: -33.5,-51.5
+ pos: -70.5,69.5
parent: 2
- - uid: 7065
+ - uid: 9262
components:
- type: Transform
- pos: -33.5,-50.5
+ pos: 3.5,-37.5
parent: 2
- - uid: 7066
+ - uid: 9263
components:
- type: Transform
- pos: -33.5,-49.5
+ pos: -86.5,-9.5
parent: 2
- - uid: 7067
+ - uid: 9264
components:
- type: Transform
- pos: -4.5,-36.5
+ pos: 0.5,-38.5
parent: 2
- - uid: 7068
+ - uid: 9265
components:
- type: Transform
- pos: -4.5,-37.5
+ pos: -47.5,-82.5
parent: 2
- - uid: 7069
+ - uid: 9266
components:
- type: Transform
- pos: -4.5,-38.5
+ pos: 23.5,98.5
parent: 2
- - uid: 7070
+ - uid: 9267
components:
- type: Transform
- pos: -4.5,-39.5
+ pos: 21.5,18.5
parent: 2
- - uid: 7071
+ - uid: 9268
components:
- type: Transform
- pos: -4.5,-40.5
+ pos: 13.5,-50.5
parent: 2
- - uid: 7072
+ - uid: 9269
components:
- type: Transform
- pos: -4.5,-41.5
+ pos: -35.5,37.5
parent: 2
- - uid: 7073
+ - uid: 9270
components:
- type: Transform
- pos: -4.5,-42.5
+ pos: -26.5,-66.5
parent: 2
- - uid: 7074
+ - uid: 9271
components:
- type: Transform
- pos: -5.5,-42.5
+ pos: 12.5,56.5
parent: 2
- - uid: 7075
+ - uid: 9272
components:
- type: Transform
- pos: -6.5,-42.5
+ pos: 11.5,56.5
parent: 2
- - uid: 7076
+ - uid: 9273
components:
- type: Transform
- pos: -7.5,-42.5
+ pos: 20.5,18.5
parent: 2
- - uid: 7077
+ - uid: 9274
components:
- type: Transform
- pos: -8.5,-42.5
+ pos: 40.5,-24.5
parent: 2
- - uid: 7078
+ - uid: 9275
components:
- type: Transform
- pos: -9.5,-42.5
+ pos: -26.5,-65.5
parent: 2
- - uid: 7079
+ - uid: 9276
components:
- type: Transform
- pos: -9.5,-38.5
+ pos: -36.5,37.5
parent: 2
- - uid: 7080
+ - uid: 9277
components:
- type: Transform
- pos: -8.5,-38.5
+ pos: -86.5,-12.5
parent: 2
- - uid: 7081
+ - uid: 9278
components:
- type: Transform
- pos: -7.5,-38.5
+ pos: -56.5,-90.5
parent: 2
- - uid: 7082
+ - uid: 9279
components:
- type: Transform
- pos: -6.5,-38.5
+ pos: 40.5,-27.5
parent: 2
- - uid: 7083
+ - uid: 9280
components:
- type: Transform
- pos: -5.5,-38.5
+ pos: 21.5,36.5
parent: 2
- - uid: 7084
+ - uid: 9281
components:
- type: Transform
- pos: -9.5,-40.5
+ pos: 9.5,40.5
parent: 2
- - uid: 7085
+ - uid: 9282
components:
- type: Transform
- pos: -8.5,-40.5
+ pos: 21.5,39.5
parent: 2
- - uid: 7086
+ - uid: 9283
components:
- type: Transform
- pos: -7.5,-40.5
+ pos: 6.5,-7.5
parent: 2
- - uid: 7087
+ - uid: 9284
components:
- type: Transform
- pos: -6.5,-40.5
+ pos: 87.5,-44.5
parent: 2
- - uid: 7088
+ - uid: 9285
components:
- type: Transform
- pos: -5.5,-40.5
+ pos: 17.5,0.5
parent: 2
- - uid: 7089
+ - uid: 9286
components:
- type: Transform
- pos: 82.5,9.5
+ pos: 82.5,-50.5
parent: 2
- - uid: 7090
+ - uid: 9287
components:
- type: Transform
- pos: 80.5,9.5
+ pos: 15.5,41.5
parent: 2
- - uid: 7091
+ - uid: 9288
components:
- type: Transform
- pos: 89.5,9.5
+ pos: -0.5,-38.5
parent: 2
- - uid: 7092
+ - uid: 9289
components:
- type: Transform
- pos: 92.5,10.5
+ pos: 10.5,-8.5
parent: 2
- - uid: 7093
+ - uid: 9290
components:
- type: Transform
- pos: 90.5,9.5
+ pos: 11.5,-8.5
parent: 2
- - uid: 7094
+ - uid: 9291
components:
- type: Transform
- pos: -68.5,-43.5
+ pos: 12.5,-8.5
parent: 2
- - uid: 7095
+ - uid: 9292
components:
- type: Transform
- pos: 44.5,-16.5
+ pos: 13.5,-8.5
parent: 2
- - uid: 7096
+ - uid: 9293
components:
- type: Transform
- pos: -58.5,-40.5
+ pos: 14.5,-8.5
parent: 2
- - uid: 7097
+ - uid: 9294
components:
- type: Transform
- pos: -61.5,-45.5
+ pos: -40.5,37.5
parent: 2
- - uid: 7098
+ - uid: 9295
components:
- type: Transform
- pos: -58.5,-49.5
+ pos: 29.5,99.5
parent: 2
- - uid: 7099
+ - uid: 9296
components:
- type: Transform
- pos: 44.5,-13.5
+ pos: 10.5,40.5
parent: 2
- - uid: 7100
+ - uid: 9297
components:
- type: Transform
- pos: -65.5,-45.5
+ pos: 18.5,42.5
parent: 2
- - uid: 7101
+ - uid: 9298
components:
- type: Transform
- pos: -62.5,-45.5
+ pos: 12.5,-1.5
parent: 2
- - uid: 7102
+ - uid: 9299
components:
- type: Transform
- pos: -66.5,-45.5
+ pos: -10.5,-19.5
parent: 2
- - uid: 7103
+ - uid: 9300
components:
- type: Transform
- pos: -62.5,-44.5
+ pos: 61.5,25.5
parent: 2
- - uid: 7104
+ - uid: 9301
components:
- type: Transform
- pos: -62.5,-43.5
+ pos: 17.5,-54.5
parent: 2
- - uid: 7105
+ - uid: 9302
components:
- type: Transform
- pos: 46.5,23.5
+ pos: -22.5,-30.5
parent: 2
- - uid: 7106
+ - uid: 9303
components:
- type: Transform
- pos: -62.5,-37.5
+ pos: 40.5,-25.5
parent: 2
- - uid: 7107
+ - uid: 9304
components:
- type: Transform
- pos: 12.5,33.5
+ pos: -79.5,78.5
parent: 2
- - uid: 7108
+ - uid: 9305
components:
- type: Transform
- pos: -66.5,-4.5
+ pos: 42.5,-46.5
parent: 2
- - uid: 7109
+ - uid: 9306
components:
- type: Transform
- pos: -66.5,-5.5
+ pos: 36.5,-55.5
parent: 2
- - uid: 7110
+ - uid: 9307
components:
- type: Transform
- pos: -66.5,-6.5
+ pos: 34.5,94.5
parent: 2
- - uid: 7111
+ - uid: 9308
components:
- type: Transform
- pos: -65.5,-6.5
+ pos: 66.5,25.5
parent: 2
- - uid: 7112
+ - uid: 9309
components:
- type: Transform
- pos: -64.5,-6.5
+ pos: -79.5,77.5
parent: 2
- - uid: 7113
+ - uid: 9310
components:
- type: Transform
- pos: -63.5,-6.5
+ pos: -78.5,77.5
parent: 2
- - uid: 7114
+ - uid: 9311
components:
- type: Transform
- pos: -62.5,-6.5
+ pos: -73.5,73.5
parent: 2
- - uid: 7115
+ - uid: 9312
components:
- type: Transform
- pos: -67.5,-6.5
+ pos: -77.5,77.5
parent: 2
- - uid: 7116
+ - uid: 9313
components:
- type: Transform
- pos: -68.5,-6.5
+ pos: -77.5,76.5
parent: 2
- - uid: 7117
+ - uid: 9314
components:
- type: Transform
- pos: -69.5,-6.5
+ pos: -78.5,76.5
parent: 2
- - uid: 7118
+ - uid: 9315
components:
- type: Transform
- pos: -70.5,-6.5
+ pos: 33.5,-10.5
parent: 2
- - uid: 7119
+ - uid: 9316
components:
- type: Transform
- pos: -71.5,-6.5
+ pos: -79.5,68.5
parent: 2
- - uid: 7120
+ - uid: 9317
components:
- type: Transform
- pos: -72.5,-6.5
+ pos: -47.5,-80.5
parent: 2
- - uid: 7121
+ - uid: 9318
components:
- type: Transform
- pos: -73.5,-6.5
+ pos: -0.5,-19.5
parent: 2
- - uid: 7122
+ - uid: 9319
components:
- type: Transform
- pos: -74.5,-6.5
+ pos: 86.5,-44.5
parent: 2
- - uid: 7123
+ - uid: 9320
components:
- type: Transform
- pos: -75.5,-6.5
+ pos: -0.5,-21.5
parent: 2
- - uid: 7124
+ - uid: 9321
components:
- type: Transform
- pos: -76.5,-6.5
+ pos: 28.5,-55.5
parent: 2
- - uid: 7125
+ - uid: 9322
components:
- type: Transform
- pos: -76.5,-7.5
+ pos: -36.5,-16.5
parent: 2
- - uid: 7126
+ - uid: 9323
components:
- type: Transform
- pos: -76.5,-8.5
+ pos: -36.5,-15.5
parent: 2
- - uid: 7127
+ - uid: 9324
components:
- type: Transform
- pos: -76.5,-9.5
+ pos: -36.5,-14.5
parent: 2
- - uid: 7128
+ - uid: 9325
components:
- type: Transform
- pos: -77.5,-9.5
+ pos: -36.5,-13.5
parent: 2
- - uid: 7129
+ - uid: 9326
components:
- type: Transform
- pos: -78.5,-9.5
+ pos: -36.5,-11.5
parent: 2
- - uid: 7130
+ - uid: 9327
components:
- type: Transform
- pos: -79.5,-9.5
+ pos: -36.5,-12.5
parent: 2
- - uid: 7131
+ - uid: 9328
components:
- type: Transform
- pos: -80.5,-9.5
+ pos: 34.5,-3.5
parent: 2
- - uid: 7132
+ - uid: 9329
components:
- type: Transform
- pos: -81.5,-9.5
+ pos: 4.5,-7.5
parent: 2
- - uid: 7133
+ - uid: 9330
components:
- type: Transform
- pos: -69.5,-7.5
+ pos: 44.5,-6.5
parent: 2
- - uid: 7134
+ - uid: 9331
components:
- type: Transform
- pos: -69.5,-8.5
+ pos: 23.5,94.5
parent: 2
- - uid: 7135
+ - uid: 9332
components:
- type: Transform
- pos: -69.5,-9.5
+ pos: -56.5,-82.5
parent: 2
- - uid: 7136
+ - uid: 9333
components:
- type: Transform
- pos: -69.5,-10.5
+ pos: 10.5,62.5
parent: 2
- - uid: 7137
+ - uid: 9334
components:
- type: Transform
- pos: -69.5,-11.5
+ pos: -26.5,-69.5
parent: 2
- - uid: 7138
+ - uid: 9335
components:
- type: Transform
- pos: -69.5,-12.5
+ pos: -46.5,-22.5
parent: 2
- - uid: 7139
+ - uid: 9336
components:
- type: Transform
- pos: -70.5,-11.5
+ pos: -53.5,-89.5
parent: 2
- - uid: 7140
+ - uid: 9337
components:
- type: Transform
- pos: -71.5,-11.5
+ pos: -43.5,12.5
parent: 2
- - uid: 7141
+ - uid: 9338
components:
- type: Transform
- pos: -72.5,-11.5
+ pos: -21.5,-19.5
parent: 2
- - uid: 7142
+ - uid: 9339
components:
- type: Transform
- pos: -68.5,-11.5
+ pos: 22.5,20.5
parent: 2
- - uid: 7143
+ - uid: 9340
components:
- type: Transform
- pos: -67.5,-11.5
+ pos: 37.5,-55.5
parent: 2
- - uid: 7144
+ - uid: 9341
components:
- type: Transform
- pos: -66.5,-11.5
+ pos: -41.5,0.5
parent: 2
- - uid: 7145
+ - uid: 9342
components:
- type: Transform
- pos: -69.5,-5.5
+ pos: -44.5,5.5
parent: 2
- - uid: 7146
+ - uid: 9343
components:
- type: Transform
- pos: -69.5,-4.5
+ pos: -44.5,6.5
parent: 2
- - uid: 7147
+ - uid: 9344
components:
- type: Transform
- pos: -69.5,-3.5
+ pos: 17.5,8.5
parent: 2
- - uid: 7148
+ - uid: 9345
components:
- type: Transform
- pos: -69.5,-2.5
+ pos: -7.5,-19.5
parent: 2
- - uid: 7149
+ - uid: 9346
components:
- type: Transform
- pos: -69.5,-1.5
+ pos: -73.5,76.5
parent: 2
- - uid: 7150
+ - uid: 9347
components:
- type: Transform
- pos: -69.5,-0.5
+ pos: -72.5,73.5
parent: 2
- - uid: 7151
+ - uid: 9348
components:
- type: Transform
- pos: -69.5,0.5
+ pos: 50.5,-46.5
parent: 2
- - uid: 7152
+ - uid: 9349
components:
- type: Transform
- pos: -69.5,1.5
+ pos: -51.5,-21.5
parent: 2
- - uid: 7153
+ - uid: 9350
components:
- type: Transform
- pos: -70.5,0.5
+ pos: 48.5,-46.5
parent: 2
- - uid: 7154
+ - uid: 9351
components:
- type: Transform
- pos: -71.5,0.5
+ pos: 12.5,-50.5
parent: 2
- - uid: 7155
+ - uid: 9352
components:
- type: Transform
- pos: -72.5,0.5
+ pos: -46.5,-90.5
parent: 2
- - uid: 7156
+ - uid: 9353
components:
- type: Transform
- pos: -73.5,0.5
+ pos: 12.5,87.5
parent: 2
- - uid: 7157
+ - uid: 9354
components:
- type: Transform
- pos: -68.5,0.5
+ pos: 82.5,-49.5
parent: 2
- - uid: 7158
+ - uid: 9355
components:
- type: Transform
- pos: -67.5,0.5
+ pos: -55.5,-86.5
parent: 2
- - uid: 7159
+ - uid: 9356
components:
- type: Transform
- pos: -66.5,0.5
+ pos: 13.5,44.5
parent: 2
- - uid: 7160
+ - uid: 9357
components:
- type: Transform
- pos: -65.5,0.5
+ pos: 17.5,41.5
parent: 2
- - uid: 7161
+ - uid: 9358
components:
- type: Transform
- pos: -64.5,0.5
+ pos: 21.5,41.5
parent: 2
- - uid: 7162
+ - uid: 9359
components:
- type: Transform
- pos: -63.5,0.5
+ pos: 19.5,41.5
parent: 2
- - uid: 7163
+ - uid: 9360
components:
- type: Transform
- pos: -62.5,0.5
+ pos: -42.5,28.5
parent: 2
- - uid: 7164
+ - uid: 9361
components:
- type: Transform
- pos: -76.5,-5.5
+ pos: -72.5,74.5
parent: 2
- - uid: 7165
+ - uid: 9362
components:
- type: Transform
- pos: -77.5,-5.5
+ pos: -118.5,23.5
parent: 2
- - uid: 7166
+ - uid: 9363
components:
- type: Transform
- pos: -78.5,-5.5
+ pos: 8.5,56.5
parent: 2
- - uid: 7167
+ - uid: 9364
components:
- type: Transform
- pos: -79.5,-5.5
+ pos: -34.5,-19.5
parent: 2
- - uid: 7168
+ - uid: 9365
components:
- type: Transform
- pos: -80.5,-5.5
+ pos: 10.5,-5.5
parent: 2
- - uid: 7169
+ - uid: 9366
components:
- type: Transform
- pos: -81.5,-5.5
+ pos: 14.5,71.5
parent: 2
- - uid: 7170
+ - uid: 9367
components:
- type: Transform
- pos: -79.5,-4.5
+ pos: -42.5,-19.5
parent: 2
- - uid: 7171
+ - uid: 9368
components:
- type: Transform
- pos: -79.5,-3.5
+ pos: 41.5,-28.5
parent: 2
- - uid: 7172
+ - uid: 9369
components:
- type: Transform
- pos: -79.5,-2.5
+ pos: 6.5,-39.5
parent: 2
- - uid: 7173
+ - uid: 9370
components:
- type: Transform
- pos: -80.5,-2.5
+ pos: 6.5,-38.5
parent: 2
- - uid: 7174
+ - uid: 9371
components:
- type: Transform
- pos: -79.5,-10.5
+ pos: -42.5,-40.5
parent: 2
- - uid: 7175
+ - uid: 9372
components:
- type: Transform
- pos: -79.5,-11.5
+ pos: 26.5,32.5
parent: 2
- - uid: 7176
+ - uid: 9373
components:
- type: Transform
- pos: -79.5,-12.5
+ pos: -33.5,-26.5
parent: 2
- - uid: 7177
+ - uid: 9374
components:
- type: Transform
- pos: -80.5,-12.5
+ pos: 33.5,92.5
parent: 2
- - uid: 7178
+ - uid: 9375
components:
- type: Transform
- pos: -47.5,9.5
+ pos: -51.5,-93.5
parent: 2
- - uid: 7179
+ - uid: 9376
components:
- type: Transform
- pos: 72.5,-44.5
+ pos: -26.5,-62.5
parent: 2
- - uid: 7180
+ - uid: 9377
components:
- type: Transform
- pos: 71.5,-44.5
+ pos: 23.5,-54.5
parent: 2
- - uid: 7181
+ - uid: 9378
components:
- type: Transform
- pos: 66.5,27.5
+ pos: 16.5,-50.5
parent: 2
- - uid: 7182
+ - uid: 9379
components:
- type: Transform
- pos: 75.5,-44.5
+ pos: -43.5,-40.5
parent: 2
- - uid: 7183
+ - uid: 9380
components:
- type: Transform
- pos: 70.5,-44.5
+ pos: -55.5,-90.5
parent: 2
- - uid: 7184
+ - uid: 9381
components:
- type: Transform
- pos: 77.5,-44.5
+ pos: 12.5,-4.5
parent: 2
- - uid: 7185
+ - uid: 9382
components:
- type: Transform
- pos: 77.5,-45.5
+ pos: 36.5,-22.5
parent: 2
- - uid: 7186
+ - uid: 9383
components:
- type: Transform
- pos: 78.5,-45.5
+ pos: -25.5,-76.5
parent: 2
- - uid: 7187
+ - uid: 9384
components:
- type: Transform
- pos: 79.5,-45.5
+ pos: 51.5,-44.5
parent: 2
- - uid: 7188
+ - uid: 9385
components:
- type: Transform
- pos: 76.5,-44.5
+ pos: -44.5,-40.5
parent: 2
- - uid: 7189
+ - uid: 9386
components:
- type: Transform
- pos: 73.5,-50.5
+ pos: -45.5,-40.5
parent: 2
- - uid: 7190
+ - uid: 9387
components:
- type: Transform
- pos: 70.5,-42.5
+ pos: -46.5,-40.5
parent: 2
- - uid: 7191
+ - uid: 9388
components:
- type: Transform
- pos: 70.5,-41.5
+ pos: 11.5,76.5
parent: 2
- - uid: 7192
+ - uid: 9389
components:
- type: Transform
- pos: 71.5,-49.5
+ pos: -46.5,-39.5
parent: 2
- - uid: 7193
+ - uid: 9390
components:
- type: Transform
- pos: 67.5,-40.5
+ pos: -47.5,-39.5
parent: 2
- - uid: 7194
+ - uid: 9391
components:
- type: Transform
- pos: 70.5,-45.5
+ pos: -48.5,-39.5
parent: 2
- - uid: 7195
+ - uid: 9392
components:
- type: Transform
- pos: 77.5,-43.5
+ pos: -49.5,-39.5
parent: 2
- - uid: 7196
+ - uid: 9393
components:
- type: Transform
- pos: 72.5,-51.5
+ pos: -45.5,-26.5
parent: 2
- - uid: 7197
+ - uid: 9394
components:
- type: Transform
- pos: 77.5,-42.5
+ pos: -50.5,-39.5
parent: 2
- - uid: 7198
+ - uid: 9395
components:
- type: Transform
- pos: 72.5,-49.5
+ pos: 40.5,-22.5
parent: 2
- - uid: 7199
+ - uid: 9396
components:
- type: Transform
- pos: 69.5,-49.5
+ pos: 21.5,38.5
parent: 2
- - uid: 7200
+ - uid: 9397
components:
- type: Transform
- pos: 70.5,-40.5
+ pos: -36.5,-7.5
parent: 2
- - uid: 7201
+ - uid: 9398
components:
- type: Transform
- pos: 73.5,-44.5
+ pos: -55.5,-38.5
parent: 2
- - uid: 7202
+ - uid: 9399
components:
- type: Transform
- pos: 69.5,-40.5
+ pos: -55.5,-37.5
parent: 2
- - uid: 7203
+ - uid: 9400
components:
- type: Transform
- pos: 68.5,-40.5
+ pos: -55.5,-36.5
parent: 2
- - uid: 7204
+ - uid: 9401
components:
- type: Transform
- pos: 73.5,-45.5
+ pos: -55.5,-35.5
parent: 2
- - uid: 7205
+ - uid: 9402
components:
- type: Transform
- pos: 73.5,-42.5
+ pos: -55.5,-34.5
parent: 2
- - uid: 7206
+ - uid: 9403
components:
- type: Transform
- pos: 74.5,-41.5
+ pos: -54.5,-34.5
parent: 2
- - uid: 7207
+ - uid: 9404
components:
- type: Transform
- pos: 68.5,-51.5
+ pos: -54.5,-33.5
parent: 2
- - uid: 7208
+ - uid: 9405
components:
- type: Transform
- pos: 73.5,-43.5
+ pos: 52.5,20.5
parent: 2
- - uid: 7209
+ - uid: 9406
components:
- type: Transform
- pos: 69.5,-51.5
+ pos: -70.5,12.5
parent: 2
- - uid: 7210
+ - uid: 9407
components:
- type: Transform
- pos: 70.5,-43.5
+ pos: -49.5,56.5
parent: 2
- - uid: 7211
+ - uid: 9408
components:
- type: Transform
- pos: 73.5,-47.5
+ pos: -73.5,10.5
parent: 2
- - uid: 7212
+ - uid: 9409
components:
- type: Transform
- pos: 73.5,-37.5
+ pos: -68.5,-2.5
parent: 2
- - uid: 7213
+ - uid: 9410
components:
- type: Transform
- pos: 73.5,-39.5
+ pos: -70.5,-2.5
parent: 2
- - uid: 7214
+ - uid: 9411
components:
- type: Transform
- pos: 73.5,-48.5
+ pos: -71.5,-2.5
parent: 2
- - uid: 7215
+ - uid: 9412
components:
- type: Transform
- pos: 73.5,-46.5
+ pos: -66.5,3.5
parent: 2
- - uid: 7216
+ - uid: 9413
components:
- type: Transform
- pos: 73.5,-49.5
+ pos: -67.5,3.5
parent: 2
- - uid: 7217
+ - uid: 9414
components:
- type: Transform
- pos: 74.5,-46.5
+ pos: -65.5,3.5
parent: 2
- - uid: 7218
+ - uid: 9415
components:
- type: Transform
- pos: 73.5,-38.5
+ pos: -71.5,1.5
parent: 2
- - uid: 7219
+ - uid: 9416
components:
- type: Transform
- pos: 73.5,-40.5
+ pos: -67.5,0.5
parent: 2
- - uid: 7220
+ - uid: 9417
components:
- type: Transform
- pos: 73.5,-51.5
+ pos: -67.5,-0.5
parent: 2
- - uid: 7221
+ - uid: 9418
components:
- type: Transform
- pos: 70.5,-49.5
+ pos: -71.5,-1.5
parent: 2
- - uid: 7222
+ - uid: 9419
components:
- type: Transform
- pos: 73.5,-41.5
+ pos: -71.5,-0.5
parent: 2
- - uid: 7223
+ - uid: 9420
components:
- type: Transform
- pos: 70.5,-51.5
+ pos: -71.5,0.5
parent: 2
- - uid: 7224
+ - uid: 9421
components:
- type: Transform
- pos: -118.5,49.5
+ pos: -82.5,-12.5
parent: 2
- - uid: 7225
+ - uid: 9422
components:
- type: Transform
- pos: -118.5,50.5
+ pos: -82.5,-2.5
parent: 2
- - uid: 7226
+ - uid: 9423
components:
- type: Transform
- pos: -118.5,51.5
+ pos: -82.5,-1.5
parent: 2
- - uid: 7227
+ - uid: 9424
components:
- type: Transform
- pos: -112.5,23.5
+ pos: -65.5,-6.5
parent: 2
- - uid: 7228
+ - uid: 9425
components:
- type: Transform
- pos: -118.5,20.5
+ pos: -66.5,-6.5
parent: 2
- - uid: 7229
+ - uid: 9426
components:
- type: Transform
- pos: -118.5,18.5
+ pos: -67.5,-6.5
parent: 2
- - uid: 7230
+ - uid: 9427
components:
- type: Transform
- pos: -113.5,23.5
+ pos: -68.5,-6.5
parent: 2
- - uid: 7231
+ - uid: 9428
components:
- type: Transform
- pos: -118.5,19.5
+ pos: -69.5,-6.5
parent: 2
- - uid: 7232
+ - uid: 9429
components:
- type: Transform
- pos: -119.5,18.5
+ pos: -70.5,-6.5
parent: 2
- - uid: 7233
+ - uid: 9430
components:
- type: Transform
- pos: -121.5,18.5
+ pos: -71.5,-6.5
parent: 2
- - uid: 7234
+ - uid: 9431
components:
- type: Transform
- pos: -122.5,25.5
+ pos: -72.5,-6.5
parent: 2
- - uid: 7235
+ - uid: 9432
components:
- type: Transform
- pos: -122.5,24.5
+ pos: -73.5,-6.5
parent: 2
- - uid: 7236
+ - uid: 9433
components:
- type: Transform
- pos: -122.5,23.5
+ pos: -74.5,-6.5
parent: 2
- - uid: 7237
+ - uid: 9434
components:
- type: Transform
- pos: -122.5,22.5
+ pos: -75.5,-6.5
parent: 2
- - uid: 7238
+ - uid: 9435
components:
- type: Transform
- pos: -114.5,27.5
+ pos: -76.5,-6.5
parent: 2
- - uid: 7239
+ - uid: 9436
components:
- type: Transform
- pos: -114.5,26.5
+ pos: -76.5,-5.5
parent: 2
- - uid: 7240
+ - uid: 9437
components:
- type: Transform
- pos: -114.5,25.5
+ pos: -77.5,-5.5
parent: 2
- - uid: 7241
+ - uid: 9438
components:
- type: Transform
- pos: -114.5,24.5
+ pos: -78.5,-5.5
parent: 2
- - uid: 7242
+ - uid: 9439
components:
- type: Transform
- pos: -114.5,23.5
+ pos: -79.5,-5.5
parent: 2
- - uid: 7243
+ - uid: 9440
components:
- type: Transform
- pos: -114.5,22.5
+ pos: -79.5,-4.5
parent: 2
- - uid: 7244
+ - uid: 9441
components:
- type: Transform
- pos: -121.5,23.5
+ pos: -79.5,-3.5
parent: 2
- - uid: 7245
+ - uid: 9442
components:
- type: Transform
- pos: -120.5,23.5
+ pos: -80.5,-3.5
parent: 2
- - uid: 7246
+ - uid: 9443
components:
- type: Transform
- pos: -119.5,23.5
+ pos: -69.5,-5.5
parent: 2
- - uid: 7247
+ - uid: 9444
components:
- type: Transform
- pos: -118.5,23.5
+ pos: -69.5,-4.5
parent: 2
- - uid: 7248
+ - uid: 9445
components:
- type: Transform
- pos: -118.5,22.5
+ pos: -69.5,-3.5
parent: 2
- - uid: 7249
+ - uid: 9446
components:
- type: Transform
- pos: -118.5,24.5
+ pos: -69.5,-2.5
parent: 2
- - uid: 7250
+ - uid: 9447
components:
- type: Transform
- pos: -118.5,25.5
+ pos: -69.5,-1.5
parent: 2
- - uid: 7251
+ - uid: 9448
components:
- type: Transform
- pos: -118.5,26.5
+ pos: -69.5,-0.5
parent: 2
- - uid: 7252
+ - uid: 9449
components:
- type: Transform
- pos: -118.5,27.5
+ pos: -69.5,0.5
parent: 2
- - uid: 7253
+ - uid: 9450
components:
- type: Transform
- pos: -118.5,28.5
+ pos: -69.5,1.5
parent: 2
- - uid: 7254
+ - uid: 9451
components:
- type: Transform
- pos: -118.5,29.5
+ pos: -76.5,-7.5
parent: 2
- - uid: 7255
+ - uid: 9452
components:
- type: Transform
- pos: -118.5,30.5
+ pos: -76.5,-8.5
parent: 2
- - uid: 7256
+ - uid: 9453
components:
- type: Transform
- pos: -118.5,31.5
+ pos: -76.5,-9.5
parent: 2
- - uid: 7257
+ - uid: 9454
components:
- type: Transform
- pos: -118.5,32.5
+ pos: -77.5,-9.5
parent: 2
- - uid: 7258
+ - uid: 9455
components:
- type: Transform
- pos: -118.5,33.5
+ pos: -78.5,-9.5
parent: 2
- - uid: 7259
+ - uid: 9456
components:
- type: Transform
- pos: -118.5,34.5
+ pos: -79.5,-9.5
parent: 2
- - uid: 7260
+ - uid: 9457
components:
- type: Transform
- pos: -118.5,35.5
+ pos: -79.5,-10.5
parent: 2
- - uid: 7261
+ - uid: 9458
components:
- type: Transform
- pos: -118.5,36.5
+ pos: -79.5,-11.5
parent: 2
- - uid: 7262
+ - uid: 9459
components:
- type: Transform
- pos: -118.5,37.5
+ pos: -79.5,-12.5
parent: 2
- - uid: 7263
+ - uid: 9460
components:
- type: Transform
- pos: -118.5,38.5
+ pos: -80.5,-12.5
parent: 2
- - uid: 7264
+ - uid: 9461
components:
- type: Transform
- pos: -118.5,39.5
+ pos: -80.5,-11.5
parent: 2
- - uid: 7265
+ - uid: 9462
components:
- type: Transform
- pos: -118.5,40.5
+ pos: -81.5,-12.5
parent: 2
- - uid: 7266
+ - uid: 9463
components:
- type: Transform
- pos: -118.5,41.5
+ pos: -81.5,-2.5
parent: 2
- - uid: 7267
+ - uid: 9464
components:
- type: Transform
- pos: -118.5,42.5
+ pos: -80.5,-2.5
parent: 2
- - uid: 7268
+ - uid: 9465
components:
- type: Transform
- pos: -123.5,44.5
+ pos: -81.5,82.5
parent: 2
- - uid: 7269
+ - uid: 9466
components:
- type: Transform
- pos: -123.5,43.5
+ pos: -81.5,81.5
parent: 2
- - uid: 7270
+ - uid: 9467
components:
- type: Transform
- pos: -123.5,42.5
+ pos: -81.5,80.5
parent: 2
- - uid: 7271
+ - uid: 9468
components:
- type: Transform
- pos: -123.5,41.5
+ pos: -80.5,82.5
parent: 2
- - uid: 7272
+ - uid: 9469
components:
- type: Transform
- pos: -123.5,40.5
+ pos: -80.5,81.5
parent: 2
- - uid: 7273
+ - uid: 9470
components:
- type: Transform
- pos: -123.5,39.5
+ pos: -80.5,80.5
parent: 2
- - uid: 7274
+ - uid: 9471
components:
- type: Transform
- pos: -123.5,38.5
+ pos: -79.5,82.5
parent: 2
- - uid: 7275
+ - uid: 9472
components:
- type: Transform
- pos: -123.5,37.5
+ pos: -79.5,81.5
parent: 2
- - uid: 7276
+ - uid: 9473
components:
- type: Transform
- pos: -123.5,36.5
+ pos: -79.5,80.5
parent: 2
- - uid: 7277
+ - uid: 9474
components:
- type: Transform
- pos: -125.5,40.5
+ pos: -78.5,82.5
parent: 2
- - uid: 7278
+ - uid: 9475
components:
- type: Transform
- pos: -124.5,40.5
+ pos: -78.5,81.5
parent: 2
- - uid: 7279
+ - uid: 9476
components:
- type: Transform
- pos: -122.5,40.5
+ pos: -78.5,80.5
parent: 2
- - uid: 7280
+ - uid: 9477
components:
- type: Transform
- pos: -121.5,40.5
+ pos: -77.5,82.5
parent: 2
- - uid: 7281
+ - uid: 9478
components:
- type: Transform
- pos: -122.5,37.5
+ pos: -77.5,81.5
parent: 2
- - uid: 7282
+ - uid: 9479
components:
- type: Transform
- pos: -121.5,37.5
+ pos: -77.5,80.5
parent: 2
- - uid: 7283
+ - uid: 9480
components:
- type: Transform
- pos: -124.5,37.5
+ pos: -73.5,82.5
parent: 2
- - uid: 7284
+ - uid: 9481
components:
- type: Transform
- pos: -125.5,37.5
+ pos: -73.5,81.5
parent: 2
- - uid: 7285
+ - uid: 9482
components:
- type: Transform
- pos: -125.5,43.5
+ pos: -73.5,80.5
parent: 2
- - uid: 7286
+ - uid: 9483
components:
- type: Transform
- pos: -124.5,43.5
+ pos: -72.5,82.5
parent: 2
- - uid: 7287
+ - uid: 9484
components:
- type: Transform
- pos: -122.5,43.5
+ pos: -72.5,81.5
parent: 2
- - uid: 7288
+ - uid: 9485
components:
- type: Transform
- pos: -121.5,43.5
+ pos: -72.5,80.5
parent: 2
- - uid: 7289
+ - uid: 9486
components:
- type: Transform
- pos: -113.5,44.5
+ pos: -71.5,82.5
parent: 2
- - uid: 7290
+ - uid: 9487
components:
- type: Transform
- pos: -113.5,43.5
+ pos: -71.5,81.5
parent: 2
- - uid: 7291
+ - uid: 9488
components:
- type: Transform
- pos: -113.5,42.5
+ pos: -71.5,80.5
parent: 2
- - uid: 7292
+ - uid: 9489
components:
- type: Transform
- pos: -113.5,41.5
+ pos: 81.5,-42.5
parent: 2
- - uid: 7293
+ - uid: 9490
components:
- type: Transform
- pos: -113.5,40.5
+ pos: -70.5,82.5
parent: 2
- - uid: 7294
+ - uid: 9491
components:
- type: Transform
- pos: -113.5,39.5
+ pos: 78.5,-52.5
parent: 2
- - uid: 7295
+ - uid: 9492
components:
- type: Transform
- pos: -113.5,38.5
+ pos: 79.5,-42.5
parent: 2
- - uid: 7296
+ - uid: 9493
components:
- type: Transform
- pos: -113.5,37.5
+ pos: 82.5,-52.5
parent: 2
- - uid: 7297
+ - uid: 9494
components:
- type: Transform
- pos: -113.5,36.5
+ pos: 81.5,-48.5
parent: 2
- - uid: 7298
+ - uid: 9495
components:
- type: Transform
- pos: -115.5,42.5
+ pos: 80.5,-49.5
parent: 2
- - uid: 7299
+ - uid: 9496
components:
- type: Transform
- pos: -114.5,42.5
+ pos: 80.5,-50.5
parent: 2
- - uid: 7300
+ - uid: 9497
components:
- type: Transform
- pos: -112.5,42.5
+ pos: 80.5,-46.5
parent: 2
- - uid: 7301
+ - uid: 9498
components:
- type: Transform
- pos: -111.5,42.5
+ pos: 80.5,-47.5
parent: 2
- - uid: 7302
+ - uid: 9499
components:
- type: Transform
- pos: -115.5,37.5
+ pos: 82.5,-51.5
parent: 2
- - uid: 7303
+ - uid: 9500
components:
- type: Transform
- pos: -114.5,37.5
+ pos: 82.5,-44.5
parent: 2
- - uid: 7304
+ - uid: 9501
components:
- type: Transform
- pos: -112.5,37.5
+ pos: 83.5,-44.5
parent: 2
- - uid: 7305
+ - uid: 9502
components:
- type: Transform
- pos: -111.5,37.5
+ pos: 79.5,-48.5
parent: 2
- - uid: 7306
+ - uid: 9503
components:
- type: Transform
- pos: -112.5,39.5
+ pos: 80.5,-48.5
parent: 2
- - uid: 7307
+ - uid: 9504
components:
- type: Transform
- pos: -111.5,39.5
+ pos: 78.5,-44.5
parent: 2
- - uid: 7308
+ - uid: 9505
components:
- type: Transform
- pos: -114.5,40.5
+ pos: 78.5,-46.5
parent: 2
- - uid: 7309
+ - uid: 9506
components:
- type: Transform
- pos: -115.5,40.5
+ pos: 79.5,-46.5
parent: 2
- - uid: 7310
+ - uid: 9507
components:
- type: Transform
- pos: -118.5,48.5
+ pos: 78.5,-45.5
parent: 2
- - uid: 7311
+ - uid: 9508
components:
- type: Transform
- pos: -118.5,47.5
+ pos: 81.5,-45.5
parent: 2
- - uid: 7312
+ - uid: 9509
components:
- type: Transform
- pos: -118.5,46.5
+ pos: -70.5,81.5
parent: 2
- - uid: 7313
+ - uid: 9510
components:
- type: Transform
- pos: -121.5,47.5
+ pos: -70.5,80.5
parent: 2
- - uid: 7314
+ - uid: 9511
components:
- type: Transform
- pos: -120.5,47.5
+ pos: -69.5,82.5
parent: 2
- - uid: 7315
+ - uid: 9512
components:
- type: Transform
- pos: -119.5,47.5
+ pos: -69.5,81.5
parent: 2
- - uid: 7316
+ - uid: 9513
components:
- type: Transform
- pos: -117.5,47.5
+ pos: -69.5,80.5
parent: 2
- - uid: 7317
+ - uid: 9514
components:
- type: Transform
- pos: -116.5,47.5
+ pos: -74.5,81.5
parent: 2
- - uid: 7318
+ - uid: 9515
components:
- type: Transform
- pos: -115.5,47.5
+ pos: 80.5,-52.5
parent: 2
- - uid: 7319
+ - uid: 9516
components:
- type: Transform
- pos: -121.5,46.5
+ pos: 78.5,-50.5
parent: 2
- - uid: 7320
+ - uid: 9517
components:
- type: Transform
- pos: -115.5,46.5
+ pos: -76.5,81.5
parent: 2
- - uid: 7321
+ - uid: 9518
components:
- type: Transform
- pos: 81.5,-21.5
+ pos: -75.5,83.5
parent: 2
- - uid: 7322
+ - uid: 9519
components:
- type: Transform
- pos: 82.5,-21.5
+ pos: -75.5,82.5
parent: 2
- - uid: 7323
+ - uid: 9520
components:
- type: Transform
- pos: 83.5,-21.5
+ pos: -75.5,84.5
parent: 2
- - uid: 7324
+ - uid: 9521
components:
- type: Transform
- pos: 84.5,-21.5
+ pos: -121.5,25.5
parent: 2
- - uid: 7325
+ - uid: 9522
components:
- type: Transform
- pos: 81.5,-18.5
+ pos: -123.5,24.5
parent: 2
- - uid: 7326
+ - uid: 9523
components:
- type: Transform
- pos: 82.5,-18.5
+ pos: -121.5,24.5
parent: 2
- - uid: 7327
+ - uid: 9524
components:
- type: Transform
- pos: 83.5,-18.5
+ pos: -122.5,24.5
parent: 2
- - uid: 7328
+ - uid: 9525
components:
- type: Transform
- pos: 84.5,-18.5
+ pos: -120.5,23.5
parent: 2
- - uid: 7329
+ - uid: 9526
components:
- type: Transform
- pos: 84.5,-17.5
+ pos: -118.5,24.5
parent: 2
- - uid: 7330
+ - uid: 9527
components:
- type: Transform
- pos: 84.5,-16.5
+ pos: -121.5,23.5
parent: 2
- - uid: 7331
+ - uid: 9528
components:
- type: Transform
- pos: 84.5,-15.5
+ pos: -118.5,32.5
parent: 2
- - uid: 7332
+ - uid: 9529
components:
- type: Transform
- pos: 84.5,-14.5
+ pos: -118.5,33.5
parent: 2
- - uid: 7333
+ - uid: 9530
components:
- type: Transform
- pos: 85.5,-14.5
+ pos: -118.5,34.5
parent: 2
- - uid: 7334
+ - uid: 9531
components:
- type: Transform
- pos: 86.5,-14.5
+ pos: -118.5,35.5
parent: 2
- - uid: 7335
+ - uid: 9532
components:
- type: Transform
- pos: 87.5,-14.5
+ pos: -118.5,36.5
parent: 2
- - uid: 7336
+ - uid: 9533
components:
- type: Transform
- pos: 88.5,-14.5
+ pos: -118.5,37.5
parent: 2
- - uid: 7337
+ - uid: 9534
components:
- type: Transform
- pos: 89.5,-14.5
+ pos: -118.5,38.5
parent: 2
- - uid: 7338
+ - uid: 9535
components:
- type: Transform
- pos: 90.5,-14.5
+ pos: -118.5,39.5
parent: 2
- - uid: 7339
+ - uid: 9536
components:
- type: Transform
- pos: 91.5,-14.5
+ pos: -117.5,39.5
parent: 2
- - uid: 7340
+ - uid: 9537
components:
- type: Transform
- pos: 92.5,-14.5
+ pos: -116.5,39.5
parent: 2
- - uid: 7341
+ - uid: 9538
components:
- type: Transform
- pos: 93.5,-14.5
+ pos: -115.5,39.5
parent: 2
- - uid: 7342
+ - uid: 9539
components:
- type: Transform
- pos: 94.5,-14.5
+ pos: -114.5,39.5
parent: 2
- - uid: 7343
+ - uid: 9540
components:
- type: Transform
- pos: 94.5,-15.5
+ pos: -113.5,39.5
parent: 2
- - uid: 7344
+ - uid: 9541
components:
- type: Transform
- pos: 94.5,-16.5
+ pos: -113.5,38.5
parent: 2
- - uid: 7345
+ - uid: 9542
components:
- type: Transform
- pos: 94.5,-17.5
+ pos: -113.5,37.5
parent: 2
- - uid: 7346
+ - uid: 9543
components:
- type: Transform
- pos: 94.5,-18.5
+ pos: -113.5,36.5
parent: 2
- - uid: 7347
+ - uid: 9544
components:
- type: Transform
- pos: 94.5,-19.5
+ pos: -114.5,36.5
parent: 2
- - uid: 7348
+ - uid: 9545
components:
- type: Transform
- pos: 94.5,-20.5
+ pos: 64.5,25.5
parent: 2
- - uid: 7349
+ - uid: 9546
components:
- type: Transform
- pos: 94.5,-21.5
+ pos: 67.5,25.5
parent: 2
- - uid: 7350
+ - uid: 9547
components:
- type: Transform
- pos: 94.5,-22.5
+ pos: 62.5,25.5
parent: 2
- - uid: 7351
+ - uid: 9548
components:
- type: Transform
- pos: 94.5,-23.5
+ pos: -93.5,-4.5
parent: 2
- - uid: 7352
+ - uid: 9549
components:
- type: Transform
- pos: 94.5,-24.5
+ pos: -92.5,-4.5
parent: 2
- - uid: 7353
+ - uid: 9550
components:
- type: Transform
- pos: 94.5,-25.5
+ pos: -91.5,-4.5
parent: 2
- - uid: 7354
+ - uid: 9551
components:
- type: Transform
- pos: 93.5,-25.5
+ pos: -90.5,-4.5
parent: 2
- - uid: 7355
+ - uid: 9552
components:
- type: Transform
- pos: 92.5,-25.5
+ pos: -89.5,-4.5
parent: 2
- - uid: 7356
+ - uid: 9553
components:
- type: Transform
- pos: 91.5,-25.5
+ pos: -89.5,-5.5
parent: 2
- - uid: 7357
+ - uid: 9554
components:
- type: Transform
- pos: 90.5,-25.5
+ pos: -89.5,-6.5
parent: 2
- - uid: 7358
+ - uid: 9555
components:
- type: Transform
- pos: 89.5,-25.5
+ pos: -88.5,-6.5
parent: 2
- - uid: 7359
+ - uid: 9556
components:
- type: Transform
- pos: 88.5,-25.5
+ pos: -87.5,-6.5
parent: 2
- - uid: 7360
+ - uid: 9557
components:
- type: Transform
- pos: 87.5,-25.5
+ pos: -86.5,-6.5
parent: 2
- - uid: 7361
+ - uid: 9558
components:
- type: Transform
- pos: 86.5,-25.5
+ pos: -86.5,-5.5
parent: 2
- - uid: 7362
+ - uid: 9559
components:
- type: Transform
- pos: 85.5,-25.5
+ pos: -50.5,52.5
parent: 2
- - uid: 7363
+ - uid: 9560
components:
- type: Transform
- pos: 84.5,-25.5
+ pos: -50.5,51.5
parent: 2
- - uid: 7364
+ - uid: 9561
components:
- type: Transform
- pos: 84.5,-24.5
+ pos: -50.5,50.5
parent: 2
- - uid: 7365
+ - uid: 9562
components:
- type: Transform
- pos: 84.5,-23.5
+ pos: -50.5,49.5
parent: 2
- - uid: 7366
+ - uid: 9563
components:
- type: Transform
- pos: 84.5,-22.5
+ pos: -50.5,53.5
parent: 2
- - uid: 7367
+ - uid: 9564
components:
- type: Transform
- pos: 11.5,-59.5
+ pos: -51.5,51.5
parent: 2
- - uid: 7368
+ - uid: 9565
components:
- type: Transform
- pos: 10.5,-56.5
+ pos: -49.5,51.5
parent: 2
- - uid: 7369
+ - uid: 38734
components:
- type: Transform
- pos: 10.5,-57.5
- parent: 2
- - uid: 7370
+ pos: 0.5,2.5
+ parent: 38714
+ - uid: 38735
components:
- type: Transform
- pos: 10.5,-58.5
- parent: 2
- - uid: 7371
+ pos: 0.5,1.5
+ parent: 38714
+ - uid: 38736
components:
- type: Transform
- pos: 10.5,-59.5
- parent: 2
- - uid: 7372
+ pos: 1.5,1.5
+ parent: 38714
+ - uid: 38737
components:
- type: Transform
- pos: 12.5,-59.5
- parent: 2
- - uid: 7373
+ pos: 2.5,1.5
+ parent: 38714
+ - uid: 38738
components:
- type: Transform
- pos: 83.5,10.5
- parent: 2
- - uid: 7374
+ pos: 2.5,0.5
+ parent: 38714
+ - uid: 38739
components:
- type: Transform
- pos: -40.5,-55.5
- parent: 2
- - uid: 7375
+ pos: 3.5,0.5
+ parent: 38714
+ - uid: 38740
components:
- type: Transform
- pos: 83.5,13.5
- parent: 2
- - uid: 7376
+ pos: 3.5,-0.5
+ parent: 38714
+- proto: CableHVStack
+ entities:
+ - uid: 1060
components:
- type: Transform
- pos: 84.5,13.5
- parent: 2
- - uid: 7377
+ parent: 1057
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 9566
components:
- type: Transform
- pos: 85.5,13.5
+ pos: 11.523507,40.55153
parent: 2
- - uid: 7378
+ - uid: 9567
components:
- type: Transform
- pos: 86.5,13.5
+ pos: -57.551025,-13.380937
parent: 2
- - uid: 7379
+ - uid: 9568
components:
- type: Transform
- pos: 87.5,13.5
+ pos: -15.511915,-15.481583
parent: 2
- - uid: 7380
+ - uid: 9569
components:
- type: Transform
- pos: 88.5,13.5
+ pos: 56.5,-42.5
parent: 2
- - uid: 7381
+ - uid: 9570
components:
- type: Transform
- pos: 89.5,13.5
+ pos: -49.5,47.5
parent: 2
- - uid: 7382
+- proto: CableMV
+ entities:
+ - uid: 9571
components:
- type: Transform
- pos: 90.5,13.5
+ pos: -7.5,49.5
parent: 2
- - uid: 7383
+ - uid: 9572
components:
- type: Transform
- pos: 91.5,13.5
+ pos: -28.5,54.5
parent: 2
- - uid: 7384
+ - uid: 9573
components:
- type: Transform
- pos: 92.5,13.5
+ pos: 11.5,81.5
parent: 2
- - uid: 7385
+ - uid: 9574
components:
- type: Transform
- pos: 92.5,14.5
+ pos: -31.5,71.5
parent: 2
- - uid: 7386
+ - uid: 9575
components:
- type: Transform
- pos: 92.5,15.5
+ pos: -30.5,71.5
parent: 2
- - uid: 7387
+ - uid: 9576
components:
- type: Transform
- pos: 92.5,16.5
+ pos: -28.5,54.5
parent: 2
- - uid: 7388
+ - uid: 9577
components:
- type: Transform
- pos: 92.5,17.5
+ pos: -18.5,48.5
parent: 2
- - uid: 7389
+ - uid: 9578
components:
- type: Transform
- pos: 92.5,18.5
+ pos: -18.5,45.5
parent: 2
- - uid: 7390
+ - uid: 9579
components:
- type: Transform
- pos: 92.5,19.5
+ pos: -27.5,68.5
parent: 2
- - uid: 7391
+ - uid: 9580
components:
- type: Transform
- pos: 92.5,20.5
+ pos: -30.5,54.5
parent: 2
- - uid: 7392
+ - uid: 9581
components:
- type: Transform
- pos: 92.5,21.5
+ pos: -30.5,48.5
parent: 2
- - uid: 7393
+ - uid: 9582
components:
- type: Transform
- pos: 92.5,22.5
+ pos: -30.5,49.5
parent: 2
- - uid: 7394
+ - uid: 9583
components:
- type: Transform
- pos: 93.5,21.5
+ pos: -18.5,47.5
parent: 2
- - uid: 7395
+ - uid: 9584
components:
- type: Transform
- pos: 91.5,21.5
+ pos: -16.5,49.5
parent: 2
- - uid: 7396
+ - uid: 9585
components:
- type: Transform
- pos: 92.5,23.5
+ pos: -18.5,49.5
parent: 2
- - uid: 7397
+ - uid: 9586
components:
- type: Transform
- pos: 92.5,24.5
+ pos: -18.5,46.5
parent: 2
- - uid: 7398
+ - uid: 9587
components:
- type: Transform
- pos: 92.5,25.5
+ pos: -18.5,42.5
parent: 2
- - uid: 7399
+ - uid: 9588
components:
- type: Transform
- pos: 92.5,26.5
+ pos: -18.5,43.5
parent: 2
- - uid: 7400
+ - uid: 9589
components:
- type: Transform
- pos: -76.5,3.5
+ pos: -26.5,68.5
parent: 2
- - uid: 7401
+ - uid: 9590
components:
- type: Transform
- pos: -76.5,4.5
+ pos: -30.5,39.5
parent: 2
- - uid: 7402
+ - uid: 9591
components:
- type: Transform
- pos: -76.5,2.5
+ pos: 8.5,73.5
parent: 2
- - uid: 7403
+ - uid: 9592
components:
- type: Transform
- pos: -76.5,1.5
+ pos: -7.5,50.5
parent: 2
- - uid: 7404
+ - uid: 9593
components:
- type: Transform
- pos: -76.5,0.5
+ pos: -15.5,53.5
parent: 2
- - uid: 7405
+ - uid: 9594
components:
- type: Transform
- pos: -76.5,-0.5
+ pos: -15.5,51.5
parent: 2
- - uid: 7406
+ - uid: 9595
components:
- type: Transform
- pos: -76.5,-1.5
+ pos: -30.5,51.5
parent: 2
- - uid: 7407
+ - uid: 9596
components:
- type: Transform
- pos: -77.5,0.5
+ pos: 17.5,68.5
parent: 2
- - uid: 7408
+ - uid: 9597
components:
- type: Transform
- pos: -78.5,0.5
+ pos: -15.5,52.5
parent: 2
- - uid: 7409
+ - uid: 9598
components:
- type: Transform
- pos: -41.5,-55.5
+ pos: -18.5,31.5
parent: 2
- - uid: 7410
+ - uid: 9599
components:
- type: Transform
- pos: -40.5,-58.5
+ pos: -18.5,28.5
parent: 2
- - uid: 7411
+ - uid: 9600
components:
- type: Transform
- pos: -36.5,-58.5
+ pos: -18.5,29.5
parent: 2
- - uid: 7412
+ - uid: 9601
components:
- type: Transform
- pos: -36.5,-57.5
+ pos: -15.5,50.5
parent: 2
- - uid: 7413
+ - uid: 9602
components:
- type: Transform
- pos: -37.5,-57.5
+ pos: -25.5,68.5
parent: 2
- - uid: 7414
+ - uid: 9603
components:
- type: Transform
- pos: -38.5,-57.5
+ pos: -6.5,47.5
parent: 2
- - uid: 7415
+ - uid: 9604
components:
- type: Transform
- pos: -39.5,-57.5
+ pos: -17.5,49.5
parent: 2
- - uid: 7416
+ - uid: 9605
components:
- type: Transform
- pos: -40.5,-57.5
+ pos: -15.5,49.5
parent: 2
- - uid: 7417
+ - uid: 9606
components:
- type: Transform
- pos: -41.5,-58.5
+ pos: -7.5,51.5
parent: 2
- - uid: 7418
+ - uid: 9607
components:
- type: Transform
- pos: -42.5,-58.5
+ pos: -30.5,50.5
parent: 2
- - uid: 7419
+ - uid: 9608
components:
- type: Transform
- pos: 60.5,8.5
+ pos: 9.5,81.5
parent: 2
- - uid: 7420
+ - uid: 9609
components:
- type: Transform
- pos: 60.5,3.5
+ pos: -18.5,44.5
parent: 2
- - uid: 7421
+ - uid: 9610
components:
- type: Transform
- pos: 60.5,7.5
+ pos: -11.5,69.5
parent: 2
- - uid: 7422
+ - uid: 9611
components:
- type: Transform
- pos: 70.5,6.5
+ pos: -29.5,69.5
parent: 2
- - uid: 7423
+ - uid: 9612
components:
- type: Transform
- pos: 69.5,7.5
+ pos: -29.5,70.5
parent: 2
- - uid: 7424
+ - uid: 9613
components:
- type: Transform
- pos: 69.5,8.5
+ pos: -30.5,54.5
parent: 2
- - uid: 7425
+ - uid: 9614
components:
- type: Transform
- pos: 69.5,9.5
+ pos: -11.5,70.5
parent: 2
- - uid: 7426
+ - uid: 9615
components:
- type: Transform
- pos: 69.5,10.5
+ pos: -7.5,48.5
parent: 2
- - uid: 7427
+ - uid: 9616
components:
- type: Transform
- pos: 52.5,4.5
+ pos: -6.5,48.5
parent: 2
- - uid: 7428
+ - uid: 9617
components:
- type: Transform
- pos: 65.5,7.5
+ pos: -18.5,30.5
parent: 2
- - uid: 7429
+ - uid: 9618
components:
- type: Transform
- pos: 65.5,5.5
+ pos: -30.5,52.5
parent: 2
- - uid: 7430
+ - uid: 9619
components:
- type: Transform
- pos: 65.5,4.5
+ pos: -30.5,53.5
parent: 2
- - uid: 7431
+ - uid: 9620
components:
- type: Transform
- pos: 65.5,8.5
+ pos: -29.5,68.5
parent: 2
- - uid: 7432
+ - uid: 9621
components:
- type: Transform
- pos: 57.5,7.5
+ pos: 8.5,81.5
parent: 2
- - uid: 7433
+ - uid: 9622
components:
- type: Transform
- pos: 59.5,6.5
+ pos: -18.5,32.5
parent: 2
- - uid: 7434
+ - uid: 9623
components:
- type: Transform
- pos: 60.5,6.5
+ pos: -19.5,28.5
parent: 2
- - uid: 7435
+ - uid: 9624
components:
- type: Transform
- pos: -29.5,53.5
+ pos: -5.5,48.5
parent: 2
- - uid: 7436
+ - uid: 9625
components:
- type: Transform
- pos: -45.5,-5.5
+ pos: -30.5,44.5
parent: 2
- - uid: 7437
+ - uid: 9626
components:
- type: Transform
- pos: -45.5,-4.5
+ pos: -30.5,41.5
parent: 2
- - uid: 7438
+ - uid: 9627
components:
- type: Transform
- pos: -45.5,-3.5
+ pos: -18.5,35.5
parent: 2
- - uid: 7439
+ - uid: 9628
components:
- type: Transform
- pos: -41.5,-54.5
+ pos: -18.5,38.5
parent: 2
- - uid: 7440
+ - uid: 9629
components:
- type: Transform
- pos: -41.5,-53.5
+ pos: -18.5,37.5
parent: 2
- - uid: 7441
+ - uid: 9630
components:
- type: Transform
- pos: -41.5,-52.5
+ pos: -30.5,45.5
parent: 2
- - uid: 7442
+ - uid: 9631
components:
- type: Transform
- pos: -40.5,-76.5
+ pos: -18.5,36.5
parent: 2
- - uid: 7443
+ - uid: 9632
components:
- type: Transform
- pos: -40.5,-77.5
+ pos: -29.5,71.5
parent: 2
- - uid: 7444
+ - uid: 9633
components:
- type: Transform
- pos: -40.5,-78.5
+ pos: 73.5,15.5
parent: 2
- - uid: 7445
+ - uid: 9634
components:
- type: Transform
- pos: 91.5,3.5
+ pos: 10.5,-2.5
parent: 2
- - uid: 7446
+ - uid: 9635
components:
- type: Transform
- pos: 91.5,4.5
+ pos: 74.5,17.5
parent: 2
- - uid: 7447
+ - uid: 9636
components:
- type: Transform
- pos: 88.5,2.5
+ pos: 45.5,18.5
parent: 2
- - uid: 7448
+ - uid: 9637
components:
- type: Transform
- pos: 87.5,2.5
+ pos: 78.5,22.5
parent: 2
- - uid: 7449
+ - uid: 9638
components:
- type: Transform
- pos: 87.5,3.5
+ pos: 47.5,14.5
parent: 2
- - uid: 7450
+ - uid: 9639
components:
- type: Transform
- pos: 87.5,4.5
+ pos: 54.5,12.5
parent: 2
- - uid: 7451
+ - uid: 9640
components:
- type: Transform
- pos: 87.5,5.5
+ pos: 46.5,-3.5
parent: 2
- - uid: 7452
+ - uid: 9641
components:
- type: Transform
- pos: 87.5,6.5
+ pos: 47.5,0.5
parent: 2
- - uid: 7453
+ - uid: 9642
components:
- type: Transform
- pos: 87.5,1.5
+ pos: 46.5,0.5
parent: 2
- - uid: 7454
+ - uid: 9643
components:
- type: Transform
- pos: 87.5,0.5
+ pos: 47.5,5.5
parent: 2
- - uid: 7455
+ - uid: 9644
components:
- type: Transform
- pos: 87.5,-0.5
+ pos: 71.5,15.5
parent: 2
- - uid: 7456
+ - uid: 9645
components:
- type: Transform
- pos: 87.5,-1.5
+ pos: 69.5,16.5
parent: 2
- - uid: 7457
+ - uid: 9646
components:
- type: Transform
- pos: 87.5,-2.5
+ pos: -58.5,59.5
parent: 2
- - uid: 7458
+ - uid: 9647
components:
- type: Transform
- pos: 87.5,-3.5
+ pos: 55.5,13.5
parent: 2
- - uid: 7459
+ - uid: 9648
components:
- type: Transform
- pos: 86.5,-2.5
+ pos: 61.5,-0.5
parent: 2
- - uid: 7460
+ - uid: 9649
components:
- type: Transform
- pos: 85.5,-2.5
+ pos: 51.5,6.5
parent: 2
- - uid: 7461
+ - uid: 9650
components:
- type: Transform
- pos: 84.5,-2.5
+ pos: 10.5,-3.5
parent: 2
- - uid: 7462
+ - uid: 9651
components:
- type: Transform
- pos: 83.5,-2.5
+ pos: -56.5,19.5
parent: 2
- - uid: 7463
+ - uid: 9652
components:
- type: Transform
- pos: 82.5,-2.5
+ pos: 46.5,25.5
parent: 2
- - uid: 7464
+ - uid: 9653
components:
- type: Transform
- pos: 81.5,-2.5
+ pos: -39.5,-6.5
parent: 2
- - uid: 7465
+ - uid: 9654
components:
- type: Transform
- pos: 80.5,-2.5
+ pos: 39.5,21.5
parent: 2
- - uid: 7466
+ - uid: 9655
components:
- type: Transform
- pos: 80.5,-1.5
+ pos: -57.5,16.5
parent: 2
- - uid: 7467
+ - uid: 9656
components:
- type: Transform
- pos: 80.5,-0.5
+ pos: -62.5,-21.5
parent: 2
- - uid: 7468
+ - uid: 9657
components:
- type: Transform
- pos: 80.5,0.5
+ pos: 46.5,18.5
parent: 2
- - uid: 7469
+ - uid: 9658
components:
- type: Transform
- pos: 80.5,1.5
+ pos: 13.5,88.5
parent: 2
- - uid: 7470
+ - uid: 9659
components:
- type: Transform
- pos: 80.5,2.5
+ pos: 47.5,7.5
parent: 2
- - uid: 7471
+ - uid: 9660
components:
- type: Transform
- pos: 80.5,3.5
+ pos: 47.5,9.5
parent: 2
- - uid: 7472
+ - uid: 9661
components:
- type: Transform
- pos: 81.5,1.5
+ pos: 51.5,12.5
parent: 2
- - uid: 7473
+ - uid: 9662
components:
- type: Transform
- pos: 82.5,1.5
+ pos: 59.5,0.5
parent: 2
- - uid: 7474
+ - uid: 9663
components:
- type: Transform
- pos: 83.5,1.5
+ pos: -57.5,15.5
parent: 2
- - uid: 7475
+ - uid: 9664
components:
- type: Transform
- pos: 84.5,1.5
+ pos: 66.5,0.5
parent: 2
- - uid: 7476
+ - uid: 9665
components:
- type: Transform
- pos: 85.5,1.5
+ pos: -40.5,56.5
parent: 2
- - uid: 7477
+ - uid: 9666
components:
- type: Transform
- pos: 86.5,1.5
+ pos: 74.5,14.5
parent: 2
- - uid: 7478
+ - uid: 9667
components:
- type: Transform
- pos: 82.5,2.5
+ pos: 47.5,13.5
parent: 2
- - uid: 7479
+ - uid: 9668
components:
- type: Transform
- pos: 82.5,3.5
+ pos: 50.5,6.5
parent: 2
- - uid: 7480
+ - uid: 9669
components:
- type: Transform
- pos: 82.5,4.5
+ pos: 47.5,16.5
parent: 2
- - uid: 7481
+ - uid: 9670
components:
- type: Transform
- pos: 82.5,5.5
+ pos: 51.5,13.5
parent: 2
- - uid: 7482
+ - uid: 9671
components:
- type: Transform
- pos: 82.5,6.5
+ pos: -46.5,-40.5
parent: 2
- - uid: 7483
+ - uid: 9672
components:
- type: Transform
- pos: 83.5,5.5
+ pos: 39.5,24.5
parent: 2
- - uid: 7484
+ - uid: 9673
components:
- type: Transform
- pos: 84.5,5.5
+ pos: -47.5,-40.5
parent: 2
- - uid: 7485
+ - uid: 9674
components:
- type: Transform
- pos: 82.5,7.5
+ pos: 53.5,12.5
parent: 2
- - uid: 7486
+ - uid: 9675
components:
- type: Transform
- pos: 81.5,7.5
+ pos: -58.5,61.5
parent: 2
- - uid: 7487
+ - uid: 9676
components:
- type: Transform
- pos: 79.5,3.5
+ pos: -1.5,-6.5
parent: 2
- - uid: 7488
+ - uid: 9677
components:
- type: Transform
- pos: 78.5,3.5
+ pos: -49.5,40.5
parent: 2
- - uid: 7489
+ - uid: 9678
components:
- type: Transform
- pos: 77.5,3.5
+ pos: -2.5,-7.5
parent: 2
- - uid: 7490
+ - uid: 9679
components:
- type: Transform
- pos: 77.5,4.5
+ pos: -49.5,39.5
parent: 2
- - uid: 7491
+ - uid: 9680
components:
- type: Transform
- pos: 77.5,5.5
+ pos: 49.5,12.5
parent: 2
- - uid: 7492
+ - uid: 9681
components:
- type: Transform
- pos: 77.5,2.5
+ pos: 39.5,20.5
parent: 2
- - uid: 7493
+ - uid: 9682
components:
- type: Transform
- pos: 77.5,1.5
+ pos: 77.5,22.5
parent: 2
- - uid: 7494
+ - uid: 9683
components:
- type: Transform
- pos: 9.5,-77.5
+ pos: -46.5,-41.5
parent: 2
- - uid: 7495
+ - uid: 9684
components:
- type: Transform
- pos: 9.5,-78.5
+ pos: 61.5,-1.5
parent: 2
- - uid: 7496
+ - uid: 9685
components:
- type: Transform
- pos: 9.5,-79.5
+ pos: 76.5,22.5
parent: 2
- - uid: 7497
+ - uid: 9686
components:
- type: Transform
- pos: 54.5,23.5
+ pos: 47.5,11.5
parent: 2
- - uid: 7498
+ - uid: 9687
components:
- type: Transform
- pos: 55.5,23.5
+ pos: 74.5,19.5
parent: 2
- - uid: 7499
+ - uid: 9688
components:
- type: Transform
- pos: 49.5,16.5
+ pos: 51.5,8.5
parent: 2
- - uid: 7500
+ - uid: 9689
components:
- type: Transform
- pos: 46.5,20.5
+ pos: 45.5,19.5
parent: 2
- - uid: 7501
+ - uid: 9690
components:
- type: Transform
- pos: 46.5,21.5
+ pos: 12.5,-1.5
parent: 2
- - uid: 7502
+ - uid: 9691
components:
- type: Transform
- pos: 46.5,19.5
+ pos: 50.5,8.5
parent: 2
- - uid: 7503
+ - uid: 9692
components:
- type: Transform
- pos: 52.5,18.5
+ pos: 59.5,-3.5
parent: 2
- - uid: 7504
+ - uid: 9693
components:
- type: Transform
- pos: 52.5,17.5
+ pos: -80.5,-12.5
parent: 2
- - uid: 7505
+ - uid: 9694
components:
- type: Transform
- pos: 46.5,17.5
+ pos: 76.5,-1.5
parent: 2
- - uid: 7506
+ - uid: 9695
components:
- type: Transform
- pos: 46.5,18.5
+ pos: -79.5,-3.5
parent: 2
- - uid: 7507
+ - uid: 9696
components:
- type: Transform
- pos: 46.5,25.5
+ pos: 73.5,20.5
parent: 2
- - uid: 7508
+ - uid: 9697
components:
- type: Transform
- pos: 53.5,23.5
+ pos: 74.5,11.5
parent: 2
- - uid: 7509
+ - uid: 9698
components:
- type: Transform
- pos: 52.5,23.5
+ pos: -73.5,-6.5
parent: 2
- - uid: 7510
+ - uid: 9699
components:
- type: Transform
- pos: 51.5,23.5
+ pos: -58.5,60.5
parent: 2
- - uid: 7511
+ - uid: 9700
components:
- type: Transform
- pos: 50.5,23.5
+ pos: 6.5,-54.5
parent: 2
- - uid: 7512
+ - uid: 9701
components:
- type: Transform
- pos: 50.5,24.5
+ pos: 61.5,-2.5
parent: 2
- - uid: 7513
+ - uid: 9702
components:
- type: Transform
- pos: 50.5,22.5
+ pos: 54.5,28.5
parent: 2
- - uid: 7514
+ - uid: 9703
components:
- type: Transform
- pos: 51.5,-50.5
+ pos: 73.5,19.5
parent: 2
- - uid: 7515
+ - uid: 9704
components:
- type: Transform
- pos: -22.5,30.5
+ pos: 74.5,7.5
parent: 2
- - uid: 7516
+ - uid: 9705
components:
- type: Transform
- pos: -30.5,44.5
+ pos: 47.5,8.5
parent: 2
- - uid: 7517
+ - uid: 9706
components:
- type: Transform
- pos: -6.5,31.5
+ pos: 42.5,20.5
parent: 2
- - uid: 7518
+ - uid: 9707
components:
- type: Transform
- pos: -5.5,30.5
+ pos: 12.5,-3.5
parent: 2
- - uid: 7519
+ - uid: 9708
components:
- type: Transform
- pos: -8.5,27.5
+ pos: -79.5,-10.5
parent: 2
- - uid: 7520
+ - uid: 9709
components:
- type: Transform
- pos: -21.5,28.5
+ pos: -79.5,-11.5
parent: 2
- - uid: 7521
+ - uid: 9710
components:
- type: Transform
- pos: -30.5,45.5
+ pos: 53.5,0.5
parent: 2
- - uid: 7522
+ - uid: 9711
components:
- type: Transform
- pos: -30.5,41.5
+ pos: 52.5,0.5
parent: 2
- - uid: 7523
+ - uid: 9712
components:
- type: Transform
- pos: -30.5,43.5
+ pos: 7.5,-55.5
parent: 2
- - uid: 7524
+ - uid: 9713
components:
- type: Transform
- pos: -28.5,58.5
+ pos: 54.5,6.5
parent: 2
- - uid: 7525
+ - uid: 9714
components:
- type: Transform
- pos: -29.5,42.5
+ pos: 58.5,0.5
parent: 2
- - uid: 7526
+ - uid: 9715
components:
- type: Transform
- pos: -2.5,41.5
+ pos: 75.5,8.5
parent: 2
- - uid: 7527
+ - uid: 9716
components:
- type: Transform
- pos: -6.5,42.5
+ pos: -79.5,-4.5
parent: 2
- - uid: 7528
+ - uid: 9717
components:
- type: Transform
- pos: -7.5,41.5
+ pos: -81.5,-12.5
parent: 2
- - uid: 7529
+ - uid: 9718
components:
- type: Transform
- pos: -2.5,40.5
+ pos: -79.5,-12.5
parent: 2
- - uid: 7530
+ - uid: 9719
components:
- type: Transform
- pos: -9.5,41.5
+ pos: -46.5,-43.5
parent: 2
- - uid: 7531
+ - uid: 9720
components:
- type: Transform
- pos: -10.5,41.5
+ pos: -6.5,30.5
parent: 2
- - uid: 7532
+ - uid: 9721
components:
- type: Transform
- pos: -27.5,58.5
+ pos: 47.5,4.5
parent: 2
- - uid: 7533
+ - uid: 9722
components:
- type: Transform
- pos: -14.5,44.5
+ pos: 13.5,85.5
parent: 2
- - uid: 7534
+ - uid: 9723
components:
- type: Transform
- pos: -18.5,32.5
+ pos: -57.5,17.5
parent: 2
- - uid: 7535
+ - uid: 9724
components:
- type: Transform
- pos: -14.5,39.5
+ pos: -45.5,30.5
parent: 2
- - uid: 7536
+ - uid: 9725
components:
- type: Transform
- pos: 19.5,67.5
+ pos: -29.5,-45.5
parent: 2
- - uid: 7537
+ - uid: 9726
components:
- type: Transform
- pos: -18.5,29.5
+ pos: 6.5,36.5
parent: 2
- - uid: 7538
+ - uid: 9727
components:
- type: Transform
- pos: -14.5,36.5
+ pos: 5.5,38.5
parent: 2
- - uid: 7539
+ - uid: 9728
components:
- type: Transform
- pos: -14.5,38.5
+ pos: 5.5,36.5
parent: 2
- - uid: 7540
+ - uid: 9729
components:
- type: Transform
- pos: -18.5,31.5
+ pos: 12.5,-2.5
parent: 2
- - uid: 7541
+ - uid: 9730
components:
- type: Transform
- pos: -18.5,28.5
+ pos: 56.5,7.5
parent: 2
- - uid: 7542
+ - uid: 9731
components:
- type: Transform
- pos: -18.5,30.5
+ pos: 48.5,8.5
parent: 2
- - uid: 7543
+ - uid: 9732
components:
- type: Transform
- pos: -14.5,46.5
+ pos: 41.5,20.5
parent: 2
- - uid: 7544
+ - uid: 9733
components:
- type: Transform
- pos: -14.5,40.5
+ pos: 72.5,15.5
parent: 2
- - uid: 7545
+ - uid: 9734
components:
- type: Transform
- pos: -14.5,45.5
+ pos: 53.5,10.5
parent: 2
- - uid: 7546
+ - uid: 9735
components:
- type: Transform
- pos: -8.5,68.5
+ pos: 50.5,12.5
parent: 2
- - uid: 7547
+ - uid: 9736
components:
- type: Transform
- pos: -14.5,37.5
+ pos: 74.5,12.5
parent: 2
- - uid: 7548
+ - uid: 9737
components:
- type: Transform
- pos: -14.5,45.5
+ pos: 62.5,25.5
parent: 2
- - uid: 7549
+ - uid: 9738
components:
- type: Transform
- pos: -18.5,33.5
+ pos: 44.5,-4.5
parent: 2
- - uid: 7550
+ - uid: 9739
components:
- type: Transform
- pos: -6.5,30.5
+ pos: 51.5,7.5
parent: 2
- - uid: 7551
+ - uid: 9740
components:
- type: Transform
- pos: -10.5,32.5
+ pos: 47.5,2.5
parent: 2
- - uid: 7552
+ - uid: 9741
components:
- type: Transform
- pos: -14.5,41.5
+ pos: 55.5,6.5
parent: 2
- - uid: 7553
+ - uid: 9742
components:
- type: Transform
- pos: -22.5,38.5
+ pos: 74.5,6.5
parent: 2
- - uid: 7554
+ - uid: 9743
components:
- type: Transform
- pos: -18.5,64.5
+ pos: 74.5,8.5
parent: 2
- - uid: 7555
+ - uid: 9744
components:
- type: Transform
- pos: 19.5,67.5
+ pos: 57.5,-1.5
parent: 2
- - uid: 7556
+ - uid: 9745
components:
- type: Transform
- pos: 20.5,67.5
+ pos: 57.5,-5.5
parent: 2
- - uid: 7557
+ - uid: 9746
components:
- type: Transform
- pos: -18.5,68.5
+ pos: 39.5,22.5
parent: 2
- - uid: 7558
+ - uid: 9747
components:
- type: Transform
- pos: -4.5,64.5
+ pos: 78.5,24.5
parent: 2
- - uid: 7559
+ - uid: 9748
components:
- type: Transform
- pos: -6.5,47.5
+ pos: 44.5,20.5
parent: 2
- - uid: 7560
+ - uid: 9749
components:
- type: Transform
- pos: -4.5,60.5
+ pos: 74.5,9.5
parent: 2
- - uid: 7561
+ - uid: 9750
components:
- type: Transform
- pos: -18.5,67.5
+ pos: 61.5,-3.5
parent: 2
- - uid: 7562
+ - uid: 9751
components:
- type: Transform
- pos: -22.5,40.5
+ pos: -62.5,-28.5
parent: 2
- - uid: 7563
+ - uid: 9752
components:
- type: Transform
- pos: -4.5,61.5
+ pos: 51.5,-48.5
parent: 2
- - uid: 7564
+ - uid: 9753
components:
- type: Transform
- pos: -22.5,45.5
+ pos: 52.5,-48.5
parent: 2
- - uid: 7565
+ - uid: 9754
components:
- type: Transform
- pos: -22.5,36.5
+ pos: 70.5,15.5
parent: 2
- - uid: 7566
+ - uid: 9755
components:
- type: Transform
- pos: -22.5,39.5
+ pos: -70.5,-6.5
parent: 2
- - uid: 7567
+ - uid: 9756
components:
- type: Transform
- pos: -18.5,66.5
+ pos: -46.5,-42.5
parent: 2
- - uid: 7568
+ - uid: 9757
components:
- type: Transform
- pos: -4.5,65.5
+ pos: 46.5,22.5
parent: 2
- - uid: 7569
+ - uid: 9758
components:
- type: Transform
- pos: -22.5,37.5
+ pos: 5.5,37.5
parent: 2
- - uid: 7570
+ - uid: 9759
components:
- type: Transform
- pos: -22.5,44.5
+ pos: 55.5,-50.5
parent: 2
- - uid: 7571
+ - uid: 9760
components:
- type: Transform
- pos: -4.5,66.5
+ pos: -1.5,-7.5
parent: 2
- - uid: 7572
+ - uid: 9761
components:
- type: Transform
- pos: -16.5,68.5
+ pos: -57.5,18.5
parent: 2
- - uid: 7573
+ - uid: 9762
components:
- type: Transform
- pos: -18.5,65.5
+ pos: 49.5,8.5
parent: 2
- - uid: 7574
+ - uid: 9763
components:
- type: Transform
- pos: -14.5,43.5
+ pos: 56.5,1.5
parent: 2
- - uid: 7575
+ - uid: 9764
components:
- type: Transform
- pos: -18.5,36.5
+ pos: 53.5,9.5
parent: 2
- - uid: 7576
+ - uid: 9765
components:
- type: Transform
- pos: -18.5,37.5
+ pos: 74.5,22.5
parent: 2
- - uid: 7577
+ - uid: 9766
components:
- type: Transform
- pos: -4.5,62.5
+ pos: 62.5,0.5
parent: 2
- - uid: 7578
+ - uid: 9767
components:
- type: Transform
- pos: -18.5,43.5
+ pos: 53.5,8.5
parent: 2
- - uid: 7579
+ - uid: 9768
components:
- type: Transform
- pos: -18.5,41.5
+ pos: 56.5,0.5
parent: 2
- - uid: 7580
+ - uid: 9769
components:
- type: Transform
- pos: -18.5,39.5
+ pos: 27.5,29.5
parent: 2
- - uid: 7581
+ - uid: 9770
components:
- type: Transform
- pos: 22.5,67.5
+ pos: 56.5,6.5
parent: 2
- - uid: 7582
+ - uid: 9771
components:
- type: Transform
- pos: -16.5,70.5
+ pos: -45.5,-45.5
parent: 2
- - uid: 7583
+ - uid: 9772
components:
- type: Transform
- pos: -16.5,69.5
+ pos: 75.5,22.5
parent: 2
- - uid: 7584
+ - uid: 9773
components:
- type: Transform
- pos: -18.5,46.5
+ pos: 61.5,0.5
parent: 2
- - uid: 7585
+ - uid: 9774
components:
- type: Transform
- pos: -18.5,47.5
+ pos: 47.5,6.5
parent: 2
- - uid: 7586
+ - uid: 9775
components:
- type: Transform
- pos: -18.5,49.5
+ pos: 74.5,4.5
parent: 2
- - uid: 7587
+ - uid: 9776
components:
- type: Transform
- pos: -18.5,63.5
+ pos: 74.5,5.5
parent: 2
- - uid: 7588
+ - uid: 9777
components:
- type: Transform
- pos: -15.5,41.5
+ pos: 47.5,18.5
parent: 2
- - uid: 7589
+ - uid: 9778
components:
- type: Transform
- pos: -16.5,41.5
+ pos: -46.5,-45.5
parent: 2
- - uid: 7590
+ - uid: 9779
components:
- type: Transform
- pos: -13.5,30.5
+ pos: -61.5,-29.5
parent: 2
- - uid: 7591
+ - uid: 9780
components:
- type: Transform
- pos: -18.5,44.5
+ pos: 74.5,18.5
parent: 2
- - uid: 7592
+ - uid: 9781
components:
- type: Transform
- pos: -18.5,45.5
+ pos: 63.5,0.5
parent: 2
- - uid: 7593
+ - uid: 9782
components:
- type: Transform
- pos: -18.5,35.5
+ pos: 69.5,15.5
parent: 2
- - uid: 7594
+ - uid: 9783
components:
- type: Transform
- pos: -18.5,34.5
+ pos: -39.5,-4.5
parent: 2
- - uid: 7595
+ - uid: 9784
components:
- type: Transform
- pos: -18.5,40.5
+ pos: 47.5,15.5
parent: 2
- - uid: 7596
+ - uid: 9785
components:
- type: Transform
- pos: -18.5,38.5
+ pos: 55.5,12.5
parent: 2
- - uid: 7597
+ - uid: 9786
components:
- type: Transform
- pos: -18.5,42.5
+ pos: 52.5,12.5
parent: 2
- - uid: 7598
+ - uid: 9787
components:
- type: Transform
- pos: -28.5,55.5
+ pos: 47.5,10.5
parent: 2
- - uid: 7599
+ - uid: 9788
components:
- type: Transform
- pos: -22.5,31.5
+ pos: 65.5,0.5
parent: 2
- - uid: 7600
+ - uid: 9789
components:
- type: Transform
- pos: -7.5,27.5
+ pos: -62.5,-31.5
parent: 2
- - uid: 7601
+ - uid: 9790
components:
- type: Transform
- pos: -31.5,71.5
+ pos: 57.5,-3.5
parent: 2
- - uid: 7602
+ - uid: 9791
components:
- type: Transform
- pos: 7.5,73.5
+ pos: 72.5,15.5
parent: 2
- - uid: 7603
+ - uid: 9792
components:
- type: Transform
- pos: -5.5,50.5
+ pos: 55.5,0.5
parent: 2
- - uid: 7604
+ - uid: 9793
components:
- type: Transform
- pos: -15.5,49.5
+ pos: 56.5,-50.5
parent: 2
- - uid: 7605
+ - uid: 9794
components:
- type: Transform
- pos: -15.5,35.5
+ pos: 56.5,-49.5
parent: 2
- - uid: 7606
+ - uid: 9795
components:
- type: Transform
- pos: -19.5,41.5
+ pos: 56.5,-48.5
parent: 2
- - uid: 7607
+ - uid: 9796
components:
- type: Transform
- pos: -11.5,41.5
+ pos: -46.5,-44.5
parent: 2
- - uid: 7608
+ - uid: 9797
components:
- type: Transform
- pos: -22.5,34.5
+ pos: 53.5,-48.5
parent: 2
- - uid: 7609
+ - uid: 9798
components:
- type: Transform
- pos: -4.5,63.5
+ pos: 54.5,-48.5
parent: 2
- - uid: 7610
+ - uid: 9799
components:
- type: Transform
- pos: -28.5,77.5
+ pos: 55.5,-48.5
parent: 2
- - uid: 7611
+ - uid: 9800
components:
- type: Transform
- pos: 19.5,66.5
+ pos: 57.5,25.5
parent: 2
- - uid: 7612
+ - uid: 9801
components:
- type: Transform
- pos: 21.5,67.5
+ pos: 68.5,25.5
parent: 2
- - uid: 7613
+ - uid: 9802
components:
- type: Transform
- pos: 23.5,67.5
+ pos: -98.5,-9.5
parent: 2
- - uid: 38711
+ - uid: 9803
components:
- type: Transform
- pos: -30.5,39.5
+ pos: -63.5,-24.5
parent: 2
- - uid: 38721
+ - uid: 9804
components:
- type: Transform
- pos: 2.5,2.5
- parent: 38714
- - uid: 38722
+ pos: 69.5,24.5
+ parent: 2
+ - uid: 9805
components:
- type: Transform
- pos: 2.5,1.5
- parent: 38714
- - uid: 38723
+ pos: 12.5,33.5
+ parent: 2
+ - uid: 9806
components:
- type: Transform
- pos: 2.5,0.5
- parent: 38714
- - uid: 38724
+ pos: -31.5,-54.5
+ parent: 2
+ - uid: 9807
components:
- type: Transform
- pos: 1.5,0.5
- parent: 38714
- - uid: 38725
+ pos: 69.5,25.5
+ parent: 2
+ - uid: 9808
components:
- type: Transform
- pos: 0.5,0.5
- parent: 38714
- - uid: 38726
+ pos: -98.5,-5.5
+ parent: 2
+ - uid: 9809
components:
- type: Transform
- pos: 1.5,3.5
- parent: 38714
- - uid: 38727
+ pos: 27.5,27.5
+ parent: 2
+ - uid: 9810
components:
- type: Transform
- pos: 1.5,4.5
- parent: 38714
- - uid: 38728
+ pos: 27.5,28.5
+ parent: 2
+ - uid: 9811
components:
- type: Transform
- pos: -0.5,0.5
- parent: 38714
- - uid: 38729
+ pos: 83.5,9.5
+ parent: 2
+ - uid: 9812
components:
- type: Transform
- pos: 3.5,0.5
- parent: 38714
- - uid: 38730
+ pos: 61.5,21.5
+ parent: 2
+ - uid: 9813
components:
- type: Transform
- pos: 0.5,3.5
- parent: 38714
- - uid: 38731
+ pos: 28.5,31.5
+ parent: 2
+ - uid: 9814
components:
- type: Transform
- pos: 2.5,3.5
- parent: 38714
- - uid: 38732
+ pos: 57.5,26.5
+ parent: 2
+ - uid: 9815
components:
- type: Transform
- pos: 1.5,-0.5
- parent: 38714
- - uid: 38733
+ pos: 55.5,28.5
+ parent: 2
+ - uid: 9816
components:
- type: Transform
- pos: 1.5,-1.5
- parent: 38714
-- proto: CableApcStack
- entities:
- - uid: 1059
+ pos: 74.5,3.5
+ parent: 2
+ - uid: 9817
components:
- type: Transform
- parent: 1057
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 7614
+ pos: 56.5,28.5
+ parent: 2
+ - uid: 9818
components:
- type: Transform
- pos: -45.54966,-12.418917
+ pos: -98.5,-8.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 7615
+ - uid: 9819
components:
- type: Transform
- pos: -28.5,15.5
+ pos: 27.5,30.5
parent: 2
- - uid: 7616
+ - uid: 9820
components:
- type: Transform
- pos: -32.5,12.5
+ pos: 27.5,26.5
parent: 2
- - uid: 7617
+ - uid: 9821
components:
- type: Transform
- pos: -57.515583,-13.27468
+ pos: -98.5,-7.5
parent: 2
- - uid: 7618
+ - uid: 9822
components:
- type: Transform
- pos: -44.46949,5.4162817
+ pos: 28.5,30.5
parent: 2
- - uid: 7619
+ - uid: 9823
components:
- type: Transform
- pos: -9.5,-31.5
+ pos: -98.5,-6.5
parent: 2
- - uid: 7620
+ - uid: 9824
components:
- type: Transform
- pos: -6.5,-39.5
+ pos: -97.5,-1.5
parent: 2
- - uid: 7621
+ - uid: 9825
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.6078897,-47.40458
+ pos: -63.5,-23.5
parent: 2
- - uid: 7622
+ - uid: 9826
components:
- type: Transform
- pos: 12.4981985,82.59618
+ pos: 46.5,-4.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 7623
+ - uid: 9827
components:
- type: Transform
- pos: -61.497593,-47.552303
+ pos: 45.5,20.5
parent: 2
- - uid: 7624
+ - uid: 9828
components:
- type: Transform
- pos: -36.5,-75.5
+ pos: 59.5,24.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 7625
+ - uid: 9829
components:
- type: Transform
- pos: -79.402534,-8.605592
+ pos: 59.5,25.5
parent: 2
- - uid: 7626
+ - uid: 9830
components:
- type: Transform
- pos: -38.507664,15.744807
+ pos: 59.5,25.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 7627
+ - uid: 9831
components:
- type: Transform
- pos: 0.6408134,44.49488
+ pos: 60.5,25.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 7628
+ - uid: 9832
components:
- type: Transform
- pos: 21.512995,72.57933
+ pos: -42.5,-46.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 7629
+ - uid: 9833
components:
- type: Transform
- pos: 2.5825934,-31.27631
+ pos: -46.5,30.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 7630
+ - uid: 9834
components:
- type: Transform
- pos: 55.361206,-47.377773
+ pos: -13.5,-55.5
parent: 2
- - uid: 7631
+ - uid: 9835
components:
- type: Transform
- pos: -59.544273,54.0987
+ pos: 47.5,1.5
parent: 2
-- proto: CableApcStack1
- entities:
- - uid: 7632
+ - uid: 9836
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.537243,-66.47184
+ pos: -96.5,-1.5
parent: 2
-- proto: CablecuffsBroken
- entities:
- - uid: 7633
+ - uid: 9837
components:
- type: Transform
- pos: -38.590115,0.39123595
+ pos: -94.5,-1.5
parent: 2
- - uid: 7634
+ - uid: 9838
components:
- type: Transform
- pos: -36.569214,0.9812069
+ pos: -95.5,-1.5
parent: 2
-- proto: CableHV
- entities:
- - uid: 7635
+ - uid: 9839
components:
- type: Transform
- pos: -53.5,15.5
+ pos: -90.5,-2.5
parent: 2
- - uid: 7636
+ - uid: 9840
components:
- type: Transform
- pos: -0.5,-44.5
+ pos: -50.5,39.5
parent: 2
- - uid: 7637
+ - uid: 9841
components:
- type: Transform
- pos: -45.5,4.5
+ pos: -94.5,-2.5
parent: 2
- - uid: 7638
+ - uid: 9842
components:
- type: Transform
- pos: -46.5,4.5
+ pos: -85.5,-1.5
parent: 2
- - uid: 7639
+ - uid: 9843
components:
- type: Transform
- pos: 9.5,11.5
+ pos: -42.5,-48.5
parent: 2
- - uid: 7640
+ - uid: 9844
components:
- type: Transform
- pos: 11.5,-1.5
+ pos: -36.5,-48.5
parent: 2
- - uid: 7641
+ - uid: 9845
components:
- type: Transform
- pos: -0.5,-47.5
+ pos: -71.5,-6.5
parent: 2
- - uid: 7642
+ - uid: 9846
components:
- type: Transform
- pos: -58.5,64.5
+ pos: -34.5,-48.5
parent: 2
- - uid: 7643
+ - uid: 9847
components:
- type: Transform
- pos: -51.5,-3.5
+ pos: 58.5,24.5
parent: 2
- - uid: 7644
+ - uid: 9848
components:
- type: Transform
- pos: -42.5,32.5
+ pos: 57.5,24.5
parent: 2
- - uid: 7645
+ - uid: 9849
components:
- type: Transform
- pos: -43.5,32.5
+ pos: 64.5,0.5
parent: 2
- - uid: 7646
+ - uid: 9850
components:
- type: Transform
- pos: 10.5,7.5
+ pos: 57.5,27.5
parent: 2
- - uid: 7647
+ - uid: 9851
components:
- type: Transform
- pos: -58.5,66.5
+ pos: 57.5,28.5
parent: 2
- - uid: 7648
+ - uid: 9852
components:
- type: Transform
- pos: -58.5,62.5
+ pos: 53.5,28.5
parent: 2
- - uid: 7649
+ - uid: 9853
components:
- type: Transform
- pos: -58.5,65.5
+ pos: 74.5,10.5
parent: 2
- - uid: 7650
+ - uid: 9854
components:
- type: Transform
- pos: -0.5,-55.5
+ pos: 47.5,3.5
parent: 2
- - uid: 7651
+ - uid: 9855
components:
- type: Transform
- pos: -0.5,-45.5
+ pos: 53.5,29.5
parent: 2
- - uid: 7652
+ - uid: 9856
components:
- type: Transform
- pos: -0.5,-46.5
+ pos: 57.5,-0.5
parent: 2
- - uid: 7653
+ - uid: 9857
components:
- type: Transform
- pos: -57.5,63.5
+ pos: 48.5,0.5
parent: 2
- - uid: 7654
+ - uid: 9858
components:
- type: Transform
- pos: -58.5,63.5
+ pos: 56.5,2.5
parent: 2
- - uid: 7655
+ - uid: 9859
components:
- type: Transform
- pos: -61.5,-23.5
+ pos: 57.5,-4.5
parent: 2
- - uid: 7656
+ - uid: 9860
components:
- type: Transform
- pos: -42.5,-44.5
+ pos: 79.5,9.5
parent: 2
- - uid: 7657
+ - uid: 9861
components:
- type: Transform
- pos: -33.5,-50.5
+ pos: 53.5,30.5
parent: 2
- - uid: 7658
+ - uid: 9862
components:
- type: Transform
- pos: -29.5,23.5
+ pos: -41.5,-48.5
parent: 2
- - uid: 7659
+ - uid: 9863
components:
- type: Transform
- pos: 4.5,17.5
+ pos: -39.5,-5.5
parent: 2
- - uid: 7660
+ - uid: 9864
components:
- type: Transform
- pos: -53.5,2.5
+ pos: -38.5,-48.5
parent: 2
- - uid: 7661
+ - uid: 9865
components:
- type: Transform
- pos: -45.5,0.5
+ pos: 57.5,0.5
parent: 2
- - uid: 7662
+ - uid: 9866
components:
- type: Transform
- pos: -4.5,-63.5
+ pos: 27.5,-37.5
parent: 2
- - uid: 7663
+ - uid: 9867
components:
- type: Transform
- pos: -19.5,-61.5
+ pos: -26.5,-77.5
parent: 2
- - uid: 7664
+ - uid: 9868
components:
- type: Transform
- pos: -61.5,-26.5
+ pos: -35.5,-48.5
parent: 2
- - uid: 7665
+ - uid: 9869
components:
- type: Transform
- pos: -0.5,-50.5
+ pos: 11.5,-3.5
parent: 2
- - uid: 7666
+ - uid: 9870
components:
- type: Transform
- pos: -51.5,-2.5
+ pos: 49.5,0.5
parent: 2
- - uid: 7667
+ - uid: 9871
components:
- type: Transform
- pos: 0.5,33.5
+ pos: 40.5,20.5
parent: 2
- - uid: 7668
+ - uid: 9872
components:
- type: Transform
- pos: -1.5,34.5
+ pos: 77.5,-1.5
parent: 2
- - uid: 7669
+ - uid: 9873
components:
- type: Transform
- pos: -27.5,25.5
+ pos: -39.5,-48.5
parent: 2
- - uid: 7670
+ - uid: 9874
components:
- type: Transform
- pos: 0.5,34.5
+ pos: -72.5,-6.5
parent: 2
- - uid: 7671
+ - uid: 9875
components:
- type: Transform
- pos: -45.5,2.5
+ pos: -40.5,-48.5
parent: 2
- - uid: 7672
+ - uid: 9876
components:
- type: Transform
- pos: -58.5,55.5
+ pos: 74.5,16.5
parent: 2
- - uid: 7673
+ - uid: 9877
components:
- type: Transform
- pos: 49.5,-0.5
+ pos: 74.5,15.5
parent: 2
- - uid: 7674
+ - uid: 9878
components:
- type: Transform
- pos: -58.5,54.5
+ pos: -37.5,-48.5
parent: 2
- - uid: 7675
+ - uid: 9879
components:
- type: Transform
- pos: -35.5,35.5
+ pos: 53.5,11.5
parent: 2
- - uid: 7676
+ - uid: 9880
components:
- type: Transform
- pos: -57.5,61.5
+ pos: 47.5,12.5
parent: 2
- - uid: 7677
+ - uid: 9881
components:
- type: Transform
- pos: -54.5,-31.5
+ pos: 74.5,13.5
parent: 2
- - uid: 7678
+ - uid: 9882
components:
- type: Transform
- pos: 8.5,5.5
+ pos: -55.5,19.5
parent: 2
- - uid: 7679
+ - uid: 9883
components:
- type: Transform
- pos: 57.5,-40.5
+ pos: -42.5,-47.5
parent: 2
- - uid: 7680
+ - uid: 9884
components:
- type: Transform
- pos: -35.5,32.5
+ pos: -58.5,50.5
parent: 2
- - uid: 7681
+ - uid: 9885
components:
- type: Transform
- pos: 10.5,38.5
+ pos: 57.5,-2.5
parent: 2
- - uid: 7682
+ - uid: 9886
components:
- type: Transform
- pos: 9.5,37.5
+ pos: 50.5,0.5
parent: 2
- - uid: 7683
+ - uid: 9887
components:
- type: Transform
- pos: -24.5,-61.5
+ pos: 47.5,17.5
parent: 2
- - uid: 7684
+ - uid: 9888
components:
- type: Transform
- pos: 47.5,-3.5
+ pos: -58.5,15.5
parent: 2
- - uid: 7685
+ - uid: 9889
components:
- type: Transform
- pos: 64.5,-0.5
+ pos: -57.5,19.5
parent: 2
- - uid: 7686
+ - uid: 9890
components:
- type: Transform
- pos: -47.5,39.5
+ pos: -98.5,-10.5
parent: 2
- - uid: 7687
+ - uid: 9891
components:
- type: Transform
- pos: -49.5,0.5
+ pos: 51.5,0.5
parent: 2
- - uid: 7688
+ - uid: 9892
components:
- type: Transform
- pos: -35.5,27.5
+ pos: -92.5,-13.5
parent: 2
- - uid: 7689
+ - uid: 9893
components:
- type: Transform
- pos: -52.5,0.5
+ pos: -95.5,-13.5
parent: 2
- - uid: 7690
+ - uid: 9894
components:
- type: Transform
- pos: -28.5,-54.5
+ pos: -90.5,-13.5
parent: 2
- - uid: 7691
+ - uid: 9895
components:
- type: Transform
- pos: -51.5,0.5
+ pos: -94.5,-13.5
parent: 2
- - uid: 7692
+ - uid: 9896
components:
- type: Transform
- pos: -54.5,-28.5
+ pos: -89.5,-13.5
parent: 2
- - uid: 7693
+ - uid: 9897
components:
- type: Transform
- pos: -26.5,25.5
+ pos: -88.5,-13.5
parent: 2
- - uid: 7694
+ - uid: 9898
components:
- type: Transform
- pos: -0.5,-48.5
+ pos: -94.5,-12.5
parent: 2
- - uid: 7695
+ - uid: 9899
components:
- type: Transform
- pos: 4.5,18.5
+ pos: -90.5,-12.5
parent: 2
- - uid: 7696
+ - uid: 9900
components:
- type: Transform
- pos: -28.5,-41.5
+ pos: 63.5,25.5
parent: 2
- - uid: 7697
+ - uid: 9901
components:
- type: Transform
- pos: -51.5,4.5
+ pos: 78.5,9.5
parent: 2
- - uid: 7698
+ - uid: 9902
components:
- type: Transform
- pos: -58.5,61.5
+ pos: -47.5,30.5
parent: 2
- - uid: 7699
+ - uid: 9903
components:
- type: Transform
- pos: -35.5,33.5
+ pos: -60.5,-8.5
parent: 2
- - uid: 7700
+ - uid: 9904
components:
- type: Transform
- pos: -28.5,-43.5
+ pos: 81.5,9.5
parent: 2
- - uid: 7701
+ - uid: 9905
components:
- type: Transform
- pos: -17.5,-61.5
+ pos: 64.5,25.5
parent: 2
- - uid: 7702
+ - uid: 9906
components:
- type: Transform
- pos: -11.5,-61.5
+ pos: 65.5,25.5
parent: 2
- - uid: 7703
+ - uid: 9907
components:
- type: Transform
- pos: -60.5,63.5
+ pos: 78.5,23.5
parent: 2
- - uid: 7704
+ - uid: 9908
components:
- type: Transform
- pos: -35.5,30.5
+ pos: 73.5,21.5
parent: 2
- - uid: 7705
+ - uid: 9909
components:
- type: Transform
- pos: -51.5,2.5
+ pos: 13.5,87.5
parent: 2
- - uid: 7706
+ - uid: 9910
components:
- type: Transform
- pos: 77.5,-0.5
+ pos: -86.5,-1.5
parent: 2
- - uid: 7707
+ - uid: 9911
components:
- type: Transform
- pos: -54.5,-22.5
+ pos: -87.5,-1.5
parent: 2
- - uid: 7708
+ - uid: 9912
components:
- type: Transform
- pos: -28.5,25.5
+ pos: -55.5,44.5
parent: 2
- - uid: 7709
+ - uid: 9913
components:
- type: Transform
- pos: -23.5,-61.5
+ pos: -88.5,-1.5
parent: 2
- - uid: 7710
+ - uid: 9914
components:
- type: Transform
- pos: -28.5,-50.5
+ pos: -89.5,-1.5
parent: 2
- - uid: 7711
+ - uid: 9915
components:
- type: Transform
- pos: -57.5,2.5
+ pos: -90.5,-1.5
parent: 2
- - uid: 7712
+ - uid: 9916
components:
- type: Transform
- pos: -59.5,2.5
+ pos: -92.5,-1.5
parent: 2
- - uid: 7713
+ - uid: 9917
components:
- type: Transform
- pos: -60.5,2.5
+ pos: -91.5,-1.5
parent: 2
- - uid: 7714
+ - uid: 9918
components:
- type: Transform
- pos: 0.5,36.5
+ pos: 69.5,17.5
parent: 2
- - uid: 7715
+ - uid: 9919
components:
- type: Transform
- pos: -1.5,31.5
+ pos: -13.5,-53.5
parent: 2
- - uid: 7716
+ - uid: 9920
components:
- type: Transform
- pos: 59.5,-0.5
+ pos: -93.5,-1.5
parent: 2
- - uid: 7717
+ - uid: 9921
components:
- type: Transform
- pos: -39.5,-4.5
+ pos: -98.5,-2.5
parent: 2
- - uid: 7718
+ - uid: 9922
components:
- type: Transform
- pos: -25.5,-61.5
+ pos: -98.5,-1.5
parent: 2
- - uid: 7719
+ - uid: 9923
components:
- type: Transform
- pos: -28.5,-48.5
+ pos: -98.5,-3.5
parent: 2
- - uid: 7720
+ - uid: 9924
components:
- type: Transform
- pos: -33.5,-48.5
+ pos: -98.5,-11.5
parent: 2
- - uid: 7721
+ - uid: 9925
components:
- type: Transform
- pos: -18.5,-61.5
+ pos: 55.5,14.5
parent: 2
- - uid: 7722
+ - uid: 9926
components:
- type: Transform
- pos: -35.5,26.5
+ pos: -98.5,-12.5
parent: 2
- - uid: 7723
+ - uid: 9927
components:
- type: Transform
- pos: -12.5,-61.5
+ pos: -98.5,-4.5
parent: 2
- - uid: 7724
+ - uid: 9928
components:
- type: Transform
- pos: -22.5,-61.5
+ pos: -84.5,-1.5
parent: 2
- - uid: 7725
+ - uid: 9929
components:
- type: Transform
- pos: -2.5,31.5
+ pos: -83.5,-1.5
parent: 2
- - uid: 7726
+ - uid: 9930
components:
- type: Transform
- pos: -13.5,-61.5
+ pos: -83.5,-13.5
parent: 2
- - uid: 7727
+ - uid: 9931
components:
- type: Transform
- pos: -42.5,-41.5
+ pos: -18.5,41.5
parent: 2
- - uid: 7728
+ - uid: 9932
components:
- type: Transform
- pos: -35.5,29.5
+ pos: -98.5,-13.5
parent: 2
- - uid: 7729
+ - uid: 9933
components:
- type: Transform
- pos: -51.5,2.5
+ pos: -97.5,-13.5
parent: 2
- - uid: 7730
+ - uid: 9934
components:
- type: Transform
- pos: -0.5,-54.5
+ pos: -96.5,-13.5
parent: 2
- - uid: 7731
+ - uid: 9935
components:
- type: Transform
- pos: -42.5,-43.5
+ pos: 46.5,21.5
parent: 2
- - uid: 7732
+ - uid: 9936
components:
- type: Transform
- pos: -28.5,-34.5
+ pos: -91.5,-13.5
parent: 2
- - uid: 7733
+ - uid: 9937
components:
- type: Transform
- pos: -0.5,-42.5
+ pos: -93.5,-13.5
parent: 2
- - uid: 7734
+ - uid: 9938
components:
- type: Transform
- pos: -33.5,-51.5
+ pos: -29.5,-40.5
parent: 2
- - uid: 7735
+ - uid: 9939
components:
- type: Transform
- pos: -53.5,-3.5
+ pos: -87.5,-13.5
parent: 2
- - uid: 7736
+ - uid: 9940
components:
- type: Transform
- pos: 75.5,-0.5
+ pos: -86.5,-13.5
parent: 2
- - uid: 7737
+ - uid: 9941
components:
- type: Transform
- pos: -53.5,-2.5
+ pos: 49.5,6.5
parent: 2
- - uid: 7738
+ - uid: 9942
components:
- type: Transform
- pos: -53.5,0.5
+ pos: -85.5,-13.5
parent: 2
- - uid: 7739
+ - uid: 9943
components:
- type: Transform
- pos: -53.5,-0.5
+ pos: 48.5,12.5
parent: 2
- - uid: 7740
+ - uid: 9944
components:
- type: Transform
- pos: -53.5,0.5
+ pos: -84.5,-13.5
parent: 2
- - uid: 7741
+ - uid: 9945
components:
- type: Transform
- pos: -28.5,-40.5
+ pos: 54.5,0.5
parent: 2
- - uid: 7742
+ - uid: 9946
components:
- type: Transform
- pos: -50.5,33.5
+ pos: 73.5,22.5
parent: 2
- - uid: 7743
+ - uid: 9947
components:
- type: Transform
- pos: -35.5,31.5
+ pos: 74.5,2.5
parent: 2
- - uid: 7744
+ - uid: 9948
components:
- type: Transform
- pos: -9.5,-63.5
+ pos: 74.5,1.5
parent: 2
- - uid: 7745
+ - uid: 9949
components:
- type: Transform
- pos: -47.5,38.5
+ pos: 74.5,0.5
parent: 2
- - uid: 7746
+ - uid: 9950
components:
- type: Transform
- pos: -49.5,32.5
+ pos: 74.5,-0.5
parent: 2
- - uid: 7747
+ - uid: 9951
components:
- type: Transform
- pos: 8.5,3.5
+ pos: 75.5,-0.5
parent: 2
- - uid: 7748
+ - uid: 9952
components:
- type: Transform
- pos: -0.5,-40.5
+ pos: 76.5,-0.5
parent: 2
- - uid: 7749
+ - uid: 9953
components:
- type: Transform
- pos: -0.5,-56.5
+ pos: 3.5,42.5
parent: 2
- - uid: 7750
+ - uid: 9954
components:
- type: Transform
- pos: -65.5,8.5
+ pos: 4.5,42.5
parent: 2
- - uid: 7751
+ - uid: 9955
components:
- type: Transform
- pos: 10.5,6.5
+ pos: 5.5,42.5
parent: 2
- - uid: 7752
+ - uid: 9956
components:
- type: Transform
- pos: 51.5,-0.5
+ pos: 5.5,41.5
parent: 2
- - uid: 7753
+ - uid: 9957
components:
- type: Transform
- pos: 10.5,37.5
+ pos: 5.5,40.5
parent: 2
- - uid: 7754
+ - uid: 9958
components:
- type: Transform
- pos: 1.5,40.5
+ pos: 5.5,39.5
parent: 2
- - uid: 7755
+ - uid: 9959
components:
- type: Transform
- pos: -54.5,-32.5
+ pos: 60.5,0.5
parent: 2
- - uid: 7756
+ - uid: 9960
components:
- type: Transform
- pos: -59.5,44.5
+ pos: 39.5,23.5
parent: 2
- - uid: 7757
+ - uid: 9961
components:
- type: Transform
- pos: -61.5,-27.5
+ pos: 43.5,20.5
parent: 2
- - uid: 7758
+ - uid: 9962
components:
- type: Transform
- pos: -21.5,-61.5
+ pos: 60.5,-3.5
parent: 2
- - uid: 7759
+ - uid: 9963
components:
- type: Transform
- pos: -0.5,-43.5
+ pos: 7.5,60.5
parent: 2
- - uid: 7760
+ - uid: 9964
components:
- type: Transform
- pos: -28.5,-52.5
+ pos: 51.5,14.5
parent: 2
- - uid: 7761
+ - uid: 9965
components:
- type: Transform
- pos: -54.5,-30.5
+ pos: 53.5,7.5
parent: 2
- - uid: 7762
+ - uid: 9966
components:
- type: Transform
- pos: -28.5,23.5
+ pos: 53.5,6.5
parent: 2
- - uid: 7763
+ - uid: 9967
components:
- type: Transform
- pos: -33.5,-49.5
+ pos: 7.5,36.5
parent: 2
- - uid: 7764
+ - uid: 9968
components:
- type: Transform
- pos: 4.5,15.5
+ pos: -13.5,-54.5
parent: 2
- - uid: 7765
+ - uid: 9969
components:
- type: Transform
- pos: 10.5,-0.5
+ pos: 80.5,9.5
parent: 2
- - uid: 7766
+ - uid: 9970
components:
- type: Transform
- pos: 8.5,37.5
+ pos: 84.5,9.5
parent: 2
- - uid: 7767
+ - uid: 9971
components:
- type: Transform
- pos: -67.5,-2.5
+ pos: 13.5,86.5
parent: 2
- - uid: 7768
+ - uid: 9972
components:
- type: Transform
- pos: 0.5,38.5
+ pos: -67.5,47.5
parent: 2
- - uid: 7769
+ - uid: 9973
components:
- type: Transform
- pos: 53.5,-0.5
+ pos: 22.5,19.5
parent: 2
- - uid: 7770
+ - uid: 9974
components:
- type: Transform
- pos: 52.5,-0.5
+ pos: 82.5,9.5
parent: 2
- - uid: 7771
+ - uid: 9975
components:
- type: Transform
- pos: -0.5,-52.5
+ pos: -58.5,-8.5
parent: 2
- - uid: 7772
+ - uid: 9976
components:
- type: Transform
- pos: 0.5,31.5
+ pos: -55.5,42.5
parent: 2
- - uid: 7773
+ - uid: 9977
components:
- type: Transform
- pos: -42.5,-41.5
+ pos: 52.5,6.5
parent: 2
- - uid: 7774
+ - uid: 9978
components:
- type: Transform
- pos: 5.5,38.5
+ pos: -53.5,-11.5
parent: 2
- - uid: 7775
+ - uid: 9979
components:
- type: Transform
- pos: 7.5,14.5
+ pos: -48.5,9.5
parent: 2
- - uid: 7776
+ - uid: 9980
components:
- type: Transform
- pos: -26.5,26.5
+ pos: 25.5,24.5
parent: 2
- - uid: 7777
+ - uid: 9981
components:
- type: Transform
- pos: -50.5,30.5
+ pos: 43.5,-3.5
parent: 2
- - uid: 7778
+ - uid: 9982
components:
- type: Transform
- pos: -46.5,34.5
+ pos: -0.5,26.5
parent: 2
- - uid: 7779
+ - uid: 9983
components:
- type: Transform
- pos: 47.5,-1.5
+ pos: 77.5,9.5
parent: 2
- - uid: 7780
+ - uid: 9984
components:
- type: Transform
- pos: -10.5,-61.5
+ pos: -18.5,40.5
parent: 2
- - uid: 7781
+ - uid: 9985
components:
- type: Transform
- pos: -16.5,-61.5
+ pos: 20.5,24.5
parent: 2
- - uid: 7782
+ - uid: 9986
components:
- type: Transform
- pos: -7.5,-63.5
+ pos: 52.5,-20.5
parent: 2
- - uid: 7783
+ - uid: 9987
components:
- type: Transform
- pos: 8.5,11.5
+ pos: 13.5,-33.5
parent: 2
- - uid: 7784
+ - uid: 9988
components:
- type: Transform
- pos: -9.5,-62.5
+ pos: -1.5,34.5
parent: 2
- - uid: 7785
+ - uid: 9989
components:
- type: Transform
- pos: -0.5,-39.5
+ pos: 50.5,-50.5
parent: 2
- - uid: 7786
+ - uid: 9990
components:
- type: Transform
- pos: -28.5,-42.5
+ pos: 49.5,-27.5
parent: 2
- - uid: 7787
+ - uid: 9991
components:
- type: Transform
- pos: 58.5,-0.5
+ pos: 50.5,-27.5
parent: 2
- - uid: 7788
+ - uid: 9992
components:
- type: Transform
- pos: 52.5,21.5
+ pos: 49.5,-51.5
parent: 2
- - uid: 7789
+ - uid: 9993
components:
- type: Transform
- pos: 10.5,1.5
+ pos: -3.5,-13.5
parent: 2
- - uid: 7790
+ - uid: 9994
components:
- type: Transform
- pos: 68.5,-0.5
+ pos: 26.5,18.5
parent: 2
- - uid: 7791
+ - uid: 9995
components:
- type: Transform
- pos: -35.5,36.5
+ pos: -23.5,-67.5
parent: 2
- - uid: 7792
+ - uid: 9996
components:
- type: Transform
- pos: -74.5,-9.5
+ pos: -3.5,-7.5
parent: 2
- - uid: 7793
+ - uid: 9997
components:
- type: Transform
- pos: 52.5,19.5
+ pos: 16.5,-55.5
parent: 2
- - uid: 7794
+ - uid: 9998
components:
- type: Transform
- pos: -33.5,-52.5
+ pos: -8.5,-70.5
parent: 2
- - uid: 7795
+ - uid: 9999
components:
- type: Transform
- pos: 52.5,17.5
+ pos: 14.5,50.5
parent: 2
- - uid: 7796
+ - uid: 10000
components:
- type: Transform
- pos: -0.5,-57.5
+ pos: -5.5,-13.5
parent: 2
- - uid: 7797
+ - uid: 10001
components:
- type: Transform
- pos: -0.5,-41.5
+ pos: 21.5,25.5
parent: 2
- - uid: 7798
+ - uid: 10002
components:
- type: Transform
- pos: -118.5,27.5
+ pos: 53.5,-28.5
parent: 2
- - uid: 7799
+ - uid: 10003
components:
- type: Transform
- pos: 52.5,18.5
+ pos: 6.5,-8.5
parent: 2
- - uid: 7800
+ - uid: 10004
components:
- type: Transform
- pos: 52.5,16.5
+ pos: -6.5,-63.5
parent: 2
- - uid: 7801
+ - uid: 10005
components:
- type: Transform
- pos: -53.5,-6.5
+ pos: -8.5,-72.5
parent: 2
- - uid: 7802
+ - uid: 10006
components:
- type: Transform
- pos: 6.5,37.5
+ pos: -41.5,45.5
parent: 2
- - uid: 7803
+ - uid: 10007
components:
- type: Transform
- pos: -54.5,-23.5
+ pos: 50.5,-51.5
parent: 2
- - uid: 7804
+ - uid: 10008
components:
- type: Transform
- pos: -50.5,-7.5
+ pos: 13.5,33.5
parent: 2
- - uid: 7805
+ - uid: 10009
components:
- type: Transform
- pos: -46.5,38.5
+ pos: 25.5,-23.5
parent: 2
- - uid: 7806
+ - uid: 10010
components:
- type: Transform
- pos: 4.5,40.5
+ pos: 22.5,11.5
parent: 2
- - uid: 7807
+ - uid: 10011
components:
- type: Transform
- pos: -48.5,5.5
+ pos: 31.5,56.5
parent: 2
- - uid: 7808
+ - uid: 10012
components:
- type: Transform
- pos: 53.5,22.5
+ pos: 44.5,-0.5
parent: 2
- - uid: 7809
+ - uid: 10013
components:
- type: Transform
- pos: 73.5,-0.5
+ pos: 6.5,-55.5
parent: 2
- - uid: 7810
+ - uid: 10014
components:
- type: Transform
- pos: -46.5,-32.5
+ pos: 12.5,56.5
parent: 2
- - uid: 7811
+ - uid: 10015
components:
- type: Transform
- pos: -35.5,25.5
+ pos: 30.5,11.5
parent: 2
- - uid: 7812
+ - uid: 10016
components:
- type: Transform
- pos: -54.5,-26.5
+ pos: 31.5,10.5
parent: 2
- - uid: 7813
+ - uid: 10017
components:
- type: Transform
- pos: -32.5,23.5
+ pos: 31.5,12.5
parent: 2
- - uid: 7814
+ - uid: 10018
components:
- type: Transform
- pos: 52.5,22.5
+ pos: 27.5,-14.5
parent: 2
- - uid: 7815
+ - uid: 10019
components:
- type: Transform
- pos: -48.5,41.5
+ pos: 28.5,-14.5
parent: 2
- - uid: 7816
+ - uid: 10020
components:
- type: Transform
- pos: -35.5,23.5
+ pos: 53.5,-27.5
parent: 2
- - uid: 7817
+ - uid: 10021
components:
- type: Transform
- pos: -51.5,-4.5
+ pos: 15.5,50.5
parent: 2
- - uid: 7818
+ - uid: 10022
components:
- type: Transform
- pos: -54.5,-27.5
+ pos: 18.5,-10.5
parent: 2
- - uid: 7819
+ - uid: 10023
components:
- type: Transform
- pos: -49.5,41.5
+ pos: 19.5,-10.5
parent: 2
- - uid: 7820
+ - uid: 10024
components:
- type: Transform
- pos: -0.5,-58.5
+ pos: 23.5,-20.5
parent: 2
- - uid: 7821
+ - uid: 10025
components:
- type: Transform
- pos: -51.5,41.5
+ pos: 42.5,-32.5
parent: 2
- - uid: 7822
+ - uid: 10026
components:
- type: Transform
- pos: 5.5,38.5
+ pos: 27.5,11.5
parent: 2
- - uid: 7823
+ - uid: 10027
components:
- type: Transform
- pos: 55.5,-0.5
+ pos: 51.5,-45.5
parent: 2
- - uid: 7824
+ - uid: 10028
components:
- type: Transform
- pos: 10.5,10.5
+ pos: -5.5,-10.5
parent: 2
- - uid: 7825
+ - uid: 10029
components:
- type: Transform
- pos: 57.5,-0.5
+ pos: 7.5,90.5
parent: 2
- - uid: 7826
+ - uid: 10030
components:
- type: Transform
- pos: 23.5,31.5
+ pos: 10.5,23.5
parent: 2
- - uid: 7827
+ - uid: 10031
components:
- type: Transform
- pos: 47.5,-0.5
+ pos: -10.5,-11.5
parent: 2
- - uid: 7828
+ - uid: 10032
components:
- type: Transform
- pos: 72.5,-0.5
+ pos: -55.5,43.5
parent: 2
- - uid: 7829
+ - uid: 10033
components:
- type: Transform
- pos: -50.5,41.5
+ pos: 13.5,41.5
parent: 2
- - uid: 7830
+ - uid: 10034
components:
- type: Transform
- pos: 25.5,32.5
+ pos: 30.5,2.5
parent: 2
- - uid: 7831
+ - uid: 10035
components:
- type: Transform
- pos: -39.5,-5.5
+ pos: 48.5,-20.5
parent: 2
- - uid: 7832
+ - uid: 10036
components:
- type: Transform
- pos: 24.5,31.5
+ pos: 8.5,90.5
parent: 2
- - uid: 7833
+ - uid: 10037
components:
- type: Transform
- pos: 71.5,-0.5
+ pos: -2.5,32.5
parent: 2
- - uid: 7834
+ - uid: 10038
components:
- type: Transform
- pos: -28.5,-53.5
+ pos: -18.5,-6.5
parent: 2
- - uid: 7835
+ - uid: 10039
components:
- type: Transform
- pos: -34.5,23.5
+ pos: -41.5,43.5
parent: 2
- - uid: 7836
+ - uid: 10040
components:
- type: Transform
- pos: -54.5,30.5
+ pos: 41.5,-14.5
parent: 2
- - uid: 7837
+ - uid: 10041
components:
- type: Transform
- pos: 0.5,39.5
+ pos: 11.5,70.5
parent: 2
- - uid: 7838
+ - uid: 10042
components:
- type: Transform
- pos: -28.5,-51.5
+ pos: -22.5,-60.5
parent: 2
- - uid: 7839
+ - uid: 10043
components:
- type: Transform
- pos: -31.5,23.5
+ pos: 0.5,-43.5
parent: 2
- - uid: 7840
+ - uid: 10044
components:
- type: Transform
- pos: -54.5,41.5
+ pos: 44.5,-27.5
parent: 2
- - uid: 7841
+ - uid: 10045
components:
- type: Transform
- pos: 22.5,31.5
+ pos: -18.5,40.5
parent: 2
- - uid: 7842
+ - uid: 10046
components:
- type: Transform
- pos: 5.5,14.5
+ pos: 26.5,-37.5
parent: 2
- - uid: 7843
+ - uid: 10047
components:
- type: Transform
- pos: -49.5,42.5
+ pos: -30.5,42.5
parent: 2
- - uid: 7844
+ - uid: 10048
components:
- type: Transform
- pos: 10.5,5.5
+ pos: 0.5,-44.5
parent: 2
- - uid: 7845
+ - uid: 10049
components:
- type: Transform
- pos: 10.5,8.5
+ pos: -18.5,-5.5
parent: 2
- - uid: 7846
+ - uid: 10050
components:
- type: Transform
- pos: 10.5,11.5
+ pos: -51.5,-9.5
parent: 2
- - uid: 7847
+ - uid: 10051
components:
- type: Transform
- pos: 9.5,5.5
+ pos: 55.5,-42.5
parent: 2
- - uid: 7848
+ - uid: 10052
components:
- type: Transform
- pos: 70.5,-0.5
+ pos: -35.5,61.5
parent: 2
- - uid: 7849
+ - uid: 10053
components:
- type: Transform
- pos: -28.5,-47.5
+ pos: -58.5,46.5
parent: 2
- - uid: 7850
+ - uid: 10054
components:
- type: Transform
- pos: 0.5,35.5
+ pos: -9.5,-11.5
parent: 2
- - uid: 7851
+ - uid: 10055
components:
- type: Transform
- pos: -3.5,-63.5
+ pos: 13.5,42.5
parent: 2
- - uid: 7852
+ - uid: 10056
components:
- type: Transform
- pos: -54.5,-6.5
+ pos: -35.5,59.5
parent: 2
- - uid: 7853
+ - uid: 10057
components:
- type: Transform
- pos: -9.5,-61.5
+ pos: -32.5,61.5
parent: 2
- - uid: 7854
+ - uid: 10058
components:
- type: Transform
- pos: -14.5,-61.5
+ pos: -33.5,61.5
parent: 2
- - uid: 7855
+ - uid: 10059
components:
- type: Transform
- pos: -6.5,-63.5
+ pos: 76.5,9.5
parent: 2
- - uid: 7856
+ - uid: 10060
components:
- type: Transform
- pos: -15.5,-61.5
+ pos: -46.5,-7.5
parent: 2
- - uid: 7857
+ - uid: 10061
components:
- type: Transform
- pos: 10.5,39.5
+ pos: -22.5,-79.5
parent: 2
- - uid: 7858
+ - uid: 10062
components:
- type: Transform
- pos: -48.5,40.5
+ pos: -23.5,-68.5
parent: 2
- - uid: 7859
+ - uid: 10063
components:
- type: Transform
- pos: 27.5,27.5
+ pos: 75.5,9.5
parent: 2
- - uid: 7860
+ - uid: 10064
components:
- type: Transform
- pos: -54.5,31.5
+ pos: 7.5,73.5
parent: 2
- - uid: 7861
+ - uid: 10065
components:
- type: Transform
- pos: -54.5,33.5
+ pos: -66.5,15.5
parent: 2
- - uid: 7862
+ - uid: 10066
components:
- type: Transform
- pos: 6.5,14.5
+ pos: -56.5,45.5
parent: 2
- - uid: 7863
+ - uid: 10067
components:
- type: Transform
- pos: -75.5,-9.5
+ pos: -67.5,15.5
parent: 2
- - uid: 7864
+ - uid: 10068
components:
- type: Transform
- pos: 10.5,0.5
+ pos: -33.5,-57.5
parent: 2
- - uid: 7865
+ - uid: 10069
components:
- type: Transform
- pos: 8.5,12.5
+ pos: -57.5,-11.5
parent: 2
- - uid: 7866
+ - uid: 10070
components:
- type: Transform
- pos: -52.5,41.5
+ pos: -76.5,-23.5
parent: 2
- - uid: 7867
+ - uid: 10071
components:
- type: Transform
- pos: 27.5,26.5
+ pos: -66.5,15.5
parent: 2
- - uid: 7868
+ - uid: 10072
components:
- type: Transform
- pos: -54.5,38.5
+ pos: -42.5,26.5
parent: 2
- - uid: 7869
+ - uid: 10073
components:
- type: Transform
- pos: 25.5,31.5
+ pos: -9.5,-60.5
parent: 2
- - uid: 7870
+ - uid: 10074
components:
- type: Transform
- pos: 74.5,-0.5
+ pos: -9.5,-60.5
parent: 2
- - uid: 7871
+ - uid: 10075
components:
- type: Transform
- pos: -48.5,-7.5
+ pos: 6.5,74.5
parent: 2
- - uid: 7872
+ - uid: 10076
components:
- type: Transform
- pos: -28.5,-56.5
+ pos: -35.5,58.5
parent: 2
- - uid: 7873
+ - uid: 10077
components:
- type: Transform
- pos: -8.5,-63.5
+ pos: -41.5,25.5
parent: 2
- - uid: 7874
+ - uid: 10078
components:
- type: Transform
- pos: -0.5,-49.5
+ pos: -30.5,-19.5
parent: 2
- - uid: 7875
+ - uid: 10079
components:
- type: Transform
- pos: -50.5,33.5
+ pos: -55.5,27.5
parent: 2
- - uid: 7876
+ - uid: 10080
components:
- type: Transform
- pos: -44.5,-1.5
+ pos: -25.5,-19.5
parent: 2
- - uid: 7877
+ - uid: 10081
components:
- type: Transform
- pos: 2.5,40.5
+ pos: -30.5,19.5
parent: 2
- - uid: 7878
+ - uid: 10082
components:
- type: Transform
- pos: -37.5,-48.5
+ pos: -72.5,4.5
parent: 2
- - uid: 7879
+ - uid: 10083
components:
- type: Transform
- pos: -38.5,-48.5
+ pos: -58.5,58.5
parent: 2
- - uid: 7880
+ - uid: 10084
components:
- type: Transform
- pos: -58.5,-9.5
+ pos: -55.5,26.5
parent: 2
- - uid: 7881
+ - uid: 10085
components:
- type: Transform
- pos: -36.5,-48.5
+ pos: -55.5,45.5
parent: 2
- - uid: 7882
+ - uid: 10086
components:
- type: Transform
- pos: -35.5,-48.5
+ pos: -69.5,4.5
parent: 2
- - uid: 7883
+ - uid: 10087
components:
- type: Transform
- pos: -86.5,-4.5
+ pos: -74.5,5.5
parent: 2
- - uid: 7884
+ - uid: 10088
components:
- type: Transform
- pos: -26.5,27.5
+ pos: 28.5,-41.5
parent: 2
- - uid: 7885
+ - uid: 10089
components:
- type: Transform
- pos: -41.5,-6.5
+ pos: -58.5,47.5
parent: 2
- - uid: 7886
+ - uid: 10090
components:
- type: Transform
- pos: -2.5,33.5
+ pos: 28.5,-40.5
parent: 2
- - uid: 7887
+ - uid: 10091
components:
- type: Transform
- pos: -86.5,-1.5
+ pos: -58.5,51.5
parent: 2
- - uid: 7888
+ - uid: 10092
components:
- type: Transform
- pos: -82.5,-13.5
+ pos: 33.5,-60.5
parent: 2
- - uid: 7889
+ - uid: 10093
components:
- type: Transform
- pos: -83.5,-13.5
+ pos: -46.5,9.5
parent: 2
- - uid: 7890
+ - uid: 10094
components:
- type: Transform
- pos: -2.5,34.5
+ pos: 31.5,-60.5
parent: 2
- - uid: 7891
+ - uid: 10095
components:
- type: Transform
- pos: 56.5,-0.5
+ pos: 29.5,-33.5
parent: 2
- - uid: 7892
+ - uid: 10096
components:
- type: Transform
- pos: -84.5,-13.5
+ pos: 29.5,-34.5
parent: 2
- - uid: 7893
+ - uid: 10097
components:
- type: Transform
- pos: -85.5,-13.5
+ pos: -28.5,-56.5
parent: 2
- - uid: 7894
+ - uid: 10098
components:
- type: Transform
- pos: 63.5,-0.5
+ pos: 5.5,-37.5
parent: 2
- - uid: 7895
+ - uid: 10099
components:
- type: Transform
- pos: 48.5,-0.5
+ pos: -59.5,-8.5
parent: 2
- - uid: 7896
+ - uid: 10100
components:
- type: Transform
- pos: 50.5,-0.5
+ pos: 29.5,-32.5
parent: 2
- - uid: 7897
+ - uid: 10101
components:
- type: Transform
- pos: 54.5,-0.5
+ pos: -58.5,52.5
parent: 2
- - uid: 7898
+ - uid: 10102
components:
- type: Transform
- pos: -86.5,-13.5
+ pos: 29.5,-31.5
parent: 2
- - uid: 7899
+ - uid: 10103
components:
- type: Transform
- pos: -41.5,-1.5
+ pos: -58.5,45.5
parent: 2
- - uid: 7900
+ - uid: 10104
components:
- type: Transform
- pos: -40.5,-1.5
+ pos: -58.5,48.5
parent: 2
- - uid: 7901
+ - uid: 10105
components:
- type: Transform
- pos: 1.5,39.5
+ pos: 15.5,-55.5
parent: 2
- - uid: 7902
+ - uid: 10106
components:
- type: Transform
- pos: -30.5,23.5
+ pos: -21.5,-80.5
parent: 2
- - uid: 7903
+ - uid: 10107
components:
- type: Transform
- pos: -28.5,24.5
+ pos: -33.5,-56.5
parent: 2
- - uid: 7904
+ - uid: 10108
components:
- type: Transform
- pos: -53.5,41.5
+ pos: -63.5,-25.5
parent: 2
- - uid: 7905
+ - uid: 10109
components:
- type: Transform
- pos: -33.5,-53.5
+ pos: -63.5,-27.5
parent: 2
- - uid: 7906
+ - uid: 10110
components:
- type: Transform
- pos: 62.5,-0.5
+ pos: 28.5,-42.5
parent: 2
- - uid: 7907
+ - uid: 10111
components:
- type: Transform
- pos: -0.5,-53.5
+ pos: 18.5,-53.5
parent: 2
- - uid: 7908
+ - uid: 10112
components:
- type: Transform
- pos: -0.5,31.5
+ pos: -49.5,-41.5
parent: 2
- - uid: 7909
+ - uid: 10113
components:
- type: Transform
- pos: 5.5,40.5
+ pos: -2.5,48.5
parent: 2
- - uid: 7910
+ - uid: 10114
components:
- type: Transform
- pos: -42.5,-42.5
+ pos: -18.5,39.5
parent: 2
- - uid: 7911
+ - uid: 10115
components:
- type: Transform
- pos: 4.5,16.5
+ pos: 55.5,-27.5
parent: 2
- - uid: 7912
+ - uid: 10116
components:
- type: Transform
- pos: 76.5,-0.5
+ pos: 42.5,-12.5
parent: 2
- - uid: 7913
+ - uid: 10117
components:
- type: Transform
- pos: -2.5,-63.5
+ pos: 55.5,-26.5
parent: 2
- - uid: 7914
+ - uid: 10118
components:
- type: Transform
- pos: -49.5,-2.5
+ pos: -1.5,23.5
parent: 2
- - uid: 7915
+ - uid: 10119
components:
- type: Transform
- pos: -50.5,-2.5
+ pos: -12.5,52.5
parent: 2
- - uid: 7916
+ - uid: 10120
components:
- type: Transform
- pos: 60.5,-0.5
+ pos: -30.5,47.5
parent: 2
- - uid: 7917
+ - uid: 10121
components:
- type: Transform
- pos: -47.5,-2.5
+ pos: 9.5,40.5
parent: 2
- - uid: 7918
+ - uid: 10122
components:
- type: Transform
- pos: 0.5,37.5
+ pos: -2.5,30.5
parent: 2
- - uid: 7919
+ - uid: 10123
components:
- type: Transform
- pos: -6.5,-63.5
+ pos: -48.5,-2.5
parent: 2
- - uid: 7920
+ - uid: 10124
components:
- type: Transform
- pos: 7.5,37.5
+ pos: -45.5,-14.5
parent: 2
- - uid: 7921
+ - uid: 10125
components:
- type: Transform
- pos: 47.5,-2.5
+ pos: 17.5,25.5
parent: 2
- - uid: 7922
+ - uid: 10126
components:
- type: Transform
- pos: -45.5,-7.5
+ pos: 10.5,90.5
parent: 2
- - uid: 7923
+ - uid: 10127
components:
- type: Transform
- pos: -40.5,-6.5
+ pos: 31.5,55.5
parent: 2
- - uid: 7924
+ - uid: 10128
components:
- type: Transform
- pos: -53.5,26.5
+ pos: 44.5,-46.5
parent: 2
- - uid: 7925
+ - uid: 10129
components:
- type: Transform
- pos: 8.5,14.5
+ pos: -15.5,-80.5
parent: 2
- - uid: 7926
+ - uid: 10130
components:
- type: Transform
- pos: 8.5,13.5
+ pos: -23.5,-61.5
parent: 2
- - uid: 7927
+ - uid: 10131
components:
- type: Transform
- pos: 10.5,9.5
+ pos: 0.5,-40.5
parent: 2
- - uid: 7928
+ - uid: 10132
components:
- type: Transform
- pos: -2.5,32.5
+ pos: 30.5,56.5
parent: 2
- - uid: 7929
+ - uid: 10133
components:
- type: Transform
- pos: -35.5,24.5
+ pos: 23.5,56.5
parent: 2
- - uid: 7930
+ - uid: 10134
components:
- type: Transform
- pos: -28.5,-49.5
+ pos: -18.5,13.5
parent: 2
- - uid: 7931
+ - uid: 10135
components:
- type: Transform
- pos: -58.5,57.5
+ pos: 12.5,61.5
parent: 2
- - uid: 7932
+ - uid: 10136
components:
- type: Transform
- pos: 10.5,3.5
+ pos: -40.5,12.5
parent: 2
- - uid: 7933
+ - uid: 10137
components:
- type: Transform
- pos: 10.5,2.5
+ pos: -39.5,12.5
parent: 2
- - uid: 7934
+ - uid: 10138
components:
- type: Transform
- pos: -58.5,-6.5
+ pos: 17.5,6.5
parent: 2
- - uid: 7935
+ - uid: 10139
components:
- type: Transform
- pos: -53.5,24.5
+ pos: -76.5,-22.5
parent: 2
- - uid: 7936
+ - uid: 10140
components:
- type: Transform
- pos: -35.5,34.5
+ pos: 25.5,-22.5
parent: 2
- - uid: 7937
+ - uid: 10141
components:
- type: Transform
- pos: -28.5,-45.5
+ pos: -42.5,31.5
parent: 2
- - uid: 7938
+ - uid: 10142
components:
- type: Transform
- pos: -53.5,25.5
+ pos: -18.5,33.5
parent: 2
- - uid: 7939
+ - uid: 10143
components:
- type: Transform
- pos: -28.5,-39.5
+ pos: -56.5,34.5
parent: 2
- - uid: 7940
+ - uid: 10144
components:
- type: Transform
- pos: -54.5,-24.5
+ pos: -30.5,43.5
parent: 2
- - uid: 7941
+ - uid: 10145
components:
- type: Transform
- pos: -42.5,-45.5
+ pos: -42.5,33.5
parent: 2
- - uid: 7942
+ - uid: 10146
components:
- type: Transform
- pos: 0.5,32.5
+ pos: -26.5,-16.5
parent: 2
- - uid: 7943
+ - uid: 10147
components:
- type: Transform
- pos: -28.5,-44.5
+ pos: -28.5,-36.5
parent: 2
- - uid: 7944
+ - uid: 10148
components:
- type: Transform
- pos: -84.5,-1.5
+ pos: -24.5,66.5
parent: 2
- - uid: 7945
+ - uid: 10149
components:
- type: Transform
- pos: -35.5,28.5
+ pos: -63.5,-26.5
parent: 2
- - uid: 7946
+ - uid: 10150
components:
- type: Transform
- pos: -44.5,-2.5
+ pos: -30.5,46.5
parent: 2
- - uid: 7947
+ - uid: 10151
components:
- type: Transform
- pos: -83.5,-1.5
+ pos: -25.5,-77.5
parent: 2
- - uid: 7948
+ - uid: 10152
components:
- type: Transform
- pos: 4.5,14.5
+ pos: 72.5,-4.5
parent: 2
- - uid: 7949
+ - uid: 10153
components:
- type: Transform
- pos: -85.5,-1.5
+ pos: 17.5,-52.5
parent: 2
- - uid: 7950
+ - uid: 10154
components:
- type: Transform
- pos: 5.5,37.5
+ pos: 5.5,-8.5
parent: 2
- - uid: 7951
+ - uid: 10155
components:
- type: Transform
- pos: -0.5,-59.5
+ pos: 17.5,-53.5
parent: 2
- - uid: 7952
+ - uid: 10156
components:
- type: Transform
- pos: -86.5,-2.5
+ pos: 6.5,89.5
parent: 2
- - uid: 7953
+ - uid: 10157
components:
- type: Transform
- pos: 10.5,-1.5
+ pos: -18.5,-4.5
parent: 2
- - uid: 7954
+ - uid: 10158
components:
- type: Transform
- pos: -86.5,-3.5
+ pos: 13.5,39.5
parent: 2
- - uid: 7955
+ - uid: 10159
components:
- type: Transform
- pos: -5.5,-63.5
+ pos: -7.5,23.5
parent: 2
- - uid: 7956
+ - uid: 10160
components:
- type: Transform
- pos: -44.5,2.5
+ pos: -18.5,-3.5
parent: 2
- - uid: 7957
+ - uid: 10161
components:
- type: Transform
- pos: -20.5,-61.5
+ pos: -73.5,4.5
parent: 2
- - uid: 7958
+ - uid: 10162
components:
- type: Transform
- pos: -28.5,-35.5
+ pos: -29.5,-19.5
parent: 2
- - uid: 7959
+ - uid: 10163
components:
- type: Transform
- pos: -28.5,-38.5
+ pos: -10.5,7.5
parent: 2
- - uid: 7960
+ - uid: 10164
components:
- type: Transform
- pos: -28.5,-37.5
+ pos: -9.5,9.5
parent: 2
- - uid: 7961
+ - uid: 10165
components:
- type: Transform
- pos: -28.5,-36.5
+ pos: 32.5,-5.5
parent: 2
- - uid: 7962
+ - uid: 10166
components:
- type: Transform
- pos: -0.5,-51.5
+ pos: 1.5,-13.5
parent: 2
- - uid: 7963
+ - uid: 10167
components:
- type: Transform
- pos: -32.5,-57.5
+ pos: -28.5,-55.5
parent: 2
- - uid: 7964
+ - uid: 10168
components:
- type: Transform
- pos: -33.5,-57.5
+ pos: 10.5,8.5
parent: 2
- - uid: 7965
+ - uid: 10169
components:
- type: Transform
- pos: -33.5,-56.5
+ pos: -10.5,4.5
parent: 2
- - uid: 7966
+ - uid: 10170
components:
- type: Transform
- pos: -33.5,-55.5
+ pos: -18.5,-1.5
parent: 2
- - uid: 7967
+ - uid: 10171
components:
- type: Transform
- pos: -33.5,-54.5
+ pos: 13.5,38.5
parent: 2
- - uid: 7968
+ - uid: 10172
components:
- type: Transform
- pos: -43.5,44.5
+ pos: 16.5,36.5
parent: 2
- - uid: 7969
+ - uid: 10173
components:
- type: Transform
- pos: -43.5,45.5
+ pos: -41.5,53.5
parent: 2
- - uid: 7970
+ - uid: 10174
components:
- type: Transform
- pos: -51.5,-6.5
+ pos: -75.5,-22.5
parent: 2
- - uid: 7971
+ - uid: 10175
components:
- type: Transform
- pos: -28.5,-55.5
+ pos: -35.5,39.5
parent: 2
- - uid: 7972
+ - uid: 10176
components:
- type: Transform
- pos: -54.5,-29.5
+ pos: -41.5,54.5
parent: 2
- - uid: 7973
+ - uid: 10177
components:
- type: Transform
- pos: -44.5,-6.5
+ pos: -37.5,39.5
parent: 2
- - uid: 7974
+ - uid: 10178
components:
- type: Transform
- pos: 77.5,-1.5
+ pos: 12.5,38.5
parent: 2
- - uid: 7975
+ - uid: 10179
components:
- type: Transform
- pos: 65.5,-0.5
+ pos: 7.5,57.5
parent: 2
- - uid: 7976
+ - uid: 10180
components:
- type: Transform
- pos: 61.5,-0.5
+ pos: 13.5,35.5
parent: 2
- - uid: 7977
+ - uid: 10181
components:
- type: Transform
- pos: -67.5,1.5
+ pos: 41.5,-3.5
parent: 2
- - uid: 7978
+ - uid: 10182
components:
- type: Transform
- pos: -53.5,23.5
+ pos: 49.5,-10.5
parent: 2
- - uid: 7979
+ - uid: 10183
components:
- type: Transform
- pos: -53.5,45.5
+ pos: -33.5,-19.5
parent: 2
- - uid: 7980
+ - uid: 10184
components:
- type: Transform
- pos: -46.5,45.5
+ pos: -36.5,-16.5
parent: 2
- - uid: 7981
+ - uid: 10185
components:
- type: Transform
- pos: -51.5,-39.5
+ pos: -36.5,-17.5
parent: 2
- - uid: 7982
+ - uid: 10186
components:
- type: Transform
- pos: 8.5,4.5
+ pos: -31.5,-19.5
parent: 2
- - uid: 7983
+ - uid: 10187
components:
- type: Transform
- pos: 46.5,-3.5
+ pos: -36.5,-18.5
parent: 2
- - uid: 7984
+ - uid: 10188
components:
- type: Transform
- pos: 3.5,40.5
+ pos: -36.5,-19.5
parent: 2
- - uid: 7985
+ - uid: 10189
components:
- type: Transform
- pos: -44.5,-1.5
+ pos: -32.5,-19.5
parent: 2
- - uid: 7986
+ - uid: 10190
components:
- type: Transform
- pos: -33.5,23.5
+ pos: -35.5,-19.5
parent: 2
- - uid: 7987
+ - uid: 10191
components:
- type: Transform
- pos: -1.5,-63.5
+ pos: -36.5,-15.5
parent: 2
- - uid: 7988
+ - uid: 10192
components:
- type: Transform
- pos: -0.5,-63.5
+ pos: -34.5,-19.5
parent: 2
- - uid: 7989
+ - uid: 10193
components:
- type: Transform
- pos: -0.5,-62.5
+ pos: -37.5,40.5
parent: 2
- - uid: 7990
+ - uid: 10194
components:
- type: Transform
- pos: -0.5,-61.5
+ pos: -21.5,-78.5
parent: 2
- - uid: 7991
+ - uid: 10195
components:
- type: Transform
- pos: -0.5,-60.5
+ pos: -30.5,-72.5
parent: 2
- - uid: 7992
+ - uid: 10196
components:
- type: Transform
- pos: 5.5,39.5
+ pos: -5.5,30.5
parent: 2
- - uid: 7993
+ - uid: 10197
components:
- type: Transform
- pos: -54.5,32.5
+ pos: 4.5,-8.5
parent: 2
- - uid: 7994
+ - uid: 10198
components:
- type: Transform
- pos: -52.5,10.5
+ pos: 0.5,34.5
parent: 2
- - uid: 7995
+ - uid: 10199
components:
- type: Transform
- pos: 9.5,3.5
+ pos: -23.5,-62.5
parent: 2
- - uid: 7996
+ - uid: 10200
components:
- type: Transform
- pos: -28.5,-46.5
+ pos: -25.5,-61.5
parent: 2
- - uid: 7997
+ - uid: 10201
components:
- type: Transform
- pos: -54.5,-25.5
+ pos: 11.5,45.5
parent: 2
- - uid: 7998
+ - uid: 10202
components:
- type: Transform
- pos: 69.5,-0.5
+ pos: -63.5,-28.5
parent: 2
- - uid: 7999
+ - uid: 10203
components:
- type: Transform
- pos: -57.5,53.5
+ pos: -27.5,-63.5
parent: 2
- - uid: 8000
+ - uid: 10204
components:
- type: Transform
- pos: 69.5,-0.5
+ pos: 4.5,-10.5
parent: 2
- - uid: 8001
+ - uid: 10205
components:
- type: Transform
- pos: -73.5,11.5
+ pos: -3.5,-62.5
parent: 2
- - uid: 8002
+ - uid: 10206
components:
- type: Transform
- pos: -118.5,30.5
+ pos: 4.5,-11.5
parent: 2
- - uid: 8003
+ - uid: 10207
components:
- type: Transform
- pos: -39.5,-11.5
+ pos: -9.5,-63.5
parent: 2
- - uid: 8004
+ - uid: 10208
components:
- type: Transform
- pos: -45.5,45.5
+ pos: -34.5,-57.5
parent: 2
- - uid: 8005
+ - uid: 10209
components:
- type: Transform
- pos: -39.5,-8.5
+ pos: -27.5,-62.5
parent: 2
- - uid: 8006
+ - uid: 10210
components:
- type: Transform
- pos: -39.5,-9.5
+ pos: -4.5,-63.5
parent: 2
- - uid: 8007
+ - uid: 10211
components:
- type: Transform
- pos: -38.5,-11.5
+ pos: -27.5,-66.5
parent: 2
- - uid: 8008
+ - uid: 10212
components:
- type: Transform
- pos: -39.5,-10.5
+ pos: -25.5,-76.5
parent: 2
- - uid: 8009
+ - uid: 10213
components:
- type: Transform
- pos: 66.5,-0.5
+ pos: 17.5,11.5
parent: 2
- - uid: 8010
+ - uid: 10214
components:
- type: Transform
- pos: -90.5,-10.5
+ pos: -41.5,21.5
parent: 2
- - uid: 8011
+ - uid: 10215
components:
- type: Transform
- pos: -37.5,-11.5
+ pos: -23.5,-17.5
parent: 2
- - uid: 8012
+ - uid: 10216
components:
- type: Transform
- pos: 67.5,-0.5
+ pos: -23.5,-16.5
parent: 2
- - uid: 8013
+ - uid: 10217
components:
- type: Transform
- pos: -95.5,-10.5
+ pos: 5.5,-34.5
parent: 2
- - uid: 8014
+ - uid: 10218
components:
- type: Transform
- pos: -89.5,-10.5
+ pos: 23.5,-28.5
parent: 2
- - uid: 8015
+ - uid: 10219
components:
- type: Transform
- pos: -75.5,-22.5
+ pos: 16.5,-40.5
parent: 2
- - uid: 8016
+ - uid: 10220
components:
- type: Transform
- pos: 17.5,5.5
+ pos: 5.5,-31.5
parent: 2
- - uid: 8017
+ - uid: 10221
components:
- type: Transform
- pos: -58.5,2.5
+ pos: 22.5,-28.5
parent: 2
- - uid: 8018
+ - uid: 10222
components:
- type: Transform
- pos: 38.5,-46.5
+ pos: 3.5,-31.5
parent: 2
- - uid: 8019
+ - uid: 10223
components:
- type: Transform
- pos: 17.5,-0.5
+ pos: -13.5,-36.5
parent: 2
- - uid: 8020
+ - uid: 10224
components:
- type: Transform
- pos: 17.5,-53.5
+ pos: -57.5,45.5
parent: 2
- - uid: 8021
+ - uid: 10225
components:
- type: Transform
- pos: 12.5,74.5
+ pos: 28.5,-51.5
parent: 2
- - uid: 8022
+ - uid: 10226
components:
- type: Transform
- pos: -42.5,36.5
+ pos: -13.5,-37.5
parent: 2
- - uid: 8023
+ - uid: 10227
components:
- type: Transform
- pos: -54.5,-85.5
+ pos: -13.5,-35.5
parent: 2
- - uid: 8024
+ - uid: 10228
components:
- type: Transform
- pos: 27.5,28.5
+ pos: 3.5,-29.5
parent: 2
- - uid: 8025
+ - uid: 10229
components:
- type: Transform
- pos: 18.5,43.5
+ pos: 28.5,-31.5
parent: 2
- - uid: 8026
+ - uid: 10230
components:
- type: Transform
- pos: -44.5,-74.5
+ pos: -32.5,-57.5
parent: 2
- - uid: 8027
+ - uid: 10231
components:
- type: Transform
- pos: -61.5,2.5
+ pos: 27.5,-30.5
parent: 2
- - uid: 8028
+ - uid: 10232
components:
- type: Transform
- pos: -70.5,1.5
+ pos: 19.5,-28.5
parent: 2
- - uid: 8029
+ - uid: 10233
components:
- type: Transform
- pos: -69.5,6.5
+ pos: 34.5,-42.5
parent: 2
- - uid: 8030
+ - uid: 10234
components:
- type: Transform
- pos: -95.5,-5.5
+ pos: -61.5,-28.5
parent: 2
- - uid: 8031
+ - uid: 10235
components:
- type: Transform
- pos: -68.5,1.5
+ pos: -56.5,-9.5
parent: 2
- - uid: 8032
+ - uid: 10236
components:
- type: Transform
- pos: -45.5,-82.5
+ pos: -53.5,29.5
parent: 2
- - uid: 8033
+ - uid: 10237
components:
- type: Transform
- pos: -29.5,-19.5
+ pos: 13.5,-55.5
parent: 2
- - uid: 8034
+ - uid: 10238
components:
- type: Transform
- pos: 21.5,33.5
+ pos: -27.5,-67.5
parent: 2
- - uid: 8035
+ - uid: 10239
components:
- type: Transform
- pos: 4.5,-42.5
+ pos: -15.5,-77.5
parent: 2
- - uid: 8036
+ - uid: 10240
components:
- type: Transform
- pos: 17.5,-1.5
+ pos: -15.5,-78.5
parent: 2
- - uid: 8037
+ - uid: 10241
components:
- type: Transform
- pos: 53.5,-10.5
+ pos: 10.5,64.5
parent: 2
- - uid: 8038
+ - uid: 10242
components:
- type: Transform
- pos: 21.5,34.5
+ pos: -18.5,8.5
parent: 2
- - uid: 8039
+ - uid: 10243
components:
- type: Transform
- pos: 22.5,-54.5
+ pos: 0.5,32.5
parent: 2
- - uid: 8040
+ - uid: 10244
components:
- type: Transform
- pos: -42.5,33.5
+ pos: 17.5,-7.5
parent: 2
- - uid: 8041
+ - uid: 10245
components:
- type: Transform
- pos: 81.5,-46.5
+ pos: -48.5,6.5
parent: 2
- - uid: 8042
+ - uid: 10246
components:
- type: Transform
- pos: 53.5,-9.5
+ pos: 15.5,36.5
parent: 2
- - uid: 8043
+ - uid: 10247
components:
- type: Transform
- pos: 81.5,-43.5
+ pos: 4.5,-9.5
parent: 2
- - uid: 8044
+ - uid: 10248
components:
- type: Transform
- pos: 40.5,-28.5
+ pos: -3.5,-63.5
parent: 2
- - uid: 8045
+ - uid: 10249
components:
- type: Transform
- pos: 16.5,-8.5
+ pos: -23.5,-18.5
parent: 2
- - uid: 8046
+ - uid: 10250
components:
- type: Transform
- pos: 15.5,-8.5
+ pos: -49.5,29.5
parent: 2
- - uid: 8047
+ - uid: 10251
components:
- type: Transform
- pos: -39.5,37.5
+ pos: -57.5,-9.5
parent: 2
- - uid: 8048
+ - uid: 10252
components:
- type: Transform
- pos: 27.5,99.5
+ pos: 8.5,3.5
parent: 2
- - uid: 8049
+ - uid: 10253
components:
- type: Transform
- pos: 18.5,-8.5
+ pos: -3.5,15.5
parent: 2
- - uid: 8050
+ - uid: 10254
components:
- type: Transform
- pos: -37.5,37.5
+ pos: 12.5,7.5
parent: 2
- - uid: 8051
+ - uid: 10255
components:
- type: Transform
- pos: 21.5,35.5
+ pos: 56.5,-24.5
parent: 2
- - uid: 8052
+ - uid: 10256
components:
- type: Transform
- pos: 21.5,31.5
+ pos: 1.5,15.5
parent: 2
- - uid: 8053
+ - uid: 10257
components:
- type: Transform
- pos: 14.5,69.5
+ pos: -58.5,49.5
parent: 2
- - uid: 8054
+ - uid: 10258
components:
- type: Transform
- pos: -47.5,-84.5
+ pos: -17.5,-30.5
parent: 2
- - uid: 8055
+ - uid: 10259
components:
- type: Transform
- pos: -89.5,-9.5
+ pos: -13.5,-49.5
parent: 2
- - uid: 8056
+ - uid: 10260
components:
- type: Transform
- pos: -69.5,3.5
+ pos: -13.5,-48.5
parent: 2
- - uid: 8057
+ - uid: 10261
components:
- type: Transform
- pos: 27.5,32.5
+ pos: 12.5,-39.5
parent: 2
- - uid: 8058
+ - uid: 10262
components:
- type: Transform
- pos: 32.5,100.5
+ pos: 28.5,-35.5
parent: 2
- - uid: 8059
+ - uid: 10263
components:
- type: Transform
- pos: -68.5,3.5
+ pos: 29.5,-35.5
parent: 2
- - uid: 8060
+ - uid: 10264
components:
- type: Transform
- pos: 20.5,-54.5
+ pos: -30.5,-57.5
parent: 2
- - uid: 8061
+ - uid: 10265
components:
- type: Transform
- pos: -74.5,-21.5
+ pos: -31.5,-56.5
parent: 2
- - uid: 8062
+ - uid: 10266
components:
- type: Transform
- pos: -74.5,-22.5
+ pos: 25.5,-20.5
parent: 2
- - uid: 8063
+ - uid: 10267
components:
- type: Transform
- pos: -53.5,-85.5
+ pos: -53.5,9.5
parent: 2
- - uid: 8064
+ - uid: 10268
components:
- type: Transform
- pos: -61.5,-20.5
+ pos: 28.5,-46.5
parent: 2
- - uid: 8065
+ - uid: 10269
components:
- type: Transform
- pos: 31.5,95.5
+ pos: -28.5,-42.5
parent: 2
- - uid: 8066
+ - uid: 10270
components:
- type: Transform
- pos: -92.5,-10.5
+ pos: -13.5,-46.5
parent: 2
- - uid: 8067
+ - uid: 10271
components:
- type: Transform
- pos: -76.5,-23.5
+ pos: -13.5,-44.5
parent: 2
- - uid: 8068
+ - uid: 10272
components:
- type: Transform
- pos: -76.5,-22.5
+ pos: -18.5,-30.5
parent: 2
- - uid: 8069
+ - uid: 10273
components:
- type: Transform
- pos: 19.5,-54.5
+ pos: -20.5,-30.5
parent: 2
- - uid: 8070
+ - uid: 10274
components:
- type: Transform
- pos: 7.5,57.5
+ pos: -25.5,25.5
parent: 2
- - uid: 8071
+ - uid: 10275
components:
- type: Transform
- pos: -44.5,-84.5
+ pos: 28.5,-47.5
parent: 2
- - uid: 8072
+ - uid: 10276
components:
- type: Transform
- pos: 10.5,41.5
+ pos: 3.5,-37.5
parent: 2
- - uid: 8073
+ - uid: 10277
components:
- type: Transform
- pos: 12.5,73.5
+ pos: -13.5,-52.5
parent: 2
- - uid: 8074
+ - uid: 10278
components:
- type: Transform
- pos: 17.5,4.5
+ pos: -33.5,-52.5
parent: 2
- - uid: 8075
+ - uid: 10279
components:
- type: Transform
- pos: 12.5,72.5
+ pos: -13.5,-47.5
parent: 2
- - uid: 8076
+ - uid: 10280
components:
- type: Transform
- pos: 44.5,-28.5
+ pos: -28.5,-41.5
parent: 2
- - uid: 8077
+ - uid: 10281
components:
- type: Transform
- pos: 34.5,98.5
+ pos: 5.5,-35.5
parent: 2
- - uid: 8078
+ - uid: 10282
components:
- type: Transform
- pos: -6.5,-19.5
+ pos: 24.5,-20.5
parent: 2
- - uid: 8079
+ - uid: 10283
components:
- type: Transform
- pos: -38.5,-19.5
+ pos: 24.5,-21.5
parent: 2
- - uid: 8080
+ - uid: 10284
components:
- type: Transform
- pos: 52.5,-10.5
+ pos: -48.5,24.5
parent: 2
- - uid: 8081
+ - uid: 10285
components:
- type: Transform
- pos: 4.5,-49.5
+ pos: -48.5,23.5
parent: 2
- - uid: 8082
+ - uid: 10286
components:
- type: Transform
- pos: 33.5,-13.5
+ pos: -53.5,10.5
parent: 2
- - uid: 8083
+ - uid: 10287
components:
- type: Transform
- pos: -26.5,-59.5
+ pos: -48.5,27.5
parent: 2
- - uid: 8084
+ - uid: 10288
components:
- type: Transform
- pos: 33.5,-55.5
+ pos: -48.5,26.5
parent: 2
- - uid: 8085
+ - uid: 10289
components:
- type: Transform
- pos: 17.5,-51.5
+ pos: -19.5,-30.5
parent: 2
- - uid: 8086
+ - uid: 10290
components:
- type: Transform
- pos: -48.5,-74.5
+ pos: -13.5,-42.5
parent: 2
- - uid: 8087
+ - uid: 10291
components:
- type: Transform
- pos: 13.5,-1.5
+ pos: 27.5,-31.5
parent: 2
- - uid: 8088
+ - uid: 10292
components:
- type: Transform
- pos: -45.5,-84.5
+ pos: 35.5,-60.5
parent: 2
- - uid: 8089
+ - uid: 10293
components:
- type: Transform
- pos: 51.5,-10.5
+ pos: 35.5,-63.5
parent: 2
- - uid: 8090
+ - uid: 10294
components:
- type: Transform
- pos: -36.5,-19.5
+ pos: 27.5,-58.5
parent: 2
- - uid: 8091
+ - uid: 10295
components:
- type: Transform
- pos: -37.5,-19.5
+ pos: -33.5,-50.5
parent: 2
- - uid: 8092
+ - uid: 10296
components:
- type: Transform
- pos: -5.5,-19.5
+ pos: -4.5,-36.5
parent: 2
- - uid: 8093
+ - uid: 10297
components:
- type: Transform
- pos: -95.5,-6.5
+ pos: 35.5,-62.5
parent: 2
- - uid: 8094
+ - uid: 10298
components:
- type: Transform
- pos: 34.5,100.5
+ pos: 15.5,-38.5
parent: 2
- - uid: 8095
+ - uid: 10299
components:
- type: Transform
- pos: 27.5,29.5
+ pos: -31.5,-55.5
parent: 2
- - uid: 8096
+ - uid: 10300
components:
- type: Transform
- pos: -11.5,-19.5
+ pos: 27.5,-57.5
parent: 2
- - uid: 8097
+ - uid: 10301
components:
- type: Transform
- pos: -27.5,-33.5
+ pos: -3.5,14.5
parent: 2
- - uid: 8098
+ - uid: 10302
components:
- type: Transform
- pos: -55.5,-21.5
+ pos: -9.5,11.5
parent: 2
- - uid: 8099
+ - uid: 10303
components:
- type: Transform
- pos: 37.5,-50.5
+ pos: -0.5,15.5
parent: 2
- - uid: 8100
+ - uid: 10304
components:
- type: Transform
- pos: 21.5,28.5
+ pos: 8.5,11.5
parent: 2
- - uid: 8101
+ - uid: 10305
components:
- type: Transform
- pos: 14.5,67.5
+ pos: -4.5,14.5
parent: 2
- - uid: 8102
+ - uid: 10306
components:
- type: Transform
- pos: -50.5,-85.5
+ pos: -5.5,14.5
parent: 2
- - uid: 8103
+ - uid: 10307
components:
- type: Transform
- pos: -62.5,2.5
+ pos: 12.5,8.5
parent: 2
- - uid: 8104
+ - uid: 10308
components:
- type: Transform
- pos: -65.5,2.5
+ pos: 8.5,14.5
parent: 2
- - uid: 8105
+ - uid: 10309
components:
- type: Transform
- pos: 14.5,68.5
+ pos: -6.5,14.5
parent: 2
- - uid: 8106
+ - uid: 10310
components:
- type: Transform
- pos: 21.5,29.5
+ pos: 9.5,11.5
parent: 2
- - uid: 8107
+ - uid: 10311
components:
- type: Transform
- pos: 37.5,-49.5
+ pos: -2.5,15.5
parent: 2
- - uid: 8108
+ - uid: 10312
components:
- type: Transform
- pos: -48.5,-22.5
+ pos: -14.5,-39.5
parent: 2
- - uid: 8109
+ - uid: 10313
components:
- type: Transform
- pos: 25.5,96.5
+ pos: -28.5,-50.5
parent: 2
- - uid: 8110
+ - uid: 10314
components:
- type: Transform
- pos: 12.5,-2.5
+ pos: -11.5,-40.5
parent: 2
- - uid: 8111
+ - uid: 10315
components:
- type: Transform
- pos: -9.5,-19.5
+ pos: 29.5,-60.5
parent: 2
- - uid: 8112
+ - uid: 10316
components:
- type: Transform
- pos: -36.5,-26.5
+ pos: -13.5,-40.5
parent: 2
- - uid: 8113
+ - uid: 10317
components:
- type: Transform
- pos: 18.5,-54.5
+ pos: 9.5,-33.5
parent: 2
- - uid: 8114
+ - uid: 10318
components:
- type: Transform
- pos: -62.5,-20.5
+ pos: -13.5,-39.5
parent: 2
- - uid: 8115
+ - uid: 10319
components:
- type: Transform
- pos: 8.5,57.5
+ pos: 12.5,-1.5
parent: 2
- - uid: 8116
+ - uid: 10320
components:
- type: Transform
- pos: -52.5,-85.5
+ pos: 6.5,-53.5
parent: 2
- - uid: 8117
+ - uid: 10321
components:
- type: Transform
- pos: -43.5,-75.5
+ pos: -54.5,38.5
parent: 2
- - uid: 8118
+ - uid: 10322
components:
- type: Transform
- pos: -95.5,-9.5
+ pos: 32.5,-60.5
parent: 2
- - uid: 8119
+ - uid: 10323
components:
- type: Transform
- pos: -59.5,60.5
+ pos: -57.5,10.5
parent: 2
- - uid: 8120
+ - uid: 10324
components:
- type: Transform
- pos: -95.5,-7.5
+ pos: -49.5,9.5
parent: 2
- - uid: 8121
+ - uid: 10325
components:
- type: Transform
- pos: -64.5,2.5
+ pos: -72.5,-25.5
parent: 2
- - uid: 8122
+ - uid: 10326
components:
- type: Transform
- pos: -17.5,-11.5
+ pos: -58.5,10.5
parent: 2
- - uid: 8123
+ - uid: 10327
components:
- type: Transform
- pos: -94.5,-10.5
+ pos: -52.5,9.5
parent: 2
- - uid: 8124
+ - uid: 10328
components:
- type: Transform
- pos: -91.5,-10.5
+ pos: -60.5,10.5
parent: 2
- - uid: 8125
+ - uid: 10329
components:
- type: Transform
- pos: 33.5,-9.5
+ pos: -13.5,-34.5
parent: 2
- - uid: 8126
+ - uid: 10330
components:
- type: Transform
- pos: -95.5,-4.5
+ pos: -10.5,-34.5
parent: 2
- - uid: 8127
+ - uid: 10331
components:
- type: Transform
- pos: 23.5,90.5
+ pos: -21.5,-27.5
parent: 2
- - uid: 8128
+ - uid: 10332
components:
- type: Transform
- pos: -40.5,40.5
+ pos: 4.5,-49.5
parent: 2
- - uid: 8129
+ - uid: 10333
components:
- type: Transform
- pos: -89.5,-8.5
+ pos: -11.5,-34.5
parent: 2
- - uid: 8130
+ - uid: 10334
components:
- type: Transform
- pos: -94.5,-4.5
+ pos: -21.5,-31.5
parent: 2
- - uid: 8131
+ - uid: 10335
components:
- type: Transform
- pos: -93.5,-10.5
+ pos: -63.5,14.5
parent: 2
- - uid: 8132
+ - uid: 10336
components:
- type: Transform
- pos: 38.5,-4.5
+ pos: -12.5,-34.5
parent: 2
- - uid: 8133
+ - uid: 10337
components:
- type: Transform
- pos: -46.5,-74.5
+ pos: -9.5,-34.5
parent: 2
- - uid: 8134
+ - uid: 10338
components:
- type: Transform
- pos: -51.5,-7.5
+ pos: -20.5,-27.5
parent: 2
- - uid: 8135
+ - uid: 10339
components:
- type: Transform
- pos: -52.5,-39.5
+ pos: -21.5,-28.5
parent: 2
- - uid: 8136
+ - uid: 10340
components:
- type: Transform
- pos: -79.5,74.5
+ pos: 4.5,-47.5
parent: 2
- - uid: 8137
+ - uid: 10341
components:
- type: Transform
- pos: -44.5,-1.5
+ pos: -29.5,23.5
parent: 2
- - uid: 8138
+ - uid: 10342
components:
- type: Transform
- pos: -46.5,-2.5
+ pos: -19.5,-34.5
parent: 2
- - uid: 8139
+ - uid: 10343
components:
- type: Transform
- pos: 48.5,0.5
+ pos: -17.5,-34.5
parent: 2
- - uid: 8140
+ - uid: 10344
components:
- type: Transform
- pos: 60.5,25.5
+ pos: -17.5,-29.5
parent: 2
- - uid: 8141
+ - uid: 10345
components:
- type: Transform
- pos: -44.5,-2.5
+ pos: -19.5,-39.5
parent: 2
- - uid: 8142
+ - uid: 10346
components:
- type: Transform
- pos: -58.5,45.5
+ pos: 32.5,31.5
parent: 2
- - uid: 8143
+ - uid: 10347
components:
- type: Transform
- pos: -53.5,-39.5
+ pos: 67.5,0.5
parent: 2
- - uid: 8144
+ - uid: 10348
components:
- type: Transform
- pos: -55.5,-39.5
+ pos: 67.5,26.5
parent: 2
- - uid: 8145
+ - uid: 10349
components:
- type: Transform
- pos: 68.5,22.5
+ pos: -16.5,-39.5
parent: 2
- - uid: 8146
+ - uid: 10350
components:
- type: Transform
- pos: -118.5,29.5
+ pos: -9.5,8.5
parent: 2
- - uid: 8147
+ - uid: 10351
components:
- type: Transform
- pos: -49.5,39.5
+ pos: -21.5,-40.5
parent: 2
- - uid: 8148
+ - uid: 10352
components:
- type: Transform
- pos: -69.5,5.5
+ pos: -18.5,-34.5
parent: 2
- - uid: 8149
+ - uid: 10353
components:
- type: Transform
- pos: -69.5,7.5
+ pos: 68.5,0.5
parent: 2
- - uid: 8150
+ - uid: 10354
components:
- type: Transform
- pos: -69.5,4.5
+ pos: -10.5,5.5
parent: 2
- - uid: 8151
+ - uid: 10355
components:
- type: Transform
- pos: -69.5,8.5
+ pos: 33.5,-23.5
parent: 2
- - uid: 8152
+ - uid: 10356
components:
- type: Transform
- pos: -70.5,8.5
+ pos: 69.5,0.5
parent: 2
- - uid: 8153
+ - uid: 10357
components:
- type: Transform
- pos: -49.5,38.5
+ pos: 43.5,-36.5
parent: 2
- - uid: 8154
+ - uid: 10358
components:
- type: Transform
- pos: -18.5,-29.5
+ pos: 29.5,31.5
parent: 2
- - uid: 8155
+ - uid: 10359
components:
- type: Transform
- pos: 55.5,22.5
+ pos: 69.5,-0.5
parent: 2
- - uid: 8156
+ - uid: 10360
components:
- type: Transform
- pos: 47.5,13.5
+ pos: -57.5,-1.5
parent: 2
- - uid: 8157
+ - uid: 10361
components:
- type: Transform
- pos: -54.5,39.5
+ pos: 13.5,36.5
parent: 2
- - uid: 8158
+ - uid: 10362
components:
- type: Transform
- pos: -54.5,37.5
+ pos: 26.5,-20.5
parent: 2
- - uid: 8159
+ - uid: 10363
components:
- type: Transform
- pos: -54.5,35.5
+ pos: -38.5,-1.5
parent: 2
- - uid: 8160
+ - uid: 10364
components:
- type: Transform
- pos: -54.5,34.5
+ pos: -58.5,13.5
parent: 2
- - uid: 8161
+ - uid: 10365
components:
- type: Transform
- pos: 48.5,1.5
+ pos: -57.5,-16.5
parent: 2
- - uid: 8162
+ - uid: 10366
components:
- type: Transform
- pos: -36.5,-4.5
+ pos: 0.5,33.5
parent: 2
- - uid: 8163
+ - uid: 10367
components:
- type: Transform
- pos: -48.5,6.5
+ pos: -18.5,7.5
parent: 2
- - uid: 8164
+ - uid: 10368
components:
- type: Transform
- pos: 48.5,2.5
+ pos: 68.5,26.5
parent: 2
- - uid: 8165
+ - uid: 10369
components:
- type: Transform
- pos: 48.5,3.5
+ pos: 10.5,63.5
parent: 2
- - uid: 8166
+ - uid: 10370
components:
- type: Transform
- pos: -50.5,2.5
+ pos: 69.5,-1.5
parent: 2
- - uid: 8167
+ - uid: 10371
components:
- type: Transform
- pos: 48.5,4.5
+ pos: -62.5,14.5
parent: 2
- - uid: 8168
+ - uid: 10372
components:
- type: Transform
- pos: -51.5,-2.5
+ pos: -57.5,-0.5
parent: 2
- - uid: 8169
+ - uid: 10373
components:
- type: Transform
- pos: 28.5,103.5
+ pos: -25.5,-48.5
parent: 2
- - uid: 8170
+ - uid: 10374
components:
- type: Transform
- pos: 28.5,102.5
+ pos: -28.5,-47.5
parent: 2
- - uid: 8171
+ - uid: 10375
components:
- type: Transform
- pos: -50.5,45.5
+ pos: 14.5,-35.5
parent: 2
- - uid: 8172
+ - uid: 10376
components:
- type: Transform
- pos: 48.5,5.5
+ pos: -16.5,-34.5
parent: 2
- - uid: 8173
+ - uid: 10377
components:
- type: Transform
- pos: -52.5,2.5
+ pos: -58.5,-16.5
parent: 2
- - uid: 8174
+ - uid: 10378
components:
- type: Transform
- pos: -41.5,-73.5
+ pos: 69.5,-2.5
parent: 2
- - uid: 8175
+ - uid: 10379
components:
- type: Transform
- pos: -57.5,45.5
+ pos: 29.5,-28.5
parent: 2
- - uid: 8176
+ - uid: 10380
components:
- type: Transform
- pos: -59.5,66.5
+ pos: -21.5,-33.5
parent: 2
- - uid: 8177
+ - uid: 10381
components:
- type: Transform
- pos: -58.5,44.5
+ pos: 31.5,-23.5
parent: 2
- - uid: 8178
+ - uid: 10382
components:
- type: Transform
- pos: 48.5,6.5
+ pos: 26.5,-19.5
parent: 2
- - uid: 8179
+ - uid: 10383
components:
- type: Transform
- pos: 48.5,7.5
+ pos: 14.5,-37.5
parent: 2
- - uid: 8180
+ - uid: 10384
components:
- type: Transform
- pos: 19.5,-54.5
+ pos: -28.5,-39.5
parent: 2
- - uid: 8181
+ - uid: 10385
components:
- type: Transform
- pos: 48.5,8.5
+ pos: 4.5,-52.5
parent: 2
- - uid: 8182
-=======
- - uid: 3197
+ - uid: 10386
components:
- type: Transform
- pos: -25.5,49.5
+ pos: -17.5,-39.5
parent: 2
- - uid: 3198
+ - uid: 10387
components:
- type: Transform
- pos: -25.5,48.5
+ pos: 69.5,-3.5
parent: 2
- - uid: 3199
+ - uid: 10388
components:
- type: Transform
- pos: -25.5,47.5
+ pos: 16.5,-39.5
parent: 2
- - uid: 3200
+ - uid: 10389
components:
- type: Transform
- pos: -24.5,47.5
+ pos: 70.5,-3.5
parent: 2
- - uid: 3201
+ - uid: 10390
components:
- type: Transform
- pos: -26.5,47.5
+ pos: 7.5,-9.5
parent: 2
- - uid: 3202
+ - uid: 10391
components:
- type: Transform
- pos: -27.5,47.5
+ pos: -27.5,-68.5
parent: 2
- - uid: 3203
+ - uid: 10392
components:
- type: Transform
- pos: -28.5,47.5
+ pos: 71.5,-3.5
parent: 2
- - uid: 3204
+ - uid: 10393
components:
- type: Transform
- pos: -29.5,47.5
+ pos: -31.5,37.5
parent: 2
- - uid: 3205
+ - uid: 10394
components:
- type: Transform
- pos: -30.5,47.5
+ pos: -41.5,49.5
parent: 2
- - uid: 3206
+ - uid: 10395
components:
- type: Transform
- pos: -31.5,47.5
+ pos: 72.5,-3.5
parent: 2
- - uid: 3207
+ - uid: 10396
components:
- type: Transform
- pos: -32.5,47.5
+ pos: 17.5,-49.5
parent: 2
- - uid: 3208
+ - uid: 10397
components:
- type: Transform
- pos: -33.5,47.5
+ pos: 5.5,-43.5
parent: 2
- - uid: 3209
+ - uid: 10398
components:
- type: Transform
- pos: -33.5,48.5
+ pos: 33.5,31.5
parent: 2
- - uid: 3210
+ - uid: 10399
components:
- type: Transform
- pos: -33.5,49.5
+ pos: 28.5,-43.5
parent: 2
- - uid: 3211
+ - uid: 10400
components:
- type: Transform
- pos: -34.5,49.5
+ pos: 27.5,-19.5
parent: 2
- - uid: 3212
+ - uid: 10401
components:
- type: Transform
- pos: -33.5,50.5
+ pos: -51.5,29.5
parent: 2
- - uid: 3213
+ - uid: 10402
components:
- type: Transform
- pos: -33.5,51.5
+ pos: 73.5,-3.5
parent: 2
- - uid: 3214
+ - uid: 10403
components:
- type: Transform
- pos: -33.5,52.5
+ pos: -65.5,14.5
parent: 2
- - uid: 3215
+ - uid: 10404
components:
- type: Transform
- pos: -33.5,53.5
+ pos: 74.5,-3.5
parent: 2
- - uid: 3216
+ - uid: 10405
components:
- type: Transform
- pos: -32.5,53.5
+ pos: 74.5,-2.5
parent: 2
- - uid: 3217
+ - uid: 10406
components:
- type: Transform
- pos: -31.5,53.5
+ pos: -48.5,22.5
parent: 2
- - uid: 3218
+ - uid: 10407
components:
- type: Transform
- pos: -30.5,53.5
+ pos: 30.5,31.5
parent: 2
- - uid: 3219
+ - uid: 10408
components:
- type: Transform
- pos: -29.5,53.5
+ pos: 30.5,-25.5
parent: 2
- - uid: 3220
+ - uid: 10409
components:
- type: Transform
- pos: -28.5,53.5
+ pos: 28.5,-44.5
parent: 2
- - uid: 3221
+ - uid: 10410
components:
- type: Transform
- pos: -27.5,53.5
+ pos: -28.5,-40.5
parent: 2
- - uid: 3222
+ - uid: 10411
components:
- type: Transform
- pos: -29.5,54.5
+ pos: 4.5,-51.5
parent: 2
- - uid: 3223
+ - uid: 10412
components:
- type: Transform
- pos: -36.5,49.5
+ pos: 35.5,31.5
parent: 2
- - uid: 3224
+ - uid: 10413
components:
- type: Transform
- pos: -37.5,49.5
+ pos: 6.5,14.5
parent: 2
- - uid: 3225
+ - uid: 10414
components:
- type: Transform
- pos: -37.5,48.5
+ pos: 5.5,14.5
parent: 2
- - uid: 3226
+ - uid: 10415
components:
- type: Transform
- pos: -37.5,47.5
+ pos: 4.5,14.5
parent: 2
- - uid: 3227
+ - uid: 10416
components:
- type: Transform
- pos: -37.5,46.5
+ pos: -28.5,-48.5
parent: 2
- - uid: 3228
+ - uid: 10417
components:
- type: Transform
- pos: -37.5,45.5
+ pos: 31.5,31.5
parent: 2
- - uid: 3229
+ - uid: 10418
components:
- type: Transform
- pos: -38.5,49.5
+ pos: 17.5,-50.5
parent: 2
- - uid: 3230
+ - uid: 10419
components:
- type: Transform
- pos: -36.5,51.5
+ pos: -50.5,29.5
parent: 2
- - uid: 3231
+ - uid: 10420
components:
- type: Transform
- pos: -36.5,50.5
+ pos: -60.5,-16.5
parent: 2
- - uid: 3232
+ - uid: 10421
components:
- type: Transform
- pos: -36.5,45.5
+ pos: -48.5,25.5
parent: 2
- - uid: 3233
+ - uid: 10422
components:
- type: Transform
- pos: -39.5,55.5
+ pos: 10.5,-33.5
parent: 2
- - uid: 3234
+ - uid: 10423
components:
- type: Transform
- pos: -39.5,54.5
+ pos: 11.5,-1.5
parent: 2
- - uid: 3235
+ - uid: 10424
components:
- type: Transform
- pos: -39.5,53.5
+ pos: 3.5,14.5
parent: 2
- - uid: 3236
+ - uid: 10425
components:
- type: Transform
- pos: -38.5,53.5
+ pos: 2.5,14.5
parent: 2
- - uid: 3237
+ - uid: 10426
components:
- type: Transform
- pos: -37.5,53.5
+ pos: 6.5,-43.5
parent: 2
- - uid: 3238
+ - uid: 10427
components:
- type: Transform
- pos: -36.5,53.5
+ pos: 28.5,-60.5
parent: 2
- - uid: 3239
+ - uid: 10428
components:
- type: Transform
- pos: -36.5,54.5
+ pos: -28.5,-52.5
parent: 2
- - uid: 3240
+ - uid: 10429
components:
- type: Transform
- pos: -36.5,55.5
+ pos: -73.5,5.5
parent: 2
- - uid: 3241
+ - uid: 10430
components:
- type: Transform
- pos: -31.5,46.5
+ pos: -8.5,-11.5
parent: 2
- - uid: 3242
+ - uid: 10431
components:
- type: Transform
- pos: -31.5,45.5
+ pos: 13.5,-38.5
parent: 2
- - uid: 3243
+ - uid: 10432
components:
- type: Transform
- pos: -29.5,46.5
+ pos: 16.5,-46.5
parent: 2
- - uid: 3244
+ - uid: 10433
components:
- type: Transform
- pos: -29.5,45.5
+ pos: -57.5,0.5
parent: 2
- - uid: 3245
+ - uid: 10434
components:
- type: Transform
- pos: -28.5,44.5
+ pos: 16.5,-45.5
parent: 2
- - uid: 3246
+ - uid: 10435
components:
- type: Transform
- pos: -28.5,43.5
+ pos: -57.5,1.5
parent: 2
- - uid: 3247
+ - uid: 10436
components:
- type: Transform
- pos: -28.5,42.5
+ pos: 16.5,-44.5
parent: 2
- - uid: 3248
+ - uid: 10437
components:
- type: Transform
- pos: -29.5,42.5
+ pos: 16.5,-43.5
parent: 2
- - uid: 3249
+ - uid: 10438
components:
- type: Transform
- pos: -30.5,42.5
+ pos: -68.5,-30.5
parent: 2
- - uid: 3250
+ - uid: 10439
components:
- type: Transform
- pos: -31.5,42.5
+ pos: -70.5,-30.5
parent: 2
- - uid: 3251
+ - uid: 10440
components:
- type: Transform
- pos: -32.5,42.5
+ pos: -69.5,-30.5
parent: 2
- - uid: 3252
+ - uid: 10441
components:
- type: Transform
- pos: -32.5,41.5
+ pos: 50.5,-46.5
parent: 2
- - uid: 3253
+ - uid: 10442
components:
- type: Transform
- pos: -27.5,42.5
+ pos: 45.5,-3.5
parent: 2
- - uid: 3254
+ - uid: 10443
components:
- type: Transform
- pos: -26.5,42.5
+ pos: 40.5,-3.5
parent: 2
- - uid: 3255
+ - uid: 10444
components:
- type: Transform
- pos: -25.5,42.5
+ pos: 44.5,-7.5
parent: 2
- - uid: 3256
+ - uid: 10445
components:
- type: Transform
- pos: -25.5,41.5
+ pos: 34.5,-0.5
parent: 2
- - uid: 3257
+ - uid: 10446
components:
- type: Transform
- pos: -29.5,41.5
+ pos: 35.5,-0.5
parent: 2
- - uid: 3258
+ - uid: 10447
components:
- type: Transform
- pos: -29.5,40.5
+ pos: 54.5,-28.5
parent: 2
- - uid: 3259
+ - uid: 10448
components:
- type: Transform
- pos: -32.5,39.5
+ pos: 24.5,12.5
parent: 2
- - uid: 3260
+ - uid: 10449
components:
- type: Transform
- pos: -32.5,38.5
+ pos: -73.5,10.5
parent: 2
- - uid: 3261
+ - uid: 10450
components:
- type: Transform
- pos: -32.5,37.5
+ pos: 0.5,-41.5
parent: 2
- - uid: 3262
+ - uid: 10451
components:
- type: Transform
- pos: -32.5,36.5
+ pos: 26.5,12.5
parent: 2
- - uid: 3263
+ - uid: 10452
components:
- type: Transform
- pos: -32.5,35.5
+ pos: 51.5,-44.5
parent: 2
- - uid: 3264
+ - uid: 10453
components:
- type: Transform
- pos: -32.5,34.5
+ pos: 35.5,32.5
parent: 2
- - uid: 3265
+ - uid: 10454
components:
- type: Transform
- pos: -32.5,33.5
+ pos: 50.5,-20.5
parent: 2
- - uid: 3266
+ - uid: 10455
components:
- type: Transform
- pos: -32.5,32.5
+ pos: 26.5,56.5
parent: 2
- - uid: 3267
+ - uid: 10456
components:
- type: Transform
- pos: -31.5,35.5
+ pos: -15.5,23.5
parent: 2
- - uid: 3268
+ - uid: 10457
components:
- type: Transform
- pos: -30.5,35.5
+ pos: 0.5,30.5
parent: 2
- - uid: 3269
+ - uid: 10458
components:
- type: Transform
- pos: -29.5,35.5
+ pos: 10.5,43.5
parent: 2
- - uid: 3270
+ - uid: 10459
components:
- type: Transform
- pos: -28.5,35.5
+ pos: 14.5,67.5
parent: 2
- - uid: 3271
+ - uid: 10460
components:
- type: Transform
- pos: -33.5,31.5
+ pos: 34.5,31.5
parent: 2
- - uid: 3272
+ - uid: 10461
components:
- type: Transform
- pos: -33.5,30.5
+ pos: -49.5,-0.5
parent: 2
- - uid: 3273
+ - uid: 10462
components:
- type: Transform
- pos: -33.5,29.5
+ pos: -48.5,0.5
parent: 2
- - uid: 3274
+ - uid: 10463
components:
- type: Transform
- pos: -33.5,28.5
+ pos: -5.5,-11.5
parent: 2
- - uid: 3275
+ - uid: 10464
components:
- type: Transform
- pos: -33.5,27.5
+ pos: 35.5,33.5
parent: 2
- - uid: 3276
+ - uid: 10465
components:
- type: Transform
- pos: -33.5,26.5
+ pos: 17.5,14.5
parent: 2
- - uid: 3277
+ - uid: 10466
components:
- type: Transform
- pos: -33.5,25.5
+ pos: -16.5,-80.5
parent: 2
- - uid: 3278
+ - uid: 10467
components:
- type: Transform
- pos: -32.5,27.5
+ pos: 34.5,33.5
parent: 2
- - uid: 3279
+ - uid: 10468
components:
- type: Transform
- pos: -31.5,27.5
+ pos: 17.5,15.5
parent: 2
- - uid: 3280
+ - uid: 10469
components:
- type: Transform
- pos: -30.5,27.5
+ pos: -22.5,-77.5
parent: 2
- - uid: 3281
+ - uid: 10470
components:
- type: Transform
- pos: -29.5,27.5
+ pos: -44.5,-15.5
parent: 2
- - uid: 3282
+ - uid: 10471
components:
- type: Transform
- pos: -28.5,27.5
+ pos: -49.5,-7.5
parent: 2
- - uid: 3283
+ - uid: 10472
components:
- type: Transform
- pos: -30.5,28.5
+ pos: 17.5,-11.5
parent: 2
- - uid: 3284
+ - uid: 10473
components:
- type: Transform
- pos: -28.5,30.5
+ pos: -18.5,-13.5
parent: 2
- - uid: 3285
+ - uid: 10474
components:
- type: Transform
- pos: -28.5,34.5
+ pos: -18.5,-12.5
parent: 2
- - uid: 3286
+ - uid: 10475
components:
- type: Transform
- pos: -28.5,33.5
+ pos: 10.5,36.5
parent: 2
- - uid: 3287
+ - uid: 10476
components:
- type: Transform
- pos: -28.5,32.5
+ pos: 17.5,61.5
parent: 2
- - uid: 3288
+ - uid: 10477
components:
- type: Transform
- pos: -28.5,31.5
+ pos: -0.5,23.5
parent: 2
- - uid: 3289
+ - uid: 10478
components:
- type: Transform
- pos: -28.5,30.5
+ pos: -18.5,14.5
parent: 2
- - uid: 3290
+ - uid: 10479
components:
- type: Transform
- pos: -28.5,36.5
+ pos: -18.5,15.5
parent: 2
- - uid: 3291
+ - uid: 10480
components:
- type: Transform
- pos: -28.5,37.5
+ pos: 17.5,62.5
parent: 2
- - uid: 3292
+ - uid: 10481
components:
- type: Transform
- pos: -28.5,38.5
+ pos: 8.5,38.5
parent: 2
- - uid: 3293
+ - uid: 10482
components:
- type: Transform
- pos: -29.5,38.5
+ pos: 16.5,61.5
parent: 2
- - uid: 3294
+ - uid: 10483
components:
- type: Transform
- pos: -27.5,30.5
+ pos: -70.5,8.5
parent: 2
- - uid: 3295
+ - uid: 10484
components:
- type: Transform
- pos: -26.5,30.5
+ pos: 27.5,56.5
parent: 2
- - uid: 3296
+ - uid: 10485
components:
- type: Transform
- pos: -25.5,30.5
+ pos: -44.5,-7.5
parent: 2
- - uid: 3297
+ - uid: 10486
components:
- type: Transform
- pos: -25.5,31.5
+ pos: 28.5,56.5
parent: 2
- - uid: 3298
+ - uid: 10487
components:
- type: Transform
- pos: -25.5,32.5
+ pos: 41.5,-44.5
parent: 2
- - uid: 3299
+ - uid: 10488
components:
- type: Transform
- pos: -25.5,33.5
+ pos: 56.5,-23.5
parent: 2
- - uid: 3300
+ - uid: 10489
components:
- type: Transform
- pos: -25.5,34.5
+ pos: 8.5,36.5
parent: 2
- - uid: 3301
+ - uid: 10490
components:
- type: Transform
- pos: -25.5,35.5
+ pos: 14.5,61.5
parent: 2
- - uid: 3302
+ - uid: 10491
components:
- type: Transform
- pos: -25.5,36.5
+ pos: 8.5,53.5
parent: 2
- - uid: 3303
+ - uid: 10492
components:
- type: Transform
- pos: -25.5,37.5
+ pos: 16.5,-22.5
parent: 2
- - uid: 3304
+ - uid: 10493
components:
- type: Transform
- pos: -25.5,38.5
+ pos: 9.5,52.5
parent: 2
- - uid: 3305
+ - uid: 10494
components:
- type: Transform
- pos: -25.5,39.5
+ pos: 16.5,-20.5
parent: 2
- - uid: 3306
+ - uid: 10495
components:
- type: Transform
- pos: -27.5,38.5
+ pos: 14.5,66.5
parent: 2
- - uid: 3307
+ - uid: 10496
components:
- type: Transform
- pos: -26.5,38.5
+ pos: -51.5,-6.5
parent: 2
- - uid: 3308
+ - uid: 10497
components:
- type: Transform
- pos: -15.5,53.5
+ pos: -8.5,-71.5
parent: 2
- - uid: 3309
+ - uid: 10498
components:
- type: Transform
- pos: -15.5,52.5
+ pos: 48.5,-27.5
parent: 2
- - uid: 3310
+ - uid: 10499
components:
- type: Transform
- pos: -14.5,52.5
+ pos: 42.5,-46.5
parent: 2
- - uid: 3311
+ - uid: 10500
components:
- type: Transform
- pos: -14.5,51.5
+ pos: -47.5,-7.5
parent: 2
- - uid: 3312
+ - uid: 10501
components:
- type: Transform
- pos: -14.5,50.5
+ pos: -36.5,-62.5
parent: 2
- - uid: 3313
+ - uid: 10502
components:
- type: Transform
- pos: -14.5,49.5
+ pos: 3.5,62.5
parent: 2
- - uid: 3314
+ - uid: 10503
components:
- type: Transform
- pos: -14.5,48.5
+ pos: -67.5,-30.5
parent: 2
- - uid: 3315
+ - uid: 10504
components:
- type: Transform
- pos: -14.5,47.5
+ pos: -66.5,-30.5
parent: 2
- - uid: 3316
+ - uid: 10505
components:
- type: Transform
- pos: -16.5,52.5
+ pos: -71.5,-30.5
parent: 2
- - uid: 3317
+ - uid: 10506
components:
- type: Transform
- pos: -17.5,52.5
+ pos: -36.5,-1.5
parent: 2
- - uid: 3318
+ - uid: 10507
components:
- type: Transform
- pos: -18.5,52.5
+ pos: -50.5,13.5
parent: 2
- - uid: 3319
+ - uid: 10508
components:
- type: Transform
- pos: -19.5,52.5
+ pos: -48.5,31.5
parent: 2
- - uid: 3320
+ - uid: 10509
components:
- type: Transform
- pos: -20.5,52.5
+ pos: -50.5,15.5
parent: 2
- - uid: 3321
+ - uid: 10510
components:
- type: Transform
- pos: -21.5,52.5
+ pos: -20.5,26.5
parent: 2
- - uid: 3322
+ - uid: 10511
components:
- type: Transform
- pos: -22.5,52.5
+ pos: -29.5,54.5
parent: 2
- - uid: 3323
+ - uid: 10512
components:
- type: Transform
- pos: -22.5,51.5
+ pos: -25.5,-30.5
parent: 2
- - uid: 3324
+ - uid: 10513
components:
- type: Transform
- pos: -22.5,50.5
+ pos: -39.5,37.5
parent: 2
- - uid: 3325
+ - uid: 10514
components:
- type: Transform
- pos: -22.5,49.5
+ pos: -40.5,57.5
parent: 2
- - uid: 3326
+ - uid: 10515
components:
- type: Transform
- pos: -22.5,48.5
+ pos: -44.5,38.5
parent: 2
- - uid: 3327
+ - uid: 10516
components:
- type: Transform
- pos: -22.5,47.5
+ pos: -31.5,-78.5
parent: 2
- - uid: 3328
+ - uid: 10517
components:
- type: Transform
- pos: -22.5,46.5
+ pos: 12.5,-8.5
parent: 2
- - uid: 3329
+ - uid: 10518
components:
- type: Transform
- pos: -22.5,45.5
+ pos: -39.5,57.5
parent: 2
- - uid: 3330
+ - uid: 10519
components:
- type: Transform
- pos: -22.5,44.5
+ pos: -41.5,37.5
parent: 2
- - uid: 3331
+ - uid: 10520
components:
- type: Transform
- pos: -22.5,43.5
+ pos: -41.5,57.5
parent: 2
- - uid: 3332
+ - uid: 10521
components:
- type: Transform
- pos: -22.5,42.5
+ pos: 6.5,68.5
parent: 2
- - uid: 3333
+ - uid: 10522
components:
- type: Transform
- pos: -22.5,41.5
+ pos: -18.5,34.5
parent: 2
- - uid: 3334
+ - uid: 10523
components:
- type: Transform
- pos: -22.5,40.5
+ pos: -18.5,-7.5
parent: 2
- - uid: 3335
+ - uid: 10524
components:
- type: Transform
- pos: -22.5,39.5
+ pos: -28.5,56.5
parent: 2
- - uid: 3336
+ - uid: 10525
components:
- type: Transform
- pos: -22.5,38.5
+ pos: 23.5,36.5
parent: 2
- - uid: 3337
+ - uid: 10526
components:
- type: Transform
- pos: -22.5,37.5
+ pos: -51.5,-7.5
parent: 2
- - uid: 3338
+ - uid: 10527
components:
- type: Transform
- pos: -22.5,36.5
+ pos: 14.5,65.5
parent: 2
- - uid: 3339
+ - uid: 10528
components:
- type: Transform
- pos: -22.5,35.5
+ pos: -51.5,-7.5
parent: 2
- - uid: 3340
+ - uid: 10529
components:
- type: Transform
- pos: -22.5,34.5
+ pos: -18.5,-9.5
parent: 2
- - uid: 3341
+ - uid: 10530
components:
- type: Transform
- pos: -22.5,33.5
+ pos: -18.5,18.5
parent: 2
- - uid: 3342
+ - uid: 10531
components:
- type: Transform
- pos: -22.5,32.5
+ pos: 17.5,64.5
parent: 2
- - uid: 3343
+ - uid: 10532
components:
- type: Transform
- pos: -22.5,31.5
+ pos: 17.5,-9.5
parent: 2
- - uid: 3344
+ - uid: 10533
components:
- type: Transform
- pos: -22.5,30.5
+ pos: -9.5,23.5
parent: 2
- - uid: 3345
+ - uid: 10534
components:
- type: Transform
- pos: -22.5,29.5
+ pos: -18.5,-11.5
parent: 2
- - uid: 3346
+ - uid: 10535
components:
- type: Transform
- pos: -22.5,28.5
+ pos: 16.5,56.5
parent: 2
- - uid: 3347
+ - uid: 10536
components:
- type: Transform
- pos: -21.5,28.5
+ pos: 19.5,56.5
parent: 2
- - uid: 3348
+ - uid: 10537
components:
- type: Transform
- pos: -20.5,28.5
+ pos: 20.5,56.5
parent: 2
- - uid: 3349
+ - uid: 10538
components:
- type: Transform
- pos: -20.5,27.5
+ pos: 21.5,56.5
parent: 2
- - uid: 3350
+ - uid: 10539
components:
- type: Transform
- pos: -20.5,26.5
+ pos: 37.5,-65.5
parent: 2
- - uid: 3351
+ - uid: 10540
components:
- type: Transform
- pos: -17.5,26.5
+ pos: 15.5,56.5
parent: 2
- - uid: 3352
+ - uid: 10541
components:
- type: Transform
- pos: -17.5,35.5
+ pos: 22.5,56.5
parent: 2
- - uid: 3353
+ - uid: 10542
components:
- type: Transform
- pos: -21.5,46.5
+ pos: 37.5,-66.5
parent: 2
- - uid: 3354
+ - uid: 10543
components:
- type: Transform
- pos: -20.5,46.5
+ pos: -42.5,39.5
parent: 2
- - uid: 3355
+ - uid: 10544
components:
- type: Transform
- pos: -19.5,46.5
+ pos: -44.5,39.5
parent: 2
- - uid: 3356
+ - uid: 10545
components:
- type: Transform
- pos: -18.5,46.5
+ pos: -43.5,39.5
parent: 2
- - uid: 3357
+ - uid: 10546
components:
- type: Transform
- pos: -17.5,46.5
+ pos: -39.5,-3.5
parent: 2
- - uid: 3358
+ - uid: 10547
components:
- type: Transform
- pos: -16.5,46.5
+ pos: -40.5,28.5
parent: 2
- - uid: 3359
+ - uid: 10548
components:
- type: Transform
- pos: -15.5,46.5
+ pos: -55.5,29.5
parent: 2
- - uid: 3360
+ - uid: 10549
components:
- type: Transform
- pos: -18.5,53.5
+ pos: -73.5,-23.5
parent: 2
- - uid: 3361
+ - uid: 10550
components:
- type: Transform
- pos: -16.5,35.5
+ pos: -55.5,28.5
parent: 2
- - uid: 3362
+ - uid: 10551
components:
- type: Transform
- pos: -15.5,35.5
+ pos: 37.5,-67.5
parent: 2
- - uid: 3363
+ - uid: 10552
components:
- type: Transform
- pos: -14.5,35.5
+ pos: -29.5,39.5
parent: 2
- - uid: 3364
+ - uid: 10553
components:
- type: Transform
- pos: -14.5,38.5
+ pos: 37.5,-68.5
parent: 2
- - uid: 3365
+ - uid: 10554
components:
- type: Transform
- pos: -14.5,39.5
+ pos: -30.5,16.5
parent: 2
- - uid: 3366
+ - uid: 10555
components:
- type: Transform
- pos: -14.5,40.5
+ pos: -73.5,-22.5
parent: 2
- - uid: 3367
+ - uid: 10556
components:
- type: Transform
- pos: -14.5,41.5
+ pos: 38.5,-68.5
parent: 2
- - uid: 3368
+ - uid: 10557
components:
- type: Transform
- pos: -14.5,42.5
+ pos: -65.5,-30.5
parent: 2
- - uid: 3369
+ - uid: 10558
components:
- type: Transform
- pos: -14.5,43.5
+ pos: -70.5,15.5
parent: 2
- - uid: 3370
+ - uid: 10559
components:
- type: Transform
- pos: -14.5,44.5
+ pos: -57.5,-13.5
parent: 2
- - uid: 3371
+ - uid: 10560
components:
- type: Transform
- pos: -14.5,45.5
+ pos: -61.5,-5.5
parent: 2
- - uid: 3372
+ - uid: 10561
components:
- type: Transform
- pos: -14.5,46.5
+ pos: -12.5,-52.5
parent: 2
- - uid: 3373
+ - uid: 10562
components:
- type: Transform
- pos: -14.5,47.5
+ pos: 34.5,-19.5
parent: 2
- - uid: 3374
+ - uid: 10563
components:
- type: Transform
- pos: -18.5,51.5
+ pos: 16.5,-42.5
parent: 2
- - uid: 3375
+ - uid: 10564
components:
- type: Transform
- pos: -18.5,50.5
+ pos: 25.5,-37.5
parent: 2
- - uid: 3376
+ - uid: 10565
components:
- type: Transform
- pos: -18.5,49.5
+ pos: 39.5,-68.5
parent: 2
- - uid: 3377
+ - uid: 10566
components:
- type: Transform
- pos: -18.5,48.5
+ pos: 40.5,-68.5
parent: 2
- - uid: 3378
+ - uid: 10567
components:
- type: Transform
- pos: -18.5,47.5
+ pos: 41.5,-68.5
parent: 2
- - uid: 3379
+ - uid: 10568
components:
- type: Transform
- pos: -18.5,46.5
+ pos: 10.5,-0.5
parent: 2
- - uid: 3380
+ - uid: 10569
components:
- type: Transform
- pos: -18.5,45.5
+ pos: 42.5,-68.5
parent: 2
- - uid: 3381
+ - uid: 10570
components:
- type: Transform
- pos: -18.5,44.5
+ pos: 10.5,2.5
parent: 2
- - uid: 3382
+ - uid: 10571
components:
- type: Transform
- pos: -18.5,43.5
+ pos: -69.5,8.5
parent: 2
- - uid: 3383
+ - uid: 10572
components:
- type: Transform
- pos: -18.5,42.5
+ pos: -36.5,39.5
parent: 2
- - uid: 3384
+ - uid: 10573
components:
- type: Transform
- pos: -18.5,41.5
+ pos: 34.5,-21.5
parent: 2
- - uid: 3385
+ - uid: 10574
components:
- type: Transform
- pos: -18.5,40.5
+ pos: 32.5,-19.5
parent: 2
- - uid: 3386
+ - uid: 10575
components:
- type: Transform
- pos: -18.5,39.5
+ pos: -61.5,-8.5
parent: 2
- - uid: 3387
+ - uid: 10576
components:
- type: Transform
- pos: -18.5,38.5
+ pos: 34.5,-20.5
parent: 2
- - uid: 3388
+ - uid: 10577
components:
- type: Transform
- pos: -18.5,37.5
+ pos: -42.5,-45.5
parent: 2
- - uid: 3389
+ - uid: 10578
components:
- type: Transform
- pos: -18.5,36.5
+ pos: 33.5,-19.5
parent: 2
- - uid: 3390
+ - uid: 10579
components:
- type: Transform
- pos: -18.5,35.5
+ pos: -77.5,14.5
parent: 2
- - uid: 3391
+ - uid: 10580
components:
- type: Transform
- pos: -18.5,34.5
+ pos: 7.5,81.5
parent: 2
- - uid: 3392
+ - uid: 10581
components:
- type: Transform
- pos: -18.5,33.5
+ pos: -61.5,-7.5
parent: 2
- - uid: 3393
+ - uid: 10582
components:
- type: Transform
- pos: -18.5,32.5
+ pos: 6.5,75.5
parent: 2
- - uid: 3394
+ - uid: 10583
components:
- type: Transform
- pos: -18.5,31.5
+ pos: -8.5,-76.5
parent: 2
- - uid: 3395
+ - uid: 10584
components:
- type: Transform
- pos: -18.5,30.5
+ pos: 17.5,10.5
parent: 2
- - uid: 3396
+ - uid: 10585
components:
- type: Transform
- pos: -18.5,29.5
+ pos: 13.5,23.5
parent: 2
- - uid: 3397
+ - uid: 10586
components:
- type: Transform
- pos: -18.5,28.5
+ pos: 12.5,23.5
parent: 2
- - uid: 3398
+ - uid: 10587
components:
- type: Transform
- pos: -18.5,27.5
+ pos: -5.5,-7.5
parent: 2
- - uid: 3399
+ - uid: 10588
components:
- type: Transform
- pos: -18.5,26.5
+ pos: -0.5,48.5
parent: 2
- - uid: 3400
+ - uid: 10589
components:
- type: Transform
- pos: -19.5,26.5
+ pos: -23.5,-66.5
parent: 2
- - uid: 3401
+ - uid: 10590
components:
- type: Transform
- pos: -16.5,55.5
+ pos: 47.5,-9.5
parent: 2
- - uid: 3402
+ - uid: 10591
components:
- type: Transform
- pos: -17.5,55.5
+ pos: 6.5,87.5
parent: 2
- - uid: 3403
+ - uid: 10592
components:
- type: Transform
- pos: -27.5,52.5
+ pos: -7.5,-11.5
parent: 2
- - uid: 3404
+ - uid: 10593
components:
- type: Transform
- pos: -27.5,51.5
+ pos: -36.5,-63.5
parent: 2
- - uid: 3405
+ - uid: 10594
components:
- type: Transform
- pos: -27.5,50.5
+ pos: -71.5,10.5
parent: 2
- - uid: 3406
+ - uid: 10595
components:
- type: Transform
- pos: -27.5,49.5
+ pos: -27.5,25.5
parent: 2
- - uid: 3407
+ - uid: 10596
components:
- type: Transform
- pos: -27.5,48.5
+ pos: -72.5,-30.5
parent: 2
- - uid: 3408
+ - uid: 10597
components:
- type: Transform
- pos: -27.5,47.5
+ pos: -50.5,12.5
parent: 2
- - uid: 3409
+ - uid: 10598
components:
- type: Transform
- pos: -27.5,46.5
+ pos: -10.5,-77.5
parent: 2
- - uid: 3410
+ - uid: 10599
components:
- type: Transform
- pos: -27.5,45.5
+ pos: -24.5,-30.5
parent: 2
- - uid: 3411
+ - uid: 10600
components:
- type: Transform
- pos: -24.5,33.5
+ pos: -41.5,22.5
parent: 2
- - uid: 3412
+ - uid: 10601
components:
- type: Transform
- pos: -24.5,36.5
+ pos: -32.5,37.5
parent: 2
- - uid: 3413
+ - uid: 10602
components:
- type: Transform
- pos: -26.5,36.5
+ pos: -30.5,23.5
parent: 2
- - uid: 3414
+ - uid: 10603
components:
- type: Transform
- pos: -26.5,36.5
+ pos: 6.5,71.5
parent: 2
- - uid: 3415
+ - uid: 10604
components:
- type: Transform
- pos: -26.5,33.5
+ pos: -12.5,-77.5
parent: 2
- - uid: 3416
+ - uid: 10605
components:
- type: Transform
- pos: -26.5,33.5
+ pos: 26.5,38.5
parent: 2
- - uid: 3417
+ - uid: 10606
components:
- type: Transform
- pos: -24.5,39.5
+ pos: 14.5,-8.5
parent: 2
- - uid: 3418
+ - uid: 10607
components:
- type: Transform
- pos: -24.5,30.5
+ pos: 2.5,23.5
parent: 2
- - uid: 3419
+ - uid: 10608
components:
- type: Transform
- pos: -27.5,22.5
+ pos: 10.5,59.5
parent: 2
- - uid: 3420
+ - uid: 10609
components:
- type: Transform
- pos: -27.5,21.5
+ pos: 17.5,-10.5
parent: 2
- - uid: 3421
+ - uid: 10610
components:
- type: Transform
- pos: -27.5,20.5
+ pos: -37.5,-1.5
parent: 2
- - uid: 3422
+ - uid: 10611
components:
- type: Transform
- pos: -27.5,19.5
+ pos: -33.5,37.5
parent: 2
- - uid: 3423
+ - uid: 10612
components:
- type: Transform
- pos: -26.5,20.5
+ pos: -30.5,22.5
parent: 2
- - uid: 3424
+ - uid: 10613
components:
- type: Transform
- pos: -25.5,20.5
+ pos: 26.5,39.5
parent: 2
- - uid: 3425
+ - uid: 10614
components:
- type: Transform
- pos: -24.5,20.5
+ pos: 24.5,36.5
parent: 2
- - uid: 3426
+ - uid: 10615
components:
- type: Transform
- pos: -23.5,20.5
+ pos: -2.5,34.5
parent: 2
- - uid: 3427
+ - uid: 10616
components:
- type: Transform
- pos: -23.5,21.5
+ pos: 13.5,56.5
parent: 2
- - uid: 3428
+ - uid: 10617
components:
- type: Transform
- pos: -23.5,22.5
+ pos: 40.5,-15.5
parent: 2
- - uid: 3429
+ - uid: 10618
components:
- type: Transform
- pos: -23.5,23.5
+ pos: 30.5,4.5
parent: 2
- - uid: 3430
+ - uid: 10619
components:
- type: Transform
- pos: -22.5,20.5
+ pos: -11.5,-9.5
parent: 2
- - uid: 3431
+ - uid: 10620
components:
- type: Transform
- pos: -21.5,20.5
+ pos: 26.5,20.5
parent: 2
- - uid: 3432
+ - uid: 10621
components:
- type: Transform
- pos: -24.5,19.5
+ pos: 17.5,-5.5
parent: 2
- - uid: 3433
+ - uid: 10622
components:
- type: Transform
- pos: -25.5,21.5
+ pos: 0.5,-47.5
parent: 2
- - uid: 3434
+ - uid: 10623
components:
- type: Transform
- pos: -25.5,22.5
+ pos: 17.5,-55.5
parent: 2
- - uid: 3435
+ - uid: 10624
components:
- type: Transform
- pos: -25.5,23.5
+ pos: -31.5,-74.5
parent: 2
- - uid: 3436
+ - uid: 10625
components:
- type: Transform
- pos: -23.5,16.5
+ pos: 1.5,-47.5
parent: 2
- - uid: 3437
+ - uid: 10626
components:
- type: Transform
- pos: -23.5,15.5
+ pos: 16.5,-8.5
parent: 2
- - uid: 3438
+ - uid: 10627
components:
- type: Transform
- pos: -24.5,15.5
+ pos: 26.5,19.5
parent: 2
- - uid: 3439
+ - uid: 10628
components:
- type: Transform
- pos: -25.5,15.5
+ pos: 13.5,67.5
parent: 2
- - uid: 3440
+ - uid: 10629
components:
- type: Transform
- pos: -25.5,11.5
+ pos: 56.5,-21.5
parent: 2
- - uid: 3441
+ - uid: 10630
components:
- type: Transform
- pos: -25.5,10.5
+ pos: -40.5,-63.5
parent: 2
- - uid: 3442
+ - uid: 10631
components:
- type: Transform
- pos: -25.5,9.5
+ pos: 13.5,34.5
parent: 2
- - uid: 3443
+ - uid: 10632
components:
- type: Transform
- pos: -25.5,8.5
+ pos: 1.5,-38.5
parent: 2
- - uid: 3444
+ - uid: 10633
components:
- type: Transform
- pos: -24.5,12.5
+ pos: -37.5,-63.5
parent: 2
- - uid: 3445
+ - uid: 10634
components:
- type: Transform
- pos: -23.5,12.5
+ pos: -46.5,8.5
parent: 2
- - uid: 3446
+ - uid: 10635
components:
- type: Transform
- pos: -22.5,12.5
+ pos: 29.5,-22.5
parent: 2
- - uid: 3447
+ - uid: 10636
components:
- type: Transform
- pos: -21.5,12.5
+ pos: -57.5,-12.5
parent: 2
- - uid: 3448
+ - uid: 10637
components:
- type: Transform
- pos: -26.5,12.5
+ pos: -114.5,40.5
parent: 2
- - uid: 3449
+ - uid: 10638
components:
- type: Transform
- pos: -27.5,12.5
+ pos: -48.5,34.5
parent: 2
- - uid: 3450
+ - uid: 10639
components:
- type: Transform
- pos: -28.5,12.5
+ pos: -48.5,33.5
parent: 2
- - uid: 3451
+ - uid: 10640
components:
- type: Transform
- pos: -4.5,25.5
+ pos: -46.5,34.5
parent: 2
- - uid: 3452
+ - uid: 10641
components:
- type: Transform
- pos: -4.5,24.5
+ pos: -62.5,10.5
parent: 2
- - uid: 3453
+ - uid: 10642
components:
- type: Transform
- pos: -4.5,23.5
+ pos: -61.5,10.5
parent: 2
- - uid: 3454
+ - uid: 10643
components:
- type: Transform
- pos: -5.5,23.5
+ pos: 4.5,62.5
parent: 2
- - uid: 3455
+ - uid: 10644
components:
- type: Transform
- pos: -6.5,23.5
+ pos: -73.5,-28.5
parent: 2
- - uid: 3456
+ - uid: 10645
components:
- type: Transform
- pos: -7.5,23.5
+ pos: -36.5,-12.5
parent: 2
- - uid: 3457
+ - uid: 10646
components:
- type: Transform
- pos: -8.5,23.5
+ pos: -73.5,-29.5
parent: 2
- - uid: 3458
+ - uid: 10647
components:
- type: Transform
- pos: -9.5,23.5
+ pos: -37.5,-12.5
parent: 2
- - uid: 3459
+ - uid: 10648
components:
- type: Transform
- pos: -10.5,23.5
+ pos: -40.5,42.5
parent: 2
- - uid: 3460
+ - uid: 10649
components:
- type: Transform
- pos: -11.5,23.5
+ pos: -30.5,20.5
parent: 2
- - uid: 3461
+ - uid: 10650
components:
- type: Transform
- pos: -12.5,23.5
+ pos: -36.5,-13.5
parent: 2
- - uid: 3462
+ - uid: 10651
components:
- type: Transform
- pos: -13.5,23.5
+ pos: -73.5,-30.5
parent: 2
- - uid: 3463
+ - uid: 10652
components:
- type: Transform
- pos: -14.5,23.5
+ pos: -30.5,15.5
parent: 2
- - uid: 3464
+ - uid: 10653
components:
- type: Transform
- pos: -15.5,23.5
+ pos: -41.5,42.5
parent: 2
- - uid: 3465
+ - uid: 10654
components:
- type: Transform
- pos: -16.5,23.5
+ pos: -36.5,-10.5
parent: 2
- - uid: 3466
+ - uid: 10655
components:
- type: Transform
- pos: -17.5,23.5
+ pos: -73.5,-27.5
parent: 2
- - uid: 3467
+ - uid: 10656
components:
- type: Transform
- pos: -18.5,23.5
+ pos: -38.5,42.5
parent: 2
- - uid: 3468
+ - uid: 10657
components:
- type: Transform
- pos: -3.5,23.5
+ pos: 17.5,3.5
parent: 2
- - uid: 3469
+ - uid: 10658
components:
- type: Transform
- pos: -2.5,23.5
+ pos: -36.5,57.5
parent: 2
- - uid: 3470
+ - uid: 10659
components:
- type: Transform
- pos: -1.5,23.5
+ pos: -46.5,-14.5
parent: 2
- - uid: 3471
+ - uid: 10660
components:
- type: Transform
- pos: -0.5,23.5
+ pos: 6.5,66.5
parent: 2
- - uid: 3472
+ - uid: 10661
components:
- type: Transform
- pos: 0.49999997,23.5
+ pos: -25.5,-75.5
parent: 2
- - uid: 3473
+ - uid: 10662
components:
- type: Transform
- pos: 1.5,23.5
+ pos: 17.5,-13.5
parent: 2
- - uid: 3474
+ - uid: 10663
components:
- type: Transform
- pos: 2.5,23.5
+ pos: -25.5,64.5
parent: 2
- - uid: 3475
+ - uid: 10664
components:
- type: Transform
- pos: 3.5,23.5
+ pos: -73.5,15.5
parent: 2
- - uid: 3476
+ - uid: 10665
components:
- type: Transform
- pos: 4.5,23.5
+ pos: -62.5,-32.5
parent: 2
- - uid: 3477
+ - uid: 10666
components:
- type: Transform
- pos: 5.5,23.5
+ pos: -74.5,15.5
parent: 2
- - uid: 3478
+ - uid: 10667
components:
- type: Transform
- pos: 6.5,23.5
+ pos: 24.5,-28.5
parent: 2
- - uid: 3479
+ - uid: 10668
components:
- type: Transform
- pos: 7.5,23.5
+ pos: -36.5,-4.5
parent: 2
- - uid: 3480
+ - uid: 10669
components:
- type: Transform
- pos: 8.5,23.5
+ pos: -28.5,23.5
parent: 2
- - uid: 3481
+ - uid: 10670
components:
- type: Transform
- pos: 9.5,23.5
+ pos: -29.5,40.5
parent: 2
- - uid: 3482
+ - uid: 10671
components:
- type: Transform
- pos: 10.5,23.5
+ pos: -28.5,24.5
parent: 2
- - uid: 3483
+ - uid: 10672
components:
- type: Transform
- pos: 11.5,23.5
+ pos: -30.5,40.5
parent: 2
- - uid: 3484
+ - uid: 10673
components:
- type: Transform
- pos: 12.5,23.5
+ pos: -64.5,53.5
parent: 2
- - uid: 3485
+ - uid: 10674
components:
- type: Transform
- pos: 13.5,23.5
+ pos: -58.5,11.5
parent: 2
- - uid: 3486
+ - uid: 10675
components:
- type: Transform
- pos: 14.5,23.5
+ pos: -59.5,10.5
parent: 2
- - uid: 3487
+ - uid: 10676
components:
- type: Transform
- pos: 15.5,23.5
+ pos: 3.5,64.5
parent: 2
- - uid: 3488
+ - uid: 10677
components:
- type: Transform
- pos: 16.5,23.5
+ pos: 3.5,63.5
parent: 2
- - uid: 3489
+ - uid: 10678
components:
- type: Transform
- pos: 17.5,23.5
+ pos: -62.5,53.5
parent: 2
- - uid: 3490
+ - uid: 10679
components:
- type: Transform
- pos: 17.5,22.5
+ pos: -41.5,28.5
parent: 2
- - uid: 3491
+ - uid: 10680
components:
- type: Transform
- pos: 17.5,21.5
+ pos: -21.5,-34.5
parent: 2
- - uid: 3492
+ - uid: 10681
components:
- type: Transform
- pos: 17.5,20.5
+ pos: -32.5,-78.5
parent: 2
- - uid: 3493
+ - uid: 10682
components:
- type: Transform
- pos: 17.5,19.5
+ pos: -28.5,-72.5
parent: 2
- - uid: 3494
+ - uid: 10683
components:
- type: Transform
- pos: 17.5,18.5
+ pos: 36.5,-42.5
parent: 2
- - uid: 3495
+ - uid: 10684
components:
- type: Transform
- pos: 17.5,17.5
+ pos: 28.5,-22.5
parent: 2
- - uid: 3496
+ - uid: 10685
components:
- type: Transform
- pos: 17.5,16.5
+ pos: 27.5,-22.5
parent: 2
- - uid: 3497
+ - uid: 10686
components:
- type: Transform
- pos: 17.5,15.5
+ pos: 21.5,-28.5
parent: 2
- - uid: 3498
+ - uid: 10687
components:
- type: Transform
- pos: 17.5,14.5
+ pos: -25.5,61.5
parent: 2
- - uid: 3499
+ - uid: 10688
components:
- type: Transform
- pos: 17.5,13.5
+ pos: -12.5,71.5
parent: 2
- - uid: 3500
+ - uid: 10689
components:
- type: Transform
- pos: 17.5,12.5
+ pos: 6.5,70.5
parent: 2
- - uid: 3501
+ - uid: 10690
components:
- type: Transform
- pos: 17.5,11.5
+ pos: -72.5,15.5
parent: 2
- - uid: 3502
+ - uid: 10691
components:
- type: Transform
- pos: 17.5,10.5
+ pos: 29.5,-26.5
parent: 2
- - uid: 3503
+ - uid: 10692
components:
- type: Transform
- pos: 17.5,9.5
+ pos: -20.5,-34.5
parent: 2
- - uid: 3504
+ - uid: 10693
components:
- type: Transform
- pos: 17.5,8.5
+ pos: -57.5,32.5
parent: 2
- - uid: 3505
+ - uid: 10694
components:
- type: Transform
- pos: -18.5,22.5
+ pos: -58.5,-5.5
parent: 2
- - uid: 3506
+ - uid: 10695
components:
- type: Transform
- pos: -18.5,21.5
+ pos: -25.5,60.5
parent: 2
- - uid: 3507
+ - uid: 10696
components:
- type: Transform
- pos: -18.5,20.5
+ pos: -26.5,60.5
parent: 2
- - uid: 3508
+ - uid: 10697
components:
- type: Transform
- pos: -18.5,19.5
+ pos: -26.5,-72.5
parent: 2
- - uid: 3509
+ - uid: 10698
components:
- type: Transform
- pos: -18.5,18.5
+ pos: -46.5,7.5
parent: 2
- - uid: 3510
+ - uid: 10699
components:
- type: Transform
- pos: -18.5,17.5
+ pos: -41.5,23.5
parent: 2
- - uid: 3511
+ - uid: 10700
components:
- type: Transform
- pos: -18.5,16.5
+ pos: -41.5,50.5
parent: 2
- - uid: 3512
+ - uid: 10701
components:
- type: Transform
- pos: -18.5,15.5
+ pos: -31.5,-76.5
parent: 2
- - uid: 3513
+ - uid: 10702
components:
- type: Transform
- pos: -18.5,14.5
+ pos: -45.5,6.5
parent: 2
- - uid: 3514
+ - uid: 10703
components:
- type: Transform
- pos: -18.5,13.5
+ pos: -6.5,31.5
parent: 2
- - uid: 3515
+ - uid: 10704
components:
- type: Transform
- pos: -18.5,12.5
+ pos: -57.5,-4.5
parent: 2
- - uid: 3516
+ - uid: 10705
components:
- type: Transform
- pos: -18.5,11.5
+ pos: -57.5,-5.5
parent: 2
- - uid: 3517
+ - uid: 10706
components:
- type: Transform
- pos: -18.5,10.5
+ pos: -59.5,-5.5
parent: 2
- - uid: 3518
+ - uid: 10707
components:
- type: Transform
- pos: -18.5,9.5
+ pos: -60.5,-5.5
parent: 2
- - uid: 3519
+ - uid: 10708
components:
- type: Transform
- pos: -18.5,8.5
+ pos: 4.5,-38.5
parent: 2
- - uid: 3520
+ - uid: 10709
components:
- type: Transform
- pos: -19.5,12.5
+ pos: 12.5,-41.5
parent: 2
- - uid: 3521
+ - uid: 10710
components:
- type: Transform
- pos: -19.5,17.5
+ pos: 12.5,-40.5
parent: 2
- - uid: 3522
+ - uid: 10711
components:
- type: Transform
- pos: -8.5,24.5
+ pos: 8.5,12.5
parent: 2
- - uid: 3523
+ - uid: 10712
components:
- type: Transform
- pos: 0.50000006,24.5
+ pos: 8.5,13.5
parent: 2
- - uid: 3524
+ - uid: 10713
components:
- type: Transform
- pos: 5.5,24.5
+ pos: -33.5,-49.5
parent: 2
- - uid: 3525
+ - uid: 10714
components:
- type: Transform
- pos: 7.5,24.5
+ pos: 32.5,-42.5
parent: 2
- - uid: 3526
+ - uid: 10715
components:
- type: Transform
- pos: 18.5,23.5
+ pos: -32.5,-45.5
parent: 2
- - uid: 3527
+ - uid: 10716
components:
- type: Transform
- pos: 18.5,24.5
+ pos: -122.5,40.5
parent: 2
- - uid: 3528
+ - uid: 10717
components:
- type: Transform
- pos: 18.5,18.5
+ pos: -32.5,-47.5
parent: 2
- - uid: 3529
+ - uid: 10718
components:
- type: Transform
- pos: 16.5,14.5
+ pos: 8.5,4.5
parent: 2
- - uid: 3530
+ - uid: 10719
components:
- type: Transform
- pos: 18.5,12.5
+ pos: -46.5,22.5
parent: 2
- - uid: 3531
+ - uid: 10720
components:
- type: Transform
- pos: 9.5,55.5
+ pos: -10.5,1.5
parent: 2
- - uid: 3532
+ - uid: 10721
components:
- type: Transform
- pos: 9.5,54.5
+ pos: 33.5,-42.5
parent: 2
- - uid: 3533
+ - uid: 10722
components:
- type: Transform
- pos: 9.5,53.5
+ pos: -10.5,6.5
parent: 2
- - uid: 3534
+ - uid: 10723
components:
- type: Transform
- pos: 9.5,52.5
+ pos: 4.5,-46.5
parent: 2
- - uid: 3535
+ - uid: 10724
components:
- type: Transform
- pos: 9.5,51.5
+ pos: 4.5,-42.5
parent: 2
- - uid: 3536
+ - uid: 10725
components:
- type: Transform
- pos: 9.5,50.5
+ pos: 12.5,-44.5
parent: 2
- - uid: 3537
+ - uid: 10726
components:
- type: Transform
- pos: 9.5,49.5
+ pos: 8.5,-44.5
parent: 2
- - uid: 3538
+ - uid: 10727
components:
- type: Transform
- pos: 10.5,42.5
+ pos: 10.5,-44.5
parent: 2
- - uid: 3539
+ - uid: 10728
components:
- type: Transform
- pos: 10.5,51.5
+ pos: 7.5,-44.5
parent: 2
- - uid: 3540
+ - uid: 10729
components:
- type: Transform
- pos: 11.5,51.5
+ pos: 12.5,-42.5
parent: 2
- - uid: 3541
+ - uid: 10730
components:
- type: Transform
- pos: 12.5,51.5
+ pos: 17.5,-47.5
parent: 2
- - uid: 3542
+ - uid: 10731
components:
- type: Transform
- pos: 13.5,51.5
+ pos: 15.5,-41.5
parent: 2
- - uid: 3543
+ - uid: 10732
components:
- type: Transform
- pos: 13.5,52.5
+ pos: 26.5,-45.5
parent: 2
- - uid: 3544
+ - uid: 10733
components:
- type: Transform
- pos: 13.5,53.5
+ pos: 12.5,-43.5
parent: 2
- - uid: 3545
+ - uid: 10734
components:
- type: Transform
- pos: 13.5,54.5
+ pos: 9.5,5.5
parent: 2
- - uid: 3546
+ - uid: 10735
components:
- type: Transform
- pos: 13.5,50.5
+ pos: 10.5,5.5
parent: 2
- - uid: 3547
+ - uid: 10736
components:
- type: Transform
- pos: 13.5,49.5
+ pos: -8.5,1.5
parent: 2
- - uid: 3548
+ - uid: 10737
components:
- type: Transform
- pos: 13.5,48.5
+ pos: -9.5,1.5
parent: 2
- - uid: 3549
+ - uid: 10738
components:
- type: Transform
- pos: 27.5,53.5
+ pos: 10.5,6.5
parent: 2
- - uid: 3550
+ - uid: 10739
components:
- type: Transform
- pos: 27.5,52.5
+ pos: 29.5,-37.5
parent: 2
- - uid: 3551
+ - uid: 10740
components:
- type: Transform
- pos: 27.5,51.5
+ pos: -27.5,-19.5
parent: 2
- - uid: 3552
+ - uid: 10741
components:
- type: Transform
- pos: 27.5,50.5
+ pos: -57.5,56.5
parent: 2
- - uid: 3553
+ - uid: 10742
components:
- type: Transform
- pos: 28.5,50.5
+ pos: 67.5,25.5
parent: 2
- - uid: 3554
+ - uid: 10743
components:
- type: Transform
- pos: 29.5,50.5
+ pos: 36.5,-15.5
parent: 2
- - uid: 3555
+ - uid: 10744
components:
- type: Transform
- pos: 30.5,50.5
+ pos: 25.5,-27.5
parent: 2
- - uid: 3556
+ - uid: 10745
components:
- type: Transform
- pos: 31.5,50.5
+ pos: -36.5,-59.5
parent: 2
- - uid: 3557
+ - uid: 10746
components:
- type: Transform
- pos: 32.5,50.5
+ pos: 6.5,-11.5
parent: 2
- - uid: 3558
+ - uid: 10747
components:
- type: Transform
- pos: 32.5,51.5
+ pos: 56.5,-25.5
parent: 2
- - uid: 3559
+ - uid: 10748
components:
- type: Transform
- pos: 32.5,49.5
+ pos: 38.5,-3.5
parent: 2
- - uid: 3560
+ - uid: 10749
components:
- type: Transform
- pos: 33.5,49.5
+ pos: 38.5,-15.5
parent: 2
- - uid: 3561
+ - uid: 10750
components:
- type: Transform
- pos: 34.5,49.5
+ pos: -22.5,-80.5
parent: 2
- - uid: 3562
+ - uid: 10751
components:
- type: Transform
- pos: 35.5,49.5
+ pos: -71.5,9.5
parent: 2
- - uid: 3563
+ - uid: 10752
components:
- type: Transform
- pos: 36.5,49.5
+ pos: 10.5,88.5
parent: 2
- - uid: 3564
+ - uid: 10753
components:
- type: Transform
- pos: 37.5,49.5
+ pos: -35.5,37.5
parent: 2
- - uid: 3565
+ - uid: 10754
components:
- type: Transform
- pos: 38.5,49.5
+ pos: -1.5,48.5
parent: 2
- - uid: 3566
+ - uid: 10755
components:
- type: Transform
- pos: 38.5,51.5
+ pos: 1.5,-14.5
parent: 2
- - uid: 3567
+ - uid: 10756
components:
- type: Transform
- pos: 37.5,51.5
+ pos: 11.5,23.5
parent: 2
- - uid: 3568
+ - uid: 10757
components:
- type: Transform
- pos: 36.5,51.5
+ pos: 8.5,56.5
parent: 2
- - uid: 3569
+ - uid: 10758
components:
- type: Transform
- pos: 35.5,51.5
+ pos: 34.5,-15.5
parent: 2
- - uid: 3570
+ - uid: 10759
components:
- type: Transform
- pos: 34.5,51.5
+ pos: 24.5,-10.5
parent: 2
- - uid: 3571
+ - uid: 10760
components:
- type: Transform
- pos: 33.5,51.5
+ pos: 31.5,-15.5
parent: 2
- - uid: 3572
+ - uid: 10761
components:
- type: Transform
- pos: 32.5,51.5
+ pos: 32.5,-15.5
parent: 2
- - uid: 3573
+ - uid: 10762
components:
- type: Transform
- pos: 27.5,49.5
+ pos: 31.5,7.5
parent: 2
- - uid: 3574
+ - uid: 10763
components:
- type: Transform
- pos: 26.5,50.5
+ pos: 26.5,-12.5
parent: 2
- - uid: 3575
+ - uid: 10764
components:
- type: Transform
- pos: 25.5,50.5
+ pos: 41.5,-29.5
parent: 2
- - uid: 3576
+ - uid: 10765
components:
- type: Transform
- pos: 24.5,50.5
+ pos: 18.5,56.5
parent: 2
- - uid: 3577
+ - uid: 10766
components:
- type: Transform
- pos: 23.5,50.5
+ pos: 41.5,-47.5
parent: 2
- - uid: 3578
+ - uid: 10767
components:
- type: Transform
- pos: 22.5,50.5
+ pos: 31.5,1.5
parent: 2
- - uid: 3579
+ - uid: 10768
components:
- type: Transform
- pos: 21.5,50.5
+ pos: -5.5,-14.5
parent: 2
- - uid: 3580
+ - uid: 10769
components:
- type: Transform
- pos: 20.5,50.5
+ pos: -31.5,-73.5
parent: 2
- - uid: 3581
+ - uid: 10770
components:
- type: Transform
- pos: 19.5,50.5
+ pos: 32.5,-0.5
parent: 2
- - uid: 3582
+ - uid: 10771
components:
- type: Transform
- pos: 18.5,50.5
+ pos: 50.5,-47.5
parent: 2
- - uid: 3583
+ - uid: 10772
components:
- type: Transform
- pos: 17.5,50.5
+ pos: 14.5,64.5
parent: 2
- - uid: 3584
+ - uid: 10773
components:
- type: Transform
- pos: 16.5,50.5
+ pos: 0.5,39.5
parent: 2
- - uid: 3585
+ - uid: 10774
components:
- type: Transform
- pos: 15.5,50.5
+ pos: -50.5,-14.5
parent: 2
- - uid: 3586
+ - uid: 10775
components:
- type: Transform
- pos: 15.5,51.5
+ pos: 1.5,39.5
parent: 2
- - uid: 3587
+ - uid: 10776
components:
- type: Transform
- pos: 15.5,52.5
+ pos: 15.5,48.5
parent: 2
- - uid: 3588
+ - uid: 10777
components:
- type: Transform
- pos: 15.5,53.5
+ pos: 15.5,47.5
parent: 2
- - uid: 3589
+ - uid: 10778
components:
- type: Transform
- pos: 15.5,54.5
+ pos: 25.5,-8.5
parent: 2
- - uid: 3590
+ - uid: 10779
components:
- type: Transform
- pos: 16.5,54.5
+ pos: 41.5,-18.5
parent: 2
- - uid: 3591
+ - uid: 10780
components:
- type: Transform
- pos: 17.5,54.5
+ pos: 41.5,-17.5
parent: 2
- - uid: 3592
+ - uid: 10781
components:
- type: Transform
- pos: 18.5,54.5
+ pos: 43.5,-18.5
parent: 2
- - uid: 3593
+ - uid: 10782
components:
- type: Transform
- pos: 19.5,54.5
+ pos: -27.5,21.5
parent: 2
- - uid: 3594
+ - uid: 10783
components:
- type: Transform
- pos: 20.5,54.5
+ pos: -44.5,7.5
parent: 2
- - uid: 3595
+ - uid: 10784
components:
- type: Transform
- pos: 21.5,54.5
+ pos: 26.5,-13.5
parent: 2
- - uid: 3596
+ - uid: 10785
components:
- type: Transform
- pos: 22.5,54.5
+ pos: 46.5,-10.5
parent: 2
- - uid: 3597
+ - uid: 10786
components:
- type: Transform
- pos: 23.5,54.5
+ pos: 8.5,55.5
parent: 2
- - uid: 3598
+ - uid: 10787
components:
- type: Transform
- pos: 24.5,54.5
+ pos: 49.5,-46.5
parent: 2
- - uid: 3599
+ - uid: 10788
components:
- type: Transform
- pos: 25.5,54.5
+ pos: -18.5,11.5
parent: 2
- - uid: 3600
+ - uid: 10789
components:
- type: Transform
- pos: 25.5,53.5
+ pos: -47.5,-2.5
parent: 2
- - uid: 3601
+ - uid: 10790
components:
- type: Transform
- pos: 25.5,52.5
+ pos: 17.5,67.5
parent: 2
- - uid: 3602
+ - uid: 10791
components:
- type: Transform
- pos: 25.5,51.5
+ pos: 46.5,-46.5
parent: 2
- - uid: 3603
+ - uid: 10792
components:
- type: Transform
- pos: 15.5,49.5
+ pos: 45.5,-46.5
parent: 2
- - uid: 3604
+ - uid: 10793
components:
- type: Transform
- pos: 15.5,48.5
+ pos: 41.5,-37.5
parent: 2
- - uid: 3605
+ - uid: 10794
components:
- type: Transform
- pos: 15.5,47.5
+ pos: 41.5,-33.5
parent: 2
- - uid: 3606
+ - uid: 10795
components:
- type: Transform
- pos: 15.5,46.5
+ pos: 31.5,8.5
parent: 2
- - uid: 3607
+ - uid: 10796
components:
- type: Transform
- pos: 15.5,45.5
+ pos: -26.5,-78.5
parent: 2
- - uid: 3608
+ - uid: 10797
components:
- type: Transform
- pos: 14.5,45.5
+ pos: 17.5,17.5
parent: 2
- - uid: 3609
+ - uid: 10798
components:
- type: Transform
- pos: 13.5,45.5
+ pos: -51.5,-4.5
parent: 2
- - uid: 3610
+ - uid: 10799
components:
- type: Transform
- pos: 13.5,44.5
+ pos: 10.5,42.5
parent: 2
- - uid: 3611
+ - uid: 10800
components:
- type: Transform
- pos: 13.5,43.5
+ pos: -4.5,23.5
parent: 2
- - uid: 3612
+ - uid: 10801
components:
- type: Transform
- pos: 13.5,42.5
+ pos: 53.5,-43.5
parent: 2
- - uid: 3613
+ - uid: 10802
components:
- type: Transform
- pos: 13.5,41.5
+ pos: 0.5,23.5
parent: 2
- - uid: 3614
+ - uid: 10803
components:
- type: Transform
- pos: 13.5,40.5
+ pos: 17.5,66.5
parent: 2
- - uid: 3615
+ - uid: 10804
components:
- type: Transform
- pos: 13.5,39.5
+ pos: -18.5,22.5
parent: 2
- - uid: 3616
+ - uid: 10805
components:
- type: Transform
- pos: 13.5,38.5
+ pos: 19.5,18.5
parent: 2
- - uid: 3617
+ - uid: 10806
components:
- type: Transform
- pos: 13.5,37.5
+ pos: -16.5,23.5
parent: 2
- - uid: 3618
+ - uid: 10807
components:
- type: Transform
- pos: 13.5,36.5
+ pos: 10.5,-8.5
parent: 2
- - uid: 3619
+ - uid: 10808
components:
- type: Transform
- pos: 13.5,35.5
+ pos: -32.5,-79.5
parent: 2
- - uid: 3620
+ - uid: 10809
components:
- type: Transform
- pos: 13.5,34.5
+ pos: 22.5,18.5
parent: 2
- - uid: 3621
+ - uid: 10810
components:
- type: Transform
- pos: 14.5,34.5
+ pos: -25.5,-78.5
parent: 2
- - uid: 3622
+ - uid: 10811
components:
- type: Transform
- pos: 15.5,34.5
+ pos: 8.5,23.5
parent: 2
- - uid: 3623
+ - uid: 10812
components:
- type: Transform
- pos: 16.5,34.5
+ pos: -8.5,-59.5
parent: 2
- - uid: 3624
+ - uid: 10813
components:
- type: Transform
- pos: 17.5,34.5
+ pos: 33.5,0.5
parent: 2
- - uid: 3625
+ - uid: 10814
components:
- type: Transform
- pos: 18.5,34.5
+ pos: 47.5,-27.5
parent: 2
- - uid: 3626
+ - uid: 10815
components:
- type: Transform
- pos: 19.5,34.5
+ pos: 41.5,-48.5
parent: 2
- - uid: 3627
+ - uid: 10816
components:
- type: Transform
- pos: 20.5,34.5
+ pos: 41.5,-45.5
parent: 2
- - uid: 3628
+ - uid: 10817
components:
- type: Transform
- pos: 21.5,34.5
+ pos: 9.5,36.5
parent: 2
- - uid: 3629
+ - uid: 10818
components:
- type: Transform
- pos: 22.5,34.5
+ pos: 50.5,-48.5
parent: 2
- - uid: 3630
+ - uid: 10819
components:
- type: Transform
- pos: 22.5,35.5
+ pos: -6.5,-14.5
parent: 2
- - uid: 3631
+ - uid: 10820
components:
- type: Transform
- pos: 22.5,36.5
+ pos: 25.5,-26.5
parent: 2
- - uid: 3632
+ - uid: 10821
components:
- type: Transform
- pos: 22.5,37.5
+ pos: -36.5,-60.5
parent: 2
- - uid: 3633
+ - uid: 10822
components:
- type: Transform
- pos: 22.5,38.5
+ pos: 5.5,-11.5
parent: 2
- - uid: 3634
+ - uid: 10823
components:
- type: Transform
- pos: 21.5,38.5
+ pos: 56.5,-26.5
parent: 2
- - uid: 3635
+ - uid: 10824
components:
- type: Transform
- pos: 21.5,39.5
+ pos: 38.5,-2.5
parent: 2
- - uid: 3636
+ - uid: 10825
components:
- type: Transform
- pos: 21.5,40.5
+ pos: -48.5,1.5
parent: 2
- - uid: 3637
+ - uid: 10826
components:
- type: Transform
- pos: 22.5,40.5
+ pos: 17.5,2.5
parent: 2
- - uid: 3638
+ - uid: 10827
components:
- type: Transform
- pos: 23.5,40.5
+ pos: -27.5,-72.5
parent: 2
- - uid: 3639
+ - uid: 10828
components:
- type: Transform
- pos: 24.5,40.5
+ pos: 17.5,7.5
parent: 2
- - uid: 3640
+ - uid: 10829
components:
- type: Transform
- pos: 25.5,40.5
+ pos: 10.5,89.5
parent: 2
- - uid: 3641
+ - uid: 10830
components:
- type: Transform
- pos: 25.5,41.5
+ pos: -27.5,-61.5
parent: 2
- - uid: 3642
+ - uid: 10831
components:
- type: Transform
- pos: 25.5,42.5
+ pos: -5.5,23.5
parent: 2
- - uid: 3643
+ - uid: 10832
components:
- type: Transform
- pos: 25.5,43.5
+ pos: 1.5,40.5
parent: 2
- - uid: 3644
+ - uid: 10833
components:
- type: Transform
- pos: 25.5,44.5
+ pos: 0.5,37.5
parent: 2
- - uid: 3645
+ - uid: 10834
components:
- type: Transform
- pos: 25.5,45.5
+ pos: -18.5,9.5
parent: 2
- - uid: 3646
+ - uid: 10835
components:
- type: Transform
- pos: 25.5,46.5
+ pos: 11.5,64.5
parent: 2
- - uid: 3647
+ - uid: 10836
components:
- type: Transform
- pos: 25.5,47.5
+ pos: -18.5,23.5
parent: 2
- - uid: 3648
+ - uid: 10837
components:
- type: Transform
- pos: 25.5,48.5
+ pos: -49.5,-3.5
parent: 2
- - uid: 3649
+ - uid: 10838
components:
- type: Transform
- pos: 25.5,49.5
+ pos: 18.5,18.5
parent: 2
- - uid: 3650
+ - uid: 10839
components:
- type: Transform
- pos: 29.5,39.5
+ pos: -21.5,-71.5
parent: 2
- - uid: 3651
+ - uid: 10840
components:
- type: Transform
- pos: 29.5,38.5
+ pos: 41.5,-35.5
parent: 2
- - uid: 3652
+ - uid: 10841
components:
- type: Transform
- pos: 29.5,37.5
+ pos: 52.5,-43.5
parent: 2
- - uid: 3653
+ - uid: 10842
components:
- type: Transform
- pos: 29.5,36.5
+ pos: 48.5,-46.5
parent: 2
- - uid: 3654
+ - uid: 10843
components:
- type: Transform
- pos: 29.5,35.5
+ pos: 41.5,-36.5
parent: 2
- - uid: 3655
+ - uid: 10844
components:
- type: Transform
- pos: 29.5,34.5
+ pos: 51.5,-46.5
parent: 2
- - uid: 3656
+ - uid: 10845
components:
- type: Transform
- pos: 28.5,36.5
+ pos: 12.5,45.5
parent: 2
- - uid: 3657
+ - uid: 10846
components:
- type: Transform
- pos: 27.5,36.5
+ pos: 33.5,1.5
parent: 2
- - uid: 3658
+ - uid: 10847
components:
- type: Transform
- pos: 26.5,36.5
+ pos: 30.5,5.5
parent: 2
- - uid: 3659
+ - uid: 10848
components:
- type: Transform
- pos: 25.5,36.5
+ pos: 17.5,-6.5
parent: 2
- - uid: 3660
+ - uid: 10849
components:
- type: Transform
- pos: 24.5,36.5
+ pos: 30.5,6.5
parent: 2
- - uid: 3661
+ - uid: 10850
components:
- type: Transform
- pos: 24.5,37.5
+ pos: 43.5,-33.5
parent: 2
- - uid: 3662
+ - uid: 10851
components:
- type: Transform
- pos: 24.5,38.5
+ pos: 25.5,-24.5
parent: 2
- - uid: 3663
+ - uid: 10852
components:
- type: Transform
- pos: 24.5,35.5
+ pos: 41.5,-43.5
parent: 2
- - uid: 3664
+ - uid: 10853
components:
- type: Transform
- pos: 24.5,34.5
+ pos: 41.5,-41.5
parent: 2
- - uid: 3665
+ - uid: 10854
components:
- type: Transform
- pos: 29.5,40.5
+ pos: 41.5,-42.5
parent: 2
- - uid: 3666
+ - uid: 10855
components:
- type: Transform
- pos: 28.5,40.5
+ pos: 41.5,-31.5
parent: 2
- - uid: 3667
+ - uid: 10856
components:
- type: Transform
- pos: 28.5,41.5
+ pos: 25.5,12.5
parent: 2
- - uid: 3668
+ - uid: 10857
components:
- type: Transform
- pos: 28.5,42.5
+ pos: 41.5,-30.5
parent: 2
- - uid: 3669
+ - uid: 10858
components:
- type: Transform
- pos: 28.5,43.5
+ pos: 23.5,12.5
parent: 2
- - uid: 3670
+ - uid: 10859
components:
- type: Transform
- pos: 28.5,44.5
+ pos: 56.5,-20.5
parent: 2
- - uid: 3671
+ - uid: 10860
components:
- type: Transform
- pos: 31.5,33.5
+ pos: 17.5,-19.5
parent: 2
- - uid: 3672
+ - uid: 10861
components:
- type: Transform
- pos: 31.5,32.5
+ pos: 17.5,-18.5
parent: 2
- - uid: 3673
+ - uid: 10862
components:
- type: Transform
- pos: 31.5,31.5
+ pos: 17.5,-17.5
parent: 2
- - uid: 3674
+ - uid: 10863
components:
- type: Transform
- pos: 31.5,30.5
+ pos: -18.5,5.5
parent: 2
- - uid: 3675
+ - uid: 10864
components:
- type: Transform
- pos: 30.5,31.5
+ pos: 17.5,-20.5
parent: 2
- - uid: 3676
+ - uid: 10865
components:
- type: Transform
- pos: 31.5,31.5
+ pos: 11.5,50.5
parent: 2
- - uid: 3677
+ - uid: 10866
components:
- type: Transform
- pos: 32.5,31.5
+ pos: 4.5,-13.5
parent: 2
- - uid: 3678
+ - uid: 10867
components:
- type: Transform
- pos: 33.5,31.5
+ pos: -22.5,-74.5
parent: 2
- - uid: 3679
+ - uid: 10868
components:
- type: Transform
- pos: 34.5,31.5
+ pos: 4.5,-14.5
parent: 2
- - uid: 3680
+ - uid: 10869
components:
- type: Transform
- pos: 35.5,31.5
+ pos: 23.5,20.5
parent: 2
- - uid: 3681
+ - uid: 10870
components:
- type: Transform
- pos: 29.5,31.5
+ pos: -35.5,41.5
parent: 2
- - uid: 3682
+ - uid: 10871
components:
- type: Transform
- pos: 35.5,32.5
+ pos: 3.5,-14.5
parent: 2
- - uid: 3683
+ - uid: 10872
components:
- type: Transform
- pos: 35.5,30.5
+ pos: 22.5,20.5
parent: 2
- - uid: 3684
+ - uid: 10873
components:
- type: Transform
- pos: 36.5,30.5
+ pos: 24.5,20.5
parent: 2
- - uid: 3685
+ - uid: 10874
components:
- type: Transform
- pos: 38.5,31.5
+ pos: 46.5,23.5
parent: 2
- - uid: 3686
+ - uid: 10875
components:
- type: Transform
- pos: 38.5,30.5
+ pos: -41.5,-75.5
parent: 2
- - uid: 3687
+ - uid: 10876
components:
- type: Transform
- pos: 38.5,29.5
+ pos: -22.5,-76.5
parent: 2
- - uid: 3688
+ - uid: 10877
components:
- type: Transform
- pos: 39.5,29.5
+ pos: -20.5,27.5
parent: 2
- - uid: 3689
+ - uid: 10878
components:
- type: Transform
- pos: 40.5,29.5
+ pos: 14.5,45.5
parent: 2
- - uid: 3690
+ - uid: 10879
components:
- type: Transform
- pos: 41.5,29.5
+ pos: 13.5,50.5
parent: 2
- - uid: 3691
+ - uid: 10880
components:
- type: Transform
- pos: 42.5,29.5
+ pos: 12.5,50.5
parent: 2
- - uid: 3692
+ - uid: 10881
components:
- type: Transform
- pos: 43.5,30.5
+ pos: -51.5,-10.5
parent: 2
- - uid: 3693
+ - uid: 10882
components:
- type: Transform
- pos: 43.5,29.5
+ pos: -33.5,-5.5
parent: 2
- - uid: 3694
+ - uid: 10883
components:
- type: Transform
- pos: 43.5,28.5
+ pos: -57.5,60.5
parent: 2
- - uid: 3695
+ - uid: 10884
components:
- type: Transform
- pos: 38.5,28.5
+ pos: -36.5,-7.5
parent: 2
- - uid: 3696
+ - uid: 10885
components:
- type: Transform
- pos: 35.5,29.5
+ pos: -25.5,63.5
parent: 2
- - uid: 3697
+ - uid: 10886
components:
- type: Transform
- pos: 35.5,28.5
+ pos: -32.5,-3.5
parent: 2
- - uid: 3698
+ - uid: 10887
components:
- type: Transform
- pos: 35.5,27.5
+ pos: 6.5,83.5
parent: 2
- - uid: 3699
+ - uid: 10888
components:
- type: Transform
- pos: 33.5,29.5
+ pos: 6.5,84.5
parent: 2
- - uid: 3700
+ - uid: 10889
components:
- type: Transform
- pos: 33.5,28.5
+ pos: -35.5,57.5
parent: 2
- - uid: 3701
+ - uid: 10890
components:
- type: Transform
- pos: 33.5,27.5
+ pos: 6.5,82.5
parent: 2
- - uid: 3702
+ - uid: 10891
components:
- type: Transform
- pos: 33.5,26.5
+ pos: -32.5,-4.5
parent: 2
- - uid: 3703
+ - uid: 10892
components:
- type: Transform
- pos: 32.5,27.5
+ pos: -32.5,-5.5
parent: 2
- - uid: 3704
+ - uid: 10893
components:
- type: Transform
- pos: 31.5,27.5
+ pos: 6.5,85.5
parent: 2
- - uid: 3705
+ - uid: 10894
components:
- type: Transform
- pos: 30.5,27.5
+ pos: -35.5,-3.5
parent: 2
- - uid: 3706
+ - uid: 10895
components:
- type: Transform
- pos: 29.5,27.5
+ pos: -34.5,-3.5
parent: 2
- - uid: 3707
+ - uid: 10896
components:
- type: Transform
- pos: 29.5,28.5
+ pos: 6.5,73.5
parent: 2
- - uid: 3708
+ - uid: 10897
components:
- type: Transform
- pos: 29.5,27.5
+ pos: -8.5,-75.5
parent: 2
- - uid: 3709
+ - uid: 10898
components:
- type: Transform
- pos: 29.5,26.5
+ pos: -8.5,-72.5
parent: 2
- - uid: 3710
+ - uid: 10899
components:
- type: Transform
- pos: 33.5,39.5
+ pos: -63.5,-30.5
parent: 2
- - uid: 3711
+ - uid: 10900
components:
- type: Transform
- pos: 33.5,38.5
+ pos: -54.5,35.5
parent: 2
- - uid: 3712
+ - uid: 10901
components:
- type: Transform
- pos: 33.5,37.5
+ pos: -39.5,27.5
parent: 2
- - uid: 3713
+ - uid: 10902
components:
- type: Transform
- pos: 34.5,38.5
+ pos: -41.5,18.5
parent: 2
- - uid: 3714
+ - uid: 10903
components:
- type: Transform
- pos: 35.5,38.5
+ pos: -28.5,-33.5
parent: 2
- - uid: 3715
+ - uid: 10904
components:
- type: Transform
- pos: 36.5,38.5
+ pos: -30.5,-45.5
parent: 2
- - uid: 3716
+ - uid: 10905
components:
- type: Transform
- pos: 35.5,37.5
+ pos: -30.5,17.5
parent: 2
- - uid: 3717
+ - uid: 10906
components:
- type: Transform
- pos: 35.5,36.5
+ pos: -42.5,25.5
parent: 2
- - uid: 3718
+ - uid: 10907
components:
- type: Transform
- pos: 35.5,35.5
+ pos: -42.5,29.5
parent: 2
- - uid: 3719
+ - uid: 10908
components:
- type: Transform
- pos: 35.5,34.5
+ pos: -41.5,12.5
parent: 2
- - uid: 3720
+ - uid: 10909
components:
- type: Transform
- pos: 36.5,34.5
+ pos: -59.5,14.5
parent: 2
- - uid: 3721
+ - uid: 10910
components:
- type: Transform
- pos: 35.5,34.5
+ pos: -69.5,15.5
parent: 2
- - uid: 3722
+ - uid: 10911
components:
- type: Transform
- pos: 34.5,34.5
+ pos: -27.5,-30.5
parent: 2
- - uid: 3723
+ - uid: 10912
components:
- type: Transform
- pos: 33.5,34.5
+ pos: 30.5,-42.5
parent: 2
- - uid: 3724
+ - uid: 10913
components:
- type: Transform
- pos: 33.5,35.5
+ pos: -45.5,-7.5
parent: 2
- - uid: 3725
+ - uid: 10914
components:
- type: Transform
- pos: 33.5,36.5
+ pos: -54.5,34.5
parent: 2
- - uid: 3726
+ - uid: 10915
components:
- type: Transform
- pos: 34.5,39.5
+ pos: -73.5,-25.5
parent: 2
- - uid: 3727
+ - uid: 10916
components:
- type: Transform
- pos: 34.5,40.5
+ pos: 28.5,-48.5
parent: 2
- - uid: 3728
+ - uid: 10917
components:
- type: Transform
- pos: 34.5,41.5
+ pos: -61.5,1.5
parent: 2
- - uid: 3729
+ - uid: 10918
components:
- type: Transform
- pos: 35.5,41.5
+ pos: 28.5,-49.5
parent: 2
- - uid: 3730
+ - uid: 10919
components:
- type: Transform
- pos: 36.5,41.5
+ pos: -28.5,-46.5
parent: 2
- - uid: 3731
+ - uid: 10920
components:
- type: Transform
- pos: 36.5,40.5
+ pos: -33.5,-48.5
parent: 2
- - uid: 3732
+ - uid: 10921
components:
- type: Transform
- pos: 37.5,40.5
+ pos: -36.5,-6.5
parent: 2
- - uid: 3733
+ - uid: 10922
components:
- type: Transform
- pos: 7.5,38.5
+ pos: -73.5,-24.5
parent: 2
- - uid: 3734
+ - uid: 10923
components:
- type: Transform
- pos: 7.5,37.5
+ pos: -42.5,30.5
parent: 2
- - uid: 3735
+ - uid: 10924
components:
- type: Transform
- pos: 7.5,36.5
+ pos: -36.5,-8.5
parent: 2
- - uid: 3736
+ - uid: 10925
components:
- type: Transform
- pos: 7.5,35.5
+ pos: -36.5,-9.5
parent: 2
- - uid: 3737
+ - uid: 10926
components:
- type: Transform
- pos: 6.5,37.5
+ pos: -54.5,36.5
parent: 2
- - uid: 3738
+ - uid: 10927
components:
- type: Transform
- pos: 5.5,37.5
+ pos: -58.5,12.5
parent: 2
- - uid: 3739
+ - uid: 10928
components:
- type: Transform
- pos: 4.5,37.5
+ pos: -41.5,14.5
parent: 2
- - uid: 3740
+ - uid: 10929
components:
- type: Transform
- pos: 3.5,37.5
+ pos: -42.5,28.5
parent: 2
- - uid: 3741
+ - uid: 10930
components:
- type: Transform
- pos: 2.5,37.5
+ pos: -2.5,26.5
parent: 2
- - uid: 3742
+ - uid: 10931
components:
- type: Transform
- pos: 2.5,36.5
+ pos: 9.5,23.5
parent: 2
- - uid: 3743
+ - uid: 10932
components:
- type: Transform
- pos: 2.5,35.5
+ pos: 31.5,-0.5
parent: 2
- - uid: 3744
+ - uid: 10933
components:
- type: Transform
- pos: 2.5,34.5
+ pos: 1.5,46.5
parent: 2
- - uid: 3745
+ - uid: 10934
components:
- type: Transform
- pos: 2.5,33.5
+ pos: -25.5,22.5
parent: 2
- - uid: 3746
+ - uid: 10935
components:
- type: Transform
- pos: 3.5,33.5
+ pos: -113.5,43.5
parent: 2
- - uid: 3747
+ - uid: 10936
components:
- type: Transform
- pos: 4.5,33.5
+ pos: -113.5,40.5
parent: 2
- - uid: 3748
+ - uid: 10937
components:
- type: Transform
- pos: 5.5,33.5
+ pos: 24.5,13.5
parent: 2
- - uid: 3749
+ - uid: 10938
components:
- type: Transform
- pos: 6.5,33.5
+ pos: 15.5,35.5
parent: 2
- - uid: 3750
+ - uid: 10939
components:
- type: Transform
- pos: 6.5,31.5
+ pos: 25.5,-26.5
parent: 2
- - uid: 3751
+ - uid: 10940
components:
- type: Transform
- pos: 8.5,33.5
+ pos: 5.5,66.5
parent: 2
- - uid: 3752
+ - uid: 10941
components:
- type: Transform
- pos: 9.5,33.5
+ pos: 5.5,65.5
parent: 2
- - uid: 3753
+ - uid: 10942
components:
- type: Transform
- pos: 10.5,33.5
+ pos: 46.5,20.5
parent: 2
- - uid: 3754
+ - uid: 10943
components:
- type: Transform
- pos: 10.5,34.5
+ pos: 26.5,36.5
parent: 2
- - uid: 3755
+ - uid: 10944
components:
- type: Transform
- pos: 11.5,34.5
+ pos: 31.5,-2.5
parent: 2
- - uid: 3756
+ - uid: 10945
components:
- type: Transform
- pos: 11.5,35.5
+ pos: 10.5,46.5
parent: 2
- - uid: 3757
+ - uid: 10946
components:
- type: Transform
- pos: 11.5,36.5
+ pos: 31.5,0.5
parent: 2
- - uid: 3758
+ - uid: 10947
components:
- type: Transform
- pos: 11.5,37.5
+ pos: -49.5,-14.5
parent: 2
- - uid: 3759
+ - uid: 10948
components:
- type: Transform
- pos: 10.5,37.5
+ pos: 12.5,67.5
parent: 2
- - uid: 3760
+ - uid: 10949
components:
- type: Transform
- pos: 9.5,37.5
+ pos: 12.5,68.5
parent: 2
- - uid: 3761
+ - uid: 10950
components:
- type: Transform
- pos: 8.5,37.5
+ pos: -1.5,29.5
parent: 2
- - uid: 3762
+ - uid: 10951
components:
- type: Transform
- pos: 9.5,47.5
+ pos: -2.5,29.5
parent: 2
- - uid: 3763
+ - uid: 10952
components:
- type: Transform
- pos: 9.5,46.5
+ pos: 11.5,69.5
parent: 2
- - uid: 3764
+ - uid: 10953
components:
- type: Transform
- pos: 9.5,46.5
+ pos: 14.5,35.5
parent: 2
- - uid: 3765
+ - uid: 10954
components:
- type: Transform
- pos: 10.5,46.5
+ pos: 66.5,25.5
parent: 2
- - uid: 3766
+ - uid: 10955
components:
- type: Transform
- pos: 11.5,46.5
+ pos: 31.5,-14.5
parent: 2
- - uid: 3767
+ - uid: 10956
components:
- type: Transform
- pos: 11.5,45.5
+ pos: 31.5,-5.5
parent: 2
- - uid: 3768
+ - uid: 10957
components:
- type: Transform
- pos: 11.5,44.5
+ pos: 21.5,-10.5
parent: 2
- - uid: 3769
+ - uid: 10958
components:
- type: Transform
- pos: 11.5,43.5
+ pos: 20.5,-10.5
parent: 2
- - uid: 3770
+ - uid: 10959
components:
- type: Transform
- pos: 11.5,42.5
+ pos: -39.5,26.5
parent: 2
- - uid: 3771
+ - uid: 10960
components:
- type: Transform
- pos: 9.5,45.5
+ pos: 31.5,3.5
parent: 2
- - uid: 3772
+ - uid: 10961
components:
- type: Transform
- pos: 9.5,44.5
+ pos: 7.5,58.5
parent: 2
- - uid: 3773
+ - uid: 10962
components:
- type: Transform
- pos: 9.5,43.5
+ pos: -57.5,-2.5
parent: 2
- - uid: 3774
+ - uid: 10963
components:
- type: Transform
- pos: 9.5,42.5
+ pos: -71.5,4.5
parent: 2
- - uid: 3775
+ - uid: 10964
components:
- type: Transform
- pos: 10.5,41.5
+ pos: -76.5,15.5
parent: 2
- - uid: 3776
+ - uid: 10965
components:
- type: Transform
- pos: 10.5,40.5
+ pos: -47.5,9.5
parent: 2
- - uid: 3777
+ - uid: 10966
components:
- type: Transform
- pos: 10.5,39.5
+ pos: 7.5,59.5
parent: 2
- - uid: 3778
+ - uid: 10967
components:
- type: Transform
- pos: 9.5,39.5
+ pos: -54.5,39.5
parent: 2
- - uid: 3779
+ - uid: 10968
components:
- type: Transform
- pos: 11.5,39.5
+ pos: -54.5,37.5
parent: 2
- - uid: 3780
+ - uid: 10969
components:
- type: Transform
- pos: 7.5,34.5
+ pos: -42.5,36.5
parent: 2
- - uid: 3781
+ - uid: 10970
components:
- type: Transform
- pos: 7.5,32.5
+ pos: -38.5,36.5
parent: 2
- - uid: 3782
+ - uid: 10971
components:
- type: Transform
- pos: 7.5,31.5
+ pos: 10.5,41.5
parent: 2
- - uid: 3783
+ - uid: 10972
components:
- type: Transform
- pos: 5.5,31.5
+ pos: -2.5,28.5
parent: 2
- - uid: 3784
+ - uid: 10973
components:
- type: Transform
- pos: 4.5,31.5
+ pos: -18.5,-2.5
parent: 2
- - uid: 3785
+ - uid: 10974
components:
- type: Transform
- pos: 3.5,31.5
+ pos: 10.5,56.5
parent: 2
- - uid: 3786
+ - uid: 10975
components:
- type: Transform
- pos: 2.5,31.5
+ pos: 29.5,-27.5
parent: 2
- - uid: 3787
+ - uid: 10976
components:
- type: Transform
- pos: 2.5,30.5
+ pos: -28.5,-38.5
parent: 2
- - uid: 3788
+ - uid: 10977
components:
- type: Transform
- pos: 2.5,29.5
+ pos: 4.5,-43.5
parent: 2
- - uid: 3789
+ - uid: 10978
components:
- type: Transform
- pos: 2.5,28.5
+ pos: -64.5,14.5
parent: 2
- - uid: 3790
+ - uid: 10979
components:
- type: Transform
- pos: 2.5,27.5
+ pos: -14.5,-55.5
parent: 2
- - uid: 3791
+ - uid: 10980
components:
- type: Transform
- pos: 2.5,26.5
+ pos: 4.5,-40.5
parent: 2
- - uid: 3792
+ - uid: 10981
components:
- type: Transform
- pos: 7.5,31.5
+ pos: 5.5,-33.5
parent: 2
- - uid: 3793
+ - uid: 10982
components:
- type: Transform
- pos: 8.5,31.5
+ pos: -29.5,-57.5
parent: 2
- - uid: 3794
+ - uid: 10983
components:
- type: Transform
- pos: 9.5,31.5
+ pos: 28.5,-36.5
parent: 2
- - uid: 3795
+ - uid: 10984
components:
- type: Transform
- pos: 10.5,31.5
+ pos: -33.5,-54.5
parent: 2
- - uid: 3796
+ - uid: 10985
components:
- type: Transform
- pos: 10.5,30.5
+ pos: 28.5,-37.5
parent: 2
- - uid: 3797
+ - uid: 10986
components:
- type: Transform
- pos: 10.5,29.5
+ pos: 4.5,-39.5
parent: 2
- - uid: 3798
+ - uid: 10987
components:
- type: Transform
- pos: 10.5,28.5
+ pos: 5.5,-36.5
parent: 2
- - uid: 3799
+ - uid: 10988
components:
- type: Transform
- pos: 10.5,27.5
+ pos: -20.5,-39.5
parent: 2
- - uid: 3800
+ - uid: 10989
components:
- type: Transform
- pos: 10.5,26.5
+ pos: 11.5,-33.5
parent: 2
- - uid: 3801
+ - uid: 10990
components:
- type: Transform
- pos: 9.5,26.5
+ pos: 16.5,-41.5
parent: 2
- - uid: 3802
+ - uid: 10991
components:
- type: Transform
- pos: 8.5,26.5
+ pos: -9.5,-32.5
parent: 2
- - uid: 3803
+ - uid: 10992
components:
- type: Transform
- pos: 7.5,26.5
+ pos: 10.5,62.5
parent: 2
- - uid: 3804
+ - uid: 10993
components:
- type: Transform
- pos: 6.5,26.5
+ pos: 8.5,-8.5
parent: 2
- - uid: 3805
+ - uid: 10994
components:
- type: Transform
- pos: 5.5,26.5
+ pos: -27.5,-70.5
parent: 2
- - uid: 3806
+ - uid: 10995
components:
- type: Transform
- pos: 4.5,26.5
+ pos: -58.5,57.5
parent: 2
- - uid: 3807
+ - uid: 10996
components:
- type: Transform
- pos: 3.5,26.5
+ pos: 49.5,-20.5
parent: 2
- - uid: 3808
+ - uid: 10997
components:
- type: Transform
- pos: 9.5,28.5
+ pos: -55.5,-10.5
parent: 2
- - uid: 3809
+ - uid: 10998
components:
- type: Transform
- pos: 8.5,28.5
+ pos: 17.5,-5.5
parent: 2
- - uid: 3810
+ - uid: 10999
components:
- type: Transform
- pos: 7.5,28.5
+ pos: 47.5,-10.5
parent: 2
- - uid: 3811
+ - uid: 11000
components:
- type: Transform
- pos: 6.5,28.5
+ pos: 22.5,10.5
parent: 2
- - uid: 3812
+ - uid: 11001
components:
- type: Transform
- pos: 5.5,28.5
+ pos: -34.5,37.5
parent: 2
- - uid: 3813
+ - uid: 11002
components:
- type: Transform
- pos: 4.5,28.5
+ pos: -30.5,21.5
parent: 2
- - uid: 3814
+ - uid: 11003
components:
- type: Transform
- pos: 3.5,28.5
+ pos: -77.5,13.5
parent: 2
- - uid: 3815
+ - uid: 11004
components:
- type: Transform
- pos: 10.5,30.5
+ pos: -61.5,-6.5
parent: 2
- - uid: 3816
+ - uid: 11005
components:
- type: Transform
- pos: 11.5,30.5
+ pos: 14.5,-1.5
parent: 2
- - uid: 3817
+ - uid: 11006
components:
- type: Transform
- pos: 12.5,30.5
+ pos: -9.5,7.5
parent: 2
- - uid: 3818
+ - uid: 11007
components:
- type: Transform
- pos: 13.5,30.5
+ pos: -23.5,27.5
parent: 2
- - uid: 3819
+ - uid: 11008
components:
- type: Transform
- pos: 13.5,31.5
+ pos: 6.5,86.5
parent: 2
- - uid: 3820
+ - uid: 11009
components:
- type: Transform
- pos: 13.5,32.5
+ pos: 43.5,-35.5
parent: 2
- - uid: 3821
+ - uid: 11010
components:
- type: Transform
- pos: 15.5,33.5
+ pos: 17.5,5.5
parent: 2
- - uid: 3822
+ - uid: 11011
components:
- type: Transform
- pos: 15.5,32.5
+ pos: -74.5,-22.5
parent: 2
- - uid: 3823
+ - uid: 11012
components:
- type: Transform
- pos: 16.5,32.5
+ pos: -35.5,38.5
parent: 2
- - uid: 3824
+ - uid: 11013
components:
- type: Transform
- pos: 16.5,31.5
+ pos: -69.5,6.5
parent: 2
- - uid: 3825
+ - uid: 11014
components:
- type: Transform
- pos: 16.5,30.5
+ pos: -68.5,15.5
parent: 2
- - uid: 3826
+ - uid: 11015
components:
- type: Transform
- pos: 16.5,29.5
+ pos: -54.5,29.5
parent: 2
- - uid: 3827
+ - uid: 11016
components:
- type: Transform
- pos: 16.5,28.5
+ pos: -58.5,14.5
parent: 2
- - uid: 3828
+ - uid: 11017
components:
- type: Transform
- pos: 16.5,27.5
+ pos: -27.5,-69.5
parent: 2
- - uid: 3829
+ - uid: 11018
components:
- type: Transform
- pos: 15.5,27.5
+ pos: 9.5,-8.5
parent: 2
- - uid: 3830
+ - uid: 11019
components:
- type: Transform
- pos: 14.5,27.5
+ pos: -48.5,3.5
parent: 2
- - uid: 3831
+ - uid: 11020
components:
- type: Transform
- pos: 13.5,27.5
+ pos: 12.5,69.5
parent: 2
- - uid: 3832
+ - uid: 11021
components:
- type: Transform
- pos: 12.5,27.5
+ pos: -2.5,27.5
parent: 2
- - uid: 3833
+ - uid: 11022
components:
- type: Transform
- pos: 12.5,28.5
+ pos: 37.5,-15.5
parent: 2
- - uid: 3834
+ - uid: 11023
components:
- type: Transform
- pos: 93.5,24.5
+ pos: -27.5,22.5
parent: 2
- - uid: 3835
+ - uid: 11024
components:
- type: Transform
- pos: 93.5,23.5
+ pos: 44.5,-1.5
parent: 2
- - uid: 3836
+ - uid: 11025
components:
- type: Transform
- pos: 92.5,23.5
+ pos: 12.5,64.5
parent: 2
- - uid: 3837
+ - uid: 11026
components:
- type: Transform
- pos: 92.5,22.5
+ pos: -18.5,10.5
parent: 2
- - uid: 3838
+ - uid: 11027
components:
- type: Transform
- pos: 92.5,21.5
+ pos: 0.5,38.5
parent: 2
- - uid: 3839
+ - uid: 11028
components:
- type: Transform
- pos: 92.5,20.5
+ pos: -17.5,23.5
parent: 2
- - uid: 3840
+ - uid: 11029
components:
- type: Transform
- pos: 92.5,19.5
+ pos: -44.5,-8.5
parent: 2
- - uid: 3841
+ - uid: 11030
components:
- type: Transform
- pos: 92.5,18.5
+ pos: -49.5,0.5
parent: 2
- - uid: 3842
+ - uid: 11031
components:
- type: Transform
- pos: 92.5,17.5
+ pos: 17.5,18.5
parent: 2
- - uid: 3843
+ - uid: 11032
components:
- type: Transform
- pos: 92.5,16.5
+ pos: -39.5,28.5
parent: 2
- - uid: 3844
+ - uid: 11033
components:
- type: Transform
- pos: 92.5,15.5
+ pos: -0.5,27.5
parent: 2
- - uid: 3845
+ - uid: 11034
components:
- type: Transform
- pos: 92.5,14.5
+ pos: -11.5,71.5
parent: 2
- - uid: 3846
+ - uid: 11035
components:
- type: Transform
- pos: 92.5,13.5
+ pos: 11.5,3.5
parent: 2
- - uid: 3847
+ - uid: 11036
components:
- type: Transform
- pos: 91.5,13.5
+ pos: 12.5,3.5
parent: 2
- - uid: 3848
+ - uid: 11037
components:
- type: Transform
- pos: 90.5,13.5
+ pos: 9.5,3.5
parent: 2
- - uid: 3849
+ - uid: 11038
components:
- type: Transform
- pos: 89.5,13.5
+ pos: 10.5,9.5
parent: 2
- - uid: 3850
+ - uid: 11039
components:
- type: Transform
- pos: 88.5,13.5
+ pos: 10.5,10.5
parent: 2
- - uid: 3851
+ - uid: 11040
components:
- type: Transform
- pos: 87.5,13.5
+ pos: 30.5,-26.5
parent: 2
- - uid: 3852
+ - uid: 11041
components:
- type: Transform
- pos: 86.5,13.5
+ pos: 27.5,-29.5
parent: 2
- - uid: 3853
+ - uid: 11042
components:
- type: Transform
- pos: 85.5,13.5
+ pos: 12.5,-33.5
parent: 2
- - uid: 3854
+ - uid: 11043
components:
- type: Transform
- pos: 84.5,13.5
+ pos: 12.5,-38.5
parent: 2
- - uid: 3855
+ - uid: 11044
components:
- type: Transform
- pos: 83.5,13.5
+ pos: -42.5,35.5
parent: 2
- - uid: 3856
+ - uid: 11045
components:
- type: Transform
- pos: 86.5,11.5
+ pos: 31.5,6.5
parent: 2
- - uid: 3857
+ - uid: 11046
components:
- type: Transform
- pos: 86.5,10.5
+ pos: 13.5,44.5
parent: 2
- - uid: 3858
+ - uid: 11047
components:
- type: Transform
- pos: 85.5,10.5
+ pos: -19.5,-13.5
parent: 2
- - uid: 3859
+ - uid: 11048
components:
- type: Transform
- pos: 84.5,10.5
+ pos: -18.5,19.5
parent: 2
- - uid: 3860
+ - uid: 11049
components:
- type: Transform
- pos: 83.5,10.5
+ pos: -18.5,2.5
parent: 2
- - uid: 3861
+ - uid: 11050
components:
- type: Transform
- pos: 81.5,9.5
+ pos: -18.5,20.5
parent: 2
- - uid: 3862
+ - uid: 11051
components:
- type: Transform
- pos: 80.5,9.5
+ pos: 23.5,-10.5
parent: 2
- - uid: 3863
+ - uid: 11052
components:
- type: Transform
- pos: 83.5,9.5
+ pos: 43.5,-46.5
parent: 2
- - uid: 3864
+ - uid: 11053
components:
- type: Transform
- pos: 82.5,9.5
+ pos: 45.5,-27.5
parent: 2
- - uid: 3865
+ - uid: 11054
components:
- type: Transform
- pos: 79.5,9.5
+ pos: 32.5,1.5
parent: 2
- - uid: 3866
+ - uid: 11055
components:
- type: Transform
- pos: 78.5,9.5
+ pos: 46.5,-45.5
parent: 2
- - uid: 3867
+ - uid: 11056
components:
- type: Transform
- pos: 77.5,9.5
+ pos: 21.5,11.5
parent: 2
- - uid: 3868
+ - uid: 11057
components:
- type: Transform
- pos: 76.5,9.5
+ pos: -9.5,-59.5
parent: 2
- - uid: 3869
+ - uid: 11058
components:
- type: Transform
- pos: 69.5,17.5
+ pos: -42.5,27.5
parent: 2
- - uid: 3870
+ - uid: 11059
components:
- type: Transform
- pos: 69.5,16.5
+ pos: -44.5,6.5
parent: 2
- - uid: 3871
+ - uid: 11060
components:
- type: Transform
- pos: 69.5,15.5
+ pos: -39.5,-1.5
parent: 2
- - uid: 3872
+ - uid: 11061
components:
- type: Transform
- pos: 69.5,14.5
+ pos: 7.5,-33.5
parent: 2
- - uid: 3873
+ - uid: 11062
components:
- type: Transform
- pos: 69.5,13.5
+ pos: -66.5,-29.5
parent: 2
- - uid: 3874
+ - uid: 11063
components:
- type: Transform
- pos: 70.5,13.5
+ pos: 5.5,-33.5
parent: 2
- - uid: 3875
+ - uid: 11064
components:
- type: Transform
- pos: 68.5,13.5
+ pos: 5.5,64.5
parent: 2
- - uid: 3876
+ - uid: 11065
components:
- type: Transform
- pos: 68.5,18.5
+ pos: 15.5,-8.5
parent: 2
- - uid: 3877
+ - uid: 11066
components:
- type: Transform
- pos: 68.5,19.5
+ pos: -31.5,-75.5
parent: 2
- - uid: 3878
+ - uid: 11067
components:
- type: Transform
- pos: 73.5,24.5
+ pos: -2.5,35.5
parent: 2
- - uid: 3879
+ - uid: 11068
components:
- type: Transform
- pos: 73.5,23.5
+ pos: -41.5,47.5
parent: 2
- - uid: 3880
+ - uid: 11069
components:
- type: Transform
- pos: 73.5,22.5
+ pos: -56.5,61.5
parent: 2
- - uid: 3881
+ - uid: 11070
components:
- type: Transform
- pos: 74.5,22.5
+ pos: -41.5,24.5
parent: 2
- - uid: 3882
+ - uid: 11071
components:
- type: Transform
- pos: 75.5,22.5
+ pos: 42.5,-44.5
parent: 2
- - uid: 3883
+ - uid: 11072
components:
- type: Transform
- pos: 76.5,22.5
+ pos: 53.5,-20.5
parent: 2
- - uid: 3884
+ - uid: 11073
components:
- type: Transform
- pos: 77.5,22.5
+ pos: -27.5,-71.5
parent: 2
- - uid: 3885
+ - uid: 11074
components:
- type: Transform
- pos: 77.5,22.5
+ pos: 7.5,-8.5
parent: 2
- - uid: 3886
+ - uid: 11075
components:
- type: Transform
- pos: 73.5,21.5
+ pos: 10.5,60.5
parent: 2
- - uid: 3887
+ - uid: 11076
components:
- type: Transform
- pos: 75.5,23.5
+ pos: 43.5,-34.5
parent: 2
- - uid: 3888
+ - uid: 11077
components:
- type: Transform
- pos: 75.5,24.5
+ pos: 35.5,-15.5
parent: 2
- - uid: 3889
+ - uid: 11078
components:
- type: Transform
- pos: 75.5,25.5
+ pos: -18.5,12.5
parent: 2
- - uid: 3890
+ - uid: 11079
components:
- type: Transform
- pos: 75.5,26.5
+ pos: -41.5,-63.5
parent: 2
- - uid: 3891
+ - uid: 11080
components:
- type: Transform
- pos: 75.5,27.5
+ pos: 0.5,-38.5
parent: 2
- - uid: 3892
+ - uid: 11081
components:
- type: Transform
- pos: 75.5,28.5
+ pos: 29.5,56.5
parent: 2
- - uid: 3893
+ - uid: 11082
components:
- type: Transform
- pos: 72.5,4.5
+ pos: -72.5,10.5
parent: 2
- - uid: 3894
+ - uid: 11083
components:
- type: Transform
- pos: 72.5,5.5
+ pos: -5.5,-8.5
parent: 2
- - uid: 3895
+ - uid: 11084
components:
- type: Transform
- pos: 73.5,5.5
+ pos: -23.5,-65.5
parent: 2
- - uid: 3896
+ - uid: 11085
components:
- type: Transform
- pos: 72.5,4.5
+ pos: -36.5,-58.5
parent: 2
- - uid: 3897
+ - uid: 11086
components:
- type: Transform
- pos: 72.5,3.5
+ pos: -13.5,-77.5
parent: 2
- - uid: 3898
+ - uid: 11087
components:
- type: Transform
- pos: 72.5,2.5
+ pos: -1.5,-13.5
parent: 2
- - uid: 3899
+ - uid: 11088
components:
- type: Transform
- pos: 73.5,2.5
+ pos: -2.5,-13.5
parent: 2
- - uid: 3900
+ - uid: 11089
components:
- type: Transform
- pos: 73.5,1.5
+ pos: 7.5,-11.5
parent: 2
- - uid: 3901
+ - uid: 11090
components:
- type: Transform
- pos: 73.5,0.5
+ pos: -39.5,-2.5
parent: 2
- - uid: 3902
+ - uid: 11091
components:
- type: Transform
- pos: 73.5,0.5
+ pos: -30.5,37.5
parent: 2
- - uid: 3903
+ - uid: 11092
components:
- type: Transform
- pos: 73.5,-0.5
+ pos: -62.5,-30.5
parent: 2
- - uid: 3904
+ - uid: 11093
components:
- type: Transform
- pos: 73.5,6.5
+ pos: -50.5,14.5
parent: 2
- - uid: 3905
+ - uid: 11094
components:
- type: Transform
- pos: 73.5,7.5
+ pos: -55.5,24.5
parent: 2
- - uid: 3906
+ - uid: 11095
components:
- type: Transform
- pos: 73.5,8.5
+ pos: -28.5,25.5
parent: 2
- - uid: 3907
+ - uid: 11096
components:
- type: Transform
- pos: 73.5,9.5
+ pos: -11.5,-11.5
parent: 2
- - uid: 3908
+ - uid: 11097
components:
- type: Transform
- pos: 73.5,10.5
+ pos: -15.5,-79.5
parent: 2
- - uid: 3909
+ - uid: 11098
components:
- type: Transform
- pos: 73.5,11.5
+ pos: -51.5,-8.5
parent: 2
- - uid: 3910
+ - uid: 11099
components:
- type: Transform
- pos: 73.5,12.5
+ pos: -63.5,-22.5
parent: 2
- - uid: 3911
+ - uid: 11100
components:
- type: Transform
- pos: 73.5,13.5
+ pos: -20.5,-13.5
parent: 2
- - uid: 3912
+ - uid: 11101
components:
- type: Transform
- pos: 73.5,14.5
+ pos: -39.5,42.5
parent: 2
- - uid: 3913
+ - uid: 11102
components:
- type: Transform
- pos: 73.5,15.5
+ pos: -73.5,-26.5
parent: 2
- - uid: 3914
+ - uid: 11103
components:
- type: Transform
- pos: 73.5,16.5
+ pos: -36.5,-11.5
parent: 2
- - uid: 3915
+ - uid: 11104
components:
- type: Transform
- pos: 73.5,17.5
+ pos: 2.5,-38.5
parent: 2
- - uid: 3916
+ - uid: 11105
components:
- type: Transform
- pos: 73.5,18.5
+ pos: -38.5,-63.5
parent: 2
- - uid: 3917
+ - uid: 11106
components:
- type: Transform
- pos: 73.5,19.5
+ pos: -4.5,-14.5
parent: 2
- - uid: 3918
+ - uid: 11107
components:
- type: Transform
- pos: 72.5,18.5
+ pos: 17.5,-14.5
parent: 2
- - uid: 3919
+ - uid: 11108
components:
- type: Transform
- pos: 72.5,13.5
+ pos: 17.5,-8.5
parent: 2
- - uid: 3920
+ - uid: 11109
components:
- type: Transform
- pos: 74.5,9.5
+ pos: 8.5,37.5
parent: 2
- - uid: 3921
+ - uid: 11110
components:
- type: Transform
- pos: 96.5,4.5
+ pos: 44.5,-19.5
parent: 2
- - uid: 3922
+ - uid: 11111
components:
- type: Transform
- pos: -29.5,-74.5
+ pos: 6.5,67.5
parent: 2
- - uid: 3923
+ - uid: 11112
components:
- type: Transform
- pos: 78.5,-4.5
+ pos: -60.5,14.5
parent: 2
- - uid: 3924
+ - uid: 11113
components:
- type: Transform
- pos: 85.5,-1.5
+ pos: -58.5,-9.5
parent: 2
- - uid: 3925
+ - uid: 11114
components:
- type: Transform
- pos: -113.5,44.5
+ pos: 14.5,-33.5
parent: 2
- - uid: 3926
+ - uid: 11115
components:
- type: Transform
- pos: 54.5,30.5
+ pos: 28.5,-29.5
parent: 2
- - uid: 3927
+ - uid: 11116
components:
- type: Transform
- pos: 52.5,29.5
+ pos: 17.5,-48.5
parent: 2
- - uid: 3928
+ - uid: 11117
components:
- type: Transform
- pos: 51.5,29.5
+ pos: -50.5,-3.5
parent: 2
- - uid: 3929
+ - uid: 11118
components:
- type: Transform
- pos: 50.5,29.5
+ pos: -51.5,-11.5
parent: 2
- - uid: 3930
+ - uid: 11119
components:
- type: Transform
- pos: 49.5,29.5
+ pos: -36.5,-2.5
parent: 2
- - uid: 3931
+ - uid: 11120
components:
- type: Transform
- pos: 49.5,28.5
+ pos: 29.5,-23.5
parent: 2
- - uid: 3932
+ - uid: 11121
components:
- type: Transform
- pos: 49.5,27.5
+ pos: -62.5,-22.5
parent: 2
- - uid: 3933
+ - uid: 11122
components:
- type: Transform
- pos: 49.5,26.5
+ pos: 17.5,0.5
parent: 2
- - uid: 3934
+ - uid: 11123
components:
- type: Transform
- pos: 49.5,25.5
+ pos: -22.5,-72.5
parent: 2
- - uid: 3935
+ - uid: 11124
components:
- type: Transform
- pos: 49.5,24.5
+ pos: 20.5,18.5
parent: 2
- - uid: 3936
+ - uid: 11125
components:
- type: Transform
- pos: 49.5,23.5
+ pos: -18.5,3.5
parent: 2
- - uid: 3937
+ - uid: 11126
components:
- type: Transform
- pos: 49.5,22.5
+ pos: -49.5,-1.5
parent: 2
- - uid: 3938
+ - uid: 11127
components:
- type: Transform
- pos: 49.5,21.5
+ pos: -65.5,-32.5
parent: 2
- - uid: 3939
+ - uid: 11128
components:
- type: Transform
- pos: 53.5,29.5
+ pos: -22.5,-71.5
parent: 2
- - uid: 3940
+ - uid: 11129
components:
- type: Transform
- pos: 54.5,29.5
+ pos: 47.5,-46.5
parent: 2
- - uid: 3941
+ - uid: 11130
components:
- type: Transform
- pos: 55.5,29.5
+ pos: 41.5,-38.5
parent: 2
- - uid: 3942
+ - uid: 11131
components:
- type: Transform
- pos: 56.5,29.5
+ pos: 41.5,-34.5
parent: 2
- - uid: 3943
+ - uid: 11132
components:
- type: Transform
- pos: 57.5,29.5
+ pos: -18.5,21.5
parent: 2
- - uid: 3944
+ - uid: 11133
components:
- type: Transform
- pos: 58.5,29.5
+ pos: 16.5,66.5
parent: 2
- - uid: 3945
+ - uid: 11134
components:
- type: Transform
- pos: 59.5,29.5
+ pos: -3.5,23.5
parent: 2
- - uid: 3946
+ - uid: 11135
components:
- type: Transform
- pos: 59.5,28.5
+ pos: 51.5,-43.5
parent: 2
- - uid: 3947
+ - uid: 11136
components:
- type: Transform
- pos: 59.5,27.5
+ pos: 26.5,11.5
parent: 2
- - uid: 3948
+ - uid: 11137
components:
- type: Transform
- pos: 59.5,26.5
+ pos: -26.5,21.5
parent: 2
- - uid: 3949
+ - uid: 11138
components:
- type: Transform
- pos: 59.5,25.5
+ pos: -28.5,-49.5
parent: 2
- - uid: 3950
+ - uid: 11139
components:
- type: Transform
- pos: 59.5,24.5
+ pos: 3.5,23.5
parent: 2
- - uid: 3951
+ - uid: 11140
components:
- type: Transform
- pos: 59.5,23.5
+ pos: 26.5,37.5
parent: 2
- - uid: 3952
+ - uid: 11141
components:
- type: Transform
- pos: 59.5,22.5
+ pos: 10.5,57.5
parent: 2
- - uid: 3953
+ - uid: 11142
components:
- type: Transform
- pos: 59.5,21.5
+ pos: 46.5,-20.5
parent: 2
- - uid: 3954
+ - uid: 11143
components:
- type: Transform
- pos: 57.5,21.5
+ pos: 17.5,63.5
parent: 2
- - uid: 3955
+ - uid: 11144
components:
- type: Transform
- pos: 58.5,21.5
+ pos: -18.5,16.5
parent: 2
- - uid: 3956
+ - uid: 11145
components:
- type: Transform
- pos: 50.5,21.5
+ pos: -8.5,-80.5
parent: 2
- - uid: 3957
+ - uid: 11146
components:
- type: Transform
- pos: 51.5,21.5
+ pos: -41.5,56.5
parent: 2
- - uid: 3958
+ - uid: 11147
components:
- type: Transform
- pos: 52.5,21.5
+ pos: 28.5,11.5
parent: 2
- - uid: 3959
+ - uid: 11148
components:
- type: Transform
- pos: 53.5,21.5
+ pos: 51.5,-27.5
parent: 2
- - uid: 3960
+ - uid: 11149
components:
- type: Transform
- pos: 54.5,21.5
+ pos: 15.5,49.5
parent: 2
- - uid: 3961
+ - uid: 11150
components:
- type: Transform
- pos: 55.5,21.5
+ pos: -18.5,-10.5
parent: 2
- - uid: 3962
+ - uid: 11151
components:
- type: Transform
- pos: 65.5,28.5
+ pos: -7.5,-63.5
parent: 2
- - uid: 3963
+ - uid: 11152
components:
- type: Transform
- pos: 65.5,27.5
+ pos: 30.5,3.5
parent: 2
- - uid: 3964
+ - uid: 11153
components:
- type: Transform
- pos: 65.5,26.5
+ pos: -23.5,-64.5
parent: 2
- - uid: 3965
+ - uid: 11154
components:
- type: Transform
- pos: 65.5,25.5
+ pos: -5.5,-9.5
parent: 2
- - uid: 3966
+ - uid: 11155
components:
- type: Transform
- pos: 65.5,24.5
+ pos: 0.5,48.5
parent: 2
- - uid: 3967
+ - uid: 11156
components:
- type: Transform
- pos: 66.5,25.5
+ pos: -41.5,39.5
parent: 2
- - uid: 3968
+ - uid: 11157
components:
- type: Transform
- pos: 67.5,25.5
+ pos: 48.5,-10.5
parent: 2
- - uid: 3969
+ - uid: 11158
components:
- type: Transform
- pos: 63.5,28.5
+ pos: 41.5,-15.5
parent: 2
- - uid: 3970
+ - uid: 11159
components:
- type: Transform
- pos: 63.5,27.5
+ pos: 41.5,-16.5
parent: 2
- - uid: 3971
+ - uid: 11160
components:
- type: Transform
- pos: 63.5,26.5
+ pos: 48.5,-51.5
parent: 2
- - uid: 3972
+ - uid: 11161
components:
- type: Transform
- pos: 63.5,25.5
+ pos: 13.5,37.5
parent: 2
- - uid: 3973
+ - uid: 11162
components:
- type: Transform
- pos: 63.5,24.5
+ pos: 7.5,23.5
parent: 2
- - uid: 3974
+ - uid: 11163
components:
- type: Transform
- pos: 62.5,25.5
+ pos: 0.5,31.5
parent: 2
- - uid: 3975
+ - uid: 11164
components:
- type: Transform
- pos: 61.5,25.5
+ pos: -22.5,-73.5
parent: 2
- - uid: 3976
+ - uid: 11165
components:
- type: Transform
- pos: 71.5,27.5
+ pos: -36.5,-57.5
parent: 2
- - uid: 3977
+ - uid: 11166
components:
- type: Transform
- pos: 71.5,26.5
+ pos: -24.5,-19.5
parent: 2
- - uid: 3978
+ - uid: 11167
components:
- type: Transform
- pos: 71.5,25.5
+ pos: -48.5,30.5
parent: 2
- - uid: 3979
+ - uid: 11168
components:
- type: Transform
- pos: 70.5,25.5
+ pos: 4.5,-31.5
parent: 2
- - uid: 3980
+ - uid: 11169
components:
- type: Transform
- pos: 69.5,25.5
+ pos: -0.5,-13.5
parent: 2
- - uid: 3981
+ - uid: 11170
components:
- type: Transform
- pos: 69.5,24.5
+ pos: -41.5,52.5
parent: 2
- - uid: 3982
+ - uid: 11171
components:
- type: Transform
- pos: 69.5,23.5
+ pos: -29.5,37.5
parent: 2
- - uid: 3983
+ - uid: 11172
components:
- type: Transform
- pos: 69.5,22.5
+ pos: -18.5,-80.5
parent: 2
- - uid: 3984
+ - uid: 11173
components:
- type: Transform
- pos: 68.5,22.5
+ pos: -69.5,5.5
parent: 2
- - uid: 3985
+ - uid: 11174
components:
- type: Transform
- pos: 67.5,22.5
+ pos: 17.5,9.5
parent: 2
- - uid: 3986
+ - uid: 11175
components:
- type: Transform
- pos: 66.5,22.5
+ pos: 4.5,-48.5
parent: 2
- - uid: 3987
+ - uid: 11176
components:
- type: Transform
- pos: 65.5,22.5
+ pos: -25.5,-16.5
parent: 2
- - uid: 3988
+ - uid: 11177
components:
- type: Transform
- pos: 64.5,22.5
+ pos: 9.5,88.5
parent: 2
- - uid: 3989
+ - uid: 11178
components:
- type: Transform
- pos: 63.5,22.5
+ pos: 0.5,36.5
parent: 2
- - uid: 3990
+ - uid: 11179
components:
- type: Transform
- pos: 62.5,22.5
+ pos: -26.5,25.5
parent: 2
- - uid: 3991
+ - uid: 11180
components:
- type: Transform
- pos: 36.5,23.5
+ pos: -41.5,40.5
parent: 2
- - uid: 3992
+ - uid: 11181
components:
- type: Transform
- pos: 36.5,22.5
+ pos: -41.5,-76.5
parent: 2
- - uid: 3993
+ - uid: 11182
components:
- type: Transform
- pos: 36.5,21.5
+ pos: -9.5,-62.5
parent: 2
- - uid: 3994
+ - uid: 11183
components:
- type: Transform
- pos: 36.5,20.5
+ pos: 4.5,64.5
parent: 2
- - uid: 3995
+ - uid: 11184
components:
- type: Transform
- pos: 36.5,19.5
+ pos: -41.5,15.5
parent: 2
- - uid: 3996
+ - uid: 11185
components:
- type: Transform
- pos: 36.5,18.5
+ pos: -28.5,-32.5
parent: 2
- - uid: 3997
+ - uid: 11186
components:
- type: Transform
- pos: 35.5,20.5
+ pos: -57.5,-15.5
parent: 2
- - uid: 3998
+ - uid: 11187
components:
- type: Transform
- pos: 34.5,20.5
+ pos: -76.5,14.5
parent: 2
- - uid: 3999
+ - uid: 11188
components:
- type: Transform
- pos: 37.5,20.5
+ pos: 30.5,-24.5
parent: 2
- - uid: 4000
+ - uid: 11189
components:
- type: Transform
- pos: 38.5,20.5
+ pos: -66.5,15.5
parent: 2
- - uid: 4001
+ - uid: 11190
components:
- type: Transform
- pos: 39.5,20.5
+ pos: -35.5,60.5
parent: 2
- - uid: 4002
+ - uid: 11191
components:
- type: Transform
- pos: 40.5,20.5
+ pos: 31.5,-19.5
parent: 2
- - uid: 4003
+ - uid: 11192
components:
- type: Transform
- pos: 41.5,20.5
+ pos: 18.5,-52.5
parent: 2
- - uid: 4004
+ - uid: 11193
components:
- type: Transform
- pos: 42.5,20.5
+ pos: -57.5,61.5
parent: 2
- - uid: 4005
+ - uid: 11194
components:
- type: Transform
- pos: 43.5,20.5
+ pos: -13.5,-43.5
parent: 2
- - uid: 4006
+ - uid: 11195
components:
- type: Transform
- pos: 41.5,21.5
+ pos: 4.5,-37.5
parent: 2
- - uid: 4007
+ - uid: 11196
components:
- type: Transform
- pos: 41.5,22.5
+ pos: 4.5,-36.5
parent: 2
- - uid: 4008
+ - uid: 11197
components:
- type: Transform
- pos: 41.5,23.5
+ pos: 22.5,-10.5
parent: 2
- - uid: 4009
+ - uid: 11198
components:
- type: Transform
- pos: 41.5,19.5
+ pos: 33.5,-15.5
parent: 2
- - uid: 4010
+ - uid: 11199
components:
- type: Transform
- pos: 41.5,18.5
+ pos: 10.5,-1.5
parent: 2
- - uid: 4011
+ - uid: 11200
components:
- type: Transform
- pos: 41.5,17.5
+ pos: -9.5,10.5
parent: 2
- - uid: 4012
+ - uid: 11201
components:
- type: Transform
- pos: 20.5,7.5
+ pos: 8.5,-33.5
parent: 2
- - uid: 4013
+ - uid: 11202
components:
- type: Transform
- pos: 20.5,6.5
+ pos: -13.5,-41.5
parent: 2
- - uid: 4014
+ - uid: 11203
components:
- type: Transform
- pos: 20.5,5.5
+ pos: 0.5,15.5
parent: 2
- - uid: 4015
+ - uid: 11204
components:
- type: Transform
- pos: 21.5,5.5
+ pos: 10.5,11.5
parent: 2
- - uid: 4016
+ - uid: 11205
components:
- type: Transform
- pos: 22.5,5.5
+ pos: 27.5,-56.5
parent: 2
- - uid: 4017
+ - uid: 11206
components:
- type: Transform
- pos: 23.5,5.5
+ pos: -5.5,14.5
parent: 2
- - uid: 4018
+ - uid: 11207
components:
- type: Transform
- pos: 24.5,5.5
+ pos: -55.5,10.5
parent: 2
- - uid: 4019
+ - uid: 11208
components:
- type: Transform
- pos: 25.5,5.5
+ pos: -48.5,32.5
parent: 2
- - uid: 4020
+ - uid: 11209
components:
- type: Transform
- pos: 26.5,5.5
+ pos: 16.5,-38.5
parent: 2
- - uid: 4021
+ - uid: 11210
components:
- type: Transform
- pos: 27.5,5.5
+ pos: -48.5,28.5
parent: 2
- - uid: 4022
+ - uid: 11211
components:
- type: Transform
- pos: 28.5,5.5
+ pos: -12.5,-50.5
parent: 2
- - uid: 4023
+ - uid: 11212
components:
- type: Transform
- pos: 29.5,5.5
+ pos: -13.5,-51.5
parent: 2
- - uid: 4024
+ - uid: 11213
components:
- type: Transform
- pos: 30.5,5.5
+ pos: -20.5,-40.5
parent: 2
- - uid: 4025
+ - uid: 11214
components:
- type: Transform
- pos: 31.5,5.5
+ pos: 17.5,-12.5
parent: 2
- - uid: 4026
+ - uid: 11215
components:
- type: Transform
- pos: 32.5,5.5
+ pos: -22.5,-75.5
parent: 2
- - uid: 4027
+ - uid: 11216
components:
- type: Transform
- pos: 32.5,4.5
+ pos: 12.5,50.5
parent: 2
- - uid: 4028
+ - uid: 11217
components:
- type: Transform
- pos: 29.5,6.5
+ pos: 41.5,-39.5
parent: 2
- - uid: 4029
+ - uid: 11218
components:
- type: Transform
- pos: 32.5,6.5
+ pos: 77.5,-41.5
parent: 2
- - uid: 4030
+ - uid: 11219
components:
- type: Transform
- pos: 30.5,4.5
+ pos: -54.5,36.5
parent: 2
- - uid: 4031
+ - uid: 11220
components:
- type: Transform
- pos: 57.5,2.5
+ pos: -64.5,-30.5
parent: 2
- - uid: 4032
+ - uid: 11221
components:
- type: Transform
- pos: 57.5,3.5
+ pos: -56.5,56.5
parent: 2
- - uid: 4033
+ - uid: 11222
components:
- type: Transform
- pos: 55.5,10.5
+ pos: -60.5,1.5
parent: 2
- - uid: 4034
+ - uid: 11223
components:
- type: Transform
- pos: 55.5,9.5
+ pos: 29.5,-14.5
parent: 2
- - uid: 4035
+ - uid: 11224
components:
- type: Transform
- pos: 55.5,8.5
+ pos: 21.5,10.5
parent: 2
- - uid: 4036
+ - uid: 11225
components:
- type: Transform
- pos: 55.5,7.5
+ pos: -54.5,10.5
parent: 2
- - uid: 4037
+ - uid: 11226
components:
- type: Transform
- pos: 55.5,6.5
+ pos: -41.5,48.5
parent: 2
- - uid: 4038
+ - uid: 11227
components:
- type: Transform
- pos: 55.5,5.5
+ pos: 22.5,36.5
parent: 2
- - uid: 4039
+ - uid: 11228
components:
- type: Transform
- pos: 55.5,4.5
+ pos: -10.5,23.5
parent: 2
- - uid: 4040
+ - uid: 11229
components:
- type: Transform
- pos: 55.5,3.5
+ pos: 10.5,44.5
parent: 2
- - uid: 4041
+ - uid: 11230
components:
- type: Transform
- pos: 54.5,4.5
+ pos: -18.5,17.5
parent: 2
- - uid: 4042
+ - uid: 11231
components:
- type: Transform
- pos: 53.5,4.5
+ pos: 54.5,-26.5
parent: 2
- - uid: 4043
+ - uid: 11232
components:
- type: Transform
- pos: 52.5,4.5
+ pos: -25.5,65.5
parent: 2
- - uid: 4044
+ - uid: 11233
components:
- type: Transform
- pos: 51.5,4.5
+ pos: -11.5,-10.5
parent: 2
- - uid: 4045
+ - uid: 11234
components:
- type: Transform
- pos: 50.5,4.5
+ pos: -36.5,-61.5
parent: 2
- - uid: 4046
+ - uid: 11235
components:
- type: Transform
- pos: 50.5,8.5
+ pos: 44.5,-5.5
parent: 2
- - uid: 4047
+ - uid: 11236
components:
- type: Transform
- pos: 51.5,8.5
+ pos: 24.5,56.5
parent: 2
- - uid: 4048
+ - uid: 11237
components:
- type: Transform
- pos: 52.5,8.5
+ pos: -51.5,-14.5
parent: 2
- - uid: 4049
+ - uid: 11238
components:
- type: Transform
- pos: 53.5,8.5
+ pos: 13.5,61.5
parent: 2
- - uid: 4050
+ - uid: 11239
components:
- type: Transform
- pos: 54.5,8.5
+ pos: 11.5,36.5
parent: 2
- - uid: 4051
+ - uid: 11240
components:
- type: Transform
- pos: 53.5,9.5
+ pos: -2.5,23.5
parent: 2
- - uid: 4052
+ - uid: 11241
components:
- type: Transform
- pos: 57.5,4.5
+ pos: -31.5,-72.5
parent: 2
- - uid: 4053
+ - uid: 11242
components:
- type: Transform
- pos: 58.5,4.5
+ pos: 42.5,-46.5
parent: 2
- - uid: 4054
+ - uid: 11243
components:
- type: Transform
- pos: 58.5,5.5
+ pos: 46.5,-27.5
parent: 2
- - uid: 4055
+ - uid: 11244
components:
- type: Transform
- pos: 58.5,6.5
+ pos: 33.5,-0.5
parent: 2
- - uid: 4056
+ - uid: 11245
components:
- type: Transform
- pos: 58.5,7.5
+ pos: -56.5,32.5
parent: 2
- - uid: 4057
+ - uid: 11246
components:
- type: Transform
- pos: 58.5,8.5
+ pos: -36.5,-3.5
parent: 2
- - uid: 4058
+ - uid: 11247
components:
- type: Transform
- pos: 58.5,9.5
+ pos: -9.5,-61.5
parent: 2
- - uid: 4059
+ - uid: 11248
components:
- type: Transform
- pos: 59.5,4.5
+ pos: -71.5,15.5
parent: 2
- - uid: 4060
+ - uid: 11249
components:
- type: Transform
- pos: 60.5,4.5
+ pos: -4.5,30.5
parent: 2
- - uid: 4061
+ - uid: 11250
components:
- type: Transform
- pos: 61.5,4.5
+ pos: 17.5,-54.5
parent: 2
- - uid: 4062
+ - uid: 11251
components:
- type: Transform
- pos: 62.5,4.5
+ pos: 0.5,-45.5
parent: 2
- - uid: 4063
+ - uid: 11252
components:
- type: Transform
- pos: 62.5,5.5
+ pos: -39.5,-63.5
parent: 2
- - uid: 4064
+ - uid: 11253
components:
- type: Transform
- pos: 62.5,6.5
+ pos: 17.5,1.5
parent: 2
- - uid: 4065
+ - uid: 11254
components:
- type: Transform
- pos: 62.5,7.5
+ pos: -26.5,-73.5
parent: 2
- - uid: 4066
+ - uid: 11255
components:
- type: Transform
- pos: 62.5,8.5
+ pos: -25.5,62.5
parent: 2
- - uid: 4067
+ - uid: 11256
components:
- type: Transform
- pos: 62.5,9.5
+ pos: 17.5,4.5
parent: 2
- - uid: 4068
+ - uid: 11257
components:
- type: Transform
- pos: 63.5,4.5
+ pos: -25.5,-73.5
parent: 2
- - uid: 4069
+ - uid: 11258
components:
- type: Transform
- pos: 64.5,4.5
+ pos: 14.5,-38.5
parent: 2
- - uid: 4070
+ - uid: 11259
components:
- type: Transform
- pos: 65.5,4.5
+ pos: -52.5,29.5
parent: 2
- - uid: 4071
+ - uid: 11260
components:
- type: Transform
- pos: 66.5,4.5
+ pos: 25.5,-29.5
parent: 2
- - uid: 4072
+ - uid: 11261
components:
- type: Transform
- pos: 66.5,5.5
+ pos: 14.5,-34.5
parent: 2
- - uid: 4073
+ - uid: 11262
components:
- type: Transform
- pos: 66.5,6.5
+ pos: -41.5,13.5
parent: 2
- - uid: 4074
+ - uid: 11263
components:
- type: Transform
- pos: 66.5,7.5
+ pos: -28.5,-30.5
parent: 2
- - uid: 4075
+ - uid: 11264
components:
- type: Transform
- pos: 66.5,8.5
+ pos: 39.5,-15.5
parent: 2
- - uid: 4076
+ - uid: 11265
components:
- type: Transform
- pos: 66.5,9.5
+ pos: -3.5,30.5
parent: 2
- - uid: 4077
+ - uid: 11266
components:
- type: Transform
- pos: 67.5,4.5
+ pos: 25.5,-25.5
parent: 2
- - uid: 4078
+ - uid: 11267
components:
- type: Transform
- pos: 68.5,4.5
+ pos: 41.5,-12.5
parent: 2
- - uid: 4079
+ - uid: 11268
components:
- type: Transform
- pos: 69.5,4.5
+ pos: 55.5,-28.5
parent: 2
- - uid: 4080
+ - uid: 11269
components:
- type: Transform
- pos: 69.5,5.5
+ pos: -53.5,41.5
parent: 2
- - uid: 4081
+ - uid: 11270
components:
- type: Transform
- pos: 69.5,6.5
+ pos: 0.5,-42.5
parent: 2
- - uid: 4082
+ - uid: 11271
components:
- type: Transform
- pos: 69.5,7.5
+ pos: -22.5,-61.5
parent: 2
- - uid: 4083
+ - uid: 11272
components:
- type: Transform
- pos: 69.5,8.5
+ pos: 14.5,56.5
parent: 2
- - uid: 4084
+ - uid: 11273
components:
- type: Transform
- pos: 69.5,9.5
+ pos: 11.5,71.5
parent: 2
- - uid: 4085
+ - uid: 11274
components:
- type: Transform
- pos: 69.5,10.5
+ pos: 9.5,50.5
parent: 2
- - uid: 4086
+ - uid: 11275
components:
- type: Transform
- pos: 62.5,10.5
+ pos: -52.5,41.5
parent: 2
- - uid: 4087
+ - uid: 11276
components:
- type: Transform
- pos: 70.5,6.5
+ pos: 26.5,-14.5
parent: 2
- - uid: 4088
+ - uid: 11277
components:
- type: Transform
- pos: 62.5,11.5
+ pos: -51.5,41.5
parent: 2
- - uid: 4089
+ - uid: 11278
components:
- type: Transform
- pos: 62.5,12.5
+ pos: -50.5,41.5
parent: 2
- - uid: 4090
+ - uid: 11279
components:
- type: Transform
- pos: 63.5,12.5
+ pos: -49.5,41.5
parent: 2
- - uid: 4091
+ - uid: 11280
components:
- type: Transform
- pos: 64.5,12.5
+ pos: -26.5,22.5
parent: 2
- - uid: 4092
+ - uid: 11281
components:
- type: Transform
- pos: 65.5,12.5
+ pos: -25.5,23.5
parent: 2
- - uid: 4093
+ - uid: 11282
components:
- type: Transform
- pos: 66.5,12.5
+ pos: -49.5,42.5
parent: 2
- - uid: 4094
+ - uid: 11283
components:
- type: Transform
- pos: 55.5,14.5
+ pos: -66.5,15.5
parent: 2
- - uid: 4095
+ - uid: 11284
components:
- type: Transform
- pos: 55.5,13.5
+ pos: -66.5,15.5
parent: 2
- - uid: 4096
+ - uid: 11285
components:
- type: Transform
- pos: 55.5,12.5
+ pos: -21.5,-30.5
parent: 2
- - uid: 4097
+ - uid: 11286
components:
- type: Transform
- pos: 55.5,12.5
+ pos: -11.5,-77.5
parent: 2
- - uid: 4098
+ - uid: 11287
components:
- type: Transform
- pos: 54.5,12.5
+ pos: -41.5,51.5
parent: 2
- - uid: 4099
+ - uid: 11288
components:
- type: Transform
- pos: 53.5,12.5
+ pos: 14.5,-55.5
parent: 2
- - uid: 4100
+ - uid: 11289
components:
- type: Transform
- pos: 52.5,12.5
+ pos: 27.5,18.5
parent: 2
- - uid: 4101
+ - uid: 11290
components:
- type: Transform
- pos: 51.5,12.5
+ pos: 13.5,40.5
parent: 2
- - uid: 4102
+ - uid: 11291
components:
- type: Transform
- pos: 50.5,12.5
+ pos: 17.5,-16.5
parent: 2
- - uid: 4103
+ - uid: 11292
components:
- type: Transform
- pos: 53.5,11.5
+ pos: 11.5,-8.5
parent: 2
- - uid: 4104
+ - uid: 11293
components:
- type: Transform
- pos: 51.5,13.5
+ pos: 6.5,69.5
parent: 2
- - uid: 4105
+ - uid: 11294
components:
- type: Transform
- pos: 56.5,12.5
+ pos: 9.5,90.5
parent: 2
- - uid: 4106
+ - uid: 11295
components:
- type: Transform
- pos: 57.5,12.5
+ pos: 6.5,81.5
parent: 2
- - uid: 4107
+ - uid: 11296
components:
- type: Transform
- pos: 58.5,12.5
+ pos: 41.5,-32.5
parent: 2
- - uid: 4108
+ - uid: 11297
components:
- type: Transform
- pos: 59.5,12.5
+ pos: 22.5,12.5
parent: 2
- - uid: 4109
+ - uid: 11298
components:
- type: Transform
- pos: 60.5,12.5
+ pos: 25.5,-9.5
parent: 2
- - uid: 4110
+ - uid: 11299
components:
- type: Transform
- pos: 56.5,20.5
+ pos: 9.5,51.5
parent: 2
- - uid: 4111
+ - uid: 11300
components:
- type: Transform
- pos: 56.5,19.5
+ pos: 41.5,-27.5
parent: 2
- - uid: 4112
+ - uid: 11301
components:
- type: Transform
- pos: 56.5,18.5
+ pos: -0.5,29.5
parent: 2
- - uid: 4113
+ - uid: 11302
components:
- type: Transform
- pos: 56.5,17.5
+ pos: -8.5,-74.5
parent: 2
- - uid: 4114
+ - uid: 11303
components:
- type: Transform
- pos: 57.5,17.5
+ pos: 6.5,73.5
parent: 2
- - uid: 4115
+ - uid: 11304
components:
- type: Transform
- pos: 58.5,17.5
+ pos: -35.5,-57.5
parent: 2
- - uid: 4116
+ - uid: 11305
components:
- type: Transform
- pos: 59.5,17.5
+ pos: -3.5,-14.5
parent: 2
- - uid: 4117
+ - uid: 11306
components:
- type: Transform
- pos: 60.5,17.5
+ pos: 43.5,-32.5
parent: 2
- - uid: 4118
+ - uid: 11307
components:
- type: Transform
- pos: 61.5,17.5
+ pos: -51.5,-12.5
parent: 2
- - uid: 4119
+ - uid: 11308
components:
- type: Transform
- pos: 62.5,17.5
+ pos: 36.5,-1.5
parent: 2
- - uid: 4120
+ - uid: 11309
components:
- type: Transform
- pos: 63.5,17.5
+ pos: 43.5,-27.5
parent: 2
- - uid: 4121
+ - uid: 11310
components:
- type: Transform
- pos: 64.5,17.5
+ pos: 15.5,46.5
parent: 2
- - uid: 4122
+ - uid: 11311
components:
- type: Transform
- pos: 65.5,17.5
+ pos: -18.5,4.5
parent: 2
- - uid: 4123
+ - uid: 11312
components:
- type: Transform
- pos: 66.5,17.5
+ pos: 10.5,61.5
parent: 2
- - uid: 4124
+ - uid: 11313
components:
- type: Transform
- pos: 55.5,17.5
+ pos: -51.5,-5.5
parent: 2
- - uid: 4125
+ - uid: 11314
components:
- type: Transform
- pos: 54.5,17.5
+ pos: -5.5,-63.5
parent: 2
- - uid: 4126
+ - uid: 11315
components:
- type: Transform
- pos: 53.5,17.5
+ pos: 17.5,13.5
parent: 2
- - uid: 4127
+ - uid: 11316
components:
- type: Transform
- pos: 52.5,17.5
+ pos: -24.5,-61.5
parent: 2
- - uid: 4128
+ - uid: 11317
components:
- type: Transform
- pos: 51.5,17.5
+ pos: 0.5,-39.5
parent: 2
- - uid: 4129
+ - uid: 11318
components:
- type: Transform
- pos: 50.5,17.5
+ pos: -41.5,-73.5
parent: 2
- - uid: 4130
+ - uid: 11319
components:
- type: Transform
- pos: 50.5,16.5
+ pos: -24.5,67.5
parent: 2
- - uid: 4131
+ - uid: 11320
components:
- type: Transform
- pos: 52.5,19.5
+ pos: -36.5,-14.5
parent: 2
- - uid: 4132
+ - uid: 11321
components:
- type: Transform
- pos: 52.5,18.5
+ pos: 6.5,90.5
parent: 2
- - uid: 4133
+ - uid: 11322
components:
- type: Transform
- pos: 51.5,15.5
+ pos: -27.5,-64.5
parent: 2
- - uid: 4134
+ - uid: 11323
components:
- type: Transform
- pos: 50.5,15.5
+ pos: -23.5,-19.5
parent: 2
- - uid: 4135
+ - uid: 11324
components:
- type: Transform
- pos: 45.5,25.5
+ pos: -35.5,40.5
parent: 2
- - uid: 4136
+ - uid: 11325
components:
- type: Transform
- pos: 45.5,24.5
+ pos: -48.5,29.5
parent: 2
- - uid: 4137
+ - uid: 11326
components:
- type: Transform
- pos: 45.5,23.5
+ pos: -42.5,34.5
parent: 2
- - uid: 4138
+ - uid: 11327
components:
- type: Transform
- pos: 45.5,22.5
+ pos: 17.5,8.5
parent: 2
- - uid: 4139
+ - uid: 11328
components:
- type: Transform
- pos: 45.5,21.5
+ pos: 6.5,72.5
parent: 2
- - uid: 4140
+ - uid: 11329
components:
- type: Transform
- pos: 45.5,20.5
+ pos: -21.5,-29.5
parent: 2
- - uid: 4141
+ - uid: 11330
components:
- type: Transform
- pos: 46.5,20.5
+ pos: -28.5,-57.5
parent: 2
- - uid: 4142
+ - uid: 11331
components:
- type: Transform
- pos: 47.5,20.5
+ pos: -57.5,-10.5
parent: 2
- - uid: 4143
+ - uid: 11332
components:
- type: Transform
- pos: 47.5,19.5
+ pos: -9.5,-33.5
parent: 2
- - uid: 4144
+ - uid: 11333
components:
- type: Transform
- pos: 47.5,18.5
+ pos: 10.5,7.5
parent: 2
- - uid: 4145
+ - uid: 11334
components:
- type: Transform
- pos: 47.5,17.5
+ pos: -10.5,2.5
parent: 2
- - uid: 4146
+ - uid: 11335
components:
- type: Transform
- pos: 47.5,16.5
+ pos: 2.5,15.5
parent: 2
- - uid: 4147
+ - uid: 11336
components:
- type: Transform
- pos: 47.5,22.5
+ pos: -16.5,70.5
parent: 2
- - uid: 4148
+ - uid: 11337
components:
- type: Transform
- pos: 47.5,23.5
+ pos: 27.5,-45.5
parent: 2
- - uid: 4149
+ - uid: 11338
components:
- type: Transform
- pos: 47.5,21.5
+ pos: 9.5,-44.5
parent: 2
- - uid: 4150
+ - uid: 11339
components:
- type: Transform
- pos: 48.5,16.5
+ pos: 6.5,-44.5
parent: 2
- - uid: 4151
+ - uid: 11340
components:
- type: Transform
- pos: 47.5,15.5
+ pos: 4.5,-41.5
parent: 2
- - uid: 4152
+ - uid: 11341
components:
- type: Transform
- pos: 36.5,12.5
+ pos: 4.5,-45.5
parent: 2
- - uid: 4153
+ - uid: 11342
components:
- type: Transform
- pos: 36.5,11.5
+ pos: -28.5,-44.5
parent: 2
- - uid: 4154
+ - uid: 11343
components:
- type: Transform
- pos: 36.5,10.5
+ pos: 26.5,-29.5
parent: 2
- - uid: 4155
+ - uid: 11344
components:
- type: Transform
- pos: 36.5,9.5
+ pos: 17.5,-46.5
parent: 2
- - uid: 4156
+ - uid: 11345
components:
- type: Transform
- pos: 36.5,8.5
+ pos: -11.5,-50.5
parent: 2
- - uid: 4157
+ - uid: 11346
components:
- type: Transform
- pos: 37.5,8.5
+ pos: -58.5,1.5
parent: 2
- - uid: 4158
+ - uid: 11347
components:
- type: Transform
- pos: 38.5,8.5
+ pos: 3.5,-28.5
parent: 2
- - uid: 4159
+ - uid: 11348
components:
- type: Transform
- pos: 39.5,8.5
+ pos: 37.5,-64.5
parent: 2
- - uid: 4160
+ - uid: 11349
components:
- type: Transform
- pos: 40.5,8.5
+ pos: 25.5,-45.5
parent: 2
- - uid: 4161
+ - uid: 11350
components:
- type: Transform
- pos: 40.5,7.5
+ pos: -71.5,8.5
parent: 2
- - uid: 4162
+ - uid: 11351
components:
- type: Transform
- pos: 40.5,6.5
+ pos: 13.5,-1.5
parent: 2
- - uid: 4163
+ - uid: 11352
components:
- type: Transform
- pos: 40.5,5.5
+ pos: -28.5,-51.5
parent: 2
- - uid: 4164
+ - uid: 11353
components:
- type: Transform
- pos: 40.5,4.5
+ pos: -40.5,40.5
parent: 2
- - uid: 4165
+ - uid: 11354
components:
- type: Transform
- pos: 41.5,4.5
+ pos: -29.5,38.5
parent: 2
- - uid: 4166
+ - uid: 11355
components:
- type: Transform
- pos: 42.5,4.5
+ pos: -5.5,-12.5
parent: 2
- - uid: 4167
+ - uid: 11356
components:
- type: Transform
- pos: 43.5,4.5
+ pos: 6.5,76.5
parent: 2
- - uid: 4168
+ - uid: 11357
components:
- type: Transform
- pos: 43.5,5.5
+ pos: -9.5,-80.5
parent: 2
- - uid: 4169
+ - uid: 11358
components:
- type: Transform
- pos: 43.5,6.5
+ pos: 17.5,12.5
parent: 2
- - uid: 4170
+ - uid: 11359
components:
- type: Transform
- pos: 40.5,9.5
+ pos: 3.5,-30.5
parent: 2
- - uid: 4171
+ - uid: 11360
components:
- type: Transform
- pos: 40.5,10.5
+ pos: -10.5,-32.5
parent: 2
- - uid: 4172
+ - uid: 11361
components:
- type: Transform
- pos: 40.5,11.5
+ pos: 5.5,-32.5
parent: 2
- - uid: 4173
+ - uid: 11362
components:
- type: Transform
- pos: 40.5,12.5
+ pos: -4.5,-7.5
parent: 2
- - uid: 4174
+ - uid: 11363
components:
- type: Transform
- pos: 40.5,3.5
+ pos: 0.5,-46.5
parent: 2
- - uid: 4175
+ - uid: 11364
components:
- type: Transform
- pos: 40.5,2.5
+ pos: -33.5,-51.5
parent: 2
- - uid: 4176
+ - uid: 11365
components:
- type: Transform
- pos: 40.5,1.5
+ pos: -59.5,1.5
parent: 2
- - uid: 4177
+ - uid: 11366
components:
- type: Transform
- pos: 40.5,0.5
+ pos: 28.5,-39.5
parent: 2
- - uid: 4178
+ - uid: 11367
components:
- type: Transform
- pos: 34.5,5.5
+ pos: 29.5,-19.5
parent: 2
- - uid: 4179
+ - uid: 11368
components:
- type: Transform
- pos: 35.5,5.5
+ pos: -57.5,-3.5
parent: 2
- - uid: 4180
+ - uid: 11369
components:
- type: Transform
- pos: 36.5,5.5
+ pos: 4.5,-50.5
parent: 2
- - uid: 4181
+ - uid: 11370
components:
- type: Transform
- pos: 37.5,5.5
+ pos: -12.5,-40.5
parent: 2
- - uid: 4182
+ - uid: 11371
components:
- type: Transform
- pos: 37.5,6.5
+ pos: -61.5,14.5
parent: 2
- - uid: 4183
+ - uid: 11372
components:
- type: Transform
- pos: 38.5,6.5
+ pos: 17.5,36.5
parent: 2
- - uid: 4184
+ - uid: 11373
components:
- type: Transform
- pos: 39.5,6.5
+ pos: -55.5,34.5
parent: 2
- - uid: 4185
+ - uid: 11374
components:
- type: Transform
- pos: 39.5,4.5
+ pos: 26.5,-22.5
parent: 2
- - uid: 4186
+ - uid: 11375
components:
- type: Transform
- pos: 38.5,4.5
+ pos: -42.5,32.5
parent: 2
- - uid: 4187
+ - uid: 11376
components:
- type: Transform
- pos: 35.5,4.5
+ pos: -32.5,-46.5
parent: 2
- - uid: 4188
+ - uid: 11377
components:
- type: Transform
- pos: 37.5,3.5
+ pos: -54.5,-11.5
parent: 2
- - uid: 4189
+ - uid: 11378
components:
- type: Transform
- pos: 37.5,2.5
+ pos: 13.5,64.5
parent: 2
- - uid: 4190
+ - uid: 11379
components:
- type: Transform
- pos: 37.5,1.5
+ pos: 30.5,-60.5
parent: 2
- - uid: 4191
+ - uid: 11380
components:
- type: Transform
- pos: 37.5,0.5
+ pos: -49.5,-2.5
parent: 2
- - uid: 4192
+ - uid: 11381
components:
- type: Transform
- pos: 37.5,-0.5
+ pos: 4.5,-44.5
parent: 2
- - uid: 4193
+ - uid: 11382
components:
- type: Transform
- pos: 37.5,-1.5
+ pos: -28.5,-45.5
parent: 2
- - uid: 4194
+ - uid: 11383
components:
- type: Transform
- pos: 36.5,0.5
+ pos: -21.5,-32.5
parent: 2
- - uid: 4195
+ - uid: 11384
components:
- type: Transform
- pos: 35.5,0.5
+ pos: -45.5,22.5
parent: 2
- - uid: 4196
+ - uid: 11385
components:
- type: Transform
- pos: 34.5,0.5
+ pos: 15.5,-41.5
parent: 2
- - uid: 4197
+ - uid: 11386
components:
- type: Transform
- pos: 33.5,0.5
+ pos: 10.5,0.5
parent: 2
- - uid: 4198
+ - uid: 11387
components:
- type: Transform
- pos: 33.5,1.5
+ pos: -10.5,3.5
parent: 2
- - uid: 4199
+ - uid: 11388
components:
- type: Transform
- pos: 36.5,-1.5
+ pos: 11.5,8.5
parent: 2
- - uid: 4200
+ - uid: 11389
components:
- type: Transform
- pos: 38.5,-2.5
+ pos: 51.5,-10.5
parent: 2
- - uid: 4201
+ - uid: 11390
components:
- type: Transform
- pos: 38.5,-3.5
+ pos: 44.5,-8.5
parent: 2
- - uid: 4202
+ - uid: 11391
components:
- type: Transform
- pos: 37.5,-3.5
+ pos: 54.5,-43.5
parent: 2
- - uid: 4203
+ - uid: 11392
components:
- type: Transform
- pos: 36.5,-3.5
+ pos: 20.5,27.5
parent: 2
- - uid: 4204
+ - uid: 11393
components:
- type: Transform
- pos: 35.5,-3.5
+ pos: 44.5,0.5
parent: 2
- - uid: 4205
+ - uid: 11394
components:
- type: Transform
- pos: 34.5,-3.5
+ pos: 55.5,-43.5
parent: 2
- - uid: 4206
+ - uid: 11395
components:
- type: Transform
- pos: 33.5,-3.5
+ pos: 17.5,56.5
parent: 2
- - uid: 4207
+ - uid: 11396
components:
- type: Transform
- pos: 33.5,-4.5
+ pos: 25.5,56.5
parent: 2
- - uid: 4208
+ - uid: 11397
components:
- type: Transform
- pos: 44.5,-4.5
+ pos: -28.5,-54.5
parent: 2
- - uid: 4209
+ - uid: 11398
components:
- type: Transform
- pos: 44.5,-5.5
+ pos: 28.5,-38.5
parent: 2
- - uid: 4210
+ - uid: 11399
components:
- type: Transform
- pos: 44.5,-6.5
+ pos: -43.5,37.5
parent: 2
- - uid: 4211
+ - uid: 11400
components:
- type: Transform
- pos: 44.5,-7.5
+ pos: 23.5,25.5
parent: 2
- - uid: 4212
+ - uid: 11401
components:
- type: Transform
- pos: 44.5,-8.5
+ pos: 17.5,24.5
parent: 2
- - uid: 4213
+ - uid: 11402
components:
- type: Transform
- pos: 43.5,-7.5
+ pos: -56.5,10.5
parent: 2
- - uid: 4214
+ - uid: 11403
components:
- type: Transform
- pos: 45.5,-7.5
+ pos: -50.5,11.5
parent: 2
- - uid: 4215
+ - uid: 11404
components:
- type: Transform
- pos: 46.5,-7.5
+ pos: -24.5,-16.5
parent: 2
- - uid: 4216
+ - uid: 11405
components:
- type: Transform
- pos: 47.5,-7.5
+ pos: -38.5,42.5
parent: 2
- - uid: 4217
+ - uid: 11406
components:
- type: Transform
- pos: 48.5,-7.5
+ pos: -42.5,37.5
parent: 2
- - uid: 4218
+ - uid: 11407
components:
- type: Transform
- pos: 49.5,-7.5
+ pos: -62.5,12.5
parent: 2
- - uid: 4219
+ - uid: 11408
components:
- type: Transform
- pos: 50.5,-7.5
+ pos: -26.5,26.5
parent: 2
- - uid: 4220
+ - uid: 11409
components:
- type: Transform
- pos: 51.5,-7.5
+ pos: -50.5,10.5
parent: 2
- - uid: 4221
+ - uid: 11410
components:
- type: Transform
- pos: 47.5,-6.5
+ pos: -54.5,41.5
parent: 2
- - uid: 4222
+ - uid: 11411
components:
- type: Transform
- pos: 44.5,4.5
+ pos: 24.5,24.5
parent: 2
- - uid: 4223
+ - uid: 11412
components:
- type: Transform
- pos: 45.5,4.5
+ pos: 21.5,26.5
parent: 2
- - uid: 4224
+ - uid: 11413
components:
- type: Transform
- pos: 46.5,4.5
+ pos: 44.5,-9.5
parent: 2
- - uid: 4225
+ - uid: 11414
components:
- type: Transform
- pos: 47.5,4.5
+ pos: 53.5,-7.5
parent: 2
- - uid: 4226
+ - uid: 11415
components:
- type: Transform
- pos: 47.5,3.5
+ pos: 45.5,-19.5
parent: 2
- - uid: 4227
+ - uid: 11416
components:
- type: Transform
- pos: 47.5,2.5
+ pos: 54.5,-6.5
parent: 2
- - uid: 4228
+ - uid: 11417
components:
- type: Transform
- pos: 47.5,1.5
+ pos: 31.5,-4.5
parent: 2
- - uid: 4229
+ - uid: 11418
components:
- type: Transform
- pos: 47.5,0.5
+ pos: 42.5,-27.5
parent: 2
- - uid: 4230
+ - uid: 11419
components:
- type: Transform
- pos: 47.5,-0.5
+ pos: 36.5,-0.5
parent: 2
- - uid: 4231
+ - uid: 11420
components:
- type: Transform
- pos: 47.5,-1.5
+ pos: 55.5,-20.5
parent: 2
- - uid: 4232
+ - uid: 11421
components:
- type: Transform
- pos: 47.5,-2.5
+ pos: 31.5,-1.5
parent: 2
- - uid: 4233
+ - uid: 11422
components:
- type: Transform
- pos: 47.5,-3.5
+ pos: 18.5,36.5
parent: 2
- - uid: 4234
+ - uid: 11423
components:
- type: Transform
- pos: 47.5,-3.5
+ pos: 19.5,36.5
parent: 2
- - uid: 4235
+ - uid: 11424
components:
- type: Transform
- pos: 47.5,-4.5
+ pos: -18.5,0.5
parent: 2
- - uid: 4236
+ - uid: 11425
components:
- type: Transform
- pos: 48.5,0.5
+ pos: 21.5,36.5
parent: 2
- - uid: 4237
+ - uid: 11426
components:
- type: Transform
- pos: 49.5,0.5
+ pos: -18.5,1.5
parent: 2
- - uid: 4238
+ - uid: 11427
components:
- type: Transform
- pos: 50.5,0.5
+ pos: 21.5,36.5
parent: 2
- - uid: 4239
+ - uid: 11428
components:
- type: Transform
- pos: 51.5,0.5
+ pos: -12.5,23.5
parent: 2
- - uid: 4240
+ - uid: 11429
components:
- type: Transform
- pos: 52.5,0.5
+ pos: 6.5,23.5
parent: 2
- - uid: 4241
+ - uid: 11430
components:
- type: Transform
- pos: 53.5,0.5
+ pos: 8.5,57.5
parent: 2
- - uid: 4242
+ - uid: 11431
components:
- type: Transform
- pos: 54.5,0.5
+ pos: 20.5,36.5
parent: 2
- - uid: 4243
+ - uid: 11432
components:
- type: Transform
- pos: 55.5,0.5
+ pos: 10.5,58.5
parent: 2
- - uid: 4244
+ - uid: 11433
components:
- type: Transform
- pos: 56.5,0.5
+ pos: -18.5,-0.5
parent: 2
- - uid: 4245
+ - uid: 11434
components:
- type: Transform
- pos: 57.5,0.5
+ pos: 17.5,-1.5
parent: 2
- - uid: 4246
+ - uid: 11435
components:
- type: Transform
- pos: 58.5,0.5
+ pos: -13.5,23.5
parent: 2
- - uid: 4247
+ - uid: 11436
components:
- type: Transform
- pos: 59.5,0.5
+ pos: 5.5,23.5
parent: 2
- - uid: 4248
+ - uid: 11437
components:
- type: Transform
- pos: 60.5,0.5
+ pos: 17.5,-0.5
parent: 2
- - uid: 4249
+ - uid: 11438
components:
- type: Transform
- pos: 61.5,0.5
+ pos: 23.5,24.5
parent: 2
- - uid: 4250
+ - uid: 11439
components:
- type: Transform
- pos: 62.5,0.5
+ pos: 22.5,24.5
parent: 2
- - uid: 4251
+ - uid: 11440
components:
- type: Transform
- pos: 63.5,0.5
+ pos: 1.5,47.5
parent: 2
- - uid: 4252
+ - uid: 11441
components:
- type: Transform
- pos: 64.5,0.5
+ pos: 2.5,-14.5
parent: 2
- - uid: 4253
+ - uid: 11442
components:
- type: Transform
- pos: 65.5,0.5
+ pos: 17.5,-2.5
parent: 2
- - uid: 4254
+ - uid: 11443
components:
- type: Transform
- pos: 66.5,0.5
+ pos: 17.5,-3.5
parent: 2
- - uid: 4255
+ - uid: 11444
components:
- type: Transform
- pos: 72.5,1.5
+ pos: 16.5,23.5
parent: 2
- - uid: 4256
+ - uid: 11445
components:
- type: Transform
- pos: 71.5,1.5
+ pos: 1.5,45.5
parent: 2
- - uid: 4257
+ - uid: 11446
components:
- type: Transform
- pos: 70.5,1.5
+ pos: -48.5,4.5
parent: 2
- - uid: 4258
+ - uid: 11447
components:
- type: Transform
- pos: 69.5,1.5
+ pos: 17.5,-3.5
parent: 2
- - uid: 4259
+ - uid: 11448
components:
- type: Transform
- pos: 72.5,-0.5
+ pos: -11.5,23.5
parent: 2
- - uid: 4260
+ - uid: 11449
components:
- type: Transform
- pos: 71.5,-0.5
+ pos: 9.5,57.5
parent: 2
- - uid: 4261
+ - uid: 11450
components:
- type: Transform
- pos: 70.5,-0.5
+ pos: 53.5,-8.5
parent: 2
- - uid: 4262
+ - uid: 11451
components:
- type: Transform
- pos: 69.5,-0.5
+ pos: 52.5,-10.5
parent: 2
- - uid: 4263
+ - uid: 11452
components:
- type: Transform
- pos: 69.5,-1.5
+ pos: 41.5,-40.5
parent: 2
- - uid: 4264
+ - uid: 11453
components:
- type: Transform
- pos: 69.5,-2.5
+ pos: 21.5,27.5
parent: 2
- - uid: 4265
+ - uid: 11454
components:
- type: Transform
- pos: 69.5,-3.5
+ pos: 14.5,23.5
parent: 2
- - uid: 4266
+ - uid: 11455
components:
- type: Transform
- pos: 70.5,-3.5
+ pos: -24.5,65.5
parent: 2
- - uid: 4267
+ - uid: 11456
components:
- type: Transform
- pos: 71.5,-3.5
+ pos: -28.5,-35.5
parent: 2
- - uid: 4268
+ - uid: 11457
components:
- type: Transform
- pos: 72.5,-3.5
+ pos: -41.5,16.5
parent: 2
- - uid: 4269
+ - uid: 11458
components:
- type: Transform
- pos: 73.5,-3.5
+ pos: -22.5,-68.5
parent: 2
- - uid: 4270
+ - uid: 11459
components:
- type: Transform
- pos: 50.5,-1.5
+ pos: -22.5,-70.5
parent: 2
- - uid: 4271
+ - uid: 11460
components:
- type: Transform
- pos: 50.5,-2.5
+ pos: -30.5,-40.5
parent: 2
- - uid: 4272
+ - uid: 11461
components:
- type: Transform
- pos: 50.5,-3.5
+ pos: 15.5,23.5
parent: 2
- - uid: 4273
+ - uid: 11462
components:
- type: Transform
- pos: 50.5,-4.5
+ pos: -36.5,42.5
parent: 2
- - uid: 4274
+ - uid: 11463
components:
- type: Transform
- pos: 51.5,-3.5
+ pos: 19.5,24.5
parent: 2
- - uid: 4275
+ - uid: 11464
components:
- type: Transform
- pos: 52.5,-3.5
+ pos: 18.5,24.5
parent: 2
- - uid: 4276
+ - uid: 11465
components:
- type: Transform
- pos: 53.5,-3.5
+ pos: -4.5,48.5
parent: 2
- - uid: 4277
+ - uid: 11466
components:
- type: Transform
- pos: 53.5,-2.5
+ pos: -3.5,48.5
parent: 2
- - uid: 4278
+ - uid: 11467
components:
- type: Transform
- pos: 53.5,-3.5
+ pos: 11.5,-55.5
parent: 2
- - uid: 4279
+ - uid: 11468
components:
- type: Transform
- pos: 53.5,-4.5
+ pos: 9.5,-55.5
parent: 2
- - uid: 4280
+ - uid: 11469
components:
- type: Transform
- pos: 63.5,-1.5
+ pos: 17.5,-4.5
parent: 2
- - uid: 4281
+ - uid: 11470
components:
- type: Transform
- pos: 63.5,-2.5
+ pos: 12.5,-55.5
parent: 2
- - uid: 4282
+ - uid: 11471
components:
- type: Transform
- pos: 63.5,-3.5
+ pos: -37.5,57.5
parent: 2
- - uid: 4283
+ - uid: 11472
components:
- type: Transform
- pos: 63.5,-4.5
+ pos: -41.5,17.5
parent: 2
- - uid: 4284
+ - uid: 11473
components:
- type: Transform
- pos: 63.5,-5.5
+ pos: -28.5,-34.5
parent: 2
- - uid: 4285
+ - uid: 11474
components:
- type: Transform
- pos: 62.5,-4.5
+ pos: 41.5,-28.5
parent: 2
- - uid: 4286
+ - uid: 11475
components:
- type: Transform
- pos: 61.5,-4.5
+ pos: 17.5,23.5
parent: 2
- - uid: 4287
+ - uid: 11476
components:
- type: Transform
- pos: 60.5,-4.5
+ pos: -3.5,-6.5
parent: 2
- - uid: 4288
+ - uid: 11477
components:
- type: Transform
- pos: 60.5,-2.5
+ pos: -34.5,-5.5
parent: 2
- - uid: 4289
+ - uid: 11478
components:
- type: Transform
- pos: 60.5,-3.5
+ pos: -35.5,42.5
parent: 2
- - uid: 4290
+ - uid: 11479
components:
- type: Transform
- pos: 60.5,-4.5
+ pos: 46.5,-19.5
parent: 2
- - uid: 4291
+ - uid: 11480
components:
- type: Transform
- pos: 60.5,-5.5
+ pos: -31.5,-45.5
parent: 2
- - uid: 4292
+ - uid: 11481
components:
- type: Transform
- pos: 61.5,-2.5
+ pos: 12.5,56.5
parent: 2
- - uid: 4293
+ - uid: 11482
components:
- type: Transform
- pos: 64.5,-3.5
+ pos: 53.5,-6.5
parent: 2
- - uid: 4294
+ - uid: 11483
components:
- type: Transform
- pos: 65.5,-3.5
+ pos: -48.5,-7.5
parent: 2
- - uid: 4295
+ - uid: 11484
components:
- type: Transform
- pos: 66.5,-3.5
+ pos: 1.5,43.5
parent: 2
- - uid: 4296
+ - uid: 11485
components:
- type: Transform
- pos: 46.5,0.5
+ pos: 1.5,44.5
parent: 2
- - uid: 4297
+ - uid: 11486
components:
- type: Transform
- pos: 45.5,0.5
+ pos: 15.5,23.5
parent: 2
- - uid: 4298
+ - uid: 11487
components:
- type: Transform
- pos: 44.5,0.5
+ pos: -20.5,-80.5
parent: 2
- - uid: 4299
+ - uid: 11488
components:
- type: Transform
- pos: 43.5,0.5
+ pos: -38.5,57.5
parent: 2
- - uid: 4300
+ - uid: 11489
components:
- type: Transform
- pos: 46.5,8.5
+ pos: -62.5,11.5
parent: 2
- - uid: 4301
+ - uid: 11490
components:
- type: Transform
- pos: 45.5,8.5
+ pos: -26.5,27.5
parent: 2
- - uid: 4302
+ - uid: 11491
components:
- type: Transform
- pos: 44.5,8.5
+ pos: -55.5,41.5
parent: 2
- - uid: 4303
+ - uid: 11492
components:
- type: Transform
- pos: 43.5,8.5
+ pos: -44.5,37.5
parent: 2
- - uid: 4304
+ - uid: 11493
components:
- type: Transform
- pos: 47.5,5.5
+ pos: -39.5,21.5
parent: 2
- - uid: 4305
+ - uid: 11494
components:
- type: Transform
- pos: 47.5,6.5
+ pos: 6.5,80.5
parent: 2
- - uid: 4306
+ - uid: 11495
components:
- type: Transform
- pos: 47.5,7.5
+ pos: -35.5,-5.5
parent: 2
- - uid: 4307
+ - uid: 11496
components:
- type: Transform
- pos: 47.5,8.5
+ pos: 6.5,79.5
parent: 2
- - uid: 4308
+ - uid: 11497
components:
- type: Transform
- pos: 47.5,9.5
+ pos: -41.5,20.5
parent: 2
- - uid: 4309
+ - uid: 11498
components:
- type: Transform
- pos: 47.5,10.5
+ pos: 6.5,78.5
parent: 2
- - uid: 4310
+ - uid: 11499
components:
- type: Transform
- pos: 47.5,11.5
+ pos: 30.5,-14.5
parent: 2
- - uid: 4311
+ - uid: 11500
components:
- type: Transform
- pos: 47.5,12.5
+ pos: 6.5,-33.5
parent: 2
- - uid: 4312
+ - uid: 11501
components:
- type: Transform
- pos: 47.5,13.5
+ pos: -1.5,31.5
parent: 2
- - uid: 4313
+ - uid: 11502
components:
- type: Transform
- pos: 46.5,12.5
+ pos: -41.5,55.5
parent: 2
- - uid: 4314
+ - uid: 11503
components:
- type: Transform
- pos: 45.5,12.5
+ pos: 4.5,23.5
parent: 2
- - uid: 4315
+ - uid: 11504
components:
- type: Transform
- pos: 44.5,12.5
+ pos: 32.5,-23.5
parent: 2
- - uid: 4316
+ - uid: 11505
components:
- type: Transform
- pos: 57.5,-0.5
+ pos: -75.5,15.5
parent: 2
- - uid: 4317
+ - uid: 11506
components:
- type: Transform
- pos: 57.5,-1.5
+ pos: -55.5,25.5
parent: 2
- - uid: 4318
+ - uid: 11507
components:
- type: Transform
- pos: 57.5,-2.5
+ pos: -57.5,-14.5
parent: 2
- - uid: 4319
+ - uid: 11508
components:
- type: Transform
- pos: 57.5,-3.5
+ pos: -48.5,2.5
parent: 2
- - uid: 4320
+ - uid: 11509
components:
- type: Transform
- pos: 57.5,-4.5
+ pos: 8.5,5.5
parent: 2
- - uid: 4321
+ - uid: 11510
components:
- type: Transform
- pos: 56.5,-3.5
+ pos: -8.5,-68.5
parent: 2
- - uid: 4322
+ - uid: 11511
components:
- type: Transform
- pos: 55.5,-3.5
+ pos: 10.5,45.5
parent: 2
- - uid: 4323
+ - uid: 11512
components:
- type: Transform
- pos: 58.5,-3.5
+ pos: -51.5,9.5
parent: 2
- - uid: 4324
+ - uid: 11513
components:
- type: Transform
- pos: 67.5,0.5
+ pos: 23.5,-19.5
parent: 2
- - uid: 4325
+ - uid: 11514
components:
- type: Transform
- pos: 26.5,3.5
+ pos: 53.5,-10.5
parent: 2
- - uid: 4326
+ - uid: 11515
components:
- type: Transform
- pos: 26.5,2.5
+ pos: 78.5,-42.5
parent: 2
- - uid: 4327
+ - uid: 11516
components:
- type: Transform
- pos: 26.5,1.5
+ pos: 36.5,-3.5
parent: 2
- - uid: 4328
+ - uid: 11517
components:
- type: Transform
- pos: 26.5,0.5
+ pos: 18.5,26.5
parent: 2
- - uid: 4329
+ - uid: 11518
components:
- type: Transform
- pos: 26.5,-0.5
+ pos: 53.5,-9.5
parent: 2
- - uid: 4330
+ - uid: 11519
components:
- type: Transform
- pos: 26.5,-1.5
+ pos: 23.5,-18.5
parent: 2
- - uid: 4331
+ - uid: 11520
components:
- type: Transform
- pos: 26.5,-2.5
+ pos: 36.5,-3.5
parent: 2
- - uid: 4332
+ - uid: 11521
components:
- type: Transform
- pos: 26.5,-3.5
+ pos: 44.5,-18.5
parent: 2
- - uid: 4333
+ - uid: 11522
components:
- type: Transform
- pos: 26.5,-4.5
+ pos: 37.5,-3.5
parent: 2
- - uid: 4334
+ - uid: 11523
components:
- type: Transform
- pos: 26.5,-5.5
+ pos: 19.5,27.5
parent: 2
- - uid: 4335
+ - uid: 11524
components:
- type: Transform
- pos: 26.5,-6.5
+ pos: -0.5,31.5
parent: 2
- - uid: 4336
+ - uid: 11525
components:
- type: Transform
- pos: 26.5,-7.5
+ pos: -77.5,12.5
parent: 2
- - uid: 4337
+ - uid: 11526
components:
- type: Transform
- pos: 27.5,-1.5
+ pos: 10.5,1.5
parent: 2
- - uid: 4338
+ - uid: 11527
components:
- type: Transform
- pos: 28.5,-1.5
+ pos: -33.5,-53.5
parent: 2
- - uid: 4339
+ - uid: 11528
components:
- type: Transform
- pos: 29.5,-1.5
+ pos: -46.5,6.5
parent: 2
- - uid: 4340
+ - uid: 11529
components:
- type: Transform
- pos: 30.5,-1.5
+ pos: -54.5,40.5
parent: 2
- - uid: 4341
+ - uid: 11530
components:
- type: Transform
- pos: 30.5,0.5
+ pos: 1.5,23.5
parent: 2
- - uid: 4342
+ - uid: 11531
components:
- type: Transform
- pos: 30.5,1.5
+ pos: 13.5,-8.5
parent: 2
- - uid: 4343
+ - uid: 11532
components:
- type: Transform
- pos: 30.5,2.5
+ pos: -31.5,-77.5
parent: 2
- - uid: 4344
+ - uid: 11533
components:
- type: Transform
- pos: 30.5,-2.5
+ pos: -47.5,22.5
parent: 2
- - uid: 4345
+ - uid: 11534
components:
- type: Transform
- pos: 30.5,-3.5
+ pos: 17.5,16.5
parent: 2
- - uid: 4346
+ - uid: 11535
components:
- type: Transform
- pos: 30.5,-4.5
+ pos: -80.5,-8.5
parent: 2
- - uid: 4347
+ - uid: 11536
components:
- type: Transform
- pos: 30.5,-5.5
+ pos: 50.5,-49.5
parent: 2
- - uid: 4348
+ - uid: 11537
components:
- type: Transform
- pos: 30.5,-6.5
+ pos: -66.5,14.5
parent: 2
- - uid: 4349
+ - uid: 11538
components:
- type: Transform
- pos: 30.5,-7.5
+ pos: -61.5,-16.5
parent: 2
- - uid: 4350
+ - uid: 11539
components:
- type: Transform
- pos: 30.5,-1.5
+ pos: 30.5,-19.5
parent: 2
- - uid: 4351
+ - uid: 11540
components:
- type: Transform
- pos: 30.5,-0.5
+ pos: -14.5,-34.5
parent: 2
- - uid: 4352
+ - uid: 11541
components:
- type: Transform
- pos: 25.5,-1.5
+ pos: -18.5,-39.5
parent: 2
- - uid: 4353
+ - uid: 11542
components:
- type: Transform
- pos: 24.5,-1.5
+ pos: 30.5,-23.5
parent: 2
- - uid: 4354
+ - uid: 11543
components:
- type: Transform
- pos: 23.5,-1.5
+ pos: 34.5,-23.5
parent: 2
- - uid: 4355
+ - uid: 11544
components:
- type: Transform
- pos: 22.5,-1.5
+ pos: 29.5,-29.5
parent: 2
- - uid: 4356
+ - uid: 11545
components:
- type: Transform
- pos: 21.5,-1.5
+ pos: 7.5,-43.5
parent: 2
- - uid: 4357
+ - uid: 11546
components:
- type: Transform
- pos: 20.5,-1.5
+ pos: 17.5,-51.5
parent: 2
- - uid: 4358
+ - uid: 11547
components:
- type: Transform
- pos: 22.5,-0.5
+ pos: 14.5,-36.5
parent: 2
- - uid: 4359
+ - uid: 11548
components:
- type: Transform
- pos: 22.5,0.5
+ pos: 4.5,-53.5
parent: 2
- - uid: 4360
+ - uid: 11549
components:
- type: Transform
- pos: 22.5,1.5
+ pos: 45.5,-10.5
parent: 2
- - uid: 4361
+ - uid: 11550
components:
- type: Transform
- pos: 22.5,2.5
+ pos: 51.5,-20.5
parent: 2
- - uid: 4362
+ - uid: 11551
components:
- type: Transform
- pos: 20.5,-2.5
+ pos: -52.5,-11.5
parent: 2
- - uid: 4363
+ - uid: 11552
components:
- type: Transform
- pos: 20.5,-3.5
+ pos: -50.5,9.5
parent: 2
- - uid: 4364
+ - uid: 11553
components:
- type: Transform
- pos: 21.5,-3.5
+ pos: 42.5,-3.5
parent: 2
- - uid: 4365
+ - uid: 11554
components:
- type: Transform
- pos: 22.5,-3.5
+ pos: 25.5,-28.5
parent: 2
- - uid: 4366
+ - uid: 11555
components:
- type: Transform
- pos: 22.5,-4.5
+ pos: -8.5,-69.5
parent: 2
- - uid: 4367
+ - uid: 11556
components:
- type: Transform
- pos: 22.5,-5.5
+ pos: 52.5,-27.5
parent: 2
- - uid: 4368
+ - uid: 11557
components:
- type: Transform
- pos: 22.5,-6.5
+ pos: -8.5,-73.5
parent: 2
- - uid: 4369
+ - uid: 11558
components:
- type: Transform
- pos: 22.5,-7.5
+ pos: -41.5,46.5
parent: 2
- - uid: 4370
+ - uid: 11559
components:
- type: Transform
- pos: 22.5,-7.5
+ pos: 29.5,11.5
parent: 2
- - uid: 4371
+ - uid: 11560
components:
- type: Transform
- pos: 23.5,-7.5
+ pos: 31.5,11.5
parent: 2
- - uid: 4372
+ - uid: 11561
components:
- type: Transform
- pos: 23.5,-3.5
+ pos: 31.5,13.5
parent: 2
- - uid: 4373
+ - uid: 11562
components:
- type: Transform
- pos: 24.5,-8.5
+ pos: 47.5,-20.5
parent: 2
- - uid: 4374
+ - uid: 11563
components:
- type: Transform
- pos: 24.5,-9.5
+ pos: -2.5,31.5
parent: 2
- - uid: 4375
+ - uid: 11564
components:
- type: Transform
- pos: 24.5,-10.5
+ pos: 41.5,-13.5
parent: 2
- - uid: 4376
+ - uid: 11565
components:
- type: Transform
- pos: 23.5,-10.5
+ pos: 13.5,43.5
parent: 2
- - uid: 4377
+ - uid: 11566
components:
- type: Transform
- pos: 22.5,-10.5
+ pos: -34.5,61.5
parent: 2
- - uid: 4378
+ - uid: 11567
components:
- type: Transform
- pos: 21.5,-10.5
+ pos: -23.5,-63.5
parent: 2
- - uid: 4379
+ - uid: 11568
components:
- type: Transform
- pos: 20.5,-10.5
+ pos: -70.5,4.5
parent: 2
- - uid: 4380
+ - uid: 11569
components:
- type: Transform
- pos: 25.5,-10.5
+ pos: 34.5,-60.5
parent: 2
- - uid: 4381
+ - uid: 11570
components:
- type: Transform
- pos: 26.5,-10.5
+ pos: -19.5,-80.5
parent: 2
- - uid: 4382
+ - uid: 11571
components:
- type: Transform
- pos: 27.5,-10.5
+ pos: -33.5,-55.5
parent: 2
- - uid: 4383
+ - uid: 11572
components:
- type: Transform
- pos: 28.5,-10.5
+ pos: 46.5,-21.5
parent: 2
- - uid: 4384
+ - uid: 11573
components:
- type: Transform
- pos: 29.5,-10.5
+ pos: 12.5,36.5
parent: 2
- - uid: 4385
+ - uid: 11574
components:
- type: Transform
- pos: 30.5,-10.5
+ pos: -13.5,51.5
parent: 2
- - uid: 4386
+ - uid: 11575
components:
- type: Transform
- pos: 31.5,-10.5
+ pos: 10.5,40.5
parent: 2
- - uid: 4387
+ - uid: 11576
components:
- type: Transform
- pos: 31.5,-9.5
+ pos: -17.5,-80.5
parent: 2
- - uid: 4388
+ - uid: 11577
components:
- type: Transform
- pos: 25.5,-11.5
+ pos: 24.5,-22.5
parent: 2
- - uid: 4389
+ - uid: 11578
components:
- type: Transform
- pos: 28.5,-12.5
+ pos: -56.5,33.5
parent: 2
- - uid: 4390
+ - uid: 11579
components:
- type: Transform
- pos: 28.5,-13.5
+ pos: -28.5,-37.5
parent: 2
- - uid: 4391
+ - uid: 11580
components:
- type: Transform
- pos: 28.5,-14.5
+ pos: 6.5,88.5
parent: 2
- - uid: 4392
+ - uid: 11581
components:
- type: Transform
- pos: 27.5,-14.5
+ pos: -25.5,24.5
parent: 2
- - uid: 4393
+ - uid: 11582
components:
- type: Transform
- pos: 27.5,-15.5
+ pos: -29.5,-72.5
parent: 2
- - uid: 4394
+ - uid: 11583
components:
- type: Transform
- pos: 27.5,-16.5
+ pos: 0.5,35.5
parent: 2
- - uid: 4395
+ - uid: 11584
components:
- type: Transform
- pos: 27.5,-17.5
+ pos: -26.5,-61.5
parent: 2
- - uid: 4396
+ - uid: 11585
components:
- type: Transform
- pos: 29.5,-14.5
+ pos: -27.5,-65.5
parent: 2
- - uid: 4397
+ - uid: 11586
components:
- type: Transform
- pos: 29.5,-15.5
+ pos: -40.5,21.5
parent: 2
- - uid: 4398
+ - uid: 11587
components:
- type: Transform
- pos: 29.5,-16.5
+ pos: 35.5,-42.5
parent: 2
- - uid: 4399
+ - uid: 11588
components:
- type: Transform
- pos: 29.5,-17.5
+ pos: 27.5,-55.5
parent: 2
- - uid: 4400
+ - uid: 11589
components:
- type: Transform
- pos: 31.5,-14.5
+ pos: 27.5,-54.5
parent: 2
- - uid: 4401
+ - uid: 11590
components:
- type: Transform
- pos: 31.5,-15.5
+ pos: 27.5,-53.5
parent: 2
- - uid: 4402
+ - uid: 11591
components:
- type: Transform
- pos: 31.5,-16.5
+ pos: 27.5,-52.5
parent: 2
- - uid: 4403
+ - uid: 11592
components:
- type: Transform
- pos: 31.5,-17.5
+ pos: 28.5,-50.5
parent: 2
- - uid: 4404
+ - uid: 11593
components:
- type: Transform
- pos: 30.5,-14.5
+ pos: 28.5,-52.5
parent: 2
- - uid: 4405
+ - uid: 11594
components:
- type: Transform
- pos: 26.5,-14.5
+ pos: -13.5,-38.5
parent: 2
- - uid: 4406
+ - uid: 11595
components:
- type: Transform
- pos: 25.5,-14.5
+ pos: -14.5,-77.5
parent: 2
- - uid: 4407
+ - uid: 11596
components:
- type: Transform
- pos: 24.5,-14.5
+ pos: -47.5,-14.5
parent: 2
- - uid: 4408
+ - uid: 11597
components:
- type: Transform
- pos: 23.5,-14.5
+ pos: -13.5,-50.5
parent: 2
- - uid: 4409
+ - uid: 11598
components:
- type: Transform
- pos: 22.5,-14.5
+ pos: -31.5,-57.5
parent: 2
- - uid: 4410
+ - uid: 11599
components:
- type: Transform
- pos: 21.5,-14.5
+ pos: -13.5,-45.5
parent: 2
- - uid: 4411
+ - uid: 11600
components:
- type: Transform
- pos: 25.5,-15.5
+ pos: 36.5,-64.5
parent: 2
- - uid: 4412
+ - uid: 11601
components:
- type: Transform
- pos: 25.5,-16.5
+ pos: 35.5,-61.5
parent: 2
- - uid: 4413
+ - uid: 11602
components:
- type: Transform
- pos: 25.5,-17.5
+ pos: 35.5,-64.5
parent: 2
- - uid: 4414
+ - uid: 11603
components:
- type: Transform
- pos: 25.5,-13.5
+ pos: 27.5,-59.5
parent: 2
- - uid: 4415
+ - uid: 11604
components:
- type: Transform
- pos: -40.5,64.5
+ pos: -1.5,15.5
parent: 2
- - uid: 4416
+ - uid: 11605
components:
- type: Transform
- pos: -40.5,63.5
+ pos: -9.5,12.5
parent: 2
- - uid: 4417
+ - uid: 11606
components:
- type: Transform
- pos: -40.5,62.5
+ pos: -9.5,13.5
parent: 2
- - uid: 4418
+ - uid: 11607
components:
- type: Transform
- pos: -40.5,61.5
+ pos: -11.5,12.5
parent: 2
- - uid: 4419
+ - uid: 11608
components:
- type: Transform
- pos: -40.5,60.5
+ pos: -11.5,13.5
parent: 2
- - uid: 4420
+ - uid: 11609
components:
- type: Transform
- pos: -40.5,59.5
+ pos: -11.5,14.5
parent: 2
- - uid: 4421
+ - uid: 11610
components:
- type: Transform
- pos: -39.5,61.5
+ pos: -10.5,14.5
parent: 2
- - uid: 4422
+ - uid: 11611
components:
- type: Transform
- pos: -38.5,61.5
+ pos: -9.5,14.5
parent: 2
- - uid: 4423
+ - uid: 11612
components:
- type: Transform
- pos: -37.5,61.5
+ pos: -8.5,14.5
parent: 2
- - uid: 4424
+ - uid: 11613
components:
- type: Transform
- pos: -36.5,61.5
+ pos: -7.5,12.5
parent: 2
- - uid: 4425
+ - uid: 11614
components:
- type: Transform
- pos: -35.5,61.5
+ pos: -7.5,13.5
parent: 2
- - uid: 4426
+ - uid: 11615
components:
- type: Transform
- pos: -34.5,61.5
+ pos: -7.5,14.5
parent: 2
- - uid: 4427
+ - uid: 11616
components:
- type: Transform
- pos: -30.5,66.5
+ pos: -15.5,-39.5
parent: 2
- - uid: 4428
+ - uid: 11617
components:
- type: Transform
- pos: -30.5,65.5
+ pos: 4.5,-50.5
parent: 2
- - uid: 4429
+ - uid: 11618
components:
- type: Transform
- pos: -30.5,64.5
+ pos: -15.5,-34.5
parent: 2
- - uid: 4430
+ - uid: 11619
components:
- type: Transform
- pos: -30.5,63.5
+ pos: -59.5,-16.5
parent: 2
- - uid: 4431
+ - uid: 11620
components:
- type: Transform
- pos: -30.5,62.5
+ pos: 28.5,-19.5
parent: 2
- - uid: 4432
+ - uid: 11621
components:
- type: Transform
- pos: -30.5,61.5
+ pos: 28.5,-45.5
parent: 2
- - uid: 4433
+ - uid: 11622
components:
- type: Transform
- pos: -30.5,60.5
+ pos: -28.5,-53.5
parent: 2
- - uid: 4434
+ - uid: 11623
components:
- type: Transform
- pos: -30.5,59.5
+ pos: -22.5,-78.5
parent: 2
- - uid: 4435
+ - uid: 11624
components:
- type: Transform
- pos: -30.5,58.5
+ pos: 25.5,20.5
parent: 2
- - uid: 4436
+ - uid: 11625
components:
- type: Transform
- pos: -30.5,57.5
+ pos: 44.5,-3.5
parent: 2
- - uid: 4437
+ - uid: 11626
components:
- type: Transform
- pos: -31.5,57.5
+ pos: 39.5,-3.5
parent: 2
- - uid: 4438
+ - uid: 11627
components:
- type: Transform
- pos: -32.5,57.5
+ pos: 44.5,-6.5
parent: 2
- - uid: 4439
+ - uid: 11628
components:
- type: Transform
- pos: -33.5,57.5
+ pos: -45.5,-15.5
parent: 2
- - uid: 4440
+ - uid: 11629
components:
- type: Transform
- pos: -34.5,57.5
+ pos: -51.5,-12.5
parent: 2
- - uid: 4441
+ - uid: 11630
components:
- type: Transform
- pos: -35.5,57.5
+ pos: 0.5,29.5
parent: 2
- - uid: 4442
+ - uid: 11631
components:
- type: Transform
- pos: -36.5,57.5
+ pos: 56.5,-22.5
parent: 2
- - uid: 4443
+ - uid: 11632
components:
- type: Transform
- pos: -37.5,57.5
+ pos: 9.5,53.5
parent: 2
- - uid: 4444
+ - uid: 11633
components:
- type: Transform
- pos: -38.5,57.5
+ pos: 16.5,-21.5
parent: 2
- - uid: 4445
+ - uid: 11634
components:
- type: Transform
- pos: -39.5,57.5
+ pos: 15.5,66.5
parent: 2
- - uid: 4446
+ - uid: 11635
components:
- type: Transform
- pos: -40.5,57.5
+ pos: 41.5,-46.5
parent: 2
- - uid: 4447
+ - uid: 11636
components:
- type: Transform
- pos: -41.5,57.5
+ pos: -29.5,14.5
parent: 2
- - uid: 4448
+ - uid: 11637
components:
- type: Transform
- pos: -41.5,56.5
+ pos: -21.5,26.5
parent: 2
- - uid: 4449
+ - uid: 11638
components:
- type: Transform
- pos: -41.5,55.5
+ pos: -22.5,26.5
parent: 2
- - uid: 4450
+ - uid: 11639
components:
- type: Transform
- pos: -41.5,54.5
+ pos: -23.5,26.5
parent: 2
- - uid: 4451
+ - uid: 11640
components:
- type: Transform
- pos: -41.5,53.5
+ pos: -30.5,18.5
parent: 2
- - uid: 4452
+ - uid: 11641
components:
- type: Transform
- pos: -41.5,52.5
+ pos: -24.5,26.5
parent: 2
- - uid: 4453
+ - uid: 11642
components:
- type: Transform
- pos: -41.5,51.5
+ pos: -24.5,25.5
parent: 2
- - uid: 4454
+ - uid: 11643
components:
- type: Transform
- pos: -41.5,50.5
+ pos: -30.5,14.5
parent: 2
- - uid: 4455
+ - uid: 11644
components:
- type: Transform
- pos: -41.5,49.5
+ pos: -28.5,-19.5
parent: 2
- - uid: 4456
+ - uid: 11645
components:
- type: Transform
- pos: -41.5,48.5
+ pos: -50.5,16.5
parent: 2
- - uid: 4457
+ - uid: 11646
components:
- type: Transform
- pos: -41.5,47.5
+ pos: -40.5,37.5
parent: 2
- - uid: 4458
+ - uid: 11647
components:
- type: Transform
- pos: -41.5,46.5
+ pos: 25.5,36.5
parent: 2
- - uid: 4459
+ - uid: 11648
components:
- type: Transform
- pos: -41.5,45.5
+ pos: 10.5,47.5
parent: 2
- - uid: 4460
+ - uid: 11649
components:
- type: Transform
- pos: -41.5,44.5
+ pos: -48.5,5.5
parent: 2
- - uid: 4461
+ - uid: 11650
components:
- type: Transform
- pos: -29.5,57.5
+ pos: -18.5,-8.5
parent: 2
- - uid: 4462
+ - uid: 11651
components:
- type: Transform
- pos: -28.5,57.5
+ pos: -38.5,37.5
parent: 2
- - uid: 4463
+ - uid: 11652
components:
- type: Transform
- pos: -27.5,57.5
+ pos: -41.5,44.5
parent: 2
- - uid: 4464
+ - uid: 11653
components:
- type: Transform
- pos: -26.5,57.5
+ pos: 10.5,3.5
parent: 2
- - uid: 4465
+ - uid: 11654
components:
- type: Transform
- pos: -25.5,57.5
+ pos: -69.5,7.5
parent: 2
- - uid: 4466
+ - uid: 11655
components:
- type: Transform
- pos: -24.5,57.5
+ pos: 11.5,61.5
parent: 2
- - uid: 4467
+ - uid: 11656
components:
- type: Transform
- pos: -23.5,57.5
+ pos: 34.5,-22.5
parent: 2
- - uid: 4468
+ - uid: 11657
components:
- type: Transform
- pos: -23.5,56.5
+ pos: -6.5,-11.5
parent: 2
- - uid: 4469
+ - uid: 11658
components:
- type: Transform
- pos: -23.5,55.5
+ pos: -8.5,-79.5
parent: 2
- - uid: 4470
+ - uid: 11659
components:
- type: Transform
- pos: -22.5,55.5
+ pos: -7.5,-79.5
parent: 2
- - uid: 4471
+ - uid: 11660
components:
- type: Transform
- pos: -29.5,65.5
+ pos: -7.5,-78.5
parent: 2
- - uid: 4472
+ - uid: 11661
components:
- type: Transform
- pos: -46.5,16.5
+ pos: -7.5,-77.5
parent: 2
- - uid: 4473
+ - uid: 11662
components:
- type: Transform
- pos: -46.5,15.5
+ pos: -8.5,-77.5
parent: 2
- - uid: 4474
+ - uid: 11663
components:
- type: Transform
- pos: -46.5,14.5
+ pos: -9.5,-77.5
parent: 2
- - uid: 4475
+ - uid: 11664
components:
- type: Transform
- pos: -46.5,13.5
+ pos: -2.5,33.5
parent: 2
- - uid: 4476
+ - uid: 11665
components:
- type: Transform
- pos: -46.5,12.5
+ pos: 11.5,56.5
parent: 2
- - uid: 4477
+ - uid: 11666
components:
- type: Transform
- pos: -46.5,11.5
+ pos: 3.5,-38.5
parent: 2
- - uid: 4478
+ - uid: 11667
components:
- type: Transform
- pos: -47.5,12.5
+ pos: -47.5,34.5
parent: 2
- - uid: 4479
+ - uid: 11668
components:
- type: Transform
- pos: -48.5,12.5
+ pos: -24.5,68.5
parent: 2
- - uid: 4480
+ - uid: 11669
components:
- type: Transform
- pos: -49.5,12.5
+ pos: -37.5,42.5
parent: 2
- - uid: 4481
+ - uid: 11670
components:
- type: Transform
- pos: -50.5,12.5
+ pos: -25.5,-74.5
parent: 2
- - uid: 4482
+ - uid: 11671
components:
- type: Transform
- pos: -51.5,12.5
+ pos: 17.5,-15.5
parent: 2
- - uid: 4483
+ - uid: 11672
components:
- type: Transform
- pos: -52.5,12.5
+ pos: -36.5,-5.5
parent: 2
- - uid: 4484
+ - uid: 11673
components:
- type: Transform
- pos: -53.5,12.5
+ pos: -54.5,-37.5
parent: 2
- - uid: 4485
+ - uid: 11674
components:
- type: Transform
- pos: -54.5,12.5
+ pos: -55.5,-35.5
parent: 2
- - uid: 4486
+ - uid: 11675
components:
- type: Transform
- pos: -55.5,12.5
+ pos: -55.5,-36.5
parent: 2
- - uid: 4487
+ - uid: 11676
components:
- type: Transform
- pos: -56.5,12.5
+ pos: 20.5,-28.5
parent: 2
- - uid: 4488
+ - uid: 11677
components:
- type: Transform
- pos: -57.5,12.5
+ pos: -26.5,59.5
parent: 2
- - uid: 4489
+ - uid: 11678
components:
- type: Transform
- pos: -58.5,12.5
+ pos: -28.5,-43.5
parent: 2
- - uid: 4490
+ - uid: 11679
components:
- type: Transform
- pos: -58.5,11.5
+ pos: 11.5,-44.5
parent: 2
- - uid: 4491
+ - uid: 11680
components:
- type: Transform
- pos: -58.5,10.5
+ pos: -26.5,-19.5
parent: 2
- - uid: 4492
+ - uid: 11681
components:
- type: Transform
- pos: -62.5,12.5
+ pos: 25.5,-10.5
parent: 2
- - uid: 4493
+ - uid: 11682
components:
- type: Transform
- pos: -62.5,11.5
+ pos: 31.5,2.5
parent: 2
- - uid: 4494
+ - uid: 11683
components:
- type: Transform
- pos: -62.5,10.5
+ pos: -44.5,-9.5
parent: 2
- - uid: 4495
+ - uid: 11684
components:
- type: Transform
- pos: -62.5,9.5
+ pos: 42.5,-18.5
parent: 2
- - uid: 4496
+ - uid: 11685
components:
- type: Transform
- pos: -62.5,8.5
+ pos: 31.5,9.5
parent: 2
- - uid: 4497
+ - uid: 11686
components:
- type: Transform
- pos: -62.5,7.5
+ pos: -14.5,23.5
parent: 2
- - uid: 4498
+ - uid: 11687
components:
- type: Transform
- pos: -62.5,6.5
+ pos: 21.5,18.5
parent: 2
- - uid: 4499
+ - uid: 11688
components:
- type: Transform
- pos: -62.5,5.5
+ pos: -51.5,-13.5
parent: 2
- - uid: 4500
+ - uid: 11689
components:
- type: Transform
- pos: -62.5,4.5
+ pos: -8.5,23.5
parent: 2
- - uid: 4501
+ - uid: 11690
components:
- type: Transform
- pos: -61.5,6.5
+ pos: 13.5,45.5
parent: 2
- - uid: 4502
+ - uid: 11691
components:
- type: Transform
- pos: -60.5,6.5
+ pos: -51.5,-3.5
parent: 2
- - uid: 4503
+ - uid: 11692
components:
- type: Transform
- pos: -63.5,8.5
+ pos: -6.5,23.5
parent: 2
- - uid: 4504
+ - uid: 11693
components:
- type: Transform
- pos: -64.5,8.5
+ pos: -48.5,-14.5
parent: 2
- - uid: 4505
+ - uid: 11694
components:
- type: Transform
- pos: -65.5,8.5
+ pos: 1.5,42.5
parent: 2
- - uid: 4506
+ - uid: 11695
components:
- type: Transform
- pos: -60.5,6.5
+ pos: 1.5,41.5
parent: 2
- - uid: 4507
+ - uid: 11696
components:
- type: Transform
- pos: -59.5,6.5
+ pos: -18.5,6.5
parent: 2
- - uid: 4508
+ - uid: 11697
components:
- type: Transform
- pos: -58.5,6.5
+ pos: 10.5,50.5
parent: 2
- - uid: 4509
+ - uid: 11698
components:
- type: Transform
- pos: -57.5,6.5
+ pos: 0.5,-13.5
parent: 2
- - uid: 4510
+ - uid: 11699
components:
- type: Transform
- pos: -56.5,6.5
+ pos: -20.5,28.5
parent: 2
- - uid: 4511
+ - uid: 11700
components:
- type: Transform
- pos: -55.5,6.5
+ pos: 15.5,45.5
parent: 2
- - uid: 4512
+ - uid: 11701
components:
- type: Transform
- pos: -63.5,6.5
+ pos: -33.5,-3.5
parent: 2
- - uid: 4513
+ - uid: 11702
components:
- type: Transform
- pos: -64.5,6.5
+ pos: -26.5,-30.5
parent: 2
- - uid: 4514
+ - uid: 11703
components:
- type: Transform
- pos: -65.5,6.5
+ pos: -50.5,-7.5
parent: 2
- - uid: 4515
+ - uid: 11704
components:
- type: Transform
- pos: -62.5,19.5
+ pos: 31.5,-42.5
parent: 2
- - uid: 4516
+ - uid: 11705
components:
- type: Transform
- pos: -62.5,18.5
+ pos: 29.5,-42.5
parent: 2
- - uid: 4517
+ - uid: 11706
components:
- type: Transform
- pos: -62.5,17.5
+ pos: -1.5,26.5
parent: 2
- - uid: 4518
+ - uid: 11707
components:
- type: Transform
- pos: -62.5,16.5
+ pos: 31.5,-3.5
parent: 2
- - uid: 4519
+ - uid: 11708
components:
- type: Transform
- pos: -62.5,15.5
+ pos: -58.5,56.5
parent: 2
- - uid: 4520
+ - uid: 11709
components:
- type: Transform
- pos: -62.5,14.5
+ pos: -0.5,28.5
parent: 2
- - uid: 4521
+ - uid: 11710
components:
- type: Transform
- pos: -63.5,14.5
+ pos: -80.5,-7.5
parent: 2
- - uid: 4522
+ - uid: 11711
components:
- type: Transform
- pos: -64.5,14.5
+ pos: 28.5,-39.5
parent: 2
- - uid: 4523
+ - uid: 11712
components:
- type: Transform
- pos: -65.5,14.5
+ pos: -55.5,-11.5
parent: 2
- - uid: 4524
+ - uid: 11713
components:
- type: Transform
- pos: -65.5,15.5
+ pos: -44.5,22.5
parent: 2
- - uid: 4525
+ - uid: 11714
components:
- type: Transform
- pos: -61.5,14.5
+ pos: 50.5,-10.5
parent: 2
- - uid: 4526
+ - uid: 11715
components:
- type: Transform
- pos: -60.5,14.5
+ pos: 54.5,-20.5
parent: 2
- - uid: 4527
+ - uid: 11716
components:
- type: Transform
- pos: -63.5,17.5
+ pos: 21.5,24.5
parent: 2
- - uid: 4528
+ - uid: 11717
components:
- type: Transform
- pos: -64.5,17.5
+ pos: 1.5,48.5
parent: 2
- - uid: 4529
+ - uid: 11718
components:
- type: Transform
- pos: -65.5,17.5
+ pos: -22.5,-69.5
parent: 2
- - uid: 4530
+ - uid: 11719
components:
- type: Transform
- pos: -118.5,20.5
+ pos: 10.5,-55.5
parent: 2
- - uid: 4531
+ - uid: 11720
components:
- type: Transform
- pos: -118.5,19.5
+ pos: 6.5,77.5
parent: 2
- - uid: 4532
+ - uid: 11721
components:
- type: Transform
- pos: -118.5,18.5
+ pos: -41.5,19.5
parent: 2
- - uid: 4533
+ - uid: 11722
components:
- type: Transform
- pos: -119.5,18.5
+ pos: 15.5,61.5
parent: 2
- - uid: 4534
+ - uid: 11723
components:
- type: Transform
- pos: -120.5,18.5
+ pos: 45.5,0.5
parent: 2
- - uid: 4535
+ - uid: 11724
components:
- type: Transform
- pos: -121.5,18.5
+ pos: -44.5,-10.5
parent: 2
- - uid: 4536
+ - uid: 11725
components:
- type: Transform
- pos: -118.5,18.5
+ pos: 7.5,-10.5
parent: 2
- - uid: 4537
+ - uid: 11726
components:
- type: Transform
- pos: -117.5,18.5
+ pos: -8.5,-63.5
parent: 2
- - uid: 4538
+ - uid: 11727
components:
- type: Transform
- pos: -116.5,18.5
+ pos: -8.5,-64.5
parent: 2
- - uid: 4539
+ - uid: 11728
components:
- type: Transform
- pos: -115.5,18.5
+ pos: -8.5,-65.5
parent: 2
- - uid: 4540
+ - uid: 11729
components:
- type: Transform
- pos: -114.5,18.5
+ pos: -8.5,-66.5
parent: 2
- - uid: 4541
+ - uid: 11730
components:
- type: Transform
- pos: -118.5,17.5
+ pos: -8.5,-67.5
parent: 2
- - uid: 4542
+ - uid: 11731
components:
- type: Transform
- pos: -122.5,18.5
+ pos: 7.5,14.5
parent: 2
- - uid: 4543
+ - uid: 11732
components:
- type: Transform
- pos: -118.5,21.5
+ pos: 36.5,-2.5
parent: 2
- - uid: 4544
+ - uid: 11733
components:
- type: Transform
- pos: -118.5,22.5
+ pos: 19.5,26.5
parent: 2
- - uid: 4545
+ - uid: 11734
components:
- type: Transform
- pos: -118.5,23.5
+ pos: -41.5,-74.5
parent: 2
- - uid: 4546
+ - uid: 11735
components:
- type: Transform
- pos: -119.5,23.5
+ pos: 45.5,-4.5
parent: 2
- - uid: 4547
+ - uid: 11736
components:
- type: Transform
- pos: -120.5,23.5
+ pos: -31.5,24.5
parent: 2
- - uid: 4548
+ - uid: 11737
components:
- type: Transform
- pos: -121.5,23.5
+ pos: 44.5,-10.5
parent: 2
- - uid: 4549
+ - uid: 11738
components:
- type: Transform
- pos: -122.5,23.5
+ pos: -48.5,-40.5
parent: 2
- - uid: 4550
+ - uid: 11739
components:
- type: Transform
- pos: -122.5,24.5
+ pos: -80.5,-6.5
parent: 2
- - uid: 4551
+ - uid: 11740
components:
- type: Transform
- pos: -122.5,25.5
+ pos: -21.5,-50.5
parent: 2
- - uid: 4552
+ - uid: 11741
components:
- type: Transform
- pos: -117.5,23.5
+ pos: -20.5,-50.5
parent: 2
- - uid: 4553
+ - uid: 11742
components:
- type: Transform
- pos: -116.5,23.5
+ pos: -19.5,-50.5
parent: 2
- - uid: 4554
+ - uid: 11743
components:
- type: Transform
- pos: -115.5,23.5
+ pos: -18.5,-50.5
parent: 2
- - uid: 4555
+ - uid: 11744
components:
- type: Transform
- pos: -114.5,23.5
+ pos: -17.5,-50.5
parent: 2
- - uid: 4556
+ - uid: 11745
components:
- type: Transform
- pos: -114.5,24.5
+ pos: -16.5,-50.5
parent: 2
- - uid: 4557
+ - uid: 11746
components:
- type: Transform
- pos: -114.5,25.5
+ pos: -15.5,-50.5
parent: 2
- - uid: 4558
+ - uid: 11747
components:
- type: Transform
- pos: -118.5,24.5
+ pos: -76.5,-6.5
parent: 2
- - uid: 4559
+ - uid: 11748
components:
- type: Transform
- pos: -118.5,25.5
+ pos: -14.5,-50.5
parent: 2
- - uid: 4560
+ - uid: 11749
components:
- type: Transform
- pos: -118.5,26.5
+ pos: -49.5,-41.5
parent: 2
- - uid: 4561
+ - uid: 11750
components:
- type: Transform
- pos: -118.5,27.5
+ pos: -27.5,-47.5
parent: 2
- - uid: 4562
+ - uid: 11751
components:
- type: Transform
- pos: -118.5,28.5
+ pos: -26.5,-47.5
parent: 2
- - uid: 4563
+ - uid: 11752
components:
- type: Transform
- pos: -118.5,29.5
+ pos: -25.5,-47.5
parent: 2
- - uid: 4564
+ - uid: 11753
components:
- type: Transform
- pos: -118.5,30.5
+ pos: -55.5,-30.5
parent: 2
- - uid: 4565
+ - uid: 11754
components:
- type: Transform
- pos: -118.5,31.5
+ pos: 4.5,-74.5
parent: 2
- - uid: 4566
+ - uid: 11755
components:
- type: Transform
- pos: -118.5,32.5
+ pos: -54.5,-36.5
parent: 2
- - uid: 4567
+ - uid: 11756
components:
- type: Transform
- pos: -118.5,33.5
+ pos: 5.5,-74.5
parent: 2
- - uid: 4568
+ - uid: 11757
components:
- type: Transform
- pos: -118.5,34.5
+ pos: 6.5,-74.5
parent: 2
- - uid: 4569
+ - uid: 11758
components:
- type: Transform
- pos: -118.5,35.5
+ pos: 6.5,-73.5
parent: 2
- - uid: 4570
+ - uid: 11759
components:
- type: Transform
- pos: -118.5,36.5
+ pos: 6.5,-72.5
parent: 2
- - uid: 4571
+ - uid: 11760
components:
- type: Transform
- pos: -118.5,37.5
+ pos: -54.5,-38.5
parent: 2
- - uid: 4572
+ - uid: 11761
components:
- type: Transform
- pos: -118.5,38.5
+ pos: -55.5,-34.5
parent: 2
- - uid: 4573
+ - uid: 11762
components:
- type: Transform
- pos: -118.5,39.5
+ pos: -55.5,-33.5
parent: 2
- - uid: 4574
+ - uid: 11763
components:
- type: Transform
- pos: -118.5,40.5
+ pos: -5.5,-77.5
parent: 2
- - uid: 4575
+ - uid: 11764
components:
- type: Transform
- pos: -118.5,41.5
+ pos: 3.5,-74.5
parent: 2
- - uid: 4576
+ - uid: 11765
components:
- type: Transform
- pos: -118.5,42.5
+ pos: 2.5,-74.5
parent: 2
- - uid: 4577
+ - uid: 11766
components:
- type: Transform
- pos: -118.5,43.5
+ pos: 1.5,-74.5
parent: 2
- - uid: 4578
+ - uid: 11767
components:
- type: Transform
- pos: -113.5,43.5
+ pos: 1.5,-75.5
parent: 2
- - uid: 4579
+ - uid: 11768
components:
- type: Transform
- pos: -113.5,42.5
+ pos: 1.5,-77.5
parent: 2
- - uid: 4580
+ - uid: 11769
components:
- type: Transform
- pos: -113.5,41.5
+ pos: 1.5,-76.5
parent: 2
- - uid: 4581
+ - uid: 11770
components:
- type: Transform
- pos: -113.5,40.5
+ pos: -3.5,-77.5
parent: 2
- - uid: 4582
+ - uid: 11771
components:
- type: Transform
- pos: -113.5,39.5
+ pos: -4.5,-77.5
parent: 2
- - uid: 4583
+ - uid: 11772
components:
- type: Transform
- pos: -113.5,38.5
+ pos: -2.5,-77.5
parent: 2
- - uid: 4584
+ - uid: 11773
components:
- type: Transform
- pos: -113.5,37.5
+ pos: -1.5,-77.5
parent: 2
- - uid: 4585
+ - uid: 11774
components:
- type: Transform
- pos: -113.5,36.5
+ pos: 0.5,-77.5
parent: 2
- - uid: 4586
+ - uid: 11775
components:
- type: Transform
- pos: -113.5,35.5
+ pos: -0.5,-77.5
parent: 2
- - uid: 4587
+ - uid: 11776
components:
- type: Transform
- pos: -115.5,40.5
+ pos: -6.5,-77.5
parent: 2
- - uid: 4588
+ - uid: 11777
components:
- type: Transform
- pos: -114.5,40.5
+ pos: -54.5,-33.5
parent: 2
- - uid: 4589
+ - uid: 11778
components:
- type: Transform
- pos: -113.5,40.5
+ pos: -54.5,-32.5
parent: 2
- - uid: 4590
+ - uid: 11779
components:
- type: Transform
- pos: -112.5,40.5
+ pos: -54.5,-31.5
parent: 2
- - uid: 4591
+ - uid: 11780
components:
- type: Transform
- pos: -111.5,40.5
+ pos: -54.5,-30.5
parent: 2
- - uid: 4592
+ - uid: 11781
components:
- type: Transform
- pos: -121.5,40.5
+ pos: -56.5,-30.5
parent: 2
- - uid: 4593
+ - uid: 11782
components:
- type: Transform
- pos: -122.5,40.5
+ pos: -57.5,-30.5
parent: 2
- - uid: 4594
+ - uid: 11783
components:
- type: Transform
- pos: -123.5,40.5
+ pos: -58.5,-30.5
parent: 2
- - uid: 4595
+ - uid: 11784
components:
- type: Transform
- pos: -124.5,40.5
+ pos: -59.5,-30.5
parent: 2
- - uid: 4596
+ - uid: 11785
components:
- type: Transform
- pos: -125.5,40.5
+ pos: -60.5,-30.5
parent: 2
- - uid: 4597
+ - uid: 11786
components:
- type: Transform
- pos: -123.5,44.5
+ pos: -61.5,-30.5
parent: 2
- - uid: 4598
+ - uid: 11787
components:
- type: Transform
- pos: -123.5,43.5
+ pos: -15.5,-55.5
parent: 2
- - uid: 4599
+ - uid: 11788
components:
- type: Transform
- pos: -123.5,42.5
+ pos: -16.5,-55.5
parent: 2
- - uid: 4600
+ - uid: 11789
components:
- type: Transform
- pos: -123.5,41.5
+ pos: -16.5,-54.5
parent: 2
- - uid: 4601
+ - uid: 11790
components:
- type: Transform
- pos: -123.5,40.5
+ pos: -54.5,-39.5
parent: 2
- - uid: 4602
+ - uid: 11791
components:
- type: Transform
- pos: -123.5,39.5
+ pos: -53.5,-39.5
parent: 2
- - uid: 4603
+ - uid: 11792
components:
- type: Transform
- pos: -123.5,38.5
+ pos: -52.5,-39.5
parent: 2
- - uid: 4604
+ - uid: 11793
components:
- type: Transform
- pos: -123.5,37.5
+ pos: -52.5,-40.5
parent: 2
- - uid: 4605
+ - uid: 11794
components:
- type: Transform
- pos: -123.5,36.5
+ pos: -51.5,-40.5
parent: 2
- - uid: 4606
+ - uid: 11795
components:
- type: Transform
- pos: -123.5,35.5
+ pos: -50.5,-40.5
parent: 2
- - uid: 4607
+ - uid: 11796
components:
- type: Transform
- pos: -118.5,51.5
+ pos: -49.5,-40.5
parent: 2
- - uid: 4608
+ - uid: 11797
components:
- type: Transform
- pos: -118.5,50.5
+ pos: -77.5,-6.5
parent: 2
- - uid: 4609
+ - uid: 11798
components:
- type: Transform
- pos: -118.5,49.5
+ pos: -75.5,-6.5
parent: 2
- - uid: 4610
+ - uid: 11799
components:
- type: Transform
- pos: -118.5,48.5
+ pos: -74.5,-6.5
parent: 2
- - uid: 4611
+ - uid: 11800
components:
- type: Transform
- pos: -118.5,47.5
+ pos: -11.5,-52.5
parent: 2
- - uid: 4612
+ - uid: 11801
components:
- type: Transform
- pos: -118.5,46.5
+ pos: -10.5,-50.5
parent: 2
- - uid: 4613
+ - uid: 11802
components:
- type: Transform
- pos: -118.5,45.5
+ pos: -9.5,-50.5
parent: 2
- - uid: 4614
+ - uid: 11803
components:
- type: Transform
- pos: -117.5,48.5
+ pos: -8.5,-50.5
parent: 2
- - uid: 4615
+ - uid: 11804
components:
- type: Transform
- pos: -116.5,48.5
+ pos: -7.5,-50.5
parent: 2
- - uid: 4616
+ - uid: 11805
components:
- type: Transform
- pos: -115.5,48.5
+ pos: -6.5,-50.5
parent: 2
- - uid: 4617
+ - uid: 11806
components:
- type: Transform
- pos: -114.5,48.5
+ pos: -5.5,-50.5
parent: 2
- - uid: 4618
+ - uid: 11807
components:
- type: Transform
- pos: -119.5,48.5
+ pos: -4.5,-50.5
parent: 2
- - uid: 4619
+ - uid: 11808
components:
- type: Transform
- pos: -120.5,48.5
+ pos: -3.5,-50.5
parent: 2
- - uid: 4620
+ - uid: 11809
components:
- type: Transform
- pos: -121.5,48.5
+ pos: -3.5,-49.5
parent: 2
- - uid: 4621
+ - uid: 11810
components:
- type: Transform
- pos: -122.5,48.5
+ pos: -3.5,-48.5
parent: 2
- - uid: 4622
+ - uid: 11811
components:
- type: Transform
- pos: -114.5,47.5
+ pos: -3.5,-47.5
parent: 2
- - uid: 4623
+ - uid: 11812
components:
- type: Transform
- pos: -114.5,46.5
+ pos: -3.5,-46.5
parent: 2
- - uid: 4624
+ - uid: 11813
components:
- type: Transform
- pos: -114.5,45.5
+ pos: -3.5,-45.5
parent: 2
- - uid: 4625
+ - uid: 11814
components:
- type: Transform
- pos: -122.5,45.5
+ pos: -3.5,-44.5
parent: 2
- - uid: 4626
+ - uid: 11815
components:
- type: Transform
- pos: -122.5,46.5
+ pos: -10.5,-40.5
parent: 2
- - uid: 4627
+ - uid: 11816
components:
- type: Transform
- pos: -122.5,47.5
+ pos: -9.5,-40.5
parent: 2
- - uid: 4628
+ - uid: 11817
components:
- type: Transform
- pos: -77.5,14.5
+ pos: -8.5,-40.5
parent: 2
- - uid: 4629
+ - uid: 11818
components:
- type: Transform
- pos: -77.5,13.5
+ pos: -7.5,-40.5
parent: 2
- - uid: 4630
+ - uid: 11819
components:
- type: Transform
- pos: -78.5,14.5
+ pos: -6.5,-40.5
parent: 2
- - uid: 4631
+ - uid: 11820
components:
- type: Transform
- pos: -79.5,14.5
+ pos: -5.5,-40.5
parent: 2
- - uid: 4632
+ - uid: 11821
components:
- type: Transform
- pos: -80.5,14.5
+ pos: -4.5,-40.5
parent: 2
- - uid: 4633
+ - uid: 11822
components:
- type: Transform
- pos: -81.5,14.5
+ pos: -4.5,-39.5
parent: 2
- - uid: 4634
+ - uid: 11823
components:
- type: Transform
- pos: -76.5,15.5
+ pos: -4.5,-38.5
parent: 2
- - uid: 4635
+ - uid: 11824
components:
- type: Transform
- pos: -75.5,15.5
+ pos: -4.5,-37.5
parent: 2
- - uid: 4636
+ - uid: 11825
components:
- type: Transform
- pos: -74.5,15.5
+ pos: -4.5,-36.5
parent: 2
- - uid: 4637
+ - uid: 11826
components:
- type: Transform
- pos: -73.5,15.5
+ pos: 8.5,-55.5
parent: 2
- - uid: 4638
+ - uid: 11827
components:
- type: Transform
- pos: -72.5,15.5
+ pos: -82.5,-1.5
parent: 2
- - uid: 4639
+ - uid: 11828
components:
- type: Transform
- pos: -71.5,15.5
+ pos: -82.5,-2.5
parent: 2
- - uid: 4640
+ - uid: 11829
components:
- type: Transform
- pos: -70.5,15.5
+ pos: -82.5,-12.5
parent: 2
- - uid: 4641
+ - uid: 11830
components:
- type: Transform
- pos: -69.5,15.5
+ pos: -82.5,-13.5
parent: 2
- - uid: 4642
+ - uid: 11831
components:
- type: Transform
- pos: -68.5,15.5
+ pos: -62.5,-6.5
parent: 2
- - uid: 4643
+ - uid: 11832
components:
- type: Transform
- pos: -67.5,15.5
+ pos: -63.5,-6.5
parent: 2
- - uid: 4644
+ - uid: 11833
components:
- type: Transform
- pos: -76.5,13.5
+ pos: -64.5,-6.5
parent: 2
- - uid: 4645
+ - uid: 11834
components:
- type: Transform
- pos: -76.5,12.5
+ pos: -65.5,-6.5
parent: 2
- - uid: 4646
+ - uid: 11835
components:
- type: Transform
- pos: -76.5,11.5
+ pos: -66.5,-6.5
parent: 2
- - uid: 4647
+ - uid: 11836
components:
- type: Transform
- pos: -76.5,10.5
+ pos: -67.5,-6.5
parent: 2
- - uid: 4648
+ - uid: 11837
components:
- type: Transform
- pos: -76.5,9.5
+ pos: -68.5,-6.5
parent: 2
- - uid: 4649
+ - uid: 11838
components:
- type: Transform
- pos: -76.5,8.5
+ pos: -69.5,-6.5
parent: 2
- - uid: 4650
+ - uid: 11839
components:
- type: Transform
- pos: -76.5,7.5
+ pos: -66.5,-5.5
parent: 2
- - uid: 4651
+ - uid: 11840
components:
- type: Transform
- pos: -76.5,6.5
+ pos: -66.5,-4.5
parent: 2
- - uid: 4652
+ - uid: 11841
components:
- type: Transform
- pos: -76.5,5.5
+ pos: -81.5,-2.5
parent: 2
- - uid: 4653
+ - uid: 11842
components:
- type: Transform
- pos: -76.5,4.5
+ pos: -80.5,-2.5
parent: 2
- - uid: 4654
+ - uid: 11843
components:
- type: Transform
- pos: -76.5,3.5
+ pos: -80.5,-3.5
parent: 2
- - uid: 4655
+ - uid: 11844
components:
- type: Transform
- pos: -67.5,3.5
+ pos: -38.5,39.5
parent: 2
- - uid: 4656
+ - uid: 11845
components:
- type: Transform
- pos: -67.5,2.5
+ pos: -39.5,39.5
parent: 2
- - uid: 4657
+ - uid: 11846
components:
- type: Transform
- pos: -68.5,2.5
+ pos: 79.5,-42.5
parent: 2
- - uid: 4658
+ - uid: 11847
components:
- type: Transform
- pos: -69.5,2.5
+ pos: 77.5,-42.5
parent: 2
- - uid: 4659
+ - uid: 11848
components:
- type: Transform
- pos: -69.5,1.5
+ pos: 46.5,24.5
parent: 2
- - uid: 4660
+ - uid: 11849
components:
- type: Transform
- pos: -69.5,0.5
+ pos: -118.5,35.5
parent: 2
- - uid: 4661
+ - uid: 11850
components:
- type: Transform
- pos: -69.5,-0.5
+ pos: -118.5,38.5
parent: 2
- - uid: 4662
+ - uid: 11851
components:
- type: Transform
- pos: -69.5,-1.5
+ pos: -118.5,40.5
parent: 2
- - uid: 4663
+ - uid: 11852
components:
- type: Transform
- pos: -69.5,-2.5
+ pos: -123.5,41.5
parent: 2
- - uid: 4664
+ - uid: 11853
components:
- type: Transform
- pos: -69.5,-3.5
+ pos: -123.5,40.5
parent: 2
- - uid: 4665
+ - uid: 11854
components:
- type: Transform
- pos: -68.5,-0.5
+ pos: -118.5,36.5
parent: 2
- - uid: 4666
+ - uid: 11855
components:
- type: Transform
- pos: -67.5,-0.5
+ pos: -118.5,37.5
parent: 2
- - uid: 4667
+ - uid: 11856
components:
- type: Transform
- pos: -66.5,-0.5
+ pos: -118.5,32.5
parent: 2
- - uid: 4668
+ - uid: 11857
components:
- type: Transform
- pos: -65.5,-0.5
+ pos: -119.5,40.5
parent: 2
- - uid: 4669
+ - uid: 11858
components:
- type: Transform
- pos: -65.5,1.5
+ pos: -121.5,40.5
parent: 2
- - uid: 4670
+ - uid: 11859
components:
- type: Transform
- pos: -65.5,0.5
+ pos: -120.5,40.5
parent: 2
- - uid: 4671
+ - uid: 11860
components:
- type: Transform
- pos: -64.5,1.5
+ pos: -118.5,51.5
parent: 2
- - uid: 4672
+ - uid: 11861
components:
- type: Transform
- pos: -63.5,1.5
+ pos: -118.5,49.5
parent: 2
- - uid: 4673
+ - uid: 11862
components:
- type: Transform
- pos: -62.5,1.5
+ pos: -114.5,26.5
parent: 2
- - uid: 4674
+ - uid: 11863
components:
- type: Transform
- pos: -60.5,0.5
+ pos: -114.5,27.5
parent: 2
- - uid: 4675
+ - uid: 11864
components:
- type: Transform
- pos: -60.5,-0.5
+ pos: -118.5,22.5
parent: 2
- - uid: 4676
+ - uid: 11865
components:
- type: Transform
- pos: -59.5,-0.5
+ pos: -118.5,21.5
parent: 2
- - uid: 4677
+ - uid: 11866
components:
- type: Transform
- pos: -58.5,-0.5
+ pos: -116.5,23.5
parent: 2
- - uid: 4678
+ - uid: 11867
components:
- type: Transform
- pos: -57.5,-0.5
+ pos: -115.5,23.5
parent: 2
- - uid: 4679
+ - uid: 11868
components:
- type: Transform
- pos: -56.5,-0.5
+ pos: -120.5,23.5
parent: 2
- - uid: 4680
+ - uid: 11869
components:
- type: Transform
- pos: -55.5,-0.5
+ pos: -119.5,23.5
parent: 2
- - uid: 4681
+ - uid: 11870
components:
- type: Transform
- pos: -54.5,-0.5
+ pos: -118.5,23.5
parent: 2
- - uid: 4682
+ - uid: 11871
components:
- type: Transform
- pos: -53.5,-0.5
+ pos: -122.5,25.5
parent: 2
- - uid: 4683
+ - uid: 11872
components:
- type: Transform
- pos: -52.5,-0.5
+ pos: -122.5,24.5
parent: 2
- - uid: 4684
+ - uid: 11873
components:
- type: Transform
- pos: -52.5,0.5
+ pos: -122.5,23.5
parent: 2
- - uid: 4685
+ - uid: 11874
components:
- type: Transform
- pos: -52.5,1.5
+ pos: -121.5,23.5
parent: 2
- - uid: 4686
+ - uid: 11875
components:
- type: Transform
- pos: -52.5,2.5
+ pos: -114.5,23.5
parent: 2
- - uid: 4687
+ - uid: 11876
components:
- type: Transform
- pos: -52.5,-1.5
+ pos: -114.5,24.5
parent: 2
- - uid: 4688
+ - uid: 11877
components:
- type: Transform
- pos: -52.5,-2.5
+ pos: -114.5,25.5
parent: 2
- - uid: 4689
+ - uid: 11878
components:
- type: Transform
- pos: -52.5,-3.5
+ pos: -118.5,50.5
parent: 2
- - uid: 4690
+ - uid: 11879
components:
- type: Transform
- pos: -52.5,-4.5
+ pos: -122.5,27.5
parent: 2
- - uid: 4691
+ - uid: 11880
components:
- type: Transform
- pos: -52.5,-5.5
+ pos: -122.5,26.5
parent: 2
- - uid: 4692
+ - uid: 11881
components:
- type: Transform
- pos: -52.5,-6.5
+ pos: -117.5,23.5
parent: 2
- - uid: 4693
+ - uid: 11882
components:
- type: Transform
- pos: -52.5,-7.5
+ pos: -118.5,27.5
parent: 2
- - uid: 4694
+ - uid: 11883
components:
- type: Transform
- pos: -52.5,-8.5
+ pos: -118.5,20.5
parent: 2
- - uid: 4695
+ - uid: 11884
components:
- type: Transform
- pos: -52.5,-9.5
+ pos: -118.5,28.5
parent: 2
- - uid: 4696
+ - uid: 11885
components:
- type: Transform
- pos: -52.5,-10.5
+ pos: -118.5,29.5
parent: 2
- - uid: 4697
+ - uid: 11886
components:
- type: Transform
- pos: -52.5,-11.5
+ pos: -118.5,24.5
parent: 2
- - uid: 4698
+ - uid: 11887
components:
- type: Transform
- pos: -52.5,-12.5
+ pos: -118.5,25.5
parent: 2
- - uid: 4699
+ - uid: 11888
components:
- type: Transform
- pos: -52.5,-13.5
+ pos: -118.5,26.5
parent: 2
- - uid: 4700
+ - uid: 11889
components:
- type: Transform
- pos: -52.5,-14.5
+ pos: -118.5,30.5
parent: 2
- - uid: 4701
+ - uid: 11890
components:
- type: Transform
- pos: -52.5,-15.5
+ pos: -118.5,31.5
parent: 2
- - uid: 4702
+ - uid: 11891
components:
- type: Transform
- pos: -52.5,-16.5
+ pos: -118.5,34.5
parent: 2
- - uid: 4703
+ - uid: 11892
components:
- type: Transform
- pos: -52.5,-17.5
+ pos: -118.5,33.5
parent: 2
- - uid: 4704
+ - uid: 11893
components:
- type: Transform
- pos: -53.5,-13.5
+ pos: -123.5,43.5
parent: 2
- - uid: 4705
+ - uid: 11894
components:
- type: Transform
- pos: -54.5,-13.5
+ pos: -118.5,41.5
parent: 2
- - uid: 4706
+ - uid: 11895
components:
- type: Transform
- pos: -55.5,-13.5
+ pos: -118.5,48.5
parent: 2
- - uid: 4707
+ - uid: 11896
components:
- type: Transform
- pos: -56.5,-13.5
+ pos: -118.5,42.5
parent: 2
- - uid: 4708
+ - uid: 11897
components:
- type: Transform
- pos: -57.5,-13.5
+ pos: -117.5,40.5
parent: 2
- - uid: 4709
+ - uid: 11898
components:
- type: Transform
- pos: -58.5,-13.5
+ pos: -118.5,43.5
parent: 2
- - uid: 4710
+ - uid: 11899
components:
- type: Transform
- pos: -59.5,-13.5
+ pos: -118.5,44.5
parent: 2
- - uid: 4711
+ - uid: 11900
components:
- type: Transform
- pos: -60.5,-13.5
+ pos: -118.5,39.5
parent: 2
- - uid: 4712
+ - uid: 11901
components:
- type: Transform
- pos: -60.5,-16.5
+ pos: -115.5,40.5
parent: 2
- - uid: 4713
+ - uid: 11902
components:
- type: Transform
- pos: -59.5,-16.5
+ pos: -116.5,40.5
parent: 2
- - uid: 4714
+ - uid: 11903
components:
- type: Transform
- pos: -58.5,-16.5
+ pos: -118.5,45.5
parent: 2
- - uid: 4715
+ - uid: 11904
components:
- type: Transform
- pos: -57.5,-16.5
+ pos: -118.5,46.5
parent: 2
- - uid: 4716
+ - uid: 11905
components:
- type: Transform
- pos: -56.5,-16.5
+ pos: -118.5,47.5
parent: 2
- - uid: 4717
+ - uid: 11906
components:
- type: Transform
- pos: -55.5,-16.5
+ pos: -113.5,44.5
parent: 2
- - uid: 4718
+ - uid: 11907
components:
- type: Transform
- pos: -54.5,-16.5
+ pos: -123.5,42.5
parent: 2
- - uid: 4719
+ - uid: 11908
components:
- type: Transform
- pos: -53.5,-16.5
+ pos: -123.5,44.5
parent: 2
- - uid: 4720
+ - uid: 11909
components:
- type: Transform
- pos: -51.5,-14.5
+ pos: -113.5,41.5
parent: 2
- - uid: 4721
+ - uid: 11910
components:
- type: Transform
- pos: -50.5,-14.5
+ pos: -113.5,42.5
parent: 2
- - uid: 4722
+ - uid: 11911
components:
- type: Transform
- pos: -49.5,-14.5
+ pos: -123.5,24.5
parent: 2
- - uid: 4723
+ - uid: 11912
components:
- type: Transform
- pos: -48.5,-14.5
+ pos: -67.5,53.5
parent: 2
- - uid: 4724
+ - uid: 11913
components:
- type: Transform
- pos: -47.5,-14.5
+ pos: -68.5,49.5
parent: 2
- - uid: 4725
+ - uid: 11914
components:
- type: Transform
- pos: -46.5,-14.5
+ pos: -68.5,51.5
parent: 2
- - uid: 4726
+ - uid: 11915
components:
- type: Transform
- pos: -45.5,-14.5
+ pos: -63.5,53.5
parent: 2
- - uid: 4727
+ - uid: 11916
components:
- type: Transform
- pos: -47.5,-13.5
+ pos: 61.5,25.5
parent: 2
- - uid: 4728
+ - uid: 11917
components:
- type: Transform
- pos: -47.5,-12.5
+ pos: -65.5,53.5
parent: 2
- - uid: 4729
+ - uid: 11918
components:
- type: Transform
- pos: -47.5,-11.5
+ pos: -68.5,50.5
parent: 2
- - uid: 4730
+ - uid: 11919
components:
- type: Transform
- pos: -47.5,-15.5
+ pos: -58.5,54.5
parent: 2
- - uid: 4731
+ - uid: 11920
components:
- type: Transform
- pos: -47.5,-16.5
+ pos: -68.5,47.5
parent: 2
- - uid: 4732
+ - uid: 11921
components:
- type: Transform
- pos: -47.5,-17.5
+ pos: -58.5,53.5
parent: 2
- - uid: 4733
+ - uid: 11922
components:
- type: Transform
- pos: -51.5,-7.5
+ pos: -61.5,53.5
parent: 2
- - uid: 4734
+ - uid: 11923
components:
- type: Transform
- pos: -50.5,-7.5
+ pos: -68.5,53.5
parent: 2
- - uid: 4735
+ - uid: 11924
components:
- type: Transform
- pos: -49.5,-7.5
+ pos: -68.5,52.5
parent: 2
- - uid: 4736
+ - uid: 11925
components:
- type: Transform
- pos: -48.5,-7.5
+ pos: -68.5,48.5
parent: 2
- - uid: 4737
+ - uid: 11926
components:
- type: Transform
- pos: -47.5,-7.5
+ pos: -58.5,55.5
parent: 2
- - uid: 4738
+ - uid: 11927
components:
- type: Transform
- pos: -46.5,-7.5
+ pos: -66.5,53.5
parent: 2
- - uid: 4739
+ - uid: 11928
components:
- type: Transform
- pos: -45.5,-7.5
+ pos: -60.5,53.5
parent: 2
- - uid: 4740
+ - uid: 11929
components:
- type: Transform
- pos: -44.5,-7.5
+ pos: -59.5,53.5
parent: 2
- - uid: 4741
+ - uid: 11930
components:
- type: Transform
- pos: -60.5,-4.5
+ pos: 80.5,-1.5
parent: 2
- - uid: 4742
+ - uid: 11931
components:
- type: Transform
- pos: -60.5,-5.5
+ pos: 81.5,-1.5
parent: 2
- - uid: 4743
+ - uid: 11932
components:
- type: Transform
- pos: -60.5,-6.5
+ pos: 82.5,-1.5
parent: 2
- - uid: 4744
+ - uid: 11933
components:
- type: Transform
- pos: -60.5,-7.5
+ pos: 89.5,1.5
parent: 2
- - uid: 4745
+ - uid: 11934
components:
- type: Transform
- pos: -60.5,-8.5
+ pos: 87.5,0.5
parent: 2
- - uid: 4746
+ - uid: 11935
components:
- type: Transform
- pos: -60.5,-9.5
+ pos: 85.5,-1.5
parent: 2
- - uid: 4747
+ - uid: 11936
components:
- type: Transform
- pos: -59.5,-7.5
+ pos: 87.5,-0.5
parent: 2
- - uid: 4748
+ - uid: 11937
components:
- type: Transform
- pos: -58.5,-7.5
+ pos: 88.5,1.5
parent: 2
- - uid: 4749
+ - uid: 11938
components:
- type: Transform
- pos: -57.5,-7.5
+ pos: 86.5,-1.5
parent: 2
- - uid: 4750
+ - uid: 11939
components:
- type: Transform
- pos: -56.5,-7.5
+ pos: 84.5,-1.5
parent: 2
- - uid: 4751
+ - uid: 11940
components:
- type: Transform
- pos: -56.5,-5.5
+ pos: 78.5,-1.5
parent: 2
- - uid: 4752
+ - uid: 11941
components:
- type: Transform
- pos: -56.5,-6.5
+ pos: 79.5,-1.5
parent: 2
- - uid: 4753
+ - uid: 11942
components:
- type: Transform
- pos: -56.5,-7.5
+ pos: 83.5,-1.5
parent: 2
- - uid: 4754
+ - uid: 11943
components:
- type: Transform
- pos: -56.5,-8.5
+ pos: 87.5,-1.5
parent: 2
- - uid: 4755
+ - uid: 11944
components:
- type: Transform
- pos: -56.5,-9.5
+ pos: 87.5,1.5
parent: 2
- - uid: 4756
+ - uid: 11945
components:
- type: Transform
- pos: -57.5,-5.5
+ pos: 89.5,2.5
parent: 2
- - uid: 4757
+ - uid: 11946
components:
- type: Transform
- pos: -57.5,-9.5
+ pos: 90.5,2.5
parent: 2
- - uid: 4758
+ - uid: 11947
components:
- type: Transform
- pos: -60.5,2.5
+ pos: 91.5,2.5
parent: 2
- - uid: 4759
+ - uid: 11948
components:
- type: Transform
- pos: -59.5,2.5
+ pos: 91.5,3.5
parent: 2
- - uid: 4760
+ - uid: 11949
components:
- type: Transform
- pos: -58.5,2.5
+ pos: 91.5,4.5
parent: 2
- - uid: 4761
+ - uid: 11950
components:
- type: Transform
- pos: -57.5,2.5
+ pos: 69.5,23.5
parent: 2
- - uid: 4762
+ - uid: 11951
components:
- type: Transform
- pos: -56.5,2.5
+ pos: 69.5,22.5
parent: 2
- - uid: 4763
+ - uid: 11952
components:
- type: Transform
- pos: -55.5,2.5
+ pos: 68.5,22.5
parent: 2
- - uid: 4764
+ - uid: 11953
components:
- type: Transform
- pos: -54.5,2.5
+ pos: 67.5,22.5
parent: 2
- - uid: 4765
+ - uid: 11954
components:
- type: Transform
- pos: -53.5,2.5
+ pos: 66.5,22.5
parent: 2
- - uid: 4766
+ - uid: 11955
components:
- type: Transform
- pos: -51.5,2.5
+ pos: 65.5,22.5
parent: 2
- - uid: 4767
+ - uid: 11956
components:
- type: Transform
- pos: -50.5,2.5
+ pos: 64.5,22.5
parent: 2
- - uid: 4768
+ - uid: 11957
components:
- type: Transform
- pos: -49.5,2.5
+ pos: 63.5,22.5
parent: 2
- - uid: 4769
+ - uid: 11958
components:
- type: Transform
- pos: -48.5,2.5
+ pos: 62.5,22.5
parent: 2
- - uid: 4770
+ - uid: 11959
components:
- type: Transform
- pos: -51.5,-3.5
+ pos: 61.5,22.5
parent: 2
- - uid: 4771
+ - uid: 11960
components:
- type: Transform
- pos: -50.5,-3.5
+ pos: 61.5,21.5
parent: 2
- - uid: 4772
+ - uid: 11961
components:
- type: Transform
- pos: -49.5,-3.5
+ pos: -24.5,68.5
parent: 2
- - uid: 4773
+ - uid: 11962
components:
- type: Transform
- pos: -48.5,-3.5
+ pos: -23.5,68.5
parent: 2
- - uid: 4774
+ - uid: 11963
components:
- type: Transform
- pos: -53.5,-3.5
+ pos: 11.5,83.5
parent: 2
- - uid: 4775
+ - uid: 11964
components:
- type: Transform
- pos: -54.5,-3.5
+ pos: -7.5,68.5
parent: 2
- - uid: 4776
+ - uid: 11965
components:
- type: Transform
- pos: -55.5,-3.5
+ pos: 11.5,82.5
parent: 2
- - uid: 4777
+ - uid: 11966
components:
- type: Transform
- pos: -56.5,-3.5
+ pos: -15.5,68.5
parent: 2
- - uid: 4778
+ - uid: 11967
components:
- type: Transform
- pos: -57.5,-3.5
+ pos: -5.5,68.5
parent: 2
- - uid: 4779
+ - uid: 11968
components:
- type: Transform
- pos: -58.5,-3.5
+ pos: -16.5,69.5
parent: 2
- - uid: 4780
+ - uid: 11969
components:
- type: Transform
- pos: -59.5,-3.5
+ pos: -13.5,71.5
parent: 2
- - uid: 4781
+ - uid: 11970
components:
- type: Transform
- pos: -60.5,-3.5
+ pos: -28.5,55.5
parent: 2
- - uid: 4782
+ - uid: 11971
components:
- type: Transform
- pos: -52.5,6.5
+ pos: 10.5,81.5
parent: 2
- - uid: 4783
+ - uid: 11972
components:
- type: Transform
- pos: -52.5,5.5
+ pos: -22.5,68.5
parent: 2
- - uid: 4784
+ - uid: 11973
components:
- type: Transform
- pos: -52.5,4.5
+ pos: -28.5,68.5
parent: 2
- - uid: 4785
+ - uid: 11974
components:
- type: Transform
- pos: -52.5,3.5
+ pos: 4.5,-12.5
parent: 2
- - uid: 4786
+ - uid: 11975
components:
- type: Transform
- pos: -52.5,2.5
+ pos: -21.5,68.5
parent: 2
- - uid: 4787
+ - uid: 11976
components:
- type: Transform
- pos: -52.5,1.5
+ pos: -19.5,68.5
parent: 2
- - uid: 4788
+ - uid: 11977
components:
- type: Transform
- pos: -53.5,18.5
+ pos: -20.5,68.5
parent: 2
- - uid: 4789
+ - uid: 11978
components:
- type: Transform
- pos: -53.5,17.5
+ pos: -18.5,68.5
parent: 2
- - uid: 4790
+ - uid: 11979
components:
- type: Transform
- pos: -53.5,16.5
+ pos: 17.5,66.5
parent: 2
- - uid: 4791
+ - uid: 11980
components:
- type: Transform
- pos: -53.5,15.5
+ pos: -17.5,68.5
parent: 2
- - uid: 4792
+ - uid: 11981
components:
- type: Transform
- pos: -53.5,14.5
+ pos: -16.5,68.5
parent: 2
- - uid: 4793
+ - uid: 11982
components:
- type: Transform
- pos: -53.5,13.5
+ pos: -14.5,68.5
parent: 2
- - uid: 4794
+ - uid: 11983
components:
- type: Transform
- pos: -53.5,12.5
+ pos: -13.5,68.5
parent: 2
- - uid: 4795
+ - uid: 11984
components:
- type: Transform
- pos: -58.5,9.5
+ pos: -12.5,68.5
parent: 2
- - uid: 4796
+ - uid: 11985
components:
- type: Transform
- pos: -57.5,9.5
+ pos: -11.5,68.5
parent: 2
- - uid: 4797
+ - uid: 11986
components:
- type: Transform
- pos: -56.5,9.5
+ pos: -10.5,68.5
parent: 2
- - uid: 4798
+ - uid: 11987
components:
- type: Transform
- pos: -55.5,9.5
+ pos: -9.5,68.5
parent: 2
- - uid: 4799
+ - uid: 11988
components:
- type: Transform
- pos: -54.5,9.5
+ pos: -6.5,68.5
parent: 2
- - uid: 4800
+ - uid: 11989
components:
- type: Transform
- pos: -53.5,9.5
+ pos: -8.5,68.5
parent: 2
- - uid: 4801
+ - uid: 11990
components:
- type: Transform
- pos: -52.5,9.5
+ pos: -4.5,68.5
parent: 2
- - uid: 4802
+ - uid: 11991
components:
- type: Transform
- pos: -52.5,8.5
+ pos: -3.5,68.5
parent: 2
- - uid: 4803
+ - uid: 11992
components:
- type: Transform
- pos: -51.5,9.5
+ pos: -2.5,68.5
parent: 2
- - uid: 4804
+ - uid: 11993
components:
- type: Transform
- pos: -50.5,9.5
+ pos: -1.5,68.5
parent: 2
- - uid: 4805
+ - uid: 11994
components:
- type: Transform
- pos: -49.5,9.5
+ pos: -0.5,68.5
parent: 2
- - uid: 4806
+ - uid: 11995
components:
- type: Transform
- pos: -49.5,10.5
+ pos: 0.5,68.5
parent: 2
- - uid: 4807
+ - uid: 11996
components:
- type: Transform
- pos: -49.5,11.5
+ pos: 1.5,68.5
parent: 2
- - uid: 4808
+ - uid: 11997
components:
- type: Transform
- pos: -49.5,12.5
+ pos: 2.5,68.5
parent: 2
- - uid: 4809
+ - uid: 11998
components:
- type: Transform
- pos: -47.5,15.5
+ pos: 3.5,68.5
parent: 2
- - uid: 4810
+ - uid: 11999
components:
- type: Transform
- pos: -48.5,15.5
+ pos: 4.5,68.5
parent: 2
- - uid: 4811
+ - uid: 12000
components:
- type: Transform
- pos: -49.5,15.5
+ pos: 5.5,68.5
parent: 2
- - uid: 4812
+ - uid: 12001
components:
- type: Transform
- pos: -50.5,15.5
+ pos: 6.5,68.5
parent: 2
- - uid: 4813
+ - uid: 38741
components:
- type: Transform
- pos: -51.5,15.5
- parent: 2
- - uid: 4814
+ pos: 2.5,0.5
+ parent: 38714
+ - uid: 38742
components:
- type: Transform
- pos: -52.5,15.5
- parent: 2
- - uid: 4815
+ pos: 2.5,1.5
+ parent: 38714
+ - uid: 38743
components:
- type: Transform
- pos: -53.5,15.5
- parent: 2
- - uid: 4816
+ pos: 2.5,2.5
+ parent: 38714
+ - uid: 38744
components:
- type: Transform
- pos: -54.5,15.5
- parent: 2
- - uid: 4817
+ pos: 3.5,-0.5
+ parent: 38714
+ - uid: 38745
components:
- type: Transform
- pos: -55.5,15.5
- parent: 2
- - uid: 4818
+ pos: 3.5,0.5
+ parent: 38714
+- proto: CableMVStack
+ entities:
+ - uid: 1061
components:
- type: Transform
- pos: -56.5,15.5
- parent: 2
- - uid: 4819
+ parent: 1057
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 12002
components:
- type: Transform
- pos: -57.5,15.5
+ pos: -57.533306,-13.3101
parent: 2
- - uid: 4820
+ - uid: 12003
components:
- type: Transform
- pos: -58.5,15.5
+ pos: 11.488064,40.640076
parent: 2
- - uid: 4821
+ - uid: 12004
components:
- type: Transform
- pos: -58.5,14.5
+ pos: -7.634339,-35.40014
parent: 2
- - uid: 4822
+ - type: Physics
+ canCollide: False
+- proto: CableMVStack1
+ entities:
+ - uid: 12005
components:
- type: Transform
- pos: -58.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 27.527086,-60.507156
parent: 2
- - uid: 4823
+- proto: CableTerminal
+ entities:
+ - uid: 12006
components:
- type: Transform
- pos: -69.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,61.5
parent: 2
- - uid: 4824
+ - uid: 12007
components:
- type: Transform
- pos: -69.5,12.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,31.5
parent: 2
- - uid: 4825
+ - uid: 12008
components:
- type: Transform
- pos: -70.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-0.5
parent: 2
- - uid: 4826
+ - uid: 12009
components:
- type: Transform
- pos: -71.5,12.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,-3.5
parent: 2
- - uid: 4827
+ - uid: 12010
components:
- type: Transform
- pos: -71.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,45.5
parent: 2
- - uid: 4828
+ - uid: 12011
components:
- type: Transform
- pos: -71.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-30.5
parent: 2
- - uid: 4829
+ - type: Physics
+ canCollide: False
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12012
components:
- type: Transform
- pos: -71.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-9.5
parent: 2
- - uid: 4830
+ - uid: 12013
components:
- type: Transform
- pos: -71.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-40.5
parent: 2
- - uid: 4831
+ - type: Physics
+ canCollide: False
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12014
components:
- type: Transform
- pos: -71.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,1.5
parent: 2
- - uid: 4832
+ - uid: 12015
components:
- type: Transform
- pos: -71.5,6.5
+ pos: -59.5,61.5
parent: 2
- - uid: 4833
+ - type: Physics
+ canCollide: False
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12016
components:
- type: Transform
- pos: -71.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,12.5
parent: 2
- - uid: 4834
+ - uid: 12017
components:
- type: Transform
- pos: -71.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,88.5
parent: 2
- - uid: 4835
+ - type: Physics
+ canCollide: False
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12018
components:
- type: Transform
- pos: -72.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,45.5
parent: 2
- - uid: 4836
+ - uid: 12019
components:
- type: Transform
- pos: -73.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,2.5
parent: 2
- - uid: 4837
+ - uid: 12020
components:
- type: Transform
- pos: -69.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,0.5
parent: 2
- - uid: 4838
+ - uid: 12021
components:
- type: Transform
- pos: -70.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-0.5
parent: 2
- - uid: 4839
+ - uid: 12022
components:
- type: Transform
- pos: -72.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-73.5
parent: 2
- - uid: 4840
+ - type: Physics
+ canCollide: False
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12023
components:
- type: Transform
- pos: -70.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -80.5,-12.5
parent: 2
- - uid: 4841
+ - uid: 12024
components:
- type: Transform
- pos: -71.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,-44.5
parent: 2
- - uid: 4842
+ - uid: 12025
components:
- type: Transform
- pos: -72.5,-0.5
+ pos: -121.5,25.5
parent: 2
- - uid: 4843
+- proto: CandleRed
+ entities:
+ - uid: 12026
components:
- type: Transform
- pos: -73.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 56.50317,-34.333656
parent: 2
- - uid: 4844
+- proto: CandleRedInfinite
+ entities:
+ - uid: 12027
components:
- type: Transform
- pos: -73.5,0.5
+ pos: -67.991455,-35.431976
parent: 2
- - uid: 4845
+- proto: CannabisSeeds
+ entities:
+ - uid: 12028
components:
- type: Transform
- pos: -70.5,2.5
+ pos: -38.5,32.5
parent: 2
- - uid: 4846
+- proto: CapacitorStockPart
+ entities:
+ - uid: 1062
components:
- type: Transform
- pos: -71.5,2.5
- parent: 2
- - uid: 4847
+ parent: 1057
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1063
components:
- type: Transform
- pos: -72.5,2.5
- parent: 2
- - uid: 4848
+ parent: 1057
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 12029
components:
- type: Transform
- pos: -70.5,-3.5
+ pos: -32.5,12.5
parent: 2
- - uid: 4849
+ - uid: 12030
components:
- type: Transform
- pos: -68.5,-3.5
+ pos: -45.5,4.5
parent: 2
- - uid: 4850
+ - uid: 12031
components:
- type: Transform
- pos: -65.5,-4.5
+ pos: -7.5,-39.5
parent: 2
- - uid: 4851
+- proto: CaptainIDCard
+ entities:
+ - uid: 12032
components:
- type: Transform
- pos: -65.5,-5.5
+ pos: 7.44547,0.9202859
parent: 2
- - uid: 4852
+- proto: CarbonDioxideCanister
+ entities:
+ - uid: 12033
components:
- type: Transform
- pos: -65.5,-6.5
+ pos: -30.5,-50.5
parent: 2
- - uid: 4853
+ - uid: 12034
components:
- type: Transform
- pos: -66.5,-6.5
+ pos: 77.5,23.5
parent: 2
- - uid: 4854
+ - uid: 12035
components:
- type: Transform
- pos: -67.5,-6.5
+ pos: -30.5,-49.5
parent: 2
- - uid: 4855
+ - type: Lock
+ locked: False
+ - uid: 12036
components:
- type: Transform
- pos: -68.5,-6.5
+ pos: -40.5,-50.5
parent: 2
- - uid: 4856
+ - uid: 12037
components:
- type: Transform
- pos: -69.5,-6.5
+ pos: -70.5,31.5
parent: 2
- - uid: 4857
+- proto: Carpet
+ entities:
+ - uid: 12038
components:
- type: Transform
- pos: -70.5,-6.5
+ pos: -11.5,9.5
parent: 2
- - uid: 4858
+ - uid: 12039
components:
- type: Transform
- pos: -71.5,-6.5
+ pos: -12.5,9.5
parent: 2
- - uid: 4859
+ - uid: 12040
components:
- type: Transform
- pos: -72.5,-6.5
+ pos: -12.5,10.5
parent: 2
- - uid: 4860
+ - uid: 12041
components:
- type: Transform
- pos: -69.5,-7.5
+ pos: -11.5,10.5
parent: 2
- - uid: 4861
+ - uid: 12042
components:
- type: Transform
- pos: -69.5,-8.5
+ pos: -10.5,10.5
parent: 2
- - uid: 4862
+ - uid: 12043
components:
- type: Transform
- pos: -69.5,-9.5
+ pos: -10.5,9.5
parent: 2
- - uid: 4863
+ - uid: 12044
components:
- type: Transform
- pos: -69.5,-10.5
+ pos: -10.5,8.5
parent: 2
- - uid: 4864
+ - uid: 12045
components:
- type: Transform
- pos: -69.5,-11.5
+ pos: -11.5,8.5
parent: 2
- - uid: 4865
+ - uid: 12046
components:
- type: Transform
- pos: -69.5,-12.5
+ pos: -12.5,8.5
parent: 2
- - uid: 4866
+ - uid: 12047
components:
- type: Transform
- pos: -70.5,-5.5
+ pos: -13.5,8.5
parent: 2
- - uid: 4867
+ - uid: 12048
components:
- type: Transform
- pos: -68.5,-5.5
+ pos: -13.5,9.5
parent: 2
- - uid: 4868
+ - uid: 12049
components:
- type: Transform
- pos: -64.5,-6.5
+ pos: -13.5,10.5
parent: 2
- - uid: 4869
+ - uid: 12050
components:
- type: Transform
- pos: -63.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,-15.5
parent: 2
- - uid: 4870
+ - uid: 12051
components:
- type: Transform
- pos: -62.5,-6.5
+ pos: 33.5,8.5
parent: 2
- - uid: 4871
+ - uid: 12052
components:
- type: Transform
- pos: -73.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,-16.5
parent: 2
- - uid: 4872
+ - uid: 12053
components:
- type: Transform
- pos: -74.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,-14.5
parent: 2
- - uid: 4873
+ - uid: 12054
components:
- type: Transform
- pos: -75.5,-6.5
+ pos: 32.5,9.5
parent: 2
- - uid: 4874
+ - uid: 12055
components:
- type: Transform
- pos: -76.5,-6.5
+ pos: 31.5,8.5
parent: 2
- - uid: 4875
+ - uid: 12056
components:
- type: Transform
- pos: -77.5,-6.5
+ pos: 8.5,7.5
parent: 2
- - uid: 4876
+ - uid: 12057
components:
- type: Transform
- pos: -78.5,-6.5
+ pos: -1.5,13.5
parent: 2
- - uid: 4877
+ - uid: 12058
components:
- type: Transform
- pos: -79.5,-6.5
+ pos: -0.5,13.5
parent: 2
- - uid: 4878
+ - uid: 12059
components:
- type: Transform
- pos: -80.5,-6.5
+ pos: 7.5,7.5
parent: 2
- - uid: 4879
+ - uid: 12060
components:
- type: Transform
- pos: -81.5,-6.5
+ pos: 7.5,5.5
parent: 2
- - uid: 4880
+ - uid: 12061
components:
- type: Transform
- pos: -81.5,-5.5
+ pos: 9.5,6.5
parent: 2
- - uid: 4881
+ - uid: 12062
components:
- type: Transform
- pos: -81.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,-13.5
parent: 2
- - uid: 4882
+ - uid: 12063
components:
- type: Transform
- pos: -81.5,-9.5
+ pos: -1.5,12.5
parent: 2
- - uid: 4883
+ - uid: 12064
components:
- type: Transform
- pos: -81.5,-9.5
+ pos: -0.5,12.5
parent: 2
- - uid: 4884
+ - uid: 12065
components:
- type: Transform
- pos: -81.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,-13.5
parent: 2
- - uid: 4885
+ - uid: 12066
components:
- type: Transform
- pos: -76.5,-7.5
+ pos: 32.5,10.5
parent: 2
- - uid: 4886
+ - uid: 12067
components:
- type: Transform
- pos: -76.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,-14.5
parent: 2
- - uid: 4887
+ - uid: 12068
components:
- type: Transform
- pos: -76.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,-16.5
parent: 2
- - uid: 4888
+ - uid: 12069
components:
- type: Transform
- pos: -75.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,-15.5
parent: 2
- - uid: 4889
+ - uid: 12070
components:
- type: Transform
- pos: -74.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,-14.5
parent: 2
- - uid: 4890
+ - uid: 12071
components:
- type: Transform
- pos: -57.5,-11.5
+ pos: 33.5,10.5
parent: 2
- - uid: 4891
+ - uid: 12072
components:
- type: Transform
- pos: -57.5,-12.5
+ pos: 0.5,12.5
parent: 2
- - uid: 4892
+ - uid: 12073
components:
- type: Transform
- pos: -57.5,-13.5
+ pos: 31.5,10.5
parent: 2
- - uid: 4893
+ - uid: 12074
components:
- type: Transform
- pos: -57.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,-16.5
parent: 2
- - uid: 4894
+ - uid: 12075
components:
- type: Transform
- pos: -57.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,-13.5
parent: 2
- - uid: 4895
+ - uid: 12076
components:
- type: Transform
- pos: -57.5,-15.5
+ pos: 31.5,9.5
parent: 2
- - uid: 4896
+ - uid: 12077
components:
- type: Transform
- pos: -46.5,-5.5
+ pos: 0.5,13.5
parent: 2
- - uid: 4897
+ - uid: 12078
components:
- type: Transform
- pos: -46.5,-6.5
+ pos: 33.5,9.5
parent: 2
- - uid: 4898
+ - uid: 12079
components:
- type: Transform
- pos: -46.5,-7.5
+ pos: 7.5,6.5
parent: 2
- - uid: 4899
+ - uid: 12080
components:
- type: Transform
- pos: -46.5,-8.5
+ pos: 8.5,6.5
parent: 2
- - uid: 4900
+ - uid: 12081
components:
- type: Transform
- pos: -46.5,-9.5
+ pos: 9.5,7.5
parent: 2
- - uid: 4901
+ - uid: 12082
components:
- type: Transform
- pos: -48.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,-15.5
parent: 2
- - uid: 4902
+ - uid: 12083
components:
- type: Transform
- pos: -47.5,1.5
+ pos: 32.5,8.5
parent: 2
- - uid: 4903
+ - uid: 12084
components:
- type: Transform
- pos: -46.5,1.5
+ pos: -9.5,10.5
parent: 2
- - uid: 4904
+ - uid: 12085
components:
- type: Transform
- pos: -45.5,1.5
+ pos: -9.5,9.5
parent: 2
- - uid: 4905
+ - uid: 12086
components:
- type: Transform
- pos: -45.5,0.5
+ pos: -9.5,8.5
parent: 2
- - uid: 4906
+- proto: CarpetBlack
+ entities:
+ - uid: 12087
components:
- type: Transform
- pos: -45.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,9.5
parent: 2
- - uid: 4907
+ - uid: 12088
components:
- type: Transform
- pos: -45.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,10.5
parent: 2
- - uid: 4908
+ - uid: 12089
components:
- type: Transform
- pos: -45.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,9.5
parent: 2
- - uid: 4909
+ - uid: 12090
components:
- type: Transform
- pos: -45.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,10.5
parent: 2
- - uid: 4910
+ - uid: 12091
components:
- type: Transform
- pos: -48.5,3.5
+ pos: -29.5,-7.5
parent: 2
- - uid: 4911
+ - uid: 12092
components:
- type: Transform
- pos: -48.5,4.5
+ pos: -71.5,-40.5
parent: 2
- - uid: 4912
+ - uid: 12093
components:
- type: Transform
- pos: -48.5,5.5
+ pos: -70.5,-40.5
parent: 2
- - uid: 4913
+ - uid: 12094
components:
- type: Transform
- pos: -47.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,9.5
parent: 2
- - uid: 4914
+ - uid: 12095
components:
- type: Transform
- pos: -46.5,5.5
+ pos: -27.5,-7.5
parent: 2
- - uid: 4915
+ - uid: 12096
components:
- type: Transform
- pos: -45.5,5.5
+ pos: -22.5,-11.5
parent: 2
- - uid: 4916
+ - uid: 12097
components:
- type: Transform
- pos: -44.5,5.5
+ pos: 42.5,20.5
parent: 2
- - uid: 4917
+ - uid: 12098
components:
- type: Transform
- pos: -47.5,10.5
+ pos: 40.5,20.5
parent: 2
- - uid: 4918
+ - uid: 12099
components:
- type: Transform
- pos: -47.5,9.5
+ pos: 40.5,19.5
parent: 2
- - uid: 4919
+ - uid: 12100
components:
- type: Transform
- pos: -47.5,8.5
+ pos: 42.5,21.5
parent: 2
- - uid: 4920
+ - uid: 12101
components:
- type: Transform
- pos: -46.5,9.5
+ pos: 40.5,21.5
parent: 2
- - uid: 4921
+ - uid: 12102
components:
- type: Transform
- pos: -45.5,9.5
+ pos: 41.5,20.5
parent: 2
- - uid: 4922
+ - uid: 12103
components:
- type: Transform
- pos: -56.5,21.5
+ pos: 41.5,19.5
parent: 2
- - uid: 4923
+ - uid: 12104
components:
- type: Transform
- pos: -56.5,20.5
+ pos: 42.5,19.5
parent: 2
- - uid: 4924
+ - uid: 12105
components:
- type: Transform
- pos: -57.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-44.5
parent: 2
- - uid: 4925
+ - uid: 12106
components:
- type: Transform
- pos: -57.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-45.5
parent: 2
- - uid: 4926
+ - uid: 12107
components:
- type: Transform
- pos: -57.5,18.5
+ pos: 41.5,21.5
parent: 2
- - uid: 4927
+ - uid: 12108
components:
- type: Transform
- pos: -57.5,17.5
+ pos: 15.5,-51.5
parent: 2
- - uid: 4928
+ - uid: 12109
components:
- type: Transform
- pos: -58.5,19.5
+ pos: -22.5,-10.5
parent: 2
- - uid: 4929
+ - uid: 12110
components:
- type: Transform
- pos: -59.5,19.5
+ pos: -28.5,-8.5
parent: 2
- - uid: 4930
+ - uid: 12111
components:
- type: Transform
- pos: -60.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,-45.5
parent: 2
- - uid: 4931
+ - uid: 12112
components:
- type: Transform
- pos: -56.5,18.5
+ pos: -28.5,-7.5
parent: 2
- - uid: 4932
+ - uid: 12113
components:
- type: Transform
- pos: -74.5,0.5
+ pos: 18.5,-51.5
parent: 2
- - uid: 4933
+ - uid: 12114
components:
- type: Transform
- pos: -75.5,0.5
+ pos: 16.5,-52.5
parent: 2
- - uid: 4934
+ - uid: 12115
components:
- type: Transform
- pos: -76.5,0.5
+ pos: 17.5,-51.5
parent: 2
- - uid: 4935
+ - uid: 12116
components:
- type: Transform
- pos: -77.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,-44.5
parent: 2
- - uid: 4936
+ - uid: 12117
components:
- type: Transform
- pos: -78.5,0.5
+ pos: -27.5,-8.5
parent: 2
- - uid: 4937
+ - uid: 12118
components:
- type: Transform
- pos: -65.5,57.5
+ pos: 15.5,-52.5
parent: 2
- - uid: 4938
+ - uid: 12119
components:
- type: Transform
- pos: -65.5,56.5
+ pos: 17.5,-52.5
parent: 2
- - uid: 4939
+ - uid: 12120
components:
- type: Transform
- pos: -65.5,55.5
+ pos: 18.5,-52.5
parent: 2
- - uid: 4940
+ - uid: 12121
components:
- type: Transform
- pos: -66.5,55.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-51.5
parent: 2
- - uid: 4941
+ - uid: 12122
components:
- type: Transform
- pos: -67.5,55.5
+ pos: 16.5,-51.5
parent: 2
- - uid: 4942
+ - uid: 12123
components:
- type: Transform
- pos: -68.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-45.5
parent: 2
- - uid: 4943
+ - uid: 12124
components:
- type: Transform
- pos: -69.5,55.5
+ pos: -21.5,-11.5
parent: 2
- - uid: 4944
+ - uid: 12125
components:
- type: Transform
- pos: -70.5,55.5
+ pos: -21.5,-10.5
parent: 2
- - uid: 4945
+ - uid: 12126
components:
- type: Transform
- pos: -64.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -34.5,-8.5
parent: 2
- - uid: 4946
+ - uid: 12127
components:
- type: Transform
- pos: -63.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-8.5
parent: 2
- - uid: 4947
+ - uid: 12128
components:
- type: Transform
- pos: -62.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -34.5,-7.5
parent: 2
- - uid: 4948
+ - uid: 12129
components:
- type: Transform
- pos: -61.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-7.5
parent: 2
- - uid: 4949
+ - uid: 12130
components:
- type: Transform
- pos: -61.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-44.5
parent: 2
- - uid: 4950
+ - uid: 12131
components:
- type: Transform
- pos: -61.5,57.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-52.5
parent: 2
- - uid: 4951
+ - uid: 12132
components:
- type: Transform
- pos: -60.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,10.5
parent: 2
- - uid: 4952
+ - uid: 12133
components:
- type: Transform
- pos: -59.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,9.5
parent: 2
- - uid: 4953
+ - uid: 12134
components:
- type: Transform
- pos: -58.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,10.5
parent: 2
- - uid: 4954
+ - uid: 12135
components:
- type: Transform
- pos: -58.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,10.5
parent: 2
- - uid: 4955
+ - uid: 12136
components:
- type: Transform
- pos: -58.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,9.5
parent: 2
- - uid: 4956
+ - uid: 12137
components:
- type: Transform
- pos: -58.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,10.5
parent: 2
- - uid: 4957
+ - uid: 12138
components:
- type: Transform
- pos: -58.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,9.5
parent: 2
- - uid: 4958
+ - uid: 12139
components:
- type: Transform
- pos: -58.5,61.5
+ pos: -29.5,-8.5
parent: 2
- - uid: 4959
+- proto: CarpetChapel
+ entities:
+ - uid: 12140
components:
- type: Transform
- pos: -58.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-68.5
parent: 2
- - uid: 4960
+ - uid: 12141
components:
- type: Transform
- pos: -58.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-72.5
parent: 2
- - uid: 4961
+ - uid: 12142
components:
- type: Transform
- pos: -61.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-71.5
parent: 2
- - uid: 4962
+ - uid: 12143
components:
- type: Transform
- pos: -61.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-69.5
parent: 2
- - uid: 4963
+ - uid: 12144
components:
- type: Transform
- pos: -61.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-67.5
parent: 2
- - uid: 4964
+ - uid: 12145
components:
- type: Transform
- pos: -61.5,61.5
+ pos: -13.5,-68.5
parent: 2
- - uid: 4965
+ - uid: 12146
components:
- type: Transform
- pos: -62.5,54.5
+ pos: -15.5,-68.5
parent: 2
- - uid: 4966
+ - uid: 12147
components:
- type: Transform
- pos: -66.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-71.5
parent: 2
- - uid: 4967
+ - uid: 12148
components:
- type: Transform
- pos: -66.5,57.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-71.5
parent: 2
- - uid: 4968
+ - uid: 12149
components:
- type: Transform
- pos: -66.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-68.5
parent: 2
- - uid: 4969
+ - uid: 12150
components:
- type: Transform
- pos: -66.5,59.5
+ pos: -15.5,-72.5
parent: 2
- - uid: 4970
+ - uid: 12151
components:
- type: Transform
- pos: -66.5,60.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-73.5
parent: 2
- - uid: 4971
+ - uid: 12152
components:
- type: Transform
- pos: -66.5,61.5
+ pos: -15.5,-70.5
parent: 2
- - uid: 4972
+ - uid: 12153
components:
- type: Transform
- pos: -44.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,-71.5
parent: 2
- - uid: 4973
+ - uid: 12154
components:
- type: Transform
- pos: -44.5,48.5
+ pos: -13.5,-72.5
parent: 2
- - uid: 4974
+ - uid: 12155
components:
- type: Transform
- pos: -44.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-70.5
parent: 2
- - uid: 4975
+ - uid: 12156
components:
- type: Transform
- pos: -44.5,46.5
+ pos: -13.5,-70.5
parent: 2
- - uid: 4976
+ - uid: 12157
components:
- type: Transform
- pos: -44.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-72.5
parent: 2
- - uid: 4977
+ - uid: 12158
components:
- type: Transform
- pos: -45.5,45.5
+ pos: -18.5,-70.5
parent: 2
- - uid: 4978
+ - uid: 12159
components:
- type: Transform
- pos: -46.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-67.5
parent: 2
- - uid: 4979
+ - uid: 12160
components:
- type: Transform
- pos: -47.5,45.5
+ pos: -18.5,-68.5
parent: 2
- - uid: 4980
+ - uid: 12161
components:
- type: Transform
- pos: -48.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-73.5
parent: 2
- - uid: 4981
+ - uid: 12162
components:
- type: Transform
- pos: -49.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-71.5
parent: 2
- - uid: 4982
+ - uid: 12163
components:
- type: Transform
- pos: -50.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-67.5
parent: 2
- - uid: 4983
+ - uid: 12164
components:
- type: Transform
- pos: -51.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-69.5
parent: 2
- - uid: 4984
+ - uid: 12165
components:
- type: Transform
- pos: -52.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-69.5
parent: 2
- - uid: 4985
+ - uid: 12166
components:
- type: Transform
- pos: -53.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-71.5
parent: 2
- - uid: 4986
+ - uid: 12167
components:
- type: Transform
- pos: -54.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-74.5
parent: 2
- - uid: 4987
+ - uid: 12168
components:
- type: Transform
- pos: -55.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-67.5
parent: 2
- - uid: 4988
+ - uid: 12169
components:
- type: Transform
- pos: -56.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-74.5
parent: 2
- - uid: 4989
+ - uid: 12170
components:
- type: Transform
- pos: -57.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-72.5
parent: 2
- - uid: 4990
+ - uid: 12171
components:
- type: Transform
- pos: -58.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-71.5
parent: 2
- - uid: 4991
+ - uid: 12172
components:
- type: Transform
- pos: -58.5,46.5
+ pos: -20.5,-68.5
parent: 2
- - uid: 4992
+ - uid: 12173
components:
- type: Transform
- pos: -58.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,-67.5
parent: 2
- - uid: 4993
+ - uid: 12174
components:
- type: Transform
- pos: -58.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-69.5
parent: 2
- - uid: 4994
+ - uid: 12175
components:
- type: Transform
- pos: -58.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,-73.5
parent: 2
- - uid: 4995
+ - uid: 12176
components:
- type: Transform
- pos: -58.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-67.5
parent: 2
- - uid: 4996
+ - uid: 12177
components:
- type: Transform
- pos: -58.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-70.5
parent: 2
- - uid: 4997
+ - uid: 12178
components:
- type: Transform
- pos: -58.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-68.5
parent: 2
- - uid: 4998
+ - uid: 12179
components:
- type: Transform
- pos: -58.5,53.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,-69.5
parent: 2
- - uid: 4999
+ - uid: 12180
components:
- type: Transform
- pos: -58.5,54.5
+ pos: -13.5,-74.5
parent: 2
- - uid: 5000
+ - uid: 12181
components:
- type: Transform
- pos: -52.5,54.5
+ pos: -18.5,-72.5
parent: 2
- - uid: 5001
+ - uid: 12182
components:
- type: Transform
- pos: -51.5,54.5
+ pos: -20.5,-70.5
parent: 2
- - uid: 5002
+ - uid: 12183
components:
- type: Transform
- pos: -50.5,54.5
+ pos: -20.5,-72.5
parent: 2
- - uid: 5003
+ - uid: 12184
components:
- type: Transform
- pos: -49.5,54.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-67.5
parent: 2
- - uid: 5004
+ - uid: 12185
components:
- type: Transform
- pos: -48.5,54.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-69.5
parent: 2
- - uid: 5005
+ - uid: 12186
components:
- type: Transform
- pos: -47.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-72.5
parent: 2
- - uid: 5006
+ - uid: 12187
components:
- type: Transform
- pos: -46.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-68.5
parent: 2
- - uid: 5007
+ - uid: 12188
components:
- type: Transform
- pos: -45.5,54.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-69.5
parent: 2
- - uid: 5008
+ - uid: 12189
components:
- type: Transform
- pos: -45.5,53.5
+ pos: -20.5,-74.5
parent: 2
- - uid: 5009
+ - uid: 12190
components:
- type: Transform
- pos: -45.5,52.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-67.5
parent: 2
- - uid: 5010
+ - uid: 12191
components:
- type: Transform
- pos: -45.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-69.5
parent: 2
- - uid: 5011
+ - uid: 12192
components:
- type: Transform
- pos: -45.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-73.5
parent: 2
- - uid: 5012
+ - uid: 12193
components:
- type: Transform
- pos: -45.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-70.5
parent: 2
- - uid: 5013
+ - uid: 12194
components:
- type: Transform
- pos: -53.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-71.5
parent: 2
- - uid: 5014
+ - uid: 12195
components:
- type: Transform
- pos: -47.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-70.5
parent: 2
- - uid: 5015
+- proto: CarpetCyan
+ entities:
+ - uid: 12196
components:
- type: Transform
- pos: -55.5,44.5
+ pos: -4.5,0.5
parent: 2
- - uid: 5016
+ - uid: 12197
components:
- type: Transform
- pos: -50.5,39.5
+ pos: -4.5,1.5
parent: 2
- - uid: 5017
+ - uid: 12198
components:
- type: Transform
- pos: -50.5,38.5
+ pos: -3.5,0.5
parent: 2
- - uid: 5018
+ - uid: 12199
components:
- type: Transform
- pos: -50.5,37.5
+ pos: -3.5,1.5
parent: 2
- - uid: 5019
+- proto: CarpetOrange
+ entities:
+ - uid: 12200
components:
- type: Transform
- pos: -49.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 47.5,-25.5
parent: 2
- - uid: 5020
+ - uid: 12201
components:
- type: Transform
- pos: -48.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 48.5,-24.5
parent: 2
- - uid: 5021
+ - uid: 12202
components:
- type: Transform
- pos: -48.5,38.5
+ pos: -28.5,19.5
parent: 2
- - uid: 5022
+ - uid: 12203
components:
- type: Transform
- pos: -48.5,39.5
+ pos: -27.5,19.5
parent: 2
- - uid: 5023
+ - uid: 12204
components:
- type: Transform
- pos: -48.5,40.5
+ pos: -26.5,19.5
parent: 2
- - uid: 5024
+ - uid: 12205
components:
- type: Transform
- pos: -48.5,41.5
+ pos: -62.5,-39.5
parent: 2
- - uid: 5025
+ - uid: 12206
components:
- type: Transform
- pos: -47.5,37.5
+ pos: -62.5,-40.5
parent: 2
- - uid: 5026
+ - uid: 12207
components:
- type: Transform
- pos: -47.5,42.5
+ pos: -28.5,20.5
parent: 2
- - uid: 5027
+ - uid: 12208
components:
- type: Transform
- pos: -49.5,41.5
+ pos: -26.5,20.5
parent: 2
- - uid: 5028
+ - uid: 12209
components:
- type: Transform
- pos: -46.5,41.5
+ pos: -28.5,21.5
parent: 2
- - uid: 5029
+ - uid: 12210
components:
- type: Transform
- pos: -47.5,41.5
+ pos: -26.5,21.5
parent: 2
- - uid: 5030
+ - uid: 12211
components:
- type: Transform
- pos: -47.5,37.5
+ pos: -27.5,20.5
parent: 2
- - uid: 5031
+ - uid: 12212
components:
- type: Transform
- pos: -46.5,37.5
+ pos: -27.5,21.5
parent: 2
- - uid: 5032
+ - uid: 12213
components:
- type: Transform
- pos: -60.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 48.5,-25.5
parent: 2
- - uid: 5033
+ - uid: 12214
components:
- type: Transform
- pos: -60.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 47.5,-24.5
parent: 2
- - uid: 5034
+- proto: CarpetPink
+ entities:
+ - uid: 12215
components:
- type: Transform
- pos: -60.5,41.5
+ pos: -58.5,-47.5
parent: 2
- - uid: 5035
+ - uid: 12216
components:
- type: Transform
- pos: -59.5,41.5
+ pos: -69.5,-44.5
parent: 2
- - uid: 5036
+ - uid: 12217
components:
- type: Transform
- pos: -58.5,41.5
+ pos: -68.5,-44.5
parent: 2
- - uid: 5037
+ - uid: 12218
components:
- type: Transform
- pos: -57.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,62.5
parent: 2
- - uid: 5038
+ - uid: 12219
components:
- type: Transform
- pos: -56.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 19.5,62.5
parent: 2
- - uid: 5039
+ - uid: 12220
components:
- type: Transform
- pos: -55.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,62.5
parent: 2
- - uid: 5040
+ - uid: 12221
components:
- type: Transform
- pos: -54.5,41.5
+ pos: -59.5,-47.5
parent: 2
- - uid: 5041
+ - uid: 12222
components:
- type: Transform
- pos: -53.5,41.5
+ pos: -59.5,-48.5
parent: 2
- - uid: 5042
+ - uid: 12223
components:
- type: Transform
- pos: -52.5,41.5
+ pos: -59.5,-49.5
parent: 2
- - uid: 5043
+ - uid: 12224
components:
- type: Transform
- pos: -51.5,41.5
+ pos: -59.5,-50.5
parent: 2
- - uid: 5044
+ - uid: 12225
components:
- type: Transform
- pos: -53.5,42.5
+ pos: -58.5,-48.5
parent: 2
- - uid: 5045
+ - uid: 12226
components:
- type: Transform
- pos: -55.5,42.5
+ pos: -58.5,-49.5
parent: 2
- - uid: 5046
+ - uid: 12227
components:
- type: Transform
- pos: -54.5,40.5
+ pos: -58.5,-50.5
parent: 2
- - uid: 5047
+ - uid: 12228
components:
- type: Transform
- pos: -61.5,40.5
+ pos: -57.5,-47.5
parent: 2
- - uid: 5048
+ - uid: 12229
components:
- type: Transform
- pos: -61.5,41.5
+ pos: -57.5,-48.5
parent: 2
- - uid: 5049
+ - uid: 12230
components:
- type: Transform
- pos: -59.5,40.5
+ pos: -57.5,-49.5
parent: 2
- - uid: 5050
+ - uid: 12231
components:
- type: Transform
- pos: -62.5,52.5
+ pos: -57.5,-50.5
parent: 2
- - uid: 5051
+- proto: CarpetPurple
+ entities:
+ - uid: 12232
components:
- type: Transform
- pos: -62.5,51.5
+ pos: -68.5,-35.5
parent: 2
- - uid: 5052
+ - uid: 12233
components:
- type: Transform
- pos: -62.5,50.5
+ pos: -67.5,-35.5
parent: 2
- - uid: 5053
+ - uid: 12234
components:
- type: Transform
- pos: -62.5,49.5
+ pos: -69.5,-35.5
parent: 2
- - uid: 5054
+- proto: CarpetSBlue
+ entities:
+ - uid: 12235
components:
- type: Transform
- pos: -62.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,0.5
parent: 2
- - uid: 5055
+ - uid: 12236
components:
- type: Transform
- pos: -62.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,1.5
parent: 2
- - uid: 5056
+ - uid: 12237
components:
- type: Transform
- pos: -62.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,3.5
parent: 2
- - uid: 5057
+ - uid: 12238
components:
- type: Transform
- pos: -62.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,1.5
parent: 2
- - uid: 5058
+ - uid: 12239
components:
- type: Transform
- pos: -62.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,2.5
parent: 2
- - uid: 5059
+ - uid: 12240
components:
- type: Transform
- pos: -62.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,1.5
parent: 2
- - uid: 5060
+ - uid: 12241
components:
- type: Transform
- pos: -62.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,2.5
parent: 2
- - uid: 5061
+ - uid: 12242
components:
- type: Transform
- pos: -62.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,0.5
parent: 2
- - uid: 5062
+ - uid: 12243
components:
- type: Transform
- pos: -61.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,3.5
parent: 2
- - uid: 5063
+ - uid: 12244
components:
- type: Transform
- pos: -61.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,1.5
parent: 2
- - uid: 5064
+ - uid: 12245
components:
- type: Transform
- pos: -63.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,2.5
parent: 2
- - uid: 5065
+ - uid: 12246
components:
- type: Transform
- pos: -64.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,2.5
parent: 2
- - uid: 5066
+- proto: Catwalk
+ entities:
+ - uid: 12247
components:
- type: Transform
- pos: -65.5,51.5
+ pos: 47.5,-6.5
parent: 2
- - uid: 5067
+ - uid: 12248
components:
- type: Transform
- pos: -66.5,51.5
+ pos: 41.5,-34.5
parent: 2
- - uid: 5068
+ - uid: 12249
components:
- type: Transform
- pos: -63.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,39.5
parent: 2
- - uid: 5069
+ - uid: 12250
components:
- type: Transform
- pos: -64.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,19.5
parent: 2
- - uid: 5070
+ - uid: 12252
components:
- type: Transform
- pos: -65.5,47.5
+ pos: -62.5,-25.5
parent: 2
- - uid: 5071
+ - uid: 12253
components:
- type: Transform
- pos: -66.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-19.5
parent: 2
- - uid: 5072
+ - uid: 12254
components:
- type: Transform
- pos: -63.5,43.5
+ pos: -41.5,-4.5
parent: 2
- - uid: 5073
+ - uid: 12255
components:
- type: Transform
- pos: -64.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-3.5
parent: 2
- - uid: 5074
+ - uid: 12256
components:
- type: Transform
- pos: -65.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-22.5
parent: 2
- - uid: 5075
+ - uid: 12257
components:
- type: Transform
- pos: -66.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,23.5
parent: 2
- - uid: 5076
+ - uid: 12258
components:
- type: Transform
- pos: -56.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,17.5
parent: 2
- - uid: 5077
+ - uid: 12259
components:
- type: Transform
- pos: -56.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,62.5
parent: 2
- - uid: 5078
+ - uid: 12260
components:
- type: Transform
- pos: -55.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,63.5
parent: 2
- - uid: 5079
+ - uid: 12261
components:
- type: Transform
- pos: -54.5,38.5
+ pos: -59.5,29.5
parent: 2
- - uid: 5080
+ - uid: 12262
components:
- type: Transform
- pos: -54.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,64.5
parent: 2
- - uid: 5081
+ - uid: 12263
components:
- type: Transform
- pos: -54.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,66.5
parent: 2
- - uid: 5082
+ - uid: 12264
components:
- type: Transform
- pos: -54.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-1.5
parent: 2
- - uid: 5083
+ - uid: 12265
components:
- type: Transform
- pos: -54.5,34.5
+ pos: -52.5,27.5
parent: 2
- - uid: 5084
+ - uid: 12266
components:
- type: Transform
- pos: -54.5,33.5
+ pos: -55.5,40.5
parent: 2
- - uid: 5085
+ - uid: 12267
components:
- type: Transform
- pos: -54.5,32.5
+ pos: -59.5,28.5
parent: 2
- - uid: 5086
+ - uid: 12268
components:
- type: Transform
- pos: -53.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,57.5
parent: 2
- - uid: 5087
+ - uid: 12269
components:
- type: Transform
- pos: -52.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,62.5
parent: 2
- - uid: 5088
+ - uid: 12270
components:
- type: Transform
- pos: -55.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-30.5
parent: 2
- - uid: 5089
+ - uid: 12271
components:
- type: Transform
- pos: -56.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,0.5
parent: 2
- - uid: 5090
+ - uid: 12272
components:
- type: Transform
- pos: -52.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,59.5
parent: 2
- - uid: 5091
+ - uid: 12273
components:
- type: Transform
- pos: -52.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,57.5
parent: 2
- - uid: 5092
+ - uid: 12274
components:
- type: Transform
- pos: -51.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,61.5
parent: 2
- - uid: 5093
+ - uid: 12275
components:
- type: Transform
- pos: -50.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,-20.5
parent: 2
- - uid: 5094
+ - uid: 12276
components:
- type: Transform
- pos: -49.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,49.5
parent: 2
- - uid: 5095
+ - uid: 12277
components:
- type: Transform
- pos: -48.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -59.5,61.5
parent: 2
- - uid: 5096
+ - uid: 12278
components:
- type: Transform
- pos: -47.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,60.5
parent: 2
- - uid: 5097
+ - uid: 12279
components:
- type: Transform
- pos: -46.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,64.5
parent: 2
- - uid: 5098
+ - uid: 12280
components:
- type: Transform
- pos: -48.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-20.5
parent: 2
- - uid: 5099
+ - uid: 12281
components:
- type: Transform
- pos: -48.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-20.5
parent: 2
- - uid: 5100
+ - uid: 12282
components:
- type: Transform
- pos: -48.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,55.5
parent: 2
- - uid: 5101
+ - uid: 12283
components:
- type: Transform
- pos: -48.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,44.5
parent: 2
- - uid: 5102
+ - uid: 12284
components:
- type: Transform
- pos: -48.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,66.5
parent: 2
- - uid: 5103
+ - uid: 12285
components:
- type: Transform
- pos: -48.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,47.5
parent: 2
- - uid: 5104
+ - uid: 12286
components:
- type: Transform
- pos: -48.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-3.5
parent: 2
- - uid: 5105
+ - uid: 12287
components:
- type: Transform
- pos: -48.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,10.5
parent: 2
- - uid: 5106
+ - uid: 12288
components:
- type: Transform
- pos: -53.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,48.5
parent: 2
- - uid: 5107
+ - uid: 12289
components:
- type: Transform
- pos: -54.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,57.5
parent: 2
- - uid: 5108
+ - uid: 12290
components:
- type: Transform
- pos: -55.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,-32.5
parent: 2
- - uid: 5109
+ - uid: 12291
components:
- type: Transform
- pos: -56.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-32.5
parent: 2
- - uid: 5110
+ - uid: 12292
components:
- type: Transform
- pos: -57.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-32.5
parent: 2
- - uid: 5111
+ - uid: 12293
components:
- type: Transform
- pos: -58.5,30.5
+ pos: -56.5,29.5
parent: 2
- - uid: 5112
+ - uid: 12294
components:
- type: Transform
- pos: -59.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,23.5
parent: 2
- - uid: 5113
+ - uid: 12295
components:
- type: Transform
- pos: -59.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-25.5
parent: 2
- - uid: 5114
+ - uid: 12296
components:
- type: Transform
- pos: -59.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: -59.5,63.5
parent: 2
- - uid: 5115
+ - uid: 12297
components:
- type: Transform
- pos: -59.5,33.5
+ pos: -59.5,36.5
parent: 2
- - uid: 5116
+ - uid: 12298
components:
- type: Transform
- pos: -59.5,34.5
+ pos: -57.5,29.5
parent: 2
- - uid: 5117
+ - uid: 12299
components:
- type: Transform
- pos: -59.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,59.5
parent: 2
- - uid: 5118
+ - uid: 12300
components:
- type: Transform
- pos: -59.5,36.5
+ pos: 91.5,-2.5
parent: 2
- - uid: 5119
+ - uid: 12301
components:
- type: Transform
- pos: -59.5,37.5
+ pos: 7.5,59.5
parent: 2
- - uid: 5120
+ - uid: 12302
components:
- type: Transform
- pos: -59.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,71.5
parent: 2
- - uid: 5121
+ - uid: 12303
components:
- type: Transform
- pos: -60.5,38.5
+ pos: 93.5,-2.5
parent: 2
- - uid: 5122
+ - uid: 12304
components:
- type: Transform
- pos: -61.5,38.5
+ pos: -47.5,-75.5
parent: 2
- - uid: 5123
+ - uid: 12305
components:
- type: Transform
- pos: -65.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-11.5
parent: 2
- - uid: 5124
+ - uid: 12306
components:
- type: Transform
- pos: -64.5,35.5
+ pos: -47.5,-76.5
parent: 2
- - uid: 5125
+ - uid: 12307
components:
- type: Transform
- pos: -63.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-1.5
parent: 2
- - uid: 5126
+ - uid: 12308
components:
- type: Transform
- pos: -62.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-27.5
parent: 2
- - uid: 5127
+ - uid: 12309
components:
- type: Transform
- pos: -61.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-32.5
parent: 2
- - uid: 5128
+ - uid: 12310
components:
- type: Transform
- pos: -60.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-25.5
parent: 2
- - uid: 5129
+ - uid: 12311
components:
- type: Transform
- pos: -65.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,11.5
parent: 2
- - uid: 5130
+ - uid: 12312
components:
- type: Transform
- pos: -64.5,31.5
+ pos: -58.5,29.5
parent: 2
- - uid: 5131
+ - uid: 12313
components:
- type: Transform
- pos: -63.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-8.5
parent: 2
- - uid: 5132
+ - uid: 12314
components:
- type: Transform
- pos: -62.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,23.5
parent: 2
- - uid: 5133
+ - uid: 12315
components:
- type: Transform
- pos: -61.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-13.5
parent: 2
- - uid: 5134
+ - uid: 12316
components:
- type: Transform
- pos: -60.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-33.5
parent: 2
- - uid: 5135
+ - uid: 12317
components:
- type: Transform
- pos: -54.5,29.5
+ pos: -55.5,26.5
parent: 2
- - uid: 5136
+ - uid: 12318
components:
- type: Transform
- pos: -54.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-32.5
parent: 2
- - uid: 5137
+ - uid: 12319
components:
- type: Transform
- pos: -55.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-32.5
parent: 2
- - uid: 5138
+ - uid: 12320
components:
- type: Transform
- pos: -56.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,31.5
parent: 2
- - uid: 5139
+ - uid: 12321
components:
- type: Transform
- pos: -56.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,39.5
parent: 2
- - uid: 5140
+ - uid: 12322
components:
- type: Transform
- pos: -56.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,32.5
parent: 2
- - uid: 5141
+ - uid: 12323
components:
- type: Transform
- pos: -56.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,57.5
parent: 2
- - uid: 5142
+ - uid: 12324
components:
- type: Transform
- pos: -56.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-30.5
parent: 2
- - uid: 5143
+ - uid: 12325
components:
- type: Transform
- pos: -56.5,24.5
+ pos: -46.5,-76.5
parent: 2
- - uid: 5144
+ - uid: 12326
components:
- type: Transform
- pos: -56.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,57.5
parent: 2
- - uid: 5145
+ - uid: 12327
components:
- type: Transform
- pos: -65.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,31.5
parent: 2
- - uid: 5146
+ - uid: 12328
components:
- type: Transform
- pos: -64.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,32.5
parent: 2
- - uid: 5147
+ - uid: 12329
components:
- type: Transform
- pos: -63.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-16.5
parent: 2
- - uid: 5148
+ - uid: 12330
components:
- type: Transform
- pos: -62.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-3.5
parent: 2
- - uid: 5149
+ - uid: 12331
components:
- type: Transform
- pos: -61.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-17.5
parent: 2
- - uid: 5150
+ - uid: 12332
components:
- type: Transform
- pos: -60.5,26.5
+ pos: -56.5,27.5
parent: 2
- - uid: 5151
+ - uid: 12333
components:
- type: Transform
- pos: -59.5,26.5
+ pos: -57.5,29.5
parent: 2
- - uid: 5152
+ - uid: 12334
components:
- type: Transform
- pos: -58.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,36.5
parent: 2
- - uid: 5153
+ - uid: 12335
components:
- type: Transform
- pos: -57.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,45.5
parent: 2
- - uid: 5154
+ - uid: 12336
components:
- type: Transform
- pos: -51.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,38.5
parent: 2
- - uid: 5155
+ - uid: 12337
components:
- type: Transform
- pos: -51.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-14.5
parent: 2
- - uid: 5156
+ - uid: 12338
components:
- type: Transform
- pos: -51.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-20.5
parent: 2
- - uid: 5157
+ - uid: 12339
components:
- type: Transform
- pos: -52.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-39.5
parent: 2
- - uid: 5158
+ - uid: 12340
components:
- type: Transform
- pos: -53.5,24.5
+ pos: -56.5,26.5
parent: 2
- - uid: 5159
+ - uid: 12341
components:
- type: Transform
- pos: -53.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,63.5
parent: 2
- - uid: 5160
+ - uid: 12342
components:
- type: Transform
- pos: -54.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,31.5
parent: 2
- - uid: 5161
+ - uid: 12343
components:
- type: Transform
- pos: -53.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,31.5
parent: 2
- - uid: 5162
+ - uid: 12344
components:
- type: Transform
- pos: -53.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-26.5
parent: 2
- - uid: 5163
+ - uid: 12345
components:
- type: Transform
- pos: -53.5,21.5
+ pos: -59.5,27.5
parent: 2
- - uid: 5164
+ - uid: 12346
components:
- type: Transform
- pos: -53.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,27.5
parent: 2
- - uid: 5165
+ - uid: 12347
components:
- type: Transform
- pos: -52.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -59.5,64.5
parent: 2
- - uid: 5166
+ - uid: 12348
components:
- type: Transform
- pos: -51.5,21.5
+ pos: -52.5,28.5
parent: 2
- - uid: 5167
+ - uid: 12349
components:
- type: Transform
- pos: -45.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,64.5
parent: 2
- - uid: 5168
+ - uid: 12350
components:
- type: Transform
- pos: -49.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,63.5
parent: 2
- - uid: 5169
+ - uid: 12351
components:
- type: Transform
- pos: -48.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,59.5
parent: 2
- - uid: 5170
+ - uid: 12352
components:
- type: Transform
- pos: -47.5,21.5
+ pos: -45.5,-76.5
parent: 2
- - uid: 5171
+ - uid: 12353
components:
- type: Transform
- pos: -46.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-19.5
parent: 2
- - uid: 5172
+ - uid: 12354
components:
- type: Transform
- pos: -45.5,23.5
+ pos: -45.5,-77.5
parent: 2
- - uid: 5173
+ - uid: 12355
components:
- type: Transform
- pos: -46.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 30.5,59.5
parent: 2
- - uid: 5174
+ - uid: 12356
components:
- type: Transform
- pos: -47.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-1.5
parent: 2
- - uid: 5175
+ - uid: 12357
components:
- type: Transform
- pos: -47.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-19.5
parent: 2
- - uid: 5176
+ - uid: 12358
components:
- type: Transform
- pos: -47.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,57.5
parent: 2
- - uid: 5177
+ - uid: 12359
components:
- type: Transform
- pos: -47.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-19.5
parent: 2
- - uid: 5178
+ - uid: 12360
components:
- type: Transform
- pos: -47.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-20.5
parent: 2
- - uid: 5179
+ - uid: 12361
components:
- type: Transform
- pos: -47.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-11.5
parent: 2
- - uid: 5180
+ - uid: 12362
components:
- type: Transform
- pos: -47.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-24.5
parent: 2
- - uid: 5181
+ - uid: 12363
components:
- type: Transform
- pos: -45.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,56.5
parent: 2
- - uid: 5182
+ - uid: 12364
components:
- type: Transform
- pos: -64.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,23.5
parent: 2
- - uid: 5183
+ - uid: 12365
components:
- type: Transform
- pos: -64.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,29.5
parent: 2
- - uid: 5184
+ - uid: 12366
components:
- type: Transform
- pos: -64.5,23.5
+ pos: -59.5,28.5
parent: 2
- - uid: 5185
+ - uid: 12367
components:
- type: Transform
- pos: -64.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-38.5
parent: 2
- - uid: 5186
+ - uid: 12368
components:
- type: Transform
- pos: -64.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,39.5
parent: 2
- - uid: 5187
+ - uid: 12369
components:
- type: Transform
- pos: -15.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-13.5
parent: 2
- - uid: 5188
+ - uid: 12370
components:
- type: Transform
- pos: -30.5,-74.5
+ pos: -52.5,26.5
parent: 2
- - uid: 5189
+ - uid: 12371
components:
- type: Transform
- pos: -28.5,-74.5
+ pos: -52.5,29.5
parent: 2
- - uid: 5190
+ - uid: 12372
components:
- type: Transform
- pos: -28.5,-72.5
+ pos: -54.5,26.5
parent: 2
- - uid: 5191
+ - uid: 12373
components:
- type: Transform
- pos: -28.5,-73.5
+ pos: -56.5,28.5
parent: 2
- - uid: 5192
+ - uid: 12374
components:
- type: Transform
- pos: -28.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-20.5
parent: 2
- - uid: 5193
+ - uid: 12375
components:
- type: Transform
- pos: -28.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,41.5
parent: 2
- - uid: 5194
+ - uid: 12376
components:
- type: Transform
- pos: -28.5,-78.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,32.5
parent: 2
- - uid: 5195
+ - uid: 12377
components:
- type: Transform
- pos: -28.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,47.5
parent: 2
- - uid: 5196
+ - uid: 12378
components:
- type: Transform
- pos: -29.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,61.5
parent: 2
- - uid: 5197
+ - uid: 12379
components:
- type: Transform
- pos: -30.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,43.5
parent: 2
- - uid: 5198
+ - uid: 12380
components:
- type: Transform
- pos: -31.5,-79.5
+ pos: -91.5,-13.5
parent: 2
- - uid: 5199
+ - uid: 12381
components:
- type: Transform
- pos: -31.5,-74.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,31.5
parent: 2
- - uid: 5200
+ - uid: 12382
components:
- type: Transform
- pos: -32.5,-74.5
+ pos: -15.5,-61.5
parent: 2
- - uid: 5201
+ - uid: 12383
components:
- type: Transform
- pos: -33.5,-74.5
+ pos: -44.5,-77.5
parent: 2
- - uid: 5202
+ - uid: 12384
components:
- type: Transform
- pos: -34.5,-74.5
+ pos: -54.5,30.5
parent: 2
- - uid: 5203
+ - uid: 12385
components:
- type: Transform
- pos: -35.5,-74.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,31.5
parent: 2
- - uid: 5204
+ - uid: 12386
components:
- type: Transform
- pos: -36.5,-74.5
+ pos: -90.5,-13.5
parent: 2
- - uid: 5205
+ - uid: 12387
components:
- type: Transform
- pos: -28.5,-75.5
+ pos: -43.5,-77.5
parent: 2
- - uid: 5206
+ - uid: 12388
components:
- type: Transform
- pos: -28.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,31.5
parent: 2
- - uid: 5207
+ - uid: 12389
components:
- type: Transform
- pos: -28.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-41.5
parent: 2
- - uid: 5208
+ - uid: 12390
components:
- type: Transform
- pos: -29.5,-70.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,31.5
parent: 2
- - uid: 5209
+ - uid: 12391
components:
- type: Transform
- pos: -30.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-19.5
parent: 2
- - uid: 5210
+ - uid: 12392
components:
- type: Transform
- pos: -31.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-30.5
parent: 2
- - uid: 5211
+ - uid: 12393
components:
- type: Transform
- pos: -32.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,39.5
parent: 2
- - uid: 5212
+ - uid: 12394
components:
- type: Transform
- pos: -33.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-30.5
parent: 2
- - uid: 5213
+ - uid: 12395
components:
- type: Transform
- pos: -34.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-11.5
parent: 2
- - uid: 5214
+ - uid: 12396
components:
- type: Transform
- pos: -35.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-30.5
parent: 2
- - uid: 5215
+ - uid: 12397
components:
- type: Transform
- pos: -36.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,14.5
parent: 2
- - uid: 5216
+ - uid: 12398
components:
- type: Transform
- pos: -37.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-5.5
parent: 2
- - uid: 5217
+ - uid: 12399
components:
- type: Transform
- pos: -38.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,54.5
parent: 2
- - uid: 5218
+ - uid: 12400
components:
- type: Transform
- pos: -38.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-20.5
parent: 2
- - uid: 5219
+ - uid: 12401
components:
- type: Transform
- pos: -38.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-21.5
parent: 2
- - uid: 5220
+ - uid: 12402
components:
- type: Transform
- pos: -38.5,-73.5
+ pos: -53.5,26.5
parent: 2
- - uid: 5221
+ - uid: 12403
components:
- type: Transform
- pos: -38.5,-74.5
+ pos: -42.5,-77.5
parent: 2
- - uid: 5222
+ - uid: 12404
components:
- type: Transform
- pos: -38.5,-75.5
+ pos: -41.5,-77.5
parent: 2
- - uid: 5223
+ - uid: 12405
components:
- type: Transform
- pos: -39.5,-74.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,56.5
parent: 2
- - uid: 5224
+ - uid: 12406
components:
- type: Transform
- pos: -40.5,-74.5
+ pos: -41.5,-78.5
parent: 2
- - uid: 5225
+ - uid: 12407
components:
- type: Transform
- pos: -41.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-19.5
parent: 2
- - uid: 5226
+ - uid: 12408
components:
- type: Transform
- pos: -42.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-19.5
parent: 2
- - uid: 5227
+ - uid: 12409
components:
- type: Transform
- pos: -38.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,70.5
parent: 2
- - uid: 5228
+ - uid: 12410
components:
- type: Transform
- pos: -27.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,26.5
parent: 2
- - uid: 5229
+ - uid: 12411
components:
- type: Transform
- pos: -26.5,-70.5
+ pos: -59.5,34.5
parent: 2
- - uid: 5230
+ - uid: 12412
components:
- type: Transform
- pos: -26.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,43.5
parent: 2
- - uid: 5231
+ - uid: 12413
components:
- type: Transform
- pos: -25.5,-71.5
+ pos: -58.5,26.5
parent: 2
- - uid: 5232
+ - uid: 12414
components:
- type: Transform
- pos: -25.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,17.5
parent: 2
- - uid: 5233
+ - uid: 12415
components:
- type: Transform
- pos: -25.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,52.5
parent: 2
- - uid: 5234
+ - uid: 12416
components:
- type: Transform
- pos: -25.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-32.5
parent: 2
- - uid: 5235
+ - uid: 12417
components:
- type: Transform
- pos: -25.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-19.5
parent: 2
- - uid: 5236
+ - uid: 12418
components:
- type: Transform
- pos: -25.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,57.5
parent: 2
- - uid: 5237
+ - uid: 12419
components:
- type: Transform
- pos: -25.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,64.5
parent: 2
- - uid: 5238
+ - uid: 12420
components:
- type: Transform
- pos: -26.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,64.5
parent: 2
- - uid: 5239
+ - uid: 12421
components:
- type: Transform
- pos: -26.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,-21.5
parent: 2
- - uid: 5240
+ - uid: 12422
components:
- type: Transform
- pos: -26.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-9.5
parent: 2
- - uid: 5241
+ - uid: 12423
components:
- type: Transform
- pos: -26.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-32.5
parent: 2
- - uid: 5242
+ - uid: 12424
components:
- type: Transform
- pos: -26.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-7.5
parent: 2
- - uid: 5243
+ - uid: 12425
components:
- type: Transform
- pos: -26.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-1.5
parent: 2
- - uid: 5244
+ - uid: 12426
components:
- type: Transform
- pos: -26.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-19.5
parent: 2
- - uid: 5245
+ - uid: 12427
components:
- type: Transform
- pos: -18.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,37.5
parent: 2
- - uid: 5246
+ - uid: 12428
components:
- type: Transform
- pos: -18.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-19.5
parent: 2
- - uid: 5247
+ - uid: 12429
components:
- type: Transform
- pos: -17.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-19.5
parent: 2
- - uid: 5248
+ - uid: 12430
components:
- type: Transform
- pos: -16.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,17.5
parent: 2
- - uid: 5249
+ - uid: 12431
components:
- type: Transform
- pos: -15.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,53.5
parent: 2
- - uid: 5250
+ - uid: 12432
components:
- type: Transform
- pos: -14.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,56.5
parent: 2
- - uid: 5251
+ - uid: 12433
components:
- type: Transform
- pos: -13.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,47.5
parent: 2
- - uid: 5252
+ - uid: 12434
components:
- type: Transform
- pos: -12.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,72.5
parent: 2
- - uid: 5253
+ - uid: 12435
components:
- type: Transform
- pos: -11.5,-61.5
+ pos: -41.5,-79.5
parent: 2
- - uid: 5254
+ - uid: 12436
components:
- type: Transform
- pos: -10.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,21.5
parent: 2
- - uid: 5255
+ - uid: 12437
components:
- type: Transform
- pos: -9.5,-61.5
+ pos: -24.5,25.5
parent: 2
- - uid: 5256
+ - uid: 12438
components:
- type: Transform
- pos: -9.5,-60.5
+ pos: -52.5,25.5
parent: 2
- - uid: 5257
+ - uid: 12439
components:
- type: Transform
- pos: -9.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,46.5
parent: 2
- - uid: 5258
+ - uid: 12440
components:
- type: Transform
- pos: -9.5,-58.5
+ pos: -59.5,26.5
parent: 2
- - uid: 5259
+ - uid: 12441
components:
- type: Transform
- pos: -9.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-28.5
parent: 2
- - uid: 5260
+ - uid: 12442
components:
- type: Transform
- pos: -9.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-46.5
parent: 2
- - uid: 5261
+ - uid: 12443
components:
- type: Transform
- pos: -9.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-50.5
parent: 2
- - uid: 5262
+ - uid: 12444
components:
- type: Transform
- pos: -8.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-28.5
parent: 2
- - uid: 5263
+ - uid: 12445
components:
- type: Transform
- pos: -7.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-30.5
parent: 2
- - uid: 5264
+ - uid: 12446
components:
- type: Transform
- pos: -6.5,-55.5
+ pos: -38.5,-80.5
parent: 2
- - uid: 5265
+ - uid: 12447
components:
- type: Transform
- pos: -5.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,56.5
parent: 2
- - uid: 5266
+ - uid: 12448
components:
- type: Transform
- pos: -4.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,56.5
parent: 2
- - uid: 5267
+ - uid: 12449
components:
- type: Transform
- pos: -5.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,44.5
parent: 2
- - uid: 5268
+ - uid: 12450
components:
- type: Transform
- pos: -20.5,-61.5
+ pos: -36.5,-81.5
parent: 2
- - uid: 5269
+ - uid: 12451
components:
- type: Transform
- pos: -19.5,-61.5
+ pos: -35.5,-81.5
parent: 2
- - uid: 5270
+ - uid: 12452
components:
- type: Transform
- pos: -21.5,-61.5
+ pos: -34.5,-81.5
parent: 2
- - uid: 5271
+ - uid: 12453
components:
- type: Transform
- pos: -22.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-19.5
parent: 2
- - uid: 5272
+ - uid: 12454
components:
- type: Transform
- pos: -23.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-19.5
parent: 2
- - uid: 5273
+ - uid: 12455
components:
- type: Transform
- pos: -24.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,62.5
parent: 2
- - uid: 5274
+ - uid: 12456
components:
- type: Transform
- pos: -25.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,31.5
parent: 2
- - uid: 5275
+ - uid: 12457
components:
- type: Transform
- pos: -26.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-30.5
parent: 2
- - uid: 5276
+ - uid: 12458
components:
- type: Transform
- pos: -27.5,-61.5
+ pos: 92.5,-2.5
parent: 2
- - uid: 5277
+ - uid: 12459
components:
- type: Transform
- pos: -27.5,-60.5
+ pos: 90.5,-2.5
parent: 2
- - uid: 5278
+ - uid: 12460
components:
- type: Transform
- pos: -27.5,-59.5
+ pos: -33.5,-81.5
parent: 2
- - uid: 5279
+ - uid: 12461
components:
- type: Transform
- pos: -27.5,-58.5
+ pos: 55.5,-46.5
parent: 2
- - uid: 5280
+ - uid: 12462
components:
- type: Transform
- pos: -27.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,56.5
parent: 2
- - uid: 5281
+ - uid: 12463
components:
- type: Transform
- pos: -28.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,56.5
parent: 2
- - uid: 5282
+ - uid: 12464
components:
- type: Transform
- pos: -29.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-20.5
parent: 2
- - uid: 5283
+ - uid: 12465
components:
- type: Transform
- pos: -30.5,-57.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,57.5
parent: 2
- - uid: 5284
+ - uid: 12466
components:
- type: Transform
- pos: -31.5,-57.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,56.5
parent: 2
- - uid: 5285
+ - uid: 12467
components:
- type: Transform
- pos: -32.5,-57.5
+ pos: -32.5,-81.5
parent: 2
- - uid: 5286
+ - uid: 12468
components:
- type: Transform
- pos: -33.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-4.5
parent: 2
- - uid: 5287
+ - uid: 12469
components:
- type: Transform
- pos: -34.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-23.5
parent: 2
- - uid: 5288
+ - uid: 12470
components:
- type: Transform
- pos: -35.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,23.5
parent: 2
- - uid: 5289
+ - uid: 12471
components:
- type: Transform
- pos: -36.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-21.5
parent: 2
- - uid: 5290
+ - uid: 12472
components:
- type: Transform
- pos: -36.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,63.5
parent: 2
- - uid: 5291
+ - uid: 12473
components:
- type: Transform
- pos: -37.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-22.5
parent: 2
- - uid: 5292
+ - uid: 12474
components:
- type: Transform
- pos: -38.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,47.5
parent: 2
- - uid: 5293
+ - uid: 12475
components:
- type: Transform
- pos: -39.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,57.5
parent: 2
- - uid: 5294
+ - uid: 12476
components:
- type: Transform
- pos: -40.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,64.5
parent: 2
- - uid: 5295
+ - uid: 12477
components:
- type: Transform
- pos: -41.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-21.5
parent: 2
- - uid: 5296
+ - uid: 12478
components:
- type: Transform
- pos: -33.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-20.5
parent: 2
- - uid: 5297
+ - uid: 12479
components:
- type: Transform
- pos: -33.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,61.5
parent: 2
- - uid: 5298
+ - uid: 12480
components:
- type: Transform
- pos: -36.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,47.5
parent: 2
- - uid: 5299
+ - uid: 12481
components:
- type: Transform
- pos: -36.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,31.5
parent: 2
- - uid: 5300
+ - uid: 12482
components:
- type: Transform
- pos: -36.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,54.5
parent: 2
- - uid: 5301
+ - uid: 12483
components:
- type: Transform
- pos: -36.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,15.5
parent: 2
- - uid: 5302
+ - uid: 12484
components:
- type: Transform
- pos: -37.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-30.5
parent: 2
- - uid: 5303
+ - uid: 12485
components:
- type: Transform
- pos: -38.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-19.5
parent: 2
- - uid: 5304
+ - uid: 12486
components:
- type: Transform
- pos: -39.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-19.5
parent: 2
- - uid: 5305
+ - uid: 12487
components:
- type: Transform
- pos: -40.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,69.5
parent: 2
- - uid: 5306
+ - uid: 12488
components:
- type: Transform
- pos: -40.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,26.5
parent: 2
- - uid: 5307
+ - uid: 12489
components:
- type: Transform
- pos: -40.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,45.5
parent: 2
- - uid: 5308
+ - uid: 12490
components:
- type: Transform
- pos: -40.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-38.5
parent: 2
- - uid: 5309
+ - uid: 12491
components:
- type: Transform
- pos: -28.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,30.5
parent: 2
- - uid: 5310
+ - uid: 12492
components:
- type: Transform
- pos: -28.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,58.5
parent: 2
- - uid: 5311
+ - uid: 12493
components:
- type: Transform
- pos: -28.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,31.5
parent: 2
- - uid: 5312
+ - uid: 12494
components:
- type: Transform
- pos: -28.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,58.5
parent: 2
- - uid: 5313
+ - uid: 12495
components:
- type: Transform
- pos: -28.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-38.5
parent: 2
- - uid: 5314
+ - uid: 12496
components:
- type: Transform
- pos: -29.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,51.5
parent: 2
- - uid: 5315
+ - uid: 12497
components:
- type: Transform
- pos: -30.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,47.5
parent: 2
- - uid: 5316
+ - uid: 12498
components:
- type: Transform
- pos: -27.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,29.5
parent: 2
- - uid: 5317
+ - uid: 12499
components:
- type: Transform
- pos: -26.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,25.5
parent: 2
- - uid: 5318
+ - uid: 12500
components:
- type: Transform
- pos: -25.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,23.5
parent: 2
- - uid: 5319
+ - uid: 12501
components:
- type: Transform
- pos: -24.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,55.5
parent: 2
- - uid: 5320
+ - uid: 12502
components:
- type: Transform
- pos: -23.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-46.5
parent: 2
- - uid: 5321
+ - uid: 12503
components:
- type: Transform
- pos: -22.5,-52.5
+ pos: -31.5,-81.5
parent: 2
- - uid: 5322
+ - uid: 12504
components:
- type: Transform
- pos: -23.5,-51.5
+ pos: -30.5,-81.5
parent: 2
- - uid: 5323
+ - uid: 12505
components:
- type: Transform
- pos: -23.5,-50.5
+ pos: -28.5,-81.5
parent: 2
- - uid: 5324
+ - uid: 12506
components:
- type: Transform
- pos: -23.5,-49.5
+ pos: -55.5,-40.5
parent: 2
- - uid: 5325
+ - uid: 12507
components:
- type: Transform
- pos: -3.5,-44.5
+ pos: -27.5,-81.5
parent: 2
- - uid: 5326
+ - uid: 12508
components:
- type: Transform
- pos: -3.5,-45.5
+ pos: 7.5,60.5
parent: 2
- - uid: 5327
+ - uid: 12509
components:
- type: Transform
- pos: -4.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-46.5
parent: 2
- - uid: 5328
+ - uid: 12510
components:
- type: Transform
- pos: -5.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-27.5
parent: 2
- - uid: 5329
+ - uid: 12511
components:
- type: Transform
- pos: -5.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-51.5
parent: 2
- - uid: 5330
+ - uid: 12512
components:
- type: Transform
- pos: -5.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,50.5
parent: 2
- - uid: 5331
+ - uid: 12513
components:
- type: Transform
- pos: -5.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,16.5
parent: 2
- - uid: 5332
+ - uid: 12514
components:
- type: Transform
- pos: -5.5,-49.5
+ pos: -38.5,-81.5
parent: 2
- - uid: 5333
+ - uid: 12515
components:
- type: Transform
- pos: -5.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-19.5
parent: 2
- - uid: 5334
+ - uid: 12516
components:
- type: Transform
- pos: -5.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-18.5
parent: 2
- - uid: 5335
+ - uid: 12517
components:
- type: Transform
- pos: -5.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-1.5
parent: 2
- - uid: 5336
+ - uid: 12518
components:
- type: Transform
- pos: -6.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-31.5
parent: 2
- - uid: 5337
+ - uid: 12519
components:
- type: Transform
- pos: -7.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-30.5
parent: 2
- - uid: 5338
+ - uid: 12520
components:
- type: Transform
- pos: -8.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,57.5
parent: 2
- - uid: 5339
+ - uid: 12521
components:
- type: Transform
- pos: -9.5,-49.5
+ pos: -21.5,-83.5
parent: 2
- - uid: 5340
+ - uid: 12522
components:
- type: Transform
- pos: -10.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,46.5
parent: 2
- - uid: 5341
+ - uid: 12523
components:
- type: Transform
- pos: -4.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,42.5
parent: 2
- - uid: 5342
+ - uid: 12524
components:
- type: Transform
- pos: -3.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-26.5
parent: 2
- - uid: 5343
+ - uid: 12525
components:
- type: Transform
- pos: -10.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-61.5
parent: 2
- - uid: 5344
+ - uid: 12526
components:
- type: Transform
- pos: -10.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,29.5
parent: 2
- - uid: 5345
+ - uid: 12527
components:
- type: Transform
- pos: -10.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,17.5
parent: 2
- - uid: 5346
+ - uid: 12528
components:
- type: Transform
- pos: -10.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,23.5
parent: 2
- - uid: 5347
+ - uid: 12529
components:
- type: Transform
- pos: -10.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-22.5
parent: 2
- - uid: 5348
+ - uid: 12530
components:
- type: Transform
- pos: -9.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,30.5
parent: 2
- - uid: 5349
+ - uid: 12531
components:
- type: Transform
- pos: -8.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,57.5
parent: 2
- - uid: 5350
+ - uid: 12532
components:
- type: Transform
- pos: -7.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-12.5
parent: 2
- - uid: 5351
+ - uid: 12533
components:
- type: Transform
- pos: -6.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-30.5
parent: 2
- - uid: 5352
+ - uid: 12534
components:
- type: Transform
- pos: -5.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,65.5
parent: 2
- - uid: 5353
+ - uid: 12535
components:
- type: Transform
- pos: -4.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,64.5
parent: 2
- - uid: 5354
+ - uid: 12536
components:
- type: Transform
- pos: -3.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,65.5
parent: 2
- - uid: 5355
+ - uid: 12537
components:
- type: Transform
- pos: -6.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,57.5
parent: 2
- - uid: 5356
+ - uid: 12538
components:
- type: Transform
- pos: -6.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-21.5
parent: 2
- - uid: 5357
+ - uid: 12539
components:
- type: Transform
- pos: -6.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-28.5
parent: 2
- - uid: 5358
+ - uid: 12540
components:
- type: Transform
- pos: -6.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-21.5
parent: 2
- - uid: 5359
+ - uid: 12541
components:
- type: Transform
- pos: -6.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-40.5
parent: 2
- - uid: 5360
+ - uid: 12542
components:
- type: Transform
- pos: -6.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-15.5
parent: 2
- - uid: 5361
+ - uid: 12543
components:
- type: Transform
- pos: -5.5,-43.5
+ pos: -24.5,-83.5
parent: 2
- - uid: 5362
+ - uid: 12544
components:
- type: Transform
- pos: -9.5,-43.5
+ pos: -23.5,-83.5
parent: 2
- - uid: 5363
+ - uid: 12545
components:
- type: Transform
- pos: -8.5,-43.5
+ pos: -22.5,-83.5
parent: 2
- - uid: 5364
+ - uid: 12546
components:
- type: Transform
- pos: -7.5,-43.5
+ pos: -89.5,-13.5
parent: 2
- - uid: 5365
+ - uid: 12547
components:
- type: Transform
- pos: -9.5,-28.5
+ pos: -20.5,-83.5
parent: 2
- - uid: 5366
+ - uid: 12548
components:
- type: Transform
- pos: -9.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-19.5
parent: 2
- - uid: 5367
+ - uid: 12549
components:
- type: Transform
- pos: -8.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,-21.5
parent: 2
- - uid: 5368
+ - uid: 12550
components:
- type: Transform
- pos: -7.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-0.5
parent: 2
- - uid: 5369
+ - uid: 12551
components:
- type: Transform
- pos: -6.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,31.5
parent: 2
- - uid: 5370
+ - uid: 12552
components:
- type: Transform
- pos: -6.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,32.5
parent: 2
- - uid: 5371
+ - uid: 12553
components:
- type: Transform
- pos: -6.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,56.5
parent: 2
- - uid: 5372
+ - uid: 12554
components:
- type: Transform
- pos: -6.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-19.5
parent: 2
- - uid: 5373
+ - uid: 12555
components:
- type: Transform
- pos: -6.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,12.5
parent: 2
- - uid: 5374
+ - uid: 12556
components:
- type: Transform
- pos: -6.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,45.5
parent: 2
- - uid: 5375
+ - uid: 12557
components:
- type: Transform
- pos: -6.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,60.5
parent: 2
- - uid: 5376
+ - uid: 12558
components:
- type: Transform
- pos: -9.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-2.5
parent: 2
- - uid: 5377
+ - uid: 12559
components:
- type: Transform
- pos: -8.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-39.5
parent: 2
- - uid: 5378
+ - uid: 12560
components:
- type: Transform
- pos: -7.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-42.5
parent: 2
- - uid: 5379
+ - uid: 12561
components:
- type: Transform
- pos: -6.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-43.5
parent: 2
- - uid: 5380
+ - uid: 12562
components:
- type: Transform
- pos: -5.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-19.5
parent: 2
- - uid: 5381
+ - uid: 12563
components:
- type: Transform
- pos: -4.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-40.5
parent: 2
- - uid: 5382
+ - uid: 12564
components:
- type: Transform
- pos: -5.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,30.5
parent: 2
- - uid: 5383
+ - uid: 12565
components:
- type: Transform
- pos: -4.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-20.5
parent: 2
- - uid: 5384
+ - uid: 12566
components:
- type: Transform
- pos: -3.5,-30.5
+ pos: -59.5,35.5
parent: 2
- - uid: 5385
+ - uid: 12567
components:
- type: Transform
- pos: -25.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-19.5
parent: 2
- - uid: 5386
+ - uid: 12568
components:
- type: Transform
- pos: -25.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-20.5
parent: 2
- - uid: 5387
+ - uid: 12569
components:
- type: Transform
- pos: -25.5,-34.5
+ pos: -19.5,-83.5
parent: 2
- - uid: 5388
+ - uid: 12570
components:
- type: Transform
- pos: -26.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-19.5
parent: 2
- - uid: 5389
+ - uid: 12571
components:
- type: Transform
- pos: -27.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,55.5
parent: 2
- - uid: 5390
+ - uid: 12572
components:
- type: Transform
- pos: -28.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,64.5
parent: 2
- - uid: 5391
+ - uid: 12573
components:
- type: Transform
- pos: -29.5,-34.5
+ pos: -18.5,-83.5
parent: 2
- - uid: 5392
+ - uid: 12574
components:
- type: Transform
- pos: -30.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,49.5
parent: 2
- - uid: 5393
+ - uid: 12575
components:
- type: Transform
- pos: -24.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,51.5
parent: 2
- - uid: 5394
+ - uid: 12576
components:
- type: Transform
- pos: -23.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,37.5
parent: 2
- - uid: 5395
+ - uid: 12577
components:
- type: Transform
- pos: -22.5,-34.5
+ pos: -17.5,-83.5
parent: 2
- - uid: 5396
+ - uid: 12578
components:
- type: Transform
- pos: -21.5,-34.5
+ pos: -75.5,80.5
parent: 2
- - uid: 5397
+ - uid: 12579
components:
- type: Transform
- pos: -20.5,-34.5
+ pos: -16.5,-83.5
parent: 2
- - uid: 5398
+ - uid: 12580
components:
- type: Transform
- pos: -19.5,-34.5
+ pos: -15.5,-84.5
parent: 2
- - uid: 5399
+ - uid: 12581
components:
- type: Transform
- pos: -18.5,-34.5
+ pos: -14.5,-84.5
parent: 2
- - uid: 5400
+ - uid: 12582
components:
- type: Transform
- pos: -17.5,-34.5
+ pos: -13.5,-84.5
parent: 2
- - uid: 5401
+ - uid: 12583
components:
- type: Transform
- pos: -16.5,-34.5
+ pos: -12.5,-84.5
parent: 2
- - uid: 5402
+ - uid: 12584
components:
- type: Transform
- pos: -15.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,29.5
parent: 2
- - uid: 5403
+ - uid: 12585
components:
- type: Transform
- pos: -14.5,-34.5
+ pos: -80.5,69.5
parent: 2
- - uid: 5404
+ - uid: 12586
components:
- type: Transform
- pos: -13.5,-34.5
+ pos: -51.5,-62.5
parent: 2
- - uid: 5405
+ - uid: 12587
components:
- type: Transform
- pos: -12.5,-34.5
+ pos: -68.5,20.5
parent: 2
- - uid: 5406
+ - uid: 12588
components:
- type: Transform
- pos: -11.5,-34.5
+ pos: -75.5,78.5
parent: 2
- - uid: 5407
+ - uid: 12589
components:
- type: Transform
- pos: -14.5,-33.5
+ pos: 32.5,91.5
parent: 2
- - uid: 5408
+ - uid: 12590
components:
- type: Transform
- pos: -14.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-19.5
parent: 2
- - uid: 5409
+ - uid: 12591
components:
- type: Transform
- pos: -14.5,-31.5
+ pos: -51.5,-81.5
parent: 2
- - uid: 5410
+ - uid: 12592
components:
- type: Transform
- pos: -13.5,-31.5
+ pos: -75.5,66.5
parent: 2
- - uid: 5411
+ - uid: 12593
components:
- type: Transform
- pos: -13.5,-30.5
+ pos: -75.5,79.5
parent: 2
- - uid: 5412
+ - uid: 12594
components:
- type: Transform
- pos: -13.5,-29.5
+ pos: -60.5,-54.5
parent: 2
- - uid: 5413
+ - uid: 12595
components:
- type: Transform
- pos: -12.5,-31.5
+ pos: -54.5,-52.5
parent: 2
- - uid: 5414
+ - uid: 12596
components:
- type: Transform
- pos: -12.5,-32.5
+ pos: -76.5,77.5
parent: 2
- - uid: 5415
+ - uid: 12597
components:
- type: Transform
- pos: -12.5,-33.5
+ pos: -45.5,-85.5
parent: 2
- - uid: 5416
+ - uid: 12598
components:
- type: Transform
- pos: -12.5,-34.5
+ pos: -43.5,-57.5
parent: 2
- - uid: 5417
+ - uid: 12599
components:
- type: Transform
- pos: -22.5,-33.5
+ pos: 67.5,-51.5
parent: 2
- - uid: 5418
+ - uid: 12600
components:
- type: Transform
- pos: -22.5,-32.5
+ pos: 69.5,-51.5
parent: 2
- - uid: 5419
+ - uid: 12601
components:
- type: Transform
- pos: -22.5,-31.5
+ pos: -79.5,77.5
parent: 2
- - uid: 5420
+ - uid: 12602
components:
- type: Transform
- pos: -22.5,-30.5
+ pos: 68.5,-51.5
parent: 2
- - uid: 5421
+ - uid: 12603
components:
- type: Transform
- pos: -22.5,-29.5
+ pos: -88.5,13.5
parent: 2
- - uid: 5422
+ - uid: 12604
components:
- type: Transform
- pos: -22.5,-28.5
+ pos: -43.5,-54.5
parent: 2
- - uid: 5423
+ - uid: 12605
components:
- type: Transform
- pos: -22.5,-27.5
+ pos: -53.5,-52.5
parent: 2
- - uid: 5424
+ - uid: 12606
components:
- type: Transform
- pos: -22.5,-26.5
+ pos: 30.5,21.5
parent: 2
- - uid: 5425
+ - uid: 12607
components:
- type: Transform
- pos: -22.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-3.5
parent: 2
- - uid: 5426
+ - uid: 12608
components:
- type: Transform
- pos: -22.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-3.5
parent: 2
- - uid: 5427
+ - uid: 12609
components:
- type: Transform
- pos: -22.5,-23.5
+ pos: 30.5,19.5
parent: 2
- - uid: 5428
+ - uid: 12610
components:
- type: Transform
- pos: -21.5,-25.5
+ pos: 35.5,95.5
parent: 2
- - uid: 5429
+ - uid: 12611
components:
- type: Transform
- pos: -17.5,-22.5
+ pos: -74.5,69.5
parent: 2
- - uid: 5430
+ - uid: 12612
components:
- type: Transform
- pos: -17.5,-23.5
+ pos: 22.5,87.5
parent: 2
- - uid: 5431
+ - uid: 12613
components:
- type: Transform
- pos: -18.5,-23.5
+ pos: 27.5,87.5
parent: 2
- - uid: 5432
+ - uid: 12614
components:
- type: Transform
- pos: -18.5,-24.5
+ pos: 26.5,87.5
parent: 2
- - uid: 5433
+ - uid: 12615
components:
- type: Transform
- pos: -18.5,-25.5
+ pos: -59.5,66.5
parent: 2
- - uid: 5434
+ - uid: 12616
components:
- type: Transform
- pos: -18.5,-26.5
+ pos: 23.5,87.5
parent: 2
- - uid: 5435
+ - uid: 12617
components:
- type: Transform
- pos: -18.5,-27.5
+ pos: -72.5,77.5
parent: 2
- - uid: 5436
+ - uid: 12618
components:
- type: Transform
- pos: -19.5,-25.5
+ pos: -70.5,69.5
parent: 2
- - uid: 5437
+ - uid: 12619
components:
- type: Transform
- pos: -13.5,-35.5
+ pos: -69.5,69.5
parent: 2
- - uid: 5438
+ - uid: 12620
components:
- type: Transform
- pos: -13.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-8.5
parent: 2
- - uid: 5439
+ - uid: 12621
components:
- type: Transform
- pos: -13.5,-37.5
+ pos: -43.5,42.5
parent: 2
- - uid: 5440
+ - uid: 12622
components:
- type: Transform
- pos: -13.5,-38.5
+ pos: -85.5,14.5
parent: 2
- - uid: 5441
+ - uid: 12623
components:
- type: Transform
- pos: -13.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-7.5
parent: 2
- - uid: 5442
+ - uid: 12624
components:
- type: Transform
- pos: -13.5,-40.5
+ pos: 34.5,91.5
parent: 2
- - uid: 5443
+ - uid: 12625
components:
- type: Transform
- pos: -13.5,-41.5
+ pos: -63.5,66.5
parent: 2
- - uid: 5444
+ - uid: 12626
components:
- type: Transform
- pos: -13.5,-42.5
+ pos: -54.5,-81.5
parent: 2
- - uid: 5445
+ - uid: 12627
components:
- type: Transform
- pos: -13.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-3.5
parent: 2
- - uid: 5446
+ - uid: 12628
components:
- type: Transform
- pos: -13.5,-44.5
+ pos: -55.5,-81.5
parent: 2
- - uid: 5447
+ - uid: 12629
components:
- type: Transform
- pos: -13.5,-45.5
+ pos: -62.5,66.5
parent: 2
- - uid: 5448
+ - uid: 12630
components:
- type: Transform
- pos: -13.5,-46.5
+ pos: -60.5,66.5
parent: 2
- - uid: 5449
+ - uid: 12631
components:
- type: Transform
- pos: -13.5,-47.5
+ pos: -75.5,82.5
parent: 2
- - uid: 5450
+ - uid: 12632
components:
- type: Transform
- pos: -13.5,-48.5
+ pos: -75.5,81.5
parent: 2
- - uid: 5451
+ - uid: 12633
components:
- type: Transform
- pos: -13.5,-49.5
+ pos: -43.5,60.5
parent: 2
- - uid: 5452
+ - uid: 12634
components:
- type: Transform
- pos: -13.5,-50.5
+ pos: -55.5,41.5
parent: 2
- - uid: 5453
+ - uid: 12635
components:
- type: Transform
- pos: -13.5,-51.5
+ pos: -12.5,-83.5
parent: 2
- - uid: 5454
+ - uid: 12636
components:
- type: Transform
- pos: -13.5,-52.5
+ pos: 28.5,97.5
parent: 2
- - uid: 5455
+ - uid: 12637
components:
- type: Transform
- pos: -13.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,37.5
parent: 2
- - uid: 5456
+ - uid: 12638
components:
- type: Transform
- pos: -14.5,-50.5
+ pos: -11.5,-83.5
parent: 2
- - uid: 5457
+ - uid: 12639
components:
- type: Transform
- pos: -15.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,52.5
parent: 2
- - uid: 5458
+ - uid: 12640
components:
- type: Transform
- pos: -15.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,50.5
parent: 2
- - uid: 5459
+ - uid: 12641
components:
- type: Transform
- pos: -19.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-63.5
parent: 2
- - uid: 5460
+ - uid: 12642
components:
- type: Transform
- pos: -19.5,-55.5
+ pos: -57.5,26.5
parent: 2
- - uid: 5461
+ - uid: 12643
components:
- type: Transform
- pos: -19.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-55.5
parent: 2
- - uid: 5462
+ - uid: 12644
components:
- type: Transform
- pos: -19.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-59.5
parent: 2
- - uid: 5463
+ - uid: 12645
components:
- type: Transform
- pos: -19.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-66.5
parent: 2
- - uid: 5464
+ - uid: 12646
components:
- type: Transform
- pos: -20.5,-57.5
+ pos: -88.5,-13.5
parent: 2
- - uid: 5465
+ - uid: 12647
components:
- type: Transform
- pos: -21.5,-57.5
+ pos: -56.5,41.5
parent: 2
- - uid: 5466
+ - uid: 12648
components:
- type: Transform
- pos: -22.5,-57.5
+ pos: -53.5,29.5
parent: 2
- - uid: 5467
+ - uid: 12649
components:
- type: Transform
- pos: -23.5,-57.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,43.5
parent: 2
- - uid: 5468
+ - uid: 12650
components:
- type: Transform
- pos: -18.5,-57.5
+ pos: -10.5,-83.5
parent: 2
- - uid: 5469
+ - uid: 12651
components:
- type: Transform
- pos: -17.5,-57.5
+ pos: -82.5,-29.5
parent: 2
- - uid: 5470
+ - uid: 12652
components:
- type: Transform
- pos: -16.5,-57.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,48.5
parent: 2
- - uid: 5471
+ - uid: 12653
components:
- type: Transform
- pos: -15.5,-57.5
+ pos: -42.5,-45.5
parent: 2
- - uid: 5472
+ - uid: 12654
components:
- type: Transform
- pos: -14.5,-57.5
+ pos: -94.5,-13.5
parent: 2
- - uid: 5473
+ - uid: 12655
components:
- type: Transform
- pos: -13.5,-57.5
+ pos: -93.5,-4.5
parent: 2
- - uid: 5474
+ - uid: 12656
components:
- type: Transform
- pos: -12.5,-57.5
+ pos: -96.5,-13.5
parent: 2
- - uid: 5475
+ - uid: 12657
components:
- type: Transform
- pos: -12.5,-58.5
+ pos: -91.5,-3.5
parent: 2
- - uid: 5476
+ - uid: 12658
components:
- type: Transform
- pos: -15.5,-56.5
+ pos: -86.5,-11.5
parent: 2
- - uid: 5477
+ - uid: 12659
components:
- type: Transform
- pos: -15.5,-55.5
+ pos: -43.5,57.5
parent: 2
- - uid: 5478
+ - uid: 12660
components:
- type: Transform
- pos: -15.5,-58.5
+ pos: -86.5,-10.5
parent: 2
- - uid: 5479
+ - uid: 12661
components:
- type: Transform
- pos: -15.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-71.5
parent: 2
- - uid: 5480
+ - uid: 12662
components:
- type: Transform
- pos: -3.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-61.5
parent: 2
- - uid: 5481
+ - uid: 12663
components:
- type: Transform
- pos: -4.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-56.5
parent: 2
- - uid: 5482
+ - uid: 12664
components:
- type: Transform
- pos: -5.5,-57.5
+ pos: -37.5,-11.5
parent: 2
- - uid: 5483
+ - uid: 12665
components:
- type: Transform
- pos: -6.5,-57.5
+ pos: -89.5,-1.5
parent: 2
- - uid: 5484
+ - uid: 12666
components:
- type: Transform
- pos: -6.5,-58.5
+ pos: -88.5,-8.5
parent: 2
- - uid: 5485
+ - uid: 12667
components:
- type: Transform
- pos: -6.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-54.5
parent: 2
- - uid: 5486
+ - uid: 12668
components:
- type: Transform
- pos: -6.5,-60.5
+ pos: -88.5,-6.5
parent: 2
- - uid: 5487
+ - uid: 12669
components:
- type: Transform
- pos: -6.5,-61.5
+ pos: -89.5,-6.5
parent: 2
- - uid: 5488
+ - uid: 12670
components:
- type: Transform
- pos: 7.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-57.5
parent: 2
- - uid: 5489
+ - uid: 12671
components:
- type: Transform
- pos: 6.5,-75.5
+ pos: -98.5,-10.5
parent: 2
- - uid: 5490
+ - uid: 12672
components:
- type: Transform
- pos: 5.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-30.5
parent: 2
- - uid: 5491
+ - uid: 12673
components:
- type: Transform
- pos: 5.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-21.5
parent: 2
- - uid: 5492
+ - uid: 12674
components:
- type: Transform
- pos: 5.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-75.5
parent: 2
- - uid: 5493
+ - uid: 12675
components:
- type: Transform
- pos: 5.5,-78.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-42.5
parent: 2
- - uid: 5494
+ - uid: 12676
components:
- type: Transform
- pos: 5.5,-79.5
+ pos: -98.5,-8.5
parent: 2
- - uid: 5495
+ - uid: 12677
components:
- type: Transform
- pos: 5.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,32.5
parent: 2
- - uid: 5496
+ - uid: 12678
components:
- type: Transform
- pos: 4.5,-81.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,52.5
parent: 2
- - uid: 5497
+ - uid: 12679
components:
- type: Transform
- pos: 4.5,-82.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-54.5
parent: 2
- - uid: 5498
+ - uid: 12680
components:
- type: Transform
- pos: 4.5,-83.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,36.5
parent: 2
- - uid: 5499
+ - uid: 12681
components:
- type: Transform
- pos: 4.5,-84.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,35.5
parent: 2
- - uid: 5500
+ - uid: 12682
components:
- type: Transform
- pos: 4.5,-85.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,50.5
parent: 2
- - uid: 5501
+ - uid: 12683
components:
- type: Transform
- pos: 4.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-54.5
parent: 2
- - uid: 5502
+ - uid: 12684
components:
- type: Transform
- pos: 5.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-55.5
parent: 2
- - uid: 5503
+ - uid: 12685
components:
- type: Transform
- pos: 5.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-54.5
parent: 2
- - uid: 5504
+ - uid: 12686
components:
- type: Transform
- pos: 5.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-35.5
parent: 2
- - uid: 5505
+ - uid: 12687
components:
- type: Transform
- pos: 5.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-69.5
parent: 2
- - uid: 5506
+ - uid: 12688
components:
- type: Transform
- pos: 5.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-44.5
parent: 2
- - uid: 5507
+ - uid: 12689
components:
- type: Transform
- pos: 5.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-43.5
parent: 2
- - uid: 5508
+ - uid: 12690
components:
- type: Transform
- pos: 5.5,-68.5
+ pos: -61.5,-23.5
parent: 2
- - uid: 5509
+ - uid: 12691
components:
- type: Transform
- pos: 5.5,-67.5
+ pos: -51.5,-92.5
parent: 2
- - uid: 5510
+ - uid: 12692
components:
- type: Transform
- pos: 5.5,-66.5
+ pos: -70.5,77.5
parent: 2
- - uid: 5511
+ - uid: 12693
components:
- type: Transform
- pos: 5.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-35.5
parent: 2
- - uid: 5512
+ - uid: 12694
components:
- type: Transform
- pos: 5.5,-64.5
+ pos: -91.5,-1.5
parent: 2
- - uid: 5513
+ - uid: 12695
components:
- type: Transform
- pos: 5.5,-63.5
+ pos: -61.5,-24.5
parent: 2
- - uid: 5514
+ - uid: 12696
components:
- type: Transform
- pos: 4.5,-57.5
+ pos: -90.5,-1.5
parent: 2
- - uid: 5515
+ - uid: 12697
components:
- type: Transform
- pos: 5.5,-61.5
+ pos: -61.5,-26.5
parent: 2
- - uid: 5516
+ - uid: 12698
components:
- type: Transform
- pos: 5.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-76.5
parent: 2
- - uid: 5517
+ - uid: 12699
components:
- type: Transform
- pos: 5.5,-59.5
+ pos: -92.5,-1.5
parent: 2
- - uid: 5518
+ - uid: 12700
components:
- type: Transform
- pos: 5.5,-58.5
+ pos: -95.5,-1.5
parent: 2
- - uid: 5519
+ - uid: 12701
components:
- type: Transform
- pos: 5.5,-57.5
+ pos: -59.5,33.5
parent: 2
- - uid: 5520
+ - uid: 12702
components:
- type: Transform
- pos: 7.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,33.5
parent: 2
- - uid: 5521
+ - uid: 12703
components:
- type: Transform
- pos: 6.5,-57.5
+ pos: -2.5,30.5
parent: 2
- - uid: 5522
+ - uid: 12704
components:
- type: Transform
- pos: 4.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,22.5
parent: 2
- - uid: 5523
+ - uid: 12705
components:
- type: Transform
- pos: 3.5,-59.5
+ pos: -98.5,-5.5
parent: 2
- - uid: 5524
+ - uid: 12706
components:
- type: Transform
- pos: 6.5,-59.5
+ pos: -98.5,-6.5
parent: 2
- - uid: 5525
+ - uid: 12707
components:
- type: Transform
- pos: 7.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-43.5
parent: 2
- - uid: 5526
+ - uid: 12708
components:
- type: Transform
- pos: 8.5,-59.5
+ pos: -98.5,-9.5
parent: 2
- - uid: 5527
+ - uid: 12709
components:
- type: Transform
- pos: 24.5,-49.5
+ pos: -91.5,-10.5
parent: 2
- - uid: 5528
+ - uid: 12710
components:
- type: Transform
- pos: 24.5,-50.5
+ pos: -97.5,-1.5
parent: 2
- - uid: 5529
+ - uid: 12711
components:
- type: Transform
- pos: 24.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,38.5
parent: 2
- - uid: 5530
+ - uid: 12712
components:
- type: Transform
- pos: 23.5,-51.5
+ pos: -93.5,-1.5
parent: 2
- - uid: 5531
+ - uid: 12713
components:
- type: Transform
- pos: 22.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,31.5
parent: 2
- - uid: 5532
+ - uid: 12714
components:
- type: Transform
- pos: 21.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-42.5
parent: 2
- - uid: 5533
+ - uid: 12715
components:
- type: Transform
- pos: 20.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-40.5
parent: 2
- - uid: 5534
+ - uid: 12716
components:
- type: Transform
- pos: 22.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,-10.5
parent: 2
- - uid: 5535
+ - uid: 12717
components:
- type: Transform
- pos: 22.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-10.5
parent: 2
- - uid: 5536
+ - uid: 12718
components:
- type: Transform
- pos: 22.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-39.5
parent: 2
- - uid: 5537
+ - uid: 12719
components:
- type: Transform
- pos: 22.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: 43.5,-3.5
parent: 2
- - uid: 5538
+ - uid: 12720
components:
- type: Transform
- pos: 22.5,-46.5
+ pos: -69.5,66.5
parent: 2
- - uid: 5539
+ - uid: 12721
components:
- type: Transform
- pos: 22.5,-45.5
+ pos: -51.5,-79.5
parent: 2
- - uid: 5540
+ - uid: 12722
components:
- type: Transform
- pos: 22.5,-44.5
+ pos: 29.5,99.5
parent: 2
- - uid: 5541
+ - uid: 12723
components:
- type: Transform
- pos: 22.5,-43.5
+ pos: -56.5,42.5
parent: 2
- - uid: 5542
+ - uid: 12724
components:
- type: Transform
- pos: 22.5,-42.5
+ pos: -54.5,29.5
parent: 2
- - uid: 5543
+ - uid: 12725
components:
- type: Transform
- pos: 21.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,48.5
parent: 2
- - uid: 5544
+ - uid: 12726
components:
- type: Transform
- pos: 20.5,-43.5
+ pos: -82.5,-26.5
parent: 2
- - uid: 5545
+ - uid: 12727
components:
- type: Transform
- pos: 24.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,44.5
parent: 2
- - uid: 5546
+ - uid: 12728
components:
- type: Transform
- pos: 23.5,-43.5
+ pos: -5.5,30.5
parent: 2
- - uid: 5547
+ - uid: 12729
components:
- type: Transform
- pos: 23.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,42.5
parent: 2
- - uid: 5548
+ - uid: 12730
components:
- type: Transform
- pos: 24.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,12.5
parent: 2
- - uid: 5549
+ - uid: 12731
components:
- type: Transform
- pos: 24.5,-47.5
+ pos: -45.5,61.5
parent: 2
- - uid: 5550
+ - uid: 12732
components:
- type: Transform
- pos: 21.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,42.5
parent: 2
- - uid: 5551
+ - uid: 12733
components:
- type: Transform
- pos: 20.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-57.5
parent: 2
- - uid: 5552
+ - uid: 12734
components:
- type: Transform
- pos: 20.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-22.5
parent: 2
- - uid: 5553
+ - uid: 12735
components:
- type: Transform
- pos: 35.5,-51.5
+ pos: -91.5,-11.5
parent: 2
- - uid: 5554
+ - uid: 12736
components:
- type: Transform
- pos: 34.5,-51.5
+ pos: -61.5,-25.5
parent: 2
- - uid: 5555
+ - uid: 12737
components:
- type: Transform
- pos: 34.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-71.5
parent: 2
- - uid: 5556
+ - uid: 12738
components:
- type: Transform
- pos: 34.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-31.5
parent: 2
- - uid: 5557
+ - uid: 12739
components:
- type: Transform
- pos: 33.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-10.5
parent: 2
- - uid: 5558
+ - uid: 12740
components:
- type: Transform
- pos: 32.5,-49.5
+ pos: -78.5,-37.5
parent: 2
- - uid: 5559
+ - uid: 12741
components:
- type: Transform
- pos: 31.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,24.5
parent: 2
- - uid: 5560
+ - uid: 12742
components:
- type: Transform
- pos: 30.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,47.5
parent: 2
- - uid: 5561
+ - uid: 12743
components:
- type: Transform
- pos: 34.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,40.5
parent: 2
- - uid: 5562
+ - uid: 12744
components:
- type: Transform
- pos: 34.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,33.5
parent: 2
- - uid: 5563
+ - uid: 12745
components:
- type: Transform
- pos: 34.5,-46.5
+ pos: -38.5,-56.5
parent: 2
- - uid: 5564
+ - uid: 12746
components:
- type: Transform
- pos: 34.5,-46.5
+ pos: -60.5,39.5
parent: 2
- - uid: 5565
+ - uid: 12747
components:
- type: Transform
- pos: 34.5,-45.5
+ pos: -86.5,14.5
parent: 2
- - uid: 5566
+ - uid: 12748
components:
- type: Transform
- pos: 34.5,-44.5
+ pos: -52.5,-81.5
parent: 2
- - uid: 5567
+ - uid: 12749
components:
- type: Transform
- pos: 34.5,-43.5
+ pos: -60.5,40.5
parent: 2
- - uid: 5568
+ - uid: 12750
components:
- type: Transform
- pos: 33.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,44.5
parent: 2
- - uid: 5569
+ - uid: 12751
components:
- type: Transform
- pos: 32.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-61.5
parent: 2
- - uid: 5570
+ - uid: 12752
components:
- type: Transform
- pos: 30.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,26.5
parent: 2
- - uid: 5571
+ - uid: 12753
components:
- type: Transform
- pos: 31.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,21.5
parent: 2
- - uid: 5572
+ - uid: 12754
components:
- type: Transform
- pos: 31.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-74.5
parent: 2
- - uid: 5573
+ - uid: 12755
components:
- type: Transform
- pos: 31.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-30.5
parent: 2
- - uid: 5574
+ - uid: 12756
components:
- type: Transform
- pos: 31.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-54.5
parent: 2
- - uid: 5575
+ - uid: 12757
components:
- type: Transform
- pos: 31.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-29.5
parent: 2
- - uid: 5576
+ - uid: 12758
components:
- type: Transform
- pos: 30.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,28.5
parent: 2
- - uid: 5577
+ - uid: 12759
components:
- type: Transform
- pos: 29.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: -69.5,52.5
parent: 2
- - uid: 5578
+ - uid: 12760
components:
- type: Transform
- pos: 28.5,-34.5
+ pos: 35.5,27.5
parent: 2
- - uid: 5579
+ - uid: 12761
components:
- type: Transform
- pos: 27.5,-34.5
+ pos: -77.5,-37.5
parent: 2
- - uid: 5580
+ - uid: 12762
components:
- type: Transform
- pos: 26.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-19.5
parent: 2
- - uid: 5581
+ - uid: 12763
components:
- type: Transform
- pos: 25.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,30.5
parent: 2
- - uid: 5582
+ - uid: 12764
components:
- type: Transform
- pos: 24.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-19.5
parent: 2
- - uid: 5583
+ - uid: 12765
components:
- type: Transform
- pos: 23.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 45.5,-28.5
parent: 2
- - uid: 5584
+ - uid: 12766
components:
- type: Transform
- pos: 22.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: -70.5,53.5
parent: 2
- - uid: 5585
+ - uid: 12767
components:
- type: Transform
- pos: 21.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,23.5
parent: 2
- - uid: 5586
+ - uid: 12768
components:
- type: Transform
- pos: 20.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: -70.5,52.5
parent: 2
- - uid: 5587
+ - uid: 12769
components:
- type: Transform
- pos: 27.5,-34.5
+ pos: -53.5,25.5
parent: 2
- - uid: 5588
+ - uid: 12770
components:
- type: Transform
- pos: 27.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,46.5
parent: 2
- - uid: 5589
+ - uid: 12771
components:
- type: Transform
- pos: 27.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,26.5
parent: 2
- - uid: 5590
+ - uid: 12772
components:
- type: Transform
- pos: 27.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,44.5
parent: 2
- - uid: 5591
+ - uid: 12773
components:
- type: Transform
- pos: 27.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,25.5
parent: 2
- - uid: 5592
+ - uid: 12774
components:
- type: Transform
- pos: 27.5,-39.5
+ pos: -91.5,-4.5
parent: 2
- - uid: 5593
+ - uid: 12775
components:
- type: Transform
- pos: 27.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-25.5
parent: 2
- - uid: 5594
+ - uid: 12776
components:
- type: Transform
- pos: 27.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,38.5
parent: 2
- - uid: 5595
+ - uid: 12777
components:
- type: Transform
- pos: 27.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,27.5
parent: 2
- - uid: 5596
+ - uid: 12778
components:
- type: Transform
- pos: 27.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-61.5
parent: 2
- - uid: 5597
+ - uid: 12779
components:
- type: Transform
- pos: 27.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: -70.5,54.5
parent: 2
- - uid: 5598
+ - uid: 12780
components:
- type: Transform
- pos: 27.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,40.5
parent: 2
- - uid: 5599
+ - uid: 12781
components:
- type: Transform
- pos: 27.5,-46.5
+ pos: -98.5,-1.5
parent: 2
- - uid: 5600
+ - uid: 12782
components:
- type: Transform
- pos: 27.5,-47.5
+ pos: -95.5,-6.5
parent: 2
- - uid: 5601
+ - uid: 12783
components:
- type: Transform
- pos: 27.5,-48.5
+ pos: -86.5,-5.5
parent: 2
- - uid: 5602
+ - uid: 12784
components:
- type: Transform
- pos: 27.5,-49.5
+ pos: -59.5,37.5
parent: 2
- - uid: 5603
+ - uid: 12785
components:
- type: Transform
- pos: 27.5,-50.5
+ pos: -61.5,-27.5
parent: 2
- - uid: 5604
+ - uid: 12786
components:
- type: Transform
- pos: 27.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-18.5
parent: 2
- - uid: 5605
+ - uid: 12787
components:
- type: Transform
- pos: 27.5,-52.5
+ pos: -96.5,-6.5
parent: 2
- - uid: 5606
+ - uid: 12788
components:
- type: Transform
- pos: 27.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,41.5
parent: 2
- - uid: 5607
+ - uid: 12789
components:
- type: Transform
- pos: 27.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,42.5
parent: 2
- - uid: 5608
+ - uid: 12790
components:
- type: Transform
- pos: 27.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-57.5
parent: 2
- - uid: 5609
+ - uid: 12791
components:
- type: Transform
- pos: 27.5,-57.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,41.5
parent: 2
- - uid: 5610
+ - uid: 12792
components:
- type: Transform
- pos: 27.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-70.5
parent: 2
- - uid: 5611
+ - uid: 12793
components:
- type: Transform
- pos: 26.5,-55.5
+ pos: -86.5,-8.5
parent: 2
- - uid: 5612
+ - uid: 12794
components:
- type: Transform
- pos: 28.5,-55.5
+ pos: -69.5,-0.5
parent: 2
- - uid: 5613
+ - uid: 12795
components:
- type: Transform
- pos: 33.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-62.5
parent: 2
- - uid: 5614
+ - uid: 12796
components:
- type: Transform
- pos: 33.5,-37.5
+ pos: -98.5,-4.5
parent: 2
- - uid: 5615
+ - uid: 12797
components:
- type: Transform
- pos: 33.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-68.5
parent: 2
- - uid: 5616
+ - uid: 12798
components:
- type: Transform
- pos: 33.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-57.5
parent: 2
- - uid: 5617
+ - uid: 12799
components:
- type: Transform
- pos: 31.5,-39.5
+ pos: -86.5,-4.5
parent: 2
- - uid: 5618
+ - uid: 12800
components:
- type: Transform
- pos: 30.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,-18.5
parent: 2
- - uid: 5619
+ - uid: 12801
components:
- type: Transform
- pos: 34.5,-39.5
+ pos: -60.5,-25.5
parent: 2
- - uid: 5620
+ - uid: 12802
components:
- type: Transform
- pos: 35.5,-39.5
+ pos: -86.5,-6.5
parent: 2
- - uid: 5621
+ - uid: 12803
components:
- type: Transform
- pos: 36.5,-39.5
+ pos: -95.5,-8.5
parent: 2
- - uid: 5622
+ - uid: 12804
components:
- type: Transform
- pos: 37.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,37.5
parent: 2
- - uid: 5623
+ - uid: 12805
components:
- type: Transform
- pos: 32.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,37.5
parent: 2
- - uid: 5624
+ - uid: 12806
components:
- type: Transform
- pos: 37.5,-40.5
+ pos: -51.5,-75.5
parent: 2
- - uid: 5625
+ - uid: 12807
components:
- type: Transform
- pos: 37.5,-41.5
+ pos: -51.5,-84.5
parent: 2
- - uid: 5626
+ - uid: 12808
components:
- type: Transform
- pos: 32.5,-34.5
+ pos: -66.5,66.5
parent: 2
- - uid: 5627
+ - uid: 12809
components:
- type: Transform
- pos: 33.5,-34.5
+ pos: 22.5,99.5
parent: 2
- - uid: 5628
+ - uid: 12810
components:
- type: Transform
- pos: 34.5,-34.5
+ pos: -67.5,66.5
parent: 2
- - uid: 5629
+ - uid: 12811
components:
- type: Transform
- pos: 35.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,42.5
parent: 2
- - uid: 5630
+ - uid: 12812
components:
- type: Transform
- pos: 36.5,-34.5
+ pos: -52.5,-89.5
parent: 2
- - uid: 5631
+ - uid: 12813
components:
- type: Transform
- pos: 37.5,-34.5
+ pos: -53.5,-89.5
parent: 2
- - uid: 5632
+ - uid: 12814
components:
- type: Transform
- pos: 38.5,-34.5
+ pos: -53.5,-58.5
parent: 2
- - uid: 5633
+ - uid: 12815
components:
- type: Transform
- pos: 35.5,-26.5
+ pos: -48.5,-85.5
parent: 2
- - uid: 5634
+ - uid: 12816
components:
- type: Transform
- pos: 35.5,-27.5
+ pos: 30.5,20.5
parent: 2
- - uid: 5635
+ - uid: 12817
components:
- type: Transform
- pos: 36.5,-27.5
+ pos: -54.5,-58.5
parent: 2
- - uid: 5636
+ - uid: 12818
components:
- type: Transform
- pos: 36.5,-28.5
+ pos: -70.5,73.5
parent: 2
- - uid: 5637
+ - uid: 12819
components:
- type: Transform
- pos: 36.5,-29.5
+ pos: -56.5,-81.5
parent: 2
- - uid: 5638
+ - uid: 12820
components:
- type: Transform
- pos: 36.5,-30.5
+ pos: -57.5,-81.5
parent: 2
- - uid: 5639
+ - uid: 12821
components:
- type: Transform
- pos: 36.5,-31.5
+ pos: -75.5,72.5
parent: 2
- - uid: 5640
+ - uid: 12822
components:
- type: Transform
- pos: 37.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-33.5
parent: 2
- - uid: 5641
+ - uid: 12823
components:
- type: Transform
- pos: 37.5,-25.5
+ pos: -75.5,71.5
parent: 2
- - uid: 5642
+ - uid: 12824
components:
- type: Transform
- pos: 37.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-37.5
parent: 2
- - uid: 5643
+ - uid: 12825
components:
- type: Transform
- pos: 38.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-36.5
parent: 2
- - uid: 5644
+ - uid: 12826
components:
- type: Transform
- pos: 36.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-7.5
parent: 2
- - uid: 5645
+ - uid: 12827
components:
- type: Transform
- pos: 31.5,-27.5
+ pos: -75.5,70.5
parent: 2
- - uid: 5646
+ - uid: 12828
components:
- type: Transform
- pos: 31.5,-28.5
+ pos: -72.5,69.5
parent: 2
- - uid: 5647
+ - uid: 12829
components:
- type: Transform
- pos: 31.5,-29.5
+ pos: -71.5,69.5
parent: 2
- - uid: 5648
+ - uid: 12830
components:
- type: Transform
- pos: 30.5,-29.5
+ pos: -49.5,-66.5
parent: 2
- - uid: 5649
+ - uid: 12831
components:
- type: Transform
- pos: 29.5,-29.5
+ pos: 28.5,93.5
parent: 2
- - uid: 5650
+ - uid: 12832
components:
- type: Transform
- pos: 29.5,-30.5
+ pos: 28.5,95.5
parent: 2
- - uid: 5651
+ - uid: 12833
components:
- type: Transform
- pos: 29.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: 61.5,-40.5
parent: 2
- - uid: 5652
+ - uid: 12834
components:
- type: Transform
- pos: 28.5,-29.5
+ pos: -48.5,-89.5
parent: 2
- - uid: 5653
+ - uid: 12835
components:
- type: Transform
- pos: 27.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-10.5
parent: 2
- - uid: 5654
+ - uid: 12836
components:
- type: Transform
- pos: 26.5,-29.5
+ pos: -47.5,-89.5
parent: 2
- - uid: 5655
+ - uid: 12837
components:
- type: Transform
- pos: 25.5,-29.5
+ pos: -75.5,83.5
parent: 2
- - uid: 5656
+ - uid: 12838
components:
- type: Transform
- pos: 24.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-7.5
parent: 2
- - uid: 5657
+ - uid: 12839
components:
- type: Transform
- pos: 24.5,-28.5
+ pos: 26.5,91.5
parent: 2
- - uid: 5658
+ - uid: 12840
components:
- type: Transform
- pos: 23.5,-28.5
+ pos: 28.5,90.5
parent: 2
- - uid: 5659
+ - uid: 12841
components:
- type: Transform
- pos: 22.5,-28.5
+ pos: 28.5,89.5
parent: 2
- - uid: 5660
+ - uid: 12842
components:
- type: Transform
- pos: 21.5,-28.5
+ pos: 28.5,88.5
parent: 2
- - uid: 5661
+ - uid: 12843
components:
- type: Transform
- pos: 21.5,-27.5
+ pos: 30.5,91.5
parent: 2
- - uid: 5662
+ - uid: 12844
components:
- type: Transform
- pos: 21.5,-26.5
+ pos: 29.5,91.5
parent: 2
- - uid: 5663
+ - uid: 12845
components:
- type: Transform
- pos: 21.5,-25.5
+ pos: 27.5,91.5
parent: 2
- - uid: 5664
+ - uid: 12846
components:
- type: Transform
- pos: 21.5,-33.5
+ pos: 27.5,95.5
parent: 2
- - uid: 5665
+ - uid: 12847
components:
- type: Transform
- pos: 21.5,-32.5
+ pos: 23.5,91.5
parent: 2
- - uid: 5666
+ - uid: 12848
components:
- type: Transform
- pos: 21.5,-31.5
+ pos: 22.5,91.5
parent: 2
- - uid: 5667
+ - uid: 12849
components:
- type: Transform
- pos: 29.5,-28.5
+ pos: 31.5,91.5
parent: 2
- - uid: 5668
+ - uid: 12850
components:
- type: Transform
- pos: 29.5,-27.5
+ pos: -76.5,81.5
parent: 2
- - uid: 5669
+ - uid: 12851
components:
- type: Transform
- pos: 29.5,-26.5
+ pos: -80.5,77.5
parent: 2
- - uid: 5670
+ - uid: 12852
components:
- type: Transform
- pos: 29.5,-25.5
+ pos: -56.5,-85.5
parent: 2
- - uid: 5671
+ - uid: 12853
components:
- type: Transform
- pos: 29.5,-24.5
+ pos: -71.5,81.5
parent: 2
- - uid: 5672
+ - uid: 12854
components:
- type: Transform
- pos: 30.5,-24.5
+ pos: -74.5,81.5
parent: 2
- - uid: 5673
+ - uid: 12855
components:
- type: Transform
- pos: 30.5,-23.5
+ pos: -51.5,-87.5
parent: 2
- - uid: 5674
+ - uid: 12856
components:
- type: Transform
- pos: 30.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,40.5
parent: 2
- - uid: 5675
+ - uid: 12857
components:
- type: Transform
- pos: 31.5,-22.5
+ pos: -57.5,-85.5
parent: 2
- - uid: 5676
+ - uid: 12858
components:
- type: Transform
- pos: 32.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,44.5
parent: 2
- - uid: 5677
+ - uid: 12859
components:
- type: Transform
- pos: 24.5,-27.5
+ pos: -51.5,-86.5
parent: 2
- - uid: 5678
+ - uid: 12860
components:
- type: Transform
- pos: 25.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,31.5
parent: 2
- - uid: 5679
+ - uid: 12861
components:
- type: Transform
- pos: 25.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,-40.5
parent: 2
- - uid: 5680
+ - uid: 12862
components:
- type: Transform
- pos: 25.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-3.5
parent: 2
- - uid: 5681
+ - uid: 12863
components:
- type: Transform
- pos: 25.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-31.5
parent: 2
- - uid: 5682
+ - uid: 12864
components:
- type: Transform
- pos: 7.5,-43.5
+ pos: -75.5,73.5
parent: 2
- - uid: 5683
+ - uid: 12865
components:
- type: Transform
- pos: 26.5,-39.5
+ pos: -73.5,69.5
parent: 2
- - uid: 5684
+ - uid: 12866
components:
- type: Transform
- pos: 25.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,33.5
parent: 2
- - uid: 5685
+ - uid: 12867
components:
- type: Transform
- pos: 24.5,-39.5
+ pos: -62.5,-50.5
parent: 2
- - uid: 5686
+ - uid: 12868
components:
- type: Transform
- pos: 23.5,-39.5
+ pos: -76.5,-37.5
parent: 2
- - uid: 5687
+ - uid: 12869
components:
- type: Transform
- pos: 22.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-10.5
parent: 2
- - uid: 5688
+ - uid: 12870
components:
- type: Transform
- pos: 21.5,-39.5
+ pos: -73.5,73.5
parent: 2
- - uid: 5689
+ - uid: 12871
components:
- type: Transform
- pos: 20.5,-39.5
+ pos: -57.5,-89.5
parent: 2
- - uid: 5690
+ - uid: 12872
components:
- type: Transform
- pos: 19.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,29.5
parent: 2
- - uid: 5691
+ - uid: 12873
components:
- type: Transform
- pos: 18.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,28.5
parent: 2
- - uid: 5692
+ - uid: 12874
components:
- type: Transform
- pos: 17.5,-39.5
+ pos: -43.5,-58.5
parent: 2
- - uid: 5693
+ - uid: 12875
components:
- type: Transform
- pos: 17.5,-40.5
+ pos: 33.5,99.5
parent: 2
- - uid: 5694
+ - uid: 12876
components:
- type: Transform
- pos: 17.5,-41.5
+ pos: -51.5,-78.5
parent: 2
- - uid: 5695
+ - uid: 12877
components:
- type: Transform
- pos: 17.5,-42.5
+ pos: 20.5,87.5
parent: 2
- - uid: 5696
+ - uid: 12878
components:
- type: Transform
- pos: 17.5,-43.5
+ pos: -51.5,-58.5
parent: 2
- - uid: 5697
+ - uid: 12879
components:
- type: Transform
- pos: 17.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,44.5
parent: 2
- - uid: 5698
+ - uid: 12880
components:
- type: Transform
- pos: 17.5,-45.5
+ pos: 25.5,99.5
parent: 2
- - uid: 5699
+ - uid: 12881
components:
- type: Transform
- pos: 17.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,43.5
parent: 2
- - uid: 5700
+ - uid: 12882
components:
- type: Transform
- pos: 17.5,-38.5
+ pos: -78.5,73.5
parent: 2
- - uid: 5701
+ - uid: 12883
components:
- type: Transform
- pos: 17.5,-37.5
+ pos: -74.5,-38.5
parent: 2
- - uid: 5702
+ - uid: 12884
components:
- type: Transform
- pos: 17.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,43.5
parent: 2
- - uid: 5703
+ - uid: 12885
components:
- type: Transform
- pos: 17.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,41.5
parent: 2
- - uid: 5704
+ - uid: 12886
components:
- type: Transform
- pos: 17.5,-34.5
+ pos: -43.5,61.5
parent: 2
- - uid: 5705
+ - uid: 12887
components:
- type: Transform
- pos: 17.5,-33.5
+ pos: -77.5,81.5
parent: 2
- - uid: 5706
+ - uid: 12888
components:
- type: Transform
- pos: 17.5,-32.5
+ pos: -73.5,-38.5
parent: 2
- - uid: 5707
+ - uid: 12889
components:
- type: Transform
- pos: 17.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,27.5
parent: 2
- - uid: 5708
+ - uid: 12890
components:
- type: Transform
- pos: 17.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -73.5,52.5
parent: 2
- - uid: 5709
+ - uid: 12891
components:
- type: Transform
- pos: 17.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: -73.5,54.5
parent: 2
- - uid: 5710
+ - uid: 12892
components:
- type: Transform
- pos: 17.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-46.5
parent: 2
- - uid: 5711
+ - uid: 12893
components:
- type: Transform
- pos: 17.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-71.5
parent: 2
- - uid: 5712
+ - uid: 12894
components:
- type: Transform
- pos: 17.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-71.5
parent: 2
- - uid: 5713
+ - uid: 12895
components:
- type: Transform
- pos: 17.5,-25.5
+ pos: -92.5,-13.5
parent: 2
- - uid: 5714
+ - uid: 12896
components:
- type: Transform
- pos: 17.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,36.5
parent: 2
- - uid: 5715
+ - uid: 12897
components:
- type: Transform
- pos: 17.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-75.5
parent: 2
- - uid: 5716
+ - uid: 12898
components:
- type: Transform
- pos: 9.5,-29.5
+ pos: -86.5,-9.5
parent: 2
- - uid: 5717
+ - uid: 12899
components:
- type: Transform
- pos: 8.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-73.5
parent: 2
- - uid: 5718
+ - uid: 12900
components:
- type: Transform
- pos: 7.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-65.5
parent: 2
- - uid: 5719
+ - uid: 12901
components:
- type: Transform
- pos: 6.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-57.5
parent: 2
- - uid: 5720
+ - uid: 12902
components:
- type: Transform
- pos: 5.5,-29.5
+ pos: -93.5,-13.5
parent: 2
- - uid: 5721
+ - uid: 12903
components:
- type: Transform
- pos: 5.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-54.5
parent: 2
- - uid: 5722
+ - uid: 12904
components:
- type: Transform
- pos: 5.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-38.5
parent: 2
- - uid: 5723
+ - uid: 12905
components:
- type: Transform
- pos: 5.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 45.5,-46.5
parent: 2
- - uid: 5724
+ - uid: 12906
components:
- type: Transform
- pos: 5.5,-33.5
+ pos: -35.5,45.5
parent: 2
- - uid: 5725
+ - uid: 12907
components:
- type: Transform
- pos: 5.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-19.5
parent: 2
- - uid: 5726
+ - uid: 12908
components:
- type: Transform
- pos: 5.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-71.5
parent: 2
- - uid: 5727
+ - uid: 12909
components:
- type: Transform
- pos: 3.5,-33.5
+ pos: -39.5,-4.5
parent: 2
- - uid: 5728
+ - uid: 12910
components:
- type: Transform
- pos: 4.5,-33.5
+ pos: -52.5,-54.5
parent: 2
- - uid: 5729
+ - uid: 12911
components:
- type: Transform
- pos: 5.5,-33.5
+ pos: -49.5,-85.5
parent: 2
- - uid: 5730
+ - uid: 12912
components:
- type: Transform
- pos: 6.5,-33.5
+ pos: -81.5,81.5
parent: 2
- - uid: 5731
+ - uid: 12913
components:
- type: Transform
- pos: 7.5,-33.5
+ pos: -61.5,-50.5
parent: 2
- - uid: 5732
+ - uid: 12914
components:
- type: Transform
- pos: 8.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-36.5
parent: 2
- - uid: 5733
+ - uid: 12915
components:
- type: Transform
- pos: 8.5,-35.5
+ pos: -51.5,-66.5
parent: 2
- - uid: 5734
+ - uid: 12916
components:
- type: Transform
- pos: 9.5,-35.5
+ pos: -47.5,-74.5
parent: 2
- - uid: 5735
+ - uid: 12917
components:
- type: Transform
- pos: 10.5,-35.5
+ pos: -74.5,27.5
parent: 2
- - uid: 5736
+ - uid: 12918
components:
- type: Transform
- pos: 7.5,-35.5
+ pos: -81.5,73.5
parent: 2
- - uid: 5737
+ - uid: 12919
components:
- type: Transform
- pos: 7.5,-34.5
+ pos: -49.5,-89.5
parent: 2
- - uid: 5738
+ - uid: 12920
components:
- type: Transform
- pos: 10.5,-34.5
+ pos: -52.5,-66.5
parent: 2
- - uid: 5739
+ - uid: 12921
components:
- type: Transform
- pos: 11.5,-34.5
+ pos: -80.5,73.5
parent: 2
- - uid: 5740
+ - uid: 12922
components:
- type: Transform
- pos: 12.5,-34.5
+ pos: -76.5,69.5
parent: 2
- - uid: 5741
+ - uid: 12923
components:
- type: Transform
- pos: 13.5,-34.5
+ pos: -75.5,75.5
parent: 2
- - uid: 5742
+ - uid: 12924
components:
- type: Transform
- pos: 14.5,-34.5
+ pos: -80.5,81.5
parent: 2
- - uid: 5743
+ - uid: 12925
components:
- type: Transform
- pos: 14.5,-36.5
+ pos: 30.5,95.5
parent: 2
- - uid: 5744
+ - uid: 12926
components:
- type: Transform
- pos: 14.5,-37.5
+ pos: -52.5,-58.5
parent: 2
- - uid: 5745
+ - uid: 12927
components:
- type: Transform
- pos: 14.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,34.5
parent: 2
- - uid: 5746
+ - uid: 12928
components:
- type: Transform
- pos: 14.5,-39.5
+ pos: 30.5,16.5
parent: 2
- - uid: 5747
+ - uid: 12929
components:
- type: Transform
- pos: 13.5,-39.5
+ pos: 30.5,17.5
parent: 2
- - uid: 5748
+ - uid: 12930
components:
- type: Transform
- pos: 12.5,-39.5
+ pos: -78.5,81.5
parent: 2
- - uid: 5749
+ - uid: 12931
components:
- type: Transform
- pos: 11.5,-39.5
+ pos: -73.5,-40.5
parent: 2
- - uid: 5750
+ - uid: 12932
components:
- type: Transform
- pos: 10.5,-39.5
+ pos: -50.5,-62.5
parent: 2
- - uid: 5751
+ - uid: 12933
components:
- type: Transform
- pos: 9.5,-39.5
+ pos: -83.5,14.5
parent: 2
- - uid: 5752
+ - uid: 12934
components:
- type: Transform
- pos: 7.5,-44.5
+ pos: -93.5,-10.5
parent: 2
- - uid: 5753
+ - uid: 12935
components:
- type: Transform
- pos: 7.5,-45.5
+ pos: -84.5,14.5
parent: 2
- - uid: 5754
+ - uid: 12936
components:
- type: Transform
- pos: 6.5,-45.5
+ pos: -74.5,-40.5
parent: 2
- - uid: 5755
+ - uid: 12937
components:
- type: Transform
- pos: 5.5,-45.5
+ pos: -53.5,-85.5
parent: 2
- - uid: 5756
+ - uid: 12938
components:
- type: Transform
- pos: 4.5,-45.5
+ pos: -62.5,-54.5
parent: 2
- - uid: 5757
+ - uid: 12939
components:
- type: Transform
- pos: 4.5,-46.5
+ pos: -52.5,-52.5
parent: 2
- - uid: 5758
+ - uid: 12940
components:
- type: Transform
- pos: 5.5,-50.5
+ pos: -81.5,69.5
parent: 2
- - uid: 5759
+ - uid: 12941
components:
- type: Transform
- pos: 4.5,-48.5
+ pos: -46.5,-81.5
parent: 2
- - uid: 5760
+ - uid: 12942
components:
- type: Transform
- pos: 4.5,-49.5
+ pos: -54.5,-56.5
parent: 2
- - uid: 5761
+ - uid: 12943
components:
- type: Transform
- pos: 4.5,-50.5
+ pos: -52.5,-56.5
parent: 2
- - uid: 5762
+ - uid: 12944
components:
- type: Transform
- pos: 6.5,-50.5
+ pos: -45.5,-81.5
parent: 2
- - uid: 5763
+ - uid: 12945
components:
- type: Transform
- pos: 7.5,-50.5
+ pos: -54.5,-54.5
parent: 2
- - uid: 5764
+ - uid: 12946
components:
- type: Transform
- pos: 8.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,42.5
parent: 2
- - uid: 5765
+ - uid: 12947
components:
- type: Transform
- pos: 8.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,28.5
parent: 2
- - uid: 5766
+ - uid: 12948
components:
- type: Transform
- pos: 8.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-17.5
parent: 2
- - uid: 5767
+ - uid: 12949
components:
- type: Transform
- pos: 8.5,-47.5
+ pos: -59.5,32.5
parent: 2
- - uid: 5768
+ - uid: 12950
components:
- type: Transform
- pos: 9.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,31.5
parent: 2
- - uid: 5769
+ - uid: 12951
components:
- type: Transform
- pos: 10.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-57.5
parent: 2
- - uid: 5770
+ - uid: 12952
components:
- type: Transform
- pos: 11.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-58.5
parent: 2
- - uid: 5771
+ - uid: 12953
components:
- type: Transform
- pos: 12.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-57.5
parent: 2
- - uid: 5772
+ - uid: 12954
components:
- type: Transform
- pos: 10.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,-30.5
parent: 2
- - uid: 5773
+ - uid: 12955
components:
- type: Transform
- pos: 10.5,-52.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,30.5
parent: 2
- - uid: 5774
+ - uid: 12956
components:
- type: Transform
- pos: 3.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,32.5
parent: 2
- - uid: 5775
+ - uid: 12957
components:
- type: Transform
- pos: 2.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,28.5
parent: 2
- - uid: 5776
+ - uid: 12958
components:
- type: Transform
- pos: 12.5,-56.5
+ pos: 30.5,18.5
parent: 2
- - uid: 5777
+ - uid: 12959
components:
- type: Transform
- pos: 12.5,-57.5
+ pos: -51.5,-90.5
parent: 2
- - uid: 5778
+ - uid: 12960
components:
- type: Transform
- pos: 12.5,-58.5
+ pos: -61.5,66.5
parent: 2
- - uid: 5779
+ - uid: 12961
components:
- type: Transform
- pos: 12.5,-59.5
+ pos: -79.5,81.5
parent: 2
- - uid: 5780
+ - uid: 12962
components:
- type: Transform
- pos: 12.5,-60.5
+ pos: -72.5,81.5
parent: 2
- - uid: 5781
+ - uid: 12963
components:
- type: Transform
- pos: 12.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,12.5
parent: 2
- - uid: 5782
+ - uid: 12964
components:
- type: Transform
- pos: 11.5,-59.5
+ pos: -50.5,-69.5
parent: 2
- - uid: 5783
+ - uid: 12965
components:
- type: Transform
- pos: 10.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-74.5
parent: 2
- - uid: 5784
+ - uid: 12966
components:
- type: Transform
- pos: 13.5,-59.5
+ pos: -73.5,77.5
parent: 2
- - uid: 5785
+ - uid: 12967
components:
- type: Transform
- pos: 14.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-55.5
parent: 2
- - uid: 5786
+ - uid: 12968
components:
- type: Transform
- pos: 13.5,-49.5
+ pos: -96.5,-8.5
parent: 2
- - uid: 5787
+ - uid: 12969
components:
- type: Transform
- pos: 14.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,56.5
parent: 2
- - uid: 5788
+ - uid: 12970
components:
- type: Transform
- pos: 15.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-20.5
parent: 2
- - uid: 5789
+ - uid: 12971
components:
- type: Transform
- pos: 16.5,-49.5
+ pos: -43.5,59.5
parent: 2
- - uid: 5790
+ - uid: 12972
components:
- type: Transform
- pos: 17.5,-49.5
+ pos: -45.5,59.5
parent: 2
- - uid: 5791
+ - uid: 12973
components:
- type: Transform
- pos: 17.5,-50.5
+ pos: -78.5,-41.5
parent: 2
- - uid: 5792
+ - uid: 12974
components:
- type: Transform
- pos: 17.5,-51.5
+ pos: 28.5,98.5
parent: 2
- - uid: 5793
+ - uid: 12975
components:
- type: Transform
- pos: 17.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-46.5
parent: 2
- - uid: 5794
+ - uid: 12976
components:
- type: Transform
- pos: 17.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-55.5
parent: 2
- - uid: 5795
+ - uid: 12977
components:
- type: Transform
- pos: 17.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-55.5
parent: 2
- - uid: 5796
+ - uid: 12978
components:
- type: Transform
- pos: 17.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-55.5
parent: 2
- - uid: 5797
+ - uid: 12979
components:
- type: Transform
- pos: 16.5,-55.5
+ pos: 23.5,99.5
parent: 2
- - uid: 5798
+ - uid: 12980
components:
- type: Transform
- pos: 15.5,-55.5
+ pos: -65.5,66.5
parent: 2
- - uid: 5799
+ - uid: 12981
components:
- type: Transform
- pos: 14.5,-55.5
+ pos: -51.5,-83.5
parent: 2
- - uid: 5800
+ - uid: 12982
components:
- type: Transform
- pos: 13.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-41.5
parent: 2
- - uid: 5801
+ - uid: 12983
components:
- type: Transform
- pos: 18.5,-55.5
+ pos: -51.5,-69.5
parent: 2
- - uid: 5802
+ - uid: 12984
components:
- type: Transform
- pos: 19.5,-55.5
+ pos: -75.5,69.5
parent: 2
- - uid: 5803
+ - uid: 12985
components:
- type: Transform
- pos: 20.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-7.5
parent: 2
- - uid: 5804
+ - uid: 12986
components:
- type: Transform
- pos: 21.5,-55.5
+ pos: -73.5,81.5
parent: 2
- - uid: 5805
+ - uid: 12987
components:
- type: Transform
- pos: 22.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-28.5
parent: 2
- - uid: 5806
+ - uid: 12988
components:
- type: Transform
- pos: 23.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-61.5
parent: 2
- - uid: 5807
+ - uid: 12989
components:
- type: Transform
- pos: 24.5,-55.5
+ pos: -70.5,81.5
parent: 2
- - uid: 5808
+ - uid: 12990
components:
- type: Transform
- pos: 14.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-71.5
parent: 2
- - uid: 5809
+ - uid: 12991
components:
- type: Transform
- pos: 14.5,-42.5
+ pos: -86.5,-1.5
parent: 2
- - uid: 5810
+ - uid: 12992
components:
- type: Transform
- pos: 14.5,-43.5
+ pos: 28.5,99.5
parent: 2
- - uid: 5811
+ - uid: 12993
components:
- type: Transform
- pos: 14.5,-44.5
+ pos: -71.5,73.5
parent: 2
- - uid: 5812
+ - uid: 12994
components:
- type: Transform
- pos: 14.5,-45.5
+ pos: -74.5,33.5
parent: 2
- - uid: 5813
+ - uid: 12995
components:
- type: Transform
- pos: 14.5,-46.5
+ pos: -55.5,-89.5
parent: 2
- - uid: 5814
+ - uid: 12996
components:
- type: Transform
- pos: 13.5,-46.5
+ pos: -54.5,-89.5
parent: 2
- - uid: 5815
+ - uid: 12997
components:
- type: Transform
- pos: 13.5,-43.5
+ pos: -69.5,81.5
parent: 2
- - uid: 5816
+ - uid: 12998
components:
- type: Transform
- pos: 12.5,-43.5
+ pos: 25.5,91.5
parent: 2
- - uid: 5817
+ - uid: 12999
components:
- type: Transform
- pos: 21.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,29.5
parent: 2
- - uid: 5818
+ - uid: 13000
components:
- type: Transform
- pos: 21.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-54.5
parent: 2
- - uid: 5819
+ - uid: 13001
components:
- type: Transform
- pos: 23.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-26.5
parent: 2
- - uid: 5820
+ - uid: 13002
components:
- type: Transform
- pos: 23.5,-38.5
+ pos: -77.5,-41.5
parent: 2
- - uid: 5821
+ - uid: 13003
components:
- type: Transform
- pos: -9.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-61.5
parent: 2
- - uid: 5822
+ - uid: 13004
components:
- type: Transform
- pos: -9.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,27.5
parent: 2
- - uid: 5823
+ - uid: 13005
components:
- type: Transform
- pos: -9.5,-23.5
+ pos: -88.5,-1.5
parent: 2
- - uid: 5824
+ - uid: 13006
components:
- type: Transform
- pos: -9.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-28.5
parent: 2
- - uid: 5825
+ - uid: 13007
components:
- type: Transform
- pos: -9.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,27.5
parent: 2
- - uid: 5826
+ - uid: 13008
components:
- type: Transform
- pos: -8.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,34.5
parent: 2
- - uid: 5827
+ - uid: 13009
components:
- type: Transform
- pos: -7.5,-25.5
+ pos: -76.5,-41.5
parent: 2
- - uid: 5828
+ - uid: 13010
components:
- type: Transform
- pos: -6.5,-25.5
+ pos: 35.5,28.5
parent: 2
- - uid: 5829
+ - uid: 13011
components:
- type: Transform
- pos: -5.5,-25.5
+ pos: -46.5,-89.5
parent: 2
- - uid: 5830
+ - uid: 13012
components:
- type: Transform
- pos: -4.5,-25.5
+ pos: -45.5,-89.5
parent: 2
- - uid: 5831
+ - uid: 13013
components:
- type: Transform
- pos: -3.5,-25.5
+ pos: 30.5,99.5
parent: 2
- - uid: 5832
+ - uid: 13014
components:
- type: Transform
- pos: -10.5,-25.5
+ pos: 31.5,99.5
parent: 2
- - uid: 5833
+ - uid: 13015
components:
- type: Transform
- pos: -11.5,-25.5
+ pos: 32.5,99.5
parent: 2
- - uid: 5834
+ - uid: 13016
components:
- type: Transform
- pos: -12.5,-25.5
+ pos: 28.5,100.5
parent: 2
- - uid: 5835
+ - uid: 13017
components:
- type: Transform
- pos: -13.5,-25.5
+ pos: 28.5,101.5
parent: 2
- - uid: 5836
+ - uid: 13018
components:
- type: Transform
- pos: -14.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,-40.5
parent: 2
- - uid: 5837
+ - uid: 13019
components:
- type: Transform
- pos: -15.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-10.5
parent: 2
- - uid: 5838
+ - uid: 13020
components:
- type: Transform
- pos: -14.5,-23.5
+ pos: -74.5,-43.5
parent: 2
- - uid: 5839
+ - uid: 13021
components:
- type: Transform
- pos: -14.5,-24.5
+ pos: -68.5,66.5
parent: 2
- - uid: 5840
+ - uid: 13022
components:
- type: Transform
- pos: -14.5,-26.5
+ pos: -51.5,-76.5
parent: 2
- - uid: 5841
+ - uid: 13023
components:
- type: Transform
- pos: -14.5,-27.5
+ pos: -88.5,11.5
parent: 2
- - uid: 5842
+ - uid: 13024
components:
- type: Transform
- pos: -12.5,-26.5
+ pos: -59.5,31.5
parent: 2
- - uid: 5843
+ - uid: 13025
components:
- type: Transform
- pos: -12.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-57.5
parent: 2
- - uid: 5844
+ - uid: 13026
components:
- type: Transform
- pos: -5.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-61.5
parent: 2
- - uid: 5845
+ - uid: 13027
components:
- type: Transform
- pos: -5.5,-27.5
+ pos: -98.5,-2.5
parent: 2
- - uid: 5846
+ - uid: 13028
components:
- type: Transform
- pos: -5.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,42.5
parent: 2
- - uid: 5847
+ - uid: 13029
components:
- type: Transform
- pos: -5.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-28.5
parent: 2
- - uid: 5848
+ - uid: 13030
components:
- type: Transform
- pos: -5.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-71.5
parent: 2
- - uid: 5849
+ - uid: 13031
components:
- type: Transform
- pos: 8.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-55.5
parent: 2
- - uid: 5850
+ - uid: 13032
components:
- type: Transform
- pos: 8.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,41.5
parent: 2
- - uid: 5851
+ - uid: 13033
components:
- type: Transform
- pos: 8.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,37.5
parent: 2
- - uid: 5852
+ - uid: 13034
components:
- type: Transform
- pos: 8.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-55.5
parent: 2
- - uid: 5853
+ - uid: 13035
components:
- type: Transform
- pos: 8.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-54.5
parent: 2
- - uid: 5854
+ - uid: 13036
components:
- type: Transform
- pos: 7.5,-25.5
+ pos: -98.5,-7.5
parent: 2
- - uid: 5855
+ - uid: 13037
components:
- type: Transform
- pos: 6.5,-25.5
+ pos: 28.5,96.5
parent: 2
- - uid: 5856
+ - uid: 13038
components:
- type: Transform
- pos: 5.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-30.5
parent: 2
- - uid: 5857
+ - uid: 13039
components:
- type: Transform
- pos: 4.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-12.5
parent: 2
- - uid: 5858
+ - uid: 13040
components:
- type: Transform
- pos: 3.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-7.5
parent: 2
- - uid: 5859
+ - uid: 13041
components:
- type: Transform
- pos: 2.5,-25.5
+ pos: -50.5,-66.5
parent: 2
- - uid: 5860
+ - uid: 13042
components:
- type: Transform
- pos: 9.5,-25.5
+ pos: -74.5,37.5
parent: 2
- - uid: 5861
+ - uid: 13043
components:
- type: Transform
- pos: 10.5,-25.5
+ pos: -98.5,-12.5
parent: 2
- - uid: 5862
+ - uid: 13044
components:
- type: Transform
- pos: 11.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-13.5
parent: 2
- - uid: 5863
+ - uid: 13045
components:
- type: Transform
- pos: 12.5,-25.5
+ pos: 28.5,87.5
parent: 2
- - uid: 5864
+ - uid: 13046
components:
- type: Transform
- pos: 13.5,-25.5
+ pos: -87.5,14.5
parent: 2
- - uid: 5865
+ - uid: 13047
components:
- type: Transform
- pos: 14.5,-25.5
+ pos: -43.5,-56.5
parent: 2
- - uid: 5866
+ - uid: 13048
components:
- type: Transform
- pos: 8.5,-26.5
+ pos: -49.5,-74.5
parent: 2
- - uid: 5867
+ - uid: 13049
components:
- type: Transform
- pos: 8.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-55.5
parent: 2
- - uid: 5868
+ - uid: 13050
components:
- type: Transform
- pos: 5.5,-26.5
+ pos: 21.5,87.5
parent: 2
- - uid: 5869
+ - uid: 13051
components:
- type: Transform
- pos: 5.5,-27.5
+ pos: -86.5,-13.5
parent: 2
- - uid: 5870
+ - uid: 13052
components:
- type: Transform
- pos: 13.5,-26.5
+ pos: -98.5,-13.5
parent: 2
- - uid: 5871
+ - uid: 13053
components:
- type: Transform
- pos: 13.5,-27.5
+ pos: -93.5,-3.5
parent: 2
- - uid: 5872
+ - uid: 13054
components:
- type: Transform
- pos: 12.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,12.5
parent: 2
- - uid: 5873
+ - uid: 13055
components:
- type: Transform
- pos: 12.5,-30.5
+ pos: -45.5,62.5
parent: 2
- - uid: 5874
+ - uid: 13056
components:
- type: Transform
- pos: 12.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-56.5
parent: 2
- - uid: 5875
+ - uid: 13057
components:
- type: Transform
- pos: 11.5,-30.5
+ pos: -86.5,-7.5
parent: 2
- - uid: 5876
+ - uid: 13058
components:
- type: Transform
- pos: 10.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-67.5
parent: 2
- - uid: 5877
+ - uid: 13059
components:
- type: Transform
- pos: 13.5,-30.5
+ pos: -87.5,-1.5
parent: 2
- - uid: 5878
+ - uid: 13060
components:
- type: Transform
- pos: 14.5,-30.5
+ pos: -74.5,36.5
parent: 2
- - uid: 5879
+ - uid: 13061
components:
- type: Transform
- pos: 12.5,-24.5
+ pos: -72.5,73.5
parent: 2
- - uid: 5880
+ - uid: 13062
components:
- type: Transform
- pos: 12.5,-23.5
+ pos: -74.5,32.5
parent: 2
- - uid: 5881
+ - uid: 13063
components:
- type: Transform
- pos: 12.5,-22.5
+ pos: -56.5,-89.5
parent: 2
- - uid: 5882
+ - uid: 13064
components:
- type: Transform
- pos: 5.5,-24.5
+ pos: -74.5,31.5
parent: 2
- - uid: 5883
+ - uid: 13065
components:
- type: Transform
- pos: 5.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-61.5
parent: 2
- - uid: 5884
+ - uid: 13066
components:
- type: Transform
- pos: 5.5,-22.5
+ pos: -51.5,-80.5
parent: 2
- - uid: 5885
+ - uid: 13067
components:
- type: Transform
- pos: 43.5,-45.5
+ pos: -73.5,66.5
parent: 2
- - uid: 5886
+ - uid: 13068
components:
- type: Transform
- pos: 43.5,-46.5
+ pos: -55.5,29.5
parent: 2
- - uid: 5887
+ - uid: 13069
components:
- type: Transform
- pos: 44.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-57.5
parent: 2
- - uid: 5888
+ - uid: 13070
components:
- type: Transform
- pos: 45.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-19.5
parent: 2
- - uid: 5889
+ - uid: 13071
components:
- type: Transform
- pos: 46.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,51.5
parent: 2
- - uid: 5890
+ - uid: 13072
components:
- type: Transform
- pos: 47.5,-46.5
+ pos: 28.5,102.5
parent: 2
- - uid: 5891
+ - uid: 13073
components:
- type: Transform
- pos: 48.5,-46.5
+ pos: 24.5,99.5
parent: 2
- - uid: 5892
+ - uid: 13074
components:
- type: Transform
- pos: 49.5,-46.5
+ pos: -75.5,76.5
parent: 2
- - uid: 5893
+ - uid: 13075
components:
- type: Transform
- pos: 50.5,-46.5
+ pos: 21.5,95.5
parent: 2
- - uid: 5894
+ - uid: 13076
components:
- type: Transform
- pos: 51.5,-46.5
+ pos: -43.5,62.5
parent: 2
- - uid: 5895
+ - uid: 13077
components:
- type: Transform
- pos: 51.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-71.5
parent: 2
- - uid: 5896
+ - uid: 13078
components:
- type: Transform
- pos: 51.5,-44.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-55.5
parent: 2
- - uid: 5897
+ - uid: 13079
components:
- type: Transform
- pos: 51.5,-43.5
+ pos: -78.5,77.5
parent: 2
- - uid: 5898
+ - uid: 13080
components:
- type: Transform
- pos: 51.5,-42.5
+ pos: -73.5,-43.5
parent: 2
- - uid: 5899
+ - uid: 13081
components:
- type: Transform
- pos: 51.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-3.5
parent: 2
- - uid: 5900
+ - uid: 13082
components:
- type: Transform
- pos: 51.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-23.5
parent: 2
- - uid: 5901
+ - uid: 13083
components:
- type: Transform
- pos: 51.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-46.5
parent: 2
- - uid: 5902
+ - uid: 13084
components:
- type: Transform
- pos: 51.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,24.5
parent: 2
- - uid: 5903
+ - uid: 13085
components:
- type: Transform
- pos: 51.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 45.5,-10.5
parent: 2
- - uid: 5904
+ - uid: 13086
components:
- type: Transform
- pos: 51.5,-36.5
+ pos: -64.5,66.5
parent: 2
- - uid: 5905
+ - uid: 13087
components:
- type: Transform
- pos: 51.5,-35.5
+ pos: -51.5,-82.5
parent: 2
- - uid: 5906
+ - uid: 13088
components:
- type: Transform
- pos: 51.5,-34.5
+ pos: -16.5,-84.5
parent: 2
- - uid: 5907
+ - uid: 13089
components:
- type: Transform
- pos: 51.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-61.5
parent: 2
- - uid: 5908
+ - uid: 13090
components:
- type: Transform
- pos: 51.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-27.5
parent: 2
- - uid: 5909
+ - uid: 13091
components:
- type: Transform
- pos: 51.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-24.5
parent: 2
- - uid: 5910
+ - uid: 13092
components:
- type: Transform
- pos: 51.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,31.5
parent: 2
- - uid: 5911
+ - uid: 13093
components:
- type: Transform
- pos: 51.5,-29.5
+ pos: -4.5,30.5
parent: 2
- - uid: 5912
+ - uid: 13094
components:
- type: Transform
- pos: 51.5,-28.5
+ pos: -52.5,-85.5
parent: 2
- - uid: 5913
+ - uid: 13095
components:
- type: Transform
- pos: 50.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,40.5
parent: 2
- - uid: 5914
+ - uid: 13096
components:
- type: Transform
- pos: 49.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,12.5
parent: 2
- - uid: 5915
+ - uid: 13097
components:
- type: Transform
- pos: 46.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,32.5
parent: 2
- - uid: 5916
+ - uid: 13098
components:
- type: Transform
- pos: 46.5,-27.5
+ pos: -77.5,77.5
parent: 2
- - uid: 5917
+ - uid: 13099
components:
- type: Transform
- pos: 46.5,-28.5
+ pos: -63.5,-50.5
parent: 2
- - uid: 5918
+ - uid: 13100
components:
- type: Transform
- pos: 45.5,-28.5
+ pos: -45.5,60.5
parent: 2
- - uid: 5919
+ - uid: 13101
components:
- type: Transform
- pos: 44.5,-28.5
+ pos: -51.5,-85.5
parent: 2
- - uid: 5920
+ - uid: 13102
components:
- type: Transform
- pos: 43.5,-28.5
+ pos: -75.5,74.5
parent: 2
- - uid: 5921
+ - uid: 13103
components:
- type: Transform
- pos: 42.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-6.5
parent: 2
- - uid: 5922
+ - uid: 13104
components:
- type: Transform
- pos: 41.5,-28.5
+ pos: 28.5,92.5
parent: 2
- - uid: 5923
+ - uid: 13105
components:
- type: Transform
- pos: 40.5,-28.5
+ pos: 24.5,91.5
parent: 2
- - uid: 5924
+ - uid: 13106
components:
- type: Transform
- pos: 40.5,-27.5
+ pos: -51.5,-74.5
parent: 2
- - uid: 5925
+ - uid: 13107
components:
- type: Transform
- pos: 40.5,-26.5
+ pos: 30.5,22.5
parent: 2
- - uid: 5926
+ - uid: 13108
components:
- type: Transform
- pos: 40.5,-25.5
+ pos: -75.5,67.5
parent: 2
- - uid: 5927
+ - uid: 13109
components:
- type: Transform
- pos: 40.5,-24.5
+ pos: -77.5,69.5
parent: 2
- - uid: 5928
+ - uid: 13110
components:
- type: Transform
- pos: 40.5,-23.5
+ pos: -46.5,-85.5
parent: 2
- - uid: 5929
+ - uid: 13111
components:
- type: Transform
- pos: 40.5,-22.5
+ pos: -79.5,69.5
parent: 2
- - uid: 5930
+ - uid: 13112
components:
- type: Transform
- pos: -3.5,-62.5
+ pos: -50.5,-89.5
parent: 2
- - uid: 5931
+ - uid: 13113
components:
- type: Transform
- pos: -3.5,-63.5
+ pos: -69.5,73.5
parent: 2
- - uid: 5932
+ - uid: 13114
components:
- type: Transform
- pos: -3.5,-64.5
+ pos: -50.5,-85.5
parent: 2
- - uid: 5933
+ - uid: 13115
components:
- type: Transform
- pos: -3.5,-65.5
+ pos: -82.5,73.5
parent: 2
- - uid: 5934
+ - uid: 13116
components:
- type: Transform
- pos: -3.5,-66.5
+ pos: -79.5,73.5
parent: 2
- - uid: 5935
+ - uid: 13117
components:
- type: Transform
- pos: -3.5,-67.5
+ pos: -44.5,59.5
parent: 2
- - uid: 5936
+ - uid: 13118
components:
- type: Transform
- pos: -3.5,-68.5
+ pos: 26.5,99.5
parent: 2
- - uid: 5937
+ - uid: 13119
components:
- type: Transform
- pos: -3.5,-69.5
+ pos: -39.5,42.5
parent: 2
- - uid: 5938
+ - uid: 13120
components:
- type: Transform
- pos: -3.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,37.5
parent: 2
- - uid: 5939
+ - uid: 13121
components:
- type: Transform
- pos: -3.5,-71.5
+ pos: -95.5,-13.5
parent: 2
- - uid: 5940
+ - uid: 13122
components:
- type: Transform
- pos: -3.5,-72.5
+ pos: -98.5,-3.5
parent: 2
- - uid: 5941
+ - uid: 13123
components:
- type: Transform
- pos: -3.5,-73.5
+ pos: -89.5,-8.5
parent: 2
- - uid: 5942
+ - uid: 13124
components:
- type: Transform
- pos: -3.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-72.5
parent: 2
- - uid: 5943
+ - uid: 13125
components:
- type: Transform
- pos: -3.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-23.5
parent: 2
- - uid: 5944
+ - uid: 13126
components:
- type: Transform
- pos: -3.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-20.5
parent: 2
- - uid: 5945
+ - uid: 13127
components:
- type: Transform
- pos: -3.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-19.5
parent: 2
- - uid: 5946
+ - uid: 13128
components:
- type: Transform
- pos: -3.5,-78.5
+ pos: -39.5,-2.5
parent: 2
- - uid: 5947
+ - uid: 13129
components:
- type: Transform
- pos: -3.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,25.5
parent: 2
- - uid: 5948
+ - uid: 13130
components:
- type: Transform
- pos: -3.5,-80.5
+ pos: -41.5,43.5
parent: 2
- - uid: 5949
+ - uid: 13131
components:
- type: Transform
- pos: -3.5,-81.5
+ pos: -74.5,30.5
parent: 2
- - uid: 5950
+ - uid: 13132
components:
- type: Transform
- pos: 39.5,-22.5
+ pos: 25.5,71.5
parent: 2
- - uid: 5951
+ - uid: 13133
components:
- type: Transform
- pos: 38.5,-22.5
+ pos: -81.5,77.5
parent: 2
- - uid: 5952
+ - uid: 13134
components:
- type: Transform
- pos: 37.5,-22.5
+ pos: -71.5,66.5
parent: 2
- - uid: 5953
+ - uid: 13135
components:
- type: Transform
- pos: 36.5,-22.5
+ pos: -86.5,-3.5
parent: 2
- - uid: 5954
+ - uid: 13136
components:
- type: Transform
- pos: 35.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-59.5
parent: 2
- - uid: 5955
+ - uid: 13137
components:
- type: Transform
- pos: 34.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-58.5
parent: 2
- - uid: 5956
+ - uid: 13138
components:
- type: Transform
- pos: 34.5,-21.5
+ pos: -40.5,42.5
parent: 2
- - uid: 5957
+ - uid: 13139
components:
- type: Transform
- pos: 34.5,-20.5
+ pos: 33.5,62.5
parent: 2
- - uid: 5958
+ - uid: 13140
components:
- type: Transform
- pos: 34.5,-19.5
+ pos: -45.5,-56.5
parent: 2
- - uid: 5959
+ - uid: 13141
components:
- type: Transform
- pos: 33.5,-19.5
+ pos: 32.5,95.5
parent: 2
- - uid: 5960
+ - uid: 13142
components:
- type: Transform
- pos: 32.5,-19.5
+ pos: 23.5,95.5
parent: 2
- - uid: 5961
+ - uid: 13143
components:
- type: Transform
- pos: 31.5,-19.5
+ pos: -50.5,-81.5
parent: 2
- - uid: 5962
+ - uid: 13144
components:
- type: Transform
- pos: 30.5,-19.5
+ pos: -86.5,-12.5
parent: 2
- - uid: 5963
+ - uid: 13145
components:
- type: Transform
- pos: 29.5,-19.5
+ pos: -69.5,0.5
parent: 2
- - uid: 5964
+ - uid: 13146
components:
- type: Transform
- pos: 28.5,-19.5
+ pos: -97.5,-13.5
parent: 2
- - uid: 5965
+ - uid: 13147
components:
- type: Transform
- pos: 27.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,46.5
parent: 2
- - uid: 5966
+ - uid: 13148
components:
- type: Transform
- pos: 26.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -73.5,55.5
parent: 2
- - uid: 5967
+ - uid: 13149
components:
- type: Transform
- pos: 25.5,-19.5
+ pos: -42.5,-47.5
parent: 2
- - uid: 5968
+ - uid: 13150
components:
- type: Transform
- pos: 25.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,45.5
parent: 2
- - uid: 5969
+ - uid: 13151
components:
- type: Transform
- pos: 24.5,-20.5
+ pos: -75.5,77.5
parent: 2
- - uid: 5970
+ - uid: 13152
components:
- type: Transform
- pos: 23.5,-20.5
+ pos: 28.5,94.5
parent: 2
- - uid: 5971
+ - uid: 13153
components:
- type: Transform
- pos: 22.5,-20.5
+ pos: -52.5,-62.5
parent: 2
- - uid: 5972
+ - uid: 13154
components:
- type: Transform
- pos: 21.5,-20.5
+ pos: -51.5,-88.5
parent: 2
- - uid: 5973
+ - uid: 13155
components:
- type: Transform
- pos: 21.5,-19.5
+ pos: 33.5,95.5
parent: 2
- - uid: 5974
+ - uid: 13156
components:
- type: Transform
- pos: 21.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-4.5
parent: 2
- - uid: 5975
+ - uid: 13157
components:
- type: Transform
- pos: 21.5,-17.5
+ pos: -42.5,-48.5
parent: 2
- - uid: 5976
+ - uid: 13158
components:
- type: Transform
- pos: -2.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-3.5
parent: 2
- - uid: 5977
+ - uid: 13159
components:
- type: Transform
- pos: 21.5,-21.5
+ pos: 29.5,95.5
parent: 2
- - uid: 5978
+ - uid: 13160
components:
- type: Transform
- pos: 21.5,-22.5
+ pos: 24.5,95.5
parent: 2
- - uid: 5979
+ - uid: 13161
components:
- type: Transform
- pos: -1.5,-69.5
+ pos: 22.5,95.5
parent: 2
- - uid: 5980
+ - uid: 13162
components:
- type: Transform
- pos: 20.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-3.5
parent: 2
- - uid: 5981
+ - uid: 13163
components:
- type: Transform
- pos: -4.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-3.5
parent: 2
- - uid: 5982
+ - uid: 13164
components:
- type: Transform
- pos: -5.5,-69.5
+ pos: -48.5,-81.5
parent: 2
- - uid: 5983
+ - uid: 13165
components:
- type: Transform
- pos: 24.5,-22.5
+ pos: -77.5,73.5
parent: 2
- - uid: 5984
+ - uid: 13166
components:
- type: Transform
- pos: 24.5,-21.5
+ pos: -74.5,25.5
parent: 2
- - uid: 5985
+ - uid: 13167
components:
- type: Transform
- pos: -6.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-64.5
parent: 2
- - uid: 5986
+ - uid: 13168
components:
- type: Transform
- pos: -7.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-19.5
parent: 2
- - uid: 5987
+ - uid: 13169
components:
- type: Transform
- pos: -8.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-20.5
parent: 2
- - uid: 5988
+ - uid: 13170
components:
- type: Transform
- pos: -9.5,-69.5
+ pos: 23.5,60.5
parent: 2
- - uid: 5989
+ - uid: 13171
components:
- type: Transform
- pos: -9.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-11.5
parent: 2
- - uid: 5990
+ - uid: 13172
components:
- type: Transform
- pos: -9.5,-67.5
+ pos: 10.5,93.5
parent: 2
- - uid: 5991
+ - uid: 13173
components:
- type: Transform
- pos: -9.5,-66.5
+ pos: -74.5,26.5
parent: 2
- - uid: 5992
+ - uid: 13174
components:
- type: Transform
- pos: -9.5,-65.5
+ pos: -74.5,24.5
parent: 2
- - uid: 5993
+ - uid: 13175
components:
- type: Transform
- pos: -9.5,-64.5
+ pos: -74.5,73.5
parent: 2
- - uid: 5994
+ - uid: 13176
components:
- type: Transform
- pos: 42.5,-46.5
+ pos: 70.5,-51.5
parent: 2
- - uid: 5995
+ - uid: 13177
components:
- type: Transform
- pos: 41.5,-46.5
+ pos: 23.5,61.5
parent: 2
- - uid: 5996
+ - uid: 13178
components:
- type: Transform
- pos: 40.5,-46.5
+ pos: -53.5,-62.5
parent: 2
- - uid: 5997
+ - uid: 13179
components:
- type: Transform
- pos: 39.5,-46.5
+ pos: -74.5,29.5
parent: 2
- - uid: 5998
+ - uid: 13180
components:
- type: Transform
- pos: 38.5,-46.5
+ pos: -76.5,73.5
parent: 2
- - uid: 5999
+ - uid: 13181
components:
- type: Transform
- pos: 37.5,-46.5
+ pos: -45.5,-54.5
parent: 2
- - uid: 6000
+ - uid: 13182
components:
- type: Transform
- pos: 37.5,-47.5
+ pos: -93.5,-11.5
parent: 2
- - uid: 6001
+ - uid: 13183
components:
- type: Transform
- pos: 37.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,-11.5
parent: 2
- - uid: 6002
+ - uid: 13184
components:
- type: Transform
- pos: 37.5,-49.5
+ pos: -72.5,66.5
parent: 2
- - uid: 6003
+ - uid: 13185
components:
- type: Transform
- pos: 37.5,-50.5
+ pos: -49.5,-69.5
parent: 2
- - uid: 6004
+ - uid: 13186
components:
- type: Transform
- pos: 37.5,-51.5
+ pos: 33.5,60.5
parent: 2
- - uid: 6005
+ - uid: 13187
components:
- type: Transform
- pos: 37.5,-52.5
+ pos: 26.5,95.5
parent: 2
- - uid: 6006
+ - uid: 13188
components:
- type: Transform
- pos: 37.5,-53.5
+ pos: -74.5,66.5
parent: 2
- - uid: 6007
+ - uid: 13189
components:
- type: Transform
- pos: 37.5,-54.5
+ pos: -69.5,77.5
parent: 2
- - uid: 6008
+ - uid: 13190
components:
- type: Transform
- pos: 37.5,-55.5
+ pos: -49.5,-81.5
parent: 2
- - uid: 6009
+ - uid: 13191
components:
- type: Transform
- pos: -4.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,42.5
parent: 2
- - uid: 6010
+ - uid: 13192
components:
- type: Transform
- pos: -5.5,-64.5
+ pos: -98.5,-11.5
parent: 2
- - uid: 6011
+ - uid: 13193
components:
- type: Transform
- pos: -6.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-55.5
parent: 2
- - uid: 6012
+ - uid: 13194
components:
- type: Transform
- pos: 36.5,-55.5
+ pos: -47.5,-85.5
parent: 2
- - uid: 6013
+ - uid: 13195
components:
- type: Transform
- pos: 35.5,-55.5
+ pos: -68.5,73.5
parent: 2
- - uid: 6014
+ - uid: 13196
components:
- type: Transform
- pos: 34.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-19.5
parent: 2
- - uid: 6015
+ - uid: 13197
components:
- type: Transform
- pos: 33.5,-55.5
+ pos: -87.5,-13.5
parent: 2
- - uid: 6016
+ - uid: 13198
components:
- type: Transform
- pos: 32.5,-55.5
+ pos: -96.5,-1.5
parent: 2
- - uid: 6017
+ - uid: 13199
components:
- type: Transform
- pos: 31.5,-55.5
+ pos: -50.5,-74.5
parent: 2
- - uid: 6018
+ - uid: 13200
components:
- type: Transform
- pos: 30.5,-55.5
+ pos: -75.5,68.5
parent: 2
- - uid: 6019
+ - uid: 13201
components:
- type: Transform
- pos: 31.5,-54.5
+ pos: 25.5,70.5
parent: 2
- - uid: 6020
+ - uid: 13202
components:
- type: Transform
- pos: -2.5,-64.5
+ pos: -51.5,-91.5
parent: 2
- - uid: 6021
+ - uid: 13203
components:
- type: Transform
- pos: -1.5,-64.5
+ pos: -71.5,77.5
parent: 2
- - uid: 6022
+ - uid: 13204
components:
- type: Transform
- pos: -0.5,-64.5
+ pos: 33.5,91.5
parent: 2
- - uid: 6023
+ - uid: 13205
components:
- type: Transform
- pos: 0.49999997,-64.5
+ pos: 27.5,99.5
parent: 2
- - uid: 6024
+ - uid: 13206
components:
- type: Transform
- pos: 38.5,-52.5
+ pos: -55.5,-85.5
parent: 2
- - uid: 6025
+ - uid: 13207
components:
- type: Transform
- pos: 39.5,-52.5
+ pos: -44.5,-85.5
parent: 2
- - uid: 6026
+ - uid: 13208
components:
- type: Transform
- pos: 40.5,-52.5
+ pos: -88.5,12.5
parent: 2
- - uid: 6027
+ - uid: 13209
components:
- type: Transform
- pos: 41.5,-52.5
+ pos: 25.5,87.5
parent: 2
- - uid: 6028
+ - uid: 13210
components:
- type: Transform
- pos: 42.5,-52.5
+ pos: 24.5,87.5
parent: 2
- - uid: 6029
+ - uid: 13211
components:
- type: Transform
- pos: 43.5,-52.5
+ pos: -94.5,-1.5
parent: 2
- - uid: 6030
+ - uid: 13212
components:
- type: Transform
- pos: 44.5,-52.5
+ pos: -69.5,-1.5
parent: 2
- - uid: 6031
+ - uid: 13213
components:
- type: Transform
- pos: 45.5,-52.5
+ pos: -86.5,-2.5
parent: 2
- - uid: 6032
+ - uid: 13214
components:
- type: Transform
- pos: 46.5,-52.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,37.5
parent: 2
- - uid: 6033
+ - uid: 13215
components:
- type: Transform
- pos: -0.5,-69.5
+ pos: -74.5,77.5
parent: 2
- - uid: 6034
+ - uid: 13216
components:
- type: Transform
- pos: 47.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,48.5
parent: 2
- - uid: 6035
+ - uid: 13217
components:
- type: Transform
- pos: 47.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-28.5
parent: 2
- - uid: 6036
+ - uid: 13218
components:
- type: Transform
- pos: 47.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,43.5
parent: 2
- - uid: 6037
+ - uid: 13219
components:
- type: Transform
- pos: 47.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,42.5
parent: 2
- - uid: 6038
+ - uid: 13220
components:
- type: Transform
- pos: 0.49999997,-69.5
+ pos: -88.5,15.5
parent: 2
- - uid: 6039
+ - uid: 13221
components:
- type: Transform
- pos: 47.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,40.5
parent: 2
- - uid: 6040
+ - uid: 13222
components:
- type: Transform
- pos: 47.5,-54.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,39.5
parent: 2
- - uid: 6041
+ - uid: 13223
components:
- type: Transform
- pos: 1.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,38.5
parent: 2
- - uid: 6042
+ - uid: 13224
components:
- type: Transform
- pos: 47.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: -73.5,38.5
parent: 2
- - uid: 6043
+ - uid: 13225
components:
- type: Transform
- pos: 1.5,-68.5
+ rot: 1.5707963267948966 rad
+ pos: -71.5,38.5
parent: 2
- - uid: 6044
+ - uid: 13226
components:
- type: Transform
- pos: 1.5,-67.5
+ rot: 1.5707963267948966 rad
+ pos: -70.5,38.5
parent: 2
- - uid: 6045
+ - uid: 13227
components:
- type: Transform
- pos: 1.5,-66.5
+ rot: 1.5707963267948966 rad
+ pos: -72.5,38.5
parent: 2
- - uid: 6046
+ - uid: 13228
components:
- type: Transform
- pos: 1.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: -69.5,38.5
parent: 2
- - uid: 6047
+ - uid: 13229
components:
- type: Transform
- pos: 50.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-75.5
parent: 2
- - uid: 6048
+ - uid: 13230
components:
- type: Transform
- pos: 50.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-38.5
parent: 2
- - uid: 6049
+ - uid: 13231
components:
- type: Transform
- pos: 50.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-10.5
parent: 2
- - uid: 6050
+ - uid: 13232
components:
- type: Transform
- pos: 50.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-10.5
parent: 2
- - uid: 6051
+ - uid: 13233
components:
- type: Transform
- pos: 50.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-36.5
parent: 2
- - uid: 6052
+ - uid: 13234
components:
- type: Transform
- pos: 50.5,-52.5
+ pos: -27.5,-84.5
parent: 2
- - uid: 6053
+ - uid: 13235
components:
- type: Transform
- pos: 50.5,-53.5
+ pos: -88.5,14.5
parent: 2
- - uid: 6054
+ - uid: 13236
components:
- type: Transform
- pos: 50.5,-54.5
+ pos: -53.5,-81.5
parent: 2
- - uid: 6055
+ - uid: 13237
components:
- type: Transform
- pos: 50.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,25.5
parent: 2
- - uid: 6056
+ - uid: 13238
components:
- type: Transform
- pos: 1.5,-70.5
+ pos: -52.5,-33.5
parent: 2
- - uid: 6057
+ - uid: 13239
components:
- type: Transform
- pos: 1.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,28.5
parent: 2
- - uid: 6058
+ - uid: 13240
components:
- type: Transform
- pos: 1.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-34.5
parent: 2
- - uid: 6059
+ - uid: 13241
components:
- type: Transform
- pos: 1.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-28.5
parent: 2
- - uid: 6060
+ - uid: 13242
components:
- type: Transform
- pos: 1.5,-74.5
+ pos: -55.5,-34.5
parent: 2
- - uid: 6061
+ - uid: 13243
components:
- type: Transform
- pos: 1.5,-75.5
+ pos: -55.5,-35.5
parent: 2
- - uid: 6062
+ - uid: 13244
components:
- type: Transform
- pos: 1.5,-76.5
+ pos: -55.5,-36.5
parent: 2
- - uid: 6063
+ - uid: 13245
components:
- type: Transform
- pos: 1.5,-77.5
+ pos: -54.5,-36.5
parent: 2
- - uid: 6064
+ - uid: 13246
components:
- type: Transform
- pos: 1.5,-78.5
+ pos: -54.5,-37.5
parent: 2
- - uid: 6065
+ - uid: 13247
components:
- type: Transform
- pos: 1.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-55.5
parent: 2
- - uid: 6066
+ - uid: 13248
components:
- type: Transform
- pos: 1.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-55.5
parent: 2
- - uid: 6067
+ - uid: 13249
components:
- type: Transform
- pos: 1.5,-81.5
+ pos: -48.5,-40.5
parent: 2
- - uid: 6068
+ - uid: 13250
components:
- type: Transform
- pos: 52.5,-46.5
+ pos: -47.5,-39.5
parent: 2
- - uid: 6069
+ - uid: 13251
components:
- type: Transform
- pos: 53.5,-46.5
+ pos: -46.5,-39.5
parent: 2
- - uid: 6070
+ - uid: 13252
components:
- type: Transform
- pos: 54.5,-46.5
+ pos: -44.5,-40.5
parent: 2
- - uid: 6071
+ - uid: 13253
components:
- type: Transform
- pos: 55.5,-46.5
+ pos: -43.5,-40.5
parent: 2
- - uid: 6072
+ - uid: 13254
components:
- type: Transform
- pos: 56.5,-46.5
+ pos: -74.5,34.5
parent: 2
- - uid: 6073
+ - uid: 13255
components:
- type: Transform
- pos: -2.5,-75.5
+ pos: -74.5,28.5
parent: 2
- - uid: 6074
+ - uid: 13256
components:
- type: Transform
- pos: -1.5,-75.5
+ pos: -48.5,-74.5
parent: 2
- - uid: 6075
+ - uid: 13257
components:
- type: Transform
- pos: -0.5,-75.5
+ pos: 25.5,95.5
parent: 2
- - uid: 6076
+ - uid: 13258
components:
- type: Transform
- pos: 52.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-35.5
parent: 2
- - uid: 6077
+ - uid: 13259
components:
- type: Transform
- pos: 53.5,-43.5
+ pos: 28.5,91.5
parent: 2
- - uid: 6078
+ - uid: 13260
components:
- type: Transform
- pos: 54.5,-43.5
+ pos: -58.5,-85.5
parent: 2
- - uid: 6079
+ - uid: 13261
components:
- type: Transform
- pos: 55.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: 65.5,-40.5
parent: 2
- - uid: 6080
+ - uid: 13262
components:
- type: Transform
- pos: 0.49999997,-75.5
+ pos: 34.5,99.5
parent: 2
- - uid: 6081
+ - uid: 13263
components:
- type: Transform
- pos: -4.5,-75.5
+ pos: 10.5,92.5
parent: 2
- - uid: 6082
+ - uid: 13264
components:
- type: Transform
- pos: -9.5,-70.5
+ pos: -51.5,-77.5
parent: 2
- - uid: 6083
+ - uid: 13265
components:
- type: Transform
- pos: -9.5,-71.5
+ pos: 19.5,87.5
parent: 2
- - uid: 6084
+ - uid: 13266
components:
- type: Transform
- pos: -9.5,-72.5
+ pos: -41.5,-5.5
parent: 2
- - uid: 6085
+ - uid: 13267
components:
- type: Transform
- pos: -9.5,-73.5
+ pos: -41.5,-11.5
parent: 2
- - uid: 6086
+ - uid: 13268
components:
- type: Transform
- pos: -9.5,-74.5
+ rot: 1.5707963267948966 rad
+ pos: -69.5,54.5
parent: 2
- - uid: 6087
+ - uid: 13269
components:
- type: Transform
- pos: -9.5,-75.5
+ rot: 1.5707963267948966 rad
+ pos: -73.5,53.5
parent: 2
- - uid: 6088
+ - uid: 13270
components:
- type: Transform
- pos: -9.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,38.5
parent: 2
- - uid: 6089
+ - uid: 13271
components:
- type: Transform
- pos: -8.5,-75.5
+ pos: -41.5,-6.5
parent: 2
- - uid: 6090
+ - uid: 13272
components:
- type: Transform
- pos: -7.5,-75.5
+ pos: 31.5,95.5
parent: 2
- - uid: 6091
+ - uid: 13273
components:
- type: Transform
- pos: -6.5,-75.5
+ pos: -39.5,-3.5
parent: 2
- - uid: 6092
+ - uid: 13274
components:
- type: Transform
- pos: -5.5,-75.5
+ pos: -54.5,-85.5
parent: 2
- - uid: 6093
+ - uid: 13275
components:
- type: Transform
- pos: 52.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,12.5
parent: 2
- - uid: 6094
+ - uid: 13276
components:
- type: Transform
- pos: 52.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-54.5
parent: 2
- - uid: 6095
+ - uid: 13277
components:
- type: Transform
- pos: 53.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-71.5
parent: 2
- - uid: 6096
+ - uid: 13278
components:
- type: Transform
- pos: 50.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-71.5
parent: 2
- - uid: 6097
+ - uid: 13279
components:
- type: Transform
- pos: 49.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-20.5
parent: 2
- - uid: 6098
+ - uid: 13280
components:
- type: Transform
- pos: 48.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-21.5
parent: 2
- - uid: 6099
+ - uid: 13281
components:
- type: Transform
- pos: 47.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-19.5
parent: 2
- - uid: 6100
+ - uid: 13282
components:
- type: Transform
- pos: 46.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-54.5
parent: 2
- - uid: 6101
+ - uid: 13283
components:
- type: Transform
- pos: 45.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-53.5
parent: 2
- - uid: 6102
+ - uid: 13284
components:
- type: Transform
- pos: 44.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-46.5
parent: 2
- - uid: 6103
+ - uid: 13285
components:
- type: Transform
- pos: 43.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-52.5
parent: 2
- - uid: 6104
+ - uid: 13286
components:
- type: Transform
- pos: 42.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-46.5
parent: 2
- - uid: 6105
+ - uid: 13287
components:
- type: Transform
- pos: 41.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-46.5
parent: 2
- - uid: 6106
+ - uid: 13288
components:
- type: Transform
- pos: 41.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-23.5
parent: 2
- - uid: 6107
+ - uid: 13289
components:
- type: Transform
- pos: 41.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-23.5
parent: 2
- - uid: 6108
+ - uid: 13290
components:
- type: Transform
- pos: 41.5,-32.5
+ pos: -51.5,-89.5
parent: 2
- - uid: 6109
+ - uid: 13291
components:
- type: Transform
- pos: 41.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,44.5
parent: 2
- - uid: 6110
+ - uid: 13292
components:
- type: Transform
- pos: 41.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,49.5
parent: 2
- - uid: 6111
+ - uid: 13293
components:
- type: Transform
- pos: 41.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,33.5
parent: 2
- - uid: 6112
+ - uid: 13294
components:
- type: Transform
- pos: 41.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-55.5
parent: 2
- - uid: 6113
+ - uid: 13295
components:
- type: Transform
- pos: 41.5,-37.5
+ pos: 34.5,95.5
parent: 2
- - uid: 6114
+ - uid: 13296
components:
- type: Transform
- pos: 41.5,-38.5
+ pos: -47.5,-81.5
parent: 2
- - uid: 6115
+ - uid: 13297
components:
- type: Transform
- pos: 41.5,-39.5
+ pos: -70.5,66.5
parent: 2
- - uid: 6116
+ - uid: 13298
components:
- type: Transform
- pos: 41.5,-40.5
+ pos: -78.5,69.5
parent: 2
- - uid: 6117
+ - uid: 13299
components:
- type: Transform
- pos: 41.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-61.5
parent: 2
- - uid: 6118
+ - uid: 13300
components:
- type: Transform
- pos: 41.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-10.5
parent: 2
- - uid: 6119
+ - uid: 13301
components:
- type: Transform
- pos: 41.5,-43.5
+ pos: -64.5,-50.5
parent: 2
- - uid: 6120
+ - uid: 13302
components:
- type: Transform
- pos: 41.5,-44.5
+ pos: 16.5,-60.5
parent: 2
- - uid: 6121
+ - uid: 13303
components:
- type: Transform
- pos: 41.5,-45.5
+ pos: 18.5,-58.5
parent: 2
- - uid: 6122
+ - uid: 13304
components:
- type: Transform
- pos: 41.5,-46.5
+ pos: 19.5,-58.5
parent: 2
- - uid: 6123
+ - uid: 13305
components:
- type: Transform
- pos: 42.5,-41.5
+ pos: 20.5,-58.5
parent: 2
- - uid: 6124
+ - uid: 13306
components:
- type: Transform
- pos: 43.5,-41.5
+ pos: 21.5,-58.5
parent: 2
- - uid: 6125
+ - uid: 13307
components:
- type: Transform
- pos: 44.5,-41.5
+ pos: 22.5,-58.5
parent: 2
- - uid: 6126
+ - uid: 13308
components:
- type: Transform
- pos: 45.5,-41.5
+ pos: 23.5,-58.5
parent: 2
- - uid: 6127
+ - uid: 13309
components:
- type: Transform
- pos: 46.5,-41.5
+ pos: 13.5,-80.5
parent: 2
- - uid: 6128
+ - uid: 13310
components:
- type: Transform
- pos: 47.5,-41.5
+ pos: 13.5,-79.5
parent: 2
- - uid: 6129
+ - uid: 13311
components:
- type: Transform
- pos: 48.5,-41.5
+ pos: 13.5,-78.5
parent: 2
- - uid: 6130
+ - uid: 13312
components:
- type: Transform
- pos: 49.5,-41.5
+ pos: 13.5,-73.5
parent: 2
- - uid: 6131
+ - uid: 13313
components:
- type: Transform
- pos: 50.5,-41.5
+ pos: 13.5,-72.5
parent: 2
- - uid: 6132
+ - uid: 13314
components:
- type: Transform
- pos: 46.5,-40.5
+ pos: 13.5,-71.5
parent: 2
- - uid: 6133
+ - uid: 13315
components:
- type: Transform
- pos: 46.5,-39.5
+ pos: 12.5,-65.5
parent: 2
- - uid: 6134
+ - uid: 13316
components:
- type: Transform
- pos: 46.5,-38.5
+ pos: -29.5,-81.5
parent: 2
- - uid: 6135
+ - uid: 13317
components:
- type: Transform
- pos: 46.5,-41.5
+ pos: -37.5,-81.5
parent: 2
- - uid: 6136
+ - uid: 13318
components:
- type: Transform
- pos: 46.5,-42.5
+ pos: 15.5,78.5
parent: 2
- - uid: 6137
+ - uid: 13319
components:
- type: Transform
- pos: 46.5,-43.5
+ pos: 14.5,78.5
parent: 2
- - uid: 6138
+ - uid: 13320
components:
- type: Transform
- pos: 46.5,-44.5
+ pos: 16.5,78.5
parent: 2
- - uid: 6139
+ - uid: 13321
components:
- type: Transform
- pos: 45.5,-44.5
+ pos: 17.5,78.5
parent: 2
- - uid: 6140
+ - uid: 13322
components:
- type: Transform
- pos: 47.5,-44.5
+ pos: 60.5,-40.5
parent: 2
- - uid: 6141
+ - uid: 13323
components:
- type: Transform
- pos: 46.5,-33.5
+ pos: 59.5,-40.5
parent: 2
- - uid: 6142
+ - uid: 13324
components:
- type: Transform
- pos: 46.5,-34.5
+ pos: 58.5,-40.5
parent: 2
- - uid: 6143
+ - uid: 13325
components:
- type: Transform
- pos: 46.5,-31.5
+ pos: 57.5,-40.5
parent: 2
- - uid: 6144
+ - uid: 13326
components:
- type: Transform
- pos: 46.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,-40.5
parent: 2
- - uid: 6145
+ - uid: 13327
components:
- type: Transform
- pos: 46.5,-35.5
+ pos: -88.5,16.5
parent: 2
- - uid: 6146
+ - uid: 13328
components:
- type: Transform
- pos: 44.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 65.5,22.5
parent: 2
- - uid: 6147
+ - uid: 13329
components:
- type: Transform
- pos: 44.5,-18.5
+ pos: -89.5,23.5
parent: 2
- - uid: 6148
+ - uid: 13330
components:
- type: Transform
- pos: 44.5,-19.5
+ pos: -88.5,17.5
parent: 2
- - uid: 6149
+ - uid: 13331
components:
- type: Transform
- pos: 45.5,-19.5
+ pos: -88.5,18.5
parent: 2
- - uid: 6150
+ - uid: 13332
components:
- type: Transform
- pos: 46.5,-19.5
+ pos: -88.5,19.5
parent: 2
- - uid: 6151
+ - uid: 13333
components:
- type: Transform
- pos: 47.5,-19.5
+ pos: -88.5,20.5
parent: 2
- - uid: 6152
+ - uid: 13334
components:
- type: Transform
- pos: 48.5,-19.5
+ pos: -88.5,21.5
parent: 2
- - uid: 6153
+ - uid: 13335
components:
- type: Transform
- pos: 49.5,-19.5
+ pos: -88.5,22.5
parent: 2
- - uid: 6154
+ - uid: 13336
components:
- type: Transform
- pos: 50.5,-19.5
+ pos: -88.5,23.5
parent: 2
- - uid: 6155
+ - uid: 13337
components:
- type: Transform
- pos: 51.5,-19.5
+ pos: -90.5,23.5
parent: 2
- - uid: 6156
+ - uid: 13338
components:
- type: Transform
- pos: 52.5,-19.5
+ pos: -91.5,23.5
parent: 2
- - uid: 6157
+ - uid: 13339
components:
- type: Transform
- pos: 53.5,-19.5
+ pos: -92.5,23.5
parent: 2
- - uid: 6158
+ - uid: 13340
components:
- type: Transform
- pos: 52.5,-22.5
+ pos: -93.5,23.5
parent: 2
- - uid: 6159
+ - uid: 13341
components:
- type: Transform
- pos: 53.5,-18.5
+ pos: -94.5,23.5
parent: 2
- - uid: 6160
+ - uid: 13342
components:
- type: Transform
- pos: 55.5,-8.5
+ pos: -95.5,23.5
parent: 2
- - uid: 6161
+ - uid: 13343
components:
- type: Transform
- pos: 55.5,-9.5
+ pos: -96.5,23.5
parent: 2
- - uid: 6162
+ - uid: 13344
components:
- type: Transform
- pos: 55.5,-10.5
+ pos: -97.5,23.5
parent: 2
- - uid: 6163
+ - uid: 13345
components:
- type: Transform
- pos: 56.5,-10.5
+ pos: -98.5,23.5
parent: 2
- - uid: 6164
+ - uid: 13346
components:
- type: Transform
- pos: 57.5,-10.5
+ pos: -99.5,23.5
parent: 2
- - uid: 6165
+ - uid: 13347
components:
- type: Transform
- pos: 58.5,-10.5
+ pos: -100.5,23.5
parent: 2
- - uid: 6166
+ - uid: 13348
components:
- type: Transform
- pos: 59.5,-10.5
+ pos: -101.5,23.5
parent: 2
- - uid: 6167
+ - uid: 13349
components:
- type: Transform
- pos: 59.5,-11.5
+ pos: -102.5,23.5
parent: 2
- - uid: 6168
+ - uid: 13350
components:
- type: Transform
- pos: 59.5,-12.5
+ pos: -103.5,23.5
parent: 2
- - uid: 6169
+ - uid: 13351
components:
- type: Transform
- pos: 59.5,-13.5
+ pos: -104.5,23.5
parent: 2
- - uid: 6170
+ - uid: 13352
components:
- type: Transform
- pos: 59.5,-14.5
+ pos: -105.5,23.5
parent: 2
- - uid: 6171
+ - uid: 13353
components:
- type: Transform
- pos: 59.5,-15.5
+ pos: -106.5,23.5
parent: 2
- - uid: 6172
+ - uid: 13354
components:
- type: Transform
- pos: 59.5,-16.5
+ pos: -107.5,23.5
parent: 2
- - uid: 6173
+ - uid: 13355
components:
- type: Transform
- pos: 59.5,-17.5
+ pos: -108.5,23.5
parent: 2
- - uid: 6174
+ - uid: 13356
components:
- type: Transform
- pos: 59.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 66.5,22.5
parent: 2
- - uid: 6175
+ - uid: 13357
components:
- type: Transform
- pos: 59.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,22.5
parent: 2
- - uid: 6176
+ - uid: 13358
components:
- type: Transform
- pos: 59.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,23.5
parent: 2
- - uid: 6177
+ - uid: 13359
components:
- type: Transform
- pos: 59.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,25.5
parent: 2
- - uid: 6178
+ - uid: 13360
components:
- type: Transform
- pos: 59.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,24.5
parent: 2
- - uid: 6179
+ - uid: 13361
components:
- type: Transform
- pos: 59.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -79.5,0.5
parent: 2
- - uid: 6180
+ - uid: 13362
components:
- type: Transform
- pos: 59.5,-24.5
+ pos: 5.5,44.5
parent: 2
- - uid: 6181
+ - uid: 13363
components:
- type: Transform
- pos: 59.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,-12.5
parent: 2
- - uid: 6182
+ - uid: 13364
components:
- type: Transform
- pos: 59.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,-13.5
parent: 2
- - uid: 6183
+ - uid: 13365
components:
- type: Transform
- pos: 59.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-13.5
parent: 2
- - uid: 6184
+ - uid: 13366
components:
- type: Transform
- pos: 59.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-12.5
parent: 2
- - uid: 6185
+ - uid: 13367
components:
- type: Transform
- pos: 59.5,-29.5
+ pos: 77.5,4.5
parent: 2
- - uid: 6186
+ - uid: 13368
components:
- type: Transform
- pos: 59.5,-30.5
+ pos: 77.5,3.5
parent: 2
- - uid: 6187
+ - uid: 13369
components:
- type: Transform
- pos: 58.5,-19.5
+ pos: 78.5,4.5
parent: 2
- - uid: 6188
+ - uid: 13370
components:
- type: Transform
- pos: 57.5,-19.5
+ pos: 78.5,3.5
parent: 2
- - uid: 6189
+ - uid: 13371
components:
- type: Transform
- pos: 56.5,-19.5
+ pos: 8.5,-84.5
parent: 2
- - uid: 6190
+ - uid: 13372
components:
- type: Transform
- pos: 55.5,-19.5
+ pos: 9.5,-84.5
parent: 2
- - uid: 6191
+ - uid: 13373
components:
- type: Transform
- pos: 55.5,-20.5
+ pos: 10.5,-84.5
parent: 2
- - uid: 6192
+ - uid: 13374
components:
- type: Transform
- pos: 55.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-76.5
parent: 2
- - uid: 6193
+ - uid: 13375
components:
- type: Transform
- pos: 63.5,-18.5
+ pos: -6.5,30.5
parent: 2
- - uid: 6194
+ - uid: 18303
components:
- type: Transform
- pos: 63.5,-19.5
+ pos: -24.5,26.5
parent: 2
- - uid: 6195
+- proto: Chair
+ entities:
+ - uid: 13376
components:
- type: Transform
- pos: 63.5,-20.5
+ pos: 57.5,-14.5
parent: 2
- - uid: 6196
+ - uid: 13377
components:
- type: Transform
- pos: 63.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 57.5,-25.5
parent: 2
- - uid: 6197
+ - uid: 13378
components:
- type: Transform
- pos: 62.5,-19.5
+ pos: 60.5,-15.5
parent: 2
- - uid: 6198
+ - uid: 13379
components:
- type: Transform
- pos: 61.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,89.5
parent: 2
- - uid: 6199
+ - uid: 13380
components:
- type: Transform
- pos: 60.5,-19.5
+ pos: -31.5,69.5
parent: 2
- - uid: 6200
+ - uid: 13381
components:
- type: Transform
- pos: 55.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,66.5
parent: 2
- - uid: 6201
+ - uid: 13382
components:
- type: Transform
- pos: 56.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,81.5
parent: 2
- - uid: 6202
+ - uid: 13383
components:
- type: Transform
- pos: 57.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,81.5
parent: 2
- - uid: 6203
+ - uid: 13384
components:
- type: Transform
- pos: 58.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,91.5
parent: 2
- - uid: 6204
+ - uid: 13385
components:
- type: Transform
- pos: -15.5,-64.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,80.5
parent: 2
- - uid: 6205
+ - uid: 13386
components:
- type: Transform
- pos: 60.5,-30.5
+ pos: 58.5,-14.5
parent: 2
- - uid: 6206
+ - uid: 13387
components:
- type: Transform
- pos: 61.5,-30.5
+ pos: 59.5,-14.5
parent: 2
- - uid: 6207
+ - uid: 13388
components:
- type: Transform
- pos: 62.5,-30.5
+ pos: 60.5,-14.5
parent: 2
- - uid: 6208
+ - uid: 13389
components:
- type: Transform
- pos: 63.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 57.5,-27.5
parent: 2
- - uid: 6209
+ - uid: 13390
components:
- type: Transform
- pos: 64.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 60.5,-28.5
parent: 2
- - uid: 6210
+ - uid: 13391
components:
- type: Transform
- pos: 65.5,-30.5
+ pos: 58.5,-14.5
parent: 2
- - uid: 6211
+ - uid: 13392
components:
- type: Transform
- pos: -15.5,-65.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,-6.5
parent: 2
- - uid: 6212
+ - uid: 13393
components:
- type: Transform
- pos: -15.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-73.5
parent: 2
- - uid: 6213
+ - uid: 13394
components:
- type: Transform
- pos: -16.5,-66.5
+ pos: -4.5,-67.5
parent: 2
- - uid: 6214
+ - uid: 13395
components:
- type: Transform
- pos: -17.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,7.5
parent: 2
- - uid: 6215
+ - uid: 13396
components:
- type: Transform
- pos: -18.5,-66.5
+ rot: 3.141592653589793 rad
+ pos: 61.5,-27.5
parent: 2
- - uid: 6216
+ - uid: 13397
components:
- type: Transform
- pos: -19.5,-66.5
+ rot: 3.141592653589793 rad
+ pos: 88.5,5.5
parent: 2
- - uid: 6217
+ - uid: 13398
components:
- type: Transform
- pos: 59.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,80.5
parent: 2
- - uid: 6218
+ - uid: 13399
components:
- type: Transform
- pos: 60.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,3.5
parent: 2
- - uid: 6219
+ - uid: 13400
components:
- type: Transform
- pos: 61.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,80.5
parent: 2
- - uid: 6220
+ - uid: 13401
components:
- type: Transform
- pos: 62.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-42.5
parent: 2
- - uid: 6221
+ - uid: 13402
components:
- type: Transform
- pos: 63.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,81.5
parent: 2
- - uid: 6222
+ - uid: 13403
components:
- type: Transform
- pos: 64.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 60.5,-28.5
parent: 2
- - uid: 6223
+ - uid: 13404
components:
- type: Transform
- pos: 65.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-67.5
parent: 2
- - uid: 6224
+ - uid: 13405
components:
- type: Transform
- pos: 65.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,7.5
parent: 2
- - uid: 6225
+ - uid: 13406
components:
- type: Transform
- pos: 65.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,-28.5
parent: 2
- - uid: 6226
+ - uid: 13407
components:
- type: Transform
- pos: 65.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,81.5
parent: 2
- - uid: 6227
+ - uid: 13408
components:
- type: Transform
- pos: -20.5,-66.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-15.5
parent: 2
- - uid: 6228
+ - uid: 13409
components:
- type: Transform
- pos: -22.5,-66.5
+ pos: -22.5,-38.5
parent: 2
- - uid: 6229
+ - uid: 13410
components:
- type: Transform
- pos: -22.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,5.5
parent: 2
- - uid: 6230
+ - uid: 13411
components:
- type: Transform
- pos: 65.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 50.5,19.5
parent: 2
- - uid: 6231
+ - uid: 13412
components:
- type: Transform
- pos: 65.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 82.5,-0.5
parent: 2
- - uid: 6232
+ - uid: 13413
components:
- type: Transform
- pos: -21.5,-66.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,89.5
parent: 2
- - uid: 6233
+ - uid: 13414
components:
- type: Transform
- pos: -22.5,-64.5
+ rot: 1.5707963267948966 rad
+ pos: 50.5,17.5
parent: 2
- - uid: 6234
+ - uid: 13415
components:
- type: Transform
- pos: -22.5,-63.5
+ rot: 1.5707963267948966 rad
+ pos: 50.5,27.5
parent: 2
- - uid: 6235
+ - uid: 13416
components:
- type: Transform
- pos: -22.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,23.5
parent: 2
- - uid: 6236
+ - uid: 13417
components:
- type: Transform
- pos: -22.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,23.5
parent: 2
- - uid: 6237
+ - uid: 13418
components:
- type: Transform
- pos: -22.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,28.5
parent: 2
- - uid: 6238
+ - uid: 13419
components:
- type: Transform
- pos: 55.5,-21.5
- parent: 2
- - uid: 6239
+ rot: 1.5707963267948966 rad
+ pos: 70.5,28.5
+ parent: 2
+ - uid: 13420
components:
- type: Transform
- pos: 55.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,23.5
parent: 2
- - uid: 6240
+ - uid: 13421
components:
- type: Transform
- pos: 55.5,-23.5
+ pos: -2.5,-67.5
parent: 2
- - uid: 6241
+ - uid: 13422
components:
- type: Transform
- pos: 55.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-66.5
parent: 2
- - uid: 6242
+ - uid: 13423
components:
- type: Transform
- pos: 55.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,80.5
parent: 2
- - uid: 6243
+ - uid: 13424
components:
- type: Transform
- pos: 55.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-40.5
parent: 2
- - uid: 6244
+ - uid: 13425
components:
- type: Transform
- pos: 55.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-71.5
parent: 2
- - uid: 6245
+ - uid: 13426
components:
- type: Transform
- pos: 55.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,47.5
parent: 2
- - uid: 6246
+ - uid: 13427
components:
- type: Transform
- pos: 55.5,-29.5
+ pos: -23.5,-38.5
parent: 2
- - uid: 6247
+ - uid: 13428
components:
- type: Transform
- pos: -23.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-45.5
parent: 2
- - uid: 6248
+ - uid: 13429
components:
- type: Transform
- pos: 55.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-4.5
parent: 2
- - uid: 6249
+ - uid: 13430
components:
- type: Transform
- pos: 55.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-68.5
parent: 2
- - uid: 6250
+ - uid: 13431
components:
- type: Transform
- pos: 55.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -55.5,28.5
parent: 2
- - uid: 6251
+ - uid: 13432
components:
- type: Transform
- pos: 55.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,-7.5
parent: 2
- - uid: 6252
+ - uid: 13433
components:
- type: Transform
- pos: 55.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 36.5,4.5
parent: 2
- - uid: 6253
+ - uid: 13434
components:
- type: Transform
- pos: 55.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-65.5
parent: 2
- - uid: 6254
+ - uid: 13435
components:
- type: Transform
- pos: 55.5,-11.5
+ pos: -56.5,13.5
parent: 2
- - uid: 6255
+ - uid: 13436
components:
- type: Transform
- pos: 64.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,-6.5
parent: 2
- - uid: 6256
+ - uid: 13437
components:
- type: Transform
- pos: 63.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-65.5
parent: 2
- - uid: 6257
+ - uid: 13438
components:
- type: Transform
- pos: -22.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,79.5
parent: 2
- - uid: 6258
+ - uid: 13439
components:
- type: Transform
- pos: -22.5,-71.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-13.5
parent: 2
- - uid: 6259
+ - uid: 13440
components:
- type: Transform
- pos: -22.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,89.5
parent: 2
- - uid: 6260
+ - uid: 13441
components:
- type: Transform
- pos: -22.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,88.5
parent: 2
- - uid: 6261
+ - uid: 13442
components:
- type: Transform
- pos: -22.5,-74.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-66.5
parent: 2
- - uid: 6262
+ - uid: 13443
components:
- type: Transform
- pos: 63.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,-28.5
parent: 2
- - uid: 6263
+ - uid: 13444
components:
- type: Transform
- pos: 63.5,-13.5
+ pos: -55.5,13.5
parent: 2
- - uid: 6264
+ - uid: 13445
components:
- type: Transform
- pos: 63.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -56.5,11.5
parent: 2
- - uid: 6265
+ - uid: 13446
components:
- type: Transform
- pos: 63.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,11.5
parent: 2
- - uid: 6266
+ - uid: 13447
components:
- type: Transform
- pos: 63.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,11.5
parent: 2
- - uid: 6267
+ - uid: 13448
components:
- type: Transform
- pos: 63.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-40.5
parent: 2
- - uid: 6268
+ - uid: 13449
components:
- type: Transform
- pos: 63.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 57.5,23.5
parent: 2
- - uid: 6269
+ - uid: 13450
components:
- type: Transform
- pos: 63.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 56.5,23.5
parent: 2
- - uid: 6270
+ - uid: 13451
components:
- type: Transform
- pos: 63.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,23.5
parent: 2
- - uid: 6271
+ - uid: 13452
components:
- type: Transform
- pos: 63.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,11.5
parent: 2
- - uid: 6272
+ - uid: 13453
components:
- type: Transform
- pos: 63.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,14.5
parent: 2
- - uid: 6273
+ - uid: 13454
components:
- type: Transform
- pos: 63.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,-23.5
parent: 2
- - uid: 6274
+ - uid: 13455
components:
- type: Transform
- pos: 63.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: -67.5,-24.5
parent: 2
- - uid: 6275
+ - uid: 13456
components:
- type: Transform
- pos: 63.5,-29.5
+ pos: 34.5,-43.5
parent: 2
- - uid: 6276
+ - uid: 13457
components:
- type: Transform
- pos: 65.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-2.5
parent: 2
- - uid: 6277
+ - uid: 13458
components:
- type: Transform
- pos: 65.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,1.5
parent: 2
- - uid: 6278
+ - uid: 13459
components:
- type: Transform
- pos: 64.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-71.5
parent: 2
- - uid: 6279
+ - uid: 13460
components:
- type: Transform
- pos: -20.5,-78.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,62.5
parent: 2
- - uid: 6280
+ - uid: 13461
components:
- type: Transform
- pos: -20.5,-79.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,64.5
parent: 2
- - uid: 6281
+ - uid: 13462
components:
- type: Transform
- pos: -20.5,-80.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-72.5
parent: 2
- - uid: 6282
+ - uid: 13463
components:
- type: Transform
- pos: -21.5,-80.5
+ pos: -3.5,-67.5
parent: 2
- - uid: 6283
+ - uid: 13464
components:
- type: Transform
- pos: -22.5,-80.5
+ pos: -52.5,13.5
parent: 2
- - uid: 6284
+ - uid: 13465
components:
- type: Transform
- pos: -23.5,-80.5
+ pos: -53.5,13.5
parent: 2
- - uid: 6285
+ - uid: 13466
components:
- type: Transform
- pos: -19.5,-80.5
+ pos: -11.5,-22.5
parent: 2
- - uid: 6286
+ - uid: 13467
components:
- type: Transform
- pos: -18.5,-80.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,-4.5
parent: 2
- - uid: 6287
+ - uid: 13468
components:
- type: Transform
- pos: -17.5,-80.5
+ pos: -51.5,13.5
parent: 2
- - uid: 6288
+ - uid: 13469
components:
- type: Transform
- pos: -16.5,-80.5
+ pos: -14.5,-22.5
parent: 2
- - uid: 6289
+ - uid: 13470
components:
- type: Transform
- pos: -15.5,-80.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,30.5
parent: 2
- - uid: 6290
+ - uid: 13471
components:
- type: Transform
- pos: 51.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-72.5
parent: 2
- - uid: 6291
+ - uid: 13472
components:
- type: Transform
- pos: 51.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-79.5
parent: 2
- - uid: 6292
+ - uid: 13473
components:
- type: Transform
- pos: -14.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,87.5
parent: 2
- - uid: 6293
+ - uid: 13474
components:
- type: Transform
- pos: -13.5,-80.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,91.5
parent: 2
- - uid: 6294
+ - uid: 13475
components:
- type: Transform
- pos: 52.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,89.5
parent: 2
- - uid: 6295
+ - uid: 13476
components:
- type: Transform
- pos: 52.5,-14.5
+ pos: 75.5,28.5
parent: 2
- - uid: 6296
+ - uid: 13477
components:
- type: Transform
- pos: 52.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-3.5
parent: 2
- - uid: 6297
+ - uid: 13478
components:
- type: Transform
- pos: 52.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-3.5
parent: 2
- - uid: 6298
+ - uid: 13479
components:
- type: Transform
- pos: -13.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-70.5
parent: 2
- - uid: 6299
+ - uid: 13480
components:
- type: Transform
- pos: -13.5,-78.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,11.5
parent: 2
- - uid: 6300
+ - uid: 13481
components:
- type: Transform
- pos: -13.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-80.5
parent: 2
- - uid: 6301
+ - uid: 13482
components:
- type: Transform
- pos: -14.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,11.5
parent: 2
- - uid: 6302
+ - uid: 13483
components:
- type: Transform
- pos: -15.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-16.5
parent: 2
- - uid: 6303
+ - uid: 13484
components:
- type: Transform
- pos: 51.5,-12.5
+ pos: 13.5,-22.5
parent: 2
- - uid: 6304
+ - uid: 13485
components:
- type: Transform
- pos: 51.5,-13.5
+ pos: 25.5,1.5
parent: 2
- - uid: 6305
+ - uid: 13486
components:
- type: Transform
- pos: -16.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-48.5
parent: 2
- - uid: 6306
+ - uid: 13487
components:
- type: Transform
- pos: 52.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-45.5
parent: 2
- - uid: 6307
+ - uid: 13488
components:
- type: Transform
- pos: 52.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,0.5
parent: 2
- - uid: 6308
+ - uid: 13489
components:
- type: Transform
- pos: 52.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-66.5
parent: 2
- - uid: 6309
+ - uid: 13490
components:
- type: Transform
- pos: 52.5,-16.5
+ pos: 74.5,-38.5
parent: 2
- - uid: 6310
+ - uid: 13491
components:
- type: Transform
- pos: 53.5,-21.5
+ pos: 26.5,1.5
parent: 2
- - uid: 6311
+ - uid: 13492
components:
- type: Transform
- pos: 53.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 30.5,-7.5
parent: 2
- - uid: 6312
+ - uid: 13493
components:
- type: Transform
- pos: -12.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,2.5
parent: 2
- - uid: 6313
+ - uid: 13494
components:
- type: Transform
- pos: 52.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,-4.5
parent: 2
- - uid: 6314
+ - uid: 13495
components:
- type: Transform
- pos: 52.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-5.5
parent: 2
- - uid: 6315
+ - uid: 13496
components:
- type: Transform
- pos: 52.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,-7.5
parent: 2
- - uid: 6316
+ - uid: 13497
components:
- type: Transform
- pos: 48.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-0.5
parent: 2
- - uid: 6317
+ - uid: 13498
components:
- type: Transform
- pos: 48.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-44.5
parent: 2
- - uid: 6318
+ - uid: 13499
components:
- type: Transform
- pos: 48.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-72.5
parent: 2
- - uid: 6319
+ - uid: 13500
components:
- type: Transform
- pos: 48.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,0.5
parent: 2
- - uid: 6320
+ - uid: 13501
components:
- type: Transform
- pos: 47.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-2.5
parent: 2
- - uid: 6321
+ - uid: 13502
components:
- type: Transform
- pos: 47.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-0.5
parent: 2
- - uid: 6322
+ - uid: 13503
components:
- type: Transform
- pos: 44.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,46.5
parent: 2
- - uid: 6323
+ - uid: 13504
components:
- type: Transform
- pos: 44.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,46.5
parent: 2
- - uid: 6324
+ - uid: 13505
components:
- type: Transform
- pos: 44.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,-6.5
parent: 2
- - uid: 6325
+ - uid: 13506
components:
- type: Transform
- pos: 44.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 30.5,-6.5
parent: 2
- - uid: 6326
+ - uid: 13507
components:
- type: Transform
- pos: 43.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,46.5
parent: 2
- - uid: 6327
+ - uid: 13508
components:
- type: Transform
- pos: 43.5,-22.5
+ pos: -74.5,-33.5
parent: 2
- - uid: 6328
+ - uid: 13509
components:
- type: Transform
- pos: -14.5,-66.5
+ pos: 60.5,-14.5
parent: 2
- - uid: 6329
+ - uid: 13510
components:
- type: Transform
- pos: -13.5,-66.5
+ rot: 1.5707963267948966 rad
+ pos: -55.5,27.5
parent: 2
- - uid: 6330
+ - uid: 13511
components:
- type: Transform
- pos: -12.5,-66.5
+ pos: 7.5,49.5
parent: 2
- - uid: 6331
+ - uid: 13512
components:
- type: Transform
- pos: 45.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,-7.5
parent: 2
- - uid: 6332
+ - uid: 13513
components:
- type: Transform
- pos: 45.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-65.5
parent: 2
- - uid: 6333
+ - uid: 13514
components:
- type: Transform
- pos: 45.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,12.5
parent: 2
- - uid: 6334
+ - uid: 13515
components:
- type: Transform
- pos: 45.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-15.5
parent: 2
- - uid: 6335
+ - uid: 13516
components:
- type: Transform
- pos: 45.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-14.5
parent: 2
- - uid: 6336
+ - uid: 13517
components:
- type: Transform
- pos: 46.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-72.5
parent: 2
- - uid: 6337
+ - uid: 13518
components:
- type: Transform
- pos: 47.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-65.5
parent: 2
- - uid: 6338
+ - uid: 13519
components:
- type: Transform
- pos: -16.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,15.5
parent: 2
- - uid: 6339
+ - uid: 13520
components:
- type: Transform
- pos: -17.5,-70.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-73.5
parent: 2
- - uid: 6340
+ - uid: 13521
components:
- type: Transform
- pos: 48.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-69.5
parent: 2
- - uid: 6341
+ - uid: 13522
components:
- type: Transform
- pos: 48.5,-14.5
+ pos: 29.5,2.5
parent: 2
- - uid: 6342
+ - uid: 13523
components:
- type: Transform
- pos: 48.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,91.5
parent: 2
- - uid: 6343
+ - uid: 13524
components:
- type: Transform
- pos: -16.5,-68.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,63.5
parent: 2
- - uid: 6344
+ - uid: 13525
components:
- type: Transform
- pos: -16.5,-69.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-65.5
parent: 2
- - uid: 6345
+ - uid: 13526
components:
- type: Transform
- pos: -16.5,-70.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-4.5
parent: 2
- - uid: 6346
+ - uid: 13527
components:
- type: Transform
- pos: -16.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,63.5
parent: 2
- - uid: 6347
+ - uid: 13528
components:
- type: Transform
- pos: -16.5,-72.5
+ pos: -5.5,-67.5
parent: 2
- - uid: 6348
+ - uid: 13529
components:
- type: Transform
- pos: -16.5,-73.5
+ pos: -54.5,13.5
parent: 2
- - uid: 6349
+ - uid: 13530
components:
- type: Transform
- pos: -16.5,-74.5
+ pos: 10.5,-22.5
parent: 2
- - uid: 6350
+ - uid: 13531
components:
- type: Transform
- pos: -16.5,-75.5
+ pos: 6.5,-22.5
parent: 2
- - uid: 6351
+ - uid: 13532
components:
- type: Transform
- pos: -18.5,-70.5
+ rot: 3.141592653589793 rad
+ pos: 84.5,-1.5
parent: 2
- - uid: 6352
+ - uid: 13533
components:
- type: Transform
- pos: 48.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,77.5
parent: 2
- - uid: 6353
+ - uid: 13534
components:
- type: Transform
- pos: -19.5,-70.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,4.5
parent: 2
- - uid: 6354
+ - uid: 13535
components:
- type: Transform
- pos: 46.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-49.5
parent: 2
- - uid: 6355
+ - uid: 13536
components:
- type: Transform
- pos: 47.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,9.5
parent: 2
- - uid: 6356
+ - uid: 13537
components:
- type: Transform
- pos: -20.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-67.5
parent: 2
- - uid: 6357
+ - uid: 13538
components:
- type: Transform
- pos: -15.5,-70.5
+ rot: 3.141592653589793 rad
+ pos: 57.5,-26.5
parent: 2
- - uid: 6358
+ - uid: 13539
components:
- type: Transform
- pos: -14.5,-70.5
+ pos: -39.5,-8.5
parent: 2
- - uid: 6359
+ - uid: 13540
components:
- type: Transform
- pos: -13.5,-70.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-45.5
parent: 2
- - uid: 6360
+ - uid: 13541
components:
- type: Transform
- pos: -12.5,-70.5
+ pos: -4.5,-22.5
parent: 2
- - uid: 6361
+ - uid: 13542
components:
- type: Transform
- pos: -17.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,78.5
parent: 2
- - uid: 6362
+ - uid: 13543
components:
- type: Transform
- pos: -18.5,-75.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,1.5
parent: 2
- - uid: 6363
+ - uid: 13544
components:
- type: Transform
- pos: -19.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,23.5
parent: 2
- - uid: 6364
+ - uid: 13545
components:
- type: Transform
- pos: -20.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,61.5
parent: 2
- - uid: 6365
+ - uid: 13546
components:
- type: Transform
- pos: -15.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,8.5
parent: 2
- - uid: 6366
+ - uid: 13547
components:
- type: Transform
- pos: -14.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-44.5
parent: 2
- - uid: 6367
+ - uid: 13548
components:
- type: Transform
- pos: -13.5,-75.5
+ pos: 3.5,-22.5
parent: 2
- - uid: 6368
+ - uid: 13549
components:
- type: Transform
- pos: -12.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-74.5
parent: 2
- - uid: 6369
+ - uid: 13550
components:
- type: Transform
- pos: 43.5,-18.5
+ pos: 10.5,-76.5
parent: 2
- - uid: 6370
+ - uid: 13551
components:
- type: Transform
- pos: 42.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-71.5
parent: 2
- - uid: 6371
+ - uid: 13552
components:
- type: Transform
- pos: 41.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-71.5
parent: 2
- - uid: 6372
+ - uid: 13553
components:
- type: Transform
- pos: 40.5,-18.5
+ pos: -5.5,-63.5
parent: 2
- - uid: 6373
+ - uid: 13554
components:
- type: Transform
- pos: 39.5,-18.5
+ pos: -6.5,-63.5
parent: 2
- - uid: 6374
+ - uid: 13555
components:
- type: Transform
- pos: 40.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-76.5
parent: 2
- - uid: 6375
+ - uid: 13556
components:
- type: Transform
- pos: 40.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-67.5
parent: 2
- - uid: 6376
+ - uid: 13557
components:
- type: Transform
- pos: 42.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-68.5
parent: 2
- - uid: 6377
+ - uid: 13558
components:
- type: Transform
- pos: 41.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-69.5
parent: 2
- - uid: 6378
+ - uid: 13559
components:
- type: Transform
- pos: 41.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-71.5
parent: 2
- - uid: 6379
+ - uid: 13560
components:
- type: Transform
- pos: 40.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-70.5
parent: 2
- - uid: 6380
+ - uid: 13561
components:
- type: Transform
- pos: 39.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-69.5
parent: 2
- - uid: 6381
+ - uid: 13562
components:
- type: Transform
- pos: 38.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-81.5
parent: 2
- - uid: 6382
+ - uid: 13563
components:
- type: Transform
- pos: 37.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-81.5
parent: 2
- - uid: 6383
+ - uid: 13564
components:
- type: Transform
- pos: 36.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-81.5
parent: 2
- - uid: 6384
+ - uid: 13565
components:
- type: Transform
- pos: 35.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 58.5,-26.5
parent: 2
- - uid: 6385
+ - uid: 13566
components:
- type: Transform
- pos: 34.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-77.5
parent: 2
- - uid: 6386
+ - uid: 13567
components:
- type: Transform
- pos: 33.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-77.5
parent: 2
- - uid: 6387
+ - uid: 13568
components:
- type: Transform
- pos: 37.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-77.5
parent: 2
- - uid: 6388
+ - uid: 13569
components:
- type: Transform
- pos: 37.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-77.5
parent: 2
- - uid: 6389
+ - uid: 13570
components:
- type: Transform
- pos: 37.5,-8.5
+ pos: 83.5,0.5
parent: 2
- - uid: 6390
+ - uid: 13571
components:
- type: Transform
- pos: 37.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,-1.5
parent: 2
- - uid: 6391
+ - uid: 13572
components:
- type: Transform
- pos: 37.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,25.5
parent: 2
- - uid: 6392
+ - uid: 13573
components:
- type: Transform
- pos: 37.5,-13.5
+ pos: 30.5,-44.5
parent: 2
- - uid: 6393
+ - uid: 13574
components:
- type: Transform
- pos: 37.5,-14.5
+ pos: 32.5,-44.5
parent: 2
- - uid: 6394
+ - uid: 13575
components:
- type: Transform
- pos: 37.5,-15.5
+ pos: 33.5,-44.5
parent: 2
- - uid: 6395
+ - uid: 13576
components:
- type: Transform
- pos: -20.5,-74.5
+ pos: 31.5,-44.5
parent: 2
- - uid: 6396
+ - uid: 13577
components:
- type: Transform
- pos: -20.5,-73.5
+ pos: 34.5,-44.5
parent: 2
- - uid: 6397
+ - uid: 13578
components:
- type: Transform
- pos: -12.5,-74.5
+ rot: 1.5707963267948966 rad
+ pos: 50.5,18.5
parent: 2
- - uid: 6398
+ - uid: 13579
components:
- type: Transform
- pos: -12.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 86.5,-0.5
parent: 2
- - uid: 6399
+ - uid: 13580
components:
- type: Transform
- pos: 36.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 93.5,19.5
parent: 2
- - uid: 6400
+ - uid: 13581
components:
- type: Transform
- pos: 35.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 93.5,18.5
parent: 2
- - uid: 6401
+ - uid: 13582
components:
- type: Transform
- pos: 34.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 93.5,20.5
parent: 2
- - uid: 6402
+ - uid: 13583
components:
- type: Transform
- pos: 33.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,20.5
parent: 2
- - uid: 6403
+ - uid: 13584
components:
- type: Transform
- pos: 38.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,19.5
parent: 2
- - uid: 6404
+ - uid: 13585
components:
- type: Transform
- pos: 39.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,18.5
parent: 2
- - uid: 6405
+ - uid: 13586
components:
- type: Transform
- pos: 40.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 89.5,12.5
parent: 2
- - uid: 6406
+ - uid: 13587
components:
- type: Transform
- pos: 41.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 88.5,12.5
parent: 2
- - uid: 6407
+ - uid: 13588
components:
- type: Transform
- pos: -20.5,-69.5
+ rot: 3.141592653589793 rad
+ pos: 87.5,12.5
parent: 2
- - uid: 6408
+ - uid: 13589
components:
- type: Transform
- pos: 41.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,12.5
parent: 2
- - uid: 6409
+ - uid: 13590
components:
- type: Transform
- pos: -20.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 90.5,12.5
parent: 2
- - uid: 6410
+ - uid: 13591
components:
- type: Transform
- pos: 39.5,-16.5
+ pos: 84.5,0.5
parent: 2
- - uid: 6411
+ - uid: 13592
components:
- type: Transform
- pos: -12.5,-69.5
+ pos: 85.5,0.5
parent: 2
- - uid: 6412
+ - uid: 13593
components:
- type: Transform
- pos: -12.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,-1.5
parent: 2
- - uid: 6413
+ - uid: 13594
components:
- type: Transform
- pos: 41.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 74.5,19.5
parent: 2
- - uid: 6414
+ - uid: 13595
components:
- type: Transform
- pos: 41.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 74.5,18.5
parent: 2
- - uid: 6415
+ - uid: 13596
components:
- type: Transform
- pos: 41.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 74.5,17.5
parent: 2
- - uid: 6416
+ - uid: 13597
components:
- type: Transform
- pos: 41.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,9.5
parent: 2
- - uid: 6417
+ - uid: 13598
components:
- type: Transform
- pos: 41.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,9.5
parent: 2
- - uid: 6418
+ - uid: 13599
components:
- type: Transform
- pos: 41.5,-7.5
+ pos: 58.5,-11.5
parent: 2
- - uid: 6419
+ - uid: 13600
components:
- type: Transform
- pos: 40.5,-7.5
+ pos: 60.5,-11.5
parent: 2
- - uid: 6420
+ - uid: 13601
components:
- type: Transform
- pos: 39.5,-7.5
+ pos: -12.5,59.5
parent: 2
- - uid: 6421
+ - uid: 13602
components:
- type: Transform
- pos: 38.5,-7.5
+ pos: -10.5,59.5
parent: 2
- - uid: 6422
+ - uid: 13603
components:
- type: Transform
- pos: 37.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,66.5
parent: 2
- - uid: 6423
+ - uid: 13604
components:
- type: Transform
- pos: 36.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,66.5
parent: 2
- - uid: 6424
+ - uid: 13605
components:
- type: Transform
- pos: 35.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,89.5
parent: 2
- - uid: 6425
+ - uid: 13606
components:
- type: Transform
- pos: 34.5,-7.5
+ pos: 7.5,85.5
parent: 2
- - uid: 6426
+ - uid: 13607
components:
- type: Transform
- pos: 33.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,83.5
parent: 2
- - uid: 6427
+ - uid: 13608
components:
- type: Transform
- pos: 33.5,-6.5
+ pos: -11.5,59.5
parent: 2
- - uid: 6428
+ - uid: 13609
components:
- type: Transform
- pos: 33.5,-8.5
+ pos: -10.5,59.5
parent: 2
- - uid: 6429
+ - uid: 13610
components:
- type: Transform
- pos: 33.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,66.5
parent: 2
- - uid: 6430
+ - uid: 13611
components:
- type: Transform
- pos: 33.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,91.5
parent: 2
- - uid: 6431
+ - uid: 13612
components:
- type: Transform
- pos: 33.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,67.5
parent: 2
- - uid: 6432
+ - uid: 13613
components:
- type: Transform
- pos: -3.5,-82.5
+ rot: 3.141592653589793 rad
+ pos: 58.5,-24.5
parent: 2
- - uid: 6433
+ - uid: 13614
components:
- type: Transform
- pos: -3.5,-83.5
+ rot: 3.141592653589793 rad
+ pos: 58.5,-24.5
parent: 2
- - uid: 6434
+ - uid: 13615
components:
- type: Transform
- pos: -3.5,-84.5
+ rot: 3.141592653589793 rad
+ pos: 60.5,-24.5
parent: 2
- - uid: 6435
+ - uid: 13616
components:
- type: Transform
- pos: -3.5,-85.5
+ pos: 57.5,-12.5
parent: 2
- - uid: 6436
+ - uid: 13617
components:
- type: Transform
- pos: -4.5,-84.5
+ rot: 3.141592653589793 rad
+ pos: 58.5,-28.5
parent: 2
- - uid: 6437
+ - uid: 13618
components:
- type: Transform
- pos: -5.5,-84.5
+ pos: 61.5,-12.5
parent: 2
- - uid: 6438
+ - uid: 13619
components:
- type: Transform
- pos: -5.5,-83.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,-28.5
parent: 2
- - uid: 6439
+ - uid: 13620
components:
- type: Transform
- pos: -5.5,-82.5
+ pos: 59.5,-15.5
parent: 2
- - uid: 6440
+ - uid: 13621
components:
- type: Transform
- pos: -5.5,-85.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,61.5
parent: 2
- - uid: 6441
+ - uid: 13622
components:
- type: Transform
- pos: 2.5,-81.5
+ rot: 3.141592653589793 rad
+ pos: 58.5,-25.5
parent: 2
- - uid: 6442
+ - uid: 13623
components:
- type: Transform
- pos: 2.5,-82.5
+ rot: 3.141592653589793 rad
+ pos: 58.5,-27.5
parent: 2
- - uid: 6443
+ - uid: 13624
components:
- type: Transform
- pos: 2.5,-83.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,-25.5
parent: 2
- - uid: 6444
+ - uid: 13625
components:
- type: Transform
- pos: 2.5,-84.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,-27.5
parent: 2
- - uid: 6445
+ - uid: 13626
components:
- type: Transform
- pos: 2.5,-85.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,61.5
parent: 2
- - uid: 6446
+ - uid: 13627
components:
- type: Transform
- pos: -5.5,-81.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,64.5
parent: 2
- - uid: 6447
+ - uid: 13628
components:
- type: Transform
- pos: -6.5,-81.5
+ pos: 60.5,-15.5
parent: 2
- - uid: 6448
+ - uid: 13629
components:
- type: Transform
- pos: 44.5,-9.5
+ pos: 59.5,-11.5
parent: 2
- - uid: 6449
+ - uid: 13630
components:
- type: Transform
- pos: 44.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 60.5,-27.5
parent: 2
- - uid: 6450
+ - uid: 13631
components:
- type: Transform
- pos: -7.5,-81.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,-27.5
parent: 2
- - uid: 6451
+ - uid: 13632
components:
- type: Transform
- pos: 45.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,-25.5
parent: 2
- - uid: 6452
+ - uid: 13633
components:
- type: Transform
- pos: 46.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 60.5,-25.5
parent: 2
- - uid: 6453
+ - uid: 13634
components:
- type: Transform
- pos: 47.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 57.5,-25.5
parent: 2
- - uid: 6454
+ - uid: 13635
components:
- type: Transform
- pos: 48.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 60.5,-25.5
parent: 2
- - uid: 6455
+ - uid: 13636
components:
- type: Transform
- pos: 49.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,-24.5
parent: 2
- - uid: 6456
+ - uid: 13637
components:
- type: Transform
- pos: 50.5,-10.5
+ pos: 58.5,-15.5
parent: 2
- - uid: 6457
+ - uid: 13638
components:
- type: Transform
- pos: 51.5,-10.5
+ pos: 59.5,-12.5
parent: 2
- - uid: 6458
+ - uid: 13639
components:
- type: Transform
- pos: 52.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 61.5,-25.5
parent: 2
- - uid: 6459
+ - uid: 13640
components:
- type: Transform
- pos: 53.5,-10.5
+ pos: 59.5,-12.5
parent: 2
- - uid: 6460
+ - uid: 13641
components:
- type: Transform
- pos: -8.5,-81.5
+ rot: 3.141592653589793 rad
+ pos: 60.5,-26.5
parent: 2
- - uid: 6461
+ - uid: 13642
components:
- type: Transform
- pos: 46.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 60.5,-26.5
parent: 2
- - uid: 6462
+ - uid: 13643
components:
- type: Transform
- pos: -9.5,-81.5
+ pos: 58.5,-12.5
parent: 2
- - uid: 6463
+ - uid: 13644
components:
- type: Transform
- pos: -10.5,-81.5
+ pos: 61.5,-14.5
parent: 2
- - uid: 6464
+ - uid: 13645
components:
- type: Transform
- pos: -10.5,-80.5
+ pos: 60.5,-13.5
parent: 2
- - uid: 6465
+ - uid: 13646
components:
- type: Transform
- pos: -10.5,-79.5
+ pos: 61.5,-14.5
parent: 2
- - uid: 6466
+ - uid: 13647
components:
- type: Transform
- pos: -9.5,-77.5
+ pos: 57.5,-13.5
parent: 2
- - uid: 6467
+ - uid: 13648
components:
- type: Transform
- pos: -10.5,-77.5
+ pos: 59.5,-12.5
parent: 2
- - uid: 6468
+ - uid: 13649
components:
- type: Transform
- pos: 52.5,-40.5
+ pos: 61.5,-13.5
parent: 2
- - uid: 6469
+ - uid: 13650
components:
- type: Transform
- pos: 53.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,-26.5
parent: 2
- - uid: 6470
+ - uid: 13651
components:
- type: Transform
- pos: 54.5,-40.5
+ pos: 58.5,-13.5
parent: 2
- - uid: 6471
+ - uid: 13652
components:
- type: Transform
- pos: 29.5,-33.5
+ pos: 59.5,-13.5
parent: 2
- - uid: 6472
+ - uid: 13653
components:
- type: Transform
- pos: 16.5,-34.5
+ pos: 60.5,-12.5
parent: 2
- - uid: 6473
+ - uid: 13654
components:
- type: Transform
- pos: 16.5,-38.5
+ pos: 59.5,-12.5
parent: 2
- - uid: 6474
+ - uid: 13655
components:
- type: Transform
- pos: 28.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,63.5
parent: 2
- - uid: 6475
+ - uid: 13656
components:
- type: Transform
- pos: 28.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: 61.5,-26.5
parent: 2
- - uid: 6476
+ - uid: 13657
components:
- type: Transform
- pos: 28.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,64.5
parent: 2
- - uid: 6477
+ - uid: 13658
components:
- type: Transform
- pos: 10.5,-58.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,62.5
parent: 2
- - uid: 6478
+ - uid: 13659
components:
- type: Transform
- pos: 10.5,-57.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,62.5
parent: 2
- - uid: 6479
+- proto: ChairBrass
+ entities:
+ - uid: 13660
components:
- type: Transform
- pos: 10.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,-76.5
parent: 2
- - uid: 6480
+- proto: ChairCarp
+ entities:
+ - uid: 13661
components:
- type: Transform
- pos: 10.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,31.5
parent: 2
- - uid: 6481
+ - uid: 13662
components:
- type: Transform
- pos: 10.5,-54.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,31.5
parent: 2
- - uid: 6482
+ - uid: 13663
components:
- type: Transform
- pos: 9.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: 65.5,31.5
parent: 2
- - uid: 6483
+ - uid: 13664
components:
- type: Transform
- pos: 8.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,31.5
parent: 2
- - uid: 6484
+ - uid: 13665
components:
- type: Transform
- pos: 7.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,31.5
parent: 2
- - uid: 6485
+ - uid: 13666
components:
- type: Transform
- pos: 6.5,-55.5
+ pos: 20.5,63.5
parent: 2
- - uid: 6486
+- proto: ChairFolding
+ entities:
+ - uid: 13667
components:
- type: Transform
- pos: 5.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: -77.5,-1.5
parent: 2
- - uid: 6487
+ - uid: 13668
components:
- type: Transform
- pos: 3.5,-54.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,28.5
parent: 2
- - uid: 6488
+ - uid: 13669
components:
- type: Transform
- pos: 4.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,1.5
parent: 2
- - uid: 6489
+ - uid: 13670
components:
- type: Transform
- pos: 5.5,-54.5
+ rot: 3.141592653589793 rad
+ pos: -65.5,-25.5
parent: 2
- - uid: 6490
+ - uid: 13671
components:
- type: Transform
- pos: 1.5,-56.5
+ pos: -65.5,-23.5
parent: 2
- - uid: 6491
+ - uid: 13672
components:
- type: Transform
- pos: 1.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: 88.5,-17.5
parent: 2
- - uid: 6492
+ - uid: 13673
components:
- type: Transform
- pos: 0.50000006,-57.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-50.5
parent: 2
- - uid: 6493
+ - uid: 13674
components:
- type: Transform
- pos: -0.5,-57.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-16.5
parent: 2
- - uid: 6494
+ - uid: 13675
components:
- type: Transform
- pos: -0.5,-58.5
+ pos: 87.5,-16.5
parent: 2
- - uid: 6495
+ - uid: 13676
components:
- type: Transform
- pos: -0.49999997,-59.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-17.5
parent: 2
- - uid: 6496
+ - uid: 13677
components:
- type: Transform
- pos: -0.5,-60.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,58.5
parent: 2
- - uid: 6497
+ - uid: 13678
components:
- type: Transform
- pos: -0.5,-61.5
+ pos: -29.5,-46.5
parent: 2
- - uid: 6498
+ - uid: 13679
components:
- type: Transform
- pos: -0.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-0.5
parent: 2
- - uid: 6499
+ - uid: 13680
components:
- type: Transform
- pos: 6.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -76.5,-1.5
parent: 2
- - uid: 6500
+ - uid: 13681
components:
- type: Transform
- pos: 7.5,-64.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,57.5
parent: 2
- - uid: 6501
+ - uid: 13682
components:
- type: Transform
- pos: 8.5,-64.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-10.5
parent: 2
- - uid: 6502
+- proto: ChairGreyscale
+ entities:
+ - uid: 13683
components:
- type: Transform
- pos: -0.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,37.5
parent: 2
- - uid: 6503
+ - uid: 13684
components:
- type: Transform
- pos: -0.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,34.5
parent: 2
- - uid: 6504
+ - uid: 13685
components:
- type: Transform
- pos: -0.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,32.5
parent: 2
- - uid: 6505
+ - uid: 13686
components:
- type: Transform
- pos: -0.5,-52.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,34.5
parent: 2
- - uid: 6506
+ - uid: 13687
components:
- type: Transform
- pos: -0.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,37.5
parent: 2
- - uid: 6507
+ - uid: 13688
components:
- type: Transform
- pos: -0.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,35.5
parent: 2
- - uid: 6508
+ - uid: 13689
components:
- type: Transform
- pos: -0.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,31.5
parent: 2
- - uid: 6509
+ - uid: 13690
components:
- type: Transform
- pos: -0.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,38.5
parent: 2
- - uid: 6510
+ - uid: 13691
components:
- type: Transform
- pos: -0.49999997,-47.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,32.5
parent: 2
- - uid: 6511
+ - uid: 13692
components:
- type: Transform
- pos: -0.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,38.5
parent: 2
- - uid: 6512
+ - uid: 13693
components:
- type: Transform
- pos: -0.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,35.5
parent: 2
- - uid: 6513
+ - uid: 13694
components:
- type: Transform
- pos: -0.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,31.5
parent: 2
- - uid: 6514
+ - uid: 13695
components:
- type: Transform
- pos: -0.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-10.5
parent: 2
- - uid: 6515
+- proto: ChairOfficeDark
+ entities:
+ - uid: 13696
components:
- type: Transform
- pos: -0.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -28.399817,0.6220567
parent: 2
- - uid: 6516
+ - uid: 13697
components:
- type: Transform
- pos: -0.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-1.5
parent: 2
- - uid: 6517
+ - uid: 13698
components:
- type: Transform
- pos: -0.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,9.5
parent: 2
- - uid: 6518
+ - uid: 13699
components:
- type: Transform
- pos: -0.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 91.5,9.5
parent: 2
- - uid: 6519
+ - uid: 13700
components:
- type: Transform
- pos: -0.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-4.5
parent: 2
- - uid: 6520
+ - uid: 13701
components:
- type: Transform
- pos: -0.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-2.5
parent: 2
- - uid: 6521
+ - uid: 13702
components:
- type: Transform
- pos: -0.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,22.5
parent: 2
- - uid: 6522
+ - uid: 13703
components:
- type: Transform
- pos: -0.49999997,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-12.5
parent: 2
- - uid: 6523
+ - uid: 13704
components:
- type: Transform
- pos: -0.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-13.5
parent: 2
- - uid: 6524
+ - uid: 13705
components:
- type: Transform
- pos: -0.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,15.5
parent: 2
- - uid: 6525
+ - uid: 13706
components:
- type: Transform
- pos: -0.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,8.5
parent: 2
- - uid: 6526
+ - uid: 13707
components:
- type: Transform
- pos: -0.5,-31.5
+ pos: -31.5,-11.5
parent: 2
- - uid: 6527
+ - uid: 13708
components:
- type: Transform
- pos: -0.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-41.5
parent: 2
- - uid: 6528
+ - uid: 13709
components:
- type: Transform
- pos: -0.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-3.5
parent: 2
- - uid: 6529
+ - uid: 13710
components:
- type: Transform
- pos: -0.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,27.5
parent: 2
- - uid: 6530
+ - uid: 13711
components:
- type: Transform
- pos: -0.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-9.5
parent: 2
- - uid: 6531
+ - uid: 13712
components:
- type: Transform
- pos: -0.5,-26.5
+ pos: -46.5,9.5
parent: 2
- - uid: 6532
+ - uid: 13713
components:
- type: Transform
- pos: -0.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-14.5
parent: 2
- - uid: 6533
+ - uid: 13714
components:
- type: Transform
- pos: -0.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,2.5
parent: 2
- - uid: 6534
+ - uid: 13715
components:
- type: Transform
- pos: -0.49999997,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-12.5
parent: 2
- - uid: 6535
+ - uid: 13716
components:
- type: Transform
- pos: -0.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,19.5
parent: 2
- - uid: 6536
+ - uid: 13717
components:
- type: Transform
- pos: -1.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-13.5
parent: 2
- - uid: 6537
+ - uid: 13718
components:
- type: Transform
- pos: 0.50000006,-50.5
+ pos: -32.5,-11.5
parent: 2
- - uid: 6538
+ - uid: 13719
components:
- type: Transform
- pos: 0.49999997,-43.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-14.5
parent: 2
- - uid: 6539
+ - uid: 13720
components:
- type: Transform
- pos: 1.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,9.5
parent: 2
- - uid: 6540
+ - uid: 13721
components:
- type: Transform
- pos: 1.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-2.5
parent: 2
- - uid: 6541
+ - uid: 13722
components:
- type: Transform
- pos: 0.49999997,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,4.5
parent: 2
- - uid: 6542
+ - uid: 13723
components:
- type: Transform
- pos: 0.49999997,-38.5
+ pos: 51.5,-2.5
parent: 2
- - uid: 6543
+ - uid: 13724
components:
- type: Transform
- pos: -1.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,-4.5
parent: 2
- - uid: 6544
+ - uid: 13725
components:
- type: Transform
- pos: 0.49999997,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,86.5
parent: 2
- - uid: 6545
+ - uid: 13726
components:
- type: Transform
- pos: -1.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,-4.5
parent: 2
- - uid: 6546
+ - uid: 13727
components:
- type: Transform
- pos: 0.50000006,-24.5
+ pos: 6.5,63.5
parent: 2
- - uid: 6547
+ - uid: 13728
components:
- type: Transform
- pos: -34.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -53.5,34.5
parent: 2
- - uid: 6548
+ - uid: 13729
components:
- type: Transform
- pos: 2.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-46.5
parent: 2
- - uid: 6549
+ - uid: 13730
components:
- type: Transform
- pos: 2.5,-18.5
+ pos: 11.5,-51.5
parent: 2
- - uid: 6550
+ - uid: 13731
components:
- type: Transform
- pos: 2.5,-19.5
+ pos: 50.5,-2.5
parent: 2
- - uid: 6551
+ - uid: 13732
components:
- type: Transform
- pos: 1.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,1.5
parent: 2
- - uid: 6552
+ - uid: 13733
components:
- type: Transform
- pos: 0.49999997,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-75.5
parent: 2
- - uid: 6553
+ - uid: 13734
components:
- type: Transform
- pos: -0.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-29.5
parent: 2
- - uid: 6554
+ - uid: 13735
components:
- type: Transform
- pos: -1.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,15.5
parent: 2
- - uid: 6555
+ - uid: 13736
components:
- type: Transform
- pos: 3.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-60.5
parent: 2
- - uid: 6556
+ - uid: 13737
components:
- type: Transform
- pos: 4.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,17.5
parent: 2
- - uid: 6557
+ - uid: 13738
components:
- type: Transform
- pos: 5.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,17.5
parent: 2
- - uid: 6558
+ - uid: 13739
components:
- type: Transform
- pos: 6.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-68.5
parent: 2
- - uid: 6559
+ - uid: 13740
components:
- type: Transform
- pos: 7.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-5.5
parent: 2
- - uid: 6560
+ - uid: 13741
components:
- type: Transform
- pos: 8.5,-19.5
+ pos: -32.5,-59.5
parent: 2
- - uid: 6561
+ - uid: 13742
components:
- type: Transform
- pos: 9.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-61.5
parent: 2
- - uid: 6562
+ - uid: 13743
components:
- type: Transform
- pos: 10.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,38.5
parent: 2
- - uid: 6563
+ - uid: 13744
components:
- type: Transform
- pos: 11.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,17.5
parent: 2
- - uid: 6564
+ - uid: 13745
components:
- type: Transform
- pos: 12.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,17.5
parent: 2
- - uid: 6565
+ - uid: 13746
components:
- type: Transform
- pos: 13.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-59.5
parent: 2
- - uid: 6566
+ - uid: 13747
components:
- type: Transform
- pos: 14.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,43.5
parent: 2
- - uid: 6567
+ - uid: 13748
components:
- type: Transform
- pos: 15.5,-19.5
+ pos: -45.5,5.5
parent: 2
- - uid: 6568
+ - uid: 13749
components:
- type: Transform
- pos: 16.5,-19.5
+ pos: -46.5,0.5
parent: 2
- - uid: 6569
+ - uid: 13750
components:
- type: Transform
- pos: 17.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,19.5
parent: 2
- - uid: 6570
+ - uid: 13751
components:
- type: Transform
- pos: -39.5,-63.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,18.5
parent: 2
- - uid: 6571
+ - uid: 13752
components:
- type: Transform
- pos: -39.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,18.5
parent: 2
- - uid: 6572
+ - uid: 13753
components:
- type: Transform
- pos: -39.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,17.5
parent: 2
- - uid: 6573
+ - uid: 13754
components:
- type: Transform
- pos: 17.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,-54.5
parent: 2
- - uid: 6574
+ - uid: 13755
components:
- type: Transform
- pos: 17.5,-17.5
+ pos: 51.5,-52.5
parent: 2
- - uid: 6575
+ - uid: 13756
components:
- type: Transform
- pos: 17.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,10.5
parent: 2
- - uid: 6576
+ - uid: 13757
components:
- type: Transform
- pos: 17.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,15.5
parent: 2
- - uid: 6577
+ - uid: 13758
components:
- type: Transform
- pos: 17.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,36.5
parent: 2
- - uid: 6578
+ - uid: 13759
components:
- type: Transform
- pos: 17.5,-13.5
+ pos: 9.5,33.5
parent: 2
- - uid: 6579
+ - uid: 13760
components:
- type: Transform
- pos: 17.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-80.5
parent: 2
- - uid: 6580
+ - uid: 13761
components:
- type: Transform
- pos: 17.5,-11.5
+ pos: -14.5,-78.5
parent: 2
- - uid: 6581
+ - uid: 13762
components:
- type: Transform
- pos: 17.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,1.5
parent: 2
- - uid: 6582
+ - uid: 13763
components:
- type: Transform
- pos: 17.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-5.5
parent: 2
- - uid: 6583
+ - uid: 13764
components:
- type: Transform
- pos: 17.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-0.5
parent: 2
- - uid: 6584
+ - uid: 13765
components:
- type: Transform
- pos: 17.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,21.5
parent: 2
- - uid: 6585
+ - uid: 13766
components:
- type: Transform
- pos: -38.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-15.5
parent: 2
- - uid: 6586
+ - uid: 13767
components:
- type: Transform
- pos: -37.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,17.5
parent: 2
- - uid: 6587
+ - uid: 13768
components:
- type: Transform
- pos: -36.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,9.5
parent: 2
- - uid: 6588
+ - uid: 13769
components:
- type: Transform
- pos: -35.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,20.5
parent: 2
- - uid: 6589
+ - uid: 13770
components:
- type: Transform
- pos: -34.5,-65.5
+ pos: -47.5,18.5
parent: 2
- - uid: 6590
+ - uid: 13771
components:
- type: Transform
- pos: -33.5,-65.5
+ pos: 50.5,-52.5
parent: 2
- - uid: 6591
+ - uid: 13772
components:
- type: Transform
- pos: -32.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-52.5
parent: 2
- - uid: 6592
+ - uid: 13773
components:
- type: Transform
- pos: -31.5,-65.5
+ pos: -13.5,-78.5
parent: 2
- - uid: 6593
+ - uid: 13774
components:
- type: Transform
- pos: -31.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,62.5
parent: 2
- - uid: 6594
+ - uid: 13775
components:
- type: Transform
- pos: -30.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-60.5
parent: 2
- - uid: 6595
+ - uid: 13776
components:
- type: Transform
- pos: -29.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-50.5
parent: 2
- - uid: 6596
+ - uid: 13777
components:
- type: Transform
- pos: -36.5,-64.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,37.5
parent: 2
- - uid: 6597
+ - uid: 13778
components:
- type: Transform
- pos: -36.5,-63.5
+ pos: -31.5,-59.5
parent: 2
- - uid: 6598
+ - uid: 13779
components:
- type: Transform
- pos: -36.5,-62.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-61.5
parent: 2
- - uid: 6599
+ - uid: 13780
components:
- type: Transform
- pos: -36.5,-61.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-60.5
parent: 2
- - uid: 6600
+ - uid: 13781
components:
- type: Transform
- pos: -36.5,-60.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-26.5
parent: 2
- - uid: 6601
+ - uid: 13782
components:
- type: Transform
- pos: -28.5,-60.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,-23.5
parent: 2
- - uid: 6602
+ - uid: 13783
components:
- type: Transform
- pos: -29.5,-60.5
+ pos: 12.5,-31.5
parent: 2
- - uid: 6603
+ - uid: 13784
components:
- type: Transform
- pos: -30.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-0.5
parent: 2
- - uid: 6604
+ - uid: 13785
components:
- type: Transform
- pos: -31.5,-60.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-0.5
parent: 2
- - uid: 6605
+ - uid: 13786
components:
- type: Transform
- pos: -32.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-2.5
parent: 2
- - uid: 6606
+ - uid: 13787
components:
- type: Transform
- pos: -32.5,-61.5
+ pos: 36.5,8.5
parent: 2
- - uid: 6607
+ - uid: 13788
components:
- type: Transform
- pos: -5.5,-17.5
+ pos: 44.5,-24.5
parent: 2
- - uid: 6608
+ - uid: 13789
components:
- type: Transform
- pos: -5.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,20.5
parent: 2
- - uid: 6609
+ - uid: 13790
components:
- type: Transform
- pos: -5.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-40.5
parent: 2
- - uid: 6610
+ - uid: 13791
components:
- type: Transform
- pos: -4.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,15.5
parent: 2
- - uid: 6611
+ - uid: 13792
components:
- type: Transform
- pos: -3.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,15.5
parent: 2
- - uid: 6612
+ - uid: 13793
components:
- type: Transform
- pos: -6.5,-19.5
+ pos: -39.5,-68.5
parent: 2
- - uid: 6613
+ - uid: 13794
components:
- type: Transform
- pos: -7.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,37.5
parent: 2
- - uid: 6614
+ - uid: 13795
components:
- type: Transform
- pos: -8.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,19.5
parent: 2
- - uid: 6615
+ - uid: 13796
components:
- type: Transform
- pos: -9.5,-19.5
+ pos: 48.5,-24.5
parent: 2
- - uid: 6616
+ - uid: 13797
components:
- type: Transform
- pos: -10.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,35.5
parent: 2
- - uid: 6617
+ - uid: 13798
components:
- type: Transform
- pos: -11.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-62.5
parent: 2
- - uid: 6618
+ - uid: 13799
components:
- type: Transform
- pos: -12.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -47.5,38.5
parent: 2
- - uid: 6619
+ - uid: 13800
components:
- type: Transform
- pos: -13.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,62.5
parent: 2
- - uid: 6620
+ - uid: 13801
components:
- type: Transform
- pos: -14.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,27.5
parent: 2
- - uid: 6621
+ - uid: 13802
components:
- type: Transform
- pos: -15.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,60.5
parent: 2
- - uid: 6622
+ - uid: 13803
components:
- type: Transform
- pos: -16.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-25.5
parent: 2
- - uid: 6623
+ - uid: 13804
components:
- type: Transform
- pos: -17.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,-49.5
parent: 2
- - uid: 6624
+ - uid: 13805
components:
- type: Transform
- pos: -18.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-37.5
parent: 2
- - uid: 6625
+ - uid: 13806
components:
- type: Transform
- pos: -18.5,-18.5
+ pos: -11.47343,-0.62564135
parent: 2
- - uid: 6626
+ - uid: 13807
components:
- type: Transform
- pos: -18.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -28.399817,0.6220567
parent: 2
- - uid: 6627
+ - uid: 13808
components:
- type: Transform
- pos: -18.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -26.524817,0.6220567
parent: 2
- - uid: 6628
+ - uid: 13809
components:
- type: Transform
- pos: -18.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 0.53509253,61.69526
parent: 2
- - uid: 6629
+- proto: ChairOfficeLight
+ entities:
+ - uid: 13810
components:
- type: Transform
- pos: -18.5,-14.5
+ pos: 20.5,-27.5
parent: 2
- - uid: 6630
+ - uid: 13811
components:
- type: Transform
- pos: -18.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,0.5
parent: 2
- - uid: 6631
+ - uid: 13812
components:
- type: Transform
- pos: -18.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,29.5
parent: 2
- - uid: 6632
+ - uid: 13813
components:
- type: Transform
- pos: -18.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-3.5
parent: 2
- - uid: 6633
+ - uid: 13814
components:
- type: Transform
- pos: -18.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-59.5
parent: 2
- - uid: 6634
+ - uid: 13815
components:
- type: Transform
- pos: -18.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-30.5
parent: 2
- - uid: 6635
+ - uid: 13816
components:
- type: Transform
- pos: -18.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-30.5
parent: 2
- - uid: 6636
+ - uid: 13817
components:
- type: Transform
- pos: -18.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-26.5
parent: 2
- - uid: 6637
+ - uid: 13818
components:
- type: Transform
- pos: -16.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-56.5
parent: 2
- - uid: 6638
+ - uid: 13819
components:
- type: Transform
- pos: -17.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-47.5
parent: 2
- - uid: 6639
+ - uid: 13820
components:
- type: Transform
- pos: -18.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,7.5
parent: 2
- - uid: 6640
+ - uid: 13821
components:
- type: Transform
- pos: -18.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,-66.5
parent: 2
- - uid: 6641
+ - uid: 13822
components:
- type: Transform
- pos: -18.5,-5.5
+ pos: 22.5,-45.5
parent: 2
- - uid: 6642
+ - uid: 13823
components:
- type: Transform
- pos: -37.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-68.5
parent: 2
- - uid: 6643
+ - uid: 13824
components:
- type: Transform
- pos: -18.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-42.5
parent: 2
- - uid: 6644
+ - uid: 13825
components:
- type: Transform
- pos: -18.5,-1.5
+ pos: -17.5,-40.5
parent: 2
- - uid: 6645
+ - uid: 13826
components:
- type: Transform
- pos: -18.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-29.5
parent: 2
- - uid: 6646
+ - uid: 13827
components:
- type: Transform
- pos: -18.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-47.5
parent: 2
- - uid: 6647
+ - uid: 13828
components:
- type: Transform
- pos: -18.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,31.5
parent: 2
- - uid: 6648
+ - uid: 13829
components:
- type: Transform
- pos: -18.5,2.5
+ pos: 3.5,-15.5
parent: 2
- - uid: 6649
+ - uid: 13830
components:
- type: Transform
- pos: -18.5,3.5
+ pos: -18.5,-40.5
parent: 2
- - uid: 6650
+ - uid: 13831
components:
- type: Transform
- pos: -18.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,8.5
parent: 2
- - uid: 6651
+ - uid: 13832
components:
- type: Transform
- pos: -18.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 80.5,-19.5
parent: 2
- - uid: 6652
+ - uid: 13833
components:
- type: Transform
- pos: -18.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-60.5
parent: 2
- - uid: 6653
+ - uid: 13834
components:
- type: Transform
- pos: -37.5,-67.5
+ rot: 1.5707963267948966 rad
+ pos: -63.5,8.5
parent: 2
- - uid: 6654
+ - uid: 13835
components:
- type: Transform
- pos: -20.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-29.5
parent: 2
- - uid: 6655
+ - uid: 13836
components:
- type: Transform
- pos: -19.5,5.5
+ pos: -24.5,50.5
parent: 2
- - uid: 6656
+ - uid: 13837
components:
- type: Transform
- pos: -20.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,52.5
parent: 2
- - uid: 6657
+ - uid: 13838
components:
- type: Transform
- pos: -21.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-49.5
parent: 2
- - uid: 6658
+ - uid: 13839
components:
- type: Transform
- pos: -22.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-34.5
parent: 2
- - uid: 6659
+ - uid: 13840
components:
- type: Transform
- pos: -23.5,5.5
+ pos: 23.5,-45.5
parent: 2
- - uid: 6660
+ - uid: 13841
components:
- type: Transform
- pos: -24.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-34.5
parent: 2
- - uid: 6661
+ - uid: 13842
components:
- type: Transform
- pos: -25.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-44.5
parent: 2
- - uid: 6662
+ - uid: 13843
components:
- type: Transform
- pos: -26.5,5.5
+ pos: 41.5,-73.5
parent: 2
- - uid: 6663
+ - uid: 13844
components:
- type: Transform
- pos: -27.5,5.5
+ pos: 35.5,-40.5
parent: 2
- - uid: 6664
+ - uid: 13845
components:
- type: Transform
- pos: -28.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-40.5
parent: 2
- - uid: 6665
+ - uid: 13846
components:
- type: Transform
- pos: -29.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 36.5,-38.5
parent: 2
- - uid: 6666
+ - uid: 13847
components:
- type: Transform
- pos: -30.5,5.5
+ pos: 39.5,-73.5
parent: 2
- - uid: 6667
+ - uid: 13848
components:
- type: Transform
- pos: -31.5,5.5
+ pos: 59.5,28.5
parent: 2
- - uid: 6668
+ - uid: 13849
components:
- type: Transform
- pos: -32.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 36.5,-44.5
parent: 2
- - uid: 6669
+ - uid: 13850
components:
- type: Transform
- pos: -33.5,5.5
+ pos: -28.5,46.5
parent: 2
- - uid: 6670
+ - uid: 13851
components:
- type: Transform
- pos: -34.5,5.5
+ pos: -26.5,46.5
parent: 2
- - uid: 6671
+- proto: ChairPilotSeat
+ entities:
+ - uid: 38746
components:
- type: Transform
- pos: -35.5,5.5
- parent: 2
- - uid: 6672
+ rot: 3.141592653589793 rad
+ pos: 1.5,3.5
+ parent: 38714
+ - uid: 38747
components:
- type: Transform
- pos: -36.5,5.5
- parent: 2
- - uid: 6673
+ pos: 0.5,1.5
+ parent: 38714
+ - uid: 38748
components:
- type: Transform
- pos: -37.5,5.5
- parent: 2
- - uid: 6674
- components:
- - type: Transform
- pos: -38.5,5.5
- parent: 2
- - uid: 6675
- components:
- - type: Transform
- pos: -39.5,11.5
- parent: 2
- - uid: 6676
- components:
- - type: Transform
- pos: -40.5,11.5
- parent: 2
- - uid: 6677
- components:
- - type: Transform
- pos: -41.5,11.5
- parent: 2
- - uid: 6678
+ pos: 2.5,1.5
+ parent: 38714
+ - uid: 38749
components:
- type: Transform
- pos: -41.5,10.5
- parent: 2
- - uid: 6679
+ pos: 3.5,1.5
+ parent: 38714
+ - uid: 38750
components:
- type: Transform
- pos: -41.5,9.5
- parent: 2
- - uid: 6680
+ pos: -0.5,1.5
+ parent: 38714
+- proto: ChairWood
+ entities:
+ - uid: 13852
components:
- type: Transform
- pos: -41.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -5.8492327,53.653503
parent: 2
- - uid: 6681
+ - uid: 13853
components:
- type: Transform
- pos: -41.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -3.8965049,45.78206
parent: 2
- - uid: 6682
+ - uid: 13854
components:
- type: Transform
- pos: -41.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,-34.5
parent: 2
- - uid: 6683
+ - uid: 13855
components:
- type: Transform
- pos: -41.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-39.5
parent: 2
- - uid: 6684
+ - uid: 13856
components:
- type: Transform
- pos: -41.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -71.5,-41.5
parent: 2
- - uid: 6685
+ - uid: 13857
components:
- type: Transform
- pos: -40.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -68.5,-45.5
parent: 2
- - uid: 6686
+ - uid: 13858
components:
- type: Transform
- pos: -41.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -63.5,-40.5
parent: 2
- - uid: 6687
+ - uid: 13859
components:
- type: Transform
- pos: -41.5,13.5
+ pos: -69.5,-43.5
parent: 2
- - uid: 6688
+ - uid: 13860
components:
- type: Transform
- pos: -41.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -63.5,-39.5
parent: 2
- - uid: 6689
+ - uid: 13861
components:
- type: Transform
- pos: -41.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -69.5,-45.5
parent: 2
- - uid: 6690
+ - uid: 13862
components:
- type: Transform
- pos: -41.5,16.5
+ pos: -68.5,-43.5
parent: 2
- - uid: 6691
+ - uid: 13863
components:
- type: Transform
- pos: -41.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -70.5,-41.5
parent: 2
- - uid: 6692
+ - uid: 13864
components:
- type: Transform
- pos: -41.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 56.5,-35.5
parent: 2
- - uid: 6693
+ - uid: 13865
components:
- type: Transform
- pos: -41.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,44.5
parent: 2
- - uid: 6694
+ - uid: 13866
components:
- type: Transform
- pos: -41.5,20.5
+ pos: -18.5,-70.5
parent: 2
- - uid: 6695
+ - uid: 13867
components:
- type: Transform
- pos: -41.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -68.5,-36.5
parent: 2
- - uid: 6696
+ - uid: 13868
components:
- type: Transform
- pos: -41.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -69.5,-36.5
parent: 2
- - uid: 6697
+ - uid: 13869
components:
- type: Transform
- pos: -41.5,23.5
+ pos: -15.5,-68.5
parent: 2
- - uid: 6698
+ - uid: 13870
components:
- type: Transform
- pos: -43.5,12.5
+ pos: -17.5,-68.5
parent: 2
- - uid: 6699
+ - uid: 13871
components:
- type: Transform
- pos: -42.5,12.5
+ pos: -18.5,-68.5
parent: 2
- - uid: 6700
+ - uid: 13872
components:
- type: Transform
- pos: -44.5,12.5
+ pos: -20.5,-69.5
parent: 2
- - uid: 6701
+ - uid: 13873
components:
- type: Transform
- pos: -42.5,9.5
+ pos: -19.5,-69.5
parent: 2
- - uid: 6702
+ - uid: 13874
components:
- type: Transform
- pos: -43.5,9.5
+ pos: -19.5,-68.5
parent: 2
- - uid: 6703
+ - uid: 13875
components:
- type: Transform
- pos: -33.5,17.5
+ pos: -20.5,-68.5
parent: 2
- - uid: 6704
+ - uid: 13876
components:
- type: Transform
- pos: -33.5,16.5
+ pos: -18.5,-69.5
parent: 2
- - uid: 6705
+ - uid: 13877
components:
- type: Transform
- pos: -35.5,16.5
+ pos: -17.5,-69.5
parent: 2
- - uid: 6706
+ - uid: 13878
components:
- type: Transform
- pos: -35.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-52.5
parent: 2
- - uid: 6707
+ - uid: 13879
components:
- type: Transform
- pos: -35.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-53.5
parent: 2
- - uid: 6708
+ - uid: 13880
components:
- type: Transform
- pos: -35.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,44.5
parent: 2
- - uid: 6709
+ - uid: 13881
components:
- type: Transform
- pos: -36.5,20.5
+ pos: -12.5,-68.5
parent: 2
- - uid: 6710
+ - uid: 13882
components:
- type: Transform
- pos: -35.5,20.5
+ pos: -13.5,-70.5
parent: 2
- - uid: 6711
+ - uid: 13883
components:
- type: Transform
- pos: -34.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -10.563258,46.649433
parent: 2
- - uid: 6712
+ - uid: 13884
components:
- type: Transform
- pos: -33.5,20.5
+ pos: -19.5,-70.5
parent: 2
- - uid: 6713
+ - uid: 13885
components:
- type: Transform
- pos: -33.5,19.5
+ pos: -13.5,-68.5
parent: 2
- - uid: 6714
+ - uid: 13886
components:
- type: Transform
- pos: -37.5,19.5
+ pos: -14.5,-69.5
parent: 2
- - uid: 6715
+ - uid: 13887
components:
- type: Transform
- pos: -35.5,14.5
+ pos: -70.5,-39.5
parent: 2
- - uid: 6716
+ - uid: 13888
components:
- type: Transform
- pos: -35.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-40.5
parent: 2
- - uid: 6717
+ - uid: 13889
components:
- type: Transform
- pos: -35.5,12.5
+ pos: -3.4907331,42.184048
parent: 2
- - uid: 6718
+ - uid: 13890
components:
- type: Transform
- pos: -35.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -10.563247,36.74413
parent: 2
- - uid: 6719
+ - uid: 13891
components:
- type: Transform
- pos: -35.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -67.5,-36.5
parent: 2
- - uid: 6720
+ - uid: 13892
components:
- type: Transform
- pos: -35.5,9.5
+ pos: -71.5,-39.5
parent: 2
- - uid: 6721
+ - uid: 13893
components:
- type: Transform
- pos: -35.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-7.5
parent: 2
- - uid: 6722
+ - uid: 13894
components:
- type: Transform
- pos: -35.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-8.5
parent: 2
- - uid: 6723
+ - uid: 13895
components:
- type: Transform
- pos: -33.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -10.485122,38.76386
parent: 2
- - uid: 6724
+ - uid: 13896
components:
- type: Transform
- pos: -32.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -12.500747,36.759758
parent: 2
- - uid: 6725
+ - uid: 13897
components:
- type: Transform
- pos: -32.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -12.500759,46.665062
parent: 2
- - uid: 6726
+ - uid: 13898
components:
- type: Transform
- pos: -34.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -12.453872,38.748238
parent: 2
- - uid: 6727
+ - uid: 13899
components:
- type: Transform
- pos: -36.5,12.5
+ pos: -15.5,-69.5
parent: 2
- - uid: 6728
+ - uid: 13900
components:
- type: Transform
- pos: -37.5,12.5
+ pos: -12.5,-69.5
parent: 2
- - uid: 6729
+ - uid: 13901
components:
- type: Transform
- pos: -38.5,12.5
+ pos: -14.5,-70.5
parent: 2
- - uid: 6730
+ - uid: 13902
components:
- type: Transform
- pos: -38.5,12.5
+ pos: -12.5,-70.5
parent: 2
- - uid: 6731
+ - uid: 13903
components:
- type: Transform
- pos: -63.5,-21.5
+ pos: -14.5,-68.5
parent: 2
- - uid: 6732
+ - uid: 13904
components:
- type: Transform
- pos: -63.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-51.5
parent: 2
- - uid: 6733
+ - uid: 13905
components:
- type: Transform
- pos: -63.5,-23.5
+ pos: -13.5,-69.5
parent: 2
- - uid: 6734
+ - uid: 13906
components:
- type: Transform
- pos: -63.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-7.5
parent: 2
- - uid: 6735
+ - uid: 13907
components:
- type: Transform
- pos: -63.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-8.5
parent: 2
- - uid: 6736
+ - uid: 13908
components:
- type: Transform
- pos: -63.5,-26.5
+ pos: -28.5,-7.5
parent: 2
- - uid: 6737
+ - uid: 13909
components:
- type: Transform
- pos: -63.5,-27.5
+ pos: -122.5,33.5
parent: 2
- - uid: 6738
+ - uid: 13910
components:
- type: Transform
- pos: -63.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: -122.5,31.5
parent: 2
- - uid: 6739
+ - uid: 13911
components:
- type: Transform
- pos: -64.5,-25.5
+ pos: -20.5,-70.5
parent: 2
- - uid: 6740
+ - uid: 13912
components:
- type: Transform
- pos: -65.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,27.5
parent: 2
- - uid: 6741
+ - uid: 13913
components:
- type: Transform
- pos: -62.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,28.5
parent: 2
- - uid: 6742
+- proto: CheapRollerBed
+ entities:
+ - uid: 13914
components:
- type: Transform
- pos: -61.5,-25.5
+ pos: 2.5292196,-49.44199
parent: 2
- - uid: 6743
+ - uid: 13915
components:
- type: Transform
- pos: -60.5,-25.5
+ pos: 45.5,-30.5
parent: 2
- - uid: 6744
+ - type: Physics
+ canCollide: False
+ - uid: 13916
components:
- type: Transform
- pos: -59.5,-25.5
+ pos: 6.567247,-12.276767
parent: 2
- - uid: 6745
+ - type: Physics
+ canCollide: False
+ - uid: 13917
components:
- type: Transform
- pos: -58.5,-25.5
+ pos: 33.5,-41.5
parent: 2
- - uid: 6746
+ - uid: 13918
components:
- type: Transform
- pos: -57.5,-25.5
+ pos: 47.5,-30.5
parent: 2
- - uid: 6747
+ - type: Physics
+ canCollide: False
+ - uid: 13919
components:
- type: Transform
- pos: -70.5,-21.5
+ pos: 18.524715,-23.354324
parent: 2
- - uid: 6748
+ - type: Physics
+ canCollide: False
+ - uid: 13920
components:
- type: Transform
- pos: -70.5,-22.5
+ pos: 17.493465,-23.354118
parent: 2
- - uid: 6749
+ - type: Physics
+ canCollide: False
+ - uid: 13921
components:
- type: Transform
- pos: -70.5,-23.5
+ pos: 2.5268502,-40.29957
parent: 2
- - uid: 6750
+ - type: Physics
+ canCollide: False
+- proto: CheapRollerBedSpawnFolded
+ entities:
+ - uid: 13922
components:
- type: Transform
- pos: -70.5,-24.5
+ pos: 24.247139,-26.420021
parent: 2
- - uid: 6751
+ - uid: 13923
components:
- type: Transform
- pos: -70.5,-25.5
+ pos: 24.262762,-27.091896
parent: 2
- - uid: 6752
+- proto: ChemDispenser
+ entities:
+ - uid: 13924
components:
- type: Transform
- pos: -70.5,-26.5
+ pos: 3.5,-33.5
parent: 2
- - uid: 6753
+ - type: ContainerContainer
+ containers:
+ ReagentDispenser-beaker: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ beakerSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 13925
components:
- type: Transform
- pos: -70.5,-27.5
+ pos: 6.5,-29.5
parent: 2
- - uid: 6754
+ - type: ContainerContainer
+ containers:
+ ReagentDispenser-beaker: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ beakerSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: ChemicalPayload
+ entities:
+ - uid: 13926
components:
- type: Transform
- pos: -70.5,-28.5
+ pos: -6.654764,-46.34208
parent: 2
- - uid: 6755
+ - uid: 13927
components:
- type: Transform
- pos: -69.5,-25.5
+ pos: 2.7165446,-30.750381
parent: 2
- - uid: 6756
+ - uid: 13928
components:
- type: Transform
- pos: -67.5,-25.5
+ pos: 2.7165446,-30.750381
parent: 2
- - uid: 6757
+ - uid: 13929
components:
- type: Transform
- pos: -71.5,-25.5
+ pos: 2.7165446,-30.750381
parent: 2
- - uid: 6758
+- proto: ChemistryHotplate
+ entities:
+ - uid: 13930
components:
- type: Transform
- pos: -69.5,-25.5
+ pos: -22.5,-14.5
parent: 2
- - uid: 6759
+ - uid: 13931
components:
- type: Transform
- pos: -68.5,-25.5
+ pos: 4.5,-33.5
parent: 2
- - uid: 6760
+- proto: ChemMaster
+ entities:
+ - uid: 13932
components:
- type: Transform
- pos: -67.5,-29.5
+ pos: 4.5,-29.5
parent: 2
- - uid: 6761
+ - type: ContainerContainer
+ containers:
+ ChemMaster-beaker: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ beakerSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ outputSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 13933
components:
- type: Transform
- pos: -67.5,-30.5
+ pos: 3.5,-35.5
parent: 2
- - uid: 6762
+ - type: ContainerContainer
+ containers:
+ ChemMaster-beaker: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ beakerSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ outputSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: ChessBoard
+ entities:
+ - uid: 13934
components:
- type: Transform
- pos: -68.5,-30.5
+ pos: -31.521072,68.62613
parent: 2
- - uid: 6763
+ - uid: 13935
components:
- type: Transform
- pos: -69.5,-30.5
+ pos: -31.999136,-13.284749
parent: 2
- - uid: 6764
+ - uid: 13936
components:
- type: Transform
- pos: -70.5,-30.5
+ pos: 40.47708,-0.39684796
parent: 2
- - uid: 6765
+ - uid: 13937
components:
- type: Transform
- pos: -71.5,-30.5
+ pos: 40.47705,13.567584
parent: 2
- - uid: 6766
+ - uid: 13938
components:
- type: Transform
- pos: -72.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 10.540379,-77.35887
parent: 2
- - uid: 6767
+ - uid: 13939
components:
- type: Transform
- pos: -73.5,-30.5
+ pos: 63.66099,-25.833206
parent: 2
- - uid: 6768
+- proto: Cigar
+ entities:
+ - uid: 13940
components:
- type: Transform
- pos: -73.5,-29.5
+ pos: 84.492966,-0.35883796
parent: 2
- - uid: 6769
+ - uid: 13941
components:
- type: Transform
- pos: -74.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 53.399334,28.555635
parent: 2
- - uid: 6770
+ - uid: 13942
components:
- type: Transform
- pos: -75.5,-30.5
+ pos: 53.546623,28.419834
parent: 2
- - uid: 6771
+- proto: CigarCase
+ entities:
+ - uid: 13943
components:
- type: Transform
- pos: -76.5,-30.5
+ pos: 36.502167,-9.505364
parent: 2
- - uid: 6772
+ - type: Physics
+ canCollide: False
+ - uid: 13944
components:
- type: Transform
- pos: -66.5,-30.5
+ pos: -76.360794,-0.4243784
parent: 2
- - uid: 6773
+- proto: CigaretteSpent
+ entities:
+ - uid: 13945
components:
- type: Transform
- pos: -65.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -8.221859,68.580894
parent: 2
- - uid: 6774
+ - uid: 13946
components:
- type: Transform
- pos: -64.5,-30.5
+ pos: -18.792145,56.784576
parent: 2
- - uid: 6775
+ - uid: 13947
components:
- type: Transform
- pos: -63.5,-30.5
+ pos: -4.220675,56.874905
parent: 2
- - uid: 6776
+ - uid: 13948
components:
- type: Transform
- pos: -62.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -56.749214,14.934522
parent: 2
- - uid: 6777
+ - uid: 13949
components:
- type: Transform
- pos: -61.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -27.606853,-28.286798
parent: 2
- - uid: 6778
+ - uid: 13950
components:
- type: Transform
- pos: -60.5,-30.5
+ pos: 25.112226,-16.579811
parent: 2
- - uid: 6779
+ - uid: 13951
components:
- type: Transform
- pos: -59.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -28.874308,-30.625107
parent: 2
- - uid: 6780
+ - uid: 13952
components:
- type: Transform
- pos: -58.5,-30.5
+ pos: 24.793365,17.311203
parent: 2
- - uid: 6781
+ - uid: 13953
components:
- type: Transform
- pos: -57.5,-30.5
+ pos: 9.577554,-11.391624
parent: 2
- - uid: 6782
+ - uid: 13954
components:
- type: Transform
- pos: -56.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 0.25211835,-45.352993
parent: 2
- - uid: 6783
+ - uid: 13955
components:
- type: Transform
- pos: -55.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -1.0373211,-57.28495
parent: 2
- - uid: 6784
+ - uid: 13956
components:
- type: Transform
- pos: -54.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -51.953518,0.0045550466
parent: 2
- - uid: 6785
+ - uid: 13957
components:
- type: Transform
- pos: -54.5,-29.5
+ pos: -46.327656,-33.127026
parent: 2
- - uid: 6786
+ - uid: 13958
components:
- type: Transform
- pos: -54.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: -22.800909,10.6530485
parent: 2
- - uid: 6787
+- proto: CigaretteSyndicate
+ entities:
+ - uid: 1513
components:
- type: Transform
- pos: -54.5,-27.5
- parent: 2
- - uid: 6788
+ parent: 1511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1514
components:
- type: Transform
- pos: -54.5,-26.5
- parent: 2
- - uid: 6789
+ parent: 1511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1515
components:
- type: Transform
- pos: -54.5,-25.5
- parent: 2
- - uid: 6790
+ parent: 1511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CigarGold
+ entities:
+ - uid: 13959
components:
- type: Transform
- pos: -54.5,-24.5
+ pos: -15.43277,10.848992
parent: 2
- - uid: 6791
+ - type: Physics
+ canCollide: False
+ - uid: 13960
components:
- type: Transform
- pos: -51.5,-18.5
+ pos: -15.55777,10.942742
parent: 2
- - uid: 6792
+ - type: Physics
+ canCollide: False
+ - uid: 13961
components:
- type: Transform
- pos: -51.5,-19.5
+ pos: 41.683758,19.570614
parent: 2
- - uid: 6793
+ - type: Physics
+ canCollide: False
+ - uid: 13962
components:
- type: Transform
- pos: -51.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 29.51288,-0.6245712
parent: 2
- - uid: 6794
+ - uid: 13963
components:
- type: Transform
- pos: -51.5,-21.5
+ pos: 12.463764,9.66757
parent: 2
- - uid: 6795
+ - type: Physics
+ canCollide: False
+ - uid: 13964
components:
- type: Transform
- pos: -52.5,-21.5
+ pos: -63.249516,6.58782
parent: 2
- - uid: 6796
+ - type: Physics
+ canCollide: False
+ - uid: 13965
components:
- type: Transform
- pos: -53.5,-21.5
+ pos: 12.588764,9.57382
parent: 2
- - uid: 6797
+ - type: Physics
+ canCollide: False
+ - uid: 13966
components:
- type: Transform
- pos: -54.5,-21.5
+ pos: 41.558758,19.633179
parent: 2
- - uid: 6798
+ - type: Physics
+ canCollide: False
+ - uid: 13967
components:
- type: Transform
- pos: -55.5,-21.5
+ pos: 31.391697,10.8042965
parent: 2
- - uid: 6799
+ - uid: 13968
components:
- type: Transform
- pos: -55.5,-20.5
+ pos: -63.374516,6.65032
parent: 2
- - uid: 6800
+ - type: Physics
+ canCollide: False
+- proto: CigarGoldCase
+ entities:
+ - uid: 13969
components:
- type: Transform
- pos: -55.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 26.459763,16.514328
parent: 2
- - uid: 6801
+ - uid: 13970
components:
- type: Transform
- pos: -56.5,-19.5
+ pos: -2.4250343,12.791277
parent: 2
- - uid: 6802
+ - type: Physics
+ canCollide: False
+ - uid: 13971
components:
- type: Transform
- pos: -57.5,-19.5
+ pos: 23.554373,16.669165
parent: 2
- - uid: 6803
+ - uid: 13973
components:
- type: Transform
- pos: -58.5,-19.5
- parent: 2
- - uid: 6804
+ parent: 13972
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CigarSpent
+ entities:
+ - uid: 13978
components:
- type: Transform
- pos: -59.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 3.358705,15.421036
parent: 2
- - uid: 6805
+- proto: CigCartonMixed
+ entities:
+ - uid: 13979
components:
- type: Transform
- pos: -60.5,-19.5
+ pos: -0.5251062,-10.303878
parent: 2
- - uid: 6806
+- proto: CircuitImprinter
+ entities:
+ - uid: 13980
components:
- type: Transform
- pos: -61.5,-19.5
+ pos: -3.5,-31.5
parent: 2
- - uid: 6807
+- proto: Claymore
+ entities:
+ - uid: 13981
components:
- type: Transform
- pos: -61.5,-20.5
+ pos: -77.5,-3.5
parent: 2
- - uid: 6808
+- proto: CleanerDispenser
+ entities:
+ - uid: 13982
components:
- type: Transform
- pos: -76.5,-21.5
+ pos: 0.5,55.5
parent: 2
- - uid: 6809
+- proto: CloningPod
+ entities:
+ - uid: 13983
components:
- type: Transform
- pos: -76.5,-22.5
+ pos: 8.5,-37.5
parent: 2
- - uid: 6810
+- proto: ClosetBomb
+ entities:
+ - uid: 13984
components:
- type: Transform
- pos: -75.5,-22.5
+ pos: 51.5,-6.5
parent: 2
- - uid: 6811
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 13985
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: ClosetBombFilled
+ entities:
+ - uid: 13986
components:
- type: Transform
- pos: -74.5,-22.5
+ pos: 61.5,6.5
parent: 2
- - uid: 6812
+ - uid: 13987
components:
- type: Transform
- pos: -73.5,-22.5
+ pos: 63.5,6.5
parent: 2
- - uid: 6813
+ - uid: 13988
components:
- type: Transform
- pos: -74.5,-21.5
+ pos: -29.5,-43.5
parent: 2
- - uid: 6814
+ - uid: 13989
components:
- type: Transform
- pos: -74.5,-20.5
+ pos: -7.5,-48.5
parent: 2
- - uid: 6815
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 13990
components:
- type: Transform
- pos: -74.5,-19.5
+ pos: -29.5,-41.5
parent: 2
- - uid: 6816
+ - uid: 13991
components:
- type: Transform
- pos: -73.5,-19.5
+ pos: 59.5,6.5
parent: 2
- - uid: 6817
+- proto: ClosetChefFilled
+ entities:
+ - uid: 13992
components:
- type: Transform
- pos: -72.5,-19.5
+ pos: -32.5,25.5
parent: 2
- - uid: 6818
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 234.99968
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ClosetEmergency
+ entities:
+ - uid: 13993
components:
- type: Transform
- pos: -71.5,-19.5
+ pos: -31.5,82.5
parent: 2
- - uid: 6819
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 6.7046022
+ - 25.222076
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 13994
components:
- type: Transform
- pos: -70.5,-19.5
+ pos: -27.5,82.5
parent: 2
- - uid: 6820
+- proto: ClosetEmergencyFilledRandom
+ entities:
+ - uid: 13995
components:
- type: Transform
- pos: -69.5,-19.5
+ pos: 4.5,81.5
parent: 2
- - uid: 6821
+ - uid: 13996
components:
- type: Transform
- pos: -68.5,-19.5
+ pos: -9.5,82.5
parent: 2
- - uid: 6822
+ - uid: 13997
components:
- type: Transform
- pos: -67.5,-19.5
+ pos: -9.5,88.5
parent: 2
- - uid: 6823
+ - uid: 13998
components:
- type: Transform
- pos: -67.5,-20.5
+ pos: 4.5,80.5
parent: 2
- - uid: 6824
+ - uid: 13999
components:
- type: Transform
- pos: -66.5,-20.5
+ pos: -13.5,82.5
parent: 2
- - uid: 6825
+ - uid: 14000
components:
- type: Transform
- pos: -65.5,-20.5
+ pos: -57.5,64.5
parent: 2
- - uid: 6826
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14001
+ - 14002
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14003
components:
- type: Transform
- pos: -75.5,-19.5
+ pos: -12.5,98.5
parent: 2
- - uid: 6827
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1498
+ moles:
+ - 3.3523011
+ - 12.611038
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14004
components:
- type: Transform
- pos: -76.5,-19.5
+ pos: -31.5,88.5
parent: 2
- - uid: 6828
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 6.7046022
+ - 25.222076
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14005
components:
- type: Transform
- pos: -77.5,-19.5
+ pos: -18.5,-21.5
parent: 2
- - uid: 6829
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14006
components:
- type: Transform
- pos: -77.5,-26.5
+ pos: 4.5,-67.5
parent: 2
- - uid: 6830
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14007
components:
- type: Transform
- pos: -76.5,-26.5
+ pos: 4.5,-73.5
parent: 2
- - uid: 6831
- components:
- - type: Transform
- pos: -75.5,-26.5
- parent: 2
- - uid: 6832
- components:
- - type: Transform
- pos: -74.5,-26.5
- parent: 2
- - uid: 6833
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14008
components:
- type: Transform
- pos: -74.5,-25.5
+ pos: 15.5,19.5
parent: 2
- - uid: 6834
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14009
components:
- type: Transform
- pos: -74.5,-24.5
+ pos: -10.5,-71.5
parent: 2
- - uid: 6835
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14010
components:
- type: Transform
- pos: -74.5,-23.5
+ pos: -76.5,-25.5
parent: 2
- - uid: 6836
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14011
components:
- type: Transform
- pos: -73.5,-26.5
+ pos: 29.5,32.5
parent: 2
- - uid: 6837
+ - uid: 14012
components:
- type: Transform
- pos: -73.5,-27.5
+ pos: -43.5,8.5
parent: 2
- - uid: 6838
+ - uid: 14013
components:
- type: Transform
- pos: -69.5,-32.5
+ pos: -43.5,41.5
parent: 2
- - uid: 6839
+ - uid: 14014
components:
- type: Transform
- pos: -59.5,-35.5
+ pos: -42.5,-0.5
parent: 2
- - uid: 6840
+ - uid: 14015
components:
- type: Transform
- pos: -58.5,-35.5
+ pos: 28.5,-61.5
parent: 2
- - uid: 6841
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14016
components:
- type: Transform
- pos: -58.5,-36.5
+ pos: -16.5,19.5
parent: 2
- - uid: 6842
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14017
components:
- type: Transform
- pos: -58.5,-37.5
+ pos: -1.5,27.5
parent: 2
- - uid: 6843
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14018
components:
- type: Transform
- pos: -58.5,-38.5
+ pos: -2.5,-60.5
parent: 2
- - uid: 6844
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14019
components:
- type: Transform
- pos: -58.5,-39.5
+ pos: -15.5,-29.5
parent: 2
- - uid: 6845
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14020
components:
- type: Transform
- pos: -58.5,-40.5
+ pos: 54.5,-38.5
parent: 2
- - uid: 6846
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14021
components:
- type: Transform
- pos: -58.5,-41.5
+ pos: -30.5,98.5
parent: 2
- - uid: 6847
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1498
+ moles:
+ - 3.3523011
+ - 12.611038
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14022
components:
- type: Transform
- pos: -58.5,-42.5
+ pos: 33.5,-18.5
parent: 2
- - uid: 6848
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14023
components:
- type: Transform
- pos: -58.5,-43.5
+ pos: -60.5,-17.5
parent: 2
- - uid: 6849
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14024
components:
- type: Transform
- pos: -58.5,-44.5
+ pos: -16.5,18.5
parent: 2
- - uid: 6850
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14025
components:
- type: Transform
- pos: -58.5,-45.5
+ pos: -15.5,-31.5
parent: 2
- - uid: 6851
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14026
components:
- type: Transform
- pos: -58.5,-47.5
+ pos: -34.5,-51.5
parent: 2
- - uid: 6852
+ - uid: 14027
components:
- type: Transform
- pos: -58.5,-48.5
+ pos: -79.5,15.499999
parent: 2
- - uid: 6853
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14028
components:
- type: Transform
- pos: -58.5,-49.5
+ pos: 9.5,90.5
parent: 2
- - uid: 6854
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14029
components:
- type: Transform
- pos: -59.5,-42.5
+ pos: 15.5,20.5
parent: 2
- - uid: 6855
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14030
components:
- type: Transform
- pos: -61.5,-42.5
+ pos: -46.5,-39.5
parent: 2
- - uid: 6856
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14031
components:
- type: Transform
- pos: -62.5,-42.5
+ pos: -67.5,-31.5
parent: 2
- - uid: 6857
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14032
components:
- type: Transform
- pos: -63.5,-42.5
+ pos: -32.5,-49.5
parent: 2
- - uid: 6858
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14033
components:
- type: Transform
- pos: -64.5,-42.5
+ pos: 70.5,-40.5
parent: 2
- - uid: 6859
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 2.101486
+ - 7.9055915
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14034
components:
- type: Transform
- pos: -65.5,-42.5
+ pos: -21.5,58.5
parent: 2
- - uid: 6860
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14035
components:
- type: Transform
- pos: -66.5,-42.5
+ pos: 8.5,-58.5
parent: 2
- - uid: 6861
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14036
components:
- type: Transform
- pos: -67.5,-42.5
+ pos: -115.5,26.5
parent: 2
- - uid: 6862
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14037
components:
- type: Transform
- pos: -67.5,-40.5
+ pos: -57.5,-38.5
parent: 2
- - uid: 6863
+ - uid: 14038
components:
- type: Transform
- pos: -67.5,-41.5
+ pos: -27.5,88.5
parent: 2
- - uid: 6864
+ - uid: 14039
components:
- type: Transform
- pos: -67.5,-39.5
+ pos: -13.5,88.5
parent: 2
- - uid: 6865
+- proto: ClosetFireFilled
+ entities:
+ - uid: 14040
components:
- type: Transform
- pos: -61.5,-46.5
+ pos: 0.5,27.5
parent: 2
- - uid: 6866
+ - uid: 14041
components:
- type: Transform
- pos: -61.5,-47.5
+ pos: -9.5,92.5
parent: 2
- - uid: 6867
+ - uid: 14042
components:
- type: Transform
- pos: -64.5,-45.5
+ pos: -13.5,79.5
parent: 2
- - uid: 6868
+ - uid: 14043
components:
- type: Transform
- pos: -64.5,-46.5
+ pos: -9.5,79.5
parent: 2
- - uid: 6869
+ - uid: 14044
components:
- type: Transform
- pos: -62.5,-46.5
+ pos: 4.5,79.5
parent: 2
- - uid: 6870
+ - uid: 14045
components:
- type: Transform
- pos: -63.5,-46.5
+ pos: -31.5,92.5
parent: 2
- - uid: 6871
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 6.7046022
+ - 25.222076
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14046
components:
- type: Transform
- pos: -63.5,-46.5
+ pos: -43.5,40.5
parent: 2
- - uid: 6872
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14047
components:
- type: Transform
- pos: -45.5,-45.5
+ pos: 4.5,-68.5
parent: 2
- - uid: 6873
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14048
components:
- type: Transform
- pos: -45.5,-46.5
+ pos: -44.5,44.5
parent: 2
- - uid: 6874
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14049
components:
- type: Transform
- pos: -45.5,-47.5
+ pos: -50.5,44.5
parent: 2
- - uid: 6875
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14050
components:
- type: Transform
- pos: -46.5,-47.5
+ pos: 2.5,42.5
parent: 2
- - uid: 6876
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 14051
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14052
components:
- type: Transform
- pos: -47.5,-47.5
+ pos: 22.5,-22.5
parent: 2
- - uid: 6877
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14053
components:
- type: Transform
- pos: -48.5,-47.5
+ pos: -21.5,57.5
parent: 2
- - uid: 6878
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14054
components:
- type: Transform
- pos: -49.5,-47.5
+ pos: -43.5,50.5
parent: 2
- - uid: 6879
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14055
components:
- type: Transform
- pos: -50.5,-47.5
+ pos: 4.5,82.5
parent: 2
- - uid: 6880
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14056
components:
- type: Transform
- pos: -51.5,-47.5
+ pos: -54.5,23.5
parent: 2
- - uid: 6881
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14057
components:
- type: Transform
- pos: -51.5,-46.5
+ pos: -42.5,-1.5
parent: 2
- - uid: 6882
+ - uid: 14058
components:
- type: Transform
- pos: -51.5,-45.5
+ pos: 53.5,-30.5
parent: 2
- - uid: 6883
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14059
components:
- type: Transform
- pos: -51.5,-44.5
+ pos: 15.5,18.5
parent: 2
- - uid: 6884
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14060
components:
- type: Transform
- pos: -51.5,-43.5
+ pos: -11.5,-30.5
parent: 2
- - uid: 6885
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14061
components:
- type: Transform
- pos: -51.5,-42.5
+ pos: -31.5,61.5
parent: 2
- - uid: 6886
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14062
components:
- type: Transform
- pos: -52.5,-44.5
+ pos: -11.5,-29.5
parent: 2
- - uid: 6887
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14063
components:
- type: Transform
- pos: -53.5,-44.5
+ pos: -16.5,20.5
parent: 2
- - uid: 6888
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14064
components:
- type: Transform
- pos: -54.5,-44.5
+ pos: -31.5,79.5
parent: 2
- - uid: 6889
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 6.7046022
+ - 25.222076
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14065
components:
- type: Transform
- pos: -50.5,-44.5
+ pos: -3.5,-50.5
parent: 2
- - uid: 6890
+ - uid: 14066
components:
- type: Transform
- pos: -49.5,-44.5
+ pos: -2.5,-61.5
parent: 2
- - uid: 6891
- components:
- - type: Transform
- pos: -48.5,-44.5
- parent: 2
- - uid: 6892
- components:
- - type: Transform
- pos: -48.5,-44.5
- parent: 2
- - uid: 6893
- components:
- - type: Transform
- pos: -45.5,-44.5
- parent: 2
- - uid: 6894
- components:
- - type: Transform
- pos: -45.5,-43.5
- parent: 2
- - uid: 6895
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14067
components:
- type: Transform
- pos: -45.5,-42.5
+ pos: -42.5,3.5
parent: 2
- - uid: 6896
+ - uid: 14068
components:
- type: Transform
- pos: -39.5,-47.5
+ pos: -10.5,-74.5
parent: 2
- - uid: 6897
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14069
components:
- type: Transform
- pos: -39.5,-48.5
+ pos: 47.5,-41.5
parent: 2
- - uid: 6898
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14070
components:
- type: Transform
- pos: -40.5,-48.5
+ pos: -34.5,-49.5
parent: 2
- - uid: 6899
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14071
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14072
components:
- type: Transform
- pos: -41.5,-48.5
+ pos: 1.5,-55.5
parent: 2
- - uid: 6900
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14073
components:
- type: Transform
- pos: -42.5,-48.5
+ pos: -19.5,-21.5
parent: 2
- - uid: 6901
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14074
components:
- type: Transform
- pos: -42.5,-47.5
+ pos: -57.5,-37.5
parent: 2
- - uid: 6902
+ - uid: 14075
components:
- type: Transform
- pos: -42.5,-46.5
+ pos: -27.5,92.5
parent: 2
- - uid: 6903
+ - uid: 14076
components:
- type: Transform
- pos: -42.5,-45.5
+ pos: 0.5,27.5
parent: 2
- - uid: 6904
+ - uid: 14077
components:
- type: Transform
- pos: -42.5,-44.5
+ pos: -13.5,92.5
parent: 2
- - uid: 6905
+ - uid: 14078
components:
- type: Transform
- pos: -42.5,-43.5
+ pos: -27.5,79.5
parent: 2
- - uid: 6906
+- proto: ClosetJanitor
+ entities:
+ - uid: 14079
components:
- type: Transform
- pos: -42.5,-42.5
+ pos: 65.5,-10.5
parent: 2
- - uid: 6907
+ - uid: 14080
components:
- type: Transform
- pos: -38.5,-48.5
+ pos: 65.5,-29.5
parent: 2
- - uid: 6908
+- proto: ClosetJanitorFilled
+ entities:
+ - uid: 1787
components:
- type: Transform
- pos: -42.5,-40.5
+ pos: 4.5,53.5
parent: 2
- - uid: 6909
+ - 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:
+ - 1790
+ - 1791
+ - 1789
+ - 1792
+ - 1797
+ - 1788
+ - 1794
+ - 1795
+ - 1793
+ - 1796
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: ClosetL3JanitorFilled
+ entities:
+ - uid: 14081
components:
- type: Transform
- pos: -44.5,-40.5
+ pos: 4.5,54.5
parent: 2
- - uid: 6910
+- proto: ClosetL3ScienceFilled
+ entities:
+ - uid: 14082
components:
- type: Transform
- pos: -43.5,-40.5
+ pos: -27.5,-37.5
parent: 2
- - uid: 6911
+ - uid: 14083
components:
- type: Transform
- pos: -49.5,-38.5
+ pos: -27.5,-38.5
parent: 2
- - uid: 6912
+ - uid: 14084
components:
- type: Transform
- pos: -49.5,-39.5
+ pos: -11.5,-31.5
parent: 2
- - uid: 6913
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ClosetL3SecurityFilled
+ entities:
+ - uid: 14085
components:
- type: Transform
- pos: -49.5,-40.5
+ pos: 70.5,-2.5
parent: 2
- - uid: 6914
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14086
components:
- type: Transform
- pos: -48.5,-40.5
+ pos: 70.5,-4.5
parent: 2
- - uid: 6915
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14087
components:
- type: Transform
- pos: -47.5,-40.5
+ pos: 69.5,-4.5
parent: 2
- - uid: 6916
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ClosetL3VirologyFilled
+ entities:
+ - uid: 14088
components:
- type: Transform
- pos: -46.5,-40.5
+ pos: 26.5,-61.5
parent: 2
- - uid: 6917
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14089
components:
- type: Transform
- pos: -45.5,-40.5
+ pos: 32.5,-68.5
parent: 2
- - uid: 6918
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14090
components:
- type: Transform
- pos: -37.5,-48.5
+ pos: 27.5,-61.5
parent: 2
- - uid: 6919
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ClosetLegal
+ entities:
+ - uid: 14091
components:
- type: Transform
- pos: -36.5,-48.5
+ pos: 65.5,-28.5
parent: 2
- - uid: 6920
+ - uid: 14092
components:
- type: Transform
- pos: -35.5,-48.5
+ pos: 65.5,-11.5
parent: 2
- - uid: 6921
+- proto: ClosetMaintenanceFilledRandom
+ entities:
+ - uid: 14093
components:
- type: Transform
- pos: -34.5,-48.5
+ pos: -61.5,-33.5
parent: 2
- - uid: 6922
+ - 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: 14094
components:
- type: Transform
- pos: -33.5,-48.5
+ pos: 43.5,-6.5
parent: 2
- - uid: 6923
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14095
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14096
components:
- type: Transform
- pos: -33.5,-49.5
+ pos: -50.5,-33.5
parent: 2
- - uid: 6924
+ - uid: 14097
components:
- type: Transform
- pos: -50.5,-40.5
+ pos: -26.5,-76.5
parent: 2
- - uid: 6925
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.9456291
+ - 7.319271
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14098
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14099
components:
- type: Transform
- pos: -51.5,-40.5
+ pos: -31.5,58.5
parent: 2
- - uid: 6926
+ - uid: 14100
components:
- type: Transform
- pos: -52.5,-40.5
+ pos: -21.5,-21.5
parent: 2
- - uid: 6927
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14101
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14102
components:
- type: Transform
- pos: -53.5,-40.5
+ pos: 5.5,56.5
parent: 2
- - uid: 6928
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14103
components:
- type: Transform
- pos: -54.5,-40.5
+ pos: -64.5,-39.5
parent: 2
- - uid: 6929
+ - 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: 14104
components:
- type: Transform
- pos: -54.5,-40.5
+ pos: 21.5,-55.5
parent: 2
- - uid: 6930
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14105
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14106
components:
- type: Transform
- pos: -54.5,-39.5
+ pos: -24.5,27.5
parent: 2
- - uid: 6931
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14107
components:
- type: Transform
- pos: -54.5,-38.5
+ pos: -40.5,50.5
parent: 2
- - uid: 6932
+ - uid: 14108
components:
- type: Transform
- pos: -54.5,-37.5
+ pos: 4.5,-55.5
parent: 2
- - uid: 6933
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14109
components:
- type: Transform
- pos: -54.5,-36.5
+ pos: -73.5,-22.5
parent: 2
- - uid: 6934
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14110
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14111
components:
- type: Transform
- pos: -54.5,-35.5
+ pos: 41.5,-25.5
parent: 2
- - uid: 6935
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14112
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14113
components:
- type: Transform
- pos: -54.5,-34.5
+ pos: 34.5,-4.5
parent: 2
- - uid: 6936
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14114
components:
- type: Transform
- pos: -54.5,-33.5
+ pos: -77.5,-20.5
parent: 2
- - uid: 6937
+ - uid: 14115
components:
- type: Transform
- pos: -54.5,-31.5
+ pos: -18.5,-62.5
parent: 2
- - uid: 6938
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14116
components:
- type: Transform
- pos: -53.5,-33.5
+ pos: 25.5,61.5
parent: 2
- - uid: 6939
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14117
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14118
components:
- type: Transform
- pos: -52.5,-33.5
+ pos: 25.5,59.5
parent: 2
- - uid: 6940
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14119
components:
- type: Transform
- pos: -51.5,-33.5
+ pos: 40.5,-47.5
parent: 2
- - uid: 6941
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14120
components:
- type: Transform
- pos: -50.5,-33.5
+ pos: -38.5,2.5
parent: 2
- - uid: 6942
+ - uid: 14121
components:
- type: Transform
- pos: -49.5,-33.5
+ pos: -32.5,-53.5
parent: 2
- - uid: 6943
+ - uid: 14122
components:
- type: Transform
- pos: -48.5,-33.5
+ pos: -52.5,-22.5
parent: 2
- - uid: 6944
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14123
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14124
components:
- type: Transform
- pos: -47.5,-33.5
+ pos: -45.5,-37.5
parent: 2
- - uid: 6945
+ - uid: 14125
components:
- type: Transform
- pos: -46.5,-33.5
+ pos: -57.5,-45.5
parent: 2
- - uid: 6946
+ - 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: 14126
components:
- type: Transform
- pos: -45.5,-33.5
+ pos: -43.5,-46.5
parent: 2
- - uid: 6947
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14127
components:
- type: Transform
- pos: -44.5,-33.5
+ pos: 68.5,22.5
parent: 2
- - uid: 6948
+ - uid: 14128
components:
- type: Transform
- pos: -53.5,-36.5
+ pos: -39.5,-75.5
parent: 2
- - uid: 6949
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14129
components:
- type: Transform
- pos: -52.5,-36.5
+ pos: 35.5,-23.5
parent: 2
- - uid: 6950
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14130
components:
- type: Transform
- pos: -51.5,-36.5
+ pos: 40.5,-37.5
parent: 2
- - uid: 6951
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14131
components:
- type: Transform
- pos: -50.5,-36.5
+ pos: 40.5,-41.5
parent: 2
- - uid: 6952
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14132
components:
- type: Transform
- pos: -49.5,-36.5
+ pos: 48.5,-47.5
parent: 2
- - uid: 6953
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14133
components:
- type: Transform
- pos: -26.5,-24.5
+ pos: 52.5,-38.5
parent: 2
- - uid: 6954
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14134
components:
- type: Transform
- pos: -26.5,-25.5
+ pos: 48.5,-27.5
parent: 2
- - uid: 6955
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14135
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14136
components:
- type: Transform
- pos: -26.5,-25.5
+ pos: 43.5,-27.5
parent: 2
- - uid: 6956
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14137
components:
- type: Transform
- pos: -27.5,-25.5
+ pos: 36.5,-46.5
parent: 2
- - uid: 6957
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14138
components:
- type: Transform
- pos: -28.5,-25.5
+ pos: 18.5,-55.5
parent: 2
- - uid: 6958
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14139
components:
- type: Transform
- pos: -28.5,-27.5
+ pos: -57.5,-33.5
parent: 2
- - uid: 6959
+- proto: ClosetRadiationSuitFilled
+ entities:
+ - uid: 14140
components:
- type: Transform
- pos: -28.5,-28.5
+ pos: -62.5,2.5
parent: 2
- - uid: 6960
+ - uid: 14141
components:
- type: Transform
- pos: -28.5,-29.5
+ pos: -63.5,2.5
parent: 2
- - uid: 6961
+ - uid: 14142
components:
- type: Transform
- pos: -28.5,-26.5
+ pos: -57.5,44.5
parent: 2
- - uid: 6962
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14143
components:
- type: Transform
- pos: -31.5,-27.5
+ pos: -43.5,52.5
parent: 2
- - uid: 6963
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14144
components:
- type: Transform
- pos: -32.5,-27.5
+ pos: -55.5,-3.5
parent: 2
- - uid: 6964
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14145
components:
- type: Transform
- pos: -33.5,-27.5
+ pos: -56.5,-3.5
parent: 2
- - uid: 6965
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14146
components:
- type: Transform
- pos: -34.5,-27.5
+ pos: -50.5,6.5
parent: 2
- - uid: 6966
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14147
components:
- type: Transform
- pos: -35.5,-27.5
+ pos: -58.5,44.5
parent: 2
- - uid: 6967
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14148
components:
- type: Transform
- pos: -36.5,-27.5
+ pos: -51.5,40.5
parent: 2
- - uid: 6968
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14149
components:
- type: Transform
- pos: -37.5,-27.5
+ pos: -29.5,-39.5
parent: 2
- - uid: 6969
+ - uid: 14150
components:
- type: Transform
- pos: -38.5,-27.5
+ pos: -14.5,-55.5
parent: 2
- - uid: 6970
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14151
components:
- type: Transform
- pos: -41.5,-27.5
+ pos: 75.5,-45.5
parent: 2
- - uid: 6971
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 8.182408
+ - 30.781443
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14152
components:
- type: Transform
- pos: -42.5,-27.5
+ pos: -52.5,40.5
parent: 2
- - uid: 6972
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14153
components:
- type: Transform
- pos: -43.5,-27.5
+ pos: -31.5,-46.5
parent: 2
- - uid: 6973
+ - uid: 14154
components:
- type: Transform
- pos: -45.5,-27.5
+ pos: -53.5,4.5
parent: 2
- - uid: 6974
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14155
components:
- type: Transform
- pos: -46.5,-27.5
+ pos: -54.5,20.5
parent: 2
- - uid: 6975
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14156
components:
- type: Transform
- pos: -28.5,-30.5
+ pos: -69.5,10.5
parent: 2
- - uid: 6976
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14157
components:
- type: Transform
- pos: -28.5,-31.5
+ pos: -77.5,1.5
parent: 2
- - uid: 6977
+- proto: ClosetSteelBase
+ entities:
+ - uid: 14158
components:
- type: Transform
- pos: -50.5,-21.5
+ pos: 8.5,-40.5
parent: 2
- - uid: 6978
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14159
components:
- type: Transform
- pos: -49.5,-21.5
+ pos: 76.5,23.5
parent: 2
- - uid: 6979
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14160
components:
- type: Transform
- pos: -49.5,-19.5
+ pos: 35.5,-6.5
parent: 2
- - uid: 6980
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.9456291
+ - 7.319271
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14161
components:
- type: Transform
- pos: -49.5,-20.5
+ pos: 36.5,-6.5
parent: 2
- - uid: 6981
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14162
components:
- type: Transform
- pos: -48.5,-19.5
+ pos: 38.5,-66.5
parent: 2
- - uid: 6982
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14163
+ - 14164
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14165
components:
- type: Transform
- pos: -49.5,-22.5
+ pos: 42.5,-66.5
parent: 2
- - uid: 6983
+ - 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: 293.1496
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ open: True
+ removedMasks: 20
+ - type: PlaceableSurface
+ isPlaceable: True
+ - uid: 14166
components:
- type: Transform
- pos: 7.5,-74.5
+ pos: 13.5,-57.5
parent: 2
- - uid: 6984
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14167
components:
- type: Transform
- pos: 8.5,-74.5
+ pos: 12.5,-57.5
parent: 2
- - uid: 6985
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14168
components:
- type: Transform
- pos: 9.5,-74.5
+ pos: 11.5,-57.5
parent: 2
- - uid: 6986
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14169
components:
- type: Transform
- pos: 7.5,-76.5
+ pos: 34.5,-49.5
parent: 2
- - uid: 6987
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14170
components:
- type: Transform
- pos: 8.5,-76.5
+ pos: 34.5,-6.5
parent: 2
- - uid: 6988
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14171
components:
- type: Transform
- pos: 9.5,-76.5
+ pos: 43.5,-35.5
parent: 2
- - uid: 6989
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14172
components:
- type: Transform
- pos: 26.5,10.5
+ pos: -55.5,-43.5
parent: 2
- - uid: 6990
+ - 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:
+ - 14175
+ - 14176
+ - 14173
+ - 14174
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14177
components:
- type: Transform
- pos: 26.5,9.5
+ pos: 6.5,-10.5
parent: 2
- - uid: 6991
+ - uid: 14178
components:
- type: Transform
- pos: 27.5,9.5
+ pos: 65.5,-9.5
parent: 2
- - uid: 6992
+ - uid: 14179
components:
- type: Transform
- pos: 28.5,9.5
+ pos: 65.5,-30.5
parent: 2
- - uid: 6993
+- proto: ClosetToolFilled
+ entities:
+ - uid: 14180
components:
- type: Transform
- pos: 29.5,9.5
+ pos: -77.5,-25.5
parent: 2
- - uid: 6994
+ - uid: 14181
components:
- type: Transform
- pos: 30.5,9.5
+ pos: -56.5,17.5
parent: 2
- - uid: 6995
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14183
+ - 14182
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14184
components:
- type: Transform
- pos: 31.5,9.5
+ pos: -55.5,-11.5
parent: 2
- - uid: 6996
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14185
components:
- type: Transform
- pos: 32.5,9.5
+ pos: 11.5,85.5
parent: 2
- - uid: 6997
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14186
components:
- type: Transform
- pos: 33.5,9.5
+ pos: 24.5,10.5
parent: 2
- - uid: 6998
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14187
components:
- type: Transform
- pos: 33.5,10.5
+ pos: 11.5,84.5
parent: 2
- - uid: 6999
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14188
components:
- type: Transform
- pos: 29.5,8.5
+ pos: -56.5,-11.5
parent: 2
- - uid: 7000
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14189
components:
- type: Transform
- pos: 29.5,10.5
+ pos: -53.5,6.5
parent: 2
- - uid: 7001
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14190
components:
- type: Transform
- pos: 29.5,11.5
+ pos: 23.5,10.5
parent: 2
- - uid: 7002
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14191
components:
- type: Transform
- pos: 28.5,11.5
+ pos: -22.5,-47.5
parent: 2
- - uid: 7003
+ - uid: 14192
components:
- type: Transform
- pos: 27.5,11.5
- parent: 2
- - uid: 7004
- components:
- - type: Transform
- pos: 26.5,11.5
- parent: 2
- - uid: 7005
- components:
- - type: Transform
- pos: 26.5,12.5
- parent: 2
- - uid: 7006
- components:
- - type: Transform
- pos: 25.5,12.5
- parent: 2
- - uid: 7007
- components:
- - type: Transform
- pos: 24.5,12.5
- parent: 2
- - uid: 7008
- components:
- - type: Transform
- pos: 23.5,12.5
- parent: 2
- - uid: 7009
- components:
- - type: Transform
- pos: 22.5,12.5
- parent: 2
- - uid: 7010
- components:
- - type: Transform
- pos: 22.5,11.5
- parent: 2
- - uid: 7011
- components:
- - type: Transform
- pos: 22.5,10.5
- parent: 2
- - uid: 7012
- components:
- - type: Transform
- pos: 22.5,9.5
- parent: 2
- - uid: 7013
- components:
- - type: Transform
- pos: 22.5,8.5
- parent: 2
- - uid: 7014
- components:
- - type: Transform
- pos: 30.5,11.5
- parent: 2
- - uid: 7015
- components:
- - type: Transform
- pos: 31.5,11.5
- parent: 2
- - uid: 7016
- components:
- - type: Transform
- pos: 32.5,11.5
- parent: 2
- - uid: 7017
- components:
- - type: Transform
- pos: 33.5,11.5
- parent: 2
- - uid: 7018
- components:
- - type: Transform
- pos: -51.5,-25.5
- parent: 2
- - uid: 7019
- components:
- - type: Transform
- pos: -15.5,-63.5
- parent: 2
- - uid: 7020
- components:
- - type: Transform
- pos: -43.5,-74.5
- parent: 2
- - uid: 7021
- components:
- - type: Transform
- pos: -44.5,-74.5
- parent: 2
- - uid: 7022
- components:
- - type: Transform
- pos: -45.5,-74.5
- parent: 2
- - uid: 7023
- components:
- - type: Transform
- pos: 4.5,-44.5
- parent: 2
- - uid: 7024
- components:
- - type: Transform
- pos: 4.5,-43.5
- parent: 2
- - uid: 7025
- components:
- - type: Transform
- pos: 4.5,-42.5
- parent: 2
- - uid: 7026
- components:
- - type: Transform
- pos: 2.5,-43.5
- parent: 2
- - uid: 7027
- components:
- - type: Transform
- pos: 3.5,-43.5
- parent: 2
- - uid: 7028
- components:
- - type: Transform
- pos: 8.5,-45.5
- parent: 2
- - uid: 7029
- components:
- - type: Transform
- pos: 9.5,-45.5
- parent: 2
- - uid: 7030
- components:
- - type: Transform
- pos: 9.5,-44.5
- parent: 2
- - uid: 7031
- components:
- - type: Transform
- pos: 9.5,-43.5
- parent: 2
- - uid: 7032
- components:
- - type: Transform
- pos: 9.5,-42.5
- parent: 2
- - uid: 7033
- components:
- - type: Transform
- pos: -21.5,-9.5
- parent: 2
- - uid: 7034
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 2
- - uid: 7035
- components:
- - type: Transform
- pos: -21.5,-11.5
- parent: 2
- - uid: 7036
- components:
- - type: Transform
- pos: -22.5,-11.5
- parent: 2
- - uid: 7037
- components:
- - type: Transform
- pos: -23.5,-11.5
- parent: 2
- - uid: 7038
- components:
- - type: Transform
- pos: -23.5,-10.5
- parent: 2
- - uid: 7039
- components:
- - type: Transform
- pos: -23.5,-9.5
- parent: 2
- - uid: 7040
- components:
- - type: Transform
- pos: -23.5,-8.5
- parent: 2
- - uid: 7041
- components:
- - type: Transform
- pos: -23.5,-7.5
- parent: 2
- - uid: 7042
- components:
- - type: Transform
- pos: -23.5,-6.5
- parent: 2
- - uid: 7043
- components:
- - type: Transform
- pos: -23.5,-5.5
- parent: 2
- - uid: 7044
- components:
- - type: Transform
- pos: -24.5,-5.5
- parent: 2
- - uid: 7045
- components:
- - type: Transform
- pos: -25.5,-5.5
- parent: 2
- - uid: 7046
- components:
- - type: Transform
- pos: -22.5,-5.5
- parent: 2
- - uid: 7047
- components:
- - type: Transform
- pos: -21.5,-5.5
- parent: 2
- - uid: 7048
- components:
- - type: Transform
- pos: 42.5,-4.5
- parent: 2
- - uid: 7049
- components:
- - type: Transform
- pos: 43.5,-4.5
- parent: 2
- - uid: 7050
- components:
- - type: Transform
- pos: -51.5,-28.5
- parent: 2
- - uid: 7051
- components:
- - type: Transform
- pos: -51.5,-29.5
- parent: 2
- - uid: 7052
- components:
- - type: Transform
- pos: -32.5,-47.5
- parent: 2
- - uid: 7053
- components:
- - type: Transform
- pos: -32.5,-46.5
- parent: 2
- - uid: 7054
- components:
- - type: Transform
- pos: -32.5,-45.5
- parent: 2
- - uid: 7055
- components:
- - type: Transform
- pos: -32.5,-44.5
- parent: 2
- - uid: 7056
- components:
- - type: Transform
- pos: -32.5,-43.5
- parent: 2
- - uid: 7057
- components:
- - type: Transform
- pos: -32.5,-42.5
- parent: 2
- - uid: 7058
- components:
- - type: Transform
- pos: -32.5,-41.5
- parent: 2
- - uid: 7059
- components:
- - type: Transform
- pos: -32.5,-40.5
- parent: 2
- - uid: 7060
- components:
- - type: Transform
- pos: -32.5,-39.5
- parent: 2
- - uid: 7061
- components:
- - type: Transform
- pos: -32.5,-38.5
- parent: 2
- - uid: 7062
- components:
- - type: Transform
- pos: -32.5,-37.5
- parent: 2
- - uid: 7063
- components:
- - type: Transform
- pos: -32.5,-36.5
- parent: 2
- - uid: 7064
- components:
- - type: Transform
- pos: -33.5,-36.5
- parent: 2
- - uid: 7065
- components:
- - type: Transform
- pos: -34.5,-36.5
- parent: 2
- - uid: 7066
- components:
- - type: Transform
- pos: -35.5,-36.5
- parent: 2
- - uid: 7067
- components:
- - type: Transform
- pos: -36.5,-36.5
- parent: 2
- - uid: 7068
- components:
- - type: Transform
- pos: -37.5,-36.5
- parent: 2
- - uid: 7069
- components:
- - type: Transform
- pos: -38.5,-36.5
- parent: 2
- - uid: 7070
- components:
- - type: Transform
- pos: -38.5,-36.5
- parent: 2
- - uid: 7071
- components:
- - type: Transform
- pos: -39.5,-36.5
- parent: 2
- - uid: 7072
- components:
- - type: Transform
- pos: -40.5,-36.5
- parent: 2
- - uid: 7073
- components:
- - type: Transform
- pos: -41.5,-36.5
- parent: 2
- - uid: 7074
- components:
- - type: Transform
- pos: -42.5,-36.5
- parent: 2
- - uid: 7075
- components:
- - type: Transform
- pos: -43.5,-36.5
- parent: 2
- - uid: 7076
- components:
- - type: Transform
- pos: -43.5,-37.5
- parent: 2
- - uid: 7077
- components:
- - type: Transform
- pos: -34.5,-44.5
- parent: 2
- - uid: 7078
- components:
- - type: Transform
- pos: -33.5,-44.5
- parent: 2
- - uid: 7079
- components:
- - type: Transform
- pos: -34.5,-39.5
- parent: 2
- - uid: 7080
- components:
- - type: Transform
- pos: -33.5,-39.5
- parent: 2
- - uid: 7081
- components:
- - type: Transform
- pos: -31.5,-38.5
- parent: 2
- - uid: 7082
- components:
- - type: Transform
- pos: -31.5,-45.5
- parent: 2
- - uid: 7083
- components:
- - type: Transform
- pos: 81.5,-1.5
- parent: 2
- - uid: 7084
- components:
- - type: Transform
- pos: 84.5,-4.5
- parent: 2
- - uid: 7085
- components:
- - type: Transform
- pos: 80.5,-1.5
- parent: 2
- - uid: 7086
- components:
- - type: Transform
- pos: 79.5,6.5
- parent: 2
- - uid: 7087
- components:
- - type: Transform
- pos: 84.5,-1.5
- parent: 2
- - uid: 7088
- components:
- - type: Transform
- pos: 82.5,-1.5
- parent: 2
- - uid: 7089
- components:
- - type: Transform
- pos: 80.5,-3.5
- parent: 2
- - uid: 7090
- components:
- - type: Transform
- pos: 84.5,-2.5
- parent: 2
- - uid: 7091
- components:
- - type: Transform
- pos: 84.5,-3.5
- parent: 2
- - uid: 7092
- components:
- - type: Transform
- pos: -31.5,1.5
- parent: 2
- - uid: 7093
- components:
- - type: Transform
- pos: -30.5,1.5
- parent: 2
- - uid: 7094
- components:
- - type: Transform
- pos: -29.5,1.5
- parent: 2
- - uid: 7095
- components:
- - type: Transform
- pos: -28.5,1.5
- parent: 2
- - uid: 7096
- components:
- - type: Transform
- pos: -27.5,1.5
- parent: 2
- - uid: 7097
- components:
- - type: Transform
- pos: -26.5,1.5
- parent: 2
- - uid: 7098
- components:
- - type: Transform
- pos: -25.5,1.5
- parent: 2
- - uid: 7099
- components:
- - type: Transform
- pos: -25.5,0.5
- parent: 2
- - uid: 7100
- components:
- - type: Transform
- pos: -45.5,55.5
- parent: 2
- - uid: 7101
- components:
- - type: Transform
- pos: -45.5,56.5
- parent: 2
- - uid: 7102
- components:
- - type: Transform
- pos: -45.5,57.5
- parent: 2
- - uid: 7103
- components:
- - type: Transform
- pos: 80.5,-4.5
- parent: 2
- - uid: 7104
- components:
- - type: Transform
- pos: 80.5,3.5
- parent: 2
- - uid: 7105
- components:
- - type: Transform
- pos: 80.5,2.5
- parent: 2
- - uid: 7106
- components:
- - type: Transform
- pos: 80.5,1.5
- parent: 2
- - uid: 7107
- components:
- - type: Transform
- pos: 80.5,1.5
- parent: 2
- - uid: 7108
- components:
- - type: Transform
- pos: 79.5,1.5
- parent: 2
- - uid: 7109
- components:
- - type: Transform
- pos: 78.5,1.5
- parent: 2
- - uid: 7110
- components:
- - type: Transform
- pos: 77.5,1.5
- parent: 2
- - uid: 7111
- components:
- - type: Transform
- pos: 76.5,1.5
- parent: 2
- - uid: 7112
- components:
- - type: Transform
- pos: 81.5,1.5
- parent: 2
- - uid: 7113
- components:
- - type: Transform
- pos: 82.5,1.5
- parent: 2
- - uid: 7114
- components:
- - type: Transform
- pos: 83.5,1.5
- parent: 2
- - uid: 7115
- components:
- - type: Transform
- pos: 84.5,1.5
- parent: 2
- - uid: 7116
- components:
- - type: Transform
- pos: 85.5,1.5
- parent: 2
- - uid: 7117
- components:
- - type: Transform
- pos: 86.5,1.5
- parent: 2
- - uid: 7118
- components:
- - type: Transform
- pos: 87.5,1.5
- parent: 2
- - uid: 7119
- components:
- - type: Transform
- pos: 88.5,1.5
- parent: 2
- - uid: 7120
- components:
- - type: Transform
- pos: 89.5,1.5
- parent: 2
- - uid: 7121
- components:
- - type: Transform
- pos: 85.5,8.5
- parent: 2
- - uid: 7122
- components:
- - type: Transform
- pos: 85.5,7.5
- parent: 2
- - uid: 7123
- components:
- - type: Transform
- pos: 85.5,6.5
- parent: 2
- - uid: 7124
- components:
- - type: Transform
- pos: 85.5,5.5
- parent: 2
- - uid: 7125
- components:
- - type: Transform
- pos: 85.5,4.5
- parent: 2
- - uid: 7126
- components:
- - type: Transform
- pos: 85.5,4.5
- parent: 2
- - uid: 7127
- components:
- - type: Transform
- pos: 86.5,4.5
- parent: 2
- - uid: 7128
- components:
- - type: Transform
- pos: 87.5,4.5
- parent: 2
- - uid: 7129
- components:
- - type: Transform
- pos: 88.5,4.5
- parent: 2
- - uid: 7130
- components:
- - type: Transform
- pos: 89.5,4.5
- parent: 2
- - uid: 7131
- components:
- - type: Transform
- pos: 84.5,4.5
- parent: 2
- - uid: 7132
- components:
- - type: Transform
- pos: 83.5,4.5
- parent: 2
- - uid: 7133
- components:
- - type: Transform
- pos: 82.5,4.5
- parent: 2
- - uid: 7134
- components:
- - type: Transform
- pos: 81.5,4.5
- parent: 2
- - uid: 7135
- components:
- - type: Transform
- pos: 84.5,7.5
- parent: 2
- - uid: 7136
- components:
- - type: Transform
- pos: 83.5,7.5
- parent: 2
- - uid: 7137
- components:
- - type: Transform
- pos: 82.5,7.5
- parent: 2
- - uid: 7138
- components:
- - type: Transform
- pos: 81.5,7.5
- parent: 2
- - uid: 7139
- components:
- - type: Transform
- pos: 86.5,7.5
- parent: 2
- - uid: 7140
- components:
- - type: Transform
- pos: 87.5,7.5
- parent: 2
- - uid: 7141
- components:
- - type: Transform
- pos: 88.5,7.5
- parent: 2
- - uid: 7142
- components:
- - type: Transform
- pos: 89.5,7.5
- parent: 2
- - uid: 7143
- components:
- - type: Transform
- pos: 79.5,4.5
- parent: 2
- - uid: 7144
- components:
- - type: Transform
- pos: 97.5,15.5
- parent: 2
- - uid: 7145
- components:
- - type: Transform
- pos: 97.5,14.5
- parent: 2
- - uid: 7146
- components:
- - type: Transform
- pos: 97.5,13.5
- parent: 2
- - uid: 7147
- components:
- - type: Transform
- pos: 97.5,12.5
- parent: 2
- - uid: 7148
- components:
- - type: Transform
- pos: 96.5,13.5
- parent: 2
- - uid: 7149
- components:
- - type: Transform
- pos: 95.5,13.5
- parent: 2
- - uid: 7150
- components:
- - type: Transform
- pos: 93.5,13.5
- parent: 2
- - uid: 7151
- components:
- - type: Transform
- pos: -69.5,-33.5
- parent: 2
- - uid: 7152
- components:
- - type: Transform
- pos: -69.5,-34.5
- parent: 2
- - uid: 7153
- components:
- - type: Transform
- pos: -69.5,-35.5
- parent: 2
- - uid: 7154
- components:
- - type: Transform
- pos: -70.5,-35.5
- parent: 2
- - uid: 7155
- components:
- - type: Transform
- pos: -65.5,-35.5
- parent: 2
- - uid: 7156
- components:
- - type: Transform
- pos: -66.5,-36.5
- parent: 2
- - uid: 7157
- components:
- - type: Transform
- pos: -65.5,-36.5
- parent: 2
- - uid: 7158
- components:
- - type: Transform
- pos: -62.5,-35.5
- parent: 2
- - uid: 7159
- components:
- - type: Transform
- pos: -62.5,-34.5
- parent: 2
- - uid: 7160
- components:
- - type: Transform
- pos: 5.5,77.5
- parent: 2
- - uid: 7161
- components:
- - type: Transform
- pos: 5.5,84.5
- parent: 2
- - uid: 7162
- components:
- - type: Transform
- pos: 4.5,84.5
- parent: 2
- - uid: 7163
- components:
- - type: Transform
- pos: 3.5,84.5
- parent: 2
- - uid: 7164
- components:
- - type: Transform
- pos: 4.5,77.5
- parent: 2
- - uid: 7165
- components:
- - type: Transform
- pos: 3.5,77.5
- parent: 2
- - uid: 7166
- components:
- - type: Transform
- pos: -8.5,-8.5
- parent: 2
- - uid: 7167
- components:
- - type: Transform
- pos: 10.5,-8.5
- parent: 2
- - uid: 7168
- components:
- - type: Transform
- pos: 3.5,-8.5
- parent: 2
- - uid: 7169
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 2
- - uid: 7170
- components:
- - type: Transform
- pos: 13.5,-12.5
- parent: 2
- - uid: 7171
- components:
- - type: Transform
- pos: 6.5,-8.5
- parent: 2
- - uid: 7172
- components:
- - type: Transform
- pos: -0.5,-8.5
- parent: 2
- - uid: 7173
- components:
- - type: Transform
- pos: 2.5,-8.5
- parent: 2
- - uid: 7174
- components:
- - type: Transform
- pos: 1.5,-8.5
- parent: 2
- - uid: 7175
- components:
- - type: Transform
- pos: -2.5,-8.5
- parent: 2
- - uid: 7176
- components:
- - type: Transform
- pos: 5.5,-8.5
- parent: 2
- - uid: 7177
- components:
- - type: Transform
- pos: 0.5,-8.5
- parent: 2
- - uid: 7178
- components:
- - type: Transform
- pos: -1.5,-8.5
- parent: 2
- - uid: 7179
- components:
- - type: Transform
- pos: 8.5,-7.5
- parent: 2
- - uid: 7180
- components:
- - type: Transform
- pos: -7.5,-8.5
- parent: 2
- - uid: 7181
- components:
- - type: Transform
- pos: 11.5,-8.5
- parent: 2
- - uid: 7182
- components:
- - type: Transform
- pos: -5.5,-8.5
- parent: 2
- - uid: 7183
- components:
- - type: Transform
- pos: 9.5,-8.5
- parent: 2
- - uid: 7184
- components:
- - type: Transform
- pos: 4.5,-8.5
- parent: 2
- - uid: 7185
- components:
- - type: Transform
- pos: -3.5,-8.5
- parent: 2
- - uid: 7186
- components:
- - type: Transform
- pos: -6.5,-8.5
- parent: 2
- - uid: 7187
- components:
- - type: Transform
- pos: -11.5,-8.5
- parent: 2
- - uid: 7188
- components:
- - type: Transform
- pos: 12.5,-8.5
- parent: 2
- - uid: 7189
- components:
- - type: Transform
- pos: -13.5,-8.5
- parent: 2
- - uid: 7190
- components:
- - type: Transform
- pos: -10.5,-8.5
- parent: 2
- - uid: 7191
- components:
- - type: Transform
- pos: -14.5,-8.5
- parent: 2
- - uid: 7192
- components:
- - type: Transform
- pos: 8.5,-8.5
- parent: 2
- - uid: 7193
- components:
- - type: Transform
- pos: -9.5,-8.5
- parent: 2
- - uid: 7194
- components:
- - type: Transform
- pos: -12.5,-8.5
- parent: 2
- - uid: 7195
- components:
- - type: Transform
- pos: 14.5,-8.5
- parent: 2
- - uid: 7196
- components:
- - type: Transform
- pos: -85.5,14.5
- parent: 2
- - uid: 7197
- components:
- - type: Transform
- pos: -110.5,23.5
- parent: 2
- - uid: 7198
- components:
- - type: Transform
- pos: -109.5,23.5
- parent: 2
- - uid: 7199
- components:
- - type: Transform
- pos: -108.5,23.5
- parent: 2
- - uid: 7200
- components:
- - type: Transform
- pos: -107.5,23.5
- parent: 2
- - uid: 7201
- components:
- - type: Transform
- pos: -106.5,23.5
- parent: 2
- - uid: 7202
- components:
- - type: Transform
- pos: -84.5,14.5
- parent: 2
- - uid: 7203
- components:
- - type: Transform
- pos: -83.5,14.5
- parent: 2
- - uid: 7204
- components:
- - type: Transform
- pos: -82.5,14.5
- parent: 2
- - uid: 7205
- components:
- - type: Transform
- pos: 54.5,32.5
- parent: 2
- - uid: 7206
- components:
- - type: Transform
- pos: 54.5,31.5
- parent: 2
- - uid: 7207
- components:
- - type: Transform
- pos: 54.5,33.5
- parent: 2
- - uid: 7208
- components:
- - type: Transform
- pos: 65.5,29.5
- parent: 2
- - uid: 7209
- components:
- - type: Transform
- pos: 66.5,30.5
- parent: 2
- - uid: 7210
- components:
- - type: Transform
- pos: 65.5,30.5
- parent: 2
- - uid: 7211
- components:
- - type: Transform
- pos: 66.5,31.5
- parent: 2
- - uid: 7212
- components:
- - type: Transform
- pos: -21.5,-30.5
- parent: 2
- - uid: 7213
- components:
- - type: Transform
- pos: -66.5,46.5
- parent: 2
- - uid: 7214
- components:
- - type: Transform
- pos: -20.5,-36.5
- parent: 2
- - uid: 7215
- components:
- - type: Transform
- pos: -20.5,-37.5
- parent: 2
- - uid: 7216
- components:
- - type: Transform
- pos: -20.5,-38.5
- parent: 2
- - uid: 7217
- components:
- - type: Transform
- pos: -20.5,-38.5
- parent: 2
- - uid: 7218
- components:
- - type: Transform
- pos: -19.5,-38.5
- parent: 2
- - uid: 7219
- components:
- - type: Transform
- pos: -18.5,-38.5
- parent: 2
- - uid: 7220
- components:
- - type: Transform
- pos: -18.5,-39.5
- parent: 2
- - uid: 7221
- components:
- - type: Transform
- pos: -18.5,-40.5
- parent: 2
- - uid: 7222
- components:
- - type: Transform
- pos: -18.5,-41.5
- parent: 2
- - uid: 7223
- components:
- - type: Transform
- pos: -18.5,-42.5
- parent: 2
- - uid: 7224
- components:
- - type: Transform
- pos: -18.5,-43.5
- parent: 2
- - uid: 7225
- components:
- - type: Transform
- pos: -18.5,-44.5
- parent: 2
- - uid: 7226
- components:
- - type: Transform
- pos: -18.5,-45.5
- parent: 2
- - uid: 7227
- components:
- - type: Transform
- pos: -18.5,-46.5
- parent: 2
- - uid: 7228
- components:
- - type: Transform
- pos: -18.5,-47.5
- parent: 2
- - uid: 7229
- components:
- - type: Transform
- pos: -17.5,-46.5
- parent: 2
- - uid: 7230
- components:
- - type: Transform
- pos: -20.5,-46.5
- parent: 2
- - uid: 7231
- components:
- - type: Transform
- pos: -16.5,-46.5
- parent: 2
- - uid: 7232
- components:
- - type: Transform
- pos: -19.5,-46.5
- parent: 2
- - uid: 7233
- components:
- - type: Transform
- pos: -20.5,-48.5
- parent: 2
- - uid: 7234
- components:
- - type: Transform
- pos: -20.5,-49.5
- parent: 2
- - uid: 7235
- components:
- - type: Transform
- pos: -20.5,-50.5
- parent: 2
- - uid: 7236
- components:
- - type: Transform
- pos: -19.5,-50.5
- parent: 2
- - uid: 7237
- components:
- - type: Transform
- pos: -19.5,-50.5
- parent: 2
- - uid: 7238
- components:
- - type: Transform
- pos: -19.5,-51.5
- parent: 2
- - uid: 7239
- components:
- - type: Transform
- pos: -19.5,-52.5
- parent: 2
- - uid: 7240
- components:
- - type: Transform
- pos: -19.5,-53.5
- parent: 2
- - uid: 7241
- components:
- - type: Transform
- pos: -17.5,-39.5
- parent: 2
- - uid: 7242
- components:
- - type: Transform
- pos: -16.5,-39.5
- parent: 2
- - uid: 7243
- components:
- - type: Transform
- pos: -18.5,-37.5
- parent: 2
- - uid: 7244
- components:
- - type: Transform
- pos: -20.5,-30.5
- parent: 2
- - uid: 7245
- components:
- - type: Transform
- pos: -19.5,-30.5
- parent: 2
- - uid: 7246
- components:
- - type: Transform
- pos: -18.5,-30.5
- parent: 2
- - uid: 7247
- components:
- - type: Transform
- pos: -18.5,-29.5
- parent: 2
- - uid: 7248
- components:
- - type: Transform
- pos: -66.5,45.5
- parent: 2
- - uid: 7249
- components:
- - type: Transform
- pos: -66.5,44.5
- parent: 2
- - uid: 7250
- components:
- - type: Transform
- pos: -66.5,48.5
- parent: 2
- - uid: 7251
- components:
- - type: Transform
- pos: -66.5,49.5
- parent: 2
- - uid: 7252
- components:
- - type: Transform
- pos: -66.5,50.5
- parent: 2
- - uid: 7253
- components:
- - type: Transform
- pos: -66.5,42.5
- parent: 2
- - uid: 7254
- components:
- - type: Transform
- pos: -66.5,41.5
- parent: 2
- - uid: 7255
- components:
- - type: Transform
- pos: -66.5,40.5
- parent: 2
- - uid: 7256
- components:
- - type: Transform
- pos: -67.5,41.5
- parent: 2
- - uid: 7257
- components:
- - type: Transform
- pos: -68.5,41.5
- parent: 2
- - uid: 7258
- components:
- - type: Transform
- pos: -69.5,41.5
- parent: 2
- - uid: 7259
- components:
- - type: Transform
- pos: -70.5,41.5
- parent: 2
- - uid: 7260
- components:
- - type: Transform
- pos: -71.5,41.5
- parent: 2
- - uid: 7261
- components:
- - type: Transform
- pos: -72.5,41.5
- parent: 2
- - uid: 7262
- components:
- - type: Transform
- pos: -67.5,45.5
- parent: 2
- - uid: 7263
- components:
- - type: Transform
- pos: -68.5,45.5
- parent: 2
- - uid: 7264
- components:
- - type: Transform
- pos: -69.5,45.5
- parent: 2
- - uid: 7265
- components:
- - type: Transform
- pos: -70.5,45.5
- parent: 2
- - uid: 7266
- components:
- - type: Transform
- pos: -71.5,45.5
- parent: 2
- - uid: 7267
- components:
- - type: Transform
- pos: -72.5,45.5
- parent: 2
- - uid: 7268
- components:
- - type: Transform
- pos: -67.5,49.5
- parent: 2
- - uid: 7269
- components:
- - type: Transform
- pos: -68.5,49.5
- parent: 2
- - uid: 7270
- components:
- - type: Transform
- pos: -69.5,49.5
- parent: 2
- - uid: 7271
- components:
- - type: Transform
- pos: -70.5,49.5
- parent: 2
- - uid: 7272
- components:
- - type: Transform
- pos: -71.5,49.5
- parent: 2
- - uid: 7273
- components:
- - type: Transform
- pos: -72.5,49.5
- parent: 2
- - uid: 7274
- components:
- - type: Transform
- pos: -62.5,38.5
- parent: 2
- - uid: 7275
- components:
- - type: Transform
- pos: -63.5,38.5
- parent: 2
- - uid: 7276
- components:
- - type: Transform
- pos: -64.5,38.5
- parent: 2
- - uid: 7277
- components:
- - type: Transform
- pos: -65.5,38.5
- parent: 2
- - uid: 7278
- components:
- - type: Transform
- pos: -66.5,38.5
- parent: 2
- - uid: 7279
- components:
- - type: Transform
- pos: -66.5,37.5
- parent: 2
- - uid: 7280
- components:
- - type: Transform
- pos: -66.5,36.5
- parent: 2
- - uid: 7281
- components:
- - type: Transform
- pos: -66.5,35.5
- parent: 2
- - uid: 7282
- components:
- - type: Transform
- pos: -66.5,34.5
- parent: 2
- - uid: 7283
- components:
- - type: Transform
- pos: -66.5,33.5
- parent: 2
- - uid: 7284
- components:
- - type: Transform
- pos: -66.5,32.5
- parent: 2
- - uid: 7285
- components:
- - type: Transform
- pos: -66.5,31.5
- parent: 2
- - uid: 7286
- components:
- - type: Transform
- pos: -66.5,30.5
- parent: 2
- - uid: 7287
- components:
- - type: Transform
- pos: -66.5,29.5
- parent: 2
- - uid: 7288
- components:
- - type: Transform
- pos: -66.5,28.5
- parent: 2
- - uid: 7289
- components:
- - type: Transform
- pos: -66.5,27.5
- parent: 2
- - uid: 7290
- components:
- - type: Transform
- pos: -66.5,26.5
- parent: 2
- - uid: 7291
- components:
- - type: Transform
- pos: -66.5,25.5
- parent: 2
- - uid: 7292
- components:
- - type: Transform
- pos: -67.5,29.5
- parent: 2
- - uid: 7293
- components:
- - type: Transform
- pos: -68.5,29.5
- parent: 2
- - uid: 7294
- components:
- - type: Transform
- pos: -69.5,29.5
- parent: 2
- - uid: 7295
- components:
- - type: Transform
- pos: -70.5,29.5
- parent: 2
- - uid: 7296
- components:
- - type: Transform
- pos: -71.5,29.5
- parent: 2
- - uid: 7297
- components:
- - type: Transform
- pos: -72.5,29.5
- parent: 2
- - uid: 7298
- components:
- - type: Transform
- pos: -67.5,33.5
- parent: 2
- - uid: 7299
- components:
- - type: Transform
- pos: -68.5,33.5
- parent: 2
- - uid: 7300
- components:
- - type: Transform
- pos: -69.5,33.5
- parent: 2
- - uid: 7301
- components:
- - type: Transform
- pos: -70.5,33.5
- parent: 2
- - uid: 7302
- components:
- - type: Transform
- pos: -71.5,33.5
- parent: 2
- - uid: 7303
- components:
- - type: Transform
- pos: -72.5,33.5
- parent: 2
- - uid: 7304
- components:
- - type: Transform
- pos: -67.5,37.5
- parent: 2
- - uid: 7305
- components:
- - type: Transform
- pos: -68.5,37.5
- parent: 2
- - uid: 7306
- components:
- - type: Transform
- pos: -69.5,37.5
- parent: 2
- - uid: 7307
- components:
- - type: Transform
- pos: -70.5,37.5
- parent: 2
- - uid: 7308
- components:
- - type: Transform
- pos: -71.5,37.5
- parent: 2
- - uid: 7309
- components:
- - type: Transform
- pos: -72.5,37.5
- parent: 2
- - uid: 7310
- components:
- - type: Transform
- pos: -25.5,-42.5
- parent: 2
- - uid: 7311
- components:
- - type: Transform
- pos: -25.5,-43.5
- parent: 2
- - uid: 7312
- components:
- - type: Transform
- pos: -25.5,-44.5
- parent: 2
- - uid: 7313
- components:
- - type: Transform
- pos: -25.5,-45.5
- parent: 2
- - uid: 7314
- components:
- - type: Transform
- pos: -26.5,-45.5
- parent: 2
- - uid: 7315
- components:
- - type: Transform
- pos: -27.5,-45.5
- parent: 2
- - uid: 7316
- components:
- - type: Transform
- pos: -28.5,-45.5
- parent: 2
- - uid: 7317
- components:
- - type: Transform
- pos: -23.5,-46.5
- parent: 2
- - uid: 7318
- components:
- - type: Transform
- pos: -23.5,-47.5
- parent: 2
- - uid: 7319
- components:
- - type: Transform
- pos: -25.5,-45.5
- parent: 2
- - uid: 7320
- components:
- - type: Transform
- pos: -24.5,-45.5
- parent: 2
- - uid: 7321
- components:
- - type: Transform
- pos: -23.5,-45.5
- parent: 2
- - uid: 7322
- components:
- - type: Transform
- pos: -23.5,-44.5
- parent: 2
- - uid: 7323
- components:
- - type: Transform
- pos: -23.5,-43.5
- parent: 2
- - uid: 7324
- components:
- - type: Transform
- pos: -23.5,-42.5
- parent: 2
- - uid: 7325
- components:
- - type: Transform
- pos: -23.5,-41.5
- parent: 2
- - uid: 7326
- components:
- - type: Transform
- pos: -23.5,-40.5
- parent: 2
- - uid: 7327
- components:
- - type: Transform
- pos: -23.5,-39.5
- parent: 2
- - uid: 7328
- components:
- - type: Transform
- pos: -23.5,-38.5
- parent: 2
- - uid: 7329
- components:
- - type: Transform
- pos: -23.5,-37.5
- parent: 2
- - uid: 7330
- components:
- - type: Transform
- pos: -25.5,-39.5
- parent: 2
- - uid: 7331
- components:
- - type: Transform
- pos: -24.5,-39.5
- parent: 2
- - uid: 7332
- components:
- - type: Transform
- pos: -22.5,-39.5
- parent: 2
- - uid: 7333
- components:
- - type: Transform
- pos: -28.5,-37.5
- parent: 2
- - uid: 7334
- components:
- - type: Transform
- pos: -28.5,-38.5
- parent: 2
- - uid: 7335
- components:
- - type: Transform
- pos: -28.5,-39.5
- parent: 2
- - uid: 7336
- components:
- - type: Transform
- pos: -28.5,-40.5
- parent: 2
- - uid: 7337
- components:
- - type: Transform
- pos: -28.5,-41.5
- parent: 2
- - uid: 7338
- components:
- - type: Transform
- pos: -28.5,-42.5
- parent: 2
- - uid: 7339
- components:
- - type: Transform
- pos: -28.5,-43.5
- parent: 2
- - uid: 7340
- components:
- - type: Transform
- pos: -28.5,-44.5
- parent: 2
- - uid: 7341
- components:
- - type: Transform
- pos: -28.5,-45.5
- parent: 2
- - uid: 7342
- components:
- - type: Transform
- pos: -29.5,-45.5
- parent: 2
- - uid: 7343
- components:
- - type: Transform
- pos: -29.5,-38.5
- parent: 2
- - uid: 7344
- components:
- - type: Transform
- pos: 3.5,-57.5
- parent: 2
- - uid: 7345
- components:
- - type: Transform
- pos: 3.5,-56.5
- parent: 2
- - uid: 7346
- components:
- - type: Transform
- pos: 6.5,-36.5
- parent: 2
- - uid: 7347
- components:
- - type: Transform
- pos: 6.5,-37.5
- parent: 2
- - uid: 7348
- components:
- - type: Transform
- pos: 5.5,-37.5
- parent: 2
- - uid: 7349
- components:
- - type: Transform
- pos: 4.5,-37.5
- parent: 2
- - uid: 7350
- components:
- - type: Transform
- pos: 4.5,-38.5
- parent: 2
- - uid: 7351
- components:
- - type: Transform
- pos: 4.5,-39.5
- parent: 2
- - uid: 7352
- components:
- - type: Transform
- pos: 4.5,-40.5
- parent: 2
- - uid: 7353
- components:
- - type: Transform
- pos: 3.5,-37.5
- parent: 2
- - uid: 7354
- components:
- - type: Transform
- pos: 3.5,-38.5
- parent: 2
- - uid: 7355
- components:
- - type: Transform
- pos: 2.5,-38.5
- parent: 2
- - uid: 7356
- components:
- - type: Transform
- pos: 23.5,33.5
- parent: 2
- - uid: 7357
- components:
- - type: Transform
- pos: 23.5,32.5
- parent: 2
- - uid: 7358
- components:
- - type: Transform
- pos: 23.5,31.5
- parent: 2
- - uid: 7359
- components:
- - type: Transform
- pos: 23.5,30.5
- parent: 2
- - uid: 7360
- components:
- - type: Transform
- pos: 23.5,29.5
- parent: 2
- - uid: 7361
- components:
- - type: Transform
- pos: 22.5,29.5
- parent: 2
- - uid: 7362
- components:
- - type: Transform
- pos: 21.5,29.5
- parent: 2
- - uid: 7363
- components:
- - type: Transform
- pos: 21.5,28.5
- parent: 2
- - uid: 7364
- components:
- - type: Transform
- pos: 21.5,27.5
- parent: 2
- - uid: 7365
- components:
- - type: Transform
- pos: 21.5,26.5
- parent: 2
- - uid: 7366
- components:
- - type: Transform
- pos: 24.5,31.5
- parent: 2
- - uid: 7367
- components:
- - type: Transform
- pos: 25.5,31.5
- parent: 2
- - uid: 7368
- components:
- - type: Transform
- pos: 26.5,31.5
- parent: 2
- - uid: 7369
- components:
- - type: Transform
- pos: 27.5,31.5
- parent: 2
- - uid: 7370
- components:
- - type: Transform
- pos: 21.5,32.5
- parent: 2
- - uid: 7371
- components:
- - type: Transform
- pos: 21.5,31.5
- parent: 2
- - uid: 7372
- components:
- - type: Transform
- pos: 21.5,30.5
- parent: 2
- - uid: 7373
- components:
- - type: Transform
- pos: 20.5,32.5
- parent: 2
- - uid: 7374
- components:
- - type: Transform
- pos: 19.5,32.5
- parent: 2
- - uid: 7375
- components:
- - type: Transform
- pos: 24.5,29.5
- parent: 2
- - uid: 7376
- components:
- - type: Transform
- pos: 24.5,28.5
- parent: 2
- - uid: 7377
- components:
- - type: Transform
- pos: 24.5,27.5
- parent: 2
- - uid: 7378
- components:
- - type: Transform
- pos: 24.5,26.5
- parent: 2
- - uid: 7379
- components:
- - type: Transform
- pos: 25.5,29.5
- parent: 2
- - uid: 7380
- components:
- - type: Transform
- pos: 26.5,29.5
- parent: 2
- - uid: 7381
- components:
- - type: Transform
- pos: 27.5,29.5
- parent: 2
- - uid: 7382
- components:
- - type: Transform
- pos: 7.5,57.5
- parent: 2
- - uid: 7383
- components:
- - type: Transform
- pos: 8.5,57.5
- parent: 2
- - uid: 7384
- components:
- - type: Transform
- pos: 9.5,57.5
- parent: 2
- - uid: 7385
- components:
- - type: Transform
- pos: 10.5,57.5
- parent: 2
- - uid: 7386
- components:
- - type: Transform
- pos: 10.5,56.5
- parent: 2
- - uid: 7387
- components:
- - type: Transform
- pos: 11.5,56.5
- parent: 2
- - uid: 7388
- components:
- - type: Transform
- pos: 12.5,56.5
- parent: 2
- - uid: 7389
- components:
- - type: Transform
- pos: 13.5,56.5
- parent: 2
- - uid: 7390
- components:
- - type: Transform
- pos: 14.5,56.5
- parent: 2
- - uid: 7391
- components:
- - type: Transform
- pos: 15.5,56.5
- parent: 2
- - uid: 7392
- components:
- - type: Transform
- pos: 16.5,56.5
- parent: 2
- - uid: 7393
- components:
- - type: Transform
- pos: 17.5,56.5
- parent: 2
- - uid: 7394
- components:
- - type: Transform
- pos: 18.5,56.5
- parent: 2
- - uid: 7395
- components:
- - type: Transform
- pos: 19.5,56.5
- parent: 2
- - uid: 7396
- components:
- - type: Transform
- pos: 20.5,56.5
- parent: 2
- - uid: 7397
- components:
- - type: Transform
- pos: 21.5,56.5
- parent: 2
- - uid: 38251
- components:
- - type: Transform
- pos: -0.5,-0.5
- parent: 38244
- - uid: 38252
- components:
- - type: Transform
- pos: -0.5,0.5
- parent: 38244
- - uid: 38253
- components:
- - type: Transform
- pos: -0.5,1.5
- parent: 38244
- - uid: 38254
- components:
- - type: Transform
- pos: 1.5,1.5
- parent: 38244
- - uid: 38255
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 38244
- - uid: 38256
- components:
- - type: Transform
- pos: 1.5,0.5
- parent: 38244
- - uid: 38257
- components:
- - type: Transform
- pos: 1.5,-0.5
- parent: 38244
- - uid: 38258
- components:
- - type: Transform
- pos: 1.5,2.5
- parent: 38244
- - uid: 38259
- components:
- - type: Transform
- pos: 1.5,3.5
- parent: 38244
- - uid: 38260
- components:
- - type: Transform
- pos: 2.5,1.5
- parent: 38244
- - uid: 38261
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 38244
- - uid: 38262
- components:
- - type: Transform
- pos: 3.5,0.5
- parent: 38244
- - uid: 38442
- components:
- - type: Transform
- pos: -12.5,7.5
- parent: 38344
- - uid: 38443
- components:
- - type: Transform
- pos: -21.5,4.5
- parent: 38344
- - uid: 38444
- components:
- - type: Transform
- pos: -19.5,5.5
- parent: 38344
- - uid: 38445
- components:
- - type: Transform
- pos: -18.5,8.5
- parent: 38344
- - uid: 38446
- components:
- - type: Transform
- pos: -12.5,10.5
- parent: 38344
- - uid: 38447
- components:
- - type: Transform
- pos: -11.5,-4.5
- parent: 38344
- - uid: 38448
- components:
- - type: Transform
- pos: -16.5,-4.5
- parent: 38344
- - uid: 38449
- components:
- - type: Transform
- pos: -21.5,1.5
- parent: 38344
- - uid: 38450
- components:
- - type: Transform
- pos: -8.5,2.5
- parent: 38344
- - uid: 38451
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 38344
- - uid: 38452
- components:
- - type: Transform
- pos: 3.5,3.5
- parent: 38344
- - uid: 38453
- components:
- - type: Transform
- pos: -11.5,-6.5
- parent: 38344
- - uid: 38454
- components:
- - type: Transform
- pos: -5.5,1.5
- parent: 38344
- - uid: 38455
- components:
- - type: Transform
- pos: -4.5,3.5
- parent: 38344
- - uid: 38456
- components:
- - type: Transform
- pos: -21.5,6.5
- parent: 38344
- - uid: 38457
- components:
- - type: Transform
- pos: -9.5,6.5
- parent: 38344
- - uid: 38458
- components:
- - type: Transform
- pos: -15.5,2.5
- parent: 38344
- - uid: 38459
- components:
- - type: Transform
- pos: -9.5,9.5
- parent: 38344
- - uid: 38460
- components:
- - type: Transform
- pos: -6.5,9.5
- parent: 38344
- - uid: 38461
- components:
- - type: Transform
- pos: -4.5,2.5
- parent: 38344
- - uid: 38462
- components:
- - type: Transform
- pos: -1.5,1.5
- parent: 38344
- - uid: 38463
- components:
- - type: Transform
- pos: -18.5,9.5
- parent: 38344
- - uid: 38464
- components:
- - type: Transform
- pos: -20.5,28.5
- parent: 38344
- - uid: 38465
- components:
- - type: Transform
- pos: -22.5,28.5
- parent: 38344
- - uid: 38466
- components:
- - type: Transform
- pos: -19.5,28.5
- parent: 38344
- - uid: 38467
- components:
- - type: Transform
- pos: -23.5,28.5
- parent: 38344
- - uid: 38468
- components:
- - type: Transform
- pos: -24.5,28.5
- parent: 38344
- - uid: 38469
- components:
- - type: Transform
- pos: -21.5,29.5
- parent: 38344
- - uid: 38470
- components:
- - type: Transform
- pos: -21.5,32.5
- parent: 38344
- - uid: 38471
- components:
- - type: Transform
- pos: -20.5,31.5
- parent: 38344
- - uid: 38472
- components:
- - type: Transform
- pos: -19.5,31.5
- parent: 38344
- - uid: 38473
- components:
- - type: Transform
- pos: -18.5,31.5
- parent: 38344
- - uid: 38474
- components:
- - type: Transform
- pos: -17.5,31.5
- parent: 38344
- - uid: 38475
- components:
- - type: Transform
- pos: -17.5,32.5
- parent: 38344
- - uid: 38476
- components:
- - type: Transform
- pos: -17.5,33.5
- parent: 38344
- - uid: 38477
- components:
- - type: Transform
- pos: -17.5,34.5
- parent: 38344
- - uid: 38478
- components:
- - type: Transform
- pos: -17.5,35.5
- parent: 38344
- - uid: 38479
- components:
- - type: Transform
- pos: -15.5,35.5
- parent: 38344
- - uid: 38480
- components:
- - type: Transform
- pos: -14.5,35.5
- parent: 38344
- - uid: 38481
- components:
- - type: Transform
- pos: -21.5,33.5
- parent: 38344
- - uid: 38482
- components:
- - type: Transform
- pos: -21.5,27.5
- parent: 38344
- - uid: 38483
- components:
- - type: Transform
- pos: 7.5,3.5
- parent: 38344
- - uid: 38484
- components:
- - type: Transform
- pos: 7.5,1.5
- parent: 38344
- - uid: 38485
- components:
- - type: Transform
- pos: 1.5,-2.5
- parent: 38344
- - uid: 38486
- components:
- - type: Transform
- pos: 5.5,-4.5
- parent: 38344
- - uid: 38487
- components:
- - type: Transform
- pos: -5.5,-2.5
- parent: 38344
- - uid: 38488
- components:
- - type: Transform
- pos: 7.5,-2.5
- parent: 38344
- - uid: 38489
- components:
- - type: Transform
- pos: -7.5,-0.5
- parent: 38344
- - uid: 38490
- components:
- - type: Transform
- pos: -7.5,-3.5
- parent: 38344
- - uid: 38491
- components:
- - type: Transform
- pos: 10.5,-6.5
- parent: 38344
- - uid: 38492
- components:
- - type: Transform
- pos: 4.5,-4.5
- parent: 38344
- - uid: 38493
- components:
- - type: Transform
- pos: 4.5,1.5
- parent: 38344
- - uid: 38494
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 38344
- - uid: 38495
- components:
- - type: Transform
- pos: -0.5,-8.5
- parent: 38344
- - uid: 38496
- components:
- - type: Transform
- pos: -0.5,-7.5
- parent: 38344
- - uid: 38497
- components:
- - type: Transform
- pos: 12.5,3.5
- parent: 38344
- - uid: 38498
- components:
- - type: Transform
- pos: 12.5,4.5
- parent: 38344
- - uid: 38499
- components:
- - type: Transform
- pos: 12.5,5.5
- parent: 38344
- - uid: 38500
- components:
- - type: Transform
- pos: -0.5,-3.5
- parent: 38344
- - uid: 38501
- components:
- - type: Transform
- pos: -1.5,-10.5
- parent: 38344
- - uid: 38502
- components:
- - type: Transform
- pos: -0.5,-1.5
- parent: 38344
- - uid: 38503
- components:
- - type: Transform
- pos: -2.5,-4.5
- parent: 38344
- - uid: 38504
- components:
- - type: Transform
- pos: -1.5,-4.5
- parent: 38344
- - uid: 38505
- components:
- - type: Transform
- pos: 0.5,-1.5
- parent: 38344
- - uid: 38506
- components:
- - type: Transform
- pos: 1.5,-1.5
- parent: 38344
- - uid: 38507
- components:
- - type: Transform
- pos: -0.5,-9.5
- parent: 38344
- - uid: 38508
- components:
- - type: Transform
- pos: 0.5,-10.5
- parent: 38344
- - uid: 38509
- components:
- - type: Transform
- pos: 7.5,2.5
- parent: 38344
- - uid: 38510
- components:
- - type: Transform
- pos: 8.5,3.5
- parent: 38344
- - uid: 38511
- components:
- - type: Transform
- pos: 11.5,3.5
- parent: 38344
- - uid: 38512
- components:
- - type: Transform
- pos: -5.5,2.5
- parent: 38344
- - uid: 38513
- components:
- - type: Transform
- pos: -6.5,2.5
- parent: 38344
- - uid: 38514
- components:
- - type: Transform
- pos: 7.5,4.5
- parent: 38344
- - uid: 38515
- components:
- - type: Transform
- pos: 12.5,1.5
- parent: 38344
- - uid: 38516
- components:
- - type: Transform
- pos: -4.5,2.5
- parent: 38344
- - uid: 38517
- components:
- - type: Transform
- pos: -5.5,0.5
- parent: 38344
- - uid: 38518
- components:
- - type: Transform
- pos: -3.5,2.5
- parent: 38344
- - uid: 38519
- components:
- - type: Transform
- pos: 10.5,-2.5
- parent: 38344
- - uid: 38520
- components:
- - type: Transform
- pos: -5.5,-3.5
- parent: 38344
- - uid: 38521
- components:
- - type: Transform
- pos: 4.5,-6.5
- parent: 38344
- - uid: 38522
- components:
- - type: Transform
- pos: 9.5,3.5
- parent: 38344
- - uid: 38523
- components:
- - type: Transform
- pos: 0.5,-7.5
- parent: 38344
- - uid: 38524
- components:
- - type: Transform
- pos: 4.5,-8.5
- parent: 38344
- - uid: 38525
- components:
- - type: Transform
- pos: -0.5,-10.5
- parent: 38344
- - uid: 38526
- components:
- - type: Transform
- pos: 7.5,-3.5
- parent: 38344
- - uid: 38527
- components:
- - type: Transform
- pos: 4.5,4.5
- parent: 38344
- - uid: 38528
- components:
- - type: Transform
- pos: 10.5,3.5
- parent: 38344
- - uid: 38529
- components:
- - type: Transform
- pos: 4.5,-9.5
- parent: 38344
- - uid: 38530
- components:
- - type: Transform
- pos: 10.5,-0.5
- parent: 38344
- - uid: 38531
- components:
- - type: Transform
- pos: 4.5,0.5
- parent: 38344
- - uid: 38532
- components:
- - type: Transform
- pos: 4.5,-1.5
- parent: 38344
- - uid: 38533
- components:
- - type: Transform
- pos: -0.5,-5.5
- parent: 38344
- - uid: 38534
- components:
- - type: Transform
- pos: -0.5,-4.5
- parent: 38344
- - uid: 38535
- components:
- - type: Transform
- pos: 4.5,3.5
- parent: 38344
- - uid: 38536
- components:
- - type: Transform
- pos: 4.5,4.5
- parent: 38344
- - uid: 38537
- components:
- - type: Transform
- pos: 6.5,-4.5
- parent: 38344
- - uid: 38538
- components:
- - type: Transform
- pos: -5.5,-5.5
- parent: 38344
- - uid: 38539
- components:
- - type: Transform
- pos: -6.5,-2.5
- parent: 38344
- - uid: 38540
- components:
- - type: Transform
- pos: -7.5,-1.5
- parent: 38344
- - uid: 38541
- components:
- - type: Transform
- pos: 4.5,-2.5
- parent: 38344
- - uid: 38542
- components:
- - type: Transform
- pos: -0.5,-2.5
- parent: 38344
- - uid: 38543
- components:
- - type: Transform
- pos: 12.5,6.5
- parent: 38344
- - uid: 38544
- components:
- - type: Transform
- pos: -1.5,-7.5
- parent: 38344
- - uid: 38545
- components:
- - type: Transform
- pos: 4.5,5.5
- parent: 38344
- - uid: 38546
- components:
- - type: Transform
- pos: 9.5,-4.5
- parent: 38344
- - uid: 38547
- components:
- - type: Transform
- pos: 4.5,-5.5
- parent: 38344
- - uid: 38548
- components:
- - type: Transform
- pos: -5.5,-4.5
- parent: 38344
- - uid: 38549
- components:
- - type: Transform
- pos: -0.5,-6.5
- parent: 38344
- - uid: 38550
- components:
- - type: Transform
- pos: 10.5,-1.5
- parent: 38344
- - uid: 38551
- components:
- - type: Transform
- pos: 10.5,-4.5
- parent: 38344
- - uid: 38552
- components:
- - type: Transform
- pos: 10.5,-3.5
- parent: 38344
- - uid: 38553
- components:
- - type: Transform
- pos: 10.5,-5.5
- parent: 38344
- - uid: 38554
- components:
- - type: Transform
- pos: 12.5,2.5
- parent: 38344
- - uid: 38555
- components:
- - type: Transform
- pos: 4.5,2.5
- parent: 38344
- - uid: 38556
- components:
- - type: Transform
- pos: 10.5,-7.5
- parent: 38344
- - uid: 38557
- components:
- - type: Transform
- pos: 7.5,-4.5
- parent: 38344
- - uid: 38558
- components:
- - type: Transform
- pos: 4.5,-7.5
- parent: 38344
- - uid: 38559
- components:
- - type: Transform
- pos: 5.5,1.5
- parent: 38344
- - uid: 38560
- components:
- - type: Transform
- pos: 7.5,5.5
- parent: 38344
- - uid: 38561
- components:
- - type: Transform
- pos: -7.5,-2.5
- parent: 38344
- - uid: 38562
- components:
- - type: Transform
- pos: 4.5,-3.5
- parent: 38344
- - uid: 38563
- components:
- - type: Transform
- pos: -9.5,2.5
- parent: 38344
- - uid: 38564
- components:
- - type: Transform
- pos: -4.5,5.5
- parent: 38344
- - uid: 38565
- components:
- - type: Transform
- pos: -1.5,1.5
- parent: 38344
- - uid: 38566
- components:
- - type: Transform
- pos: -1.5,0.5
- parent: 38344
- - uid: 38567
- components:
- - type: Transform
- pos: -2.5,-1.5
- parent: 38344
- - uid: 38568
- components:
- - type: Transform
- pos: -2.5,-2.5
- parent: 38344
- - uid: 38569
- components:
- - type: Transform
- pos: 3.5,-2.5
- parent: 38344
- - uid: 38570
- components:
- - type: Transform
- pos: -1.5,-1.5
- parent: 38344
- - uid: 38571
- components:
- - type: Transform
- pos: -4.5,4.5
- parent: 38344
- - uid: 38572
- components:
- - type: Transform
- pos: -11.5,-3.5
- parent: 38344
- - uid: 38573
- components:
- - type: Transform
- pos: -0.5,2.5
- parent: 38344
- - uid: 38574
- components:
- - type: Transform
- pos: -1.5,2.5
- parent: 38344
- - uid: 38575
- components:
- - type: Transform
- pos: -7.5,10.5
- parent: 38344
- - uid: 38576
- components:
- - type: Transform
- pos: -10.5,-4.5
- parent: 38344
- - uid: 38577
- components:
- - type: Transform
- pos: -12.5,-3.5
- parent: 38344
- - uid: 38578
- components:
- - type: Transform
- pos: -12.5,2.5
- parent: 38344
- - uid: 38579
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 38344
- - uid: 38580
- components:
- - type: Transform
- pos: -7.5,7.5
- parent: 38344
- - uid: 38581
- components:
- - type: Transform
- pos: -7.5,8.5
- parent: 38344
- - uid: 38582
- components:
- - type: Transform
- pos: -12.5,-2.5
- parent: 38344
- - uid: 38583
- components:
- - type: Transform
- pos: -11.5,-7.5
- parent: 38344
- - uid: 38584
- components:
- - type: Transform
- pos: -12.5,-1.5
- parent: 38344
- - uid: 38585
- components:
- - type: Transform
- pos: -1.5,8.5
- parent: 38344
- - uid: 38586
- components:
- - type: Transform
- pos: 0.5,4.5
- parent: 38344
- - uid: 38587
- components:
- - type: Transform
- pos: 3.5,-8.5
- parent: 38344
- - uid: 38588
- components:
- - type: Transform
- pos: -20.5,5.5
- parent: 38344
- - uid: 38589
- components:
- - type: Transform
- pos: -21.5,3.5
- parent: 38344
- - uid: 38590
- components:
- - type: Transform
- pos: -21.5,2.5
- parent: 38344
- - uid: 38591
- components:
- - type: Transform
- pos: -21.5,5.5
- parent: 38344
- - uid: 38592
- components:
- - type: Transform
- pos: -5.5,9.5
- parent: 38344
- - uid: 38593
- components:
- - type: Transform
- pos: -1.5,5.5
- parent: 38344
- - uid: 38594
- components:
- - type: Transform
- pos: 0.5,8.5
- parent: 38344
- - uid: 38595
- components:
- - type: Transform
- pos: -12.5,9.5
- parent: 38344
- - uid: 38596
- components:
- - type: Transform
- pos: -12.5,8.5
- parent: 38344
- - uid: 38597
- components:
- - type: Transform
- pos: -1.5,6.5
- parent: 38344
- - uid: 38598
- components:
- - type: Transform
- pos: -9.5,8.5
- parent: 38344
- - uid: 38599
- components:
- - type: Transform
- pos: -12.5,7.5
- parent: 38344
- - uid: 38600
- components:
- - type: Transform
- pos: -11.5,-5.5
- parent: 38344
- - uid: 38601
- components:
- - type: Transform
- pos: -7.5,2.5
- parent: 38344
- - uid: 38602
- components:
- - type: Transform
- pos: -2.5,2.5
- parent: 38344
- - uid: 38603
- components:
- - type: Transform
- pos: -22.5,5.5
- parent: 38344
- - uid: 38604
- components:
- - type: Transform
- pos: -18.5,4.5
- parent: 38344
- - uid: 38605
- components:
- - type: Transform
- pos: -5.5,8.5
- parent: 38344
- - uid: 38606
- components:
- - type: Transform
- pos: -15.5,8.5
- parent: 38344
- - uid: 38607
- components:
- - type: Transform
- pos: -19.5,-4.5
- parent: 38344
- - uid: 38608
- components:
- - type: Transform
- pos: -13.5,5.5
- parent: 38344
- - uid: 38609
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 38344
- - uid: 38610
- components:
- - type: Transform
- pos: -12.5,4.5
- parent: 38344
- - uid: 38611
- components:
- - type: Transform
- pos: -16.5,-3.5
- parent: 38344
- - uid: 38612
- components:
- - type: Transform
- pos: 0.5,0.5
- parent: 38344
- - uid: 38613
- components:
- - type: Transform
- pos: -15.5,6.5
- parent: 38344
- - uid: 38614
- components:
- - type: Transform
- pos: -18.5,3.5
- parent: 38344
- - uid: 38615
- components:
- - type: Transform
- pos: -20.5,-2.5
- parent: 38344
- - uid: 38616
- components:
- - type: Transform
- pos: -18.5,2.5
- parent: 38344
- - uid: 38617
- components:
- - type: Transform
- pos: -18.5,1.5
- parent: 38344
- - uid: 38618
- components:
- - type: Transform
- pos: -15.5,4.5
- parent: 38344
- - uid: 38619
- components:
- - type: Transform
- pos: -15.5,7.5
- parent: 38344
- - uid: 38620
- components:
- - type: Transform
- pos: -8.5,9.5
- parent: 38344
- - uid: 38621
- components:
- - type: Transform
- pos: -7.5,6.5
- parent: 38344
- - uid: 38622
- components:
- - type: Transform
- pos: -9.5,7.5
- parent: 38344
- - uid: 38623
- components:
- - type: Transform
- pos: 0.5,7.5
- parent: 38344
- - uid: 38624
- components:
- - type: Transform
- pos: -16.5,5.5
- parent: 38344
- - uid: 38625
- components:
- - type: Transform
- pos: -17.5,5.5
- parent: 38344
- - uid: 38626
- components:
- - type: Transform
- pos: -12.5,6.5
- parent: 38344
- - uid: 38627
- components:
- - type: Transform
- pos: -15.5,3.5
- parent: 38344
- - uid: 38628
- components:
- - type: Transform
- pos: -15.5,1.5
- parent: 38344
- - uid: 38629
- components:
- - type: Transform
- pos: -21.5,7.5
- parent: 38344
- - uid: 38630
- components:
- - type: Transform
- pos: -18.5,6.5
- parent: 38344
- - uid: 38631
- components:
- - type: Transform
- pos: -5.5,7.5
- parent: 38344
- - uid: 38632
- components:
- - type: Transform
- pos: -5.5,6.5
- parent: 38344
- - uid: 38633
- components:
- - type: Transform
- pos: -12.5,12.5
- parent: 38344
- - uid: 38634
- components:
- - type: Transform
- pos: -12.5,3.5
- parent: 38344
- - uid: 38635
- components:
- - type: Transform
- pos: -14.5,5.5
- parent: 38344
- - uid: 38636
- components:
- - type: Transform
- pos: -20.5,-4.5
- parent: 38344
- - uid: 38637
- components:
- - type: Transform
- pos: -15.5,5.5
- parent: 38344
- - uid: 38638
- components:
- - type: Transform
- pos: -15.5,-3.5
- parent: 38344
- - uid: 38639
- components:
- - type: Transform
- pos: -20.5,-3.5
- parent: 38344
- - uid: 38640
- components:
- - type: Transform
- pos: -16.5,-6.5
- parent: 38344
- - uid: 38641
- components:
- - type: Transform
- pos: -16.5,-4.5
- parent: 38344
- - uid: 38642
- components:
- - type: Transform
- pos: -16.5,-5.5
- parent: 38344
- - uid: 38643
- components:
- - type: Transform
- pos: -21.5,-2.5
- parent: 38344
- - uid: 38644
- components:
- - type: Transform
- pos: -15.5,9.5
- parent: 38344
- - uid: 38645
- components:
- - type: Transform
- pos: -18.5,7.5
- parent: 38344
- - uid: 38646
- components:
- - type: Transform
- pos: -14.5,-3.5
- parent: 38344
- - uid: 38647
- components:
- - type: Transform
- pos: -16.5,-7.5
- parent: 38344
- - uid: 38648
- components:
- - type: Transform
- pos: -1.5,7.5
- parent: 38344
- - uid: 38649
- components:
- - type: Transform
- pos: -7.5,11.5
- parent: 38344
- - uid: 38650
- components:
- - type: Transform
- pos: -12.5,11.5
- parent: 38344
- - uid: 38651
- components:
- - type: Transform
- pos: -12.5,5.5
- parent: 38344
- - uid: 38652
- components:
- - type: Transform
- pos: -1.5,3.5
- parent: 38344
- - uid: 38653
- components:
- - type: Transform
- pos: -1.5,4.5
- parent: 38344
- - uid: 38654
- components:
- - type: Transform
- pos: 0.5,5.5
- parent: 38344
- - uid: 38655
- components:
- - type: Transform
- pos: 0.5,6.5
- parent: 38344
- - uid: 38656
- components:
- - type: Transform
- pos: -18.5,5.5
- parent: 38344
- - uid: 38657
- components:
- - type: Transform
- pos: -12.5,0.5
- parent: 38344
- - uid: 38658
- components:
- - type: Transform
- pos: -13.5,-3.5
- parent: 38344
- - uid: 38659
- components:
- - type: Transform
- pos: -17.5,-4.5
- parent: 38344
- - uid: 38660
- components:
- - type: Transform
- pos: -16.5,-0.5
- parent: 38344
- - uid: 38661
- components:
- - type: Transform
- pos: -21.5,8.5
- parent: 38344
- - uid: 38662
- components:
- - type: Transform
- pos: -21.5,9.5
- parent: 38344
- - uid: 38663
- components:
- - type: Transform
- pos: -18.5,-4.5
- parent: 38344
- - uid: 38664
- components:
- - type: Transform
- pos: -16.5,-1.5
- parent: 38344
- - uid: 38665
- components:
- - type: Transform
- pos: -16.5,-2.5
- parent: 38344
- - uid: 38666
- components:
- - type: Transform
- pos: -7.5,9.5
- parent: 38344
- - uid: 38667
- components:
- - type: Transform
- pos: -12.5,1.5
- parent: 38344
- - uid: 38668
- components:
- - type: Transform
- pos: -10.5,7.5
- parent: 38344
- - uid: 38669
- components:
- - type: Transform
- pos: -11.5,7.5
- parent: 38344
-- proto: CableApcStack
- entities:
- - uid: 7398
- components:
- - type: Transform
- pos: -48.414772,11.637162
- parent: 2
-- proto: CableApcStack1
- entities:
- - uid: 7399
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.722485,-61.630287
- parent: 2
- - uid: 7400
- components:
- - type: Transform
- pos: -33.208797,-61.324524
- parent: 2
- - uid: 7401
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: 10.239218,72.56352
- parent: 2
- - uid: 7402
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: 59.479244,-40.83658
- parent: 2
- - uid: 7403
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: 61.18237,-40.586582
- parent: 2
-- proto: CableApcStackLingering10
- entities:
- - uid: 7404
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: 77.28815,-1.5605046
- parent: 2
-- proto: CablecuffsBroken
- entities:
- - uid: 7405
- components:
- - type: Transform
- pos: -38.590115,0.39123595
- parent: 2
- - uid: 7406
- components:
- - type: Transform
- pos: -36.569214,0.9812069
- parent: 2
- - uid: 7407
- components:
- - type: Transform
- pos: -33.064873,-74.243935
- parent: 2
- - uid: 38670
- components:
- - type: Transform
- pos: -6.5,22.5
- parent: 38344
-- proto: CableHV
- entities:
- - uid: 7408
- components:
- - type: Transform
- pos: -18.5,-29.5
- parent: 2
- - uid: 7409
- components:
- - type: Transform
- pos: 15.5,87.5
- parent: 2
- - uid: 7410
- components:
- - type: Transform
- pos: 28.5,103.5
- parent: 2
- - uid: 7411
- components:
- - type: Transform
- pos: 28.5,101.5
- parent: 2
- - uid: 7412
- components:
- - type: Transform
- pos: 32.5,94.5
- parent: 2
- - uid: 7413
- components:
- - type: Transform
- pos: 15.5,88.5
- parent: 2
- - uid: 7414
- components:
- - type: Transform
- pos: 33.5,94.5
- parent: 2
- - uid: 7415
- components:
- - type: Transform
- pos: 16.5,87.5
- parent: 2
- - uid: 7416
- components:
- - type: Transform
- pos: 30.5,95.5
- parent: 2
- - uid: 7417
- components:
- - type: Transform
- pos: 3.5,-39.5
- parent: 2
- - uid: 7418
- components:
- - type: Transform
- pos: 28.5,95.5
- parent: 2
- - uid: 7419
- components:
- - type: Transform
- pos: 4.5,-37.5
- parent: 2
- - uid: 7420
- components:
- - type: Transform
- pos: 29.5,95.5
- parent: 2
- - uid: 7421
- components:
- - type: Transform
- pos: -41.5,-73.5
- parent: 2
- - uid: 7422
- components:
- - type: Transform
- pos: 23.5,92.5
- parent: 2
- - uid: 7423
- components:
- - type: Transform
- pos: 31.5,96.5
- parent: 2
- - uid: 7424
- components:
- - type: Transform
- pos: 22.5,90.5
- parent: 2
- - uid: 7425
- components:
- - type: Transform
- pos: 24.5,96.5
- parent: 2
- - uid: 7426
- components:
- - type: Transform
- pos: 25.5,90.5
- parent: 2
- - uid: 7427
- components:
- - type: Transform
- pos: 22.5,98.5
- parent: 2
- - uid: 7428
- components:
- - type: Transform
- pos: 21.5,94.5
- parent: 2
- - uid: 7429
- components:
- - type: Transform
- pos: 26.5,90.5
- parent: 2
- - uid: 7430
- components:
- - type: Transform
- pos: 31.5,100.5
- parent: 2
- - uid: 7431
- components:
- - type: Transform
- pos: 25.5,98.5
- parent: 2
- - uid: 7432
- components:
- - type: Transform
- pos: 26.5,99.5
- parent: 2
- - uid: 7433
- components:
- - type: Transform
- pos: 25.5,96.5
- parent: 2
- - uid: 7434
- components:
- - type: Transform
- pos: 22.5,100.5
- parent: 2
- - uid: 7435
- components:
- - type: Transform
- pos: 33.5,100.5
- parent: 2
- - uid: 7436
- components:
- - type: Transform
- pos: 34.5,100.5
- parent: 2
- - uid: 7437
- components:
- - type: Transform
- pos: 26.5,98.5
- parent: 2
- - uid: 7438
- components:
- - type: Transform
- pos: 31.5,94.5
- parent: 2
- - uid: 7439
- components:
- - type: Transform
- pos: 25.5,95.5
- parent: 2
- - uid: 7440
- components:
- - type: Transform
- pos: 24.5,98.5
- parent: 2
- - uid: 7441
- components:
- - type: Transform
- pos: 35.5,96.5
- parent: 2
- - uid: 7442
- components:
- - type: Transform
- pos: 34.5,94.5
- parent: 2
- - uid: 7443
- components:
- - type: Transform
- pos: 33.5,96.5
- parent: 2
- - uid: 7444
- components:
- - type: Transform
- pos: 32.5,92.5
- parent: 2
- - uid: 7445
- components:
- - type: Transform
- pos: 33.5,92.5
- parent: 2
- - uid: 7446
- components:
- - type: Transform
- pos: 24.5,92.5
- parent: 2
- - uid: 7447
- components:
- - type: Transform
- pos: 31.5,92.5
- parent: 2
- - uid: 7448
- components:
- - type: Transform
- pos: 32.5,100.5
- parent: 2
- - uid: 7449
- components:
- - type: Transform
- pos: 32.5,98.5
- parent: 2
- - uid: 7450
- components:
- - type: Transform
- pos: 32.5,96.5
- parent: 2
- - uid: 7451
- components:
- - type: Transform
- pos: -42.5,-73.5
- parent: 2
- - uid: 7452
- components:
- - type: Transform
- pos: -41.5,-74.5
- parent: 2
- - uid: 7453
- components:
- - type: Transform
- pos: 23.5,90.5
- parent: 2
- - uid: 7454
- components:
- - type: Transform
- pos: 28.5,94.5
- parent: 2
- - uid: 7455
- components:
- - type: Transform
- pos: 28.5,92.5
- parent: 2
- - uid: 7456
- components:
- - type: Transform
- pos: -44.5,0.5
- parent: 2
- - uid: 7457
- components:
- - type: Transform
- pos: 29.5,99.5
- parent: 2
- - uid: 7458
- components:
- - type: Transform
- pos: 17.5,87.5
- parent: 2
- - uid: 7459
- components:
- - type: Transform
- pos: 23.5,100.5
- parent: 2
- - uid: 7460
- components:
- - type: Transform
- pos: 28.5,89.5
- parent: 2
- - uid: 7461
- components:
- - type: Transform
- pos: 30.5,92.5
- parent: 2
- - uid: 7462
- components:
- - type: Transform
- pos: 26.5,87.5
- parent: 2
- - uid: 7463
- components:
- - type: Transform
- pos: 23.5,87.5
- parent: 2
- - uid: 7464
- components:
- - type: Transform
- pos: 20.5,87.5
- parent: 2
- - uid: 7465
- components:
- - type: Transform
- pos: 25.5,87.5
- parent: 2
- - uid: 7466
- components:
- - type: Transform
- pos: 23.5,96.5
- parent: 2
- - uid: 7467
- components:
- - type: Transform
- pos: 22.5,87.5
- parent: 2
- - uid: 7468
- components:
- - type: Transform
- pos: 24.5,87.5
- parent: 2
- - uid: 7469
- components:
- - type: Transform
- pos: 28.5,96.5
- parent: 2
- - uid: 7470
- components:
- - type: Transform
- pos: 28.5,97.5
- parent: 2
- - uid: 7471
- components:
- - type: Transform
- pos: 28.5,98.5
- parent: 2
- - uid: 7472
- components:
- - type: Transform
- pos: 22.5,96.5
- parent: 2
- - uid: 7473
- components:
- - type: Transform
- pos: 21.5,96.5
- parent: 2
- - uid: 7474
- components:
- - type: Transform
- pos: 18.5,87.5
- parent: 2
- - uid: 7475
- components:
- - type: Transform
- pos: 14.5,88.5
- parent: 2
- - uid: 7476
- components:
- - type: Transform
- pos: 32.5,90.5
- parent: 2
- - uid: 7477
- components:
- - type: Transform
- pos: 31.5,90.5
- parent: 2
- - uid: 7478
- components:
- - type: Transform
- pos: -44.5,1.5
- parent: 2
- - uid: 7479
- components:
- - type: Transform
- pos: 23.5,98.5
- parent: 2
- - uid: 7480
- components:
- - type: Transform
- pos: 28.5,100.5
- parent: 2
- - uid: 7481
- components:
- - type: Transform
- pos: 24.5,94.5
- parent: 2
- - uid: 7482
- components:
- - type: Transform
- pos: 25.5,92.5
- parent: 2
- - uid: 7483
- components:
- - type: Transform
- pos: 29.5,91.5
- parent: 2
- - uid: 7484
- components:
- - type: Transform
- pos: 22.5,94.5
- parent: 2
- - uid: 7485
- components:
- - type: Transform
- pos: 23.5,94.5
- parent: 2
- - uid: 7486
- components:
- - type: Transform
- pos: 25.5,94.5
- parent: 2
- - uid: 7487
- components:
- - type: Transform
- pos: 28.5,93.5
- parent: 2
- - uid: 7488
- components:
- - type: Transform
- pos: -45.5,2.5
- parent: 2
- - uid: 7489
- components:
- - type: Transform
- pos: 22.5,92.5
- parent: 2
- - uid: 7490
- components:
- - type: Transform
- pos: 28.5,88.5
- parent: 2
- - uid: 7491
- components:
- - type: Transform
- pos: 24.5,100.5
- parent: 2
- - uid: 7492
- components:
- - type: Transform
- pos: 35.5,94.5
- parent: 2
- - uid: 7493
- components:
- - type: Transform
- pos: 21.5,87.5
- parent: 2
- - uid: 7494
- components:
- - type: Transform
- pos: 26.5,95.5
- parent: 2
- - uid: 7495
- components:
- - type: Transform
- pos: 27.5,95.5
- parent: 2
- - uid: 7496
- components:
- - type: Transform
- pos: -44.5,2.5
- parent: 2
- - uid: 7497
- components:
- - type: Transform
- pos: 31.5,98.5
- parent: 2
- - uid: 7498
- components:
- - type: Transform
- pos: -43.5,-74.5
- parent: 2
- - uid: 7499
- components:
- - type: Transform
- pos: -43.5,-75.5
- parent: 2
- - uid: 7500
- components:
- - type: Transform
- pos: 27.5,99.5
- parent: 2
- - uid: 7501
- components:
- - type: Transform
- pos: 30.5,100.5
- parent: 2
- - uid: 7502
- components:
- - type: Transform
- pos: 28.5,90.5
- parent: 2
- - uid: 7503
- components:
- - type: Transform
- pos: -45.5,0.5
- parent: 2
- - uid: 7504
- components:
- - type: Transform
- pos: -45.5,1.5
- parent: 2
- - uid: 7505
- components:
- - type: Transform
- pos: 19.5,87.5
- parent: 2
- - uid: 7506
- components:
- - type: Transform
- pos: 26.5,91.5
- parent: 2
- - uid: 7507
- components:
- - type: Transform
- pos: 33.5,98.5
- parent: 2
- - uid: 7508
- components:
- - type: Transform
- pos: -43.5,-73.5
- parent: 2
- - uid: 7509
- components:
- - type: Transform
- pos: 31.5,95.5
- parent: 2
- - uid: 7510
- components:
- - type: Transform
- pos: 28.5,87.5
- parent: 2
- - uid: 7511
- components:
- - type: Transform
- pos: 34.5,90.5
- parent: 2
- - uid: 7512
- components:
- - type: Transform
- pos: 28.5,91.5
- parent: 2
- - uid: 7513
- components:
- - type: Transform
- pos: 30.5,99.5
- parent: 2
- - uid: 7514
- components:
- - type: Transform
- pos: -45.5,-74.5
- parent: 2
- - uid: 7515
- components:
- - type: Transform
- pos: 34.5,92.5
- parent: 2
- - uid: 7516
- components:
- - type: Transform
- pos: 13.5,87.5
- parent: 2
- - uid: 7517
- components:
- - type: Transform
- pos: 30.5,90.5
- parent: 2
- - uid: 7518
- components:
- - type: Transform
- pos: 33.5,90.5
- parent: 2
- - uid: 7519
- components:
- - type: Transform
- pos: -44.5,-74.5
- parent: 2
- - uid: 7520
- components:
- - type: Transform
- pos: 28.5,102.5
- parent: 2
- - uid: 7521
- components:
- - type: Transform
- pos: 30.5,91.5
- parent: 2
- - uid: 7522
- components:
- - type: Transform
- pos: 13.5,88.5
- parent: 2
- - uid: 7523
- components:
- - type: Transform
- pos: 28.5,99.5
- parent: 2
- - uid: 7524
- components:
- - type: Transform
- pos: 24.5,90.5
- parent: 2
- - uid: 7525
- components:
- - type: Transform
- pos: 26.5,92.5
- parent: 2
- - uid: 7526
- components:
- - type: Transform
- pos: 27.5,91.5
- parent: 2
- - uid: 7527
- components:
- - type: Transform
- pos: 30.5,98.5
- parent: 2
- - uid: 7528
- components:
- - type: Transform
- pos: 34.5,98.5
- parent: 2
- - uid: 7529
- components:
- - type: Transform
- pos: 15.5,88.5
- parent: 2
- - uid: 7530
- components:
- - type: Transform
- pos: -44.5,-0.5
- parent: 2
- - uid: 7531
- components:
- - type: Transform
- pos: 27.5,87.5
- parent: 2
- - uid: 7532
- components:
- - type: Transform
- pos: 6.5,-39.5
- parent: 2
- - uid: 7533
- components:
- - type: Transform
- pos: -45.5,-0.5
- parent: 2
- - uid: 7534
- components:
- - type: Transform
- pos: 26.5,100.5
- parent: 2
- - uid: 7535
- components:
- - type: Transform
- pos: 5.5,-40.5
- parent: 2
- - uid: 7536
- components:
- - type: Transform
- pos: 4.5,-37.5
- parent: 2
- - uid: 7537
- components:
- - type: Transform
- pos: 6.5,-40.5
- parent: 2
- - uid: 7538
- components:
- - type: Transform
- pos: 34.5,96.5
- parent: 2
- - uid: 7539
- components:
- - type: Transform
- pos: 4.5,-40.5
- parent: 2
- - uid: 7540
- components:
- - type: Transform
- pos: 3.5,-40.5
- parent: 2
- - uid: 7541
- components:
- - type: Transform
- pos: 25.5,100.5
- parent: 2
- - uid: 7542
- components:
- - type: Transform
- pos: 15.5,86.5
- parent: 2
- - uid: 7543
- components:
- - type: Transform
- pos: -41.5,-2.5
- parent: 2
- - uid: 7544
- components:
- - type: Transform
- pos: -41.5,-3.5
- parent: 2
- - uid: 7545
- components:
- - type: Transform
- pos: -45.5,-3.5
- parent: 2
- - uid: 7546
- components:
- - type: Transform
- pos: -44.5,-3.5
- parent: 2
- - uid: 7547
- components:
- - type: Transform
- pos: 76.5,-1.5
- parent: 2
- - uid: 7548
- components:
- - type: Transform
- pos: -61.5,-5.5
- parent: 2
- - uid: 7549
- components:
- - type: Transform
- pos: -41.5,-9.5
- parent: 2
- - uid: 7550
- components:
- - type: Transform
- pos: -60.5,-5.5
- parent: 2
- - uid: 7551
- components:
- - type: Transform
- pos: -59.5,-5.5
- parent: 2
- - uid: 7552
- components:
- - type: Transform
- pos: -60.5,-7.5
- parent: 2
- - uid: 7553
- components:
- - type: Transform
- pos: -55.5,-5.5
- parent: 2
- - uid: 7554
- components:
- - type: Transform
- pos: 76.5,-2.5
- parent: 2
- - uid: 7555
- components:
- - type: Transform
- pos: -50.5,53.5
- parent: 2
- - uid: 7556
- components:
- - type: Transform
- pos: 76.5,-2.5
- parent: 2
- - uid: 7557
- components:
- - type: Transform
- pos: -44.5,-2.5
- parent: 2
- - uid: 7558
- components:
- - type: Transform
- pos: 77.5,-2.5
- parent: 2
- - uid: 7559
- components:
- - type: Transform
- pos: -47.5,-2.5
- parent: 2
- - uid: 7560
- components:
- - type: Transform
- pos: 77.5,-3.5
- parent: 2
- - uid: 7561
- components:
- - type: Transform
- pos: -41.5,-6.5
- parent: 2
- - uid: 7562
- components:
- - type: Transform
- pos: 11.5,87.5
- parent: 2
- - uid: 7563
- components:
- - type: Transform
- pos: 12.5,87.5
- parent: 2
- - uid: 7564
- components:
- - type: Transform
- pos: 10.5,87.5
- parent: 2
- - uid: 7565
- components:
- - type: Transform
- pos: 10.5,86.5
- parent: 2
- - uid: 7566
- components:
- - type: Transform
- pos: 10.5,84.5
- parent: 2
- - uid: 7567
- components:
- - type: Transform
- pos: 10.5,83.5
- parent: 2
- - uid: 7568
- components:
- - type: Transform
- pos: 10.5,82.5
- parent: 2
- - uid: 7569
- components:
- - type: Transform
- pos: 10.5,85.5
- parent: 2
- - uid: 7570
- components:
- - type: Transform
- pos: 10.5,81.5
- parent: 2
- - uid: 7571
- components:
- - type: Transform
- pos: 11.5,81.5
- parent: 2
- - uid: 7572
- components:
- - type: Transform
- pos: 11.5,80.5
- parent: 2
- - uid: 7573
- components:
- - type: Transform
- pos: 11.5,79.5
- parent: 2
- - uid: 7574
- components:
- - type: Transform
- pos: 11.5,78.5
- parent: 2
- - uid: 7575
- components:
- - type: Transform
- pos: 11.5,77.5
- parent: 2
- - uid: 7576
- components:
- - type: Transform
- pos: 11.5,76.5
- parent: 2
- - uid: 7577
- components:
- - type: Transform
- pos: 11.5,75.5
- parent: 2
- - uid: 7578
- components:
- - type: Transform
- pos: 11.5,74.5
- parent: 2
- - uid: 7579
- components:
- - type: Transform
- pos: 12.5,74.5
- parent: 2
- - uid: 7580
- components:
- - type: Transform
- pos: 12.5,73.5
- parent: 2
- - uid: 7581
- components:
- - type: Transform
- pos: 12.5,72.5
- parent: 2
- - uid: 7582
- components:
- - type: Transform
- pos: 13.5,72.5
- parent: 2
- - uid: 7583
- components:
- - type: Transform
- pos: 14.5,72.5
- parent: 2
- - uid: 7584
- components:
- - type: Transform
- pos: 14.5,71.5
- parent: 2
- - uid: 7585
- components:
- - type: Transform
- pos: 14.5,70.5
- parent: 2
- - uid: 7586
- components:
- - type: Transform
- pos: 14.5,69.5
- parent: 2
- - uid: 7587
- components:
- - type: Transform
- pos: 14.5,68.5
- parent: 2
- - uid: 7588
- components:
- - type: Transform
- pos: 7.5,60.5
- parent: 2
- - uid: 7589
- components:
- - type: Transform
- pos: 7.5,59.5
- parent: 2
- - uid: 7590
- components:
- - type: Transform
- pos: 7.5,58.5
- parent: 2
- - uid: 7591
- components:
- - type: Transform
- pos: 7.5,57.5
- parent: 2
- - uid: 7592
- components:
- - type: Transform
- pos: 8.5,57.5
- parent: 2
- - uid: 7593
- components:
- - type: Transform
- pos: 9.5,57.5
- parent: 2
- - uid: 7594
- components:
- - type: Transform
- pos: 10.5,57.5
- parent: 2
- - uid: 7595
- components:
- - type: Transform
- pos: 10.5,58.5
- parent: 2
- - uid: 7596
- components:
- - type: Transform
- pos: 10.5,59.5
- parent: 2
- - uid: 7597
- components:
- - type: Transform
- pos: 10.5,60.5
- parent: 2
- - uid: 7598
- components:
- - type: Transform
- pos: 10.5,61.5
- parent: 2
- - uid: 7599
- components:
- - type: Transform
- pos: 10.5,62.5
- parent: 2
- - uid: 7600
- components:
- - type: Transform
- pos: 10.5,63.5
- parent: 2
- - uid: 7601
- components:
- - type: Transform
- pos: 10.5,64.5
- parent: 2
- - uid: 7602
- components:
- - type: Transform
- pos: 11.5,64.5
- parent: 2
- - uid: 7603
- components:
- - type: Transform
- pos: 12.5,64.5
- parent: 2
- - uid: 7604
- components:
- - type: Transform
- pos: 13.5,64.5
- parent: 2
- - uid: 7605
- components:
- - type: Transform
- pos: 14.5,64.5
- parent: 2
- - uid: 7606
- components:
- - type: Transform
- pos: 14.5,65.5
- parent: 2
- - uid: 7607
- components:
- - type: Transform
- pos: 14.5,66.5
- parent: 2
- - uid: 7608
- components:
- - type: Transform
- pos: 14.5,67.5
- parent: 2
- - uid: 7609
- components:
- - type: Transform
- pos: 22.5,20.5
- parent: 2
- - uid: 7610
- components:
- - type: Transform
- pos: 22.5,19.5
- parent: 2
- - uid: 7611
- components:
- - type: Transform
- pos: 22.5,18.5
- parent: 2
- - uid: 7612
- components:
- - type: Transform
- pos: 21.5,18.5
- parent: 2
- - uid: 7613
- components:
- - type: Transform
- pos: 20.5,18.5
- parent: 2
- - uid: 7614
- components:
- - type: Transform
- pos: 19.5,18.5
- parent: 2
- - uid: 7615
- components:
- - type: Transform
- pos: 18.5,18.5
- parent: 2
- - uid: 7616
- components:
- - type: Transform
- pos: 17.5,18.5
- parent: 2
- - uid: 7617
- components:
- - type: Transform
- pos: 25.5,32.5
- parent: 2
- - uid: 7618
- components:
- - type: Transform
- pos: 25.5,31.5
- parent: 2
- - uid: 7619
- components:
- - type: Transform
- pos: -1.5,34.5
- parent: 2
- - uid: 7620
- components:
- - type: Transform
- pos: -2.5,34.5
- parent: 2
- - uid: 7621
- components:
- - type: Transform
- pos: -2.5,33.5
- parent: 2
- - uid: 7622
- components:
- - type: Transform
- pos: -2.5,32.5
- parent: 2
- - uid: 7623
- components:
- - type: Transform
- pos: -2.5,31.5
- parent: 2
- - uid: 7624
- components:
- - type: Transform
- pos: -2.5,30.5
- parent: 2
- - uid: 7625
- components:
- - type: Transform
- pos: -2.5,29.5
- parent: 2
- - uid: 7626
- components:
- - type: Transform
- pos: -2.5,28.5
- parent: 2
- - uid: 7627
- components:
- - type: Transform
- pos: -2.5,27.5
- parent: 2
- - uid: 7628
- components:
- - type: Transform
- pos: -2.5,26.5
- parent: 2
- - uid: 7629
- components:
- - type: Transform
- pos: -1.5,26.5
- parent: 2
- - uid: 7630
- components:
- - type: Transform
- pos: -0.5,26.5
- parent: 2
- - uid: 7631
- components:
- - type: Transform
- pos: 0.50000006,26.5
- parent: 2
- - uid: 7632
- components:
- - type: Transform
- pos: 0.50000006,25.5
- parent: 2
- - uid: 7633
- components:
- - type: Transform
- pos: 0.50000006,24.5
- parent: 2
- - uid: 7634
- components:
- - type: Transform
- pos: 0.49999997,23.5
- parent: 2
- - uid: 7635
- components:
- - type: Transform
- pos: -26.5,25.5
- parent: 2
- - uid: 7636
- components:
- - type: Transform
- pos: -25.5,25.5
- parent: 2
- - uid: 7637
- components:
- - type: Transform
- pos: -24.5,25.5
- parent: 2
- - uid: 7638
- components:
- - type: Transform
- pos: -26.5,26.5
- parent: 2
- - uid: 7639
- components:
- - type: Transform
- pos: -26.5,27.5
- parent: 2
- - uid: 7640
- components:
- - type: Transform
- pos: -26.5,27.5
- parent: 2
- - uid: 7641
- components:
- - type: Transform
- pos: -24.5,26.5
- parent: 2
- - uid: 7642
- components:
- - type: Transform
- pos: -23.5,26.5
- parent: 2
- - uid: 7643
- components:
- - type: Transform
- pos: -22.5,26.5
- parent: 2
- - uid: 7644
- components:
- - type: Transform
- pos: -21.5,26.5
- parent: 2
- - uid: 7645
- components:
- - type: Transform
- pos: -20.5,26.5
- parent: 2
- - uid: 7646
- components:
- - type: Transform
- pos: -19.5,26.5
- parent: 2
- - uid: 7647
- components:
- - type: Transform
- pos: -18.5,26.5
- parent: 2
- - uid: 7648
- components:
- - type: Transform
- pos: -18.5,25.5
- parent: 2
- - uid: 7649
- components:
- - type: Transform
- pos: -18.5,24.5
- parent: 2
- - uid: 7650
- components:
- - type: Transform
- pos: -18.5,23.5
- parent: 2
- - uid: 7651
- components:
- - type: Transform
- pos: -18.5,22.5
- parent: 2
- - uid: 7652
- components:
- - type: Transform
- pos: -18.5,21.5
- parent: 2
- - uid: 7653
- components:
- - type: Transform
- pos: -18.5,20.5
- parent: 2
- - uid: 7654
- components:
- - type: Transform
- pos: -17.5,23.5
- parent: 2
- - uid: 7655
- components:
- - type: Transform
- pos: -16.5,23.5
- parent: 2
- - uid: 7656
- components:
- - type: Transform
- pos: -15.5,23.5
- parent: 2
- - uid: 7657
- components:
- - type: Transform
- pos: -14.5,23.5
- parent: 2
- - uid: 7658
- components:
- - type: Transform
- pos: -13.5,23.5
- parent: 2
- - uid: 7659
- components:
- - type: Transform
- pos: -12.5,23.5
- parent: 2
- - uid: 7660
- components:
- - type: Transform
- pos: -11.5,23.5
- parent: 2
- - uid: 7661
- components:
- - type: Transform
- pos: -10.5,23.5
- parent: 2
- - uid: 7662
- components:
- - type: Transform
- pos: -9.5,23.5
- parent: 2
- - uid: 7663
- components:
- - type: Transform
- pos: -8.5,23.5
- parent: 2
- - uid: 7664
- components:
- - type: Transform
- pos: -7.5,23.5
- parent: 2
- - uid: 7665
- components:
- - type: Transform
- pos: -6.5,23.5
- parent: 2
- - uid: 7666
- components:
- - type: Transform
- pos: -5.5,23.5
- parent: 2
- - uid: 7667
- components:
- - type: Transform
- pos: -4.5,23.5
- parent: 2
- - uid: 7668
- components:
- - type: Transform
- pos: -3.5,23.5
- parent: 2
- - uid: 7669
- components:
- - type: Transform
- pos: -2.5,23.5
- parent: 2
- - uid: 7670
- components:
- - type: Transform
- pos: -1.5,23.5
- parent: 2
- - uid: 7671
- components:
- - type: Transform
- pos: -0.5,23.5
- parent: 2
- - uid: 7672
- components:
- - type: Transform
- pos: 14.5,-1.5
- parent: 2
- - uid: 7673
- components:
- - type: Transform
- pos: 13.5,-1.5
- parent: 2
- - uid: 7674
- components:
- - type: Transform
- pos: 12.5,-1.5
- parent: 2
- - uid: 7675
- components:
- - type: Transform
- pos: 12.5,-2.5
- parent: 2
- - uid: 7676
- components:
- - type: Transform
- pos: 12.5,-3.5
- parent: 2
- - uid: 7677
- components:
- - type: Transform
- pos: 12.5,-4.5
- parent: 2
- - uid: 7678
- components:
- - type: Transform
- pos: 13.5,-4.5
- parent: 2
- - uid: 7679
- components:
- - type: Transform
- pos: 14.5,-4.5
- parent: 2
- - uid: 7680
- components:
- - type: Transform
- pos: 14.5,-3.5
- parent: 2
- - uid: 7681
- components:
- - type: Transform
- pos: 15.5,-3.5
- parent: 2
- - uid: 7682
- components:
- - type: Transform
- pos: 16.5,-3.5
- parent: 2
- - uid: 7683
- components:
- - type: Transform
- pos: 17.5,-3.5
- parent: 2
- - uid: 7684
- components:
- - type: Transform
- pos: -39.5,-6.5
- parent: 2
- - uid: 7685
- components:
- - type: Transform
- pos: -39.5,-5.5
- parent: 2
- - uid: 7686
- components:
- - type: Transform
- pos: -39.5,-4.5
- parent: 2
- - uid: 7687
- components:
- - type: Transform
- pos: -39.5,-3.5
- parent: 2
- - uid: 7688
- components:
- - type: Transform
- pos: -39.5,-2.5
- parent: 2
- - uid: 7689
- components:
- - type: Transform
- pos: -39.5,-1.5
- parent: 2
- - uid: 7690
- components:
- - type: Transform
- pos: -40.5,-1.5
- parent: 2
- - uid: 7691
- components:
- - type: Transform
- pos: -41.5,-1.5
- parent: 2
- - uid: 7692
- components:
- - type: Transform
- pos: -43.5,-13.5
- parent: 2
- - uid: 7693
- components:
- - type: Transform
- pos: -41.5,-4.5
- parent: 2
- - uid: 7694
- components:
- - type: Transform
- pos: -43.5,-12.5
- parent: 2
- - uid: 7695
- components:
- - type: Transform
- pos: -43.5,-11.5
- parent: 2
- - uid: 7696
- components:
- - type: Transform
- pos: -42.5,-11.5
- parent: 2
- - uid: 7697
- components:
- - type: Transform
- pos: -41.5,-11.5
- parent: 2
- - uid: 7698
- components:
- - type: Transform
- pos: -41.5,-10.5
- parent: 2
- - uid: 7699
- components:
- - type: Transform
- pos: -41.5,-5.5
- parent: 2
- - uid: 7700
- components:
- - type: Transform
- pos: -41.5,-7.5
- parent: 2
- - uid: 7701
- components:
- - type: Transform
- pos: -41.5,-8.5
- parent: 2
- - uid: 7702
- components:
- - type: Transform
- pos: -46.5,-0.5
- parent: 2
- - uid: 7703
- components:
- - type: Transform
- pos: -44.5,-1.5
- parent: 2
- - uid: 7704
- components:
- - type: Transform
- pos: -49.5,-2.5
- parent: 2
- - uid: 7705
- components:
- - type: Transform
- pos: -48.5,-2.5
- parent: 2
- - uid: 7706
- components:
- - type: Transform
- pos: -50.5,-2.5
- parent: 2
- - uid: 7707
- components:
- - type: Transform
- pos: -52.5,-2.5
- parent: 2
- - uid: 7708
- components:
- - type: Transform
- pos: -51.5,-2.5
- parent: 2
- - uid: 7709
- components:
- - type: Transform
- pos: -51.5,-2.5
- parent: 2
- - uid: 7710
- components:
- - type: Transform
- pos: -43.5,-14.5
- parent: 2
- - uid: 7711
- components:
- - type: Transform
- pos: -43.5,-15.5
- parent: 2
- - uid: 7712
- components:
- - type: Transform
- pos: -43.5,-16.5
- parent: 2
- - uid: 7713
- components:
- - type: Transform
- pos: -43.5,-17.5
- parent: 2
- - uid: 7714
- components:
- - type: Transform
- pos: -43.5,-18.5
- parent: 2
- - uid: 7715
- components:
- - type: Transform
- pos: -43.5,-19.5
- parent: 2
- - uid: 7716
- components:
- - type: Transform
- pos: -44.5,-19.5
- parent: 2
- - uid: 7717
- components:
- - type: Transform
- pos: -45.5,-19.5
- parent: 2
- - uid: 7718
- components:
- - type: Transform
- pos: -46.5,-19.5
- parent: 2
- - uid: 7719
- components:
- - type: Transform
- pos: -47.5,-19.5
- parent: 2
- - uid: 7720
- components:
- - type: Transform
- pos: -48.5,-19.5
- parent: 2
- - uid: 7721
- components:
- - type: Transform
- pos: -49.5,-19.5
- parent: 2
- - uid: 7722
- components:
- - type: Transform
- pos: -49.5,-20.5
- parent: 2
- - uid: 7723
- components:
- - type: Transform
- pos: -49.5,-21.5
- parent: 2
- - uid: 7724
- components:
- - type: Transform
- pos: -50.5,-21.5
- parent: 2
- - uid: 7725
- components:
- - type: Transform
- pos: -51.5,-21.5
- parent: 2
- - uid: 7726
- components:
- - type: Transform
- pos: -52.5,-21.5
- parent: 2
- - uid: 7727
- components:
- - type: Transform
- pos: -53.5,-21.5
- parent: 2
- - uid: 7728
- components:
- - type: Transform
- pos: -53.5,-20.5
- parent: 2
- - uid: 7729
- components:
- - type: Transform
- pos: -53.5,-19.5
- parent: 2
- - uid: 7730
- components:
- - type: Transform
- pos: -53.5,-18.5
- parent: 2
- - uid: 7731
- components:
- - type: Transform
- pos: -53.5,-17.5
- parent: 2
- - uid: 7732
- components:
- - type: Transform
- pos: -53.5,-16.5
- parent: 2
- - uid: 7733
- components:
- - type: Transform
- pos: -53.5,-15.5
- parent: 2
- - uid: 7734
- components:
- - type: Transform
- pos: -52.5,-15.5
- parent: 2
- - uid: 7735
- components:
- - type: Transform
- pos: -52.5,-14.5
- parent: 2
- - uid: 7736
- components:
- - type: Transform
- pos: -52.5,-13.5
- parent: 2
- - uid: 7737
- components:
- - type: Transform
- pos: -52.5,-12.5
- parent: 2
- - uid: 7738
- components:
- - type: Transform
- pos: -52.5,-11.5
- parent: 2
- - uid: 7739
- components:
- - type: Transform
- pos: -52.5,-10.5
- parent: 2
- - uid: 7740
- components:
- - type: Transform
- pos: -52.5,-9.5
- parent: 2
- - uid: 7741
- components:
- - type: Transform
- pos: -52.5,-8.5
- parent: 2
- - uid: 7742
- components:
- - type: Transform
- pos: -52.5,-7.5
- parent: 2
- - uid: 7743
- components:
- - type: Transform
- pos: -52.5,-6.5
- parent: 2
- - uid: 7744
- components:
- - type: Transform
- pos: -52.5,-5.5
- parent: 2
- - uid: 7745
- components:
- - type: Transform
- pos: -52.5,-4.5
- parent: 2
- - uid: 7746
- components:
- - type: Transform
- pos: -52.5,-3.5
- parent: 2
- - uid: 7747
- components:
- - type: Transform
- pos: -80.5,-3.5
- parent: 2
- - uid: 7748
- components:
- - type: Transform
- pos: -80.5,-2.5
- parent: 2
- - uid: 7749
- components:
- - type: Transform
- pos: -81.5,-2.5
- parent: 2
- - uid: 7750
- components:
- - type: Transform
- pos: -82.5,-2.5
- parent: 2
- - uid: 7751
- components:
- - type: Transform
- pos: -82.5,-1.5
- parent: 2
- - uid: 7752
- components:
- - type: Transform
- pos: -97.5,-2.5
- parent: 2
- - uid: 7753
- components:
- - type: Transform
- pos: -96.5,-2.5
- parent: 2
- - uid: 7754
- components:
- - type: Transform
- pos: -95.5,-2.5
- parent: 2
- - uid: 7755
- components:
- - type: Transform
- pos: -94.5,-2.5
- parent: 2
- - uid: 7756
- components:
- - type: Transform
- pos: -93.5,-2.5
- parent: 2
- - uid: 7757
- components:
- - type: Transform
- pos: -92.5,-2.5
- parent: 2
- - uid: 7758
- components:
- - type: Transform
- pos: -91.5,-2.5
- parent: 2
- - uid: 7759
- components:
- - type: Transform
- pos: -90.5,-2.5
- parent: 2
- - uid: 7760
- components:
- - type: Transform
- pos: -89.5,-2.5
- parent: 2
- - uid: 7761
- components:
- - type: Transform
- pos: -88.5,-2.5
- parent: 2
- - uid: 7762
- components:
- - type: Transform
- pos: -87.5,-2.5
- parent: 2
- - uid: 7763
- components:
- - type: Transform
- pos: -87.5,-3.5
- parent: 2
- - uid: 7764
- components:
- - type: Transform
- pos: -87.5,-4.5
- parent: 2
- - uid: 7765
- components:
- - type: Transform
- pos: -87.5,-5.5
- parent: 2
- - uid: 7766
- components:
- - type: Transform
- pos: -87.5,-6.5
- parent: 2
- - uid: 7767
- components:
- - type: Transform
- pos: -87.5,-7.5
- parent: 2
- - uid: 7768
- components:
- - type: Transform
- pos: -87.5,-8.5
- parent: 2
- - uid: 7769
- components:
- - type: Transform
- pos: -87.5,-9.5
- parent: 2
- - uid: 7770
- components:
- - type: Transform
- pos: -87.5,-10.5
- parent: 2
- - uid: 7771
- components:
- - type: Transform
- pos: -87.5,-11.5
- parent: 2
- - uid: 7772
- components:
- - type: Transform
- pos: -87.5,-12.5
- parent: 2
- - uid: 7773
- components:
- - type: Transform
- pos: -88.5,-12.5
- parent: 2
- - uid: 7774
- components:
- - type: Transform
- pos: -89.5,-12.5
- parent: 2
- - uid: 7775
- components:
- - type: Transform
- pos: -90.5,-12.5
- parent: 2
- - uid: 7776
- components:
- - type: Transform
- pos: -91.5,-12.5
- parent: 2
- - uid: 7777
- components:
- - type: Transform
- pos: -92.5,-12.5
- parent: 2
- - uid: 7778
- components:
- - type: Transform
- pos: -93.5,-12.5
- parent: 2
- - uid: 7779
- components:
- - type: Transform
- pos: -94.5,-12.5
- parent: 2
- - uid: 7780
- components:
- - type: Transform
- pos: -95.5,-12.5
- parent: 2
- - uid: 7781
- components:
- - type: Transform
- pos: -96.5,-12.5
- parent: 2
- - uid: 7782
- components:
- - type: Transform
- pos: -97.5,-12.5
- parent: 2
- - uid: 7783
- components:
- - type: Transform
- pos: -97.5,-11.5
- parent: 2
- - uid: 7784
- components:
- - type: Transform
- pos: -97.5,-10.5
- parent: 2
- - uid: 7785
- components:
- - type: Transform
- pos: -97.5,-9.5
- parent: 2
- - uid: 7786
- components:
- - type: Transform
- pos: -97.5,-8.5
- parent: 2
- - uid: 7787
- components:
- - type: Transform
- pos: -97.5,-7.5
- parent: 2
- - uid: 7788
- components:
- - type: Transform
- pos: -97.5,-6.5
- parent: 2
- - uid: 7789
- components:
- - type: Transform
- pos: -97.5,-5.5
- parent: 2
- - uid: 7790
- components:
- - type: Transform
- pos: -97.5,-4.5
- parent: 2
- - uid: 7791
- components:
- - type: Transform
- pos: -97.5,-3.5
- parent: 2
- - uid: 7792
- components:
- - type: Transform
- pos: -86.5,-1.5
- parent: 2
- - uid: 7793
- components:
- - type: Transform
- pos: -87.5,-1.5
- parent: 2
- - uid: 7794
- components:
- - type: Transform
- pos: -85.5,-1.5
- parent: 2
- - uid: 7795
- components:
- - type: Transform
- pos: -84.5,-1.5
- parent: 2
- - uid: 7796
- components:
- - type: Transform
- pos: -83.5,-1.5
- parent: 2
- - uid: 7797
- components:
- - type: Transform
- pos: -78.5,-6.5
- parent: 2
- - uid: 7798
- components:
- - type: Transform
- pos: -79.5,-3.5
- parent: 2
- - uid: 7799
- components:
- - type: Transform
- pos: -79.5,-4.5
- parent: 2
- - uid: 7800
- components:
- - type: Transform
- pos: -79.5,-5.5
- parent: 2
- - uid: 7801
- components:
- - type: Transform
- pos: -79.5,-6.5
- parent: 2
- - uid: 7802
- components:
- - type: Transform
- pos: -77.5,-6.5
- parent: 2
- - uid: 7803
- components:
- - type: Transform
- pos: -76.5,-6.5
- parent: 2
- - uid: 7804
- components:
- - type: Transform
- pos: -75.5,-6.5
- parent: 2
- - uid: 7805
- components:
- - type: Transform
- pos: -74.5,-6.5
- parent: 2
- - uid: 7806
- components:
- - type: Transform
- pos: -73.5,-6.5
- parent: 2
- - uid: 7807
- components:
- - type: Transform
- pos: -72.5,-6.5
- parent: 2
- - uid: 7808
- components:
- - type: Transform
- pos: -71.5,-6.5
- parent: 2
- - uid: 7809
- components:
- - type: Transform
- pos: -70.5,-6.5
- parent: 2
- - uid: 7810
- components:
- - type: Transform
- pos: -69.5,-6.5
- parent: 2
- - uid: 7811
- components:
- - type: Transform
- pos: -68.5,-6.5
- parent: 2
- - uid: 7812
- components:
- - type: Transform
- pos: -67.5,-6.5
- parent: 2
- - uid: 7813
- components:
- - type: Transform
- pos: -66.5,-6.5
- parent: 2
- - uid: 7814
- components:
- - type: Transform
- pos: -65.5,-6.5
- parent: 2
- - uid: 7815
- components:
- - type: Transform
- pos: -64.5,-6.5
- parent: 2
- - uid: 7816
- components:
- - type: Transform
- pos: -63.5,-6.5
- parent: 2
- - uid: 7817
- components:
- - type: Transform
- pos: -62.5,-6.5
- parent: 2
- - uid: 7818
- components:
- - type: Transform
- pos: -61.5,-6.5
- parent: 2
- - uid: 7819
- components:
- - type: Transform
- pos: -18.5,19.5
- parent: 2
- - uid: 7820
- components:
- - type: Transform
- pos: -55.5,-6.5
- parent: 2
- - uid: 7821
- components:
- - type: Transform
- pos: -54.5,-6.5
- parent: 2
- - uid: 7822
- components:
- - type: Transform
- pos: -53.5,-6.5
- parent: 2
- - uid: 7823
- components:
- - type: Transform
- pos: -46.5,1.5
- parent: 2
- - uid: 7824
- components:
- - type: Transform
- pos: -47.5,1.5
- parent: 2
- - uid: 7825
- components:
- - type: Transform
- pos: -48.5,1.5
- parent: 2
- - uid: 7826
- components:
- - type: Transform
- pos: -49.5,1.5
- parent: 2
- - uid: 7827
- components:
- - type: Transform
- pos: -50.5,1.5
- parent: 2
- - uid: 7828
- components:
- - type: Transform
- pos: -51.5,1.5
- parent: 2
- - uid: 7829
- components:
- - type: Transform
- pos: -52.5,1.5
- parent: 2
- - uid: 7830
- components:
- - type: Transform
- pos: -53.5,1.5
- parent: 2
- - uid: 7831
- components:
- - type: Transform
- pos: -54.5,1.5
- parent: 2
- - uid: 7832
- components:
- - type: Transform
- pos: -55.5,1.5
- parent: 2
- - uid: 7833
- components:
- - type: Transform
- pos: -56.5,1.5
- parent: 2
- - uid: 7834
- components:
- - type: Transform
- pos: -57.5,1.5
- parent: 2
- - uid: 7835
- components:
- - type: Transform
- pos: -58.5,1.5
- parent: 2
- - uid: 7836
- components:
- - type: Transform
- pos: -59.5,1.5
- parent: 2
- - uid: 7837
- components:
- - type: Transform
- pos: -60.5,1.5
- parent: 2
- - uid: 7838
- components:
- - type: Transform
- pos: -61.5,1.5
- parent: 2
- - uid: 7839
- components:
- - type: Transform
- pos: -62.5,1.5
- parent: 2
- - uid: 7840
- components:
- - type: Transform
- pos: -63.5,1.5
- parent: 2
- - uid: 7841
- components:
- - type: Transform
- pos: -64.5,1.5
- parent: 2
- - uid: 7842
- components:
- - type: Transform
- pos: -65.5,1.5
- parent: 2
- - uid: 7843
- components:
- - type: Transform
- pos: -69.5,0.5
- parent: 2
- - uid: 7844
- components:
- - type: Transform
- pos: -69.5,-0.5
- parent: 2
- - uid: 7845
- components:
- - type: Transform
- pos: -69.5,-1.5
- parent: 2
- - uid: 7846
- components:
- - type: Transform
- pos: -71.5,0.5
- parent: 2
- - uid: 7847
- components:
- - type: Transform
- pos: -71.5,-0.5
- parent: 2
- - uid: 7848
- components:
- - type: Transform
- pos: -71.5,-1.5
- parent: 2
- - uid: 7849
- components:
- - type: Transform
- pos: -70.5,-0.5
- parent: 2
- - uid: 7850
- components:
- - type: Transform
- pos: -68.5,-0.5
- parent: 2
- - uid: 7851
- components:
- - type: Transform
- pos: -67.5,0.5
- parent: 2
- - uid: 7852
- components:
- - type: Transform
- pos: -67.5,-0.5
- parent: 2
- - uid: 7853
- components:
- - type: Transform
- pos: -67.5,-1.5
- parent: 2
- - uid: 7854
- components:
- - type: Transform
- pos: -67.5,1.5
- parent: 2
- - uid: 7855
- components:
- - type: Transform
- pos: -66.5,1.5
- parent: 2
- - uid: 7856
- components:
- - type: Transform
- pos: -50.5,52.5
- parent: 2
- - uid: 7857
- components:
- - type: Transform
- pos: -50.5,51.5
- parent: 2
- - uid: 7858
- components:
- - type: Transform
- pos: -50.5,50.5
- parent: 2
- - uid: 7859
- components:
- - type: Transform
- pos: -50.5,49.5
- parent: 2
- - uid: 7860
- components:
- - type: Transform
- pos: -51.5,51.5
- parent: 2
- - uid: 7861
- components:
- - type: Transform
- pos: -49.5,51.5
- parent: 2
- - uid: 7862
- components:
- - type: Transform
- pos: -65.5,66.5
- parent: 2
- - uid: 7863
- components:
- - type: Transform
- pos: -18.5,18.5
- parent: 2
- - uid: 7864
- components:
- - type: Transform
- pos: -18.5,17.5
- parent: 2
- - uid: 7865
- components:
- - type: Transform
- pos: -18.5,16.5
- parent: 2
- - uid: 7866
- components:
- - type: Transform
- pos: -18.5,15.5
- parent: 2
- - uid: 7867
- components:
- - type: Transform
- pos: -18.5,14.5
- parent: 2
- - uid: 7868
- components:
- - type: Transform
- pos: -18.5,13.5
- parent: 2
- - uid: 7869
- components:
- - type: Transform
- pos: -18.5,12.5
- parent: 2
- - uid: 7870
- components:
- - type: Transform
- pos: -18.5,11.5
- parent: 2
- - uid: 7871
- components:
- - type: Transform
- pos: -18.5,10.5
- parent: 2
- - uid: 7872
- components:
- - type: Transform
- pos: -18.5,9.5
- parent: 2
- - uid: 7873
- components:
- - type: Transform
- pos: -18.5,8.5
- parent: 2
- - uid: 7874
- components:
- - type: Transform
- pos: -18.5,7.5
- parent: 2
- - uid: 7875
- components:
- - type: Transform
- pos: -18.5,6.5
- parent: 2
- - uid: 7876
- components:
- - type: Transform
- pos: -18.5,5.5
- parent: 2
- - uid: 7877
- components:
- - type: Transform
- pos: -19.5,5.5
- parent: 2
- - uid: 7878
- components:
- - type: Transform
- pos: -20.5,5.5
- parent: 2
- - uid: 7879
- components:
- - type: Transform
- pos: -21.5,5.5
- parent: 2
- - uid: 7880
- components:
- - type: Transform
- pos: -22.5,5.5
- parent: 2
- - uid: 7881
- components:
- - type: Transform
- pos: -23.5,5.5
- parent: 2
- - uid: 7882
- components:
- - type: Transform
- pos: -24.5,5.5
- parent: 2
- - uid: 7883
- components:
- - type: Transform
- pos: -25.5,5.5
- parent: 2
- - uid: 7884
- components:
- - type: Transform
- pos: -26.5,5.5
- parent: 2
- - uid: 7885
- components:
- - type: Transform
- pos: -27.5,5.5
- parent: 2
- - uid: 7886
- components:
- - type: Transform
- pos: -28.5,5.5
- parent: 2
- - uid: 7887
- components:
- - type: Transform
- pos: -29.5,5.5
- parent: 2
- - uid: 7888
- components:
- - type: Transform
- pos: -30.5,5.5
- parent: 2
- - uid: 7889
- components:
- - type: Transform
- pos: -31.5,5.5
- parent: 2
- - uid: 7890
- components:
- - type: Transform
- pos: -32.5,5.5
- parent: 2
- - uid: 7891
- components:
- - type: Transform
- pos: -33.5,5.5
- parent: 2
- - uid: 7892
- components:
- - type: Transform
- pos: -34.5,5.5
- parent: 2
- - uid: 7893
- components:
- - type: Transform
- pos: -35.5,5.5
- parent: 2
- - uid: 7894
- components:
- - type: Transform
- pos: -36.5,5.5
- parent: 2
- - uid: 7895
- components:
- - type: Transform
- pos: -37.5,5.5
- parent: 2
- - uid: 7896
- components:
- - type: Transform
- pos: -38.5,5.5
- parent: 2
- - uid: 7897
- components:
- - type: Transform
- pos: -39.5,5.5
- parent: 2
- - uid: 7898
- components:
- - type: Transform
- pos: -40.5,5.5
- parent: 2
- - uid: 7899
- components:
- - type: Transform
- pos: -41.5,5.5
- parent: 2
- - uid: 7900
- components:
- - type: Transform
- pos: -41.5,-0.5
- parent: 2
- - uid: 7901
- components:
- - type: Transform
- pos: -41.5,0.5
- parent: 2
- - uid: 7902
- components:
- - type: Transform
- pos: -41.5,1.5
- parent: 2
- - uid: 7903
- components:
- - type: Transform
- pos: -41.5,2.5
- parent: 2
- - uid: 7904
- components:
- - type: Transform
- pos: -41.5,3.5
- parent: 2
- - uid: 7905
- components:
- - type: Transform
- pos: -41.5,4.5
- parent: 2
- - uid: 7906
- components:
- - type: Transform
- pos: -48.5,6.5
- parent: 2
- - uid: 7907
- components:
- - type: Transform
- pos: -47.5,6.5
- parent: 2
- - uid: 7908
- components:
- - type: Transform
- pos: -46.5,6.5
- parent: 2
- - uid: 7909
- components:
- - type: Transform
- pos: -45.5,6.5
- parent: 2
- - uid: 7910
- components:
- - type: Transform
- pos: -44.5,6.5
- parent: 2
- - uid: 7911
- components:
- - type: Transform
- pos: -47.5,7.5
- parent: 2
- - uid: 7912
- components:
- - type: Transform
- pos: -47.5,8.5
- parent: 2
- - uid: 7913
- components:
- - type: Transform
- pos: -47.5,9.5
- parent: 2
- - uid: 7914
- components:
- - type: Transform
- pos: -46.5,9.5
- parent: 2
- - uid: 7915
- components:
- - type: Transform
- pos: -45.5,9.5
- parent: 2
- - uid: 7916
- components:
- - type: Transform
- pos: -44.5,9.5
- parent: 2
- - uid: 7917
- components:
- - type: Transform
- pos: -43.5,9.5
- parent: 2
- - uid: 7918
- components:
- - type: Transform
- pos: -42.5,9.5
- parent: 2
- - uid: 7919
- components:
- - type: Transform
- pos: -41.5,9.5
- parent: 2
- - uid: 7920
- components:
- - type: Transform
- pos: -41.5,7.5
- parent: 2
- - uid: 7921
- components:
- - type: Transform
- pos: -41.5,5.5
- parent: 2
- - uid: 7922
- components:
- - type: Transform
- pos: -41.5,6.5
- parent: 2
- - uid: 7923
- components:
- - type: Transform
- pos: -41.5,8.5
- parent: 2
- - uid: 7924
- components:
- - type: Transform
- pos: -49.5,9.5
- parent: 2
- - uid: 7925
- components:
- - type: Transform
- pos: -50.5,9.5
- parent: 2
- - uid: 7926
- components:
- - type: Transform
- pos: -51.5,9.5
- parent: 2
- - uid: 7927
- components:
- - type: Transform
- pos: -48.5,9.5
- parent: 2
- - uid: 7928
- components:
- - type: Transform
- pos: -72.5,12.5
- parent: 2
- - uid: 7929
- components:
- - type: Transform
- pos: -71.5,12.5
- parent: 2
- - uid: 7930
- components:
- - type: Transform
- pos: -71.5,13.5
- parent: 2
- - uid: 7931
- components:
- - type: Transform
- pos: -71.5,14.5
- parent: 2
- - uid: 7932
- components:
- - type: Transform
- pos: -71.5,15.5
- parent: 2
- - uid: 7933
- components:
- - type: Transform
- pos: -73.5,12.5
- parent: 2
- - uid: 7934
- components:
- - type: Transform
- pos: -73.5,11.5
- parent: 2
- - uid: 7935
- components:
- - type: Transform
- pos: -73.5,10.5
- parent: 2
- - uid: 7936
- components:
- - type: Transform
- pos: -71.5,15.5
- parent: 2
- - uid: 7937
- components:
- - type: Transform
- pos: -70.5,15.5
- parent: 2
- - uid: 7938
- components:
- - type: Transform
- pos: -69.5,15.5
- parent: 2
- - uid: 7939
- components:
- - type: Transform
- pos: -68.5,15.5
- parent: 2
- - uid: 7940
- components:
- - type: Transform
- pos: -67.5,15.5
- parent: 2
- - uid: 7941
- components:
- - type: Transform
- pos: -66.5,15.5
- parent: 2
- - uid: 7942
- components:
- - type: Transform
- pos: -65.5,15.5
- parent: 2
- - uid: 7943
- components:
- - type: Transform
- pos: -64.5,15.5
- parent: 2
- - uid: 7944
- components:
- - type: Transform
- pos: -63.5,15.5
- parent: 2
- - uid: 7945
- components:
- - type: Transform
- pos: -62.5,15.5
- parent: 2
- - uid: 7946
- components:
- - type: Transform
- pos: -62.5,14.5
- parent: 2
- - uid: 7947
- components:
- - type: Transform
- pos: -61.5,14.5
- parent: 2
- - uid: 7948
- components:
- - type: Transform
- pos: -60.5,14.5
- parent: 2
- - uid: 7949
- components:
- - type: Transform
- pos: -59.5,14.5
- parent: 2
- - uid: 7950
- components:
- - type: Transform
- pos: -58.5,14.5
- parent: 2
- - uid: 7951
- components:
- - type: Transform
- pos: -57.5,14.5
- parent: 2
- - uid: 7952
- components:
- - type: Transform
- pos: -56.5,14.5
- parent: 2
- - uid: 7953
- components:
- - type: Transform
- pos: -55.5,14.5
- parent: 2
- - uid: 7954
- components:
- - type: Transform
- pos: -54.5,14.5
- parent: 2
- - uid: 7955
- components:
- - type: Transform
- pos: -53.5,14.5
- parent: 2
- - uid: 7956
- components:
- - type: Transform
- pos: -52.5,14.5
- parent: 2
- - uid: 7957
- components:
- - type: Transform
- pos: -52.5,13.5
- parent: 2
- - uid: 7958
- components:
- - type: Transform
- pos: -52.5,12.5
- parent: 2
- - uid: 7959
- components:
- - type: Transform
- pos: -52.5,11.5
- parent: 2
- - uid: 7960
- components:
- - type: Transform
- pos: -52.5,10.5
- parent: 2
- - uid: 7961
- components:
- - type: Transform
- pos: -52.5,9.5
- parent: 2
- - uid: 7962
- components:
- - type: Transform
- pos: -53.5,15.5
- parent: 2
- - uid: 7963
- components:
- - type: Transform
- pos: -53.5,16.5
- parent: 2
- - uid: 7964
- components:
- - type: Transform
- pos: -53.5,17.5
- parent: 2
- - uid: 7965
- components:
- - type: Transform
- pos: -53.5,18.5
- parent: 2
- - uid: 7966
- components:
- - type: Transform
- pos: -53.5,19.5
- parent: 2
- - uid: 7967
- components:
- - type: Transform
- pos: -53.5,20.5
- parent: 2
- - uid: 7968
- components:
- - type: Transform
- pos: -53.5,21.5
- parent: 2
- - uid: 7969
- components:
- - type: Transform
- pos: -53.5,22.5
- parent: 2
- - uid: 7970
- components:
- - type: Transform
- pos: -53.5,23.5
- parent: 2
- - uid: 7971
- components:
- - type: Transform
- pos: -53.5,24.5
- parent: 2
- - uid: 7972
- components:
- - type: Transform
- pos: -54.5,24.5
- parent: 2
- - uid: 7973
- components:
- - type: Transform
- pos: -55.5,24.5
- parent: 2
- - uid: 7974
- components:
- - type: Transform
- pos: -56.5,24.5
- parent: 2
- - uid: 7975
- components:
- - type: Transform
- pos: -58.5,44.5
- parent: 2
- - uid: 7976
- components:
- - type: Transform
- pos: -44.5,44.5
- parent: 2
- - uid: 7977
- components:
- - type: Transform
- pos: -47.5,45.5
- parent: 2
- - uid: 7978
- components:
- - type: Transform
- pos: -48.5,45.5
- parent: 2
- - uid: 7979
- components:
- - type: Transform
- pos: -49.5,45.5
- parent: 2
- - uid: 7980
- components:
- - type: Transform
- pos: -50.5,45.5
- parent: 2
- - uid: 7981
- components:
- - type: Transform
- pos: -51.5,45.5
- parent: 2
- - uid: 7982
- components:
- - type: Transform
- pos: -52.5,45.5
- parent: 2
- - uid: 7983
- components:
- - type: Transform
- pos: -53.5,45.5
- parent: 2
- - uid: 7984
- components:
- - type: Transform
- pos: -54.5,45.5
- parent: 2
- - uid: 7985
- components:
- - type: Transform
- pos: -55.5,45.5
- parent: 2
- - uid: 7986
- components:
- - type: Transform
- pos: -56.5,45.5
- parent: 2
- - uid: 7987
- components:
- - type: Transform
- pos: -57.5,45.5
- parent: 2
- - uid: 7988
- components:
- - type: Transform
- pos: -57.5,46.5
- parent: 2
- - uid: 7989
- components:
- - type: Transform
- pos: -57.5,47.5
- parent: 2
- - uid: 7990
- components:
- - type: Transform
- pos: -57.5,48.5
- parent: 2
- - uid: 7991
- components:
- - type: Transform
- pos: -57.5,49.5
- parent: 2
- - uid: 7992
- components:
- - type: Transform
- pos: -57.5,50.5
- parent: 2
- - uid: 7993
- components:
- - type: Transform
- pos: -57.5,51.5
- parent: 2
- - uid: 7994
- components:
- - type: Transform
- pos: -57.5,52.5
- parent: 2
- - uid: 7995
- components:
- - type: Transform
- pos: -57.5,53.5
- parent: 2
- - uid: 7996
- components:
- - type: Transform
- pos: -58.5,53.5
- parent: 2
- - uid: 7997
- components:
- - type: Transform
- pos: -58.5,54.5
- parent: 2
- - uid: 7998
- components:
- - type: Transform
- pos: -58.5,55.5
- parent: 2
- - uid: 7999
- components:
- - type: Transform
- pos: -58.5,56.5
- parent: 2
- - uid: 8000
- components:
- - type: Transform
- pos: -58.5,57.5
- parent: 2
- - uid: 8001
- components:
- - type: Transform
- pos: -58.5,58.5
- parent: 2
- - uid: 8002
- components:
- - type: Transform
- pos: -58.5,61.5
- parent: 2
- - uid: 8003
- components:
- - type: Transform
- pos: -58.5,62.5
- parent: 2
- - uid: 8004
- components:
- - type: Transform
- pos: -58.5,63.5
- parent: 2
- - uid: 8005
- components:
- - type: Transform
- pos: -59.5,63.5
- parent: 2
- - uid: 8006
- components:
- - type: Transform
- pos: -57.5,63.5
- parent: 2
- - uid: 8007
- components:
- - type: Transform
- pos: -60.5,63.5
- parent: 2
- - uid: 8008
- components:
- - type: Transform
- pos: -57.5,61.5
- parent: 2
- - uid: 8009
- components:
- - type: Transform
- pos: -57.5,60.5
- parent: 2
- - uid: 8010
- components:
- - type: Transform
- pos: -57.5,59.5
- parent: 2
- - uid: 8011
- components:
- - type: Transform
- pos: -58.5,59.5
- parent: 2
- - uid: 8012
- components:
- - type: Transform
- pos: -59.5,59.5
- parent: 2
- - uid: 8013
- components:
- - type: Transform
- pos: -59.5,60.5
- parent: 2
- - uid: 8014
- components:
- - type: Transform
- pos: -75.5,67.5
- parent: 2
- - uid: 8015
- components:
- - type: Transform
- pos: -58.5,64.5
- parent: 2
- - uid: 8016
- components:
- - type: Transform
- pos: -58.5,65.5
- parent: 2
- - uid: 8017
- components:
- - type: Transform
- pos: -58.5,66.5
- parent: 2
- - uid: 8018
- components:
- - type: Transform
- pos: -59.5,66.5
- parent: 2
- - uid: 8019
- components:
- - type: Transform
- pos: -60.5,66.5
- parent: 2
- - uid: 8020
- components:
- - type: Transform
- pos: -61.5,66.5
- parent: 2
- - uid: 8021
- components:
- - type: Transform
- pos: -62.5,66.5
- parent: 2
- - uid: 8022
- components:
- - type: Transform
- pos: -63.5,66.5
- parent: 2
- - uid: 8023
- components:
- - type: Transform
- pos: -66.5,66.5
- parent: 2
- - uid: 8024
- components:
- - type: Transform
- pos: -67.5,66.5
- parent: 2
- - uid: 8025
- components:
- - type: Transform
- pos: -68.5,66.5
- parent: 2
- - uid: 8026
- components:
- - type: Transform
- pos: -69.5,66.5
- parent: 2
- - uid: 8027
- components:
- - type: Transform
- pos: -70.5,66.5
- parent: 2
- - uid: 8028
- components:
- - type: Transform
- pos: -71.5,66.5
- parent: 2
- - uid: 8029
- components:
- - type: Transform
- pos: -72.5,66.5
- parent: 2
- - uid: 8030
- components:
- - type: Transform
- pos: -73.5,66.5
- parent: 2
- - uid: 8031
- components:
- - type: Transform
- pos: -74.5,66.5
- parent: 2
- - uid: 8032
- components:
- - type: Transform
- pos: -75.5,66.5
- parent: 2
- - uid: 8033
- components:
- - type: Transform
- pos: -75.5,68.5
- parent: 2
- - uid: 8034
- components:
- - type: Transform
- pos: -75.5,69.5
- parent: 2
- - uid: 8035
- components:
- - type: Transform
- pos: -75.5,70.5
- parent: 2
- - uid: 8036
- components:
- - type: Transform
- pos: -75.5,71.5
- parent: 2
- - uid: 8037
- components:
- - type: Transform
- pos: -75.5,72.5
- parent: 2
- - uid: 8038
- components:
- - type: Transform
- pos: -75.5,73.5
- parent: 2
- - uid: 8039
- components:
- - type: Transform
- pos: -75.5,74.5
- parent: 2
- - uid: 8040
- components:
- - type: Transform
- pos: -75.5,75.5
- parent: 2
- - uid: 8041
- components:
- - type: Transform
- pos: -75.5,76.5
- parent: 2
- - uid: 8042
- components:
- - type: Transform
- pos: -75.5,77.5
- parent: 2
- - uid: 8043
- components:
- - type: Transform
- pos: -75.5,78.5
- parent: 2
- - uid: 8044
- components:
- - type: Transform
- pos: -75.5,79.5
- parent: 2
- - uid: 8045
- components:
- - type: Transform
- pos: -75.5,80.5
- parent: 2
- - uid: 8046
- components:
- - type: Transform
- pos: -75.5,81.5
- parent: 2
- - uid: 8047
- components:
- - type: Transform
- pos: -75.5,82.5
- parent: 2
- - uid: 8048
- components:
- - type: Transform
- pos: -75.5,83.5
- parent: 2
- - uid: 8049
- components:
- - type: Transform
- pos: -75.5,84.5
- parent: 2
- - uid: 8050
- components:
- - type: Transform
- pos: -76.5,81.5
- parent: 2
- - uid: 8051
- components:
- - type: Transform
- pos: -77.5,81.5
- parent: 2
- - uid: 8052
- components:
- - type: Transform
- pos: -78.5,81.5
- parent: 2
- - uid: 8053
- components:
- - type: Transform
- pos: -79.5,81.5
- parent: 2
- - uid: 8054
- components:
- - type: Transform
- pos: -80.5,81.5
- parent: 2
- - uid: 8055
- components:
- - type: Transform
- pos: -81.5,81.5
- parent: 2
- - uid: 8056
- components:
- - type: Transform
- pos: -81.5,82.5
- parent: 2
- - uid: 8057
- components:
- - type: Transform
- pos: -81.5,81.5
- parent: 2
- - uid: 8058
- components:
- - type: Transform
- pos: -81.5,80.5
- parent: 2
- - uid: 8059
- components:
- - type: Transform
- pos: -80.5,82.5
- parent: 2
- - uid: 8060
- components:
- - type: Transform
- pos: -80.5,81.5
- parent: 2
- - uid: 8061
- components:
- - type: Transform
- pos: -80.5,80.5
- parent: 2
- - uid: 8062
- components:
- - type: Transform
- pos: -79.5,82.5
- parent: 2
- - uid: 8063
- components:
- - type: Transform
- pos: -79.5,81.5
- parent: 2
- - uid: 8064
- components:
- - type: Transform
- pos: -79.5,80.5
- parent: 2
- - uid: 8065
- components:
- - type: Transform
- pos: -78.5,82.5
- parent: 2
- - uid: 8066
- components:
- - type: Transform
- pos: -78.5,81.5
- parent: 2
- - uid: 8067
- components:
- - type: Transform
- pos: -78.5,80.5
- parent: 2
- - uid: 8068
- components:
- - type: Transform
- pos: -77.5,82.5
- parent: 2
- - uid: 8069
- components:
- - type: Transform
- pos: -77.5,81.5
- parent: 2
- - uid: 8070
- components:
- - type: Transform
- pos: -77.5,80.5
- parent: 2
- - uid: 8071
- components:
- - type: Transform
- pos: -73.5,82.5
- parent: 2
- - uid: 8072
- components:
- - type: Transform
- pos: -73.5,81.5
- parent: 2
- - uid: 8073
- components:
- - type: Transform
- pos: -73.5,80.5
- parent: 2
- - uid: 8074
- components:
- - type: Transform
- pos: -72.5,82.5
- parent: 2
- - uid: 8075
- components:
- - type: Transform
- pos: -72.5,81.5
- parent: 2
- - uid: 8076
- components:
- - type: Transform
- pos: -72.5,80.5
- parent: 2
- - uid: 8077
- components:
- - type: Transform
- pos: -71.5,82.5
- parent: 2
- - uid: 8078
- components:
- - type: Transform
- pos: -71.5,81.5
- parent: 2
- - uid: 8079
- components:
- - type: Transform
- pos: -71.5,80.5
- parent: 2
- - uid: 8080
- components:
- - type: Transform
- pos: -70.5,82.5
- parent: 2
- - uid: 8081
- components:
- - type: Transform
- pos: -70.5,81.5
- parent: 2
- - uid: 8082
- components:
- - type: Transform
- pos: -70.5,80.5
- parent: 2
- - uid: 8083
- components:
- - type: Transform
- pos: -69.5,82.5
- parent: 2
- - uid: 8084
- components:
- - type: Transform
- pos: -69.5,81.5
- parent: 2
- - uid: 8085
- components:
- - type: Transform
- pos: -69.5,80.5
- parent: 2
- - uid: 8086
- components:
- - type: Transform
- pos: -69.5,78.5
- parent: 2
- - uid: 8087
- components:
- - type: Transform
- pos: -69.5,77.5
- parent: 2
- - uid: 8088
- components:
- - type: Transform
- pos: -69.5,76.5
- parent: 2
- - uid: 8089
- components:
- - type: Transform
- pos: -70.5,78.5
- parent: 2
- - uid: 8090
- components:
- - type: Transform
- pos: -70.5,77.5
- parent: 2
- - uid: 8091
- components:
- - type: Transform
- pos: -70.5,76.5
- parent: 2
- - uid: 8092
- components:
- - type: Transform
- pos: -71.5,78.5
- parent: 2
- - uid: 8093
- components:
- - type: Transform
- pos: -71.5,77.5
- parent: 2
- - uid: 8094
- components:
- - type: Transform
- pos: -71.5,76.5
- parent: 2
- - uid: 8095
- components:
- - type: Transform
- pos: -72.5,78.5
- parent: 2
- - uid: 8096
- components:
- - type: Transform
- pos: -72.5,77.5
- parent: 2
- - uid: 8097
- components:
- - type: Transform
- pos: -72.5,76.5
- parent: 2
- - uid: 8098
- components:
- - type: Transform
- pos: -73.5,78.5
- parent: 2
- - uid: 8099
- components:
- - type: Transform
- pos: -73.5,77.5
- parent: 2
- - uid: 8100
- components:
- - type: Transform
- pos: -73.5,76.5
- parent: 2
- - uid: 8101
- components:
- - type: Transform
- pos: -74.5,77.5
- parent: 2
- - uid: 8102
- components:
- - type: Transform
- pos: -74.5,81.5
- parent: 2
- - uid: 8103
- components:
- - type: Transform
- pos: -81.5,78.5
- parent: 2
- - uid: 8104
- components:
- - type: Transform
- pos: -81.5,77.5
- parent: 2
- - uid: 8105
- components:
- - type: Transform
- pos: -81.5,76.5
- parent: 2
- - uid: 8106
- components:
- - type: Transform
- pos: -80.5,78.5
- parent: 2
- - uid: 8107
- components:
- - type: Transform
- pos: -80.5,77.5
- parent: 2
- - uid: 8108
- components:
- - type: Transform
- pos: -80.5,76.5
- parent: 2
- - uid: 8109
- components:
- - type: Transform
- pos: -79.5,78.5
- parent: 2
- - uid: 8110
- components:
- - type: Transform
- pos: -79.5,77.5
- parent: 2
- - uid: 8111
- components:
- - type: Transform
- pos: -79.5,76.5
- parent: 2
- - uid: 8112
- components:
- - type: Transform
- pos: -78.5,78.5
- parent: 2
- - uid: 8113
- components:
- - type: Transform
- pos: -78.5,77.5
- parent: 2
- - uid: 8114
- components:
- - type: Transform
- pos: -78.5,76.5
- parent: 2
- - uid: 8115
- components:
- - type: Transform
- pos: -77.5,78.5
- parent: 2
- - uid: 8116
- components:
- - type: Transform
- pos: -77.5,77.5
- parent: 2
- - uid: 8117
- components:
- - type: Transform
- pos: -77.5,76.5
- parent: 2
- - uid: 8118
- components:
- - type: Transform
- pos: -76.5,77.5
- parent: 2
- - uid: 8119
- components:
- - type: Transform
- pos: -82.5,74.5
- parent: 2
- - uid: 8120
- components:
- - type: Transform
- pos: -82.5,73.5
- parent: 2
- - uid: 8121
- components:
- - type: Transform
- pos: -82.5,72.5
- parent: 2
- - uid: 8122
- components:
- - type: Transform
- pos: -81.5,74.5
- parent: 2
- - uid: 8123
- components:
- - type: Transform
- pos: -81.5,73.5
- parent: 2
- - uid: 8124
- components:
- - type: Transform
- pos: -81.5,72.5
- parent: 2
- - uid: 8125
- components:
- - type: Transform
- pos: -80.5,74.5
- parent: 2
- - uid: 8126
- components:
- - type: Transform
- pos: -80.5,73.5
- parent: 2
- - uid: 8127
- components:
- - type: Transform
- pos: -80.5,72.5
- parent: 2
- - uid: 8128
- components:
- - type: Transform
- pos: -79.5,74.5
- parent: 2
- - uid: 8129
- components:
- - type: Transform
- pos: -79.5,73.5
- parent: 2
- - uid: 8130
- components:
- - type: Transform
- pos: -79.5,72.5
- parent: 2
- - uid: 8131
- components:
- - type: Transform
- pos: -78.5,74.5
- parent: 2
- - uid: 8132
- components:
- - type: Transform
- pos: -78.5,73.5
- parent: 2
- - uid: 8133
- components:
- - type: Transform
- pos: -78.5,72.5
- parent: 2
- - uid: 8134
- components:
- - type: Transform
- pos: -77.5,73.5
- parent: 2
- - uid: 8135
- components:
- - type: Transform
- pos: -76.5,73.5
- parent: 2
- - uid: 8136
->>>>>>> master
- components:
- - type: Transform
- pos: -81.5,70.5
- parent: 2
-<<<<<<< HEAD
- - uid: 8183
- components:
- - type: Transform
- pos: 48.5,9.5
- parent: 2
- - uid: 8184
- components:
- - type: Transform
- pos: -74.5,69.5
- parent: 2
- - uid: 8185
- components:
- - type: Transform
- pos: 48.5,10.5
- parent: 2
- - uid: 8186
- components:
- - type: Transform
- pos: -18.5,-30.5
- parent: 2
- - uid: 8187
- components:
- - type: Transform
- pos: 48.5,11.5
- parent: 2
- - uid: 8188
- components:
- - type: Transform
- pos: 48.5,12.5
- parent: 2
- - uid: 8189
- components:
- - type: Transform
- pos: -44.5,-0.5
- parent: 2
- - uid: 8190
- components:
- - type: Transform
- pos: -20.5,-30.5
- parent: 2
- - uid: 8191
- components:
- - type: Transform
- pos: 78.5,-49.5
- parent: 2
- - uid: 8192
- components:
- - type: Transform
- pos: -44.5,-1.5
- parent: 2
- - uid: 8193
- components:
- - type: Transform
- pos: -51.5,45.5
- parent: 2
- - uid: 8194
- components:
- - type: Transform
- pos: 80.5,-51.5
- parent: 2
- - uid: 8195
- components:
- - type: Transform
- pos: 48.5,13.5
- parent: 2
- - uid: 8196
- components:
- - type: Transform
- pos: -44.5,32.5
- parent: 2
- - uid: 8197
- components:
- - type: Transform
- pos: 47.5,14.5
- parent: 2
- - uid: 8198
- components:
- - type: Transform
- pos: -49.5,45.5
- parent: 2
- - uid: 8199
- components:
- - type: Transform
- pos: 47.5,15.5
- parent: 2
- - uid: 8200
- components:
- - type: Transform
- pos: -17.5,-29.5
- parent: 2
- - uid: 8201
- components:
- - type: Transform
- pos: -23.5,-30.5
- parent: 2
- - uid: 8202
- components:
- - type: Transform
- pos: 48.5,15.5
- parent: 2
- - uid: 8203
- components:
- - type: Transform
- pos: -63.5,-6.5
- parent: 2
- - uid: 8204
- components:
- - type: Transform
- pos: -59.5,63.5
- parent: 2
- - uid: 8205
- components:
- - type: Transform
- pos: 49.5,15.5
- parent: 2
- - uid: 8206
- components:
- - type: Transform
- pos: -21.5,-30.5
- parent: 2
- - uid: 8207
- components:
- - type: Transform
- pos: 6.5,-37.5
- parent: 2
- - uid: 8208
- components:
- - type: Transform
- pos: -58.5,-8.5
- parent: 2
- - uid: 8209
- components:
- - type: Transform
- pos: -60.5,-9.5
- parent: 2
- - uid: 8210
- components:
- - type: Transform
- pos: 50.5,15.5
- parent: 2
- - uid: 8211
- components:
- - type: Transform
- pos: 51.5,15.5
- parent: 2
- - uid: 8212
- components:
- - type: Transform
- pos: -58.5,-7.5
- parent: 2
- - uid: 8213
- components:
- - type: Transform
- pos: 52.5,15.5
- parent: 2
- - uid: 8214
- components:
- - type: Transform
- pos: -50.5,38.5
- parent: 2
- - uid: 8215
- components:
- - type: Transform
- pos: -72.5,69.5
- parent: 2
- - uid: 8216
- components:
- - type: Transform
- pos: -54.5,-39.5
- parent: 2
- - uid: 8217
- components:
- - type: Transform
- pos: -123.5,26.5
- parent: 2
- - uid: 8218
- components:
- - type: Transform
- pos: -61.5,-7.5
- parent: 2
- - uid: 8219
- components:
- - type: Transform
- pos: -122.5,26.5
- parent: 2
- - uid: 8220
- components:
- - type: Transform
- pos: -47.5,4.5
- parent: 2
- - uid: 8221
- components:
- - type: Transform
- pos: 54.5,22.5
- parent: 2
- - uid: 8222
- components:
- - type: Transform
- pos: 56.5,22.5
- parent: 2
- - uid: 8223
- components:
- - type: Transform
- pos: 57.5,22.5
- parent: 2
- - uid: 8224
- components:
- - type: Transform
- pos: -40.5,-7.5
- parent: 2
- - uid: 8225
- components:
- - type: Transform
- pos: -48.5,45.5
- parent: 2
- - uid: 8226
- components:
- - type: Transform
- pos: -71.5,77.5
- parent: 2
- - uid: 8227
- components:
- - type: Transform
- pos: -61.5,-8.5
- parent: 2
- - uid: 8228
- components:
- - type: Transform
- pos: -88.5,-8.5
- parent: 2
- - uid: 8229
- components:
- - type: Transform
- pos: -118.5,28.5
- parent: 2
- - uid: 8230
- components:
- - type: Transform
- pos: 58.5,22.5
- parent: 2
- - uid: 8231
- components:
- - type: Transform
- pos: 59.5,22.5
- parent: 2
- - uid: 8232
- components:
- - type: Transform
- pos: 59.5,23.5
- parent: 2
- - uid: 8233
- components:
- - type: Transform
- pos: -70.5,73.5
- parent: 2
- - uid: 8234
- components:
- - type: Transform
- pos: 59.5,24.5
- parent: 2
- - uid: 8235
- components:
- - type: Transform
- pos: -118.5,26.5
- parent: 2
- - uid: 8236
- components:
- - type: Transform
- pos: -72.5,70.5
- parent: 2
- - uid: 8237
- components:
- - type: Transform
- pos: -70.5,72.5
- parent: 2
- - uid: 8238
- components:
- - type: Transform
- pos: -69.5,73.5
- parent: 2
- - uid: 8239
- components:
- - type: Transform
- pos: 59.5,25.5
- parent: 2
- - uid: 8240
- components:
- - type: Transform
- pos: -39.5,-6.5
- parent: 2
- - uid: 8241
- components:
- - type: Transform
- pos: -68.5,72.5
- parent: 2
- - uid: 8242
- components:
- - type: Transform
- pos: -69.5,69.5
- parent: 2
- - uid: 8243
- components:
- - type: Transform
- pos: -69.5,70.5
- parent: 2
- - uid: 8244
- components:
- - type: Transform
- pos: 78.5,-48.5
- parent: 2
- - uid: 8245
- components:
- - type: Transform
- pos: 4.5,-40.5
- parent: 2
- - uid: 8246
- components:
- - type: Transform
- pos: -48.5,2.5
- parent: 2
- - uid: 8247
- components:
- - type: Transform
- pos: -54.5,40.5
- parent: 2
- - uid: 8248
- components:
- - type: Transform
- pos: -50.5,36.5
- parent: 2
- - uid: 8249
- components:
- - type: Transform
- pos: -46.5,35.5
- parent: 2
- - uid: 8250
- components:
- - type: Transform
- pos: 4.5,-37.5
- parent: 2
- - uid: 8251
- components:
- - type: Transform
- pos: -61.5,-9.5
- parent: 2
- - uid: 8252
- components:
- - type: Transform
- pos: -44.5,4.5
- parent: 2
- - uid: 8253
- components:
- - type: Transform
- pos: 19.5,18.5
- parent: 2
- - uid: 8254
- components:
- - type: Transform
- pos: 11.5,-50.5
- parent: 2
- - uid: 8255
- components:
- - type: Transform
- pos: -26.5,-67.5
- parent: 2
- - uid: 8256
- components:
- - type: Transform
- pos: 79.5,-44.5
- parent: 2
- - uid: 8257
- components:
- - type: Transform
- pos: 46.5,-46.5
- parent: 2
- - uid: 8258
- components:
- - type: Transform
- pos: -57.5,-90.5
- parent: 2
- - uid: 8259
- components:
- - type: Transform
- pos: 49.5,-10.5
- parent: 2
- - uid: 8260
- components:
- - type: Transform
- pos: -71.5,66.5
- parent: 2
- - uid: 8261
- components:
- - type: Transform
- pos: -73.5,66.5
- parent: 2
- - uid: 8262
- components:
- - type: Transform
- pos: -72.5,68.5
- parent: 2
- - uid: 8263
- components:
- - type: Transform
- pos: -70.5,66.5
- parent: 2
- - uid: 8264
- components:
- - type: Transform
- pos: -72.5,66.5
- parent: 2
- - uid: 8265
- components:
- - type: Transform
- pos: -73.5,68.5
- parent: 2
- - uid: 8266
- components:
- - type: Transform
- pos: 4.5,-43.5
- parent: 2
- - uid: 8267
- components:
- - type: Transform
- pos: -82.5,74.5
- parent: 2
- - uid: 8268
- components:
- - type: Transform
- pos: 68.5,25.5
- parent: 2
- - uid: 8269
- components:
- - type: Transform
- pos: -71.5,12.5
- parent: 2
- - uid: 8270
- components:
- - type: Transform
- pos: 69.5,25.5
- parent: 2
- - uid: 8271
- components:
- - type: Transform
- pos: 1.5,-38.5
- parent: 2
- - uid: 8272
- components:
- - type: Transform
- pos: -35.5,38.5
- parent: 2
- - uid: 8273
- components:
- - type: Transform
- pos: 69.5,24.5
- parent: 2
- - uid: 8274
- components:
- - type: Transform
- pos: 17.5,-7.5
- parent: 2
- - uid: 8275
- components:
- - type: Transform
- pos: -50.5,32.5
- parent: 2
- - uid: 8276
- components:
- - type: Transform
- pos: -50.5,34.5
- parent: 2
- - uid: 8277
- components:
- - type: Transform
- pos: -50.5,37.5
- parent: 2
- - uid: 8278
- components:
- - type: Transform
- pos: -58.5,58.5
- parent: 2
- - uid: 8279
- components:
- - type: Transform
- pos: -76.5,77.5
- parent: 2
- - uid: 8280
- components:
- - type: Transform
- pos: -71.5,68.5
- parent: 2
- - uid: 8281
- components:
- - type: Transform
- pos: 69.5,23.5
- parent: 2
- - uid: 8282
- components:
- - type: Transform
- pos: 69.5,22.5
- parent: 2
- - uid: 8283
- components:
- - type: Transform
- pos: -81.5,74.5
- parent: 2
- - uid: 8284
- components:
- - type: Transform
- pos: -53.5,43.5
- parent: 2
- - uid: 8285
- components:
- - type: Transform
- pos: -46.5,37.5
- parent: 2
- - uid: 8286
- components:
- - type: Transform
- pos: 40.5,-26.5
- parent: 2
- - uid: 8287
- components:
- - type: Transform
- pos: -46.5,32.5
- parent: 2
- - uid: 8288
- components:
- - type: Transform
- pos: 4.5,-44.5
- parent: 2
- - uid: 8289
- components:
- - type: Transform
- pos: -42.5,34.5
- parent: 2
- - uid: 8290
- components:
- - type: Transform
- pos: -46.5,36.5
- parent: 2
- - uid: 8291
- components:
- - type: Transform
- pos: -53.5,42.5
- parent: 2
- - uid: 8292
- components:
- - type: Transform
- pos: 69.5,-1.5
- parent: 2
- - uid: 8293
- components:
- - type: Transform
- pos: 13.5,87.5
- parent: 2
- - uid: 8294
- components:
- - type: Transform
- pos: -54.5,-88.5
- parent: 2
- - uid: 8295
- components:
- - type: Transform
- pos: -45.5,32.5
- parent: 2
- - uid: 8296
- components:
- - type: Transform
- pos: -53.5,44.5
- parent: 2
- - uid: 8297
- components:
- - type: Transform
- pos: -46.5,33.5
- parent: 2
- - uid: 8298
- components:
- - type: Transform
- pos: -46.5,32.5
- parent: 2
- - uid: 8299
- components:
- - type: Transform
- pos: 69.5,-2.5
- parent: 2
- - uid: 8300
- components:
- - type: Transform
- pos: -48.5,32.5
- parent: 2
- - uid: 8301
- components:
- - type: Transform
- pos: 69.5,-3.5
- parent: 2
- - uid: 8302
- components:
- - type: Transform
- pos: 70.5,-3.5
- parent: 2
- - uid: 8303
- components:
- - type: Transform
- pos: 67.5,22.5
- parent: 2
- - uid: 8304
- components:
- - type: Transform
- pos: -58.5,59.5
- parent: 2
- - uid: 8305
- components:
- - type: Transform
- pos: -74.5,77.5
- parent: 2
- - uid: 8306
- components:
- - type: Transform
- pos: 71.5,-3.5
- parent: 2
- - uid: 8307
- components:
- - type: Transform
- pos: -44.5,44.5
- parent: 2
- - uid: 8308
- components:
- - type: Transform
- pos: -70.5,77.5
- parent: 2
- - uid: 8309
- components:
- - type: Transform
- pos: 66.5,22.5
- parent: 2
- - uid: 8310
- components:
- - type: Transform
- pos: -69.5,72.5
- parent: 2
- - uid: 8311
- components:
- - type: Transform
- pos: 72.5,-3.5
- parent: 2
- - uid: 8312
- components:
- - type: Transform
- pos: 73.5,-3.5
- parent: 2
- - uid: 8313
- components:
- - type: Transform
- pos: 73.5,-2.5
- parent: 2
- - uid: 8314
- components:
- - type: Transform
- pos: 74.5,-2.5
- parent: 2
- - uid: 8315
- components:
- - type: Transform
- pos: 65.5,22.5
- parent: 2
- - uid: 8316
- components:
- - type: Transform
- pos: -59.5,-6.5
- parent: 2
- - uid: 8317
- components:
- - type: Transform
- pos: -54.5,45.5
- parent: 2
- - uid: 8318
- components:
- - type: Transform
- pos: -78.5,78.5
- parent: 2
- - uid: 8319
- components:
- - type: Transform
- pos: -48.5,3.5
- parent: 2
- - uid: 8320
- components:
- - type: Transform
- pos: -47.5,32.5
- parent: 2
- - uid: 8321
- components:
- - type: Transform
- pos: -50.5,35.5
- parent: 2
- - uid: 8322
- components:
- - type: Transform
- pos: -44.5,3.5
- parent: 2
- - uid: 8323
- components:
- - type: Transform
- pos: 82.5,-40.5
- parent: 2
- - uid: 8324
- components:
- - type: Transform
- pos: 82.5,-39.5
- parent: 2
- - uid: 8325
- components:
- - type: Transform
- pos: 64.5,22.5
- parent: 2
- - uid: 8326
- components:
- - type: Transform
- pos: -58.5,-19.5
- parent: 2
- - uid: 8327
- components:
- - type: Transform
- pos: 23.5,24.5
- parent: 2
- - uid: 8328
- components:
- - type: Transform
- pos: 40.5,-46.5
- parent: 2
- - uid: 8329
- components:
- - type: Transform
- pos: 11.5,64.5
- parent: 2
- - uid: 8330
- components:
- - type: Transform
- pos: -45.5,-86.5
- parent: 2
- - uid: 8331
- components:
- - type: Transform
- pos: 63.5,22.5
- parent: 2
- - uid: 8332
- components:
- - type: Transform
- pos: 21.5,24.5
- parent: 2
- - uid: 8333
- components:
- - type: Transform
- pos: 35.5,-55.5
- parent: 2
- - uid: 8334
- components:
- - type: Transform
- pos: -0.5,-24.5
- parent: 2
- - uid: 8335
- components:
- - type: Transform
- pos: 62.5,22.5
- parent: 2
- - uid: 8336
- components:
- - type: Transform
- pos: 30.5,95.5
- parent: 2
- - uid: 8337
- components:
- - type: Transform
- pos: 61.5,22.5
- parent: 2
- - uid: 8338
- components:
- - type: Transform
- pos: 23.5,87.5
- parent: 2
- - uid: 8339
- components:
- - type: Transform
- pos: -56.5,45.5
- parent: 2
- - uid: 8340
- components:
- - type: Transform
- pos: -42.5,-6.5
- parent: 2
- - uid: 8341
- components:
- - type: Transform
- pos: 61.5,21.5
- parent: 2
- - uid: 8342
- components:
- - type: Transform
- pos: -81.5,77.5
- parent: 2
- - uid: 8343
- components:
- - type: Transform
- pos: -81.5,76.5
- parent: 2
- - uid: 8344
- components:
- - type: Transform
- pos: -55.5,2.5
- parent: 2
- - uid: 8345
- components:
- - type: Transform
- pos: -53.5,2.5
- parent: 2
- - uid: 8346
- components:
- - type: Transform
- pos: -55.5,-6.5
- parent: 2
- - uid: 8347
- components:
- - type: Transform
- pos: -76.5,69.5
- parent: 2
- - uid: 8348
- components:
- - type: Transform
- pos: -47.5,45.5
- parent: 2
- - uid: 8349
- components:
- - type: Transform
- pos: 65.5,25.5
- parent: 2
- - uid: 8350
- components:
- - type: Transform
- pos: -71.5,70.5
- parent: 2
- - uid: 8351
- components:
- - type: Transform
- pos: -58.5,57.5
- parent: 2
- - uid: 8352
- components:
- - type: Transform
- pos: -59.5,59.5
- parent: 2
- - uid: 8353
- components:
- - type: Transform
- pos: -64.5,-6.5
- parent: 2
- - uid: 8354
- components:
- - type: Transform
- pos: -80.5,70.5
- parent: 2
- - uid: 8355
- components:
- - type: Transform
- pos: -51.5,-5.5
- parent: 2
- - uid: 8356
- components:
- - type: Transform
- pos: -46.5,1.5
- parent: 2
- - uid: 8357
- components:
- - type: Transform
- pos: 5.5,-37.5
- parent: 2
- - uid: 8358
- components:
- - type: Transform
- pos: -54.5,41.5
- parent: 2
- - uid: 8359
- components:
- - type: Transform
- pos: -54.5,36.5
- parent: 2
- - uid: 8360
- components:
- - type: Transform
- pos: -68.5,73.5
- parent: 2
- - uid: 8361
- components:
- - type: Transform
- pos: -58.5,53.5
- parent: 2
- - uid: 8362
- components:
- - type: Transform
- pos: 22.5,100.5
- parent: 2
- - uid: 8363
- components:
- - type: Transform
- pos: 37.5,-53.5
- parent: 2
- - uid: 8364
- components:
- - type: Transform
- pos: 21.5,96.5
- parent: 2
- - uid: 8365
- components:
- - type: Transform
- pos: -56.5,-19.5
- parent: 2
- - uid: 8366
- components:
- - type: Transform
- pos: 25.5,24.5
- parent: 2
- - uid: 8367
- components:
- - type: Transform
- pos: -80.5,76.5
- parent: 2
- - uid: 8368
- components:
- - type: Transform
- pos: -79.5,76.5
- parent: 2
- - uid: 8369
- components:
- - type: Transform
- pos: -51.5,6.5
- parent: 2
- - uid: 8370
- components:
- - type: Transform
- pos: -56.5,-9.5
- parent: 2
- - uid: 8371
- components:
- - type: Transform
- pos: 22.5,96.5
- parent: 2
- - uid: 8372
- components:
- - type: Transform
- pos: 23.5,96.5
- parent: 2
- - uid: 8373
- components:
- - type: Transform
- pos: 33.5,-11.5
- parent: 2
- - uid: 8374
- components:
- - type: Transform
- pos: -53.5,12.5
- parent: 2
- - uid: 8375
- components:
- - type: Transform
- pos: -53.5,11.5
- parent: 2
- - uid: 8376
- components:
- - type: Transform
- pos: -53.5,10.5
- parent: 2
- - uid: 8377
- components:
- - type: Transform
- pos: -53.5,26.5
- parent: 2
- - uid: 8378
- components:
- - type: Transform
- pos: -69.5,74.5
- parent: 2
- - uid: 8379
- components:
- - type: Transform
- pos: -52.5,27.5
- parent: 2
- - uid: 8380
- components:
- - type: Transform
- pos: -72.5,78.5
- parent: 2
- - uid: 8381
- components:
- - type: Transform
- pos: -78.5,68.5
- parent: 2
- - uid: 8382
- components:
- - type: Transform
- pos: -67.5,66.5
- parent: 2
- - uid: 8383
- components:
- - type: Transform
- pos: -51.5,10.5
- parent: 2
- - uid: 8384
- components:
- - type: Transform
- pos: -53.5,10.5
- parent: 2
- - uid: 8385
- components:
- - type: Transform
- pos: -51.5,3.5
- parent: 2
- - uid: 8386
- components:
- - type: Transform
- pos: -53.5,29.5
- parent: 2
- - uid: 8387
- components:
- - type: Transform
- pos: -79.5,69.5
- parent: 2
- - uid: 8388
- components:
- - type: Transform
- pos: -52.5,26.5
- parent: 2
- - uid: 8389
- components:
- - type: Transform
- pos: -52.5,29.5
- parent: 2
- - uid: 8390
- components:
- - type: Transform
- pos: -52.5,29.5
- parent: 2
- - uid: 8391
- components:
- - type: Transform
- pos: -52.5,28.5
- parent: 2
- - uid: 8392
- components:
- - type: Transform
- pos: -53.5,14.5
- parent: 2
- - uid: 8393
- components:
- - type: Transform
- pos: -54.5,29.5
- parent: 2
- - uid: 8394
- components:
- - type: Transform
- pos: -73.5,12.5
- parent: 2
- - uid: 8395
- components:
- - type: Transform
- pos: -53.5,13.5
- parent: 2
- - uid: 8396
- components:
- - type: Transform
- pos: -67.5,-1.5
- parent: 2
- - uid: 8397
- components:
- - type: Transform
- pos: -62.5,-6.5
- parent: 2
- - uid: 8398
- components:
- - type: Transform
- pos: -58.5,56.5
- parent: 2
- - uid: 8399
- components:
- - type: Transform
- pos: -44.5,-7.5
- parent: 2
- - uid: 8400
- components:
- - type: Transform
- pos: -59.5,45.5
- parent: 2
- - uid: 8401
- components:
- - type: Transform
- pos: 3.5,-39.5
- parent: 2
- - uid: 8402
- components:
- - type: Transform
- pos: -36.5,-11.5
- parent: 2
- - uid: 8403
- components:
- - type: Transform
- pos: -80.5,69.5
- parent: 2
- - uid: 8404
- components:
- - type: Transform
- pos: -68.5,66.5
- parent: 2
- - uid: 8405
- components:
- - type: Transform
- pos: -55.5,45.5
- parent: 2
- - uid: 8406
- components:
- - type: Transform
- pos: -53.5,-5.5
- parent: 2
- - uid: 8407
- components:
- - type: Transform
- pos: -53.5,-6.5
- parent: 2
- - uid: 8408
- components:
- - type: Transform
- pos: -53.5,-4.5
- parent: 2
- - uid: 8409
- components:
- - type: Transform
- pos: -43.5,-6.5
- parent: 2
- - uid: 8410
- components:
- - type: Transform
- pos: -40.5,-8.5
- parent: 2
- - uid: 8411
- components:
- - type: Transform
- pos: -118.5,25.5
- parent: 2
- - uid: 8412
- components:
- - type: Transform
- pos: 63.5,25.5
- parent: 2
- - uid: 8413
- components:
- - type: Transform
- pos: -62.5,-25.5
- parent: 2
- - uid: 8414
- components:
- - type: Transform
- pos: -56.5,-6.5
- parent: 2
- - uid: 8415
- components:
- - type: Transform
- pos: -60.5,-25.5
- parent: 2
- - uid: 8416
- components:
- - type: Transform
- pos: -76.5,-7.5
- parent: 2
- - uid: 8417
- components:
- - type: Transform
- pos: -82.5,72.5
- parent: 2
- - uid: 8418
- components:
- - type: Transform
- pos: -80.5,72.5
- parent: 2
- - uid: 8419
- components:
- - type: Transform
- pos: -70.5,70.5
- parent: 2
- - uid: 8420
- components:
- - type: Transform
- pos: -81.5,72.5
- parent: 2
- - uid: 8421
- components:
- - type: Transform
- pos: -47.5,-86.5
- parent: 2
- - uid: 8422
- components:
- - type: Transform
- pos: 33.5,-8.5
- parent: 2
- - uid: 8423
- components:
- - type: Transform
- pos: -17.5,-10.5
- parent: 2
- - uid: 8424
- components:
- - type: Transform
- pos: -41.5,39.5
- parent: 2
- - uid: 8425
- components:
- - type: Transform
- pos: -48.5,-86.5
- parent: 2
- - uid: 8426
- components:
- - type: Transform
- pos: 14.5,64.5
- parent: 2
- - uid: 8427
- components:
- - type: Transform
- pos: 23.5,92.5
- parent: 2
- - uid: 8428
- components:
- - type: Transform
- pos: 13.5,64.5
- parent: 2
- - uid: 8429
- components:
- - type: Transform
- pos: -49.5,-80.5
- parent: 2
- - uid: 8430
- components:
- - type: Transform
- pos: -48.5,-88.5
- parent: 2
- - uid: 8431
- components:
- - type: Transform
- pos: -46.5,-80.5
- parent: 2
- - uid: 8432
- components:
- - type: Transform
- pos: -48.5,-80.5
- parent: 2
- - uid: 8433
- components:
- - type: Transform
- pos: -41.5,22.5
- parent: 2
- - uid: 8434
- components:
- - type: Transform
- pos: 51.5,-35.5
- parent: 2
- - uid: 8435
- components:
- - type: Transform
- pos: -0.5,-20.5
- parent: 2
- - uid: 8436
- components:
- - type: Transform
- pos: 44.5,-8.5
- parent: 2
- - uid: 8437
- components:
- - type: Transform
- pos: -36.5,-1.5
- parent: 2
- - uid: 8438
- components:
- - type: Transform
- pos: 18.5,-17.5
- parent: 2
- - uid: 8439
- components:
- - type: Transform
- pos: -0.5,-22.5
- parent: 2
- - uid: 8440
- components:
- - type: Transform
- pos: -10.5,-8.5
- parent: 2
- - uid: 8441
- components:
- - type: Transform
- pos: -9.5,-8.5
- parent: 2
- - uid: 8442
- components:
- - type: Transform
- pos: 51.5,-37.5
- parent: 2
- - uid: 8443
- components:
- - type: Transform
- pos: 44.5,-3.5
- parent: 2
- - uid: 8444
- components:
- - type: Transform
- pos: -0.5,-26.5
- parent: 2
- - uid: 8445
- components:
- - type: Transform
- pos: -36.5,-6.5
- parent: 2
- - uid: 8446
- components:
- - type: Transform
- pos: -28.5,-28.5
- parent: 2
- - uid: 8447
- components:
- - type: Transform
- pos: -30.5,-26.5
- parent: 2
- - uid: 8448
- components:
- - type: Transform
- pos: 19.5,-19.5
- parent: 2
- - uid: 8449
- components:
- - type: Transform
- pos: -41.5,25.5
- parent: 2
- - uid: 8450
- components:
- - type: Transform
- pos: -47.5,-88.5
- parent: 2
- - uid: 8451
- components:
- - type: Transform
- pos: 51.5,-31.5
- parent: 2
- - uid: 8452
- components:
- - type: Transform
- pos: -25.5,-72.5
- parent: 2
- - uid: 8453
- components:
- - type: Transform
- pos: 5.5,-7.5
- parent: 2
- - uid: 8454
- components:
- - type: Transform
- pos: -28.5,-33.5
- parent: 2
- - uid: 8455
- components:
- - type: Transform
- pos: -3.5,-19.5
- parent: 2
- - uid: 8456
- components:
- - type: Transform
- pos: 48.5,-10.5
- parent: 2
- - uid: 8457
- components:
- - type: Transform
- pos: -37.5,-26.5
- parent: 2
- - uid: 8458
- components:
- - type: Transform
- pos: -28.5,-32.5
- parent: 2
- - uid: 8459
- components:
- - type: Transform
- pos: -2.5,-19.5
- parent: 2
- - uid: 8460
- components:
- - type: Transform
- pos: 11.5,78.5
- parent: 2
- - uid: 8461
- components:
- - type: Transform
- pos: -45.5,-88.5
- parent: 2
- - uid: 8462
- components:
- - type: Transform
- pos: -57.5,-82.5
- parent: 2
- - uid: 8463
- components:
- - type: Transform
- pos: -52.5,45.5
- parent: 2
- - uid: 8464
- components:
- - type: Transform
- pos: -8.5,-19.5
- parent: 2
- - uid: 8465
- components:
- - type: Transform
- pos: -27.5,-71.5
- parent: 2
- - uid: 8466
- components:
- - type: Transform
- pos: -0.5,-32.5
- parent: 2
- - uid: 8467
- components:
- - type: Transform
- pos: 17.5,23.5
- parent: 2
- - uid: 8468
- components:
- - type: Transform
- pos: -36.5,-17.5
- parent: 2
- - uid: 8469
- components:
- - type: Transform
- pos: 25.5,90.5
- parent: 2
- - uid: 8470
- components:
- - type: Transform
- pos: -67.5,-20.5
- parent: 2
- - uid: 8471
- components:
- - type: Transform
- pos: 10.5,58.5
- parent: 2
- - uid: 8472
- components:
- - type: Transform
- pos: -28.5,-71.5
- parent: 2
- - uid: 8473
- components:
- - type: Transform
- pos: -0.5,-31.5
- parent: 2
- - uid: 8474
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 2
- - uid: 8475
- components:
- - type: Transform
- pos: 27.5,-55.5
- parent: 2
- - uid: 8476
- components:
- - type: Transform
- pos: 52.5,-46.5
- parent: 2
- - uid: 8477
- components:
- - type: Transform
- pos: 17.5,9.5
- parent: 2
- - uid: 8478
- components:
- - type: Transform
- pos: -36.5,-10.5
- parent: 2
- - uid: 8479
- components:
- - type: Transform
- pos: 33.5,-3.5
- parent: 2
- - uid: 8480
- components:
- - type: Transform
- pos: 3.5,-7.5
- parent: 2
- - uid: 8481
- components:
- - type: Transform
- pos: 27.5,30.5
- parent: 2
- - uid: 8482
- components:
- - type: Transform
- pos: 24.5,90.5
- parent: 2
- - uid: 8483
- components:
- - type: Transform
- pos: 31.5,96.5
- parent: 2
- - uid: 8484
- components:
- - type: Transform
- pos: 31.5,94.5
- parent: 2
- - uid: 8485
- components:
- - type: Transform
- pos: -40.5,-26.5
- parent: 2
- - uid: 8486
- components:
- - type: Transform
- pos: -0.5,-35.5
- parent: 2
- - uid: 8487
- components:
- - type: Transform
- pos: 51.5,-40.5
- parent: 2
- - uid: 8488
- components:
- - type: Transform
- pos: 44.5,-5.5
- parent: 2
- - uid: 8489
- components:
- - type: Transform
- pos: 24.5,94.5
- parent: 2
- - uid: 8490
- components:
- - type: Transform
- pos: 26.5,87.5
- parent: 2
- - uid: 8491
- components:
- - type: Transform
- pos: 24.5,87.5
- parent: 2
- - uid: 8492
- components:
- - type: Transform
- pos: -29.5,-71.5
- parent: 2
- - uid: 8493
- components:
- - type: Transform
- pos: 44.5,-4.5
- parent: 2
- - uid: 8494
- components:
- - type: Transform
- pos: -47.5,-7.5
- parent: 2
- - uid: 8495
- components:
- - type: Transform
- pos: -48.5,-2.5
- parent: 2
- - uid: 8496
- components:
- - type: Transform
- pos: -46.5,-82.5
- parent: 2
- - uid: 8497
- components:
- - type: Transform
- pos: -48.5,-82.5
- parent: 2
- - uid: 8498
- components:
- - type: Transform
- pos: -55.5,-82.5
- parent: 2
- - uid: 8499
- components:
- - type: Transform
- pos: -49.5,-82.5
- parent: 2
- - uid: 8500
- components:
- - type: Transform
- pos: 30.5,90.5
- parent: 2
- - uid: 8501
- components:
- - type: Transform
- pos: -48.5,12.5
- parent: 2
- - uid: 8502
- components:
- - type: Transform
- pos: -47.5,12.5
- parent: 2
- - uid: 8503
- components:
- - type: Transform
- pos: 19.5,87.5
- parent: 2
- - uid: 8504
- components:
- - type: Transform
- pos: -47.5,-90.5
- parent: 2
- - uid: 8505
- components:
- - type: Transform
- pos: -0.5,-30.5
- parent: 2
- - uid: 8506
- components:
- - type: Transform
- pos: -48.5,-90.5
- parent: 2
- - uid: 8507
- components:
- - type: Transform
- pos: 80.5,-40.5
- parent: 2
- - uid: 8508
- components:
- - type: Transform
- pos: 10.5,60.5
- parent: 2
- - uid: 8509
- components:
- - type: Transform
- pos: 32.5,98.5
- parent: 2
- - uid: 8510
- components:
- - type: Transform
- pos: 31.5,-15.5
- parent: 2
- - uid: 8511
- components:
- - type: Transform
- pos: -16.5,-19.5
- parent: 2
- - uid: 8512
- components:
- - type: Transform
- pos: -49.5,11.5
- parent: 2
- - uid: 8513
- components:
- - type: Transform
- pos: -49.5,10.5
- parent: 2
- - uid: 8514
- components:
- - type: Transform
- pos: -44.5,12.5
- parent: 2
- - uid: 8515
- components:
- - type: Transform
- pos: 32.5,-15.5
- parent: 2
- - uid: 8516
- components:
- - type: Transform
- pos: -14.5,-19.5
- parent: 2
- - uid: 8517
- components:
- - type: Transform
- pos: 18.5,24.5
- parent: 2
- - uid: 8518
- components:
- - type: Transform
- pos: -36.5,-5.5
- parent: 2
- - uid: 8519
- components:
- - type: Transform
- pos: 29.5,-15.5
- parent: 2
- - uid: 8520
- components:
- - type: Transform
- pos: 33.5,-15.5
- parent: 2
- - uid: 8521
- components:
- - type: Transform
- pos: -17.5,-17.5
- parent: 2
- - uid: 8522
- components:
- - type: Transform
- pos: -46.5,12.5
- parent: 2
- - uid: 8523
- components:
- - type: Transform
- pos: 78.5,-36.5
- parent: 2
- - uid: 8524
- components:
- - type: Transform
- pos: 33.5,98.5
- parent: 2
- - uid: 8525
- components:
- - type: Transform
- pos: 8.5,-7.5
- parent: 2
- - uid: 8526
- components:
- - type: Transform
- pos: -25.5,-74.5
- parent: 2
- - uid: 8527
- components:
- - type: Transform
- pos: 46.5,-28.5
- parent: 2
- - uid: 8528
- components:
- - type: Transform
- pos: -36.5,-4.5
- parent: 2
- - uid: 8529
- components:
- - type: Transform
- pos: 11.5,79.5
- parent: 2
- - uid: 8530
- components:
- - type: Transform
- pos: 18.5,45.5
- parent: 2
- - uid: 8531
- components:
- - type: Transform
- pos: 14.5,88.5
- parent: 2
- - uid: 8532
- components:
- - type: Transform
- pos: 43.5,-28.5
- parent: 2
- - uid: 8533
- components:
- - type: Transform
- pos: -26.5,-78.5
- parent: 2
- - uid: 8534
- components:
- - type: Transform
- pos: 10.5,-6.5
- parent: 2
- - uid: 8535
- components:
- - type: Transform
- pos: -26.5,-70.5
- parent: 2
- - uid: 8536
- components:
- - type: Transform
- pos: -37.5,-1.5
- parent: 2
- - uid: 8537
- components:
- - type: Transform
- pos: 23.5,-21.5
- parent: 2
- - uid: 8538
- components:
- - type: Transform
- pos: -26.5,-33.5
- parent: 2
- - uid: 8539
- components:
- - type: Transform
- pos: 36.5,-3.5
- parent: 2
- - uid: 8540
- components:
- - type: Transform
- pos: -47.5,-22.5
- parent: 2
- - uid: 8541
- components:
- - type: Transform
- pos: -44.5,45.5
- parent: 2
- - uid: 8542
- components:
- - type: Transform
- pos: -52.5,-89.5
- parent: 2
- - uid: 8543
- components:
- - type: Transform
- pos: -53.5,-90.5
- parent: 2
- - uid: 8544
- components:
- - type: Transform
- pos: -53.5,-88.5
- parent: 2
- - uid: 8545
- components:
- - type: Transform
- pos: -50.5,0.5
- parent: 2
- - uid: 8546
- components:
- - type: Transform
- pos: -53.5,-1.5
- parent: 2
- - uid: 8547
- components:
- - type: Transform
- pos: -26.5,-58.5
- parent: 2
- - uid: 8548
- components:
- - type: Transform
- pos: -49.5,-74.5
- parent: 2
- - uid: 8549
- components:
- - type: Transform
- pos: -41.5,-74.5
- parent: 2
- - uid: 8550
- components:
- - type: Transform
- pos: -41.5,24.5
- parent: 2
- - uid: 8551
- components:
- - type: Transform
- pos: 20.5,87.5
- parent: 2
- - uid: 8552
- components:
- - type: Transform
- pos: 18.5,-19.5
- parent: 2
- - uid: 8553
- components:
- - type: Transform
- pos: -29.5,-26.5
- parent: 2
- - uid: 8554
- components:
- - type: Transform
- pos: -28.5,-29.5
- parent: 2
- - uid: 8555
- components:
- - type: Transform
- pos: -0.5,-27.5
- parent: 2
- - uid: 8556
- components:
- - type: Transform
- pos: 45.5,-3.5
- parent: 2
- - uid: 8557
- components:
- - type: Transform
- pos: 51.5,-36.5
- parent: 2
- - uid: 8558
- components:
- - type: Transform
- pos: -8.5,-8.5
- parent: 2
- - uid: 8559
- components:
- - type: Transform
- pos: -36.5,-8.5
- parent: 2
- - uid: 8560
- components:
- - type: Transform
- pos: -0.5,-34.5
- parent: 2
- - uid: 8561
- components:
- - type: Transform
- pos: -39.5,-26.5
- parent: 2
- - uid: 8562
- components:
- - type: Transform
- pos: 78.5,-51.5
- parent: 2
- - uid: 8563
- components:
- - type: Transform
- pos: -69.5,-20.5
- parent: 2
- - uid: 8564
- components:
- - type: Transform
- pos: -15.5,-19.5
- parent: 2
- - uid: 8565
- components:
- - type: Transform
- pos: -65.5,-20.5
- parent: 2
- - uid: 8566
- components:
- - type: Transform
- pos: 31.5,92.5
- parent: 2
- - uid: 8567
- components:
- - type: Transform
- pos: 25.5,-55.5
- parent: 2
- - uid: 8568
- components:
- - type: Transform
- pos: 17.5,21.5
- parent: 2
- - uid: 8569
- components:
- - type: Transform
- pos: 10.5,57.5
- parent: 2
- - uid: 8570
- components:
- - type: Transform
- pos: -54.5,-82.5
- parent: 2
- - uid: 8571
- components:
- - type: Transform
- pos: -57.5,51.5
- parent: 2
- - uid: 8572
- components:
- - type: Transform
- pos: -57.5,50.5
- parent: 2
- - uid: 8573
- components:
- - type: Transform
- pos: 33.5,-7.5
- parent: 2
- - uid: 8574
- components:
- - type: Transform
- pos: -17.5,-8.5
- parent: 2
- - uid: 8575
- components:
- - type: Transform
- pos: -42.5,39.5
- parent: 2
- - uid: 8576
- components:
- - type: Transform
- pos: 21.5,25.5
- parent: 2
- - uid: 8577
- components:
- - type: Transform
- pos: 37.5,-52.5
- parent: 2
- - uid: 8578
- components:
- - type: Transform
- pos: -56.5,-20.5
- parent: 2
- - uid: 8579
- components:
- - type: Transform
- pos: -48.5,39.5
- parent: 2
- - uid: 8580
- components:
- - type: Transform
- pos: 82.5,-37.5
- parent: 2
- - uid: 8581
- components:
- - type: Transform
- pos: 28.5,101.5
- parent: 2
- - uid: 8582
- components:
- - type: Transform
- pos: -71.5,8.5
- parent: 2
- - uid: 8583
- components:
- - type: Transform
- pos: 10.5,82.5
- parent: 2
- - uid: 8584
- components:
- - type: Transform
- pos: 39.5,-22.5
- parent: 2
- - uid: 8585
- components:
- - type: Transform
- pos: -7.5,-8.5
- parent: 2
- - uid: 8586
- components:
- - type: Transform
- pos: 17.5,3.5
- parent: 2
- - uid: 8587
- components:
- - type: Transform
- pos: 51.5,-32.5
- parent: 2
- - uid: 8588
- components:
- - type: Transform
- pos: 44.5,-10.5
- parent: 2
- - uid: 8589
- components:
- - type: Transform
- pos: -26.5,-71.5
- parent: 2
- - uid: 8590
- components:
- - type: Transform
- pos: -57.5,-84.5
- parent: 2
- - uid: 8591
- components:
- - type: Transform
- pos: 18.5,51.5
- parent: 2
- - uid: 8592
- components:
- - type: Transform
- pos: 18.5,48.5
- parent: 2
- - uid: 8593
- components:
- - type: Transform
- pos: -71.5,9.5
- parent: 2
- - uid: 8594
- components:
- - type: Transform
- pos: -71.5,10.5
- parent: 2
- - uid: 8595
- components:
- - type: Transform
- pos: 31.5,-55.5
- parent: 2
- - uid: 8596
- components:
- - type: Transform
- pos: -60.5,-20.5
- parent: 2
- - uid: 8597
- components:
- - type: Transform
- pos: -44.5,38.5
- parent: 2
- - uid: 8598
- components:
- - type: Transform
- pos: -14.5,-8.5
- parent: 2
- - uid: 8599
- components:
- - type: Transform
- pos: 33.5,-4.5
- parent: 2
- - uid: 8600
- components:
- - type: Transform
- pos: 88.5,-46.5
- parent: 2
- - uid: 8601
- components:
- - type: Transform
- pos: 88.5,-44.5
- parent: 2
- - uid: 8602
- components:
- - type: Transform
- pos: 25.5,94.5
- parent: 2
- - uid: 8603
- components:
- - type: Transform
- pos: 4.5,-41.5
- parent: 2
- - uid: 8604
- components:
- - type: Transform
- pos: -34.5,-71.5
- parent: 2
- - uid: 8605
- components:
- - type: Transform
- pos: -36.5,39.5
- parent: 2
- - uid: 8606
- components:
- - type: Transform
- pos: -72.5,-20.5
- parent: 2
- - uid: 8607
- components:
- - type: Transform
- pos: -31.5,-19.5
- parent: 2
- - uid: 8608
- components:
- - type: Transform
- pos: -30.5,-19.5
- parent: 2
- - uid: 8609
- components:
- - type: Transform
- pos: -27.5,-19.5
- parent: 2
- - uid: 8610
- components:
- - type: Transform
- pos: -25.5,-19.5
- parent: 2
- - uid: 8611
- components:
- - type: Transform
- pos: -26.5,-19.5
- parent: 2
- - uid: 8612
- components:
- - type: Transform
- pos: 51.5,-29.5
- parent: 2
- - uid: 8613
- components:
- - type: Transform
- pos: 34.5,96.5
- parent: 2
- - uid: 8614
- components:
- - type: Transform
- pos: 51.5,-28.5
- parent: 2
- - uid: 8615
- components:
- - type: Transform
- pos: 35.5,96.5
- parent: 2
- - uid: 8616
- components:
- - type: Transform
- pos: 17.5,6.5
- parent: 2
- - uid: 8617
- components:
- - type: Transform
- pos: 28.5,-15.5
- parent: 2
- - uid: 8618
- components:
- - type: Transform
- pos: -41.5,6.5
- parent: 2
- - uid: 8619
- components:
- - type: Transform
- pos: -26.5,-61.5
- parent: 2
- - uid: 8620
- components:
- - type: Transform
- pos: -36.5,-2.5
- parent: 2
- - uid: 8621
- components:
- - type: Transform
- pos: -36.5,-3.5
- parent: 2
- - uid: 8622
- components:
- - type: Transform
- pos: 0.5,-7.5
- parent: 2
- - uid: 8623
- components:
- - type: Transform
- pos: 34.5,92.5
- parent: 2
- - uid: 8624
- components:
- - type: Transform
- pos: -46.5,-0.5
- parent: 2
- - uid: 8625
- components:
- - type: Transform
- pos: -118.5,31.5
- parent: 2
- - uid: 8626
- components:
- - type: Transform
- pos: -54.5,-86.5
- parent: 2
- - uid: 8627
- components:
- - type: Transform
- pos: -53.5,20.5
- parent: 2
- - uid: 8628
- components:
- - type: Transform
- pos: -57.5,49.5
- parent: 2
- - uid: 8629
- components:
- - type: Transform
- pos: -53.5,19.5
- parent: 2
- - uid: 8630
- components:
- - type: Transform
- pos: -53.5,21.5
- parent: 2
- - uid: 8631
- components:
- - type: Transform
- pos: -57.5,60.5
- parent: 2
- - uid: 8632
- components:
- - type: Transform
- pos: -44.5,0.5
- parent: 2
- - uid: 8633
- components:
- - type: Transform
- pos: -70.5,76.5
- parent: 2
- - uid: 8634
- components:
- - type: Transform
- pos: -69.5,76.5
- parent: 2
- - uid: 8635
- components:
- - type: Transform
- pos: 7.5,58.5
- parent: 2
- - uid: 8636
- components:
- - type: Transform
- pos: 7.5,59.5
- parent: 2
- - uid: 8637
- components:
- - type: Transform
- pos: -71.5,76.5
- parent: 2
- - uid: 8638
- components:
- - type: Transform
- pos: -73.5,78.5
- parent: 2
- - uid: 8639
- components:
- - type: Transform
- pos: -71.5,78.5
- parent: 2
- - uid: 8640
- components:
- - type: Transform
- pos: -46.5,-7.5
- parent: 2
- - uid: 8641
- components:
- - type: Transform
- pos: -79.5,70.5
- parent: 2
- - uid: 8642
- components:
- - type: Transform
- pos: -78.5,70.5
- parent: 2
- - uid: 8643
- components:
- - type: Transform
- pos: 2.5,-39.5
- parent: 2
- - uid: 8644
- components:
- - type: Transform
- pos: -71.5,72.5
- parent: 2
- - uid: 8645
- components:
- - type: Transform
- pos: -49.5,2.5
- parent: 2
- - uid: 8646
- components:
- - type: Transform
- pos: -44.5,1.5
- parent: 2
- - uid: 8647
- components:
- - type: Transform
- pos: -80.5,73.5
- parent: 2
- - uid: 8648
- components:
- - type: Transform
- pos: -81.5,73.5
- parent: 2
- - uid: 8649
- components:
- - type: Transform
- pos: -57.5,-9.5
- parent: 2
- - uid: 8650
- components:
- - type: Transform
- pos: -82.5,73.5
- parent: 2
- - uid: 8651
- components:
- - type: Transform
- pos: -49.5,-7.5
- parent: 2
- - uid: 8652
- components:
- - type: Transform
- pos: -42.5,31.5
- parent: 2
- - uid: 8653
- components:
- - type: Transform
- pos: 17.5,1.5
- parent: 2
- - uid: 8654
- components:
- - type: Transform
- pos: 14.5,72.5
- parent: 2
- - uid: 8655
- components:
- - type: Transform
- pos: 53.5,-6.5
- parent: 2
- - uid: 8656
- components:
- - type: Transform
- pos: 14.5,56.5
- parent: 2
- - uid: 8657
- components:
- - type: Transform
- pos: 49.5,-46.5
- parent: 2
- - uid: 8658
- components:
- - type: Transform
- pos: 15.5,56.5
- parent: 2
- - uid: 8659
- components:
- - type: Transform
- pos: 18.5,52.5
- parent: 2
- - uid: 8660
- components:
- - type: Transform
- pos: 53.5,-7.5
- parent: 2
- - uid: 8661
- components:
- - type: Transform
- pos: 10.5,43.5
- parent: 2
- - uid: 8662
- components:
- - type: Transform
- pos: 9.5,88.5
- parent: 2
- - uid: 8663
- components:
- - type: Transform
- pos: 18.5,18.5
- parent: 2
- - uid: 8664
- components:
- - type: Transform
- pos: -53.5,-21.5
- parent: 2
- - uid: 8665
- components:
- - type: Transform
- pos: -35.5,-19.5
- parent: 2
- - uid: 8666
- components:
- - type: Transform
- pos: 24.5,-55.5
- parent: 2
- - uid: 8667
- components:
- - type: Transform
- pos: 26.5,-15.5
- parent: 2
- - uid: 8668
- components:
- - type: Transform
- pos: 17.5,-52.5
- parent: 2
- - uid: 8669
- components:
- - type: Transform
- pos: 27.5,-15.5
- parent: 2
- - uid: 8670
- components:
- - type: Transform
- pos: 10.5,56.5
- parent: 2
- - uid: 8671
- components:
- - type: Transform
- pos: -73.5,-20.5
- parent: 2
- - uid: 8672
- components:
- - type: Transform
- pos: -32.5,-19.5
- parent: 2
- - uid: 8673
- components:
- - type: Transform
- pos: -54.5,-21.5
- parent: 2
- - uid: 8674
- components:
- - type: Transform
- pos: -50.5,-21.5
- parent: 2
- - uid: 8675
- components:
- - type: Transform
- pos: 47.5,-46.5
- parent: 2
- - uid: 8676
- components:
- - type: Transform
- pos: -47.5,-74.5
- parent: 2
- - uid: 8677
- components:
- - type: Transform
- pos: 53.5,-8.5
- parent: 2
- - uid: 8678
- components:
- - type: Transform
- pos: -57.5,-6.5
- parent: 2
- - uid: 8679
- components:
- - type: Transform
- pos: 37.5,-3.5
- parent: 2
- - uid: 8680
- components:
- - type: Transform
- pos: 35.5,-3.5
- parent: 2
- - uid: 8681
- components:
- - type: Transform
- pos: 22.5,18.5
- parent: 2
- - uid: 8682
- components:
- - type: Transform
- pos: 18.5,-9.5
- parent: 2
- - uid: 8683
- components:
- - type: Transform
- pos: 17.5,20.5
- parent: 2
- - uid: 8684
- components:
- - type: Transform
- pos: -29.5,-57.5
- parent: 2
- - uid: 8685
- components:
- - type: Transform
- pos: -37.5,39.5
- parent: 2
- - uid: 8686
- components:
- - type: Transform
- pos: -35.5,-71.5
- parent: 2
- - uid: 8687
- components:
- - type: Transform
- pos: -13.5,-19.5
- parent: 2
- - uid: 8688
- components:
- - type: Transform
- pos: 51.5,-30.5
- parent: 2
- - uid: 8689
- components:
- - type: Transform
- pos: 10.5,44.5
- parent: 2
- - uid: 8690
- components:
- - type: Transform
- pos: 10.5,88.5
- parent: 2
- - uid: 8691
- components:
- - type: Transform
- pos: -55.5,-80.5
- parent: 2
- - uid: 8692
- components:
- - type: Transform
- pos: 17.5,7.5
- parent: 2
- - uid: 8693
- components:
- - type: Transform
- pos: 16.5,56.5
- parent: 2
- - uid: 8694
- components:
- - type: Transform
- pos: -53.5,-80.5
- parent: 2
- - uid: 8695
- components:
- - type: Transform
- pos: -49.5,-90.5
- parent: 2
- - uid: 8696
- components:
- - type: Transform
- pos: -50.5,-81.5
- parent: 2
- - uid: 8697
- components:
- - type: Transform
- pos: -52.5,-81.5
- parent: 2
- - uid: 8698
- components:
- - type: Transform
- pos: 18.5,-10.5
- parent: 2
- - uid: 8699
- components:
- - type: Transform
- pos: 1.5,-7.5
- parent: 2
- - uid: 8700
- components:
- - type: Transform
- pos: -41.5,19.5
- parent: 2
- - uid: 8701
- components:
- - type: Transform
- pos: -37.5,-71.5
- parent: 2
- - uid: 8702
- components:
- - type: Transform
- pos: 18.5,-11.5
- parent: 2
- - uid: 8703
- components:
- - type: Transform
- pos: -38.5,-73.5
- parent: 2
- - uid: 8704
- components:
- - type: Transform
- pos: -0.5,-7.5
- parent: 2
- - uid: 8705
- components:
- - type: Transform
- pos: 30.5,100.5
- parent: 2
- - uid: 8706
- components:
- - type: Transform
- pos: 30.5,98.5
- parent: 2
- - uid: 8707
- components:
- - type: Transform
- pos: 81.5,-44.5
- parent: 2
- - uid: 8708
- components:
- - type: Transform
- pos: -41.5,18.5
- parent: 2
- - uid: 8709
- components:
- - type: Transform
- pos: -41.5,17.5
- parent: 2
- - uid: 8710
- components:
- - type: Transform
- pos: -49.5,-81.5
- parent: 2
- - uid: 8711
- components:
- - type: Transform
- pos: 37.5,-4.5
- parent: 2
- - uid: 8712
- components:
- - type: Transform
- pos: 13.5,41.5
- parent: 2
- - uid: 8713
- components:
- - type: Transform
- pos: -56.5,-86.5
- parent: 2
- - uid: 8714
- components:
- - type: Transform
- pos: 13.5,42.5
- parent: 2
- - uid: 8715
- components:
- - type: Transform
- pos: 10.5,87.5
- parent: 2
- - uid: 8716
- components:
- - type: Transform
- pos: 13.5,72.5
- parent: 2
- - uid: 8717
- components:
- - type: Transform
- pos: -42.5,32.5
- parent: 2
- - uid: 8718
- components:
- - type: Transform
- pos: 12.5,45.5
- parent: 2
- - uid: 8719
- components:
- - type: Transform
- pos: 11.5,45.5
- parent: 2
- - uid: 8720
- components:
- - type: Transform
- pos: 14.5,41.5
- parent: 2
- - uid: 8721
- components:
- - type: Transform
- pos: 23.5,-20.5
- parent: 2
- - uid: 8722
- components:
- - type: Transform
- pos: -56.5,-88.5
- parent: 2
- - uid: 8723
- components:
- - type: Transform
- pos: -57.5,-86.5
- parent: 2
- - uid: 8724
- components:
- - type: Transform
- pos: 18.5,41.5
- parent: 2
- - uid: 8725
- components:
- - type: Transform
- pos: 21.5,40.5
- parent: 2
- - uid: 8726
- components:
- - type: Transform
- pos: 20.5,41.5
- parent: 2
- - uid: 8727
- components:
- - type: Transform
- pos: 25.5,-20.5
- parent: 2
- - uid: 8728
- components:
- - type: Transform
- pos: -57.5,-88.5
- parent: 2
- - uid: 8729
- components:
- - type: Transform
- pos: 33.5,94.5
- parent: 2
- - uid: 8730
- components:
- - type: Transform
- pos: 10.5,85.5
- parent: 2
- - uid: 8731
- components:
- - type: Transform
- pos: -42.5,27.5
- parent: 2
- - uid: 8732
- components:
- - type: Transform
- pos: -42.5,29.5
- parent: 2
- - uid: 8733
- components:
- - type: Transform
- pos: 4.5,-47.5
- parent: 2
- - uid: 8734
- components:
- - type: Transform
- pos: 21.5,30.5
- parent: 2
- - uid: 8735
- components:
- - type: Transform
- pos: -77.5,73.5
- parent: 2
- - uid: 8736
- components:
- - type: Transform
- pos: -79.5,73.5
- parent: 2
- - uid: 8737
- components:
- - type: Transform
- pos: 7.5,60.5
- parent: 2
- - uid: 8738
- components:
- - type: Transform
- pos: -72.5,77.5
- parent: 2
- - uid: 8739
- components:
- - type: Transform
- pos: -51.5,8.5
- parent: 2
- - uid: 8740
- components:
- - type: Transform
- pos: -78.5,73.5
- parent: 2
- - uid: 8741
- components:
- - type: Transform
- pos: -47.5,0.5
- parent: 2
- - uid: 8742
- components:
- - type: Transform
- pos: -48.5,4.5
- parent: 2
- - uid: 8743
- components:
- - type: Transform
- pos: -48.5,0.5
- parent: 2
- - uid: 8744
- components:
- - type: Transform
- pos: -51.5,9.5
- parent: 2
- - uid: 8745
- components:
- - type: Transform
- pos: -73.5,77.5
- parent: 2
- - uid: 8746
- components:
- - type: Transform
- pos: -57.5,46.5
- parent: 2
- - uid: 8747
- components:
- - type: Transform
- pos: -56.5,2.5
- parent: 2
- - uid: 8748
- components:
- - type: Transform
- pos: -63.5,66.5
- parent: 2
- - uid: 8749
- components:
- - type: Transform
- pos: -61.5,66.5
- parent: 2
- - uid: 8750
- components:
- - type: Transform
- pos: -39.5,-74.5
- parent: 2
- - uid: 8751
- components:
- - type: Transform
- pos: 18.5,-13.5
- parent: 2
- - uid: 8752
- components:
- - type: Transform
- pos: -38.5,-72.5
- parent: 2
- - uid: 8753
- components:
- - type: Transform
- pos: -41.5,16.5
- parent: 2
- - uid: 8754
- components:
- - type: Transform
- pos: 31.5,100.5
- parent: 2
- - uid: 8755
- components:
- - type: Transform
- pos: 13.5,88.5
- parent: 2
- - uid: 8756
- components:
- - type: Transform
- pos: -54.5,2.5
- parent: 2
- - uid: 8757
- components:
- - type: Transform
- pos: 13.5,56.5
- parent: 2
- - uid: 8758
- components:
- - type: Transform
- pos: -71.5,69.5
- parent: 2
- - uid: 8759
- components:
- - type: Transform
- pos: -57.5,52.5
- parent: 2
- - uid: 8760
- components:
- - type: Transform
- pos: -68.5,74.5
- parent: 2
- - uid: 8761
- components:
- - type: Transform
- pos: -57.5,-6.5
- parent: 2
- - uid: 8762
- components:
- - type: Transform
- pos: -51.5,7.5
- parent: 2
- - uid: 8763
- components:
- - type: Transform
- pos: -45.5,-0.5
- parent: 2
- - uid: 8764
- components:
- - type: Transform
- pos: -61.5,-25.5
- parent: 2
- - uid: 8765
- components:
- - type: Transform
- pos: -61.5,-24.5
- parent: 2
- - uid: 8766
- components:
- - type: Transform
- pos: -53.5,-81.5
- parent: 2
- - uid: 8767
- components:
- - type: Transform
- pos: 18.5,46.5
- parent: 2
- - uid: 8768
- components:
- - type: Transform
- pos: -56.5,-80.5
- parent: 2
- - uid: 8769
- components:
- - type: Transform
- pos: 27.5,31.5
- parent: 2
- - uid: 8770
- components:
- - type: Transform
- pos: -38.5,37.5
- parent: 2
- - uid: 8771
- components:
- - type: Transform
- pos: 17.5,-8.5
- parent: 2
- - uid: 8772
- components:
- - type: Transform
- pos: -69.5,77.5
- parent: 2
- - uid: 8773
- components:
- - type: Transform
- pos: -57.5,47.5
- parent: 2
- - uid: 8774
- components:
- - type: Transform
- pos: -57.5,48.5
- parent: 2
- - uid: 8775
- components:
- - type: Transform
- pos: -43.5,-74.5
- parent: 2
- - uid: 8776
- components:
- - type: Transform
- pos: -44.5,39.5
- parent: 2
- - uid: 8777
- components:
- - type: Transform
- pos: -15.5,-8.5
- parent: 2
- - uid: 8778
- components:
- - type: Transform
- pos: 33.5,-5.5
- parent: 2
- - uid: 8779
- components:
- - type: Transform
- pos: 17.5,-50.5
- parent: 2
- - uid: 8780
- components:
- - type: Transform
- pos: 22.5,92.5
- parent: 2
- - uid: 8781
- components:
- - type: Transform
- pos: -69.5,68.5
- parent: 2
- - uid: 8782
- components:
- - type: Transform
- pos: -59.5,15.5
- parent: 2
- - uid: 8783
- components:
- - type: Transform
- pos: -78.5,74.5
- parent: 2
- - uid: 8784
- components:
- - type: Transform
- pos: -72.5,72.5
- parent: 2
- - uid: 8785
- components:
- - type: Transform
- pos: 24.5,92.5
- parent: 2
- - uid: 8786
- components:
- - type: Transform
- pos: -38.5,-74.5
- parent: 2
- - uid: 8787
- components:
- - type: Transform
- pos: 18.5,-12.5
- parent: 2
- - uid: 8788
- components:
- - type: Transform
- pos: -41.5,15.5
- parent: 2
- - uid: 8789
- components:
- - type: Transform
- pos: -41.5,14.5
- parent: 2
- - uid: 8790
- components:
- - type: Transform
- pos: -38.5,-71.5
- parent: 2
- - uid: 8791
- components:
- - type: Transform
- pos: 14.5,65.5
- parent: 2
- - uid: 8792
- components:
- - type: Transform
- pos: -48.5,-85.5
- parent: 2
- - uid: 8793
- components:
- - type: Transform
- pos: 10.5,61.5
- parent: 2
- - uid: 8794
- components:
- - type: Transform
- pos: 78.5,-37.5
- parent: 2
- - uid: 8795
- components:
- - type: Transform
- pos: 17.5,22.5
- parent: 2
- - uid: 8796
- components:
- - type: Transform
- pos: 26.5,-55.5
- parent: 2
- - uid: 8797
- components:
- - type: Transform
- pos: -68.5,-20.5
- parent: 2
- - uid: 8798
- components:
- - type: Transform
- pos: -38.5,-26.5
- parent: 2
- - uid: 8799
- components:
- - type: Transform
- pos: -0.5,-33.5
- parent: 2
- - uid: 8800
- components:
- - type: Transform
- pos: -36.5,-9.5
- parent: 2
- - uid: 8801
- components:
- - type: Transform
- pos: 19.5,24.5
- parent: 2
- - uid: 8802
- components:
- - type: Transform
- pos: -64.5,-20.5
- parent: 2
- - uid: 8803
- components:
- - type: Transform
- pos: 30.5,-55.5
- parent: 2
- - uid: 8804
- components:
- - type: Transform
- pos: 31.5,98.5
- parent: 2
- - uid: 8805
- components:
- - type: Transform
- pos: -45.5,-2.5
- parent: 2
- - uid: 8806
- components:
- - type: Transform
- pos: 40.5,-4.5
- parent: 2
- - uid: 8807
- components:
- - type: Transform
- pos: 85.5,-42.5
- parent: 2
- - uid: 8808
- components:
- - type: Transform
- pos: 84.5,-42.5
- parent: 2
- - uid: 8809
- components:
- - type: Transform
- pos: 33.5,96.5
- parent: 2
- - uid: 8810
- components:
- - type: Transform
- pos: -46.5,-88.5
- parent: 2
- - uid: 8811
- components:
- - type: Transform
- pos: 11.5,80.5
- parent: 2
- - uid: 8812
- components:
- - type: Transform
- pos: -55.5,-84.5
- parent: 2
- - uid: 8813
- components:
- - type: Transform
- pos: 51.5,-42.5
- parent: 2
- - uid: 8814
- components:
- - type: Transform
- pos: -0.5,-37.5
- parent: 2
- - uid: 8815
- components:
- - type: Transform
- pos: -42.5,-26.5
- parent: 2
- - uid: 8816
- components:
- - type: Transform
- pos: 79.5,-43.5
- parent: 2
- - uid: 8817
- components:
- - type: Transform
- pos: -71.5,-20.5
- parent: 2
- - uid: 8818
- components:
- - type: Transform
- pos: -20.5,-19.5
- parent: 2
- - uid: 8819
- components:
- - type: Transform
- pos: -19.5,-19.5
- parent: 2
- - uid: 8820
- components:
- - type: Transform
- pos: -24.5,-19.5
- parent: 2
- - uid: 8821
- components:
- - type: Transform
- pos: -18.5,-19.5
- parent: 2
- - uid: 8822
- components:
- - type: Transform
- pos: -23.5,-19.5
- parent: 2
- - uid: 8823
- components:
- - type: Transform
- pos: -31.5,-57.5
- parent: 2
- - uid: 8824
- components:
- - type: Transform
- pos: 81.5,-40.5
- parent: 2
- - uid: 8825
- components:
- - type: Transform
- pos: -0.5,-29.5
- parent: 2
- - uid: 8826
- components:
- - type: Transform
- pos: 44.5,-7.5
- parent: 2
- - uid: 8827
- components:
- - type: Transform
- pos: -0.5,-28.5
- parent: 2
- - uid: 8828
- components:
- - type: Transform
- pos: -28.5,-26.5
- parent: 2
- - uid: 8829
- components:
- - type: Transform
- pos: -41.5,37.5
- parent: 2
- - uid: 8830
- components:
- - type: Transform
- pos: -31.5,-26.5
- parent: 2
- - uid: 8831
- components:
- - type: Transform
- pos: 22.5,-19.5
- parent: 2
- - uid: 8832
- components:
- - type: Transform
- pos: 21.5,-19.5
- parent: 2
- - uid: 8833
- components:
- - type: Transform
- pos: 20.5,-19.5
- parent: 2
- - uid: 8834
- components:
- - type: Transform
- pos: -25.5,-33.5
- parent: 2
- - uid: 8835
- components:
- - type: Transform
- pos: -42.5,26.5
- parent: 2
- - uid: 8836
- components:
- - type: Transform
- pos: 17.5,87.5
- parent: 2
- - uid: 8837
- components:
- - type: Transform
- pos: -71.5,74.5
- parent: 2
- - uid: 8838
- components:
- - type: Transform
- pos: -62.5,66.5
- parent: 2
- - uid: 8839
- components:
- - type: Transform
- pos: 44.5,-46.5
- parent: 2
- - uid: 8840
- components:
- - type: Transform
- pos: 30.5,99.5
- parent: 2
- - uid: 8841
- components:
- - type: Transform
- pos: -19.5,-30.5
- parent: 2
- - uid: 8842
- components:
- - type: Transform
- pos: -41.5,20.5
- parent: 2
- - uid: 8843
- components:
- - type: Transform
- pos: 18.5,-16.5
- parent: 2
- - uid: 8844
- components:
- - type: Transform
- pos: 18.5,-15.5
- parent: 2
- - uid: 8845
- components:
- - type: Transform
- pos: 18.5,-14.5
- parent: 2
- - uid: 8846
- components:
- - type: Transform
- pos: -40.5,-74.5
- parent: 2
- - uid: 8847
- components:
- - type: Transform
- pos: 25.5,92.5
- parent: 2
- - uid: 8848
- components:
- - type: Transform
- pos: 80.5,-39.5
- parent: 2
- - uid: 8849
- components:
- - type: Transform
- pos: 39.5,-4.5
- parent: 2
- - uid: 8850
- components:
- - type: Transform
- pos: -17.5,-13.5
- parent: 2
- - uid: 8851
- components:
- - type: Transform
- pos: 82.5,-36.5
- parent: 2
- - uid: 8852
- components:
- - type: Transform
- pos: 51.5,-45.5
- parent: 2
- - uid: 8853
- components:
- - type: Transform
- pos: -57.5,-19.5
- parent: 2
- - uid: 8854
- components:
- - type: Transform
- pos: 37.5,-54.5
- parent: 2
- - uid: 8855
- components:
- - type: Transform
- pos: 24.5,24.5
- parent: 2
- - uid: 8856
- components:
- - type: Transform
- pos: 12.5,64.5
- parent: 2
- - uid: 8857
- components:
- - type: Transform
- pos: -46.5,-86.5
- parent: 2
- - uid: 8858
- components:
- - type: Transform
- pos: -58.5,-84.5
- parent: 2
- - uid: 8859
- components:
- - type: Transform
- pos: 10.5,-50.5
- parent: 2
- - uid: 8860
- components:
- - type: Transform
- pos: -45.5,-80.5
- parent: 2
- - uid: 8861
- components:
- - type: Transform
- pos: -80.5,77.5
- parent: 2
- - uid: 8862
- components:
- - type: Transform
- pos: -70.5,74.5
- parent: 2
- - uid: 8863
- components:
- - type: Transform
- pos: -72.5,76.5
- parent: 2
- - uid: 8864
- components:
- - type: Transform
- pos: -72.5,12.5
- parent: 2
- - uid: 8865
- components:
- - type: Transform
- pos: -77.5,70.5
- parent: 2
- - uid: 8866
- components:
- - type: Transform
- pos: 3.5,-40.5
- parent: 2
- - uid: 8867
- components:
- - type: Transform
- pos: -45.5,1.5
- parent: 2
- - uid: 8868
- components:
- - type: Transform
- pos: -47.5,1.5
- parent: 2
- - uid: 8869
- components:
- - type: Transform
- pos: 26.5,90.5
- parent: 2
- - uid: 8870
- components:
- - type: Transform
- pos: 26.5,100.5
- parent: 2
- - uid: 8871
- components:
- - type: Transform
- pos: 78.5,-39.5
- parent: 2
- - uid: 8872
- components:
- - type: Transform
- pos: -44.5,-19.5
- parent: 2
- - uid: 8873
- components:
- - type: Transform
- pos: 4.5,-50.5
- parent: 2
- - uid: 8874
- components:
- - type: Transform
- pos: 17.5,11.5
- parent: 2
- - uid: 8875
- components:
- - type: Transform
- pos: 30.5,-15.5
- parent: 2
- - uid: 8876
- components:
- - type: Transform
- pos: -17.5,-19.5
- parent: 2
- - uid: 8877
- components:
- - type: Transform
- pos: -22.5,-19.5
- parent: 2
- - uid: 8878
- components:
- - type: Transform
- pos: -66.5,-20.5
- parent: 2
- - uid: 8879
- components:
- - type: Transform
- pos: -70.5,-20.5
- parent: 2
- - uid: 8880
- components:
- - type: Transform
- pos: 18.5,47.5
- parent: 2
- - uid: 8881
- components:
- - type: Transform
- pos: -42.5,12.5
- parent: 2
- - uid: 8882
- components:
- - type: Transform
- pos: -17.5,-15.5
- parent: 2
- - uid: 8883
- components:
- - type: Transform
- pos: 20.5,24.5
- parent: 2
- - uid: 8884
- components:
- - type: Transform
- pos: 32.5,-55.5
- parent: 2
- - uid: 8885
- components:
- - type: Transform
- pos: 33.5,-14.5
- parent: 2
- - uid: 8886
- components:
- - type: Transform
- pos: -48.5,-84.5
- parent: 2
- - uid: 8887
- components:
- - type: Transform
- pos: -119.5,23.5
- parent: 2
- - uid: 8888
- components:
- - type: Transform
- pos: 26.5,99.5
- parent: 2
- - uid: 8889
- components:
- - type: Transform
- pos: 33.5,-12.5
- parent: 2
- - uid: 8890
- components:
- - type: Transform
- pos: -17.5,-14.5
- parent: 2
- - uid: 8891
- components:
- - type: Transform
- pos: -41.5,12.5
- parent: 2
- - uid: 8892
- components:
- - type: Transform
- pos: -71.5,11.5
- parent: 2
- - uid: 8893
- components:
- - type: Transform
- pos: -61.5,-6.5
- parent: 2
- - uid: 8894
- components:
- - type: Transform
- pos: -53.5,16.5
- parent: 2
- - uid: 8895
- components:
- - type: Transform
- pos: -53.5,17.5
- parent: 2
- - uid: 8896
- components:
- - type: Transform
- pos: -77.5,68.5
- parent: 2
- - uid: 8897
- components:
- - type: Transform
- pos: -53.5,18.5
- parent: 2
- - uid: 8898
- components:
- - type: Transform
- pos: -60.5,66.5
- parent: 2
- - uid: 8899
- components:
- - type: Transform
- pos: -51.5,10.5
- parent: 2
- - uid: 8900
- components:
- - type: Transform
- pos: -59.5,-9.5
- parent: 2
- - uid: 8901
- components:
- - type: Transform
- pos: -53.5,22.5
- parent: 2
- - uid: 8902
- components:
- - type: Transform
- pos: 58.5,-40.5
- parent: 2
- - uid: 8903
- components:
- - type: Transform
- pos: 11.5,81.5
- parent: 2
- - uid: 8904
- components:
- - type: Transform
- pos: 41.5,-46.5
- parent: 2
- - uid: 8905
- components:
- - type: Transform
- pos: -40.5,39.5
- parent: 2
- - uid: 8906
- components:
- - type: Transform
- pos: 59.5,-40.5
- parent: 2
- - uid: 8907
- components:
- - type: Transform
- pos: 60.5,-40.5
- parent: 2
- - uid: 8908
- components:
- - type: Transform
- pos: -44.5,-86.5
- parent: 2
- - uid: 8909
- components:
- - type: Transform
- pos: 10.5,64.5
- parent: 2
- - uid: 8910
- components:
- - type: Transform
- pos: 22.5,24.5
- parent: 2
- - uid: 8911
- components:
- - type: Transform
- pos: 34.5,-55.5
- parent: 2
- - uid: 8912
- components:
- - type: Transform
- pos: -59.5,-19.5
- parent: 2
- - uid: 8913
- components:
- - type: Transform
- pos: 26.5,95.5
- parent: 2
- - uid: 8914
- components:
- - type: Transform
- pos: 61.5,-40.5
- parent: 2
- - uid: 8915
- components:
- - type: Transform
- pos: -60.5,-6.5
- parent: 2
- - uid: 8916
- components:
- - type: Transform
- pos: -34.5,-48.5
- parent: 2
- - uid: 8917
- components:
- - type: Transform
- pos: 62.5,-40.5
- parent: 2
- - uid: 8918
- components:
- - type: Transform
- pos: 63.5,-40.5
- parent: 2
- - uid: 8919
- components:
- - type: Transform
- pos: 64.5,-40.5
- parent: 2
- - uid: 8920
- components:
- - type: Transform
- pos: -121.5,26.5
- parent: 2
- - uid: 8921
- components:
- - type: Transform
- pos: -70.5,78.5
- parent: 2
- - uid: 8922
- components:
- - type: Transform
- pos: -73.5,69.5
- parent: 2
- - uid: 8923
- components:
- - type: Transform
- pos: -23.5,-31.5
- parent: 2
- - uid: 8924
- components:
- - type: Transform
- pos: 65.5,-40.5
- parent: 2
- - uid: 8925
- components:
- - type: Transform
- pos: 26.5,92.5
- parent: 2
- - uid: 8926
- components:
- - type: Transform
- pos: 35.5,94.5
- parent: 2
- - uid: 8927
- components:
- - type: Transform
- pos: 32.5,96.5
- parent: 2
- - uid: 8928
- components:
- - type: Transform
- pos: -28.5,-19.5
- parent: 2
- - uid: 8929
- components:
- - type: Transform
- pos: -54.5,-80.5
- parent: 2
- - uid: 8930
- components:
- - type: Transform
- pos: 52.5,-40.5
- parent: 2
- - uid: 8931
- components:
- - type: Transform
- pos: 17.5,19.5
- parent: 2
- - uid: 8932
- components:
- - type: Transform
- pos: 24.5,-54.5
- parent: 2
- - uid: 8933
- components:
- - type: Transform
- pos: -74.5,-20.5
- parent: 2
- - uid: 8934
- components:
- - type: Transform
- pos: -31.5,-56.5
- parent: 2
- - uid: 8935
- components:
- - type: Transform
- pos: -52.5,-21.5
- parent: 2
- - uid: 8936
- components:
- - type: Transform
- pos: -37.5,40.5
- parent: 2
- - uid: 8937
- components:
- - type: Transform
- pos: -36.5,-71.5
- parent: 2
- - uid: 8938
- components:
- - type: Transform
- pos: -12.5,-19.5
- parent: 2
- - uid: 8939
- components:
- - type: Transform
- pos: -42.5,35.5
- parent: 2
- - uid: 8940
- components:
- - type: Transform
- pos: 33.5,90.5
- parent: 2
- - uid: 8941
- components:
- - type: Transform
- pos: 14.5,-1.5
- parent: 2
- - uid: 8942
- components:
- - type: Transform
- pos: 51.5,-43.5
- parent: 2
- - uid: 8943
- components:
- - type: Transform
- pos: 53.5,-40.5
- parent: 2
- - uid: 8944
- components:
- - type: Transform
- pos: -69.5,78.5
- parent: 2
- - uid: 8945
- components:
- - type: Transform
- pos: -70.5,68.5
- parent: 2
- - uid: 8946
- components:
- - type: Transform
- pos: -51.5,5.5
- parent: 2
- - uid: 8947
- components:
- - type: Transform
- pos: 54.5,-40.5
- parent: 2
- - uid: 8948
- components:
- - type: Transform
- pos: 55.5,-40.5
- parent: 2
- - uid: 8949
- components:
- - type: Transform
- pos: 16.5,41.5
- parent: 2
- - uid: 8950
- components:
- - type: Transform
- pos: -55.5,-88.5
- parent: 2
- - uid: 8951
- components:
- - type: Transform
- pos: 80.5,-36.5
- parent: 2
- - uid: 8952
- components:
- - type: Transform
- pos: 56.5,-40.5
- parent: 2
- - uid: 8953
- components:
- - type: Transform
- pos: -57.5,59.5
- parent: 2
- - uid: 8954
- components:
- - type: Transform
- pos: 24.5,96.5
- parent: 2
- - uid: 8955
- components:
- - type: Transform
- pos: 78.5,-38.5
- parent: 2
- - uid: 8956
- components:
- - type: Transform
- pos: -55.5,-20.5
- parent: 2
- - uid: 8957
- components:
- - type: Transform
- pos: 37.5,-51.5
- parent: 2
- - uid: 8958
- components:
- - type: Transform
- pos: 21.5,26.5
- parent: 2
- - uid: 8959
- components:
- - type: Transform
- pos: 14.5,66.5
- parent: 2
- - uid: 8960
- components:
- - type: Transform
- pos: -49.5,-85.5
- parent: 2
- - uid: 8961
- components:
- - type: Transform
- pos: -58.5,-86.5
- parent: 2
- - uid: 8962
- components:
- - type: Transform
- pos: -60.5,-19.5
- parent: 2
- - uid: 8963
- components:
- - type: Transform
- pos: -17.5,-9.5
- parent: 2
- - uid: 8964
- components:
- - type: Transform
- pos: 51.5,-38.5
- parent: 2
- - uid: 8965
- components:
- - type: Transform
- pos: -0.5,-23.5
- parent: 2
- - uid: 8966
- components:
- - type: Transform
- pos: -28.5,-27.5
- parent: 2
- - uid: 8967
- components:
- - type: Transform
- pos: -24.5,-33.5
- parent: 2
- - uid: 8968
- components:
- - type: Transform
- pos: -42.5,25.5
- parent: 2
- - uid: 8969
- components:
- - type: Transform
- pos: 18.5,87.5
- parent: 2
- - uid: 8970
- components:
- - type: Transform
- pos: 86.5,-42.5
- parent: 2
- - uid: 8971
- components:
- - type: Transform
- pos: 51.5,-33.5
- parent: 2
- - uid: 8972
- components:
- - type: Transform
- pos: -69.5,66.5
- parent: 2
- - uid: 8973
- components:
- - type: Transform
- pos: -81.5,69.5
- parent: 2
- - uid: 8974
- components:
- - type: Transform
- pos: -95.5,-8.5
- parent: 2
- - uid: 8975
- components:
- - type: Transform
- pos: -63.5,2.5
- parent: 2
- - uid: 8976
- components:
- - type: Transform
- pos: 2.5,-38.5
- parent: 2
- - uid: 8977
- components:
- - type: Transform
- pos: -77.5,78.5
- parent: 2
- - uid: 8978
- components:
- - type: Transform
- pos: -81.5,78.5
- parent: 2
- - uid: 8979
- components:
- - type: Transform
- pos: -17.5,-16.5
- parent: 2
- - uid: 8980
- components:
- - type: Transform
- pos: 33.5,-6.5
- parent: 2
- - uid: 8981
- components:
- - type: Transform
- pos: -16.5,-8.5
- parent: 2
- - uid: 8982
- components:
- - type: Transform
- pos: -43.5,39.5
- parent: 2
- - uid: 8983
- components:
- - type: Transform
- pos: -43.5,-73.5
- parent: 2
- - uid: 8984
- components:
- - type: Transform
- pos: -49.5,-88.5
- parent: 2
- - uid: 8985
- components:
- - type: Transform
- pos: 17.5,2.5
- parent: 2
- - uid: 8986
- components:
- - type: Transform
- pos: 44.5,-9.5
- parent: 2
- - uid: 8987
- components:
- - type: Transform
- pos: 11.5,82.5
- parent: 2
- - uid: 8988
- components:
- - type: Transform
- pos: -6.5,-8.5
- parent: 2
- - uid: 8989
- components:
- - type: Transform
- pos: 46.5,-10.5
- parent: 2
- - uid: 8990
- components:
- - type: Transform
- pos: 86.5,-46.5
- parent: 2
- - uid: 8991
- components:
- - type: Transform
- pos: 18.5,49.5
- parent: 2
- - uid: 8992
- components:
- - type: Transform
- pos: -41.5,-26.5
- parent: 2
- - uid: 8993
- components:
- - type: Transform
- pos: -0.5,-36.5
- parent: 2
- - uid: 8994
- components:
- - type: Transform
- pos: 51.5,-41.5
- parent: 2
- - uid: 8995
- components:
- - type: Transform
- pos: 18.5,50.5
- parent: 2
- - uid: 8996
- components:
- - type: Transform
- pos: -53.5,-82.5
- parent: 2
- - uid: 8997
- components:
- - type: Transform
- pos: 7.5,-7.5
- parent: 2
- - uid: 8998
- components:
- - type: Transform
- pos: -43.5,-19.5
- parent: 2
- - uid: 8999
- components:
- - type: Transform
- pos: -17.5,-18.5
- parent: 2
- - uid: 9000
- components:
- - type: Transform
- pos: -63.5,-20.5
- parent: 2
- - uid: 9001
- components:
- - type: Transform
- pos: -45.5,12.5
- parent: 2
- - uid: 9002
- components:
- - type: Transform
- pos: -30.5,-57.5
- parent: 2
- - uid: 9003
- components:
- - type: Transform
- pos: -43.5,-26.5
- parent: 2
- - uid: 9004
- components:
- - type: Transform
- pos: 10.5,59.5
- parent: 2
- - uid: 9005
- components:
- - type: Transform
- pos: -56.5,-84.5
- parent: 2
- - uid: 9006
- components:
- - type: Transform
- pos: -23.5,-33.5
- parent: 2
- - uid: 9007
- components:
- - type: Transform
- pos: -41.5,23.5
- parent: 2
- - uid: 9008
- components:
- - type: Transform
- pos: 21.5,87.5
- parent: 2
- - uid: 9009
- components:
- - type: Transform
- pos: -5.5,-8.5
- parent: 2
- - uid: 9010
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 2
- - uid: 9011
- components:
- - type: Transform
- pos: 47.5,-10.5
- parent: 2
- - uid: 9012
- components:
- - type: Transform
- pos: 51.5,-39.5
- parent: 2
- - uid: 9013
- components:
- - type: Transform
- pos: -31.5,-55.5
- parent: 2
- - uid: 9014
- components:
- - type: Transform
- pos: 25.5,-15.5
- parent: 2
- - uid: 9015
- components:
- - type: Transform
- pos: -33.5,-19.5
- parent: 2
- - uid: 9016
- components:
- - type: Transform
- pos: 82.5,-38.5
- parent: 2
- - uid: 9017
- components:
- - type: Transform
- pos: 26.5,98.5
- parent: 2
- - uid: 9018
- components:
- - type: Transform
- pos: 32.5,92.5
- parent: 2
- - uid: 9019
- components:
- - type: Transform
- pos: 10.5,-4.5
- parent: 2
- - uid: 9020
- components:
- - type: Transform
- pos: 33.5,100.5
- parent: 2
- - uid: 9021
- components:
- - type: Transform
- pos: 82.5,-48.5
- parent: 2
- - uid: 9022
- components:
- - type: Transform
- pos: -36.5,-18.5
- parent: 2
- - uid: 9023
- components:
- - type: Transform
- pos: -4.5,-19.5
- parent: 2
- - uid: 9024
- components:
- - type: Transform
- pos: 50.5,-10.5
- parent: 2
- - uid: 9025
- components:
- - type: Transform
- pos: 10.5,42.5
- parent: 2
- - uid: 9026
- components:
- - type: Transform
- pos: 10.5,63.5
- parent: 2
- - uid: 9027
- components:
- - type: Transform
- pos: -41.5,5.5
- parent: 2
- - uid: 9028
- components:
- - type: Transform
- pos: 10.5,45.5
- parent: 2
- - uid: 9029
- components:
- - type: Transform
- pos: 11.5,87.5
- parent: 2
- - uid: 9030
- components:
- - type: Transform
- pos: 17.5,18.5
- parent: 2
- - uid: 9031
- components:
- - type: Transform
- pos: -45.5,-90.5
- parent: 2
- - uid: 9032
- components:
- - type: Transform
- pos: -54.5,-84.5
- parent: 2
- - uid: 9033
- components:
- - type: Transform
- pos: -1.5,-19.5
- parent: 2
- - uid: 9034
- components:
- - type: Transform
- pos: 13.5,45.5
- parent: 2
- - uid: 9035
- components:
- - type: Transform
- pos: 10.5,86.5
- parent: 2
- - uid: 9036
- components:
- - type: Transform
- pos: 26.5,91.5
- parent: 2
- - uid: 9037
- components:
- - type: Transform
- pos: 34.5,90.5
- parent: 2
- - uid: 9038
- components:
- - type: Transform
- pos: 85.5,-44.5
- parent: 2
- - uid: 9039
- components:
- - type: Transform
- pos: -41.5,-19.5
- parent: 2
- - uid: 9040
- components:
- - type: Transform
- pos: -42.5,-73.5
- parent: 2
- - uid: 9041
- components:
- - type: Transform
- pos: -45.5,-74.5
- parent: 2
- - uid: 9042
- components:
- - type: Transform
- pos: -77.5,69.5
- parent: 2
- - uid: 9043
- components:
- - type: Transform
- pos: -74.5,73.5
- parent: 2
- - uid: 9044
- components:
- - type: Transform
- pos: -73.5,70.5
- parent: 2
- - uid: 9045
- components:
- - type: Transform
- pos: -79.5,72.5
- parent: 2
- - uid: 9046
- components:
- - type: Transform
- pos: -59.5,61.5
- parent: 2
- - uid: 9047
- components:
- - type: Transform
- pos: -80.5,74.5
- parent: 2
- - uid: 9048
- components:
- - type: Transform
- pos: 5.5,-40.5
- parent: 2
- - uid: 9049
- components:
- - type: Transform
- pos: 18.5,44.5
- parent: 2
- - uid: 9050
- components:
- - type: Transform
- pos: -17.5,-12.5
- parent: 2
- - uid: 9051
- components:
- - type: Transform
- pos: 81.5,-41.5
- parent: 2
- - uid: 9052
- components:
- - type: Transform
- pos: 21.5,27.5
- parent: 2
- - uid: 9053
- components:
- - type: Transform
- pos: -49.5,12.5
- parent: 2
- - uid: 9054
- components:
- - type: Transform
- pos: -25.5,-71.5
- parent: 2
- - uid: 9055
- components:
- - type: Transform
- pos: 45.5,-10.5
- parent: 2
- - uid: 9056
- components:
- - type: Transform
- pos: -3.5,-8.5
- parent: 2
- - uid: 9057
- components:
- - type: Transform
- pos: 25.5,87.5
- parent: 2
- - uid: 9058
- components:
- - type: Transform
- pos: 42.5,-28.5
- parent: 2
- - uid: 9059
- components:
- - type: Transform
- pos: 17.5,12.5
- parent: 2
- - uid: 9060
- components:
- - type: Transform
- pos: 22.5,90.5
- parent: 2
- - uid: 9061
- components:
- - type: Transform
- pos: -81.5,68.5
- parent: 2
- - uid: 9062
- components:
- - type: Transform
- pos: 6.5,-40.5
- parent: 2
- - uid: 9063
- components:
- - type: Transform
- pos: 9.5,56.5
- parent: 2
- - uid: 9064
- components:
- - type: Transform
- pos: -39.5,-19.5
- parent: 2
- - uid: 9065
- components:
- - type: Transform
- pos: 17.5,-5.5
- parent: 2
- - uid: 9066
- components:
- - type: Transform
- pos: -27.5,-57.5
- parent: 2
- - uid: 9067
- components:
- - type: Transform
- pos: -38.5,-1.5
- parent: 2
- - uid: 9068
- components:
- - type: Transform
- pos: 12.5,-3.5
- parent: 2
- - uid: 9069
- components:
- - type: Transform
- pos: 9.5,-7.5
- parent: 2
- - uid: 9070
- components:
- - type: Transform
- pos: -48.5,-19.5
- parent: 2
- - uid: 9071
- components:
- - type: Transform
- pos: -49.5,-22.5
- parent: 2
- - uid: 9072
- components:
- - type: Transform
- pos: 30.5,92.5
- parent: 2
- - uid: 9073
- components:
- - type: Transform
- pos: 45.5,-28.5
- parent: 2
- - uid: 9074
- components:
- - type: Transform
- pos: -25.5,-77.5
- parent: 2
- - uid: 9075
- components:
- - type: Transform
- pos: 25.5,-19.5
- parent: 2
- - uid: 9076
- components:
- - type: Transform
- pos: 24.5,-22.5
- parent: 2
- - uid: 9077
- components:
- - type: Transform
- pos: 25.5,98.5
- parent: 2
- - uid: 9078
- components:
- - type: Transform
- pos: 25.5,-18.5
- parent: 2
- - uid: 9079
- components:
- - type: Transform
- pos: 51.5,-34.5
- parent: 2
- - uid: 9080
- components:
- - type: Transform
- pos: -32.5,-26.5
- parent: 2
- - uid: 9081
- components:
- - type: Transform
- pos: -34.5,-26.5
- parent: 2
- - uid: 9082
- components:
- - type: Transform
- pos: -49.5,-19.5
- parent: 2
- - uid: 9083
- components:
- - type: Transform
- pos: 32.5,94.5
- parent: 2
- - uid: 9084
- components:
- - type: Transform
- pos: -35.5,39.5
- parent: 2
- - uid: 9085
- components:
- - type: Transform
- pos: 49.5,-28.5
- parent: 2
- - uid: 9086
- components:
- - type: Transform
- pos: 25.5,-17.5
- parent: 2
- - uid: 9087
- components:
- - type: Transform
- pos: 23.5,-22.5
- parent: 2
- - uid: 9088
- components:
- - type: Transform
- pos: 25.5,-16.5
- parent: 2
- - uid: 9089
- components:
- - type: Transform
- pos: -28.5,-57.5
- parent: 2
- - uid: 9090
- components:
- - type: Transform
- pos: 32.5,90.5
- parent: 2
- - uid: 9091
- components:
- - type: Transform
- pos: 4.5,-46.5
- parent: 2
- - uid: 9092
- components:
- - type: Transform
- pos: -42.5,30.5
- parent: 2
- - uid: 9093
- components:
- - type: Transform
- pos: 17.5,10.5
- parent: 2
- - uid: 9094
- components:
- - type: Transform
- pos: 4.5,-48.5
- parent: 2
- - uid: 9095
- components:
- - type: Transform
- pos: 10.5,-7.5
- parent: 2
- - uid: 9096
- components:
- - type: Transform
- pos: -25.5,-78.5
- parent: 2
- - uid: 9097
- components:
- - type: Transform
- pos: -39.5,-2.5
- parent: 2
- - uid: 9098
- components:
- - type: Transform
- pos: 17.5,-3.5
- parent: 2
- - uid: 9099
- components:
- - type: Transform
- pos: -26.5,-64.5
- parent: 2
- - uid: 9100
- components:
- - type: Transform
- pos: 21.5,-54.5
- parent: 2
- - uid: 9101
- components:
- - type: Transform
- pos: 15.5,-50.5
- parent: 2
- - uid: 9102
- components:
- - type: Transform
- pos: -39.5,-48.5
- parent: 2
- - uid: 9103
- components:
- - type: Transform
- pos: -78.5,72.5
- parent: 2
- - uid: 9104
- components:
- - type: Transform
- pos: -42.5,-48.5
- parent: 2
- - uid: 9105
- components:
- - type: Transform
- pos: -76.5,73.5
- parent: 2
- - uid: 9106
- components:
- - type: Transform
- pos: -80.5,78.5
- parent: 2
- - uid: 9107
- components:
- - type: Transform
- pos: 17.5,55.5
- parent: 2
- - uid: 9108
- components:
- - type: Transform
- pos: 18.5,54.5
- parent: 2
- - uid: 9109
- components:
- - type: Transform
- pos: -51.5,-92.5
- parent: 2
- - uid: 9110
- components:
- - type: Transform
- pos: 17.5,14.5
- parent: 2
- - uid: 9111
- components:
- - type: Transform
- pos: 7.5,-50.5
- parent: 2
- - uid: 9112
- components:
- - type: Transform
- pos: -47.5,-19.5
- parent: 2
- - uid: 9113
- components:
- - type: Transform
- pos: 29.5,-55.5
- parent: 2
- - uid: 9114
- components:
- - type: Transform
- pos: 24.5,-20.5
- parent: 2
- - uid: 9115
- components:
- - type: Transform
- pos: 17.5,17.5
- parent: 2
- - uid: 9116
- components:
- - type: Transform
- pos: 9.5,-50.5
- parent: 2
- - uid: 9117
- components:
- - type: Transform
- pos: -49.5,-21.5
- parent: 2
- - uid: 9118
- components:
- - type: Transform
- pos: -26.5,-68.5
- parent: 2
- - uid: 9119
- components:
- - type: Transform
- pos: -40.5,-19.5
- parent: 2
- - uid: 9120
- components:
- - type: Transform
- pos: -54.5,-90.5
- parent: 2
- - uid: 9121
- components:
- - type: Transform
- pos: 11.5,-4.5
- parent: 2
- - uid: 9122
- components:
- - type: Transform
- pos: 37.5,-22.5
- parent: 2
- - uid: 9123
- components:
- - type: Transform
- pos: -25.5,-75.5
- parent: 2
- - uid: 9124
- components:
- - type: Transform
- pos: 22.5,98.5
- parent: 2
- - uid: 9125
- components:
- - type: Transform
- pos: 88.5,-42.5
- parent: 2
- - uid: 9126
- components:
- - type: Transform
- pos: -41.5,10.5
- parent: 2
- - uid: 9127
- components:
- - type: Transform
- pos: 39.5,-46.5
- parent: 2
- - uid: 9128
- components:
- - type: Transform
- pos: 43.5,-46.5
- parent: 2
- - uid: 9129
- components:
- - type: Transform
- pos: 10.5,84.5
- parent: 2
- - uid: 9130
- components:
- - type: Transform
- pos: -41.5,-0.5
- parent: 2
- - uid: 9131
- components:
- - type: Transform
- pos: -41.5,2.5
- parent: 2
- - uid: 9132
- components:
- - type: Transform
- pos: -32.5,-71.5
- parent: 2
- - uid: 9133
- components:
- - type: Transform
- pos: 54.5,-43.5
- parent: 2
- - uid: 9134
- components:
- - type: Transform
- pos: 17.5,-2.5
- parent: 2
- - uid: 9135
- components:
- - type: Transform
- pos: 31.5,90.5
- parent: 2
- - uid: 9136
- components:
- - type: Transform
- pos: 16.5,87.5
- parent: 2
- - uid: 9137
- components:
- - type: Transform
- pos: -40.5,-48.5
- parent: 2
- - uid: 9138
- components:
- - type: Transform
- pos: 24.5,98.5
- parent: 2
- - uid: 9139
- components:
- - type: Transform
- pos: 25.5,95.5
- parent: 2
- - uid: 9140
- components:
- - type: Transform
- pos: 21.5,94.5
- parent: 2
- - uid: 9141
- components:
- - type: Transform
- pos: 24.5,100.5
- parent: 2
- - uid: 9142
- components:
- - type: Transform
- pos: 15.5,87.5
- parent: 2
- - uid: 9143
- components:
- - type: Transform
- pos: 15.5,88.5
- parent: 2
- - uid: 9144
- components:
- - type: Transform
- pos: -41.5,9.5
- parent: 2
- - uid: 9145
- components:
- - type: Transform
- pos: 84.5,-46.5
- parent: 2
- - uid: 9146
- components:
- - type: Transform
- pos: -41.5,3.5
- parent: 2
- - uid: 9147
- components:
- - type: Transform
- pos: -30.5,-71.5
- parent: 2
- - uid: 9148
- components:
- - type: Transform
- pos: 55.5,-43.5
- parent: 2
- - uid: 9149
- components:
- - type: Transform
- pos: 25.5,-22.5
- parent: 2
- - uid: 9150
- components:
- - type: Transform
- pos: -39.5,-1.5
- parent: 2
- - uid: 9151
- components:
- - type: Transform
- pos: 25.5,100.5
- parent: 2
- - uid: 9152
- components:
- - type: Transform
- pos: 84.5,-43.5
- parent: 2
- - uid: 9153
- components:
- - type: Transform
- pos: -41.5,-48.5
- parent: 2
- - uid: 9154
- components:
- - type: Transform
- pos: 36.5,-3.5
- parent: 2
- - uid: 9155
- components:
- - type: Transform
- pos: 17.5,15.5
- parent: 2
- - uid: 9156
- components:
- - type: Transform
- pos: 6.5,-50.5
- parent: 2
- - uid: 9157
- components:
- - type: Transform
- pos: -46.5,-19.5
- parent: 2
- - uid: 9158
- components:
- - type: Transform
- pos: 30.5,91.5
- parent: 2
- - uid: 9159
- components:
- - type: Transform
- pos: 79.5,-40.5
- parent: 2
- - uid: 9160
- components:
- - type: Transform
- pos: -26.5,-57.5
- parent: 2
- - uid: 9161
- components:
- - type: Transform
- pos: 17.5,56.5
- parent: 2
- - uid: 9162
- components:
- - type: Transform
- pos: -42.5,-46.5
- parent: 2
- - uid: 9163
- components:
- - type: Transform
- pos: 22.5,19.5
- parent: 2
- - uid: 9164
- components:
- - type: Transform
- pos: 54.5,-46.5
- parent: 2
- - uid: 9165
- components:
- - type: Transform
- pos: 42.5,-4.5
- parent: 2
- - uid: 9166
- components:
- - type: Transform
- pos: -57.5,-80.5
- parent: 2
- - uid: 9167
- components:
- - type: Transform
- pos: -42.5,-47.5
- parent: 2
- - uid: 9168
- components:
- - type: Transform
- pos: 84.5,-44.5
- parent: 2
- - uid: 9169
- components:
- - type: Transform
- pos: 41.5,-4.5
- parent: 2
- - uid: 9170
- components:
- - type: Transform
- pos: 50.5,-28.5
- parent: 2
- - uid: 9171
- components:
- - type: Transform
- pos: 17.5,-4.5
- parent: 2
- - uid: 9172
- components:
- - type: Transform
- pos: 23.5,100.5
- parent: 2
- - uid: 9173
- components:
- - type: Transform
- pos: -0.5,-8.5
- parent: 2
- - uid: 9174
- components:
- - type: Transform
- pos: 52.5,-43.5
- parent: 2
- - uid: 9175
- components:
- - type: Transform
- pos: 51.5,-46.5
- parent: 2
- - uid: 9176
- components:
- - type: Transform
- pos: -1.5,-8.5
- parent: 2
- - uid: 9177
- components:
- - type: Transform
- pos: -41.5,1.5
- parent: 2
- - uid: 9178
- components:
- - type: Transform
- pos: -41.5,7.5
- parent: 2
- - uid: 9179
- components:
- - type: Transform
- pos: 22.5,94.5
- parent: 2
- - uid: 9180
- components:
- - type: Transform
- pos: 11.5,74.5
- parent: 2
- - uid: 9181
- components:
- - type: Transform
- pos: -51.5,-90.5
- parent: 2
- - uid: 9182
- components:
- - type: Transform
- pos: -49.5,-20.5
- parent: 2
- - uid: 9183
- components:
- - type: Transform
- pos: 8.5,-50.5
- parent: 2
- - uid: 9184
- components:
- - type: Transform
- pos: 17.5,16.5
- parent: 2
- - uid: 9185
- components:
- - type: Transform
- pos: 17.5,54.5
- parent: 2
- - uid: 9186
- components:
- - type: Transform
- pos: 13.5,43.5
- parent: 2
- - uid: 9187
- components:
- - type: Transform
- pos: -45.5,-19.5
- parent: 2
- - uid: 9188
- components:
- - type: Transform
- pos: 5.5,-50.5
- parent: 2
- - uid: 9189
- components:
- - type: Transform
- pos: 17.5,13.5
- parent: 2
- - uid: 9190
- components:
- - type: Transform
- pos: 18.5,53.5
- parent: 2
- - uid: 9191
- components:
- - type: Transform
- pos: -26.5,-63.5
- parent: 2
- - uid: 9192
- components:
- - type: Transform
- pos: 38.5,-22.5
- parent: 2
- - uid: 9193
- components:
- - type: Transform
- pos: 4.5,-45.5
- parent: 2
- - uid: 9194
- components:
- - type: Transform
- pos: 87.5,-42.5
- parent: 2
- - uid: 9195
- components:
- - type: Transform
- pos: -41.5,13.5
- parent: 2
- - uid: 9196
- components:
- - type: Transform
- pos: -26.5,-60.5
- parent: 2
- - uid: 9197
- components:
- - type: Transform
- pos: 10.5,83.5
- parent: 2
- - uid: 9198
- components:
- - type: Transform
- pos: -41.5,8.5
- parent: 2
- - uid: 9199
- components:
- - type: Transform
- pos: 17.5,-6.5
- parent: 2
- - uid: 9200
- components:
- - type: Transform
- pos: 53.5,-46.5
- parent: 2
- - uid: 9201
- components:
- - type: Transform
- pos: 26.5,-22.5
- parent: 2
- - uid: 9202
- components:
- - type: Transform
- pos: -39.5,-3.5
- parent: 2
- - uid: 9203
- components:
- - type: Transform
- pos: 85.5,-46.5
- parent: 2
- - uid: 9204
- components:
- - type: Transform
- pos: -41.5,11.5
- parent: 2
- - uid: 9205
- components:
- - type: Transform
- pos: -51.5,-91.5
- parent: 2
- - uid: 9206
- components:
- - type: Transform
- pos: 53.5,-43.5
- parent: 2
- - uid: 9207
- components:
- - type: Transform
- pos: -31.5,-71.5
- parent: 2
- - uid: 9208
- components:
- - type: Transform
- pos: -41.5,4.5
- parent: 2
- - uid: 9209
- components:
- - type: Transform
- pos: 21.5,32.5
- parent: 2
- - uid: 9210
- components:
- - type: Transform
- pos: 14.5,70.5
- parent: 2
- - uid: 9211
- components:
- - type: Transform
- pos: -46.5,-84.5
- parent: 2
- - uid: 9212
- components:
- - type: Transform
- pos: 11.5,75.5
- parent: 2
- - uid: 9213
- components:
- - type: Transform
- pos: 80.5,-37.5
- parent: 2
- - uid: 9214
- components:
- - type: Transform
- pos: -45.5,-24.5
- parent: 2
- - uid: 9215
- components:
- - type: Transform
- pos: -13.5,-8.5
- parent: 2
- - uid: 9216
- components:
- - type: Transform
- pos: -44.5,37.5
- parent: 2
- - uid: 9217
- components:
- - type: Transform
- pos: -11.5,-8.5
- parent: 2
- - uid: 9218
- components:
- - type: Transform
- pos: 37.5,-48.5
- parent: 2
- - uid: 9219
- components:
- - type: Transform
- pos: -43.5,37.5
- parent: 2
- - uid: 9220
- components:
- - type: Transform
- pos: 37.5,-47.5
- parent: 2
- - uid: 9221
- components:
- - type: Transform
- pos: 80.5,-38.5
- parent: 2
- - uid: 9222
- components:
- - type: Transform
- pos: -45.5,-23.5
- parent: 2
- - uid: 9223
- components:
- - type: Transform
- pos: 55.5,-42.5
- parent: 2
- - uid: 9224
- components:
- - type: Transform
- pos: 84.5,-45.5
- parent: 2
- - uid: 9225
- components:
- - type: Transform
- pos: -42.5,37.5
- parent: 2
- - uid: 9226
- components:
- - type: Transform
- pos: 37.5,-46.5
- parent: 2
- - uid: 9227
- components:
- - type: Transform
- pos: -12.5,-8.5
- parent: 2
- - uid: 9228
- components:
- - type: Transform
- pos: -45.5,-25.5
- parent: 2
- - uid: 9229
- components:
- - type: Transform
- pos: 78.5,-40.5
- parent: 2
- - uid: 9230
- components:
- - type: Transform
- pos: -49.5,-89.5
- parent: 2
- - uid: 9231
- components:
- - type: Transform
- pos: -50.5,-89.5
- parent: 2
- - uid: 9232
- components:
- - type: Transform
- pos: 14.5,-50.5
- parent: 2
- - uid: 9233
- components:
- - type: Transform
- pos: 23.5,-19.5
- parent: 2
- - uid: 9234
- components:
- - type: Transform
- pos: -2.5,-8.5
- parent: 2
- - uid: 9235
- components:
- - type: Transform
- pos: -71.5,73.5
- parent: 2
- - uid: 9236
- components:
- - type: Transform
- pos: 40.5,-23.5
- parent: 2
- - uid: 9237
- components:
- - type: Transform
- pos: -28.5,-30.5
- parent: 2
- - uid: 9238
- components:
- - type: Transform
- pos: -44.5,-26.5
- parent: 2
- - uid: 9239
- components:
- - type: Transform
- pos: 47.5,-28.5
- parent: 2
- - uid: 9240
- components:
- - type: Transform
- pos: -25.5,-73.5
- parent: 2
- - uid: 9241
- components:
- - type: Transform
- pos: -33.5,-71.5
- parent: 2
- - uid: 9242
- components:
- - type: Transform
- pos: 52.5,-46.5
- parent: 2
- - uid: 9243
- components:
- - type: Transform
- pos: 2.5,-7.5
- parent: 2
- - uid: 9244
- components:
- - type: Transform
- pos: -86.5,-8.5
- parent: 2
- - uid: 9245
- components:
- - type: Transform
- pos: 43.5,-4.5
- parent: 2
- - uid: 9246
- components:
- - type: Transform
- pos: 11.5,77.5
- parent: 2
- - uid: 9247
- components:
- - type: Transform
- pos: 22.5,87.5
- parent: 2
- - uid: 9248
- components:
- - type: Transform
- pos: -41.5,21.5
- parent: 2
- - uid: 9249
- components:
- - type: Transform
- pos: -23.5,-32.5
- parent: 2
- - uid: 9250
- components:
- - type: Transform
- pos: 18.5,-18.5
- parent: 2
- - uid: 9251
- components:
- - type: Transform
- pos: -87.5,-8.5
- parent: 2
- - uid: 9252
- components:
- - type: Transform
- pos: 87.5,-46.5
- parent: 2
- - uid: 9253
- components:
- - type: Transform
- pos: -0.5,-25.5
- parent: 2
- - uid: 9254
- components:
- - type: Transform
- pos: 48.5,-28.5
- parent: 2
- - uid: 9255
- components:
- - type: Transform
- pos: 45.5,-46.5
- parent: 2
- - uid: 9256
- components:
- - type: Transform
- pos: 21.5,37.5
- parent: 2
- - uid: 9257
- components:
- - type: Transform
- pos: -78.5,69.5
- parent: 2
- - uid: 9258
- components:
- - type: Transform
- pos: -86.5,-11.5
- parent: 2
- - uid: 9259
- components:
- - type: Transform
- pos: -80.5,68.5
- parent: 2
- - uid: 9260
- components:
- - type: Transform
- pos: -86.5,-10.5
- parent: 2
- - uid: 9261
- components:
- - type: Transform
- pos: -70.5,69.5
- parent: 2
- - uid: 9262
- components:
- - type: Transform
- pos: 3.5,-37.5
- parent: 2
- - uid: 9263
- components:
- - type: Transform
- pos: -86.5,-9.5
- parent: 2
- - uid: 9264
- components:
- - type: Transform
- pos: 0.5,-38.5
- parent: 2
- - uid: 9265
- components:
- - type: Transform
- pos: -47.5,-82.5
- parent: 2
- - uid: 9266
- components:
- - type: Transform
- pos: 23.5,98.5
- parent: 2
- - uid: 9267
- components:
- - type: Transform
- pos: 21.5,18.5
- parent: 2
- - uid: 9268
- components:
- - type: Transform
- pos: 13.5,-50.5
- parent: 2
- - uid: 9269
- components:
- - type: Transform
- pos: -35.5,37.5
- parent: 2
- - uid: 9270
- components:
- - type: Transform
- pos: -26.5,-66.5
- parent: 2
- - uid: 9271
- components:
- - type: Transform
- pos: 12.5,56.5
- parent: 2
- - uid: 9272
- components:
- - type: Transform
- pos: 11.5,56.5
- parent: 2
- - uid: 9273
- components:
- - type: Transform
- pos: 20.5,18.5
- parent: 2
- - uid: 9274
- components:
- - type: Transform
- pos: 40.5,-24.5
- parent: 2
- - uid: 9275
- components:
- - type: Transform
- pos: -26.5,-65.5
- parent: 2
- - uid: 9276
- components:
- - type: Transform
- pos: -36.5,37.5
- parent: 2
- - uid: 9277
- components:
- - type: Transform
- pos: -86.5,-12.5
- parent: 2
- - uid: 9278
- components:
- - type: Transform
- pos: -56.5,-90.5
- parent: 2
- - uid: 9279
- components:
- - type: Transform
- pos: 40.5,-27.5
- parent: 2
- - uid: 9280
- components:
- - type: Transform
- pos: 21.5,36.5
- parent: 2
- - uid: 9281
- components:
- - type: Transform
- pos: 9.5,40.5
- parent: 2
- - uid: 9282
- components:
- - type: Transform
- pos: 21.5,39.5
- parent: 2
- - uid: 9283
- components:
- - type: Transform
- pos: 6.5,-7.5
- parent: 2
- - uid: 9284
- components:
- - type: Transform
- pos: 87.5,-44.5
- parent: 2
- - uid: 9285
- components:
- - type: Transform
- pos: 17.5,0.5
- parent: 2
- - uid: 9286
- components:
- - type: Transform
- pos: 82.5,-50.5
- parent: 2
- - uid: 9287
- components:
- - type: Transform
- pos: 15.5,41.5
- parent: 2
- - uid: 9288
- components:
- - type: Transform
- pos: -0.5,-38.5
- parent: 2
- - uid: 9289
- components:
- - type: Transform
- pos: 10.5,-8.5
- parent: 2
- - uid: 9290
- components:
- - type: Transform
- pos: 11.5,-8.5
- parent: 2
- - uid: 9291
- components:
- - type: Transform
- pos: 12.5,-8.5
- parent: 2
- - uid: 9292
- components:
- - type: Transform
- pos: 13.5,-8.5
- parent: 2
- - uid: 9293
- components:
- - type: Transform
- pos: 14.5,-8.5
- parent: 2
- - uid: 9294
- components:
- - type: Transform
- pos: -40.5,37.5
- parent: 2
- - uid: 9295
- components:
- - type: Transform
- pos: 29.5,99.5
- parent: 2
- - uid: 9296
- components:
- - type: Transform
- pos: 10.5,40.5
- parent: 2
- - uid: 9297
- components:
- - type: Transform
- pos: 18.5,42.5
- parent: 2
- - uid: 9298
- components:
- - type: Transform
- pos: 12.5,-1.5
- parent: 2
- - uid: 9299
- components:
- - type: Transform
- pos: -10.5,-19.5
- parent: 2
- - uid: 9300
- components:
- - type: Transform
- pos: 61.5,25.5
- parent: 2
- - uid: 9301
- components:
- - type: Transform
- pos: 17.5,-54.5
- parent: 2
- - uid: 9302
- components:
- - type: Transform
- pos: -22.5,-30.5
- parent: 2
- - uid: 9303
- components:
- - type: Transform
- pos: 40.5,-25.5
- parent: 2
- - uid: 9304
- components:
- - type: Transform
- pos: -79.5,78.5
- parent: 2
- - uid: 9305
- components:
- - type: Transform
- pos: 42.5,-46.5
- parent: 2
- - uid: 9306
- components:
- - type: Transform
- pos: 36.5,-55.5
- parent: 2
- - uid: 9307
- components:
- - type: Transform
- pos: 34.5,94.5
- parent: 2
- - uid: 9308
- components:
- - type: Transform
- pos: 66.5,25.5
- parent: 2
- - uid: 9309
- components:
- - type: Transform
- pos: -79.5,77.5
- parent: 2
- - uid: 9310
- components:
- - type: Transform
- pos: -78.5,77.5
- parent: 2
- - uid: 9311
- components:
- - type: Transform
- pos: -73.5,73.5
- parent: 2
- - uid: 9312
- components:
- - type: Transform
- pos: -77.5,77.5
- parent: 2
- - uid: 9313
- components:
- - type: Transform
- pos: -77.5,76.5
- parent: 2
- - uid: 9314
- components:
- - type: Transform
- pos: -78.5,76.5
- parent: 2
- - uid: 9315
- components:
- - type: Transform
- pos: 33.5,-10.5
- parent: 2
- - uid: 9316
- components:
- - type: Transform
- pos: -79.5,68.5
- parent: 2
- - uid: 9317
- components:
- - type: Transform
- pos: -47.5,-80.5
- parent: 2
- - uid: 9318
- components:
- - type: Transform
- pos: -0.5,-19.5
- parent: 2
- - uid: 9319
- components:
- - type: Transform
- pos: 86.5,-44.5
- parent: 2
- - uid: 9320
- components:
- - type: Transform
- pos: -0.5,-21.5
- parent: 2
- - uid: 9321
- components:
- - type: Transform
- pos: 28.5,-55.5
- parent: 2
- - uid: 9322
- components:
- - type: Transform
- pos: -36.5,-16.5
- parent: 2
- - uid: 9323
- components:
- - type: Transform
- pos: -36.5,-15.5
- parent: 2
- - uid: 9324
- components:
- - type: Transform
- pos: -36.5,-14.5
- parent: 2
- - uid: 9325
- components:
- - type: Transform
- pos: -36.5,-13.5
- parent: 2
- - uid: 9326
- components:
- - type: Transform
- pos: -36.5,-11.5
- parent: 2
- - uid: 9327
- components:
- - type: Transform
- pos: -36.5,-12.5
- parent: 2
- - uid: 9328
- components:
- - type: Transform
- pos: 34.5,-3.5
- parent: 2
- - uid: 9329
- components:
- - type: Transform
- pos: 4.5,-7.5
- parent: 2
- - uid: 9330
- components:
- - type: Transform
- pos: 44.5,-6.5
- parent: 2
- - uid: 9331
- components:
- - type: Transform
- pos: 23.5,94.5
- parent: 2
- - uid: 9332
- components:
- - type: Transform
- pos: -56.5,-82.5
- parent: 2
- - uid: 9333
- components:
- - type: Transform
- pos: 10.5,62.5
- parent: 2
- - uid: 9334
- components:
- - type: Transform
- pos: -26.5,-69.5
- parent: 2
- - uid: 9335
- components:
- - type: Transform
- pos: -46.5,-22.5
- parent: 2
- - uid: 9336
- components:
- - type: Transform
- pos: -53.5,-89.5
- parent: 2
- - uid: 9337
- components:
- - type: Transform
- pos: -43.5,12.5
- parent: 2
- - uid: 9338
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 2
- - uid: 9339
- components:
- - type: Transform
- pos: 22.5,20.5
- parent: 2
- - uid: 9340
- components:
- - type: Transform
- pos: 37.5,-55.5
- parent: 2
- - uid: 9341
- components:
- - type: Transform
- pos: -41.5,0.5
- parent: 2
- - uid: 9342
- components:
- - type: Transform
- pos: -44.5,5.5
- parent: 2
- - uid: 9343
- components:
- - type: Transform
- pos: -44.5,6.5
- parent: 2
- - uid: 9344
- components:
- - type: Transform
- pos: 17.5,8.5
- parent: 2
- - uid: 9345
- components:
- - type: Transform
- pos: -7.5,-19.5
- parent: 2
- - uid: 9346
- components:
- - type: Transform
- pos: -73.5,76.5
- parent: 2
- - uid: 9347
- components:
- - type: Transform
- pos: -72.5,73.5
- parent: 2
- - uid: 9348
- components:
- - type: Transform
- pos: 50.5,-46.5
- parent: 2
- - uid: 9349
- components:
- - type: Transform
- pos: -51.5,-21.5
- parent: 2
- - uid: 9350
- components:
- - type: Transform
- pos: 48.5,-46.5
- parent: 2
- - uid: 9351
- components:
- - type: Transform
- pos: 12.5,-50.5
- parent: 2
- - uid: 9352
- components:
- - type: Transform
- pos: -46.5,-90.5
- parent: 2
- - uid: 9353
- components:
- - type: Transform
- pos: 12.5,87.5
- parent: 2
- - uid: 9354
- components:
- - type: Transform
- pos: 82.5,-49.5
- parent: 2
- - uid: 9355
- components:
- - type: Transform
- pos: -55.5,-86.5
- parent: 2
- - uid: 9356
- components:
- - type: Transform
- pos: 13.5,44.5
- parent: 2
- - uid: 9357
- components:
- - type: Transform
- pos: 17.5,41.5
- parent: 2
- - uid: 9358
- components:
- - type: Transform
- pos: 21.5,41.5
- parent: 2
- - uid: 9359
- components:
- - type: Transform
- pos: 19.5,41.5
- parent: 2
- - uid: 9360
- components:
- - type: Transform
- pos: -42.5,28.5
- parent: 2
- - uid: 9361
- components:
- - type: Transform
- pos: -72.5,74.5
- parent: 2
- - uid: 9362
- components:
- - type: Transform
- pos: -118.5,23.5
- parent: 2
- - uid: 9363
- components:
- - type: Transform
- pos: 8.5,56.5
- parent: 2
- - uid: 9364
- components:
- - type: Transform
- pos: -34.5,-19.5
- parent: 2
- - uid: 9365
- components:
- - type: Transform
- pos: 10.5,-5.5
- parent: 2
- - uid: 9366
- components:
- - type: Transform
- pos: 14.5,71.5
- parent: 2
- - uid: 9367
- components:
- - type: Transform
- pos: -42.5,-19.5
- parent: 2
- - uid: 9368
- components:
- - type: Transform
- pos: 41.5,-28.5
- parent: 2
- - uid: 9369
- components:
- - type: Transform
- pos: 6.5,-39.5
- parent: 2
- - uid: 9370
- components:
- - type: Transform
- pos: 6.5,-38.5
- parent: 2
- - uid: 9371
- components:
- - type: Transform
- pos: -42.5,-40.5
- parent: 2
- - uid: 9372
- components:
- - type: Transform
- pos: 26.5,32.5
- parent: 2
- - uid: 9373
- components:
- - type: Transform
- pos: -33.5,-26.5
- parent: 2
- - uid: 9374
- components:
- - type: Transform
- pos: 33.5,92.5
- parent: 2
- - uid: 9375
- components:
- - type: Transform
- pos: -51.5,-93.5
- parent: 2
- - uid: 9376
- components:
- - type: Transform
- pos: -26.5,-62.5
- parent: 2
- - uid: 9377
- components:
- - type: Transform
- pos: 23.5,-54.5
- parent: 2
- - uid: 9378
- components:
- - type: Transform
- pos: 16.5,-50.5
- parent: 2
- - uid: 9379
- components:
- - type: Transform
- pos: -43.5,-40.5
- parent: 2
- - uid: 9380
- components:
- - type: Transform
- pos: -55.5,-90.5
- parent: 2
- - uid: 9381
- components:
- - type: Transform
- pos: 12.5,-4.5
- parent: 2
- - uid: 9382
- components:
- - type: Transform
- pos: 36.5,-22.5
- parent: 2
- - uid: 9383
- components:
- - type: Transform
- pos: -25.5,-76.5
- parent: 2
- - uid: 9384
- components:
- - type: Transform
- pos: 51.5,-44.5
- parent: 2
- - uid: 9385
- components:
- - type: Transform
- pos: -44.5,-40.5
- parent: 2
- - uid: 9386
- components:
- - type: Transform
- pos: -45.5,-40.5
- parent: 2
- - uid: 9387
- components:
- - type: Transform
- pos: -46.5,-40.5
- parent: 2
- - uid: 9388
- components:
- - type: Transform
- pos: 11.5,76.5
- parent: 2
- - uid: 9389
- components:
- - type: Transform
- pos: -46.5,-39.5
- parent: 2
- - uid: 9390
- components:
- - type: Transform
- pos: -47.5,-39.5
- parent: 2
- - uid: 9391
- components:
- - type: Transform
- pos: -48.5,-39.5
- parent: 2
- - uid: 9392
- components:
- - type: Transform
- pos: -49.5,-39.5
- parent: 2
- - uid: 9393
- components:
- - type: Transform
- pos: -45.5,-26.5
- parent: 2
- - uid: 9394
- components:
- - type: Transform
- pos: -50.5,-39.5
- parent: 2
- - uid: 9395
- components:
- - type: Transform
- pos: 40.5,-22.5
- parent: 2
- - uid: 9396
- components:
- - type: Transform
- pos: 21.5,38.5
- parent: 2
- - uid: 9397
- components:
- - type: Transform
- pos: -36.5,-7.5
- parent: 2
- - uid: 9398
- components:
- - type: Transform
- pos: -55.5,-38.5
- parent: 2
- - uid: 9399
- components:
- - type: Transform
- pos: -55.5,-37.5
- parent: 2
- - uid: 9400
- components:
- - type: Transform
- pos: -55.5,-36.5
- parent: 2
- - uid: 9401
- components:
- - type: Transform
- pos: -55.5,-35.5
- parent: 2
- - uid: 9402
- components:
- - type: Transform
- pos: -55.5,-34.5
- parent: 2
- - uid: 9403
- components:
- - type: Transform
- pos: -54.5,-34.5
- parent: 2
- - uid: 9404
- components:
- - type: Transform
- pos: -54.5,-33.5
- parent: 2
- - uid: 9405
- components:
- - type: Transform
- pos: 52.5,20.5
- parent: 2
- - uid: 9406
- components:
- - type: Transform
- pos: -70.5,12.5
- parent: 2
- - uid: 9407
- components:
- - type: Transform
- pos: -49.5,56.5
- parent: 2
- - uid: 9408
- components:
- - type: Transform
- pos: -73.5,10.5
- parent: 2
- - uid: 9409
- components:
- - type: Transform
- pos: -68.5,-2.5
- parent: 2
- - uid: 9410
- components:
- - type: Transform
- pos: -70.5,-2.5
- parent: 2
- - uid: 9411
- components:
- - type: Transform
- pos: -71.5,-2.5
- parent: 2
- - uid: 9412
- components:
- - type: Transform
- pos: -66.5,3.5
- parent: 2
- - uid: 9413
- components:
- - type: Transform
- pos: -67.5,3.5
- parent: 2
- - uid: 9414
- components:
- - type: Transform
- pos: -65.5,3.5
- parent: 2
- - uid: 9415
- components:
- - type: Transform
- pos: -71.5,1.5
- parent: 2
- - uid: 9416
- components:
- - type: Transform
- pos: -67.5,0.5
- parent: 2
- - uid: 9417
- components:
- - type: Transform
- pos: -67.5,-0.5
- parent: 2
- - uid: 9418
- components:
- - type: Transform
- pos: -71.5,-1.5
- parent: 2
- - uid: 9419
- components:
- - type: Transform
- pos: -71.5,-0.5
- parent: 2
- - uid: 9420
- components:
- - type: Transform
- pos: -71.5,0.5
- parent: 2
- - uid: 9421
- components:
- - type: Transform
- pos: -82.5,-12.5
- parent: 2
- - uid: 9422
- components:
- - type: Transform
- pos: -82.5,-2.5
- parent: 2
- - uid: 9423
- components:
- - type: Transform
- pos: -82.5,-1.5
- parent: 2
- - uid: 9424
- components:
- - type: Transform
- pos: -65.5,-6.5
- parent: 2
- - uid: 9425
- components:
- - type: Transform
- pos: -66.5,-6.5
- parent: 2
- - uid: 9426
- components:
- - type: Transform
- pos: -67.5,-6.5
- parent: 2
- - uid: 9427
- components:
- - type: Transform
- pos: -68.5,-6.5
- parent: 2
- - uid: 9428
- components:
- - type: Transform
- pos: -69.5,-6.5
- parent: 2
- - uid: 9429
- components:
- - type: Transform
- pos: -70.5,-6.5
- parent: 2
- - uid: 9430
- components:
- - type: Transform
- pos: -71.5,-6.5
- parent: 2
- - uid: 9431
- components:
- - type: Transform
- pos: -72.5,-6.5
- parent: 2
- - uid: 9432
- components:
- - type: Transform
- pos: -73.5,-6.5
- parent: 2
- - uid: 9433
- components:
- - type: Transform
- pos: -74.5,-6.5
- parent: 2
- - uid: 9434
- components:
- - type: Transform
- pos: -75.5,-6.5
- parent: 2
- - uid: 9435
- components:
- - type: Transform
- pos: -76.5,-6.5
- parent: 2
- - uid: 9436
- components:
- - type: Transform
- pos: -76.5,-5.5
- parent: 2
- - uid: 9437
- components:
- - type: Transform
- pos: -77.5,-5.5
- parent: 2
- - uid: 9438
- components:
- - type: Transform
- pos: -78.5,-5.5
- parent: 2
- - uid: 9439
- components:
- - type: Transform
- pos: -79.5,-5.5
- parent: 2
- - uid: 9440
- components:
- - type: Transform
- pos: -79.5,-4.5
- parent: 2
- - uid: 9441
- components:
- - type: Transform
- pos: -79.5,-3.5
- parent: 2
- - uid: 9442
- components:
- - type: Transform
- pos: -80.5,-3.5
- parent: 2
- - uid: 9443
- components:
- - type: Transform
- pos: -69.5,-5.5
- parent: 2
- - uid: 9444
- components:
- - type: Transform
- pos: -69.5,-4.5
- parent: 2
- - uid: 9445
- components:
- - type: Transform
- pos: -69.5,-3.5
- parent: 2
- - uid: 9446
- components:
- - type: Transform
- pos: -69.5,-2.5
- parent: 2
- - uid: 9447
- components:
- - type: Transform
- pos: -69.5,-1.5
- parent: 2
- - uid: 9448
- components:
- - type: Transform
- pos: -69.5,-0.5
- parent: 2
- - uid: 9449
- components:
- - type: Transform
- pos: -69.5,0.5
- parent: 2
- - uid: 9450
- components:
- - type: Transform
- pos: -69.5,1.5
- parent: 2
- - uid: 9451
- components:
- - type: Transform
- pos: -76.5,-7.5
- parent: 2
- - uid: 9452
- components:
- - type: Transform
- pos: -76.5,-8.5
- parent: 2
- - uid: 9453
- components:
- - type: Transform
- pos: -76.5,-9.5
- parent: 2
- - uid: 9454
- components:
- - type: Transform
- pos: -77.5,-9.5
- parent: 2
- - uid: 9455
- components:
- - type: Transform
- pos: -78.5,-9.5
- parent: 2
- - uid: 9456
- components:
- - type: Transform
- pos: -79.5,-9.5
- parent: 2
- - uid: 9457
- components:
- - type: Transform
- pos: -79.5,-10.5
- parent: 2
- - uid: 9458
- components:
- - type: Transform
- pos: -79.5,-11.5
- parent: 2
- - uid: 9459
- components:
- - type: Transform
- pos: -79.5,-12.5
- parent: 2
- - uid: 9460
- components:
- - type: Transform
- pos: -80.5,-12.5
- parent: 2
- - uid: 9461
- components:
- - type: Transform
- pos: -80.5,-11.5
- parent: 2
- - uid: 9462
- components:
- - type: Transform
- pos: -81.5,-12.5
- parent: 2
- - uid: 9463
- components:
- - type: Transform
- pos: -81.5,-2.5
- parent: 2
- - uid: 9464
- components:
- - type: Transform
- pos: -80.5,-2.5
- parent: 2
- - uid: 9465
- components:
- - type: Transform
- pos: -81.5,82.5
- parent: 2
- - uid: 9466
- components:
- - type: Transform
- pos: -81.5,81.5
- parent: 2
- - uid: 9467
- components:
- - type: Transform
- pos: -81.5,80.5
- parent: 2
- - uid: 9468
- components:
- - type: Transform
- pos: -80.5,82.5
- parent: 2
- - uid: 9469
- components:
- - type: Transform
- pos: -80.5,81.5
- parent: 2
- - uid: 9470
- components:
- - type: Transform
- pos: -80.5,80.5
- parent: 2
- - uid: 9471
- components:
- - type: Transform
- pos: -79.5,82.5
- parent: 2
- - uid: 9472
- components:
- - type: Transform
- pos: -79.5,81.5
- parent: 2
- - uid: 9473
- components:
- - type: Transform
- pos: -79.5,80.5
- parent: 2
- - uid: 9474
- components:
- - type: Transform
- pos: -78.5,82.5
- parent: 2
- - uid: 9475
- components:
- - type: Transform
- pos: -78.5,81.5
- parent: 2
- - uid: 9476
- components:
- - type: Transform
- pos: -78.5,80.5
- parent: 2
- - uid: 9477
- components:
- - type: Transform
- pos: -77.5,82.5
- parent: 2
- - uid: 9478
- components:
- - type: Transform
- pos: -77.5,81.5
- parent: 2
- - uid: 9479
- components:
- - type: Transform
- pos: -77.5,80.5
- parent: 2
- - uid: 9480
- components:
- - type: Transform
- pos: -73.5,82.5
- parent: 2
- - uid: 9481
- components:
- - type: Transform
- pos: -73.5,81.5
- parent: 2
- - uid: 9482
- components:
- - type: Transform
- pos: -73.5,80.5
- parent: 2
- - uid: 9483
- components:
- - type: Transform
- pos: -72.5,82.5
- parent: 2
- - uid: 9484
- components:
- - type: Transform
- pos: -72.5,81.5
- parent: 2
- - uid: 9485
- components:
- - type: Transform
- pos: -72.5,80.5
- parent: 2
- - uid: 9486
- components:
- - type: Transform
- pos: -71.5,82.5
- parent: 2
- - uid: 9487
- components:
- - type: Transform
- pos: -71.5,81.5
- parent: 2
- - uid: 9488
- components:
- - type: Transform
- pos: -71.5,80.5
- parent: 2
- - uid: 9489
- components:
- - type: Transform
- pos: 81.5,-42.5
- parent: 2
- - uid: 9490
- components:
- - type: Transform
- pos: -70.5,82.5
- parent: 2
- - uid: 9491
- components:
- - type: Transform
- pos: 78.5,-52.5
- parent: 2
- - uid: 9492
- components:
- - type: Transform
- pos: 79.5,-42.5
- parent: 2
- - uid: 9493
- components:
- - type: Transform
- pos: 82.5,-52.5
- parent: 2
- - uid: 9494
- components:
- - type: Transform
- pos: 81.5,-48.5
- parent: 2
- - uid: 9495
- components:
- - type: Transform
- pos: 80.5,-49.5
- parent: 2
- - uid: 9496
- components:
- - type: Transform
- pos: 80.5,-50.5
- parent: 2
- - uid: 9497
- components:
- - type: Transform
- pos: 80.5,-46.5
- parent: 2
- - uid: 9498
- components:
- - type: Transform
- pos: 80.5,-47.5
- parent: 2
- - uid: 9499
- components:
- - type: Transform
- pos: 82.5,-51.5
- parent: 2
- - uid: 9500
- components:
- - type: Transform
- pos: 82.5,-44.5
- parent: 2
- - uid: 9501
- components:
- - type: Transform
- pos: 83.5,-44.5
- parent: 2
- - uid: 9502
- components:
- - type: Transform
- pos: 79.5,-48.5
- parent: 2
- - uid: 9503
- components:
- - type: Transform
- pos: 80.5,-48.5
- parent: 2
- - uid: 9504
- components:
- - type: Transform
- pos: 78.5,-44.5
- parent: 2
- - uid: 9505
- components:
- - type: Transform
- pos: 78.5,-46.5
- parent: 2
- - uid: 9506
- components:
- - type: Transform
- pos: 79.5,-46.5
- parent: 2
- - uid: 9507
- components:
- - type: Transform
- pos: 78.5,-45.5
- parent: 2
- - uid: 9508
- components:
- - type: Transform
- pos: 81.5,-45.5
- parent: 2
- - uid: 9509
- components:
- - type: Transform
- pos: -70.5,81.5
- parent: 2
- - uid: 9510
- components:
- - type: Transform
- pos: -70.5,80.5
- parent: 2
- - uid: 9511
- components:
- - type: Transform
- pos: -69.5,82.5
- parent: 2
- - uid: 9512
- components:
- - type: Transform
- pos: -69.5,81.5
- parent: 2
- - uid: 9513
- components:
- - type: Transform
- pos: -69.5,80.5
- parent: 2
- - uid: 9514
- components:
- - type: Transform
- pos: -74.5,81.5
- parent: 2
- - uid: 9515
- components:
- - type: Transform
- pos: 80.5,-52.5
- parent: 2
- - uid: 9516
- components:
- - type: Transform
- pos: 78.5,-50.5
- parent: 2
- - uid: 9517
- components:
- - type: Transform
- pos: -76.5,81.5
- parent: 2
- - uid: 9518
- components:
- - type: Transform
- pos: -75.5,83.5
- parent: 2
- - uid: 9519
- components:
- - type: Transform
- pos: -75.5,82.5
- parent: 2
- - uid: 9520
- components:
- - type: Transform
- pos: -75.5,84.5
- parent: 2
- - uid: 9521
- components:
- - type: Transform
- pos: -121.5,25.5
- parent: 2
- - uid: 9522
- components:
- - type: Transform
- pos: -123.5,24.5
- parent: 2
- - uid: 9523
- components:
- - type: Transform
- pos: -121.5,24.5
- parent: 2
- - uid: 9524
- components:
- - type: Transform
- pos: -122.5,24.5
- parent: 2
- - uid: 9525
- components:
- - type: Transform
- pos: -120.5,23.5
- parent: 2
- - uid: 9526
- components:
- - type: Transform
- pos: -118.5,24.5
- parent: 2
- - uid: 9527
- components:
- - type: Transform
- pos: -121.5,23.5
- parent: 2
- - uid: 9528
- components:
- - type: Transform
- pos: -118.5,32.5
- parent: 2
- - uid: 9529
- components:
- - type: Transform
- pos: -118.5,33.5
- parent: 2
- - uid: 9530
- components:
- - type: Transform
- pos: -118.5,34.5
- parent: 2
- - uid: 9531
- components:
- - type: Transform
- pos: -118.5,35.5
- parent: 2
- - uid: 9532
- components:
- - type: Transform
- pos: -118.5,36.5
- parent: 2
- - uid: 9533
- components:
- - type: Transform
- pos: -118.5,37.5
- parent: 2
- - uid: 9534
- components:
- - type: Transform
- pos: -118.5,38.5
- parent: 2
- - uid: 9535
- components:
- - type: Transform
- pos: -118.5,39.5
- parent: 2
- - uid: 9536
- components:
- - type: Transform
- pos: -117.5,39.5
- parent: 2
- - uid: 9537
- components:
- - type: Transform
- pos: -116.5,39.5
- parent: 2
- - uid: 9538
- components:
- - type: Transform
- pos: -115.5,39.5
- parent: 2
- - uid: 9539
- components:
- - type: Transform
- pos: -114.5,39.5
- parent: 2
- - uid: 9540
- components:
- - type: Transform
- pos: -113.5,39.5
- parent: 2
- - uid: 9541
- components:
- - type: Transform
- pos: -113.5,38.5
- parent: 2
- - uid: 9542
- components:
- - type: Transform
- pos: -113.5,37.5
- parent: 2
- - uid: 9543
- components:
- - type: Transform
- pos: -113.5,36.5
- parent: 2
- - uid: 9544
- components:
- - type: Transform
- pos: -114.5,36.5
- parent: 2
- - uid: 9545
- components:
- - type: Transform
- pos: 64.5,25.5
- parent: 2
- - uid: 9546
- components:
- - type: Transform
- pos: 67.5,25.5
- parent: 2
- - uid: 9547
- components:
- - type: Transform
- pos: 62.5,25.5
- parent: 2
- - uid: 9548
- components:
- - type: Transform
- pos: -93.5,-4.5
- parent: 2
- - uid: 9549
- components:
- - type: Transform
- pos: -92.5,-4.5
- parent: 2
- - uid: 9550
- components:
- - type: Transform
- pos: -91.5,-4.5
- parent: 2
- - uid: 9551
- components:
- - type: Transform
- pos: -90.5,-4.5
- parent: 2
- - uid: 9552
- components:
- - type: Transform
- pos: -89.5,-4.5
- parent: 2
- - uid: 9553
- components:
- - type: Transform
- pos: -89.5,-5.5
- parent: 2
- - uid: 9554
- components:
- - type: Transform
- pos: -89.5,-6.5
- parent: 2
- - uid: 9555
- components:
- - type: Transform
- pos: -88.5,-6.5
- parent: 2
- - uid: 9556
- components:
- - type: Transform
- pos: -87.5,-6.5
- parent: 2
- - uid: 9557
- components:
- - type: Transform
- pos: -86.5,-6.5
- parent: 2
- - uid: 9558
- components:
- - type: Transform
- pos: -86.5,-5.5
- parent: 2
- - uid: 9559
- components:
- - type: Transform
- pos: -50.5,52.5
- parent: 2
- - uid: 9560
- components:
- - type: Transform
- pos: -50.5,51.5
- parent: 2
- - uid: 9561
- components:
- - type: Transform
- pos: -50.5,50.5
- parent: 2
- - uid: 9562
- components:
- - type: Transform
- pos: -50.5,49.5
- parent: 2
- - uid: 9563
- components:
- - type: Transform
- pos: -50.5,53.5
- parent: 2
- - uid: 9564
- components:
- - type: Transform
- pos: -51.5,51.5
- parent: 2
- - uid: 9565
- components:
- - type: Transform
- pos: -49.5,51.5
- parent: 2
- - uid: 38734
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 38714
- - uid: 38735
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 38714
- - uid: 38736
- components:
- - type: Transform
- pos: 1.5,1.5
- parent: 38714
- - uid: 38737
- components:
- - type: Transform
- pos: 2.5,1.5
- parent: 38714
- - uid: 38738
- components:
- - type: Transform
- pos: 2.5,0.5
- parent: 38714
- - uid: 38739
- components:
- - type: Transform
- pos: 3.5,0.5
- parent: 38714
- - uid: 38740
- components:
- - type: Transform
- pos: 3.5,-0.5
- parent: 38714
-- proto: CableHVStack
- entities:
- - uid: 1060
- components:
- - type: Transform
- parent: 1057
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 9566
- components:
- - type: Transform
- pos: 11.523507,40.55153
- parent: 2
- - uid: 9567
- components:
- - type: Transform
- pos: -57.551025,-13.380937
- parent: 2
- - uid: 9568
- components:
- - type: Transform
- pos: -15.511915,-15.481583
- parent: 2
- - uid: 9569
- components:
- - type: Transform
- pos: 56.5,-42.5
- parent: 2
- - uid: 9570
- components:
- - type: Transform
- pos: -49.5,47.5
- parent: 2
-- proto: CableMV
- entities:
- - uid: 9571
- components:
- - type: Transform
- pos: -7.5,49.5
- parent: 2
- - uid: 9572
- components:
- - type: Transform
- pos: -28.5,54.5
- parent: 2
- - uid: 9573
- components:
- - type: Transform
- pos: 11.5,81.5
- parent: 2
- - uid: 9574
- components:
- - type: Transform
- pos: -31.5,71.5
- parent: 2
- - uid: 9575
- components:
- - type: Transform
- pos: -30.5,71.5
- parent: 2
- - uid: 9576
- components:
- - type: Transform
- pos: -28.5,54.5
- parent: 2
- - uid: 9577
- components:
- - type: Transform
- pos: -18.5,48.5
- parent: 2
- - uid: 9578
- components:
- - type: Transform
- pos: -18.5,45.5
- parent: 2
- - uid: 9579
- components:
- - type: Transform
- pos: -27.5,68.5
- parent: 2
- - uid: 9580
- components:
- - type: Transform
- pos: -30.5,54.5
- parent: 2
- - uid: 9581
- components:
- - type: Transform
- pos: -30.5,48.5
- parent: 2
- - uid: 9582
- components:
- - type: Transform
- pos: -30.5,49.5
- parent: 2
- - uid: 9583
- components:
- - type: Transform
- pos: -18.5,47.5
- parent: 2
- - uid: 9584
- components:
- - type: Transform
- pos: -16.5,49.5
- parent: 2
- - uid: 9585
- components:
- - type: Transform
- pos: -18.5,49.5
- parent: 2
- - uid: 9586
- components:
- - type: Transform
- pos: -18.5,46.5
- parent: 2
- - uid: 9587
- components:
- - type: Transform
- pos: -18.5,42.5
- parent: 2
- - uid: 9588
- components:
- - type: Transform
- pos: -18.5,43.5
- parent: 2
- - uid: 9589
- components:
- - type: Transform
- pos: -26.5,68.5
- parent: 2
- - uid: 9590
- components:
- - type: Transform
- pos: -30.5,39.5
- parent: 2
- - uid: 9591
- components:
- - type: Transform
- pos: 8.5,73.5
- parent: 2
- - uid: 9592
- components:
- - type: Transform
- pos: -7.5,50.5
- parent: 2
- - uid: 9593
- components:
- - type: Transform
- pos: -15.5,53.5
- parent: 2
- - uid: 9594
- components:
- - type: Transform
- pos: -15.5,51.5
- parent: 2
- - uid: 9595
- components:
- - type: Transform
- pos: -30.5,51.5
- parent: 2
- - uid: 9596
- components:
- - type: Transform
- pos: 17.5,68.5
- parent: 2
- - uid: 9597
- components:
- - type: Transform
- pos: -15.5,52.5
- parent: 2
- - uid: 9598
- components:
- - type: Transform
- pos: -18.5,31.5
- parent: 2
- - uid: 9599
- components:
- - type: Transform
- pos: -18.5,28.5
- parent: 2
- - uid: 9600
- components:
- - type: Transform
- pos: -18.5,29.5
- parent: 2
- - uid: 9601
- components:
- - type: Transform
- pos: -15.5,50.5
- parent: 2
- - uid: 9602
- components:
- - type: Transform
- pos: -25.5,68.5
- parent: 2
- - uid: 9603
- components:
- - type: Transform
- pos: -6.5,47.5
- parent: 2
- - uid: 9604
- components:
- - type: Transform
- pos: -17.5,49.5
- parent: 2
- - uid: 9605
- components:
- - type: Transform
- pos: -15.5,49.5
- parent: 2
- - uid: 9606
-=======
- - uid: 8137
- components:
- - type: Transform
- pos: -81.5,69.5
- parent: 2
- - uid: 8138
- components:
- - type: Transform
- pos: -81.5,68.5
- parent: 2
- - uid: 8139
- components:
- - type: Transform
- pos: -80.5,70.5
- parent: 2
- - uid: 8140
- components:
- - type: Transform
- pos: -80.5,69.5
- parent: 2
- - uid: 8141
- components:
- - type: Transform
- pos: -80.5,68.5
- parent: 2
- - uid: 8142
- components:
- - type: Transform
- pos: -79.5,70.5
- parent: 2
- - uid: 8143
- components:
- - type: Transform
- pos: -79.5,69.5
- parent: 2
- - uid: 8144
- components:
- - type: Transform
- pos: -79.5,68.5
- parent: 2
- - uid: 8145
- components:
- - type: Transform
- pos: -78.5,70.5
- parent: 2
- - uid: 8146
- components:
- - type: Transform
- pos: -78.5,69.5
- parent: 2
- - uid: 8147
- components:
- - type: Transform
- pos: -78.5,68.5
- parent: 2
- - uid: 8148
- components:
- - type: Transform
- pos: -77.5,70.5
- parent: 2
- - uid: 8149
- components:
- - type: Transform
- pos: -77.5,69.5
- parent: 2
- - uid: 8150
- components:
- - type: Transform
- pos: -77.5,68.5
- parent: 2
- - uid: 8151
- components:
- - type: Transform
- pos: -76.5,69.5
- parent: 2
- - uid: 8152
- components:
- - type: Transform
- pos: -73.5,70.5
- parent: 2
- - uid: 8153
- components:
- - type: Transform
- pos: -73.5,69.5
- parent: 2
- - uid: 8154
- components:
- - type: Transform
- pos: -73.5,68.5
- parent: 2
- - uid: 8155
- components:
- - type: Transform
- pos: -72.5,70.5
- parent: 2
- - uid: 8156
- components:
- - type: Transform
- pos: -72.5,69.5
- parent: 2
- - uid: 8157
- components:
- - type: Transform
- pos: -72.5,68.5
- parent: 2
- - uid: 8158
- components:
- - type: Transform
- pos: -71.5,70.5
- parent: 2
- - uid: 8159
- components:
- - type: Transform
- pos: -71.5,69.5
- parent: 2
- - uid: 8160
- components:
- - type: Transform
- pos: -71.5,68.5
- parent: 2
- - uid: 8161
- components:
- - type: Transform
- pos: -70.5,70.5
- parent: 2
- - uid: 8162
- components:
- - type: Transform
- pos: -70.5,69.5
- parent: 2
- - uid: 8163
- components:
- - type: Transform
- pos: -70.5,68.5
- parent: 2
- - uid: 8164
- components:
- - type: Transform
- pos: -69.5,70.5
- parent: 2
- - uid: 8165
- components:
- - type: Transform
- pos: -69.5,69.5
- parent: 2
- - uid: 8166
- components:
- - type: Transform
- pos: -69.5,68.5
- parent: 2
- - uid: 8167
- components:
- - type: Transform
- pos: -74.5,69.5
- parent: 2
- - uid: 8168
- components:
- - type: Transform
- pos: -74.5,73.5
- parent: 2
- - uid: 8169
- components:
- - type: Transform
- pos: -73.5,73.5
- parent: 2
- - uid: 8170
- components:
- - type: Transform
- pos: -72.5,74.5
- parent: 2
- - uid: 8171
- components:
- - type: Transform
- pos: -72.5,73.5
- parent: 2
- - uid: 8172
- components:
- - type: Transform
- pos: -72.5,72.5
- parent: 2
- - uid: 8173
- components:
- - type: Transform
- pos: -71.5,74.5
- parent: 2
- - uid: 8174
- components:
- - type: Transform
- pos: -71.5,73.5
- parent: 2
- - uid: 8175
- components:
- - type: Transform
- pos: -71.5,72.5
- parent: 2
- - uid: 8176
- components:
- - type: Transform
- pos: -70.5,74.5
- parent: 2
- - uid: 8177
- components:
- - type: Transform
- pos: -70.5,73.5
- parent: 2
- - uid: 8178
- components:
- - type: Transform
- pos: -70.5,72.5
- parent: 2
- - uid: 8179
- components:
- - type: Transform
- pos: -69.5,74.5
- parent: 2
- - uid: 8180
- components:
- - type: Transform
- pos: -69.5,73.5
- parent: 2
- - uid: 8181
- components:
- - type: Transform
- pos: -69.5,72.5
- parent: 2
- - uid: 8182
- components:
- - type: Transform
- pos: -68.5,74.5
- parent: 2
- - uid: 8183
- components:
- - type: Transform
- pos: -68.5,73.5
- parent: 2
- - uid: 8184
- components:
- - type: Transform
- pos: -68.5,72.5
- parent: 2
- - uid: 8185
- components:
- - type: Transform
- pos: -49.5,42.5
- parent: 2
- - uid: 8186
- components:
- - type: Transform
- pos: -48.5,42.5
- parent: 2
- - uid: 8187
- components:
- - type: Transform
- pos: -47.5,42.5
- parent: 2
- - uid: 8188
- components:
- - type: Transform
- pos: -47.5,43.5
- parent: 2
- - uid: 8189
- components:
- - type: Transform
- pos: -47.5,44.5
- parent: 2
- - uid: 8190
- components:
- - type: Transform
- pos: -55.5,44.5
- parent: 2
- - uid: 8191
- components:
- - type: Transform
- pos: -55.5,43.5
- parent: 2
- - uid: 8192
- components:
- - type: Transform
- pos: -55.5,42.5
- parent: 2
- - uid: 8193
- components:
- - type: Transform
- pos: -54.5,42.5
- parent: 2
- - uid: 8194
- components:
- - type: Transform
- pos: -54.5,41.5
- parent: 2
- - uid: 8195
- components:
- - type: Transform
- pos: -54.5,40.5
- parent: 2
- - uid: 8196
- components:
- - type: Transform
- pos: -54.5,39.5
- parent: 2
- - uid: 8197
- components:
- - type: Transform
- pos: -54.5,38.5
- parent: 2
- - uid: 8198
- components:
- - type: Transform
- pos: -54.5,37.5
- parent: 2
- - uid: 8199
- components:
- - type: Transform
- pos: -54.5,36.5
- parent: 2
- - uid: 8200
- components:
- - type: Transform
- pos: -54.5,35.5
- parent: 2
- - uid: 8201
- components:
- - type: Transform
- pos: -54.5,34.5
- parent: 2
- - uid: 8202
- components:
- - type: Transform
- pos: -54.5,33.5
- parent: 2
- - uid: 8203
- components:
- - type: Transform
- pos: -54.5,32.5
- parent: 2
- - uid: 8204
- components:
- - type: Transform
- pos: -54.5,31.5
- parent: 2
- - uid: 8205
- components:
- - type: Transform
- pos: -54.5,30.5
- parent: 2
- - uid: 8206
- components:
- - type: Transform
- pos: -53.5,30.5
- parent: 2
- - uid: 8207
- components:
- - type: Transform
- pos: -52.5,30.5
- parent: 2
- - uid: 8208
- components:
- - type: Transform
- pos: -51.5,30.5
- parent: 2
- - uid: 8209
- components:
- - type: Transform
- pos: -50.5,30.5
- parent: 2
- - uid: 8210
- components:
- - type: Transform
- pos: -49.5,30.5
- parent: 2
- - uid: 8211
- components:
- - type: Transform
- pos: -48.5,30.5
- parent: 2
- - uid: 8212
- components:
- - type: Transform
- pos: -47.5,30.5
- parent: 2
- - uid: 8213
- components:
- - type: Transform
- pos: -46.5,30.5
- parent: 2
- - uid: 8214
- components:
- - type: Transform
- pos: -46.5,31.5
- parent: 2
- - uid: 8215
- components:
- - type: Transform
- pos: -46.5,32.5
- parent: 2
- - uid: 8216
- components:
- - type: Transform
- pos: -46.5,33.5
- parent: 2
- - uid: 8217
- components:
- - type: Transform
- pos: -46.5,34.5
- parent: 2
- - uid: 8218
- components:
- - type: Transform
- pos: -54.5,29.5
- parent: 2
- - uid: 8219
- components:
- - type: Transform
- pos: -54.5,28.5
- parent: 2
- - uid: 8220
- components:
- - type: Transform
- pos: -55.5,28.5
- parent: 2
- - uid: 8221
- components:
- - type: Transform
- pos: -56.5,28.5
- parent: 2
- - uid: 8222
- components:
- - type: Transform
- pos: -56.5,27.5
- parent: 2
- - uid: 8223
- components:
- - type: Transform
- pos: -56.5,26.5
- parent: 2
- - uid: 8224
- components:
- - type: Transform
- pos: -56.5,25.5
- parent: 2
- - uid: 8225
- components:
- - type: Transform
- pos: -56.5,24.5
- parent: 2
- - uid: 8226
- components:
- - type: Transform
- pos: -60.5,-9.5
- parent: 2
- - uid: 8227
- components:
- - type: Transform
- pos: -60.5,-8.5
- parent: 2
- - uid: 8228
- components:
- - type: Transform
- pos: -53.5,-11.5
- parent: 2
- - uid: 8229
- components:
- - type: Transform
- pos: -59.5,-9.5
- parent: 2
- - uid: 8230
- components:
- - type: Transform
- pos: -54.5,-11.5
- parent: 2
- - uid: 8231
- components:
- - type: Transform
- pos: -58.5,-5.5
- parent: 2
- - uid: 8232
- components:
- - type: Transform
- pos: -55.5,-11.5
- parent: 2
- - uid: 8233
- components:
- - type: Transform
- pos: -57.5,-11.5
- parent: 2
- - uid: 8234
- components:
- - type: Transform
- pos: -56.5,-11.5
- parent: 2
- - uid: 8235
- components:
- - type: Transform
- pos: -56.5,-9.5
- parent: 2
- - uid: 8236
- components:
- - type: Transform
- pos: -59.5,-10.5
- parent: 2
- - uid: 8237
- components:
- - type: Transform
- pos: -59.5,-11.5
- parent: 2
- - uid: 8238
- components:
- - type: Transform
- pos: -58.5,-11.5
- parent: 2
- - uid: 8239
- components:
- - type: Transform
- pos: -57.5,-5.5
- parent: 2
- - uid: 8240
- components:
- - type: Transform
- pos: -56.5,-5.5
- parent: 2
- - uid: 8241
- components:
- - type: Transform
- pos: -59.5,-7.5
- parent: 2
- - uid: 8242
- components:
- - type: Transform
- pos: -58.5,-7.5
- parent: 2
- - uid: 8243
- components:
- - type: Transform
- pos: -57.5,-7.5
- parent: 2
- - uid: 8244
- components:
- - type: Transform
- pos: -56.5,-7.5
- parent: 2
- - uid: 8245
- components:
- - type: Transform
- pos: -56.5,-8.5
- parent: 2
- - uid: 8246
- components:
- - type: Transform
- pos: -56.5,-9.5
- parent: 2
- - uid: 8247
- components:
- - type: Transform
- pos: -31.5,-55.5
- parent: 2
- - uid: 8248
- components:
- - type: Transform
- pos: -31.5,-56.5
- parent: 2
- - uid: 8249
- components:
- - type: Transform
- pos: -31.5,-57.5
- parent: 2
- - uid: 8250
- components:
- - type: Transform
- pos: -32.5,-57.5
- parent: 2
- - uid: 8251
- components:
- - type: Transform
- pos: -33.5,-57.5
- parent: 2
- - uid: 8252
- components:
- - type: Transform
- pos: -33.5,-56.5
- parent: 2
- - uid: 8253
- components:
- - type: Transform
- pos: -33.5,-55.5
- parent: 2
- - uid: 8254
- components:
- - type: Transform
- pos: -33.5,-54.5
- parent: 2
- - uid: 8255
- components:
- - type: Transform
- pos: -33.5,-53.5
- parent: 2
- - uid: 8256
- components:
- - type: Transform
- pos: -33.5,-52.5
- parent: 2
- - uid: 8257
- components:
- - type: Transform
- pos: -33.5,-51.5
- parent: 2
- - uid: 8258
- components:
- - type: Transform
- pos: -33.5,-50.5
- parent: 2
- - uid: 8259
- components:
- - type: Transform
- pos: -33.5,-49.5
- parent: 2
- - uid: 8260
- components:
- - type: Transform
- pos: -33.5,-48.5
- parent: 2
- - uid: 8261
- components:
- - type: Transform
- pos: -34.5,-48.5
- parent: 2
- - uid: 8262
- components:
- - type: Transform
- pos: -35.5,-48.5
- parent: 2
- - uid: 8263
- components:
- - type: Transform
- pos: -36.5,-48.5
- parent: 2
- - uid: 8264
- components:
- - type: Transform
- pos: -37.5,-48.5
- parent: 2
- - uid: 8265
- components:
- - type: Transform
- pos: -38.5,-48.5
- parent: 2
- - uid: 8266
- components:
- - type: Transform
- pos: -39.5,-48.5
- parent: 2
- - uid: 8267
- components:
- - type: Transform
- pos: -40.5,-48.5
- parent: 2
- - uid: 8268
- components:
- - type: Transform
- pos: -41.5,-48.5
- parent: 2
- - uid: 8269
- components:
- - type: Transform
- pos: -42.5,-48.5
- parent: 2
- - uid: 8270
- components:
- - type: Transform
- pos: -42.5,-47.5
- parent: 2
- - uid: 8271
- components:
- - type: Transform
- pos: -42.5,-46.5
- parent: 2
- - uid: 8272
- components:
- - type: Transform
- pos: -42.5,-45.5
- parent: 2
- - uid: 8273
- components:
- - type: Transform
- pos: -42.5,-44.5
- parent: 2
- - uid: 8274
- components:
- - type: Transform
- pos: -42.5,-43.5
- parent: 2
- - uid: 8275
- components:
- - type: Transform
- pos: -42.5,-42.5
- parent: 2
- - uid: 8276
- components:
- - type: Transform
- pos: -42.5,-41.5
- parent: 2
- - uid: 8277
- components:
- - type: Transform
- pos: -42.5,-40.5
- parent: 2
- - uid: 8278
- components:
- - type: Transform
- pos: -42.5,-40.5
- parent: 2
- - uid: 8279
- components:
- - type: Transform
- pos: -43.5,-40.5
- parent: 2
- - uid: 8280
- components:
- - type: Transform
- pos: -44.5,-40.5
- parent: 2
- - uid: 8281
- components:
- - type: Transform
- pos: -45.5,-40.5
- parent: 2
- - uid: 8282
- components:
- - type: Transform
- pos: -46.5,-40.5
- parent: 2
- - uid: 8283
- components:
- - type: Transform
- pos: -47.5,-40.5
- parent: 2
- - uid: 8284
- components:
- - type: Transform
- pos: -48.5,-40.5
- parent: 2
- - uid: 8285
- components:
- - type: Transform
- pos: -49.5,-40.5
- parent: 2
- - uid: 8286
- components:
- - type: Transform
- pos: -50.5,-40.5
- parent: 2
- - uid: 8287
- components:
- - type: Transform
- pos: -51.5,-40.5
- parent: 2
- - uid: 8288
- components:
- - type: Transform
- pos: -52.5,-40.5
- parent: 2
- - uid: 8289
- components:
- - type: Transform
- pos: -53.5,-40.5
- parent: 2
- - uid: 8290
- components:
- - type: Transform
- pos: -54.5,-40.5
- parent: 2
- - uid: 8291
- components:
- - type: Transform
- pos: -54.5,-40.5
- parent: 2
- - uid: 8292
- components:
- - type: Transform
- pos: -54.5,-39.5
- parent: 2
- - uid: 8293
- components:
- - type: Transform
- pos: -54.5,-38.5
- parent: 2
- - uid: 8294
- components:
- - type: Transform
- pos: -54.5,-37.5
- parent: 2
- - uid: 8295
- components:
- - type: Transform
- pos: -54.5,-36.5
- parent: 2
- - uid: 8296
- components:
- - type: Transform
- pos: -54.5,-35.5
- parent: 2
- - uid: 8297
- components:
- - type: Transform
- pos: -54.5,-34.5
- parent: 2
- - uid: 8298
- components:
- - type: Transform
- pos: -54.5,-33.5
- parent: 2
- - uid: 8299
- components:
- - type: Transform
- pos: -54.5,-32.5
- parent: 2
- - uid: 8300
- components:
- - type: Transform
- pos: -54.5,-31.5
- parent: 2
- - uid: 8301
- components:
- - type: Transform
- pos: -54.5,-30.5
- parent: 2
- - uid: 8302
- components:
- - type: Transform
- pos: -54.5,-29.5
- parent: 2
- - uid: 8303
- components:
- - type: Transform
- pos: -54.5,-28.5
- parent: 2
- - uid: 8304
- components:
- - type: Transform
- pos: -54.5,-27.5
- parent: 2
- - uid: 8305
- components:
- - type: Transform
- pos: -54.5,-26.5
- parent: 2
- - uid: 8306
- components:
- - type: Transform
- pos: -54.5,-25.5
- parent: 2
- - uid: 8307
- components:
- - type: Transform
- pos: -54.5,-24.5
- parent: 2
- - uid: 8308
- components:
- - type: Transform
- pos: -54.5,-23.5
- parent: 2
- - uid: 8309
- components:
- - type: Transform
- pos: -54.5,-22.5
- parent: 2
- - uid: 8310
- components:
- - type: Transform
- pos: -54.5,-21.5
- parent: 2
- - uid: 8311
- components:
- - type: Transform
- pos: -26.5,-78.5
- parent: 2
- - uid: 8312
- components:
- - type: Transform
- pos: -25.5,-78.5
- parent: 2
- - uid: 8313
- components:
- - type: Transform
- pos: -25.5,-77.5
- parent: 2
- - uid: 8314
- components:
- - type: Transform
- pos: -25.5,-76.5
- parent: 2
- - uid: 8315
- components:
- - type: Transform
- pos: -25.5,-75.5
- parent: 2
- - uid: 8316
- components:
- - type: Transform
- pos: -25.5,-74.5
- parent: 2
- - uid: 8317
- components:
- - type: Transform
- pos: -25.5,-73.5
- parent: 2
- - uid: 8318
- components:
- - type: Transform
- pos: -25.5,-72.5
- parent: 2
- - uid: 8319
- components:
- - type: Transform
- pos: -25.5,-71.5
- parent: 2
- - uid: 8320
- components:
- - type: Transform
- pos: -26.5,-71.5
- parent: 2
- - uid: 8321
- components:
- - type: Transform
- pos: -26.5,-70.5
- parent: 2
- - uid: 8322
- components:
- - type: Transform
- pos: -26.5,-69.5
- parent: 2
- - uid: 8323
- components:
- - type: Transform
- pos: -26.5,-68.5
- parent: 2
- - uid: 8324
- components:
- - type: Transform
- pos: -26.5,-67.5
- parent: 2
- - uid: 8325
- components:
- - type: Transform
- pos: -26.5,-66.5
- parent: 2
- - uid: 8326
- components:
- - type: Transform
- pos: -26.5,-65.5
- parent: 2
- - uid: 8327
- components:
- - type: Transform
- pos: -26.5,-64.5
- parent: 2
- - uid: 8328
- components:
- - type: Transform
- pos: -26.5,-63.5
- parent: 2
- - uid: 8329
- components:
- - type: Transform
- pos: -26.5,-62.5
- parent: 2
- - uid: 8330
- components:
- - type: Transform
- pos: -26.5,-61.5
- parent: 2
- - uid: 8331
- components:
- - type: Transform
- pos: -26.5,-60.5
- parent: 2
- - uid: 8332
- components:
- - type: Transform
- pos: -26.5,-59.5
- parent: 2
- - uid: 8333
- components:
- - type: Transform
- pos: -26.5,-58.5
- parent: 2
- - uid: 8334
- components:
- - type: Transform
- pos: -26.5,-57.5
- parent: 2
- - uid: 8335
- components:
- - type: Transform
- pos: -27.5,-57.5
- parent: 2
- - uid: 8336
- components:
- - type: Transform
- pos: -28.5,-57.5
- parent: 2
- - uid: 8337
- components:
- - type: Transform
- pos: -29.5,-57.5
- parent: 2
- - uid: 8338
- components:
- - type: Transform
- pos: -30.5,-57.5
- parent: 2
- - uid: 8339
- components:
- - type: Transform
- pos: -31.5,-57.5
- parent: 2
- - uid: 8340
- components:
- - type: Transform
- pos: -16.5,-30.5
- parent: 2
- - uid: 8341
- components:
- - type: Transform
- pos: -15.5,-30.5
- parent: 2
- - uid: 8342
- components:
- - type: Transform
- pos: -14.5,-29.5
- parent: 2
- - uid: 8343
- components:
- - type: Transform
- pos: -14.5,-30.5
- parent: 2
- - uid: 8344
- components:
- - type: Transform
- pos: -14.5,-31.5
- parent: 2
- - uid: 8345
- components:
- - type: Transform
- pos: -14.5,-32.5
- parent: 2
- - uid: 8346
- components:
- - type: Transform
- pos: -14.5,-33.5
- parent: 2
- - uid: 8347
- components:
- - type: Transform
- pos: -14.5,-34.5
- parent: 2
- - uid: 8348
- components:
- - type: Transform
- pos: -15.5,-34.5
- parent: 2
- - uid: 8349
- components:
- - type: Transform
- pos: -16.5,-34.5
- parent: 2
- - uid: 8350
- components:
- - type: Transform
- pos: -17.5,-34.5
- parent: 2
- - uid: 8351
- components:
- - type: Transform
- pos: -18.5,-34.5
- parent: 2
- - uid: 8352
- components:
- - type: Transform
- pos: -19.5,-34.5
- parent: 2
- - uid: 8353
- components:
- - type: Transform
- pos: -20.5,-34.5
- parent: 2
- - uid: 8354
- components:
- - type: Transform
- pos: -21.5,-34.5
- parent: 2
- - uid: 8355
- components:
- - type: Transform
- pos: -22.5,-34.5
- parent: 2
- - uid: 8356
- components:
- - type: Transform
- pos: -23.5,-34.5
- parent: 2
- - uid: 8357
- components:
- - type: Transform
- pos: -24.5,-34.5
- parent: 2
- - uid: 8358
- components:
- - type: Transform
- pos: -25.5,-34.5
- parent: 2
- - uid: 8359
- components:
- - type: Transform
- pos: -26.5,-34.5
- parent: 2
- - uid: 8360
- components:
- - type: Transform
- pos: -27.5,-34.5
- parent: 2
- - uid: 8361
- components:
- - type: Transform
- pos: -28.5,-34.5
- parent: 2
- - uid: 8362
- components:
- - type: Transform
- pos: -28.5,-35.5
- parent: 2
- - uid: 8363
- components:
- - type: Transform
- pos: -28.5,-36.5
- parent: 2
- - uid: 8364
- components:
- - type: Transform
- pos: -28.5,-37.5
- parent: 2
- - uid: 8365
- components:
- - type: Transform
- pos: -28.5,-38.5
- parent: 2
- - uid: 8366
- components:
- - type: Transform
- pos: -28.5,-39.5
- parent: 2
- - uid: 8367
- components:
- - type: Transform
- pos: -28.5,-40.5
- parent: 2
- - uid: 8368
- components:
- - type: Transform
- pos: -28.5,-41.5
- parent: 2
- - uid: 8369
- components:
- - type: Transform
- pos: -28.5,-42.5
- parent: 2
- - uid: 8370
- components:
- - type: Transform
- pos: -28.5,-43.5
- parent: 2
- - uid: 8371
- components:
- - type: Transform
- pos: -28.5,-44.5
- parent: 2
- - uid: 8372
- components:
- - type: Transform
- pos: -28.5,-45.5
- parent: 2
- - uid: 8373
- components:
- - type: Transform
- pos: -27.5,-45.5
- parent: 2
- - uid: 8374
- components:
- - type: Transform
- pos: -26.5,-45.5
- parent: 2
- - uid: 8375
- components:
- - type: Transform
- pos: -25.5,-45.5
- parent: 2
- - uid: 8376
- components:
- - type: Transform
- pos: -24.5,-45.5
- parent: 2
- - uid: 8377
- components:
- - type: Transform
- pos: -23.5,-45.5
- parent: 2
- - uid: 8378
- components:
- - type: Transform
- pos: -23.5,-46.5
- parent: 2
- - uid: 8379
- components:
- - type: Transform
- pos: -23.5,-47.5
- parent: 2
- - uid: 8380
- components:
- - type: Transform
- pos: -23.5,-48.5
- parent: 2
- - uid: 8381
- components:
- - type: Transform
- pos: -23.5,-49.5
- parent: 2
- - uid: 8382
- components:
- - type: Transform
- pos: -23.5,-50.5
- parent: 2
- - uid: 8383
- components:
- - type: Transform
- pos: -23.5,-51.5
- parent: 2
- - uid: 8384
- components:
- - type: Transform
- pos: -23.5,-52.5
- parent: 2
- - uid: 8385
- components:
- - type: Transform
- pos: -24.5,-52.5
- parent: 2
- - uid: 8386
- components:
- - type: Transform
- pos: -25.5,-52.5
- parent: 2
- - uid: 8387
- components:
- - type: Transform
- pos: -26.5,-52.5
- parent: 2
- - uid: 8388
- components:
- - type: Transform
- pos: -27.5,-52.5
- parent: 2
- - uid: 8389
- components:
- - type: Transform
- pos: -28.5,-52.5
- parent: 2
- - uid: 8390
- components:
- - type: Transform
- pos: -29.5,-52.5
- parent: 2
- - uid: 8391
- components:
- - type: Transform
- pos: -30.5,-52.5
- parent: 2
- - uid: 8392
- components:
- - type: Transform
- pos: -31.5,-52.5
- parent: 2
- - uid: 8393
- components:
- - type: Transform
- pos: -32.5,-52.5
- parent: 2
- - uid: 8394
- components:
- - type: Transform
- pos: -76.5,-23.5
- parent: 2
- - uid: 8395
- components:
- - type: Transform
- pos: -76.5,-22.5
- parent: 2
- - uid: 8396
- components:
- - type: Transform
- pos: -75.5,-22.5
- parent: 2
- - uid: 8397
- components:
- - type: Transform
- pos: -74.5,-22.5
- parent: 2
- - uid: 8398
- components:
- - type: Transform
- pos: -74.5,-21.5
- parent: 2
- - uid: 8399
- components:
- - type: Transform
- pos: -74.5,-20.5
- parent: 2
- - uid: 8400
- components:
- - type: Transform
- pos: -74.5,-19.5
- parent: 2
- - uid: 8401
- components:
- - type: Transform
- pos: -73.5,-19.5
- parent: 2
- - uid: 8402
- components:
- - type: Transform
- pos: -72.5,-19.5
- parent: 2
- - uid: 8403
- components:
- - type: Transform
- pos: -71.5,-19.5
- parent: 2
- - uid: 8404
- components:
- - type: Transform
- pos: -70.5,-19.5
- parent: 2
- - uid: 8405
- components:
- - type: Transform
- pos: -69.5,-19.5
- parent: 2
- - uid: 8406
- components:
- - type: Transform
- pos: -68.5,-19.5
- parent: 2
- - uid: 8407
- components:
- - type: Transform
- pos: -67.5,-19.5
- parent: 2
- - uid: 8408
- components:
- - type: Transform
- pos: -67.5,-20.5
- parent: 2
- - uid: 8409
- components:
- - type: Transform
- pos: -66.5,-20.5
- parent: 2
- - uid: 8410
- components:
- - type: Transform
- pos: -65.5,-20.5
- parent: 2
- - uid: 8411
- components:
- - type: Transform
- pos: -64.5,-20.5
- parent: 2
- - uid: 8412
- components:
- - type: Transform
- pos: -63.5,-20.5
- parent: 2
- - uid: 8413
- components:
- - type: Transform
- pos: -62.5,-20.5
- parent: 2
- - uid: 8414
- components:
- - type: Transform
- pos: -62.5,-19.5
- parent: 2
- - uid: 8415
- components:
- - type: Transform
- pos: -61.5,-19.5
- parent: 2
- - uid: 8416
- components:
- - type: Transform
- pos: -60.5,-19.5
- parent: 2
- - uid: 8417
- components:
- - type: Transform
- pos: -59.5,-19.5
- parent: 2
- - uid: 8418
- components:
- - type: Transform
- pos: -58.5,-19.5
- parent: 2
- - uid: 8419
- components:
- - type: Transform
- pos: -57.5,-19.5
- parent: 2
- - uid: 8420
- components:
- - type: Transform
- pos: -56.5,-19.5
- parent: 2
- - uid: 8421
- components:
- - type: Transform
- pos: -55.5,-19.5
- parent: 2
- - uid: 8422
- components:
- - type: Transform
- pos: -54.5,-19.5
- parent: 2
- - uid: 8423
- components:
- - type: Transform
- pos: -41.5,10.5
- parent: 2
- - uid: 8424
- components:
- - type: Transform
- pos: -41.5,11.5
- parent: 2
- - uid: 8425
- components:
- - type: Transform
- pos: -41.5,12.5
- parent: 2
- - uid: 8426
- components:
- - type: Transform
- pos: -41.5,13.5
- parent: 2
- - uid: 8427
- components:
- - type: Transform
- pos: -41.5,14.5
- parent: 2
- - uid: 8428
- components:
- - type: Transform
- pos: -41.5,15.5
- parent: 2
- - uid: 8429
- components:
- - type: Transform
- pos: -41.5,16.5
- parent: 2
- - uid: 8430
- components:
- - type: Transform
- pos: -41.5,17.5
- parent: 2
- - uid: 8431
- components:
- - type: Transform
- pos: -41.5,18.5
- parent: 2
- - uid: 8432
- components:
- - type: Transform
- pos: -41.5,19.5
- parent: 2
- - uid: 8433
- components:
- - type: Transform
- pos: -41.5,20.5
- parent: 2
- - uid: 8434
- components:
- - type: Transform
- pos: -41.5,21.5
- parent: 2
- - uid: 8435
- components:
- - type: Transform
- pos: -41.5,22.5
- parent: 2
- - uid: 8436
- components:
- - type: Transform
- pos: -41.5,23.5
- parent: 2
- - uid: 8437
- components:
- - type: Transform
- pos: -41.5,24.5
- parent: 2
- - uid: 8438
- components:
- - type: Transform
- pos: -41.5,25.5
- parent: 2
- - uid: 8439
- components:
- - type: Transform
- pos: -42.5,25.5
- parent: 2
- - uid: 8440
- components:
- - type: Transform
- pos: -42.5,26.5
- parent: 2
- - uid: 8441
- components:
- - type: Transform
- pos: -42.5,27.5
- parent: 2
- - uid: 8442
- components:
- - type: Transform
- pos: -42.5,28.5
- parent: 2
- - uid: 8443
- components:
- - type: Transform
- pos: -42.5,29.5
- parent: 2
- - uid: 8444
- components:
- - type: Transform
- pos: -42.5,30.5
- parent: 2
- - uid: 8445
- components:
- - type: Transform
- pos: -42.5,31.5
- parent: 2
- - uid: 8446
- components:
- - type: Transform
- pos: -42.5,32.5
- parent: 2
- - uid: 8447
- components:
- - type: Transform
- pos: -42.5,33.5
- parent: 2
- - uid: 8448
- components:
- - type: Transform
- pos: -42.5,34.5
- parent: 2
- - uid: 8449
- components:
- - type: Transform
- pos: -42.5,35.5
- parent: 2
- - uid: 8450
- components:
- - type: Transform
- pos: -42.5,36.5
- parent: 2
- - uid: 8451
- components:
- - type: Transform
- pos: -42.5,37.5
- parent: 2
- - uid: 8452
- components:
- - type: Transform
- pos: -43.5,37.5
- parent: 2
- - uid: 8453
- components:
- - type: Transform
- pos: -44.5,37.5
- parent: 2
- - uid: 8454
- components:
- - type: Transform
- pos: -44.5,38.5
- parent: 2
- - uid: 8455
- components:
- - type: Transform
- pos: -44.5,39.5
- parent: 2
- - uid: 8456
- components:
- - type: Transform
- pos: -43.5,39.5
- parent: 2
- - uid: 8457
- components:
- - type: Transform
- pos: -42.5,39.5
- parent: 2
- - uid: 8458
- components:
- - type: Transform
- pos: -41.5,39.5
- parent: 2
- - uid: 8459
- components:
- - type: Transform
- pos: -40.5,39.5
- parent: 2
- - uid: 8460
- components:
- - type: Transform
- pos: -40.5,40.5
- parent: 2
- - uid: 8461
- components:
- - type: Transform
- pos: -37.5,40.5
- parent: 2
- - uid: 8462
- components:
- - type: Transform
- pos: -37.5,39.5
- parent: 2
- - uid: 8463
- components:
- - type: Transform
- pos: -36.5,39.5
- parent: 2
- - uid: 8464
- components:
- - type: Transform
- pos: -35.5,39.5
- parent: 2
- - uid: 8465
- components:
- - type: Transform
- pos: -35.5,38.5
- parent: 2
- - uid: 8466
- components:
- - type: Transform
- pos: -35.5,37.5
- parent: 2
- - uid: 8467
- components:
- - type: Transform
- pos: -36.5,37.5
- parent: 2
- - uid: 8468
- components:
- - type: Transform
- pos: -37.5,37.5
- parent: 2
- - uid: 8469
- components:
- - type: Transform
- pos: -38.5,37.5
- parent: 2
- - uid: 8470
- components:
- - type: Transform
- pos: -39.5,37.5
- parent: 2
- - uid: 8471
- components:
- - type: Transform
- pos: -40.5,37.5
- parent: 2
- - uid: 8472
- components:
- - type: Transform
- pos: -41.5,37.5
- parent: 2
- - uid: 8473
- components:
- - type: Transform
- pos: -42.5,37.5
- parent: 2
- - uid: 8474
- components:
- - type: Transform
- pos: 25.5,24.5
- parent: 2
- - uid: 8475
- components:
- - type: Transform
- pos: 24.5,24.5
- parent: 2
- - uid: 8476
- components:
- - type: Transform
- pos: 23.5,24.5
- parent: 2
- - uid: 8477
- components:
- - type: Transform
- pos: 22.5,24.5
- parent: 2
- - uid: 8478
- components:
- - type: Transform
- pos: 21.5,24.5
- parent: 2
- - uid: 8479
- components:
- - type: Transform
- pos: 20.5,24.5
- parent: 2
- - uid: 8480
- components:
- - type: Transform
- pos: 19.5,24.5
- parent: 2
- - uid: 8481
- components:
- - type: Transform
- pos: 18.5,24.5
- parent: 2
- - uid: 8482
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 2
- - uid: 8483
- components:
- - type: Transform
- pos: 17.5,23.5
- parent: 2
- - uid: 8484
- components:
- - type: Transform
- pos: 17.5,22.5
- parent: 2
- - uid: 8485
- components:
- - type: Transform
- pos: 17.5,21.5
- parent: 2
- - uid: 8486
- components:
- - type: Transform
- pos: 17.5,20.5
- parent: 2
- - uid: 8487
- components:
- - type: Transform
- pos: 17.5,19.5
- parent: 2
- - uid: 8488
- components:
- - type: Transform
- pos: 17.5,18.5
- parent: 2
- - uid: 8489
- components:
- - type: Transform
- pos: 17.5,17.5
- parent: 2
- - uid: 8490
- components:
- - type: Transform
- pos: 17.5,16.5
- parent: 2
- - uid: 8491
- components:
- - type: Transform
- pos: 17.5,15.5
- parent: 2
- - uid: 8492
- components:
- - type: Transform
- pos: 17.5,14.5
- parent: 2
- - uid: 8493
- components:
- - type: Transform
- pos: 17.5,13.5
- parent: 2
- - uid: 8494
- components:
- - type: Transform
- pos: 17.5,12.5
- parent: 2
- - uid: 8495
- components:
- - type: Transform
- pos: 17.5,11.5
- parent: 2
- - uid: 8496
- components:
- - type: Transform
- pos: 17.5,10.5
- parent: 2
- - uid: 8497
- components:
- - type: Transform
- pos: 17.5,9.5
- parent: 2
- - uid: 8498
- components:
- - type: Transform
- pos: 17.5,8.5
- parent: 2
- - uid: 8499
- components:
- - type: Transform
- pos: 69.5,-3.5
- parent: 2
- - uid: 8500
- components:
- - type: Transform
- pos: 69.5,-2.5
- parent: 2
- - uid: 8501
- components:
- - type: Transform
- pos: 69.5,-1.5
- parent: 2
- - uid: 8502
- components:
- - type: Transform
- pos: 69.5,-0.5
- parent: 2
- - uid: 8503
- components:
- - type: Transform
- pos: 68.5,-0.5
- parent: 2
- - uid: 8504
- components:
- - type: Transform
- pos: 67.5,-0.5
- parent: 2
- - uid: 8505
- components:
- - type: Transform
- pos: 67.5,0.5
- parent: 2
- - uid: 8506
- components:
- - type: Transform
- pos: 76.5,-0.5
- parent: 2
- - uid: 8507
- components:
- - type: Transform
- pos: 75.5,-0.5
- parent: 2
- - uid: 8508
- components:
- - type: Transform
- pos: 74.5,-0.5
- parent: 2
- - uid: 8509
- components:
- - type: Transform
- pos: 73.5,-0.5
- parent: 2
- - uid: 8510
- components:
- - type: Transform
- pos: 72.5,-0.5
- parent: 2
- - uid: 8511
- components:
- - type: Transform
- pos: 71.5,-0.5
- parent: 2
- - uid: 8512
- components:
- - type: Transform
- pos: 70.5,-0.5
- parent: 2
- - uid: 8513
- components:
- - type: Transform
- pos: 73.5,-2.5
- parent: 2
- - uid: 8514
- components:
- - type: Transform
- pos: 74.5,-2.5
- parent: 2
- - uid: 8515
- components:
- - type: Transform
- pos: 73.5,-3.5
- parent: 2
- - uid: 8516
- components:
- - type: Transform
- pos: 72.5,-3.5
- parent: 2
- - uid: 8517
- components:
- - type: Transform
- pos: 71.5,-3.5
- parent: 2
- - uid: 8518
- components:
- - type: Transform
- pos: 70.5,-3.5
- parent: 2
- - uid: 8519
- components:
- - type: Transform
- pos: 69.5,-3.5
- parent: 2
- - uid: 8520
- components:
- - type: Transform
- pos: 61.5,21.5
- parent: 2
- - uid: 8521
- components:
- - type: Transform
- pos: 61.5,22.5
- parent: 2
- - uid: 8522
- components:
- - type: Transform
- pos: 62.5,22.5
- parent: 2
- - uid: 8523
- components:
- - type: Transform
- pos: 63.5,22.5
- parent: 2
- - uid: 8524
- components:
- - type: Transform
- pos: 64.5,22.5
- parent: 2
- - uid: 8525
- components:
- - type: Transform
- pos: 65.5,22.5
- parent: 2
- - uid: 8526
- components:
- - type: Transform
- pos: 66.5,22.5
- parent: 2
- - uid: 8527
- components:
- - type: Transform
- pos: 67.5,22.5
- parent: 2
- - uid: 8528
- components:
- - type: Transform
- pos: 68.5,22.5
- parent: 2
- - uid: 8529
- components:
- - type: Transform
- pos: 69.5,22.5
- parent: 2
- - uid: 8530
- components:
- - type: Transform
- pos: 69.5,23.5
- parent: 2
- - uid: 8531
- components:
- - type: Transform
- pos: 69.5,24.5
- parent: 2
- - uid: 8532
- components:
- - type: Transform
- pos: 69.5,25.5
- parent: 2
- - uid: 8533
- components:
- - type: Transform
- pos: 68.5,25.5
- parent: 2
- - uid: 8534
- components:
- - type: Transform
- pos: 67.5,25.5
- parent: 2
- - uid: 8535
- components:
- - type: Transform
- pos: 66.5,25.5
- parent: 2
- - uid: 8536
- components:
- - type: Transform
- pos: 65.5,25.5
- parent: 2
- - uid: 8537
- components:
- - type: Transform
- pos: 64.5,25.5
- parent: 2
- - uid: 8538
- components:
- - type: Transform
- pos: 63.5,25.5
- parent: 2
- - uid: 8539
- components:
- - type: Transform
- pos: 62.5,25.5
- parent: 2
- - uid: 8540
- components:
- - type: Transform
- pos: 61.5,25.5
- parent: 2
- - uid: 8541
- components:
- - type: Transform
- pos: 60.5,25.5
- parent: 2
- - uid: 8542
- components:
- - type: Transform
- pos: 59.5,25.5
- parent: 2
- - uid: 8543
- components:
- - type: Transform
- pos: 58.5,25.5
- parent: 2
- - uid: 8544
- components:
- - type: Transform
- pos: 57.5,25.5
- parent: 2
- - uid: 8545
- components:
- - type: Transform
- pos: 56.5,25.5
- parent: 2
- - uid: 8546
- components:
- - type: Transform
- pos: 55.5,25.5
- parent: 2
- - uid: 8547
- components:
- - type: Transform
- pos: 54.5,25.5
- parent: 2
- - uid: 8548
- components:
- - type: Transform
- pos: 53.5,25.5
- parent: 2
- - uid: 8549
- components:
- - type: Transform
- pos: 52.5,25.5
- parent: 2
- - uid: 8550
- components:
- - type: Transform
- pos: 51.5,25.5
- parent: 2
- - uid: 8551
- components:
- - type: Transform
- pos: 50.5,25.5
- parent: 2
- - uid: 8552
- components:
- - type: Transform
- pos: 50.5,24.5
- parent: 2
- - uid: 8553
- components:
- - type: Transform
- pos: 50.5,23.5
- parent: 2
- - uid: 8554
- components:
- - type: Transform
- pos: 50.5,22.5
- parent: 2
- - uid: 8555
- components:
- - type: Transform
- pos: 49.5,22.5
- parent: 2
- - uid: 8556
- components:
- - type: Transform
- pos: 48.5,22.5
- parent: 2
- - uid: 8557
- components:
- - type: Transform
- pos: 47.5,22.5
- parent: 2
- - uid: 8558
- components:
- - type: Transform
- pos: 47.5,4.5
- parent: 2
- - uid: 8559
- components:
- - type: Transform
- pos: 47.5,21.5
- parent: 2
- - uid: 8560
- components:
- - type: Transform
- pos: 47.5,20.5
- parent: 2
- - uid: 8561
- components:
- - type: Transform
- pos: 47.5,19.5
- parent: 2
- - uid: 8562
- components:
- - type: Transform
- pos: 47.5,18.5
- parent: 2
- - uid: 8563
- components:
- - type: Transform
- pos: 47.5,17.5
- parent: 2
- - uid: 8564
- components:
- - type: Transform
- pos: 47.5,16.5
- parent: 2
- - uid: 8565
- components:
- - type: Transform
- pos: 47.5,15.5
- parent: 2
- - uid: 8566
- components:
- - type: Transform
- pos: 47.5,14.5
- parent: 2
- - uid: 8567
- components:
- - type: Transform
- pos: 47.5,13.5
- parent: 2
- - uid: 8568
- components:
- - type: Transform
- pos: 47.5,12.5
- parent: 2
- - uid: 8569
- components:
- - type: Transform
- pos: 47.5,11.5
- parent: 2
- - uid: 8570
- components:
- - type: Transform
- pos: 47.5,10.5
- parent: 2
- - uid: 8571
- components:
- - type: Transform
- pos: 47.5,9.5
- parent: 2
- - uid: 8572
- components:
- - type: Transform
- pos: 47.5,8.5
- parent: 2
- - uid: 8573
- components:
- - type: Transform
- pos: 47.5,7.5
- parent: 2
- - uid: 8574
- components:
- - type: Transform
- pos: 47.5,6.5
- parent: 2
- - uid: 8575
- components:
- - type: Transform
- pos: 47.5,5.5
- parent: 2
- - uid: 8576
- components:
- - type: Transform
- pos: 47.5,4.5
- parent: 2
- - uid: 8577
- components:
- - type: Transform
- pos: 46.5,4.5
- parent: 2
- - uid: 8578
- components:
- - type: Transform
- pos: 45.5,4.5
- parent: 2
- - uid: 8579
- components:
- - type: Transform
- pos: 44.5,4.5
- parent: 2
- - uid: 8580
- components:
- - type: Transform
- pos: 43.5,4.5
- parent: 2
- - uid: 8581
- components:
- - type: Transform
- pos: 42.5,4.5
- parent: 2
- - uid: 8582
- components:
- - type: Transform
- pos: 41.5,4.5
- parent: 2
- - uid: 8583
- components:
- - type: Transform
- pos: 40.5,4.5
- parent: 2
- - uid: 8584
- components:
- - type: Transform
- pos: 39.5,4.5
- parent: 2
- - uid: 8585
- components:
- - type: Transform
- pos: 38.5,4.5
- parent: 2
- - uid: 8586
- components:
- - type: Transform
- pos: 37.5,4.5
- parent: 2
- - uid: 8587
- components:
- - type: Transform
- pos: 36.5,4.5
- parent: 2
- - uid: 8588
- components:
- - type: Transform
- pos: 35.5,4.5
- parent: 2
- - uid: 8589
- components:
- - type: Transform
- pos: 34.5,4.5
- parent: 2
- - uid: 8590
- components:
- - type: Transform
- pos: 33.5,4.5
- parent: 2
- - uid: 8591
- components:
- - type: Transform
- pos: 32.5,4.5
- parent: 2
- - uid: 8592
- components:
- - type: Transform
- pos: 32.5,5.5
- parent: 2
- - uid: 8593
- components:
- - type: Transform
- pos: 32.5,5.5
- parent: 2
- - uid: 8594
- components:
- - type: Transform
- pos: 31.5,5.5
- parent: 2
- - uid: 8595
- components:
- - type: Transform
- pos: 30.5,5.5
- parent: 2
- - uid: 8596
- components:
- - type: Transform
- pos: 29.5,5.5
- parent: 2
- - uid: 8597
- components:
- - type: Transform
- pos: 28.5,5.5
- parent: 2
- - uid: 8598
- components:
- - type: Transform
- pos: 27.5,5.5
- parent: 2
- - uid: 8599
- components:
- - type: Transform
- pos: 26.5,5.5
- parent: 2
- - uid: 8600
- components:
- - type: Transform
- pos: 25.5,5.5
- parent: 2
- - uid: 8601
- components:
- - type: Transform
- pos: 24.5,5.5
- parent: 2
- - uid: 8602
- components:
- - type: Transform
- pos: 23.5,5.5
- parent: 2
- - uid: 8603
- components:
- - type: Transform
- pos: 22.5,5.5
- parent: 2
- - uid: 8604
- components:
- - type: Transform
- pos: 21.5,5.5
- parent: 2
- - uid: 8605
- components:
- - type: Transform
- pos: 20.5,5.5
- parent: 2
- - uid: 8606
- components:
- - type: Transform
- pos: 19.5,5.5
- parent: 2
- - uid: 8607
- components:
- - type: Transform
- pos: 18.5,5.5
- parent: 2
- - uid: 8608
- components:
- - type: Transform
- pos: 17.5,5.5
- parent: 2
- - uid: 8609
- components:
- - type: Transform
- pos: 17.5,5.5
- parent: 2
- - uid: 8610
- components:
- - type: Transform
- pos: 17.5,5.5
- parent: 2
- - uid: 8611
- components:
- - type: Transform
- pos: 17.5,6.5
- parent: 2
- - uid: 8612
- components:
- - type: Transform
- pos: 17.5,7.5
- parent: 2
- - uid: 8613
- components:
- - type: Transform
- pos: 17.5,8.5
- parent: 2
- - uid: 8614
- components:
- - type: Transform
- pos: 17.5,4.5
- parent: 2
- - uid: 8615
- components:
- - type: Transform
- pos: 17.5,3.5
- parent: 2
- - uid: 8616
- components:
- - type: Transform
- pos: 17.5,2.5
- parent: 2
- - uid: 8617
- components:
- - type: Transform
- pos: 17.5,1.5
- parent: 2
- - uid: 8618
- components:
- - type: Transform
- pos: 17.5,0.5
- parent: 2
- - uid: 8619
- components:
- - type: Transform
- pos: 17.5,-0.5
- parent: 2
- - uid: 8620
- components:
- - type: Transform
- pos: 17.5,-1.5
- parent: 2
- - uid: 8621
- components:
- - type: Transform
- pos: 17.5,-2.5
- parent: 2
- - uid: 8622
- components:
- - type: Transform
- pos: 17.5,-3.5
- parent: 2
- - uid: 8623
- components:
- - type: Transform
- pos: 17.5,-4.5
- parent: 2
- - uid: 8624
- components:
- - type: Transform
- pos: 17.5,-5.5
- parent: 2
- - uid: 8625
- components:
- - type: Transform
- pos: 17.5,-6.5
- parent: 2
- - uid: 8626
- components:
- - type: Transform
- pos: 17.5,-7.5
- parent: 2
- - uid: 8627
- components:
- - type: Transform
- pos: 17.5,-8.5
- parent: 2
- - uid: 8628
- components:
- - type: Transform
- pos: 17.5,-9.5
- parent: 2
- - uid: 8629
- components:
- - type: Transform
- pos: 17.5,-10.5
- parent: 2
- - uid: 8630
- components:
- - type: Transform
- pos: 17.5,-11.5
- parent: 2
- - uid: 8631
- components:
- - type: Transform
- pos: 17.5,-12.5
- parent: 2
- - uid: 8632
- components:
- - type: Transform
- pos: 17.5,-13.5
- parent: 2
- - uid: 8633
- components:
- - type: Transform
- pos: 17.5,-14.5
- parent: 2
- - uid: 8634
- components:
- - type: Transform
- pos: 17.5,-15.5
- parent: 2
- - uid: 8635
- components:
- - type: Transform
- pos: 17.5,-16.5
- parent: 2
- - uid: 8636
- components:
- - type: Transform
- pos: 17.5,-17.5
- parent: 2
- - uid: 8637
- components:
- - type: Transform
- pos: 17.5,-18.5
- parent: 2
- - uid: 8638
- components:
- - type: Transform
- pos: 17.5,-19.5
- parent: 2
- - uid: 8639
- components:
- - type: Transform
- pos: 16.5,-19.5
- parent: 2
- - uid: 8640
- components:
- - type: Transform
- pos: 15.5,-19.5
- parent: 2
- - uid: 8641
- components:
- - type: Transform
- pos: 14.5,-19.5
- parent: 2
- - uid: 8642
- components:
- - type: Transform
- pos: 13.5,-19.5
- parent: 2
- - uid: 8643
- components:
- - type: Transform
- pos: 12.5,-19.5
- parent: 2
- - uid: 8644
- components:
- - type: Transform
- pos: 11.5,-19.5
- parent: 2
- - uid: 8645
- components:
- - type: Transform
- pos: 10.5,-19.5
- parent: 2
- - uid: 8646
- components:
- - type: Transform
- pos: 9.5,-19.5
- parent: 2
- - uid: 8647
- components:
- - type: Transform
- pos: 8.5,-19.5
- parent: 2
- - uid: 8648
- components:
- - type: Transform
- pos: 7.5,-19.5
- parent: 2
- - uid: 8649
- components:
- - type: Transform
- pos: 6.5,-19.5
- parent: 2
- - uid: 8650
- components:
- - type: Transform
- pos: 5.5,-19.5
- parent: 2
- - uid: 8651
- components:
- - type: Transform
- pos: 4.5,-19.5
- parent: 2
- - uid: 8652
- components:
- - type: Transform
- pos: 3.5,-19.5
- parent: 2
- - uid: 8653
- components:
- - type: Transform
- pos: 2.5,-19.5
- parent: 2
- - uid: 8654
- components:
- - type: Transform
- pos: 1.5,-19.5
- parent: 2
- - uid: 8655
- components:
- - type: Transform
- pos: 0.49999997,-19.5
- parent: 2
- - uid: 8656
- components:
- - type: Transform
- pos: -0.5,-19.5
- parent: 2
- - uid: 8657
- components:
- - type: Transform
- pos: -1.5,-19.5
- parent: 2
- - uid: 8658
- components:
- - type: Transform
- pos: -2.5,-19.5
- parent: 2
- - uid: 8659
- components:
- - type: Transform
- pos: -3.5,-19.5
- parent: 2
- - uid: 8660
- components:
- - type: Transform
- pos: -4.5,-19.5
- parent: 2
- - uid: 8661
- components:
- - type: Transform
- pos: -5.5,-19.5
- parent: 2
- - uid: 8662
- components:
- - type: Transform
- pos: -6.5,-19.5
- parent: 2
- - uid: 8663
- components:
- - type: Transform
- pos: -7.5,-19.5
- parent: 2
- - uid: 8664
- components:
- - type: Transform
- pos: -8.5,-19.5
- parent: 2
- - uid: 8665
- components:
- - type: Transform
- pos: -9.5,-19.5
- parent: 2
- - uid: 8666
- components:
- - type: Transform
- pos: -10.5,-19.5
- parent: 2
- - uid: 8667
- components:
- - type: Transform
- pos: -11.5,-19.5
- parent: 2
- - uid: 8668
- components:
- - type: Transform
- pos: -12.5,-19.5
- parent: 2
- - uid: 8669
- components:
- - type: Transform
- pos: -13.5,-19.5
- parent: 2
- - uid: 8670
- components:
- - type: Transform
- pos: -14.5,-19.5
- parent: 2
- - uid: 8671
- components:
- - type: Transform
- pos: -15.5,-19.5
- parent: 2
- - uid: 8672
- components:
- - type: Transform
- pos: -16.5,-19.5
- parent: 2
- - uid: 8673
- components:
- - type: Transform
- pos: -17.5,-19.5
- parent: 2
- - uid: 8674
- components:
- - type: Transform
- pos: -18.5,-19.5
- parent: 2
- - uid: 8675
- components:
- - type: Transform
- pos: -18.5,-18.5
- parent: 2
- - uid: 8676
- components:
- - type: Transform
- pos: -18.5,-17.5
- parent: 2
- - uid: 8677
- components:
- - type: Transform
- pos: -18.5,-16.5
- parent: 2
- - uid: 8678
- components:
- - type: Transform
- pos: -18.5,-15.5
- parent: 2
- - uid: 8679
- components:
- - type: Transform
- pos: -18.5,-14.5
- parent: 2
- - uid: 8680
- components:
- - type: Transform
- pos: -18.5,-13.5
- parent: 2
- - uid: 8681
- components:
- - type: Transform
- pos: -18.5,-12.5
- parent: 2
- - uid: 8682
- components:
- - type: Transform
- pos: -18.5,-11.5
- parent: 2
- - uid: 8683
- components:
- - type: Transform
- pos: -18.5,-10.5
- parent: 2
- - uid: 8684
- components:
- - type: Transform
- pos: -18.5,-9.5
- parent: 2
- - uid: 8685
- components:
- - type: Transform
- pos: -18.5,-8.5
- parent: 2
- - uid: 8686
- components:
- - type: Transform
- pos: -18.5,-7.5
- parent: 2
- - uid: 8687
- components:
- - type: Transform
- pos: -18.5,-6.5
- parent: 2
- - uid: 8688
- components:
- - type: Transform
- pos: -18.5,-5.5
- parent: 2
- - uid: 8689
- components:
- - type: Transform
- pos: -18.5,-4.5
- parent: 2
- - uid: 8690
- components:
- - type: Transform
- pos: -18.5,-3.5
- parent: 2
- - uid: 8691
- components:
- - type: Transform
- pos: -18.5,-2.5
- parent: 2
- - uid: 8692
- components:
- - type: Transform
- pos: -18.5,-1.5
- parent: 2
- - uid: 8693
- components:
- - type: Transform
- pos: -18.5,-0.5
- parent: 2
- - uid: 8694
- components:
- - type: Transform
- pos: -18.5,0.5
- parent: 2
- - uid: 8695
- components:
- - type: Transform
- pos: -18.5,1.5
- parent: 2
- - uid: 8696
- components:
- - type: Transform
- pos: -18.5,2.5
- parent: 2
- - uid: 8697
- components:
- - type: Transform
- pos: -18.5,3.5
- parent: 2
- - uid: 8698
- components:
- - type: Transform
- pos: -18.5,4.5
- parent: 2
- - uid: 8699
- components:
- - type: Transform
- pos: -42.5,-19.5
- parent: 2
- - uid: 8700
- components:
- - type: Transform
- pos: -41.5,-19.5
- parent: 2
- - uid: 8701
- components:
- - type: Transform
- pos: -40.5,-19.5
- parent: 2
- - uid: 8702
- components:
- - type: Transform
- pos: -39.5,-19.5
- parent: 2
- - uid: 8703
- components:
- - type: Transform
- pos: -38.5,-19.5
- parent: 2
- - uid: 8704
- components:
- - type: Transform
- pos: -37.5,-19.5
- parent: 2
- - uid: 8705
- components:
- - type: Transform
- pos: -36.5,-19.5
- parent: 2
- - uid: 8706
- components:
- - type: Transform
- pos: -35.5,-19.5
- parent: 2
- - uid: 8707
- components:
- - type: Transform
- pos: -34.5,-19.5
- parent: 2
- - uid: 8708
- components:
- - type: Transform
- pos: -33.5,-19.5
- parent: 2
- - uid: 8709
- components:
- - type: Transform
- pos: -32.5,-19.5
- parent: 2
- - uid: 8710
- components:
- - type: Transform
- pos: -31.5,-19.5
- parent: 2
- - uid: 8711
- components:
- - type: Transform
- pos: -30.5,-19.5
- parent: 2
- - uid: 8712
- components:
- - type: Transform
- pos: -29.5,-19.5
- parent: 2
- - uid: 8713
- components:
- - type: Transform
- pos: -28.5,-19.5
- parent: 2
- - uid: 8714
- components:
- - type: Transform
- pos: -27.5,-19.5
- parent: 2
- - uid: 8715
- components:
- - type: Transform
- pos: -26.5,-19.5
- parent: 2
- - uid: 8716
- components:
- - type: Transform
- pos: -25.5,-19.5
- parent: 2
- - uid: 8717
- components:
- - type: Transform
- pos: -24.5,-19.5
- parent: 2
- - uid: 8718
- components:
- - type: Transform
- pos: -23.5,-19.5
- parent: 2
- - uid: 8719
- components:
- - type: Transform
- pos: -22.5,-19.5
- parent: 2
- - uid: 8720
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 2
- - uid: 8721
- components:
- - type: Transform
- pos: -20.5,-19.5
- parent: 2
- - uid: 8722
- components:
- - type: Transform
- pos: -19.5,-19.5
- parent: 2
- - uid: 8723
- components:
- - type: Transform
- pos: -14.5,-28.5
- parent: 2
- - uid: 8724
- components:
- - type: Transform
- pos: -14.5,-27.5
- parent: 2
- - uid: 8725
- components:
- - type: Transform
- pos: -14.5,-26.5
- parent: 2
- - uid: 8726
- components:
- - type: Transform
- pos: -14.5,-25.5
- parent: 2
- - uid: 8727
- components:
- - type: Transform
- pos: -14.5,-24.5
- parent: 2
- - uid: 8728
- components:
- - type: Transform
- pos: -13.5,-24.5
- parent: 2
- - uid: 8729
- components:
- - type: Transform
- pos: -13.5,-23.5
- parent: 2
- - uid: 8730
- components:
- - type: Transform
- pos: -13.5,-22.5
- parent: 2
- - uid: 8731
- components:
- - type: Transform
- pos: -13.5,-21.5
- parent: 2
- - uid: 8732
- components:
- - type: Transform
- pos: -13.5,-20.5
- parent: 2
- - uid: 8733
- components:
- - type: Transform
- pos: 55.5,-42.5
- parent: 2
- - uid: 8734
- components:
- - type: Transform
- pos: 55.5,-43.5
- parent: 2
- - uid: 8735
- components:
- - type: Transform
- pos: 54.5,-43.5
- parent: 2
- - uid: 8736
- components:
- - type: Transform
- pos: 53.5,-43.5
- parent: 2
- - uid: 8737
- components:
- - type: Transform
- pos: 52.5,-43.5
- parent: 2
- - uid: 8738
- components:
- - type: Transform
- pos: 51.5,-43.5
- parent: 2
- - uid: 8739
- components:
- - type: Transform
- pos: 51.5,-42.5
- parent: 2
- - uid: 8740
- components:
- - type: Transform
- pos: 51.5,-41.5
- parent: 2
- - uid: 8741
- components:
- - type: Transform
- pos: 51.5,-40.5
- parent: 2
- - uid: 8742
- components:
- - type: Transform
- pos: 51.5,-39.5
- parent: 2
- - uid: 8743
- components:
- - type: Transform
- pos: 51.5,-38.5
- parent: 2
- - uid: 8744
- components:
- - type: Transform
- pos: 51.5,-37.5
- parent: 2
- - uid: 8745
- components:
- - type: Transform
- pos: 51.5,-36.5
- parent: 2
- - uid: 8746
- components:
- - type: Transform
- pos: 51.5,-35.5
- parent: 2
- - uid: 8747
- components:
- - type: Transform
- pos: 51.5,-34.5
- parent: 2
- - uid: 8748
- components:
- - type: Transform
- pos: 51.5,-33.5
- parent: 2
- - uid: 8749
- components:
- - type: Transform
- pos: 51.5,-32.5
- parent: 2
- - uid: 8750
- components:
- - type: Transform
- pos: 51.5,-31.5
- parent: 2
- - uid: 8751
- components:
- - type: Transform
- pos: 51.5,-30.5
- parent: 2
- - uid: 8752
- components:
- - type: Transform
- pos: 51.5,-29.5
- parent: 2
- - uid: 8753
- components:
- - type: Transform
- pos: 51.5,-28.5
- parent: 2
- - uid: 8754
- components:
- - type: Transform
- pos: 51.5,-28.5
- parent: 2
- - uid: 8755
- components:
- - type: Transform
- pos: 50.5,-28.5
- parent: 2
- - uid: 8756
- components:
- - type: Transform
- pos: 49.5,-28.5
- parent: 2
- - uid: 8757
- components:
- - type: Transform
- pos: 48.5,-28.5
- parent: 2
- - uid: 8758
- components:
- - type: Transform
- pos: 47.5,-28.5
- parent: 2
- - uid: 8759
- components:
- - type: Transform
- pos: 46.5,-28.5
- parent: 2
- - uid: 8760
- components:
- - type: Transform
- pos: 45.5,-28.5
- parent: 2
- - uid: 8761
- components:
- - type: Transform
- pos: 44.5,-28.5
- parent: 2
- - uid: 8762
- components:
- - type: Transform
- pos: 43.5,-28.5
- parent: 2
- - uid: 8763
- components:
- - type: Transform
- pos: 42.5,-28.5
- parent: 2
- - uid: 8764
- components:
- - type: Transform
- pos: 41.5,-28.5
- parent: 2
- - uid: 8765
- components:
- - type: Transform
- pos: 40.5,-28.5
- parent: 2
- - uid: 8766
- components:
- - type: Transform
- pos: 40.5,-28.5
- parent: 2
- - uid: 8767
- components:
- - type: Transform
- pos: 40.5,-27.5
- parent: 2
- - uid: 8768
- components:
- - type: Transform
- pos: 40.5,-26.5
- parent: 2
- - uid: 8769
- components:
- - type: Transform
- pos: 40.5,-22.5
- parent: 2
- - uid: 8770
- components:
- - type: Transform
- pos: 40.5,-23.5
- parent: 2
- - uid: 8771
- components:
- - type: Transform
- pos: 40.5,-24.5
- parent: 2
- - uid: 8772
- components:
- - type: Transform
- pos: 40.5,-25.5
- parent: 2
- - uid: 8773
- components:
- - type: Transform
- pos: 40.5,-26.5
- parent: 2
- - uid: 8774
- components:
- - type: Transform
- pos: 39.5,-22.5
- parent: 2
- - uid: 8775
- components:
- - type: Transform
- pos: 38.5,-22.5
- parent: 2
- - uid: 8776
- components:
- - type: Transform
- pos: 37.5,-22.5
- parent: 2
- - uid: 8777
- components:
- - type: Transform
- pos: 36.5,-22.5
- parent: 2
- - uid: 8778
- components:
- - type: Transform
- pos: 35.5,-22.5
- parent: 2
- - uid: 8779
- components:
- - type: Transform
- pos: 34.5,-22.5
- parent: 2
- - uid: 8780
- components:
- - type: Transform
- pos: 34.5,-22.5
- parent: 2
- - uid: 8781
- components:
- - type: Transform
- pos: 34.5,-21.5
- parent: 2
- - uid: 8782
- components:
- - type: Transform
- pos: 34.5,-20.5
- parent: 2
- - uid: 8783
- components:
- - type: Transform
- pos: 34.5,-19.5
- parent: 2
- - uid: 8784
- components:
- - type: Transform
- pos: 33.5,-19.5
- parent: 2
- - uid: 8785
- components:
- - type: Transform
- pos: 32.5,-19.5
- parent: 2
- - uid: 8786
- components:
- - type: Transform
- pos: 31.5,-19.5
- parent: 2
- - uid: 8787
- components:
- - type: Transform
- pos: 30.5,-19.5
- parent: 2
- - uid: 8788
- components:
- - type: Transform
- pos: 29.5,-19.5
- parent: 2
- - uid: 8789
- components:
- - type: Transform
- pos: 28.5,-19.5
- parent: 2
- - uid: 8790
- components:
- - type: Transform
- pos: 27.5,-19.5
- parent: 2
- - uid: 8791
- components:
- - type: Transform
- pos: 26.5,-19.5
- parent: 2
- - uid: 8792
- components:
- - type: Transform
- pos: 25.5,-19.5
- parent: 2
- - uid: 8793
- components:
- - type: Transform
- pos: 25.5,-20.5
- parent: 2
- - uid: 8794
- components:
- - type: Transform
- pos: 24.5,-20.5
- parent: 2
- - uid: 8795
- components:
- - type: Transform
- pos: 23.5,-20.5
- parent: 2
- - uid: 8796
- components:
- - type: Transform
- pos: 22.5,-20.5
- parent: 2
- - uid: 8797
- components:
- - type: Transform
- pos: 22.5,-19.5
- parent: 2
- - uid: 8798
- components:
- - type: Transform
- pos: 21.5,-19.5
- parent: 2
- - uid: 8799
- components:
- - type: Transform
- pos: 20.5,-19.5
- parent: 2
- - uid: 8800
- components:
- - type: Transform
- pos: 19.5,-19.5
- parent: 2
- - uid: 8801
- components:
- - type: Transform
- pos: 19.5,-19.5
- parent: 2
- - uid: 8802
- components:
- - type: Transform
- pos: 18.5,-19.5
- parent: 2
- - uid: 8803
- components:
- - type: Transform
- pos: 53.5,-6.5
- parent: 2
- - uid: 8804
- components:
- - type: Transform
- pos: 53.5,-7.5
- parent: 2
- - uid: 8805
- components:
- - type: Transform
- pos: 53.5,-8.5
- parent: 2
- - uid: 8806
- components:
- - type: Transform
- pos: 53.5,-9.5
- parent: 2
- - uid: 8807
- components:
- - type: Transform
- pos: 53.5,-10.5
- parent: 2
- - uid: 8808
- components:
- - type: Transform
- pos: 53.5,-10.5
- parent: 2
- - uid: 8809
- components:
- - type: Transform
- pos: 52.5,-10.5
- parent: 2
- - uid: 8810
- components:
- - type: Transform
- pos: 51.5,-10.5
- parent: 2
- - uid: 8811
- components:
- - type: Transform
- pos: 50.5,-10.5
- parent: 2
- - uid: 8812
- components:
- - type: Transform
- pos: 49.5,-10.5
- parent: 2
- - uid: 8813
- components:
- - type: Transform
- pos: 48.5,-10.5
- parent: 2
- - uid: 8814
- components:
- - type: Transform
- pos: 47.5,-10.5
- parent: 2
- - uid: 8815
- components:
- - type: Transform
- pos: 46.5,-10.5
- parent: 2
- - uid: 8816
- components:
- - type: Transform
- pos: 45.5,-10.5
- parent: 2
- - uid: 8817
- components:
- - type: Transform
- pos: 44.5,-10.5
- parent: 2
- - uid: 8818
- components:
- - type: Transform
- pos: 44.5,-9.5
- parent: 2
- - uid: 8819
- components:
- - type: Transform
- pos: 44.5,-8.5
- parent: 2
- - uid: 8820
- components:
- - type: Transform
- pos: 44.5,-7.5
- parent: 2
- - uid: 8821
- components:
- - type: Transform
- pos: 44.5,-7.5
- parent: 2
- - uid: 8822
- components:
- - type: Transform
- pos: 43.5,-7.5
- parent: 2
- - uid: 8823
- components:
- - type: Transform
- pos: 42.5,-7.5
- parent: 2
- - uid: 8824
- components:
- - type: Transform
- pos: 41.5,-7.5
- parent: 2
- - uid: 8825
- components:
- - type: Transform
- pos: 40.5,-7.5
- parent: 2
- - uid: 8826
- components:
- - type: Transform
- pos: 39.5,-7.5
- parent: 2
- - uid: 8827
- components:
- - type: Transform
- pos: 38.5,-7.5
- parent: 2
- - uid: 8828
- components:
- - type: Transform
- pos: 37.5,-7.5
- parent: 2
- - uid: 8829
- components:
- - type: Transform
- pos: 37.5,-8.5
- parent: 2
- - uid: 8830
- components:
- - type: Transform
- pos: 37.5,-9.5
- parent: 2
- - uid: 8831
- components:
- - type: Transform
- pos: 37.5,-10.5
- parent: 2
- - uid: 8832
- components:
- - type: Transform
- pos: 37.5,-11.5
- parent: 2
- - uid: 8833
- components:
- - type: Transform
- pos: 37.5,-11.5
- parent: 2
- - uid: 8834
- components:
- - type: Transform
- pos: 36.5,-11.5
- parent: 2
- - uid: 8835
- components:
- - type: Transform
- pos: 35.5,-11.5
- parent: 2
- - uid: 8836
- components:
- - type: Transform
- pos: 34.5,-11.5
- parent: 2
- - uid: 8837
- components:
- - type: Transform
- pos: 33.5,-11.5
- parent: 2
- - uid: 8838
- components:
- - type: Transform
- pos: 32.5,-11.5
- parent: 2
- - uid: 8839
- components:
- - type: Transform
- pos: 31.5,-11.5
- parent: 2
- - uid: 8840
- components:
- - type: Transform
- pos: 31.5,-10.5
- parent: 2
- - uid: 8841
- components:
- - type: Transform
- pos: 30.5,-10.5
- parent: 2
- - uid: 8842
- components:
- - type: Transform
- pos: 29.5,-10.5
- parent: 2
- - uid: 8843
- components:
- - type: Transform
- pos: 28.5,-10.5
- parent: 2
- - uid: 8844
- components:
- - type: Transform
- pos: 27.5,-10.5
- parent: 2
- - uid: 8845
- components:
- - type: Transform
- pos: 26.5,-10.5
- parent: 2
- - uid: 8846
- components:
- - type: Transform
- pos: 25.5,-10.5
- parent: 2
- - uid: 8847
- components:
- - type: Transform
- pos: 24.5,-10.5
- parent: 2
- - uid: 8848
- components:
- - type: Transform
- pos: 23.5,-10.5
- parent: 2
- - uid: 8849
- components:
- - type: Transform
- pos: 22.5,-10.5
- parent: 2
- - uid: 8850
- components:
- - type: Transform
- pos: 21.5,-10.5
- parent: 2
- - uid: 8851
- components:
- - type: Transform
- pos: 20.5,-10.5
- parent: 2
- - uid: 8852
- components:
- - type: Transform
- pos: 19.5,-10.5
- parent: 2
- - uid: 8853
- components:
- - type: Transform
- pos: 18.5,-10.5
- parent: 2
- - uid: 8854
- components:
- - type: Transform
- pos: 79.5,-44.5
- parent: 2
- - uid: 8855
- components:
- - type: Transform
- pos: 79.5,-43.5
- parent: 2
- - uid: 8856
- components:
- - type: Transform
- pos: 79.5,-42.5
- parent: 2
- - uid: 8857
- components:
- - type: Transform
- pos: 78.5,-46.5
- parent: 2
- - uid: 8858
- components:
- - type: Transform
- pos: 78.5,-45.5
- parent: 2
- - uid: 8859
- components:
- - type: Transform
- pos: 78.5,-44.5
- parent: 2
- - uid: 8860
- components:
- - type: Transform
- pos: 79.5,-46.5
- parent: 2
- - uid: 8861
- components:
- - type: Transform
- pos: 80.5,-46.5
- parent: 2
- - uid: 8862
- components:
- - type: Transform
- pos: 81.5,-46.5
- parent: 2
- - uid: 8863
- components:
- - type: Transform
- pos: 81.5,-45.5
- parent: 2
- - uid: 8864
- components:
- - type: Transform
- pos: 81.5,-44.5
- parent: 2
- - uid: 8865
- components:
- - type: Transform
- pos: 81.5,-43.5
- parent: 2
- - uid: 8866
- components:
- - type: Transform
- pos: 81.5,-42.5
- parent: 2
- - uid: 8867
- components:
- - type: Transform
- pos: 82.5,-44.5
- parent: 2
- - uid: 8868
- components:
- - type: Transform
- pos: 83.5,-44.5
- parent: 2
- - uid: 8869
- components:
- - type: Transform
- pos: 84.5,-44.5
- parent: 2
- - uid: 8870
- components:
- - type: Transform
- pos: 85.5,-44.5
- parent: 2
- - uid: 8871
- components:
- - type: Transform
- pos: 86.5,-44.5
- parent: 2
- - uid: 8872
- components:
- - type: Transform
- pos: 87.5,-44.5
- parent: 2
- - uid: 8873
- components:
- - type: Transform
- pos: 88.5,-44.5
- parent: 2
- - uid: 8874
- components:
- - type: Transform
- pos: 86.5,-43.5
- parent: 2
- - uid: 8875
- components:
- - type: Transform
- pos: 84.5,-42.5
- parent: 2
- - uid: 8876
- components:
- - type: Transform
- pos: 85.5,-42.5
- parent: 2
- - uid: 8877
- components:
- - type: Transform
- pos: 86.5,-42.5
- parent: 2
- - uid: 8878
- components:
- - type: Transform
- pos: 87.5,-42.5
- parent: 2
- - uid: 8879
- components:
- - type: Transform
- pos: 88.5,-42.5
- parent: 2
- - uid: 8880
- components:
- - type: Transform
- pos: 88.5,-46.5
- parent: 2
- - uid: 8881
- components:
- - type: Transform
- pos: 87.5,-46.5
- parent: 2
- - uid: 8882
- components:
- - type: Transform
- pos: 86.5,-46.5
- parent: 2
- - uid: 8883
- components:
- - type: Transform
- pos: 85.5,-46.5
- parent: 2
- - uid: 8884
- components:
- - type: Transform
- pos: 84.5,-46.5
- parent: 2
- - uid: 8885
- components:
- - type: Transform
- pos: 86.5,-45.5
- parent: 2
- - uid: 8886
- components:
- - type: Transform
- pos: 78.5,-48.5
- parent: 2
- - uid: 8887
- components:
- - type: Transform
- pos: 78.5,-49.5
- parent: 2
- - uid: 8888
- components:
- - type: Transform
- pos: 78.5,-50.5
- parent: 2
- - uid: 8889
- components:
- - type: Transform
- pos: 78.5,-51.5
- parent: 2
- - uid: 8890
- components:
- - type: Transform
- pos: 78.5,-52.5
- parent: 2
- - uid: 8891
- components:
- - type: Transform
- pos: 79.5,-50.5
- parent: 2
- - uid: 8892
- components:
- - type: Transform
- pos: 80.5,-48.5
- parent: 2
- - uid: 8893
- components:
- - type: Transform
- pos: 80.5,-49.5
- parent: 2
- - uid: 8894
- components:
- - type: Transform
- pos: 80.5,-50.5
- parent: 2
- - uid: 8895
- components:
- - type: Transform
- pos: 80.5,-51.5
- parent: 2
- - uid: 8896
- components:
- - type: Transform
- pos: 80.5,-52.5
- parent: 2
- - uid: 8897
- components:
- - type: Transform
- pos: 82.5,-48.5
- parent: 2
- - uid: 8898
- components:
- - type: Transform
- pos: 82.5,-49.5
- parent: 2
- - uid: 8899
- components:
- - type: Transform
- pos: 82.5,-50.5
- parent: 2
- - uid: 8900
- components:
- - type: Transform
- pos: 82.5,-51.5
- parent: 2
- - uid: 8901
- components:
- - type: Transform
- pos: 82.5,-52.5
- parent: 2
- - uid: 8902
- components:
- - type: Transform
- pos: 81.5,-50.5
- parent: 2
- - uid: 8903
- components:
- - type: Transform
- pos: 80.5,-47.5
- parent: 2
- - uid: 8904
- components:
- - type: Transform
- pos: 81.5,-41.5
- parent: 2
- - uid: 8905
- components:
- - type: Transform
- pos: 80.5,-41.5
- parent: 2
- - uid: 8906
- components:
- - type: Transform
- pos: 80.5,-40.5
- parent: 2
- - uid: 8907
- components:
- - type: Transform
- pos: 80.5,-39.5
- parent: 2
- - uid: 8908
- components:
- - type: Transform
- pos: 80.5,-38.5
- parent: 2
- - uid: 8909
- components:
- - type: Transform
- pos: 80.5,-37.5
- parent: 2
- - uid: 8910
- components:
- - type: Transform
- pos: 80.5,-36.5
- parent: 2
- - uid: 8911
- components:
- - type: Transform
- pos: 79.5,-38.5
- parent: 2
- - uid: 8912
- components:
- - type: Transform
- pos: 82.5,-36.5
- parent: 2
- - uid: 8913
- components:
- - type: Transform
- pos: 82.5,-37.5
- parent: 2
- - uid: 8914
- components:
- - type: Transform
- pos: 82.5,-38.5
- parent: 2
- - uid: 8915
- components:
- - type: Transform
- pos: 82.5,-39.5
- parent: 2
- - uid: 8916
- components:
- - type: Transform
- pos: 82.5,-40.5
- parent: 2
- - uid: 8917
- components:
- - type: Transform
- pos: 81.5,-38.5
- parent: 2
- - uid: 8918
- components:
- - type: Transform
- pos: 78.5,-36.5
- parent: 2
- - uid: 8919
- components:
- - type: Transform
- pos: 78.5,-37.5
- parent: 2
- - uid: 8920
- components:
- - type: Transform
- pos: 78.5,-38.5
- parent: 2
- - uid: 8921
- components:
- - type: Transform
- pos: 78.5,-39.5
- parent: 2
- - uid: 8922
- components:
- - type: Transform
- pos: 78.5,-40.5
- parent: 2
- - uid: 8923
- components:
- - type: Transform
- pos: 52.5,-40.5
- parent: 2
- - uid: 8924
- components:
- - type: Transform
- pos: 53.5,-40.5
- parent: 2
- - uid: 8925
- components:
- - type: Transform
- pos: 54.5,-40.5
- parent: 2
- - uid: 8926
- components:
- - type: Transform
- pos: 55.5,-40.5
- parent: 2
- - uid: 8927
- components:
- - type: Transform
- pos: 56.5,-40.5
- parent: 2
- - uid: 8928
- components:
- - type: Transform
- pos: 57.5,-40.5
- parent: 2
- - uid: 8929
- components:
- - type: Transform
- pos: 58.5,-40.5
- parent: 2
- - uid: 8930
- components:
- - type: Transform
- pos: 21.5,25.5
- parent: 2
- - uid: 8931
- components:
- - type: Transform
- pos: 21.5,26.5
- parent: 2
- - uid: 8932
- components:
- - type: Transform
- pos: 21.5,27.5
- parent: 2
- - uid: 8933
- components:
- - type: Transform
- pos: 21.5,28.5
- parent: 2
- - uid: 8934
- components:
- - type: Transform
- pos: 21.5,29.5
- parent: 2
- - uid: 8935
- components:
- - type: Transform
- pos: 21.5,30.5
- parent: 2
- - uid: 8936
- components:
- - type: Transform
- pos: 21.5,31.5
- parent: 2
- - uid: 8937
- components:
- - type: Transform
- pos: 22.5,31.5
- parent: 2
- - uid: 8938
- components:
- - type: Transform
- pos: 23.5,31.5
- parent: 2
- - uid: 8939
- components:
- - type: Transform
- pos: 24.5,31.5
- parent: 2
- - uid: 8940
- components:
- - type: Transform
- pos: 25.5,31.5
- parent: 2
- - uid: 8941
- components:
- - type: Transform
- pos: 21.5,32.5
- parent: 2
- - uid: 8942
- components:
- - type: Transform
- pos: 21.5,33.5
- parent: 2
- - uid: 8943
- components:
- - type: Transform
- pos: 21.5,34.5
- parent: 2
- - uid: 8944
- components:
- - type: Transform
- pos: 21.5,35.5
- parent: 2
- - uid: 8945
- components:
- - type: Transform
- pos: 21.5,36.5
- parent: 2
- - uid: 8946
- components:
- - type: Transform
- pos: 20.5,36.5
- parent: 2
- - uid: 8947
- components:
- - type: Transform
- pos: 19.5,36.5
- parent: 2
- - uid: 8948
- components:
- - type: Transform
- pos: 18.5,36.5
- parent: 2
- - uid: 8949
- components:
- - type: Transform
- pos: 17.5,36.5
- parent: 2
- - uid: 8950
- components:
- - type: Transform
- pos: 16.5,36.5
- parent: 2
- - uid: 8951
- components:
- - type: Transform
- pos: 15.5,36.5
- parent: 2
- - uid: 8952
- components:
- - type: Transform
- pos: 14.5,36.5
- parent: 2
- - uid: 8953
- components:
- - type: Transform
- pos: 13.5,36.5
- parent: 2
- - uid: 8954
- components:
- - type: Transform
- pos: 12.5,36.5
- parent: 2
- - uid: 8955
- components:
- - type: Transform
- pos: 11.5,36.5
- parent: 2
- - uid: 8956
- components:
- - type: Transform
- pos: 10.5,36.5
- parent: 2
- - uid: 8957
- components:
- - type: Transform
- pos: 10.5,37.5
- parent: 2
- - uid: 8958
- components:
- - type: Transform
- pos: 10.5,38.5
- parent: 2
- - uid: 8959
- components:
- - type: Transform
- pos: 10.5,39.5
- parent: 2
- - uid: 8960
- components:
- - type: Transform
- pos: 9.5,40.5
- parent: 2
- - uid: 8961
- components:
- - type: Transform
- pos: 10.5,40.5
- parent: 2
- - uid: 8962
- components:
- - type: Transform
- pos: 25.5,32.5
- parent: 2
- - uid: 8963
- components:
- - type: Transform
- pos: 26.5,32.5
- parent: 2
- - uid: 8964
- components:
- - type: Transform
- pos: 27.5,32.5
- parent: 2
- - uid: 8965
- components:
- - type: Transform
- pos: 27.5,31.5
- parent: 2
- - uid: 8966
- components:
- - type: Transform
- pos: 27.5,30.5
- parent: 2
- - uid: 8967
- components:
- - type: Transform
- pos: 27.5,29.5
- parent: 2
- - uid: 8968
- components:
- - type: Transform
- pos: 27.5,28.5
- parent: 2
- - uid: 8969
- components:
- - type: Transform
- pos: 27.5,27.5
- parent: 2
- - uid: 8970
- components:
- - type: Transform
- pos: 27.5,26.5
- parent: 2
- - uid: 8971
- components:
- - type: Transform
- pos: -46.5,-3.5
- parent: 2
- - uid: 8972
- components:
- - type: Transform
- pos: 77.5,-3.5
- parent: 2
- - uid: 8973
- components:
- - type: Transform
- pos: 66.5,0.5
- parent: 2
- - uid: 8974
- components:
- - type: Transform
- pos: 65.5,0.5
- parent: 2
- - uid: 8975
- components:
- - type: Transform
- pos: 64.5,0.5
- parent: 2
- - uid: 8976
- components:
- - type: Transform
- pos: 63.5,0.5
- parent: 2
- - uid: 8977
- components:
- - type: Transform
- pos: 62.5,0.5
- parent: 2
- - uid: 8978
- components:
- - type: Transform
- pos: 61.5,0.5
- parent: 2
- - uid: 8979
- components:
- - type: Transform
- pos: 60.5,0.5
- parent: 2
- - uid: 8980
- components:
- - type: Transform
- pos: 59.5,0.5
- parent: 2
- - uid: 8981
- components:
- - type: Transform
- pos: 58.5,0.5
- parent: 2
- - uid: 8982
- components:
- - type: Transform
- pos: 57.5,0.5
- parent: 2
- - uid: 8983
- components:
- - type: Transform
- pos: 56.5,0.5
- parent: 2
- - uid: 8984
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 2
- - uid: 8985
- components:
- - type: Transform
- pos: 54.5,0.5
- parent: 2
- - uid: 8986
- components:
- - type: Transform
- pos: 53.5,0.5
- parent: 2
- - uid: 8987
- components:
- - type: Transform
- pos: 52.5,0.5
- parent: 2
- - uid: 8988
- components:
- - type: Transform
- pos: 51.5,0.5
- parent: 2
- - uid: 8989
- components:
- - type: Transform
- pos: 50.5,0.5
- parent: 2
- - uid: 8990
- components:
- - type: Transform
- pos: 49.5,0.5
- parent: 2
- - uid: 8991
- components:
- - type: Transform
- pos: 48.5,0.5
- parent: 2
- - uid: 8992
- components:
- - type: Transform
- pos: 47.5,0.5
- parent: 2
- - uid: 8993
- components:
- - type: Transform
- pos: 47.5,1.5
- parent: 2
- - uid: 8994
- components:
- - type: Transform
- pos: 47.5,2.5
- parent: 2
- - uid: 8995
- components:
- - type: Transform
- pos: 47.5,3.5
- parent: 2
- - uid: 8996
- components:
- - type: Transform
- pos: 47.5,4.5
- parent: 2
- - uid: 8997
- components:
- - type: Transform
- pos: -123.5,26.5
- parent: 2
- - uid: 8998
- components:
- - type: Transform
- pos: -122.5,26.5
- parent: 2
- - uid: 8999
- components:
- - type: Transform
- pos: -121.5,26.5
- parent: 2
- - uid: 9000
- components:
- - type: Transform
- pos: -121.5,25.5
- parent: 2
- - uid: 9001
- components:
- - type: Transform
- pos: -121.5,24.5
- parent: 2
- - uid: 9002
- components:
- - type: Transform
- pos: -122.5,24.5
- parent: 2
- - uid: 9003
- components:
- - type: Transform
- pos: -123.5,24.5
- parent: 2
- - uid: 9004
- components:
- - type: Transform
- pos: -48.5,-84.5
- parent: 2
- - uid: 9005
- components:
- - type: Transform
- pos: -49.5,-80.5
- parent: 2
- - uid: 9006
- components:
- - type: Transform
- pos: -49.5,-81.5
- parent: 2
- - uid: 9007
- components:
- - type: Transform
- pos: -49.5,-82.5
- parent: 2
- - uid: 9008
- components:
- - type: Transform
- pos: -48.5,-80.5
- parent: 2
- - uid: 9009
- components:
- - type: Transform
- pos: -48.5,-81.5
- parent: 2
- - uid: 9010
- components:
- - type: Transform
- pos: -48.5,-82.5
- parent: 2
- - uid: 9011
- components:
- - type: Transform
- pos: -47.5,-80.5
- parent: 2
- - uid: 9012
- components:
- - type: Transform
- pos: -47.5,-81.5
- parent: 2
- - uid: 9013
- components:
- - type: Transform
- pos: -47.5,-82.5
- parent: 2
- - uid: 9014
- components:
- - type: Transform
- pos: -46.5,-80.5
- parent: 2
- - uid: 9015
- components:
- - type: Transform
- pos: -46.5,-81.5
- parent: 2
- - uid: 9016
- components:
- - type: Transform
- pos: -46.5,-82.5
- parent: 2
- - uid: 9017
- components:
- - type: Transform
- pos: -45.5,-80.5
- parent: 2
- - uid: 9018
- components:
- - type: Transform
- pos: -45.5,-81.5
- parent: 2
- - uid: 9019
- components:
- - type: Transform
- pos: -45.5,-82.5
- parent: 2
- - uid: 9020
- components:
- - type: Transform
- pos: -48.5,-85.5
- parent: 2
- - uid: 9021
- components:
- - type: Transform
- pos: -48.5,-86.5
- parent: 2
- - uid: 9022
- components:
- - type: Transform
- pos: -47.5,-84.5
- parent: 2
- - uid: 9023
- components:
- - type: Transform
- pos: -47.5,-85.5
- parent: 2
- - uid: 9024
- components:
- - type: Transform
- pos: -47.5,-86.5
- parent: 2
- - uid: 9025
- components:
- - type: Transform
- pos: -46.5,-84.5
- parent: 2
- - uid: 9026
- components:
- - type: Transform
- pos: -46.5,-85.5
- parent: 2
- - uid: 9027
- components:
- - type: Transform
- pos: -46.5,-86.5
- parent: 2
- - uid: 9028
- components:
- - type: Transform
- pos: -45.5,-84.5
- parent: 2
- - uid: 9029
- components:
- - type: Transform
- pos: -45.5,-85.5
- parent: 2
- - uid: 9030
- components:
- - type: Transform
- pos: -45.5,-86.5
- parent: 2
- - uid: 9031
- components:
- - type: Transform
- pos: -44.5,-84.5
- parent: 2
- - uid: 9032
- components:
- - type: Transform
- pos: -44.5,-85.5
- parent: 2
- - uid: 9033
- components:
- - type: Transform
- pos: -44.5,-86.5
- parent: 2
- - uid: 9034
- components:
- - type: Transform
- pos: -49.5,-88.5
- parent: 2
- - uid: 9035
- components:
- - type: Transform
- pos: -49.5,-89.5
- parent: 2
- - uid: 9036
- components:
- - type: Transform
- pos: -49.5,-90.5
- parent: 2
- - uid: 9037
- components:
- - type: Transform
- pos: -48.5,-88.5
- parent: 2
- - uid: 9038
- components:
- - type: Transform
- pos: -48.5,-89.5
- parent: 2
- - uid: 9039
- components:
- - type: Transform
- pos: -48.5,-90.5
- parent: 2
- - uid: 9040
- components:
- - type: Transform
- pos: -47.5,-88.5
- parent: 2
- - uid: 9041
- components:
- - type: Transform
- pos: -47.5,-89.5
- parent: 2
- - uid: 9042
- components:
- - type: Transform
- pos: -47.5,-90.5
- parent: 2
- - uid: 9043
- components:
- - type: Transform
- pos: -46.5,-88.5
- parent: 2
- - uid: 9044
- components:
- - type: Transform
- pos: -46.5,-89.5
- parent: 2
- - uid: 9045
- components:
- - type: Transform
- pos: -46.5,-90.5
- parent: 2
- - uid: 9046
- components:
- - type: Transform
- pos: -45.5,-88.5
- parent: 2
- - uid: 9047
- components:
- - type: Transform
- pos: -45.5,-89.5
- parent: 2
- - uid: 9048
- components:
- - type: Transform
- pos: -45.5,-90.5
- parent: 2
- - uid: 9049
- components:
- - type: Transform
- pos: -50.5,-89.5
- parent: 2
- - uid: 9050
- components:
- - type: Transform
- pos: -51.5,-93.5
- parent: 2
- - uid: 9051
- components:
- - type: Transform
- pos: -51.5,-92.5
- parent: 2
- - uid: 9052
- components:
- - type: Transform
- pos: -51.5,-91.5
- parent: 2
- - uid: 9053
- components:
- - type: Transform
- pos: -51.5,-90.5
- parent: 2
- - uid: 9054
- components:
- - type: Transform
- pos: -51.5,-89.5
- parent: 2
- - uid: 9055
- components:
- - type: Transform
- pos: -51.5,-88.5
- parent: 2
- - uid: 9056
- components:
- - type: Transform
- pos: -51.5,-87.5
- parent: 2
- - uid: 9057
- components:
- - type: Transform
- pos: -51.5,-86.5
- parent: 2
- - uid: 9058
- components:
- - type: Transform
- pos: -51.5,-85.5
- parent: 2
- - uid: 9059
- components:
- - type: Transform
- pos: -51.5,-84.5
- parent: 2
- - uid: 9060
- components:
- - type: Transform
- pos: -51.5,-83.5
- parent: 2
- - uid: 9061
- components:
- - type: Transform
- pos: -51.5,-82.5
- parent: 2
- - uid: 9062
- components:
- - type: Transform
- pos: -51.5,-81.5
- parent: 2
- - uid: 9063
- components:
- - type: Transform
- pos: -51.5,-80.5
- parent: 2
- - uid: 9064
- components:
- - type: Transform
- pos: -51.5,-79.5
- parent: 2
- - uid: 9065
- components:
- - type: Transform
- pos: -51.5,-78.5
- parent: 2
- - uid: 9066
- components:
- - type: Transform
- pos: -51.5,-77.5
- parent: 2
- - uid: 9067
- components:
- - type: Transform
- pos: -51.5,-76.5
- parent: 2
- - uid: 9068
- components:
- - type: Transform
- pos: -51.5,-75.5
- parent: 2
- - uid: 9069
- components:
- - type: Transform
- pos: -51.5,-74.5
- parent: 2
- - uid: 9070
- components:
- - type: Transform
- pos: -50.5,-74.5
- parent: 2
- - uid: 9071
- components:
- - type: Transform
- pos: -50.5,-74.5
- parent: 2
- - uid: 9072
- components:
- - type: Transform
- pos: -47.5,-74.5
- parent: 2
- - uid: 9073
- components:
- - type: Transform
- pos: -46.5,-74.5
- parent: 2
- - uid: 9074
- components:
- - type: Transform
- pos: -48.5,-74.5
- parent: 2
- - uid: 9075
- components:
- - type: Transform
- pos: -58.5,-84.5
- parent: 2
- - uid: 9076
- components:
- - type: Transform
- pos: -58.5,-85.5
- parent: 2
- - uid: 9077
- components:
- - type: Transform
- pos: -58.5,-86.5
- parent: 2
- - uid: 9078
- components:
- - type: Transform
- pos: -57.5,-84.5
- parent: 2
- - uid: 9079
- components:
- - type: Transform
- pos: -57.5,-85.5
- parent: 2
- - uid: 9080
- components:
- - type: Transform
- pos: -57.5,-86.5
- parent: 2
- - uid: 9081
- components:
- - type: Transform
- pos: -56.5,-84.5
- parent: 2
- - uid: 9082
- components:
- - type: Transform
- pos: -56.5,-85.5
- parent: 2
- - uid: 9083
- components:
- - type: Transform
- pos: -56.5,-86.5
- parent: 2
- - uid: 9084
- components:
- - type: Transform
- pos: -55.5,-84.5
- parent: 2
- - uid: 9085
- components:
- - type: Transform
- pos: -55.5,-85.5
- parent: 2
- - uid: 9086
- components:
- - type: Transform
- pos: -55.5,-86.5
- parent: 2
- - uid: 9087
- components:
- - type: Transform
- pos: -54.5,-84.5
- parent: 2
- - uid: 9088
- components:
- - type: Transform
- pos: -54.5,-85.5
- parent: 2
- - uid: 9089
- components:
- - type: Transform
- pos: -54.5,-86.5
- parent: 2
- - uid: 9090
- components:
- - type: Transform
- pos: -53.5,-82.5
- parent: 2
- - uid: 9091
- components:
- - type: Transform
- pos: -53.5,-81.5
- parent: 2
- - uid: 9092
- components:
- - type: Transform
- pos: -53.5,-80.5
- parent: 2
- - uid: 9093
- components:
- - type: Transform
- pos: -54.5,-82.5
- parent: 2
- - uid: 9094
- components:
- - type: Transform
- pos: -54.5,-81.5
- parent: 2
- - uid: 9095
- components:
- - type: Transform
- pos: -54.5,-80.5
- parent: 2
- - uid: 9096
- components:
- - type: Transform
- pos: -55.5,-82.5
- parent: 2
- - uid: 9097
- components:
- - type: Transform
- pos: -55.5,-81.5
- parent: 2
- - uid: 9098
- components:
- - type: Transform
- pos: -55.5,-80.5
- parent: 2
- - uid: 9099
- components:
- - type: Transform
- pos: -56.5,-82.5
- parent: 2
- - uid: 9100
- components:
- - type: Transform
- pos: -56.5,-81.5
- parent: 2
- - uid: 9101
- components:
- - type: Transform
- pos: -56.5,-80.5
- parent: 2
- - uid: 9102
- components:
- - type: Transform
- pos: -57.5,-82.5
- parent: 2
- - uid: 9103
- components:
- - type: Transform
- pos: -57.5,-81.5
- parent: 2
- - uid: 9104
- components:
- - type: Transform
- pos: -57.5,-80.5
- parent: 2
- - uid: 9105
- components:
- - type: Transform
- pos: -57.5,-88.5
- parent: 2
- - uid: 9106
- components:
- - type: Transform
- pos: -57.5,-89.5
- parent: 2
- - uid: 9107
- components:
- - type: Transform
- pos: -57.5,-90.5
- parent: 2
- - uid: 9108
- components:
- - type: Transform
- pos: -56.5,-88.5
- parent: 2
- - uid: 9109
- components:
- - type: Transform
- pos: -56.5,-89.5
- parent: 2
- - uid: 9110
- components:
- - type: Transform
- pos: -56.5,-90.5
- parent: 2
- - uid: 9111
- components:
- - type: Transform
- pos: -55.5,-88.5
- parent: 2
- - uid: 9112
- components:
- - type: Transform
- pos: -55.5,-89.5
- parent: 2
- - uid: 9113
- components:
- - type: Transform
- pos: -55.5,-90.5
- parent: 2
- - uid: 9114
- components:
- - type: Transform
- pos: -54.5,-88.5
- parent: 2
- - uid: 9115
- components:
- - type: Transform
- pos: -54.5,-89.5
- parent: 2
- - uid: 9116
- components:
- - type: Transform
- pos: -54.5,-90.5
- parent: 2
- - uid: 9117
- components:
- - type: Transform
- pos: -53.5,-88.5
- parent: 2
- - uid: 9118
- components:
- - type: Transform
- pos: -53.5,-89.5
- parent: 2
- - uid: 9119
- components:
- - type: Transform
- pos: -53.5,-90.5
- parent: 2
- - uid: 9120
- components:
- - type: Transform
- pos: -53.5,-89.5
- parent: 2
- - uid: 9121
- components:
- - type: Transform
- pos: -52.5,-89.5
- parent: 2
- - uid: 9122
- components:
- - type: Transform
- pos: -53.5,-85.5
- parent: 2
- - uid: 9123
- components:
- - type: Transform
- pos: -52.5,-85.5
- parent: 2
- - uid: 9124
- components:
- - type: Transform
- pos: -52.5,-81.5
- parent: 2
- - uid: 9125
- components:
- - type: Transform
- pos: -50.5,-81.5
- parent: 2
- - uid: 9126
- components:
- - type: Transform
- pos: -50.5,-85.5
- parent: 2
- - uid: 9127
- components:
- - type: Transform
- pos: -49.5,-85.5
- parent: 2
- - uid: 9128
- components:
- - type: Transform
- pos: -40.5,-74.5
- parent: 2
- - uid: 9129
- components:
- - type: Transform
- pos: -39.5,-74.5
- parent: 2
- - uid: 9130
- components:
- - type: Transform
- pos: -38.5,-74.5
- parent: 2
- - uid: 9131
- components:
- - type: Transform
- pos: 24.5,-21.5
- parent: 2
- - uid: 9132
- components:
- - type: Transform
- pos: 24.5,-22.5
- parent: 2
- - uid: 9133
- components:
- - type: Transform
- pos: 25.5,-22.5
- parent: 2
- - uid: 9134
- components:
- - type: Transform
- pos: 26.5,-22.5
- parent: 2
- - uid: 9135
- components:
- - type: Transform
- pos: -46.5,-2.5
- parent: 2
- - uid: 9136
- components:
- - type: Transform
- pos: -46.5,-3.5
- parent: 2
- - uid: 9137
- components:
- - type: Transform
- pos: -17.5,-29.5
- parent: 2
- - uid: 9138
- components:
- - type: Transform
- pos: 3.5,-38.5
- parent: 2
- - uid: 9139
- components:
- - type: Transform
- pos: 5.5,-37.5
- parent: 2
- - uid: 9140
- components:
- - type: Transform
- pos: -19.5,-29.5
- parent: 2
- - uid: 9141
- components:
- - type: Transform
- pos: -17.5,-30.5
- parent: 2
- - uid: 9142
- components:
- - type: Transform
- pos: -17.5,-30.5
- parent: 2
- - uid: 9143
- components:
- - type: Transform
- pos: 6.5,57.5
- parent: 2
- - uid: 9144
- components:
- - type: Transform
- pos: 6.5,56.5
- parent: 2
- - uid: 9145
- components:
- - type: Transform
- pos: 6.5,55.5
- parent: 2
- - uid: 9146
- components:
- - type: Transform
- pos: 6.5,54.5
- parent: 2
- - uid: 9147
- components:
- - type: Transform
- pos: 6.5,53.5
- parent: 2
- - uid: 9148
- components:
- - type: Transform
- pos: 6.5,52.5
- parent: 2
- - uid: 9149
- components:
- - type: Transform
- pos: 6.5,51.5
- parent: 2
- - uid: 9150
- components:
- - type: Transform
- pos: 6.5,50.5
- parent: 2
- - uid: 9151
- components:
- - type: Transform
- pos: 6.5,49.5
- parent: 2
- - uid: 9152
- components:
- - type: Transform
- pos: 6.5,48.5
- parent: 2
- - uid: 9153
- components:
- - type: Transform
- pos: 6.5,47.5
- parent: 2
- - uid: 9154
- components:
- - type: Transform
- pos: 5.5,47.5
- parent: 2
- - uid: 9155
- components:
- - type: Transform
- pos: 4.5,47.5
- parent: 2
- - uid: 9156
- components:
- - type: Transform
- pos: 3.5,47.5
- parent: 2
- - uid: 9157
- components:
- - type: Transform
- pos: 2.5,47.5
- parent: 2
- - uid: 9158
- components:
- - type: Transform
- pos: 1.5,47.5
- parent: 2
- - uid: 9159
- components:
- - type: Transform
- pos: 1.5,46.5
- parent: 2
- - uid: 9160
- components:
- - type: Transform
- pos: 1.5,45.5
- parent: 2
- - uid: 9161
- components:
- - type: Transform
- pos: 1.5,44.5
- parent: 2
- - uid: 9162
- components:
- - type: Transform
- pos: 1.5,43.5
- parent: 2
- - uid: 9163
- components:
- - type: Transform
- pos: 1.5,42.5
- parent: 2
- - uid: 9164
- components:
- - type: Transform
- pos: 1.5,41.5
- parent: 2
- - uid: 9165
- components:
- - type: Transform
- pos: 1.5,40.5
- parent: 2
- - uid: 9166
- components:
- - type: Transform
- pos: 1.5,39.5
- parent: 2
- - uid: 9167
- components:
- - type: Transform
- pos: 0.5,39.5
- parent: 2
- - uid: 9168
- components:
- - type: Transform
- pos: 0.5,39.5
- parent: 2
- - uid: 9169
- components:
- - type: Transform
- pos: 0.5,38.5
- parent: 2
- - uid: 9170
- components:
- - type: Transform
- pos: 0.5,37.5
- parent: 2
- - uid: 9171
- components:
- - type: Transform
- pos: 0.5,36.5
- parent: 2
- - uid: 9172
- components:
- - type: Transform
- pos: 0.5,35.5
- parent: 2
- - uid: 9173
- components:
- - type: Transform
- pos: 0.5,34.5
- parent: 2
- - uid: 9174
- components:
- - type: Transform
- pos: 0.5,33.5
- parent: 2
- - uid: 9175
- components:
- - type: Transform
- pos: 0.5,32.5
- parent: 2
- - uid: 9176
- components:
- - type: Transform
- pos: 0.5,31.5
- parent: 2
- - uid: 9177
- components:
- - type: Transform
- pos: -0.5,31.5
- parent: 2
- - uid: 9178
- components:
- - type: Transform
- pos: -1.5,31.5
- parent: 2
- - uid: 9179
- components:
- - type: Transform
- pos: 6.5,-37.5
- parent: 2
- - uid: 9180
- components:
- - type: Transform
- pos: 6.5,-38.5
- parent: 2
- - uid: 9181
- components:
- - type: Transform
- pos: 6.5,-39.5
- parent: 2
- - uid: 9182
- components:
- - type: Transform
- pos: 2.5,-38.5
- parent: 2
- - uid: 9183
- components:
- - type: Transform
- pos: 1.5,-38.5
- parent: 2
- - uid: 9184
- components:
- - type: Transform
- pos: 0.5,-38.5
- parent: 2
- - uid: 9185
- components:
- - type: Transform
- pos: -0.5,-38.5
- parent: 2
- - uid: 9186
- components:
- - type: Transform
- pos: -0.5,-37.5
- parent: 2
- - uid: 9187
- components:
- - type: Transform
- pos: -0.5,-36.5
- parent: 2
- - uid: 9188
- components:
- - type: Transform
- pos: -0.5,-35.5
- parent: 2
- - uid: 9189
- components:
- - type: Transform
- pos: -0.5,-34.5
- parent: 2
- - uid: 9190
- components:
- - type: Transform
- pos: -0.5,-33.5
- parent: 2
- - uid: 9191
- components:
- - type: Transform
- pos: -0.5,-32.5
- parent: 2
- - uid: 9192
- components:
- - type: Transform
- pos: -0.5,-31.5
- parent: 2
- - uid: 9193
- components:
- - type: Transform
- pos: -0.5,-30.5
- parent: 2
- - uid: 9194
- components:
- - type: Transform
- pos: -0.5,-29.5
- parent: 2
- - uid: 9195
- components:
- - type: Transform
- pos: -0.5,-28.5
- parent: 2
- - uid: 9196
- components:
- - type: Transform
- pos: -0.5,-27.5
- parent: 2
- - uid: 9197
- components:
- - type: Transform
- pos: -0.5,-26.5
- parent: 2
- - uid: 9198
- components:
- - type: Transform
- pos: -0.5,-25.5
- parent: 2
- - uid: 9199
- components:
- - type: Transform
- pos: -0.5,-24.5
- parent: 2
- - uid: 9200
- components:
- - type: Transform
- pos: -0.5,-23.5
- parent: 2
- - uid: 9201
- components:
- - type: Transform
- pos: -0.5,-22.5
- parent: 2
- - uid: 9202
- components:
- - type: Transform
- pos: -0.5,-21.5
- parent: 2
- - uid: 9203
- components:
- - type: Transform
- pos: -0.5,-20.5
- parent: 2
- - uid: 9204
- components:
- - type: Transform
- pos: -0.5,-19.5
- parent: 2
- - uid: 38263
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 38244
- - uid: 38264
- components:
- - type: Transform
- pos: 1.5,1.5
- parent: 38244
- - uid: 38265
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 38244
- - uid: 38266
- components:
- - type: Transform
- pos: 2.5,1.5
- parent: 38244
- - uid: 38267
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 38244
- - uid: 38268
- components:
- - type: Transform
- pos: 3.5,0.5
- parent: 38244
- - uid: 38269
- components:
- - type: Transform
- pos: 3.5,-0.5
- parent: 38244
- - uid: 38671
- components:
- - type: Transform
- pos: -22.5,25.5
- parent: 38344
- - uid: 38672
- components:
- - type: Transform
- pos: -21.5,25.5
- parent: 38344
- - uid: 38673
- components:
- - type: Transform
- pos: 8.5,7.5
- parent: 38344
- - uid: 38674
- components:
- - type: Transform
- pos: 10.5,7.5
- parent: 38344
- - uid: 38675
- components:
- - type: Transform
- pos: 8.5,6.5
- parent: 38344
- - uid: 38676
- components:
- - type: Transform
- pos: 9.5,7.5
- parent: 38344
- - uid: 38677
- components:
- - type: Transform
- pos: 9.5,6.5
- parent: 38344
- - uid: 38678
- components:
- - type: Transform
- pos: 8.5,5.5
- parent: 38344
- - uid: 38679
- components:
- - type: Transform
- pos: 9.5,5.5
- parent: 38344
- - uid: 38680
- components:
- - type: Transform
- pos: 8.5,4.5
- parent: 38344
-- proto: CableHVStack
- entities:
- - uid: 9205
- components:
- - type: Transform
- pos: -48.086647,11.574663
- parent: 2
- - uid: 9206
- components:
- - type: Transform
- pos: -49.51845,47.584435
- parent: 2
-- proto: CableHVStack1
- entities:
- - uid: 9207
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: 77.64752,-1.6855047
- parent: 2
- - uid: 9208
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: 58.58862,-40.883453
- parent: 2
- - uid: 9209
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 60.463615,-39.93033
- parent: 2
-- proto: CableMV
- entities:
- - uid: 9210
- components:
- - type: Transform
- pos: 34.5,-51.5
- parent: 2
- - uid: 9211
- components:
- - type: Transform
- pos: -11.5,-10.5
- parent: 2
- - uid: 9212
- components:
- - type: Transform
- pos: -11.5,-11.5
- parent: 2
- - uid: 9213
- components:
- - type: Transform
- pos: -4.5,-11.5
- parent: 2
- - uid: 9214
- components:
- - type: Transform
- pos: -4.5,-10.5
- parent: 2
- - uid: 9215
- components:
- - type: Transform
- pos: -4.5,-9.5
- parent: 2
- - uid: 9216
- components:
- - type: Transform
- pos: -5.5,-10.5
- parent: 2
- - uid: 9217
- components:
- - type: Transform
- pos: -6.5,-10.5
- parent: 2
- - uid: 9218
- components:
- - type: Transform
- pos: -6.5,-12.5
- parent: 2
- - uid: 9219
- components:
- - type: Transform
- pos: -5.5,-12.5
- parent: 2
- - uid: 9220
- components:
- - type: Transform
- pos: -4.5,-12.5
- parent: 2
- - uid: 9221
- components:
- - type: Transform
- pos: 3.5,-10.5
- parent: 2
- - uid: 9222
- components:
- - type: Transform
- pos: 4.5,-10.5
- parent: 2
- - uid: 9223
- components:
- - type: Transform
- pos: 5.5,-10.5
- parent: 2
- - uid: 9224
- components:
- - type: Transform
- pos: 5.5,-11.5
- parent: 2
- - uid: 9225
- components:
- - type: Transform
- pos: 5.5,-12.5
- parent: 2
- - uid: 9226
- components:
- - type: Transform
- pos: 4.5,-12.5
- parent: 2
- - uid: 9227
- components:
- - type: Transform
- pos: 3.5,-11.5
- parent: 2
- - uid: 9228
- components:
- - type: Transform
- pos: -5.5,-11.5
- parent: 2
- - uid: 9229
- components:
- - type: Transform
- pos: -6.5,-11.5
- parent: 2
- - uid: 9230
- components:
- - type: Transform
- pos: -58.5,-37.5
- parent: 2
- - uid: 9231
- components:
- - type: Transform
- pos: 93.5,-5.5
- parent: 2
- - uid: 9232
- components:
- - type: Transform
- pos: 90.5,-5.5
- parent: 2
- - uid: 9233
- components:
- - type: Transform
- pos: 13.5,-1.5
- parent: 2
- - uid: 9234
- components:
- - type: Transform
- pos: 12.5,-1.5
- parent: 2
- - uid: 9235
- components:
- - type: Transform
- pos: 14.5,-1.5
- parent: 2
- - uid: 9236
- components:
- - type: Transform
- pos: 12.5,-2.5
- parent: 2
- - uid: 9237
- components:
- - type: Transform
- pos: 12.5,-3.5
- parent: 2
- - uid: 9238
- components:
- - type: Transform
- pos: 10.5,-4.5
- parent: 2
- - uid: 9239
- components:
- - type: Transform
- pos: 11.5,-4.5
- parent: 2
- - uid: 9240
- components:
- - type: Transform
- pos: -67.5,-42.5
- parent: 2
- - uid: 9241
- components:
- - type: Transform
- pos: 84.5,1.5
- parent: 2
- - uid: 9242
- components:
- - type: Transform
- pos: -61.5,-47.5
- parent: 2
- - uid: 9243
- components:
- - type: Transform
- pos: -58.5,-47.5
- parent: 2
- - uid: 9244
- components:
- - type: Transform
- pos: -60.5,-47.5
- parent: 2
- - uid: 9245
- components:
- - type: Transform
- pos: -10.5,10.5
- parent: 2
- - uid: 9246
- components:
- - type: Transform
- pos: -0.5,10.5
- parent: 2
- - uid: 9247
- components:
- - type: Transform
- pos: 87.5,-5.5
- parent: 2
- - uid: 9248
- components:
- - type: Transform
- pos: 86.5,-5.5
- parent: 2
- - uid: 9249
- components:
- - type: Transform
- pos: 83.5,-5.5
- parent: 2
- - uid: 9250
- components:
- - type: Transform
- pos: 82.5,-5.5
- parent: 2
- - uid: 9251
- components:
- - type: Transform
- pos: 97.5,-4.5
- parent: 2
- - uid: 9252
- components:
- - type: Transform
- pos: 82.5,-5.5
- parent: 2
- - uid: 9253
- components:
- - type: Transform
- pos: -32.5,37.5
- parent: 2
- - uid: 9254
- components:
- - type: Transform
- pos: 89.5,-5.5
- parent: 2
- - uid: 9255
- components:
- - type: Transform
- pos: 20.5,67.5
- parent: 2
- - uid: 9256
- components:
- - type: Transform
- pos: 20.5,68.5
- parent: 2
- - uid: 9257
- components:
- - type: Transform
- pos: 96.5,-4.5
- parent: 2
- - uid: 9258
- components:
- - type: Transform
- pos: 98.5,6.5
- parent: 2
- - uid: 9259
- components:
- - type: Transform
- pos: 98.5,5.5
- parent: 2
- - uid: 9260
- components:
- - type: Transform
- pos: 84.5,-5.5
- parent: 2
- - uid: 9261
- components:
- - type: Transform
- pos: 88.5,-5.5
- parent: 2
- - uid: 9262
- components:
- - type: Transform
- pos: 98.5,7.5
- parent: 2
- - uid: 9263
- components:
- - type: Transform
- pos: 92.5,9.5
- parent: 2
- - uid: 9264
- components:
- - type: Transform
- pos: 76.5,-3.5
- parent: 2
- - uid: 9265
- components:
- - type: Transform
- pos: 77.5,-3.5
- parent: 2
- - uid: 9266
- components:
- - type: Transform
- pos: 76.5,-2.5
- parent: 2
- - uid: 9267
- components:
- - type: Transform
- pos: 80.5,-5.5
- parent: 2
- - uid: 9268
- components:
- - type: Transform
- pos: 79.5,-5.5
- parent: 2
- - uid: 9269
- components:
- - type: Transform
- pos: 81.5,-5.5
- parent: 2
- - uid: 9270
- components:
- - type: Transform
- pos: 85.5,-5.5
- parent: 2
- - uid: 9271
- components:
- - type: Transform
- pos: 86.5,-5.5
- parent: 2
- - uid: 9272
- components:
- - type: Transform
- pos: -66.5,-42.5
- parent: 2
- - uid: 9273
- components:
- - type: Transform
- pos: -67.5,-38.5
- parent: 2
- - uid: 9274
- components:
- - type: Transform
- pos: -65.5,-42.5
- parent: 2
- - uid: 9275
- components:
- - type: Transform
- pos: 75.5,1.5
- parent: 2
- - uid: 9276
- components:
- - type: Transform
- pos: 78.5,1.5
- parent: 2
- - uid: 9277
- components:
- - type: Transform
- pos: 77.5,1.5
- parent: 2
- - uid: 9278
- components:
- - type: Transform
- pos: 43.5,-4.5
- parent: 2
- - uid: 9279
- components:
- - type: Transform
- pos: 98.5,8.5
- parent: 2
- - uid: 9280
- components:
- - type: Transform
- pos: 93.5,8.5
- parent: 2
- - uid: 9281
- components:
- - type: Transform
- pos: 92.5,8.5
- parent: 2
- - uid: 9282
- components:
- - type: Transform
- pos: 81.5,-0.5
- parent: 2
- - uid: 9283
- components:
- - type: Transform
- pos: 85.5,0.5
- parent: 2
- - uid: 9284
- components:
- - type: Transform
- pos: 82.5,-1.5
- parent: 2
- - uid: 9285
- components:
- - type: Transform
- pos: -1.5,-8.5
- parent: 2
- - uid: 9286
- components:
- - type: Transform
- pos: 22.5,20.5
- parent: 2
- - uid: 9287
- components:
- - type: Transform
- pos: -60.5,-35.5
- parent: 2
- - uid: 9288
- components:
- - type: Transform
- pos: 94.5,8.5
- parent: 2
- - uid: 9289
- components:
- - type: Transform
- pos: 94.5,9.5
- parent: 2
- - uid: 9290
- components:
- - type: Transform
- pos: 96.5,-5.5
- parent: 2
- - uid: 9291
- components:
- - type: Transform
- pos: 92.5,-5.5
- parent: 2
- - uid: 9292
- components:
- - type: Transform
- pos: -41.5,48.5
- parent: 2
- - uid: 9293
- components:
- - type: Transform
- pos: 95.5,-5.5
- parent: 2
- - uid: 9294
- components:
- - type: Transform
- pos: 90.5,-5.5
- parent: 2
- - uid: 9295
- components:
- - type: Transform
- pos: -35.5,57.5
- parent: 2
- - uid: 9296
- components:
- - type: Transform
- pos: -38.5,62.5
- parent: 2
- - uid: 9297
- components:
- - type: Transform
- pos: -37.5,57.5
- parent: 2
- - uid: 9298
- components:
- - type: Transform
- pos: -38.5,57.5
- parent: 2
- - uid: 9299
- components:
- - type: Transform
- pos: -37.5,58.5
- parent: 2
- - uid: 9300
- components:
- - type: Transform
- pos: -41.5,56.5
- parent: 2
- - uid: 9301
- components:
- - type: Transform
- pos: -41.5,57.5
- parent: 2
- - uid: 9302
- components:
- - type: Transform
- pos: 94.5,1.5
- parent: 2
- - uid: 9303
- components:
- - type: Transform
- pos: -41.5,53.5
- parent: 2
- - uid: 9304
- components:
- - type: Transform
- pos: 80.5,1.5
- parent: 2
- - uid: 9305
- components:
- - type: Transform
- pos: -56.5,-48.5
- parent: 2
- - uid: 9306
- components:
- - type: Transform
- pos: -41.5,50.5
- parent: 2
- - uid: 9307
- components:
- - type: Transform
- pos: -37.5,42.5
- parent: 2
- - uid: 9308
- components:
- - type: Transform
- pos: -38.5,42.5
- parent: 2
- - uid: 9309
- components:
- - type: Transform
- pos: 27.5,52.5
- parent: 2
- - uid: 9310
- components:
- - type: Transform
- pos: 27.5,50.5
- parent: 2
- - uid: 9311
- components:
- - type: Transform
- pos: 40.5,-4.5
- parent: 2
- - uid: 9312
- components:
- - type: Transform
- pos: 41.5,-4.5
- parent: 2
- - uid: 9313
- components:
- - type: Transform
- pos: 39.5,-4.5
- parent: 2
- - uid: 9314
- components:
- - type: Transform
- pos: 38.5,-4.5
- parent: 2
- - uid: 9315
- components:
- - type: Transform
- pos: 42.5,-4.5
- parent: 2
- - uid: 9316
- components:
- - type: Transform
- pos: -2.5,-8.5
- parent: 2
- - uid: 9317
- components:
- - type: Transform
- pos: -36.5,42.5
- parent: 2
- - uid: 9318
- components:
- - type: Transform
- pos: -40.5,64.5
- parent: 2
- - uid: 9319
- components:
- - type: Transform
- pos: -41.5,49.5
- parent: 2
- - uid: 9320
- components:
- - type: Transform
- pos: 90.5,1.5
- parent: 2
- - uid: 9321
- components:
- - type: Transform
- pos: 23.5,32.5
- parent: 2
- - uid: 9322
- components:
- - type: Transform
- pos: 91.5,1.5
- parent: 2
- - uid: 9323
- components:
- - type: Transform
- pos: 79.5,1.5
- parent: 2
- - uid: 9324
- components:
- - type: Transform
- pos: -58.5,-48.5
- parent: 2
- - uid: 9325
- components:
- - type: Transform
- pos: 98.5,1.5
- parent: 2
- - uid: 9326
- components:
- - type: Transform
- pos: 89.5,1.5
- parent: 2
- - uid: 9327
- components:
- - type: Transform
- pos: 86.5,1.5
- parent: 2
- - uid: 9328
- components:
- - type: Transform
- pos: 94.5,4.5
- parent: 2
- - uid: 9329
- components:
- - type: Transform
- pos: 94.5,6.5
- parent: 2
- - uid: 9330
- components:
- - type: Transform
- pos: 94.5,5.5
- parent: 2
- - uid: 9331
- components:
- - type: Transform
- pos: 95.5,0.5
- parent: 2
- - uid: 9332
- components:
- - type: Transform
- pos: 85.5,-1.5
- parent: 2
- - uid: 9333
- components:
- - type: Transform
- pos: 89.5,0.5
- parent: 2
- - uid: 9334
- components:
- - type: Transform
- pos: 95.5,1.5
- parent: 2
- - uid: 9335
- components:
- - type: Transform
- pos: 95.5,-0.5
- parent: 2
- - uid: 9336
- components:
- - type: Transform
- pos: 78.5,1.5
- parent: 2
- - uid: 9337
- components:
- - type: Transform
- pos: 97.5,-0.5
- parent: 2
- - uid: 9338
- components:
- - type: Transform
- pos: 97.5,-0.5
- parent: 2
- - uid: 9339
- components:
- - type: Transform
- pos: 78.5,-4.5
- parent: 2
- - uid: 9340
- components:
- - type: Transform
- pos: 77.5,-4.5
- parent: 2
- - uid: 9341
- components:
- - type: Transform
- pos: 78.5,-5.5
- parent: 2
- - uid: 9342
- components:
- - type: Transform
- pos: -58.5,-36.5
- parent: 2
- - uid: 9343
- components:
- - type: Transform
- pos: 76.5,1.5
- parent: 2
- - uid: 9344
- components:
- - type: Transform
- pos: 98.5,-4.5
- parent: 2
- - uid: 9345
- components:
- - type: Transform
- pos: 44.5,-17.5
- parent: 2
- - uid: 9346
- components:
- - type: Transform
- pos: 74.5,-6.5
- parent: 2
- - uid: 9347
- components:
- - type: Transform
- pos: 21.5,18.5
- parent: 2
- - uid: 9348
- components:
- - type: Transform
- pos: 83.5,1.5
- parent: 2
- - uid: 9349
- components:
- - type: Transform
- pos: 81.5,0.5
- parent: 2
- - uid: 9350
- components:
- - type: Transform
- pos: 80.5,3.5
- parent: 2
- - uid: 9351
- components:
- - type: Transform
- pos: 90.5,-1.5
- parent: 2
- - uid: 9352
- components:
- - type: Transform
- pos: 92.5,10.5
- parent: 2
- - uid: 9353
- components:
- - type: Transform
- pos: 82.5,1.5
- parent: 2
- - uid: 9354
- components:
- - type: Transform
- pos: 81.5,1.5
- parent: 2
- - uid: 9355
- components:
- - type: Transform
- pos: 1.5,-14.5
- parent: 2
- - uid: 9356
- components:
- - type: Transform
- pos: -41.5,46.5
- parent: 2
- - uid: 9357
- components:
- - type: Transform
- pos: -41.5,43.5
- parent: 2
- - uid: 9358
- components:
- - type: Transform
- pos: -40.5,39.5
- parent: 2
- - uid: 9359
- components:
- - type: Transform
- pos: -40.5,40.5
- parent: 2
- - uid: 9360
- components:
- - type: Transform
- pos: -40.5,63.5
- parent: 2
- - uid: 9361
- components:
- - type: Transform
- pos: -40.5,62.5
- parent: 2
- - uid: 9362
- components:
- - type: Transform
- pos: -34.5,57.5
- parent: 2
- - uid: 9363
- components:
- - type: Transform
- pos: -39.5,62.5
- parent: 2
- - uid: 9364
- components:
- - type: Transform
- pos: -41.5,47.5
- parent: 2
- - uid: 9365
- components:
- - type: Transform
- pos: -41.5,45.5
- parent: 2
- - uid: 9366
- components:
- - type: Transform
- pos: -41.5,52.5
- parent: 2
- - uid: 9367
- components:
- - type: Transform
- pos: 27.5,53.5
- parent: 2
- - uid: 9368
- components:
- - type: Transform
- pos: 27.5,51.5
- parent: 2
- - uid: 9369
- components:
- - type: Transform
- pos: 26.5,50.5
- parent: 2
- - uid: 9370
- components:
- - type: Transform
- pos: -58.5,-34.5
- parent: 2
- - uid: 9371
- components:
- - type: Transform
- pos: -41.5,51.5
- parent: 2
- - uid: 9372
- components:
- - type: Transform
- pos: 23.5,33.5
- parent: 2
- - uid: 9373
- components:
- - type: Transform
- pos: -7.5,69.5
- parent: 2
- - uid: 9374
- components:
- - type: Transform
- pos: 22.5,32.5
- parent: 2
- - uid: 9375
- components:
- - type: Transform
- pos: -41.5,54.5
- parent: 2
- - uid: 9376
- components:
- - type: Transform
- pos: -39.5,42.5
- parent: 2
- - uid: 9377
- components:
- - type: Transform
- pos: -40.5,42.5
- parent: 2
- - uid: 9378
- components:
- - type: Transform
- pos: -41.5,44.5
- parent: 2
- - uid: 9379
- components:
- - type: Transform
- pos: -36.5,57.5
- parent: 2
- - uid: 9380
- components:
- - type: Transform
- pos: 74.5,1.5
- parent: 2
- - uid: 9381
- components:
- - type: Transform
- pos: -39.5,57.5
- parent: 2
- - uid: 9382
- components:
- - type: Transform
- pos: -37.5,60.5
- parent: 2
- - uid: 9383
- components:
- - type: Transform
- pos: 94.5,13.5
- parent: 2
- - uid: 9384
- components:
- - type: Transform
- pos: 91.5,8.5
- parent: 2
- - uid: 9385
- components:
- - type: Transform
- pos: 2.5,-11.5
- parent: 2
- - uid: 9386
- components:
- - type: Transform
- pos: -18.5,-30.5
- parent: 2
- - uid: 9387
- components:
- - type: Transform
- pos: -19.5,-30.5
- parent: 2
- - uid: 9388
- components:
- - type: Transform
- pos: 9.5,-4.5
- parent: 2
- - uid: 9389
- components:
- - type: Transform
- pos: -17.5,-30.5
- parent: 2
- - uid: 9390
- components:
- - type: Transform
- pos: 98.5,-3.5
- parent: 2
- - uid: 9391
- components:
- - type: Transform
- pos: 91.5,-5.5
- parent: 2
- - uid: 9392
- components:
- - type: Transform
- pos: 98.5,-0.5
- parent: 2
- - uid: 9393
- components:
- - type: Transform
- pos: -62.5,-46.5
- parent: 2
- - uid: 9394
- components:
- - type: Transform
- pos: 98.5,-2.5
- parent: 2
- - uid: 9395
- components:
- - type: Transform
- pos: 97.5,8.5
- parent: 2
- - uid: 9396
- components:
- - type: Transform
- pos: 96.5,8.5
- parent: 2
- - uid: 9397
- components:
- - type: Transform
- pos: 95.5,8.5
- parent: 2
- - uid: 9398
- components:
- - type: Transform
- pos: 96.5,-0.5
- parent: 2
- - uid: 9399
- components:
- - type: Transform
- pos: 94.5,-5.5
- parent: 2
- - uid: 9400
- components:
- - type: Transform
- pos: 50.5,-28.5
- parent: 2
- - uid: 9401
- components:
- - type: Transform
- pos: -11.5,5.5
- parent: 2
- - uid: 9402
- components:
- - type: Transform
- pos: 20.5,18.5
- parent: 2
- - uid: 9403
- components:
- - type: Transform
- pos: 81.5,-1.5
- parent: 2
- - uid: 9404
- components:
- - type: Transform
- pos: -67.5,-41.5
- parent: 2
- - uid: 9405
- components:
- - type: Transform
- pos: 80.5,2.5
- parent: 2
- - uid: 9406
- components:
- - type: Transform
- pos: 92.5,1.5
- parent: 2
- - uid: 9407
- components:
- - type: Transform
- pos: 87.5,1.5
- parent: 2
- - uid: 9408
- components:
- - type: Transform
- pos: 94.5,2.5
- parent: 2
- - uid: 9409
- components:
- - type: Transform
- pos: 85.5,-0.5
- parent: 2
- - uid: 9410
- components:
- - type: Transform
- pos: 94.5,3.5
- parent: 2
- - uid: 9411
- components:
- - type: Transform
- pos: 93.5,1.5
- parent: 2
- - uid: 9412
- components:
- - type: Transform
- pos: 88.5,1.5
- parent: 2
- - uid: 9413
- components:
- - type: Transform
- pos: 86.5,-1.5
- parent: 2
- - uid: 9414
- components:
- - type: Transform
- pos: -59.5,-42.5
- parent: 2
- - uid: 9415
- components:
- - type: Transform
- pos: -59.5,-47.5
- parent: 2
- - uid: 9416
- components:
- - type: Transform
- pos: -61.5,-46.5
- parent: 2
- - uid: 9417
- components:
- - type: Transform
- pos: 89.5,-1.5
- parent: 2
- - uid: 9418
- components:
- - type: Transform
- pos: 93.5,13.5
- parent: 2
- - uid: 9419
- components:
- - type: Transform
- pos: -67.5,-40.5
- parent: 2
- - uid: 9420
- components:
- - type: Transform
- pos: 89.5,-0.5
- parent: 2
- - uid: 9421
- components:
- - type: Transform
- pos: -57.5,-48.5
- parent: 2
- - uid: 9422
- components:
- - type: Transform
- pos: 85.5,3.5
- parent: 2
- - uid: 9423
- components:
- - type: Transform
- pos: 85.5,2.5
- parent: 2
- - uid: 9424
- components:
- - type: Transform
- pos: 85.5,1.5
- parent: 2
- - uid: 9425
- components:
- - type: Transform
- pos: 22.5,19.5
- parent: 2
- - uid: 9426
- components:
- - type: Transform
- pos: 0.49999997,-14.5
- parent: 2
- - uid: 9427
- components:
- - type: Transform
- pos: 98.5,3.5
- parent: 2
- - uid: 9428
- components:
- - type: Transform
- pos: -41.5,42.5
- parent: 2
- - uid: 9429
- components:
- - type: Transform
- pos: -41.5,55.5
- parent: 2
- - uid: 9430
- components:
- - type: Transform
- pos: 13.5,88.5
- parent: 2
- - uid: 9431
- components:
- - type: Transform
- pos: 13.5,87.5
- parent: 2
- - uid: 9432
- components:
- - type: Transform
- pos: 12.5,87.5
- parent: 2
- - uid: 9433
- components:
- - type: Transform
- pos: 11.5,87.5
- parent: 2
- - uid: 9434
- components:
- - type: Transform
- pos: 11.5,88.5
- parent: 2
- - uid: 9435
- components:
- - type: Transform
- pos: 11.5,89.5
- parent: 2
- - uid: 9436
- components:
- - type: Transform
- pos: 20.5,66.5
- parent: 2
- - uid: 9437
- components:
- - type: Transform
- pos: 19.5,66.5
- parent: 2
- - uid: 9438
- components:
- - type: Transform
- pos: 18.5,66.5
- parent: 2
- - uid: 9439
- components:
- - type: Transform
- pos: 17.5,66.5
- parent: 2
- - uid: 9440
- components:
- - type: Transform
- pos: 16.5,66.5
- parent: 2
- - uid: 9441
- components:
- - type: Transform
- pos: 15.5,66.5
- parent: 2
- - uid: 9442
- components:
- - type: Transform
- pos: 14.5,66.5
- parent: 2
- - uid: 9443
- components:
- - type: Transform
- pos: 14.5,65.5
- parent: 2
- - uid: 9444
- components:
- - type: Transform
- pos: 14.5,64.5
- parent: 2
- - uid: 9445
- components:
- - type: Transform
- pos: 13.5,64.5
- parent: 2
- - uid: 9446
- components:
- - type: Transform
- pos: 12.5,64.5
- parent: 2
- - uid: 9447
- components:
- - type: Transform
- pos: 11.5,64.5
- parent: 2
- - uid: 9448
- components:
- - type: Transform
- pos: 10.5,64.5
- parent: 2
- - uid: 9449
- components:
- - type: Transform
- pos: 10.5,63.5
- parent: 2
- - uid: 9450
- components:
- - type: Transform
- pos: 10.5,62.5
- parent: 2
- - uid: 9451
- components:
- - type: Transform
- pos: 10.5,61.5
- parent: 2
- - uid: 9452
- components:
- - type: Transform
- pos: 10.5,60.5
- parent: 2
- - uid: 9453
- components:
- - type: Transform
- pos: 10.5,59.5
- parent: 2
- - uid: 9454
- components:
- - type: Transform
- pos: 10.5,58.5
- parent: 2
- - uid: 9455
- components:
- - type: Transform
- pos: 10.5,57.5
- parent: 2
- - uid: 9456
- components:
- - type: Transform
- pos: 9.5,57.5
- parent: 2
- - uid: 9457
- components:
- - type: Transform
- pos: 8.5,57.5
- parent: 2
- - uid: 9458
- components:
- - type: Transform
- pos: 7.5,57.5
- parent: 2
- - uid: 9459
- components:
- - type: Transform
- pos: 7.5,58.5
- parent: 2
- - uid: 9460
- components:
- - type: Transform
- pos: 7.5,59.5
- parent: 2
- - uid: 9461
- components:
- - type: Transform
- pos: 7.5,60.5
- parent: 2
- - uid: 9462
- components:
- - type: Transform
- pos: 24.5,58.5
- parent: 2
- - uid: 9463
- components:
- - type: Transform
- pos: 24.5,57.5
- parent: 2
- - uid: 9464
- components:
- - type: Transform
- pos: 24.5,56.5
- parent: 2
- - uid: 9465
- components:
- - type: Transform
- pos: 23.5,56.5
- parent: 2
- - uid: 9466
- components:
- - type: Transform
- pos: 22.5,56.5
- parent: 2
- - uid: 9467
- components:
- - type: Transform
- pos: 21.5,56.5
- parent: 2
- - uid: 9468
- components:
- - type: Transform
- pos: 20.5,56.5
- parent: 2
- - uid: 9469
- components:
- - type: Transform
- pos: 19.5,56.5
- parent: 2
- - uid: 9470
- components:
- - type: Transform
- pos: 18.5,56.5
- parent: 2
- - uid: 9471
- components:
- - type: Transform
- pos: 17.5,56.5
- parent: 2
- - uid: 9472
- components:
- - type: Transform
- pos: 16.5,56.5
- parent: 2
- - uid: 9473
- components:
- - type: Transform
- pos: 15.5,56.5
- parent: 2
- - uid: 9474
- components:
- - type: Transform
- pos: 14.5,56.5
- parent: 2
- - uid: 9475
- components:
- - type: Transform
- pos: 13.5,56.5
- parent: 2
- - uid: 9476
- components:
- - type: Transform
- pos: 12.5,56.5
- parent: 2
- - uid: 9477
- components:
- - type: Transform
- pos: 11.5,56.5
- parent: 2
- - uid: 9478
- components:
- - type: Transform
- pos: 10.5,56.5
- parent: 2
- - uid: 9479
- components:
- - type: Transform
- pos: 17.5,64.5
- parent: 2
- - uid: 9480
- components:
- - type: Transform
- pos: 17.5,63.5
- parent: 2
- - uid: 9481
- components:
- - type: Transform
- pos: 17.5,62.5
- parent: 2
- - uid: 9482
- components:
- - type: Transform
- pos: 17.5,61.5
- parent: 2
- - uid: 9483
- components:
- - type: Transform
- pos: 16.5,61.5
- parent: 2
- - uid: 9484
- components:
- - type: Transform
- pos: 15.5,61.5
- parent: 2
- - uid: 9485
- components:
- - type: Transform
- pos: 14.5,61.5
- parent: 2
- - uid: 9486
- components:
- - type: Transform
- pos: 13.5,61.5
- parent: 2
- - uid: 9487
- components:
- - type: Transform
- pos: 12.5,61.5
- parent: 2
- - uid: 9488
- components:
- - type: Transform
- pos: 11.5,61.5
- parent: 2
- - uid: 9489
- components:
- - type: Transform
- pos: 10.5,61.5
- parent: 2
- - uid: 9490
- components:
- - type: Transform
- pos: 6.5,57.5
- parent: 2
- - uid: 9491
- components:
- - type: Transform
- pos: 5.5,57.5
- parent: 2
- - uid: 9492
- components:
- - type: Transform
- pos: 5.5,58.5
- parent: 2
- - uid: 9493
- components:
- - type: Transform
- pos: 5.5,59.5
- parent: 2
- - uid: 9494
- components:
- - type: Transform
- pos: 5.5,60.5
- parent: 2
- - uid: 9495
- components:
- - type: Transform
- pos: 4.5,60.5
- parent: 2
- - uid: 9496
- components:
- - type: Transform
- pos: 3.5,60.5
- parent: 2
- - uid: 9497
- components:
- - type: Transform
- pos: 2.5,60.5
- parent: 2
- - uid: 9498
- components:
- - type: Transform
- pos: 1.5,60.5
- parent: 2
- - uid: 9499
- components:
- - type: Transform
- pos: 1.5,61.5
- parent: 2
- - uid: 9500
- components:
- - type: Transform
- pos: 1.5,62.5
- parent: 2
- - uid: 9501
- components:
- - type: Transform
- pos: 1.5,63.5
- parent: 2
- - uid: 9502
- components:
- - type: Transform
- pos: 1.5,64.5
- parent: 2
- - uid: 9503
- components:
- - type: Transform
- pos: 1.5,65.5
- parent: 2
- - uid: 9504
- components:
- - type: Transform
- pos: 1.5,66.5
- parent: 2
- - uid: 9505
- components:
- - type: Transform
- pos: 22.5,18.5
- parent: 2
- - uid: 9506
- components:
- - type: Transform
- pos: 23.5,18.5
- parent: 2
- - uid: 9507
- components:
- - type: Transform
- pos: 24.5,18.5
- parent: 2
- - uid: 9508
- components:
- - type: Transform
- pos: 24.5,19.5
- parent: 2
- - uid: 9509
- components:
- - type: Transform
- pos: 24.5,20.5
- parent: 2
- - uid: 9510
- components:
- - type: Transform
- pos: 24.5,21.5
- parent: 2
- - uid: 9511
- components:
- - type: Transform
- pos: 2.5,-9.5
- parent: 2
- - uid: 9512
- components:
- - type: Transform
- pos: 2.5,-10.5
- parent: 2
- - uid: 9513
- components:
- - type: Transform
- pos: -3.5,-8.5
- parent: 2
- - uid: 9514
- components:
- - type: Transform
- pos: -1.5,34.5
- parent: 2
- - uid: 9515
- components:
- - type: Transform
- pos: -2.5,34.5
- parent: 2
- - uid: 9516
- components:
- - type: Transform
- pos: -2.5,33.5
- parent: 2
- - uid: 9517
- components:
- - type: Transform
- pos: -2.5,32.5
- parent: 2
- - uid: 9518
- components:
- - type: Transform
- pos: -2.5,31.5
- parent: 2
- - uid: 9519
- components:
- - type: Transform
- pos: -1.5,31.5
- parent: 2
- - uid: 9520
- components:
- - type: Transform
- pos: -0.5,31.5
- parent: 2
- - uid: 9521
- components:
- - type: Transform
- pos: 0.49999997,31.5
- parent: 2
- - uid: 9522
- components:
- - type: Transform
- pos: 0.49999997,32.5
- parent: 2
- - uid: 9523
- components:
- - type: Transform
- pos: 0.49999997,33.5
- parent: 2
- - uid: 9524
- components:
- - type: Transform
- pos: 0.49999997,34.5
- parent: 2
- - uid: 9525
- components:
- - type: Transform
- pos: 0.49999997,35.5
- parent: 2
- - uid: 9526
- components:
- - type: Transform
- pos: 0.50000006,36.5
- parent: 2
- - uid: 9527
- components:
- - type: Transform
- pos: 0.50000006,37.5
- parent: 2
- - uid: 9528
- components:
- - type: Transform
- pos: 0.50000006,38.5
- parent: 2
- - uid: 9529
- components:
- - type: Transform
- pos: 0.49999997,40.5
- parent: 2
- - uid: 9530
- components:
- - type: Transform
- pos: 1.5,39.5
- parent: 2
- - uid: 9531
- components:
- - type: Transform
- pos: 1.5,40.5
- parent: 2
- - uid: 9532
- components:
- - type: Transform
- pos: 1.5,41.5
- parent: 2
- - uid: 9533
- components:
- - type: Transform
- pos: 1.5,42.5
- parent: 2
- - uid: 9534
- components:
- - type: Transform
- pos: 1.5,43.5
- parent: 2
- - uid: 9535
- components:
- - type: Transform
- pos: 1.5,44.5
- parent: 2
- - uid: 9536
- components:
- - type: Transform
- pos: 1.5,45.5
- parent: 2
- - uid: 9537
- components:
- - type: Transform
- pos: 1.5,46.5
- parent: 2
- - uid: 9538
- components:
- - type: Transform
- pos: 1.5,47.5
- parent: 2
- - uid: 9539
- components:
- - type: Transform
- pos: 2.5,47.5
- parent: 2
- - uid: 9540
- components:
- - type: Transform
- pos: 3.5,47.5
- parent: 2
- - uid: 9541
- components:
- - type: Transform
- pos: 3.5,48.5
- parent: 2
- - uid: 9542
- components:
- - type: Transform
- pos: 3.5,49.5
- parent: 2
- - uid: 9543
- components:
- - type: Transform
- pos: 3.5,50.5
- parent: 2
- - uid: 9544
- components:
- - type: Transform
- pos: 3.5,51.5
- parent: 2
- - uid: 9545
- components:
- - type: Transform
- pos: 3.5,52.5
- parent: 2
- - uid: 9546
- components:
- - type: Transform
- pos: 3.5,53.5
- parent: 2
- - uid: 9547
- components:
- - type: Transform
- pos: 3.5,54.5
- parent: 2
- - uid: 9548
- components:
- - type: Transform
- pos: 3.5,55.5
- parent: 2
- - uid: 9549
- components:
- - type: Transform
- pos: 2.5,51.5
- parent: 2
- - uid: 9550
- components:
- - type: Transform
- pos: 1.5,51.5
- parent: 2
- - uid: 9551
- components:
- - type: Transform
- pos: 0.50000006,51.5
- parent: 2
- - uid: 9552
- components:
- - type: Transform
- pos: -0.5,51.5
- parent: 2
- - uid: 9553
- components:
- - type: Transform
- pos: -1.5,51.5
- parent: 2
- - uid: 9554
- components:
- - type: Transform
- pos: -2.5,51.5
- parent: 2
- - uid: 9555
- components:
- - type: Transform
- pos: -2.5,50.5
- parent: 2
- - uid: 9556
- components:
- - type: Transform
- pos: -2.5,49.5
- parent: 2
- - uid: 9557
- components:
- - type: Transform
- pos: -3.5,49.5
- parent: 2
- - uid: 9558
- components:
- - type: Transform
- pos: -4.5,49.5
- parent: 2
- - uid: 9559
- components:
- - type: Transform
- pos: -7.5,50.5
- parent: 2
- - uid: 9560
->>>>>>> master
- components:
- - type: Transform
- pos: -7.5,51.5
- parent: 2
-<<<<<<< HEAD
- - uid: 9607
- components:
- - type: Transform
- pos: -30.5,50.5
- parent: 2
- - uid: 9608
- components:
- - type: Transform
- pos: 9.5,81.5
- parent: 2
- - uid: 9609
- components:
- - type: Transform
- pos: -18.5,44.5
- parent: 2
- - uid: 9610
- components:
- - type: Transform
- pos: -11.5,69.5
- parent: 2
- - uid: 9611
- components:
- - type: Transform
- pos: -29.5,69.5
- parent: 2
- - uid: 9612
- components:
- - type: Transform
- pos: -29.5,70.5
- parent: 2
- - uid: 9613
- components:
- - type: Transform
- pos: -30.5,54.5
- parent: 2
- - uid: 9614
- components:
- - type: Transform
- pos: -11.5,70.5
- parent: 2
- - uid: 9615
- components:
- - type: Transform
- pos: -7.5,48.5
- parent: 2
- - uid: 9616
- components:
- - type: Transform
- pos: -6.5,48.5
- parent: 2
- - uid: 9617
- components:
- - type: Transform
- pos: -18.5,30.5
- parent: 2
- - uid: 9618
- components:
- - type: Transform
- pos: -30.5,52.5
- parent: 2
- - uid: 9619
- components:
- - type: Transform
- pos: -30.5,53.5
- parent: 2
- - uid: 9620
- components:
- - type: Transform
- pos: -29.5,68.5
- parent: 2
- - uid: 9621
- components:
- - type: Transform
- pos: 8.5,81.5
- parent: 2
- - uid: 9622
- components:
- - type: Transform
- pos: -18.5,32.5
- parent: 2
- - uid: 9623
- components:
- - type: Transform
- pos: -19.5,28.5
- parent: 2
- - uid: 9624
- components:
- - type: Transform
- pos: -5.5,48.5
- parent: 2
- - uid: 9625
- components:
- - type: Transform
- pos: -30.5,44.5
- parent: 2
- - uid: 9626
- components:
- - type: Transform
- pos: -30.5,41.5
- parent: 2
- - uid: 9627
- components:
- - type: Transform
- pos: -18.5,35.5
- parent: 2
- - uid: 9628
- components:
- - type: Transform
- pos: -18.5,38.5
- parent: 2
- - uid: 9629
- components:
- - type: Transform
- pos: -18.5,37.5
- parent: 2
- - uid: 9630
- components:
- - type: Transform
- pos: -30.5,45.5
- parent: 2
- - uid: 9631
- components:
- - type: Transform
- pos: -18.5,36.5
- parent: 2
- - uid: 9632
- components:
- - type: Transform
- pos: -29.5,71.5
- parent: 2
- - uid: 9633
- components:
- - type: Transform
- pos: 73.5,15.5
- parent: 2
- - uid: 9634
- components:
- - type: Transform
- pos: 10.5,-2.5
- parent: 2
- - uid: 9635
- components:
- - type: Transform
- pos: 74.5,17.5
- parent: 2
- - uid: 9636
- components:
- - type: Transform
- pos: 45.5,18.5
- parent: 2
- - uid: 9637
- components:
- - type: Transform
- pos: 78.5,22.5
- parent: 2
- - uid: 9638
- components:
- - type: Transform
- pos: 47.5,14.5
- parent: 2
- - uid: 9639
- components:
- - type: Transform
- pos: 54.5,12.5
- parent: 2
- - uid: 9640
- components:
- - type: Transform
- pos: 46.5,-3.5
- parent: 2
- - uid: 9641
- components:
- - type: Transform
- pos: 47.5,0.5
- parent: 2
- - uid: 9642
- components:
- - type: Transform
- pos: 46.5,0.5
- parent: 2
- - uid: 9643
- components:
- - type: Transform
- pos: 47.5,5.5
- parent: 2
- - uid: 9644
- components:
- - type: Transform
- pos: 71.5,15.5
- parent: 2
- - uid: 9645
- components:
- - type: Transform
- pos: 69.5,16.5
- parent: 2
- - uid: 9646
- components:
- - type: Transform
- pos: -58.5,59.5
- parent: 2
- - uid: 9647
- components:
- - type: Transform
- pos: 55.5,13.5
- parent: 2
- - uid: 9648
- components:
- - type: Transform
- pos: 61.5,-0.5
- parent: 2
- - uid: 9649
- components:
- - type: Transform
- pos: 51.5,6.5
- parent: 2
- - uid: 9650
- components:
- - type: Transform
- pos: 10.5,-3.5
- parent: 2
- - uid: 9651
- components:
- - type: Transform
- pos: -56.5,19.5
- parent: 2
- - uid: 9652
- components:
- - type: Transform
- pos: 46.5,25.5
- parent: 2
- - uid: 9653
- components:
- - type: Transform
- pos: -39.5,-6.5
- parent: 2
- - uid: 9654
- components:
- - type: Transform
- pos: 39.5,21.5
- parent: 2
- - uid: 9655
- components:
- - type: Transform
- pos: -57.5,16.5
- parent: 2
- - uid: 9656
- components:
- - type: Transform
- pos: -62.5,-21.5
- parent: 2
- - uid: 9657
- components:
- - type: Transform
- pos: 46.5,18.5
- parent: 2
- - uid: 9658
- components:
- - type: Transform
- pos: 13.5,88.5
- parent: 2
- - uid: 9659
- components:
- - type: Transform
- pos: 47.5,7.5
- parent: 2
- - uid: 9660
- components:
- - type: Transform
- pos: 47.5,9.5
- parent: 2
- - uid: 9661
- components:
- - type: Transform
- pos: 51.5,12.5
- parent: 2
- - uid: 9662
- components:
- - type: Transform
- pos: 59.5,0.5
- parent: 2
- - uid: 9663
- components:
- - type: Transform
- pos: -57.5,15.5
- parent: 2
- - uid: 9664
- components:
- - type: Transform
- pos: 66.5,0.5
- parent: 2
- - uid: 9665
- components:
- - type: Transform
- pos: -40.5,56.5
- parent: 2
- - uid: 9666
- components:
- - type: Transform
- pos: 74.5,14.5
- parent: 2
- - uid: 9667
- components:
- - type: Transform
- pos: 47.5,13.5
- parent: 2
- - uid: 9668
- components:
- - type: Transform
- pos: 50.5,6.5
- parent: 2
- - uid: 9669
- components:
- - type: Transform
- pos: 47.5,16.5
- parent: 2
- - uid: 9670
- components:
- - type: Transform
- pos: 51.5,13.5
- parent: 2
- - uid: 9671
- components:
- - type: Transform
- pos: -46.5,-40.5
- parent: 2
- - uid: 9672
- components:
- - type: Transform
- pos: 39.5,24.5
- parent: 2
- - uid: 9673
- components:
- - type: Transform
- pos: -47.5,-40.5
- parent: 2
- - uid: 9674
- components:
- - type: Transform
- pos: 53.5,12.5
- parent: 2
- - uid: 9675
- components:
- - type: Transform
- pos: -58.5,61.5
- parent: 2
- - uid: 9676
- components:
- - type: Transform
- pos: -1.5,-6.5
- parent: 2
- - uid: 9677
- components:
- - type: Transform
- pos: -49.5,40.5
- parent: 2
- - uid: 9678
- components:
- - type: Transform
- pos: -2.5,-7.5
- parent: 2
- - uid: 9679
- components:
- - type: Transform
- pos: -49.5,39.5
- parent: 2
- - uid: 9680
- components:
- - type: Transform
- pos: 49.5,12.5
- parent: 2
- - uid: 9681
- components:
- - type: Transform
- pos: 39.5,20.5
- parent: 2
- - uid: 9682
- components:
- - type: Transform
- pos: 77.5,22.5
- parent: 2
- - uid: 9683
- components:
- - type: Transform
- pos: -46.5,-41.5
- parent: 2
- - uid: 9684
- components:
- - type: Transform
- pos: 61.5,-1.5
- parent: 2
- - uid: 9685
- components:
- - type: Transform
- pos: 76.5,22.5
- parent: 2
- - uid: 9686
- components:
- - type: Transform
- pos: 47.5,11.5
- parent: 2
- - uid: 9687
- components:
- - type: Transform
- pos: 74.5,19.5
- parent: 2
- - uid: 9688
- components:
- - type: Transform
- pos: 51.5,8.5
- parent: 2
- - uid: 9689
- components:
- - type: Transform
- pos: 45.5,19.5
- parent: 2
- - uid: 9690
- components:
- - type: Transform
- pos: 12.5,-1.5
- parent: 2
- - uid: 9691
- components:
- - type: Transform
- pos: 50.5,8.5
- parent: 2
- - uid: 9692
- components:
- - type: Transform
- pos: 59.5,-3.5
- parent: 2
- - uid: 9693
- components:
- - type: Transform
- pos: -80.5,-12.5
- parent: 2
- - uid: 9694
- components:
- - type: Transform
- pos: 76.5,-1.5
- parent: 2
- - uid: 9695
- components:
- - type: Transform
- pos: -79.5,-3.5
- parent: 2
- - uid: 9696
- components:
- - type: Transform
- pos: 73.5,20.5
- parent: 2
- - uid: 9697
- components:
- - type: Transform
- pos: 74.5,11.5
- parent: 2
- - uid: 9698
- components:
- - type: Transform
- pos: -73.5,-6.5
- parent: 2
- - uid: 9699
- components:
- - type: Transform
- pos: -58.5,60.5
- parent: 2
- - uid: 9700
- components:
- - type: Transform
- pos: 6.5,-54.5
- parent: 2
- - uid: 9701
- components:
- - type: Transform
- pos: 61.5,-2.5
- parent: 2
- - uid: 9702
- components:
- - type: Transform
- pos: 54.5,28.5
- parent: 2
- - uid: 9703
- components:
- - type: Transform
- pos: 73.5,19.5
- parent: 2
- - uid: 9704
- components:
- - type: Transform
- pos: 74.5,7.5
- parent: 2
- - uid: 9705
- components:
- - type: Transform
- pos: 47.5,8.5
- parent: 2
- - uid: 9706
- components:
- - type: Transform
- pos: 42.5,20.5
- parent: 2
- - uid: 9707
- components:
- - type: Transform
- pos: 12.5,-3.5
- parent: 2
- - uid: 9708
- components:
- - type: Transform
- pos: -79.5,-10.5
- parent: 2
- - uid: 9709
- components:
- - type: Transform
- pos: -79.5,-11.5
- parent: 2
- - uid: 9710
- components:
- - type: Transform
- pos: 53.5,0.5
- parent: 2
- - uid: 9711
- components:
- - type: Transform
- pos: 52.5,0.5
- parent: 2
- - uid: 9712
- components:
- - type: Transform
- pos: 7.5,-55.5
- parent: 2
- - uid: 9713
- components:
- - type: Transform
- pos: 54.5,6.5
- parent: 2
- - uid: 9714
- components:
- - type: Transform
- pos: 58.5,0.5
- parent: 2
- - uid: 9715
- components:
- - type: Transform
- pos: 75.5,8.5
- parent: 2
- - uid: 9716
- components:
- - type: Transform
- pos: -79.5,-4.5
- parent: 2
- - uid: 9717
- components:
- - type: Transform
- pos: -81.5,-12.5
- parent: 2
- - uid: 9718
- components:
- - type: Transform
- pos: -79.5,-12.5
- parent: 2
- - uid: 9719
- components:
- - type: Transform
- pos: -46.5,-43.5
- parent: 2
- - uid: 9720
- components:
- - type: Transform
- pos: -6.5,30.5
- parent: 2
- - uid: 9721
- components:
- - type: Transform
- pos: 47.5,4.5
- parent: 2
- - uid: 9722
- components:
- - type: Transform
- pos: 13.5,85.5
- parent: 2
- - uid: 9723
- components:
- - type: Transform
- pos: -57.5,17.5
- parent: 2
- - uid: 9724
- components:
- - type: Transform
- pos: -45.5,30.5
- parent: 2
- - uid: 9725
- components:
- - type: Transform
- pos: -29.5,-45.5
- parent: 2
- - uid: 9726
- components:
- - type: Transform
- pos: 6.5,36.5
- parent: 2
- - uid: 9727
- components:
- - type: Transform
- pos: 5.5,38.5
- parent: 2
- - uid: 9728
- components:
- - type: Transform
- pos: 5.5,36.5
- parent: 2
- - uid: 9729
- components:
- - type: Transform
- pos: 12.5,-2.5
- parent: 2
- - uid: 9730
- components:
- - type: Transform
- pos: 56.5,7.5
- parent: 2
- - uid: 9731
- components:
- - type: Transform
- pos: 48.5,8.5
- parent: 2
- - uid: 9732
- components:
- - type: Transform
- pos: 41.5,20.5
- parent: 2
- - uid: 9733
- components:
- - type: Transform
- pos: 72.5,15.5
- parent: 2
- - uid: 9734
- components:
- - type: Transform
- pos: 53.5,10.5
- parent: 2
- - uid: 9735
- components:
- - type: Transform
- pos: 50.5,12.5
- parent: 2
- - uid: 9736
- components:
- - type: Transform
- pos: 74.5,12.5
- parent: 2
- - uid: 9737
- components:
- - type: Transform
- pos: 62.5,25.5
- parent: 2
- - uid: 9738
- components:
- - type: Transform
- pos: 44.5,-4.5
- parent: 2
- - uid: 9739
- components:
- - type: Transform
- pos: 51.5,7.5
- parent: 2
- - uid: 9740
- components:
- - type: Transform
- pos: 47.5,2.5
- parent: 2
- - uid: 9741
- components:
- - type: Transform
- pos: 55.5,6.5
- parent: 2
- - uid: 9742
- components:
- - type: Transform
- pos: 74.5,6.5
- parent: 2
- - uid: 9743
- components:
- - type: Transform
- pos: 74.5,8.5
- parent: 2
- - uid: 9744
- components:
- - type: Transform
- pos: 57.5,-1.5
- parent: 2
- - uid: 9745
- components:
- - type: Transform
- pos: 57.5,-5.5
- parent: 2
- - uid: 9746
- components:
- - type: Transform
- pos: 39.5,22.5
- parent: 2
- - uid: 9747
- components:
- - type: Transform
- pos: 78.5,24.5
- parent: 2
- - uid: 9748
- components:
- - type: Transform
- pos: 44.5,20.5
- parent: 2
- - uid: 9749
- components:
- - type: Transform
- pos: 74.5,9.5
- parent: 2
- - uid: 9750
- components:
- - type: Transform
- pos: 61.5,-3.5
- parent: 2
- - uid: 9751
- components:
- - type: Transform
- pos: -62.5,-28.5
- parent: 2
- - uid: 9752
- components:
- - type: Transform
- pos: 51.5,-48.5
- parent: 2
- - uid: 9753
- components:
- - type: Transform
- pos: 52.5,-48.5
- parent: 2
- - uid: 9754
- components:
- - type: Transform
- pos: 70.5,15.5
- parent: 2
- - uid: 9755
- components:
- - type: Transform
- pos: -70.5,-6.5
- parent: 2
- - uid: 9756
- components:
- - type: Transform
- pos: -46.5,-42.5
- parent: 2
- - uid: 9757
- components:
- - type: Transform
- pos: 46.5,22.5
- parent: 2
- - uid: 9758
- components:
- - type: Transform
- pos: 5.5,37.5
- parent: 2
- - uid: 9759
- components:
- - type: Transform
- pos: 55.5,-50.5
- parent: 2
- - uid: 9760
- components:
- - type: Transform
- pos: -1.5,-7.5
- parent: 2
- - uid: 9761
- components:
- - type: Transform
- pos: -57.5,18.5
- parent: 2
- - uid: 9762
- components:
- - type: Transform
- pos: 49.5,8.5
- parent: 2
- - uid: 9763
- components:
- - type: Transform
- pos: 56.5,1.5
- parent: 2
- - uid: 9764
- components:
- - type: Transform
- pos: 53.5,9.5
- parent: 2
- - uid: 9765
- components:
- - type: Transform
- pos: 74.5,22.5
- parent: 2
- - uid: 9766
- components:
- - type: Transform
- pos: 62.5,0.5
- parent: 2
- - uid: 9767
- components:
- - type: Transform
- pos: 53.5,8.5
- parent: 2
- - uid: 9768
- components:
- - type: Transform
- pos: 56.5,0.5
- parent: 2
- - uid: 9769
- components:
- - type: Transform
- pos: 27.5,29.5
- parent: 2
- - uid: 9770
- components:
- - type: Transform
- pos: 56.5,6.5
- parent: 2
- - uid: 9771
- components:
- - type: Transform
- pos: -45.5,-45.5
- parent: 2
- - uid: 9772
- components:
- - type: Transform
- pos: 75.5,22.5
- parent: 2
- - uid: 9773
- components:
- - type: Transform
- pos: 61.5,0.5
- parent: 2
- - uid: 9774
- components:
- - type: Transform
- pos: 47.5,6.5
- parent: 2
- - uid: 9775
- components:
- - type: Transform
- pos: 74.5,4.5
- parent: 2
- - uid: 9776
- components:
- - type: Transform
- pos: 74.5,5.5
- parent: 2
- - uid: 9777
- components:
- - type: Transform
- pos: 47.5,18.5
- parent: 2
- - uid: 9778
- components:
- - type: Transform
- pos: -46.5,-45.5
- parent: 2
- - uid: 9779
- components:
- - type: Transform
- pos: -61.5,-29.5
- parent: 2
- - uid: 9780
- components:
- - type: Transform
- pos: 74.5,18.5
- parent: 2
- - uid: 9781
- components:
- - type: Transform
- pos: 63.5,0.5
- parent: 2
- - uid: 9782
- components:
- - type: Transform
- pos: 69.5,15.5
- parent: 2
- - uid: 9783
- components:
- - type: Transform
- pos: -39.5,-4.5
- parent: 2
- - uid: 9784
- components:
- - type: Transform
- pos: 47.5,15.5
- parent: 2
- - uid: 9785
- components:
- - type: Transform
- pos: 55.5,12.5
- parent: 2
- - uid: 9786
- components:
- - type: Transform
- pos: 52.5,12.5
- parent: 2
- - uid: 9787
- components:
- - type: Transform
- pos: 47.5,10.5
- parent: 2
- - uid: 9788
- components:
- - type: Transform
- pos: 65.5,0.5
- parent: 2
- - uid: 9789
- components:
- - type: Transform
- pos: -62.5,-31.5
- parent: 2
- - uid: 9790
- components:
- - type: Transform
- pos: 57.5,-3.5
- parent: 2
- - uid: 9791
- components:
- - type: Transform
- pos: 72.5,15.5
- parent: 2
- - uid: 9792
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 2
- - uid: 9793
- components:
- - type: Transform
- pos: 56.5,-50.5
- parent: 2
- - uid: 9794
- components:
- - type: Transform
- pos: 56.5,-49.5
- parent: 2
- - uid: 9795
- components:
- - type: Transform
- pos: 56.5,-48.5
- parent: 2
- - uid: 9796
- components:
- - type: Transform
- pos: -46.5,-44.5
- parent: 2
- - uid: 9797
- components:
- - type: Transform
- pos: 53.5,-48.5
- parent: 2
- - uid: 9798
- components:
- - type: Transform
- pos: 54.5,-48.5
- parent: 2
- - uid: 9799
- components:
- - type: Transform
- pos: 55.5,-48.5
- parent: 2
- - uid: 9800
- components:
- - type: Transform
- pos: 57.5,25.5
- parent: 2
- - uid: 9801
- components:
- - type: Transform
- pos: 68.5,25.5
- parent: 2
- - uid: 9802
- components:
- - type: Transform
- pos: -98.5,-9.5
- parent: 2
- - uid: 9803
- components:
- - type: Transform
- pos: -63.5,-24.5
- parent: 2
- - uid: 9804
- components:
- - type: Transform
- pos: 69.5,24.5
- parent: 2
- - uid: 9805
- components:
- - type: Transform
- pos: 12.5,33.5
- parent: 2
- - uid: 9806
- components:
- - type: Transform
- pos: -31.5,-54.5
- parent: 2
- - uid: 9807
- components:
- - type: Transform
- pos: 69.5,25.5
- parent: 2
- - uid: 9808
- components:
- - type: Transform
- pos: -98.5,-5.5
- parent: 2
- - uid: 9809
- components:
- - type: Transform
- pos: 27.5,27.5
- parent: 2
- - uid: 9810
- components:
- - type: Transform
- pos: 27.5,28.5
- parent: 2
- - uid: 9811
- components:
- - type: Transform
- pos: 83.5,9.5
- parent: 2
- - uid: 9812
- components:
- - type: Transform
- pos: 61.5,21.5
- parent: 2
- - uid: 9813
- components:
- - type: Transform
- pos: 28.5,31.5
- parent: 2
- - uid: 9814
- components:
- - type: Transform
- pos: 57.5,26.5
- parent: 2
- - uid: 9815
- components:
- - type: Transform
- pos: 55.5,28.5
- parent: 2
- - uid: 9816
- components:
- - type: Transform
- pos: 74.5,3.5
- parent: 2
- - uid: 9817
- components:
- - type: Transform
- pos: 56.5,28.5
- parent: 2
- - uid: 9818
- components:
- - type: Transform
- pos: -98.5,-8.5
- parent: 2
- - uid: 9819
- components:
- - type: Transform
- pos: 27.5,30.5
- parent: 2
- - uid: 9820
- components:
- - type: Transform
- pos: 27.5,26.5
- parent: 2
- - uid: 9821
- components:
- - type: Transform
- pos: -98.5,-7.5
- parent: 2
- - uid: 9822
- components:
- - type: Transform
- pos: 28.5,30.5
- parent: 2
- - uid: 9823
- components:
- - type: Transform
- pos: -98.5,-6.5
- parent: 2
- - uid: 9824
- components:
- - type: Transform
- pos: -97.5,-1.5
- parent: 2
- - uid: 9825
- components:
- - type: Transform
- pos: -63.5,-23.5
- parent: 2
- - uid: 9826
- components:
- - type: Transform
- pos: 46.5,-4.5
- parent: 2
- - uid: 9827
- components:
- - type: Transform
- pos: 45.5,20.5
- parent: 2
- - uid: 9828
- components:
- - type: Transform
- pos: 59.5,24.5
- parent: 2
- - uid: 9829
- components:
- - type: Transform
- pos: 59.5,25.5
- parent: 2
- - uid: 9830
- components:
- - type: Transform
- pos: 59.5,25.5
- parent: 2
- - uid: 9831
- components:
- - type: Transform
- pos: 60.5,25.5
- parent: 2
- - uid: 9832
- components:
- - type: Transform
- pos: -42.5,-46.5
- parent: 2
- - uid: 9833
- components:
- - type: Transform
- pos: -46.5,30.5
- parent: 2
- - uid: 9834
- components:
- - type: Transform
- pos: -13.5,-55.5
- parent: 2
- - uid: 9835
- components:
- - type: Transform
- pos: 47.5,1.5
- parent: 2
- - uid: 9836
- components:
- - type: Transform
- pos: -96.5,-1.5
- parent: 2
- - uid: 9837
- components:
- - type: Transform
- pos: -94.5,-1.5
- parent: 2
- - uid: 9838
- components:
- - type: Transform
- pos: -95.5,-1.5
- parent: 2
- - uid: 9839
- components:
- - type: Transform
- pos: -90.5,-2.5
- parent: 2
- - uid: 9840
- components:
- - type: Transform
- pos: -50.5,39.5
- parent: 2
- - uid: 9841
- components:
- - type: Transform
- pos: -94.5,-2.5
- parent: 2
- - uid: 9842
- components:
- - type: Transform
- pos: -85.5,-1.5
- parent: 2
- - uid: 9843
- components:
- - type: Transform
- pos: -42.5,-48.5
- parent: 2
- - uid: 9844
- components:
- - type: Transform
- pos: -36.5,-48.5
- parent: 2
- - uid: 9845
- components:
- - type: Transform
- pos: -71.5,-6.5
- parent: 2
- - uid: 9846
- components:
- - type: Transform
- pos: -34.5,-48.5
- parent: 2
- - uid: 9847
- components:
- - type: Transform
- pos: 58.5,24.5
- parent: 2
- - uid: 9848
- components:
- - type: Transform
- pos: 57.5,24.5
- parent: 2
- - uid: 9849
- components:
- - type: Transform
- pos: 64.5,0.5
- parent: 2
- - uid: 9850
- components:
- - type: Transform
- pos: 57.5,27.5
- parent: 2
- - uid: 9851
- components:
- - type: Transform
- pos: 57.5,28.5
- parent: 2
- - uid: 9852
- components:
- - type: Transform
- pos: 53.5,28.5
- parent: 2
- - uid: 9853
- components:
- - type: Transform
- pos: 74.5,10.5
- parent: 2
- - uid: 9854
- components:
- - type: Transform
- pos: 47.5,3.5
- parent: 2
- - uid: 9855
- components:
- - type: Transform
- pos: 53.5,29.5
- parent: 2
- - uid: 9856
- components:
- - type: Transform
- pos: 57.5,-0.5
- parent: 2
- - uid: 9857
- components:
- - type: Transform
- pos: 48.5,0.5
- parent: 2
- - uid: 9858
- components:
- - type: Transform
- pos: 56.5,2.5
- parent: 2
- - uid: 9859
- components:
- - type: Transform
- pos: 57.5,-4.5
- parent: 2
- - uid: 9860
- components:
- - type: Transform
- pos: 79.5,9.5
- parent: 2
- - uid: 9861
- components:
- - type: Transform
- pos: 53.5,30.5
- parent: 2
- - uid: 9862
- components:
- - type: Transform
- pos: -41.5,-48.5
- parent: 2
- - uid: 9863
- components:
- - type: Transform
- pos: -39.5,-5.5
- parent: 2
- - uid: 9864
- components:
- - type: Transform
- pos: -38.5,-48.5
- parent: 2
- - uid: 9865
- components:
- - type: Transform
- pos: 57.5,0.5
- parent: 2
- - uid: 9866
- components:
- - type: Transform
- pos: 27.5,-37.5
- parent: 2
- - uid: 9867
- components:
- - type: Transform
- pos: -26.5,-77.5
- parent: 2
- - uid: 9868
- components:
- - type: Transform
- pos: -35.5,-48.5
- parent: 2
- - uid: 9869
- components:
- - type: Transform
- pos: 11.5,-3.5
- parent: 2
- - uid: 9870
- components:
- - type: Transform
- pos: 49.5,0.5
- parent: 2
- - uid: 9871
- components:
- - type: Transform
- pos: 40.5,20.5
- parent: 2
- - uid: 9872
- components:
- - type: Transform
- pos: 77.5,-1.5
- parent: 2
- - uid: 9873
- components:
- - type: Transform
- pos: -39.5,-48.5
- parent: 2
- - uid: 9874
- components:
- - type: Transform
- pos: -72.5,-6.5
- parent: 2
- - uid: 9875
- components:
- - type: Transform
- pos: -40.5,-48.5
- parent: 2
- - uid: 9876
- components:
- - type: Transform
- pos: 74.5,16.5
- parent: 2
- - uid: 9877
- components:
- - type: Transform
- pos: 74.5,15.5
- parent: 2
- - uid: 9878
- components:
- - type: Transform
- pos: -37.5,-48.5
- parent: 2
- - uid: 9879
- components:
- - type: Transform
- pos: 53.5,11.5
- parent: 2
- - uid: 9880
- components:
- - type: Transform
- pos: 47.5,12.5
- parent: 2
- - uid: 9881
- components:
- - type: Transform
- pos: 74.5,13.5
- parent: 2
- - uid: 9882
- components:
- - type: Transform
- pos: -55.5,19.5
- parent: 2
- - uid: 9883
- components:
- - type: Transform
- pos: -42.5,-47.5
- parent: 2
- - uid: 9884
- components:
- - type: Transform
- pos: -58.5,50.5
- parent: 2
- - uid: 9885
- components:
- - type: Transform
- pos: 57.5,-2.5
- parent: 2
- - uid: 9886
- components:
- - type: Transform
- pos: 50.5,0.5
- parent: 2
- - uid: 9887
- components:
- - type: Transform
- pos: 47.5,17.5
- parent: 2
- - uid: 9888
- components:
- - type: Transform
- pos: -58.5,15.5
- parent: 2
- - uid: 9889
- components:
- - type: Transform
- pos: -57.5,19.5
- parent: 2
- - uid: 9890
- components:
- - type: Transform
- pos: -98.5,-10.5
- parent: 2
- - uid: 9891
- components:
- - type: Transform
- pos: 51.5,0.5
- parent: 2
- - uid: 9892
- components:
- - type: Transform
- pos: -92.5,-13.5
- parent: 2
- - uid: 9893
- components:
- - type: Transform
- pos: -95.5,-13.5
- parent: 2
- - uid: 9894
- components:
- - type: Transform
- pos: -90.5,-13.5
- parent: 2
- - uid: 9895
- components:
- - type: Transform
- pos: -94.5,-13.5
- parent: 2
- - uid: 9896
- components:
- - type: Transform
- pos: -89.5,-13.5
- parent: 2
- - uid: 9897
- components:
- - type: Transform
- pos: -88.5,-13.5
- parent: 2
- - uid: 9898
- components:
- - type: Transform
- pos: -94.5,-12.5
- parent: 2
- - uid: 9899
- components:
- - type: Transform
- pos: -90.5,-12.5
- parent: 2
- - uid: 9900
- components:
- - type: Transform
- pos: 63.5,25.5
- parent: 2
- - uid: 9901
- components:
- - type: Transform
- pos: 78.5,9.5
- parent: 2
- - uid: 9902
- components:
- - type: Transform
- pos: -47.5,30.5
- parent: 2
- - uid: 9903
- components:
- - type: Transform
- pos: -60.5,-8.5
- parent: 2
- - uid: 9904
- components:
- - type: Transform
- pos: 81.5,9.5
- parent: 2
- - uid: 9905
- components:
- - type: Transform
- pos: 64.5,25.5
- parent: 2
- - uid: 9906
- components:
- - type: Transform
- pos: 65.5,25.5
- parent: 2
- - uid: 9907
- components:
- - type: Transform
- pos: 78.5,23.5
- parent: 2
- - uid: 9908
- components:
- - type: Transform
- pos: 73.5,21.5
- parent: 2
- - uid: 9909
- components:
- - type: Transform
- pos: 13.5,87.5
- parent: 2
- - uid: 9910
- components:
- - type: Transform
- pos: -86.5,-1.5
- parent: 2
- - uid: 9911
- components:
- - type: Transform
- pos: -87.5,-1.5
- parent: 2
- - uid: 9912
- components:
- - type: Transform
- pos: -55.5,44.5
- parent: 2
- - uid: 9913
- components:
- - type: Transform
- pos: -88.5,-1.5
- parent: 2
- - uid: 9914
- components:
- - type: Transform
- pos: -89.5,-1.5
- parent: 2
- - uid: 9915
- components:
- - type: Transform
- pos: -90.5,-1.5
- parent: 2
- - uid: 9916
- components:
- - type: Transform
- pos: -92.5,-1.5
- parent: 2
- - uid: 9917
- components:
- - type: Transform
- pos: -91.5,-1.5
- parent: 2
- - uid: 9918
- components:
- - type: Transform
- pos: 69.5,17.5
- parent: 2
- - uid: 9919
- components:
- - type: Transform
- pos: -13.5,-53.5
- parent: 2
- - uid: 9920
- components:
- - type: Transform
- pos: -93.5,-1.5
- parent: 2
- - uid: 9921
- components:
- - type: Transform
- pos: -98.5,-2.5
- parent: 2
- - uid: 9922
- components:
- - type: Transform
- pos: -98.5,-1.5
- parent: 2
- - uid: 9923
- components:
- - type: Transform
- pos: -98.5,-3.5
- parent: 2
- - uid: 9924
- components:
- - type: Transform
- pos: -98.5,-11.5
- parent: 2
- - uid: 9925
- components:
- - type: Transform
- pos: 55.5,14.5
- parent: 2
- - uid: 9926
- components:
- - type: Transform
- pos: -98.5,-12.5
- parent: 2
- - uid: 9927
- components:
- - type: Transform
- pos: -98.5,-4.5
- parent: 2
- - uid: 9928
- components:
- - type: Transform
- pos: -84.5,-1.5
- parent: 2
- - uid: 9929
- components:
- - type: Transform
- pos: -83.5,-1.5
- parent: 2
- - uid: 9930
- components:
- - type: Transform
- pos: -83.5,-13.5
- parent: 2
- - uid: 9931
- components:
- - type: Transform
- pos: -18.5,41.5
- parent: 2
- - uid: 9932
- components:
- - type: Transform
- pos: -98.5,-13.5
- parent: 2
- - uid: 9933
- components:
- - type: Transform
- pos: -97.5,-13.5
- parent: 2
- - uid: 9934
- components:
- - type: Transform
- pos: -96.5,-13.5
- parent: 2
- - uid: 9935
- components:
- - type: Transform
- pos: 46.5,21.5
- parent: 2
- - uid: 9936
- components:
- - type: Transform
- pos: -91.5,-13.5
- parent: 2
- - uid: 9937
- components:
- - type: Transform
- pos: -93.5,-13.5
- parent: 2
- - uid: 9938
- components:
- - type: Transform
- pos: -29.5,-40.5
- parent: 2
- - uid: 9939
- components:
- - type: Transform
- pos: -87.5,-13.5
- parent: 2
- - uid: 9940
- components:
- - type: Transform
- pos: -86.5,-13.5
- parent: 2
- - uid: 9941
- components:
- - type: Transform
- pos: 49.5,6.5
- parent: 2
- - uid: 9942
- components:
- - type: Transform
- pos: -85.5,-13.5
- parent: 2
- - uid: 9943
- components:
- - type: Transform
- pos: 48.5,12.5
- parent: 2
- - uid: 9944
- components:
- - type: Transform
- pos: -84.5,-13.5
- parent: 2
- - uid: 9945
- components:
- - type: Transform
- pos: 54.5,0.5
- parent: 2
- - uid: 9946
- components:
- - type: Transform
- pos: 73.5,22.5
- parent: 2
- - uid: 9947
- components:
- - type: Transform
- pos: 74.5,2.5
- parent: 2
- - uid: 9948
- components:
- - type: Transform
- pos: 74.5,1.5
- parent: 2
- - uid: 9949
- components:
- - type: Transform
- pos: 74.5,0.5
- parent: 2
- - uid: 9950
- components:
- - type: Transform
- pos: 74.5,-0.5
- parent: 2
- - uid: 9951
- components:
- - type: Transform
- pos: 75.5,-0.5
- parent: 2
- - uid: 9952
- components:
- - type: Transform
- pos: 76.5,-0.5
- parent: 2
- - uid: 9953
- components:
- - type: Transform
- pos: 3.5,42.5
- parent: 2
- - uid: 9954
- components:
- - type: Transform
- pos: 4.5,42.5
- parent: 2
- - uid: 9955
- components:
- - type: Transform
- pos: 5.5,42.5
- parent: 2
- - uid: 9956
- components:
- - type: Transform
- pos: 5.5,41.5
- parent: 2
- - uid: 9957
- components:
- - type: Transform
- pos: 5.5,40.5
- parent: 2
- - uid: 9958
- components:
- - type: Transform
- pos: 5.5,39.5
- parent: 2
- - uid: 9959
- components:
- - type: Transform
- pos: 60.5,0.5
- parent: 2
- - uid: 9960
- components:
- - type: Transform
- pos: 39.5,23.5
- parent: 2
- - uid: 9961
- components:
- - type: Transform
- pos: 43.5,20.5
- parent: 2
- - uid: 9962
- components:
- - type: Transform
- pos: 60.5,-3.5
- parent: 2
- - uid: 9963
- components:
- - type: Transform
- pos: 7.5,60.5
- parent: 2
- - uid: 9964
- components:
- - type: Transform
- pos: 51.5,14.5
- parent: 2
- - uid: 9965
- components:
- - type: Transform
- pos: 53.5,7.5
- parent: 2
- - uid: 9966
- components:
- - type: Transform
- pos: 53.5,6.5
- parent: 2
- - uid: 9967
- components:
- - type: Transform
- pos: 7.5,36.5
- parent: 2
- - uid: 9968
- components:
- - type: Transform
- pos: -13.5,-54.5
- parent: 2
- - uid: 9969
- components:
- - type: Transform
- pos: 80.5,9.5
- parent: 2
- - uid: 9970
- components:
- - type: Transform
- pos: 84.5,9.5
- parent: 2
- - uid: 9971
- components:
- - type: Transform
- pos: 13.5,86.5
- parent: 2
- - uid: 9972
- components:
- - type: Transform
- pos: -67.5,47.5
- parent: 2
- - uid: 9973
- components:
- - type: Transform
- pos: 22.5,19.5
- parent: 2
- - uid: 9974
- components:
- - type: Transform
- pos: 82.5,9.5
- parent: 2
- - uid: 9975
- components:
- - type: Transform
- pos: -58.5,-8.5
- parent: 2
- - uid: 9976
- components:
- - type: Transform
- pos: -55.5,42.5
- parent: 2
- - uid: 9977
- components:
- - type: Transform
- pos: 52.5,6.5
- parent: 2
- - uid: 9978
- components:
- - type: Transform
- pos: -53.5,-11.5
- parent: 2
- - uid: 9979
- components:
- - type: Transform
- pos: -48.5,9.5
- parent: 2
- - uid: 9980
- components:
- - type: Transform
- pos: 25.5,24.5
- parent: 2
- - uid: 9981
- components:
- - type: Transform
- pos: 43.5,-3.5
- parent: 2
- - uid: 9982
- components:
- - type: Transform
- pos: -0.5,26.5
- parent: 2
- - uid: 9983
- components:
- - type: Transform
- pos: 77.5,9.5
- parent: 2
- - uid: 9984
- components:
- - type: Transform
- pos: -18.5,40.5
- parent: 2
- - uid: 9985
- components:
- - type: Transform
- pos: 20.5,24.5
- parent: 2
- - uid: 9986
- components:
- - type: Transform
- pos: 52.5,-20.5
- parent: 2
- - uid: 9987
- components:
- - type: Transform
- pos: 13.5,-33.5
- parent: 2
- - uid: 9988
- components:
- - type: Transform
- pos: -1.5,34.5
- parent: 2
- - uid: 9989
- components:
- - type: Transform
- pos: 50.5,-50.5
- parent: 2
- - uid: 9990
- components:
- - type: Transform
- pos: 49.5,-27.5
- parent: 2
- - uid: 9991
- components:
- - type: Transform
- pos: 50.5,-27.5
- parent: 2
- - uid: 9992
- components:
- - type: Transform
- pos: 49.5,-51.5
- parent: 2
- - uid: 9993
- components:
- - type: Transform
- pos: -3.5,-13.5
- parent: 2
- - uid: 9994
- components:
- - type: Transform
- pos: 26.5,18.5
- parent: 2
- - uid: 9995
- components:
- - type: Transform
- pos: -23.5,-67.5
- parent: 2
- - uid: 9996
- components:
- - type: Transform
- pos: -3.5,-7.5
- parent: 2
- - uid: 9997
- components:
- - type: Transform
- pos: 16.5,-55.5
- parent: 2
- - uid: 9998
- components:
- - type: Transform
- pos: -8.5,-70.5
- parent: 2
- - uid: 9999
- components:
- - type: Transform
- pos: 14.5,50.5
- parent: 2
- - uid: 10000
- components:
- - type: Transform
- pos: -5.5,-13.5
- parent: 2
- - uid: 10001
- components:
- - type: Transform
- pos: 21.5,25.5
- parent: 2
- - uid: 10002
- components:
- - type: Transform
- pos: 53.5,-28.5
- parent: 2
- - uid: 10003
- components:
- - type: Transform
- pos: 6.5,-8.5
- parent: 2
- - uid: 10004
- components:
- - type: Transform
- pos: -6.5,-63.5
- parent: 2
- - uid: 10005
- components:
- - type: Transform
- pos: -8.5,-72.5
- parent: 2
- - uid: 10006
- components:
- - type: Transform
- pos: -41.5,45.5
- parent: 2
- - uid: 10007
- components:
- - type: Transform
- pos: 50.5,-51.5
- parent: 2
- - uid: 10008
- components:
- - type: Transform
- pos: 13.5,33.5
- parent: 2
- - uid: 10009
- components:
- - type: Transform
- pos: 25.5,-23.5
- parent: 2
- - uid: 10010
- components:
- - type: Transform
- pos: 22.5,11.5
- parent: 2
- - uid: 10011
- components:
- - type: Transform
- pos: 31.5,56.5
- parent: 2
- - uid: 10012
- components:
- - type: Transform
- pos: 44.5,-0.5
- parent: 2
- - uid: 10013
- components:
- - type: Transform
- pos: 6.5,-55.5
- parent: 2
- - uid: 10014
- components:
- - type: Transform
- pos: 12.5,56.5
- parent: 2
- - uid: 10015
- components:
- - type: Transform
- pos: 30.5,11.5
- parent: 2
- - uid: 10016
- components:
- - type: Transform
- pos: 31.5,10.5
- parent: 2
- - uid: 10017
- components:
- - type: Transform
- pos: 31.5,12.5
- parent: 2
- - uid: 10018
- components:
- - type: Transform
- pos: 27.5,-14.5
- parent: 2
- - uid: 10019
- components:
- - type: Transform
- pos: 28.5,-14.5
- parent: 2
- - uid: 10020
- components:
- - type: Transform
- pos: 53.5,-27.5
- parent: 2
- - uid: 10021
- components:
- - type: Transform
- pos: 15.5,50.5
- parent: 2
- - uid: 10022
- components:
- - type: Transform
- pos: 18.5,-10.5
- parent: 2
- - uid: 10023
- components:
- - type: Transform
- pos: 19.5,-10.5
- parent: 2
- - uid: 10024
- components:
- - type: Transform
- pos: 23.5,-20.5
- parent: 2
- - uid: 10025
- components:
- - type: Transform
- pos: 42.5,-32.5
- parent: 2
- - uid: 10026
- components:
- - type: Transform
- pos: 27.5,11.5
- parent: 2
- - uid: 10027
- components:
- - type: Transform
- pos: 51.5,-45.5
- parent: 2
- - uid: 10028
- components:
- - type: Transform
- pos: -5.5,-10.5
- parent: 2
- - uid: 10029
- components:
- - type: Transform
- pos: 7.5,90.5
- parent: 2
- - uid: 10030
- components:
- - type: Transform
- pos: 10.5,23.5
- parent: 2
- - uid: 10031
- components:
- - type: Transform
- pos: -10.5,-11.5
- parent: 2
- - uid: 10032
- components:
- - type: Transform
- pos: -55.5,43.5
- parent: 2
- - uid: 10033
- components:
- - type: Transform
- pos: 13.5,41.5
- parent: 2
- - uid: 10034
- components:
- - type: Transform
- pos: 30.5,2.5
- parent: 2
- - uid: 10035
- components:
- - type: Transform
- pos: 48.5,-20.5
- parent: 2
- - uid: 10036
- components:
- - type: Transform
- pos: 8.5,90.5
- parent: 2
- - uid: 10037
- components:
- - type: Transform
- pos: -2.5,32.5
- parent: 2
- - uid: 10038
- components:
- - type: Transform
- pos: -18.5,-6.5
- parent: 2
- - uid: 10039
- components:
- - type: Transform
- pos: -41.5,43.5
- parent: 2
- - uid: 10040
- components:
- - type: Transform
- pos: 41.5,-14.5
- parent: 2
- - uid: 10041
- components:
- - type: Transform
- pos: 11.5,70.5
- parent: 2
- - uid: 10042
- components:
- - type: Transform
- pos: -22.5,-60.5
- parent: 2
- - uid: 10043
- components:
- - type: Transform
- pos: 0.5,-43.5
- parent: 2
- - uid: 10044
- components:
- - type: Transform
- pos: 44.5,-27.5
- parent: 2
- - uid: 10045
- components:
- - type: Transform
- pos: -18.5,40.5
- parent: 2
- - uid: 10046
- components:
- - type: Transform
- pos: 26.5,-37.5
- parent: 2
- - uid: 10047
- components:
- - type: Transform
- pos: -30.5,42.5
- parent: 2
- - uid: 10048
- components:
- - type: Transform
- pos: 0.5,-44.5
- parent: 2
- - uid: 10049
- components:
- - type: Transform
- pos: -18.5,-5.5
- parent: 2
- - uid: 10050
- components:
- - type: Transform
- pos: -51.5,-9.5
- parent: 2
- - uid: 10051
- components:
- - type: Transform
- pos: 55.5,-42.5
- parent: 2
- - uid: 10052
- components:
- - type: Transform
- pos: -35.5,61.5
- parent: 2
- - uid: 10053
- components:
- - type: Transform
- pos: -58.5,46.5
- parent: 2
- - uid: 10054
- components:
- - type: Transform
- pos: -9.5,-11.5
- parent: 2
- - uid: 10055
- components:
- - type: Transform
- pos: 13.5,42.5
- parent: 2
- - uid: 10056
- components:
- - type: Transform
- pos: -35.5,59.5
- parent: 2
- - uid: 10057
- components:
- - type: Transform
- pos: -32.5,61.5
- parent: 2
- - uid: 10058
- components:
- - type: Transform
- pos: -33.5,61.5
- parent: 2
- - uid: 10059
- components:
- - type: Transform
- pos: 76.5,9.5
- parent: 2
- - uid: 10060
- components:
- - type: Transform
- pos: -46.5,-7.5
- parent: 2
- - uid: 10061
- components:
- - type: Transform
- pos: -22.5,-79.5
- parent: 2
- - uid: 10062
- components:
- - type: Transform
- pos: -23.5,-68.5
- parent: 2
- - uid: 10063
- components:
- - type: Transform
- pos: 75.5,9.5
- parent: 2
- - uid: 10064
- components:
- - type: Transform
- pos: 7.5,73.5
- parent: 2
- - uid: 10065
- components:
- - type: Transform
- pos: -66.5,15.5
- parent: 2
- - uid: 10066
- components:
- - type: Transform
- pos: -56.5,45.5
- parent: 2
- - uid: 10067
- components:
- - type: Transform
- pos: -67.5,15.5
- parent: 2
- - uid: 10068
- components:
- - type: Transform
- pos: -33.5,-57.5
- parent: 2
- - uid: 10069
- components:
- - type: Transform
- pos: -57.5,-11.5
- parent: 2
- - uid: 10070
- components:
- - type: Transform
- pos: -76.5,-23.5
- parent: 2
- - uid: 10071
- components:
- - type: Transform
- pos: -66.5,15.5
- parent: 2
- - uid: 10072
- components:
- - type: Transform
- pos: -42.5,26.5
- parent: 2
- - uid: 10073
- components:
- - type: Transform
- pos: -9.5,-60.5
- parent: 2
- - uid: 10074
- components:
- - type: Transform
- pos: -9.5,-60.5
- parent: 2
- - uid: 10075
- components:
- - type: Transform
- pos: 6.5,74.5
- parent: 2
- - uid: 10076
- components:
- - type: Transform
- pos: -35.5,58.5
- parent: 2
- - uid: 10077
- components:
- - type: Transform
- pos: -41.5,25.5
- parent: 2
- - uid: 10078
- components:
- - type: Transform
- pos: -30.5,-19.5
- parent: 2
- - uid: 10079
- components:
- - type: Transform
- pos: -55.5,27.5
- parent: 2
- - uid: 10080
- components:
- - type: Transform
- pos: -25.5,-19.5
- parent: 2
- - uid: 10081
- components:
- - type: Transform
- pos: -30.5,19.5
- parent: 2
- - uid: 10082
- components:
- - type: Transform
- pos: -72.5,4.5
- parent: 2
- - uid: 10083
- components:
- - type: Transform
- pos: -58.5,58.5
- parent: 2
- - uid: 10084
- components:
- - type: Transform
- pos: -55.5,26.5
- parent: 2
- - uid: 10085
- components:
- - type: Transform
- pos: -55.5,45.5
- parent: 2
- - uid: 10086
- components:
- - type: Transform
- pos: -69.5,4.5
- parent: 2
- - uid: 10087
- components:
- - type: Transform
- pos: -74.5,5.5
- parent: 2
- - uid: 10088
- components:
- - type: Transform
- pos: 28.5,-41.5
- parent: 2
- - uid: 10089
- components:
- - type: Transform
- pos: -58.5,47.5
- parent: 2
- - uid: 10090
- components:
- - type: Transform
- pos: 28.5,-40.5
- parent: 2
- - uid: 10091
- components:
- - type: Transform
- pos: -58.5,51.5
- parent: 2
- - uid: 10092
- components:
- - type: Transform
- pos: 33.5,-60.5
- parent: 2
- - uid: 10093
- components:
- - type: Transform
- pos: -46.5,9.5
- parent: 2
- - uid: 10094
- components:
- - type: Transform
- pos: 31.5,-60.5
- parent: 2
- - uid: 10095
- components:
- - type: Transform
- pos: 29.5,-33.5
- parent: 2
- - uid: 10096
- components:
- - type: Transform
- pos: 29.5,-34.5
- parent: 2
- - uid: 10097
- components:
- - type: Transform
- pos: -28.5,-56.5
- parent: 2
- - uid: 10098
- components:
- - type: Transform
- pos: 5.5,-37.5
- parent: 2
- - uid: 10099
- components:
- - type: Transform
- pos: -59.5,-8.5
- parent: 2
- - uid: 10100
- components:
- - type: Transform
- pos: 29.5,-32.5
- parent: 2
- - uid: 10101
- components:
- - type: Transform
- pos: -58.5,52.5
- parent: 2
- - uid: 10102
- components:
- - type: Transform
- pos: 29.5,-31.5
- parent: 2
- - uid: 10103
- components:
- - type: Transform
- pos: -58.5,45.5
- parent: 2
- - uid: 10104
- components:
- - type: Transform
- pos: -58.5,48.5
- parent: 2
- - uid: 10105
- components:
- - type: Transform
- pos: 15.5,-55.5
- parent: 2
- - uid: 10106
- components:
- - type: Transform
- pos: -21.5,-80.5
- parent: 2
- - uid: 10107
- components:
- - type: Transform
- pos: -33.5,-56.5
- parent: 2
- - uid: 10108
- components:
- - type: Transform
- pos: -63.5,-25.5
- parent: 2
- - uid: 10109
- components:
- - type: Transform
- pos: -63.5,-27.5
- parent: 2
- - uid: 10110
- components:
- - type: Transform
- pos: 28.5,-42.5
- parent: 2
- - uid: 10111
- components:
- - type: Transform
- pos: 18.5,-53.5
- parent: 2
- - uid: 10112
- components:
- - type: Transform
- pos: -49.5,-41.5
- parent: 2
- - uid: 10113
- components:
- - type: Transform
- pos: -2.5,48.5
- parent: 2
- - uid: 10114
- components:
- - type: Transform
- pos: -18.5,39.5
- parent: 2
- - uid: 10115
- components:
- - type: Transform
- pos: 55.5,-27.5
- parent: 2
- - uid: 10116
- components:
- - type: Transform
- pos: 42.5,-12.5
- parent: 2
- - uid: 10117
- components:
- - type: Transform
- pos: 55.5,-26.5
- parent: 2
- - uid: 10118
- components:
- - type: Transform
- pos: -1.5,23.5
- parent: 2
- - uid: 10119
- components:
- - type: Transform
- pos: -12.5,52.5
- parent: 2
- - uid: 10120
- components:
- - type: Transform
- pos: -30.5,47.5
- parent: 2
- - uid: 10121
- components:
- - type: Transform
- pos: 9.5,40.5
- parent: 2
- - uid: 10122
- components:
- - type: Transform
- pos: -2.5,30.5
- parent: 2
- - uid: 10123
- components:
- - type: Transform
- pos: -48.5,-2.5
- parent: 2
- - uid: 10124
- components:
- - type: Transform
- pos: -45.5,-14.5
- parent: 2
- - uid: 10125
- components:
- - type: Transform
- pos: 17.5,25.5
- parent: 2
- - uid: 10126
- components:
- - type: Transform
- pos: 10.5,90.5
- parent: 2
- - uid: 10127
- components:
- - type: Transform
- pos: 31.5,55.5
- parent: 2
- - uid: 10128
- components:
- - type: Transform
- pos: 44.5,-46.5
- parent: 2
- - uid: 10129
- components:
- - type: Transform
- pos: -15.5,-80.5
- parent: 2
- - uid: 10130
- components:
- - type: Transform
- pos: -23.5,-61.5
- parent: 2
- - uid: 10131
- components:
- - type: Transform
- pos: 0.5,-40.5
- parent: 2
- - uid: 10132
- components:
- - type: Transform
- pos: 30.5,56.5
- parent: 2
- - uid: 10133
- components:
- - type: Transform
- pos: 23.5,56.5
- parent: 2
- - uid: 10134
- components:
- - type: Transform
- pos: -18.5,13.5
- parent: 2
- - uid: 10135
- components:
- - type: Transform
- pos: 12.5,61.5
- parent: 2
- - uid: 10136
- components:
- - type: Transform
- pos: -40.5,12.5
- parent: 2
- - uid: 10137
- components:
- - type: Transform
- pos: -39.5,12.5
- parent: 2
- - uid: 10138
- components:
- - type: Transform
- pos: 17.5,6.5
- parent: 2
- - uid: 10139
- components:
- - type: Transform
- pos: -76.5,-22.5
- parent: 2
- - uid: 10140
- components:
- - type: Transform
- pos: 25.5,-22.5
- parent: 2
- - uid: 10141
- components:
- - type: Transform
- pos: -42.5,31.5
- parent: 2
- - uid: 10142
- components:
- - type: Transform
- pos: -18.5,33.5
- parent: 2
- - uid: 10143
- components:
- - type: Transform
- pos: -56.5,34.5
- parent: 2
- - uid: 10144
- components:
- - type: Transform
- pos: -30.5,43.5
- parent: 2
- - uid: 10145
- components:
- - type: Transform
- pos: -42.5,33.5
- parent: 2
- - uid: 10146
- components:
- - type: Transform
- pos: -26.5,-16.5
- parent: 2
- - uid: 10147
- components:
- - type: Transform
- pos: -28.5,-36.5
- parent: 2
- - uid: 10148
- components:
- - type: Transform
- pos: -24.5,66.5
- parent: 2
- - uid: 10149
- components:
- - type: Transform
- pos: -63.5,-26.5
- parent: 2
- - uid: 10150
- components:
- - type: Transform
- pos: -30.5,46.5
- parent: 2
- - uid: 10151
- components:
- - type: Transform
- pos: -25.5,-77.5
- parent: 2
- - uid: 10152
- components:
- - type: Transform
- pos: 72.5,-4.5
- parent: 2
- - uid: 10153
- components:
- - type: Transform
- pos: 17.5,-52.5
- parent: 2
- - uid: 10154
- components:
- - type: Transform
- pos: 5.5,-8.5
- parent: 2
- - uid: 10155
- components:
- - type: Transform
- pos: 17.5,-53.5
- parent: 2
- - uid: 10156
- components:
- - type: Transform
- pos: 6.5,89.5
- parent: 2
- - uid: 10157
- components:
- - type: Transform
- pos: -18.5,-4.5
- parent: 2
- - uid: 10158
- components:
- - type: Transform
- pos: 13.5,39.5
- parent: 2
- - uid: 10159
- components:
- - type: Transform
- pos: -7.5,23.5
- parent: 2
- - uid: 10160
- components:
- - type: Transform
- pos: -18.5,-3.5
- parent: 2
- - uid: 10161
- components:
- - type: Transform
- pos: -73.5,4.5
- parent: 2
- - uid: 10162
- components:
- - type: Transform
- pos: -29.5,-19.5
- parent: 2
- - uid: 10163
- components:
- - type: Transform
- pos: -10.5,7.5
- parent: 2
- - uid: 10164
- components:
- - type: Transform
- pos: -9.5,9.5
- parent: 2
- - uid: 10165
- components:
- - type: Transform
- pos: 32.5,-5.5
- parent: 2
- - uid: 10166
- components:
- - type: Transform
- pos: 1.5,-13.5
- parent: 2
- - uid: 10167
- components:
- - type: Transform
- pos: -28.5,-55.5
- parent: 2
- - uid: 10168
- components:
- - type: Transform
- pos: 10.5,8.5
- parent: 2
- - uid: 10169
- components:
- - type: Transform
- pos: -10.5,4.5
- parent: 2
- - uid: 10170
- components:
- - type: Transform
- pos: -18.5,-1.5
- parent: 2
- - uid: 10171
- components:
- - type: Transform
- pos: 13.5,38.5
- parent: 2
- - uid: 10172
- components:
- - type: Transform
- pos: 16.5,36.5
- parent: 2
- - uid: 10173
- components:
- - type: Transform
- pos: -41.5,53.5
- parent: 2
- - uid: 10174
- components:
- - type: Transform
- pos: -75.5,-22.5
- parent: 2
- - uid: 10175
- components:
- - type: Transform
- pos: -35.5,39.5
- parent: 2
- - uid: 10176
- components:
- - type: Transform
- pos: -41.5,54.5
- parent: 2
- - uid: 10177
- components:
- - type: Transform
- pos: -37.5,39.5
- parent: 2
- - uid: 10178
- components:
- - type: Transform
- pos: 12.5,38.5
- parent: 2
- - uid: 10179
- components:
- - type: Transform
- pos: 7.5,57.5
- parent: 2
- - uid: 10180
- components:
- - type: Transform
- pos: 13.5,35.5
- parent: 2
- - uid: 10181
- components:
- - type: Transform
- pos: 41.5,-3.5
- parent: 2
- - uid: 10182
- components:
- - type: Transform
- pos: 49.5,-10.5
- parent: 2
- - uid: 10183
- components:
- - type: Transform
- pos: -33.5,-19.5
- parent: 2
- - uid: 10184
- components:
- - type: Transform
- pos: -36.5,-16.5
- parent: 2
- - uid: 10185
- components:
- - type: Transform
- pos: -36.5,-17.5
- parent: 2
- - uid: 10186
- components:
- - type: Transform
- pos: -31.5,-19.5
- parent: 2
- - uid: 10187
- components:
- - type: Transform
- pos: -36.5,-18.5
- parent: 2
- - uid: 10188
- components:
- - type: Transform
- pos: -36.5,-19.5
- parent: 2
- - uid: 10189
- components:
- - type: Transform
- pos: -32.5,-19.5
- parent: 2
- - uid: 10190
- components:
- - type: Transform
- pos: -35.5,-19.5
- parent: 2
- - uid: 10191
- components:
- - type: Transform
- pos: -36.5,-15.5
- parent: 2
- - uid: 10192
- components:
- - type: Transform
- pos: -34.5,-19.5
- parent: 2
- - uid: 10193
- components:
- - type: Transform
- pos: -37.5,40.5
- parent: 2
- - uid: 10194
- components:
- - type: Transform
- pos: -21.5,-78.5
- parent: 2
- - uid: 10195
- components:
- - type: Transform
- pos: -30.5,-72.5
- parent: 2
- - uid: 10196
- components:
- - type: Transform
- pos: -5.5,30.5
- parent: 2
- - uid: 10197
- components:
- - type: Transform
- pos: 4.5,-8.5
- parent: 2
- - uid: 10198
- components:
- - type: Transform
- pos: 0.5,34.5
- parent: 2
- - uid: 10199
- components:
- - type: Transform
- pos: -23.5,-62.5
- parent: 2
- - uid: 10200
- components:
- - type: Transform
- pos: -25.5,-61.5
- parent: 2
- - uid: 10201
- components:
- - type: Transform
- pos: 11.5,45.5
- parent: 2
- - uid: 10202
- components:
- - type: Transform
- pos: -63.5,-28.5
- parent: 2
- - uid: 10203
- components:
- - type: Transform
- pos: -27.5,-63.5
- parent: 2
- - uid: 10204
- components:
- - type: Transform
- pos: 4.5,-10.5
- parent: 2
- - uid: 10205
- components:
- - type: Transform
- pos: -3.5,-62.5
- parent: 2
- - uid: 10206
- components:
- - type: Transform
- pos: 4.5,-11.5
- parent: 2
- - uid: 10207
- components:
- - type: Transform
- pos: -9.5,-63.5
- parent: 2
- - uid: 10208
- components:
- - type: Transform
- pos: -34.5,-57.5
- parent: 2
- - uid: 10209
- components:
- - type: Transform
- pos: -27.5,-62.5
- parent: 2
- - uid: 10210
- components:
- - type: Transform
- pos: -4.5,-63.5
- parent: 2
- - uid: 10211
- components:
- - type: Transform
- pos: -27.5,-66.5
- parent: 2
- - uid: 10212
- components:
- - type: Transform
- pos: -25.5,-76.5
- parent: 2
- - uid: 10213
- components:
- - type: Transform
- pos: 17.5,11.5
- parent: 2
- - uid: 10214
- components:
- - type: Transform
- pos: -41.5,21.5
- parent: 2
- - uid: 10215
- components:
- - type: Transform
- pos: -23.5,-17.5
- parent: 2
- - uid: 10216
- components:
- - type: Transform
- pos: -23.5,-16.5
- parent: 2
- - uid: 10217
- components:
- - type: Transform
- pos: 5.5,-34.5
- parent: 2
- - uid: 10218
- components:
- - type: Transform
- pos: 23.5,-28.5
- parent: 2
- - uid: 10219
- components:
- - type: Transform
- pos: 16.5,-40.5
- parent: 2
- - uid: 10220
- components:
- - type: Transform
- pos: 5.5,-31.5
- parent: 2
- - uid: 10221
- components:
- - type: Transform
- pos: 22.5,-28.5
- parent: 2
- - uid: 10222
- components:
- - type: Transform
- pos: 3.5,-31.5
- parent: 2
- - uid: 10223
- components:
- - type: Transform
- pos: -13.5,-36.5
- parent: 2
- - uid: 10224
- components:
- - type: Transform
- pos: -57.5,45.5
- parent: 2
- - uid: 10225
- components:
- - type: Transform
- pos: 28.5,-51.5
- parent: 2
- - uid: 10226
- components:
- - type: Transform
- pos: -13.5,-37.5
- parent: 2
- - uid: 10227
- components:
- - type: Transform
- pos: -13.5,-35.5
- parent: 2
- - uid: 10228
- components:
- - type: Transform
- pos: 3.5,-29.5
- parent: 2
- - uid: 10229
- components:
- - type: Transform
- pos: 28.5,-31.5
- parent: 2
- - uid: 10230
- components:
- - type: Transform
- pos: -32.5,-57.5
- parent: 2
- - uid: 10231
- components:
- - type: Transform
- pos: 27.5,-30.5
- parent: 2
- - uid: 10232
- components:
- - type: Transform
- pos: 19.5,-28.5
- parent: 2
- - uid: 10233
- components:
- - type: Transform
- pos: 34.5,-42.5
- parent: 2
- - uid: 10234
- components:
- - type: Transform
- pos: -61.5,-28.5
- parent: 2
- - uid: 10235
- components:
- - type: Transform
- pos: -56.5,-9.5
- parent: 2
- - uid: 10236
- components:
- - type: Transform
- pos: -53.5,29.5
- parent: 2
- - uid: 10237
- components:
- - type: Transform
- pos: 13.5,-55.5
- parent: 2
- - uid: 10238
- components:
- - type: Transform
- pos: -27.5,-67.5
- parent: 2
- - uid: 10239
- components:
- - type: Transform
- pos: -15.5,-77.5
- parent: 2
- - uid: 10240
- components:
- - type: Transform
- pos: -15.5,-78.5
- parent: 2
- - uid: 10241
- components:
- - type: Transform
- pos: 10.5,64.5
- parent: 2
- - uid: 10242
- components:
- - type: Transform
- pos: -18.5,8.5
- parent: 2
- - uid: 10243
- components:
- - type: Transform
- pos: 0.5,32.5
- parent: 2
- - uid: 10244
- components:
- - type: Transform
- pos: 17.5,-7.5
- parent: 2
- - uid: 10245
- components:
- - type: Transform
- pos: -48.5,6.5
- parent: 2
- - uid: 10246
- components:
- - type: Transform
- pos: 15.5,36.5
- parent: 2
- - uid: 10247
- components:
- - type: Transform
- pos: 4.5,-9.5
- parent: 2
- - uid: 10248
- components:
- - type: Transform
- pos: -3.5,-63.5
- parent: 2
- - uid: 10249
- components:
- - type: Transform
- pos: -23.5,-18.5
- parent: 2
- - uid: 10250
- components:
- - type: Transform
- pos: -49.5,29.5
- parent: 2
- - uid: 10251
- components:
- - type: Transform
- pos: -57.5,-9.5
- parent: 2
- - uid: 10252
- components:
- - type: Transform
- pos: 8.5,3.5
- parent: 2
- - uid: 10253
- components:
- - type: Transform
- pos: -3.5,15.5
- parent: 2
- - uid: 10254
- components:
- - type: Transform
- pos: 12.5,7.5
- parent: 2
- - uid: 10255
- components:
- - type: Transform
- pos: 56.5,-24.5
- parent: 2
- - uid: 10256
- components:
- - type: Transform
- pos: 1.5,15.5
- parent: 2
- - uid: 10257
- components:
- - type: Transform
- pos: -58.5,49.5
- parent: 2
- - uid: 10258
- components:
- - type: Transform
- pos: -17.5,-30.5
- parent: 2
- - uid: 10259
- components:
- - type: Transform
- pos: -13.5,-49.5
- parent: 2
- - uid: 10260
- components:
- - type: Transform
- pos: -13.5,-48.5
- parent: 2
- - uid: 10261
- components:
- - type: Transform
- pos: 12.5,-39.5
- parent: 2
- - uid: 10262
- components:
- - type: Transform
- pos: 28.5,-35.5
- parent: 2
- - uid: 10263
- components:
- - type: Transform
- pos: 29.5,-35.5
- parent: 2
- - uid: 10264
- components:
- - type: Transform
- pos: -30.5,-57.5
- parent: 2
- - uid: 10265
- components:
- - type: Transform
- pos: -31.5,-56.5
- parent: 2
- - uid: 10266
- components:
- - type: Transform
- pos: 25.5,-20.5
- parent: 2
- - uid: 10267
- components:
- - type: Transform
- pos: -53.5,9.5
- parent: 2
- - uid: 10268
- components:
- - type: Transform
- pos: 28.5,-46.5
- parent: 2
- - uid: 10269
- components:
- - type: Transform
- pos: -28.5,-42.5
- parent: 2
- - uid: 10270
- components:
- - type: Transform
- pos: -13.5,-46.5
- parent: 2
- - uid: 10271
- components:
- - type: Transform
- pos: -13.5,-44.5
- parent: 2
- - uid: 10272
- components:
- - type: Transform
- pos: -18.5,-30.5
- parent: 2
- - uid: 10273
- components:
- - type: Transform
- pos: -20.5,-30.5
- parent: 2
- - uid: 10274
- components:
- - type: Transform
- pos: -25.5,25.5
- parent: 2
- - uid: 10275
- components:
- - type: Transform
- pos: 28.5,-47.5
- parent: 2
- - uid: 10276
- components:
- - type: Transform
- pos: 3.5,-37.5
- parent: 2
- - uid: 10277
- components:
- - type: Transform
- pos: -13.5,-52.5
- parent: 2
- - uid: 10278
- components:
- - type: Transform
- pos: -33.5,-52.5
- parent: 2
- - uid: 10279
- components:
- - type: Transform
- pos: -13.5,-47.5
- parent: 2
- - uid: 10280
- components:
- - type: Transform
- pos: -28.5,-41.5
- parent: 2
- - uid: 10281
- components:
- - type: Transform
- pos: 5.5,-35.5
- parent: 2
- - uid: 10282
- components:
- - type: Transform
- pos: 24.5,-20.5
- parent: 2
- - uid: 10283
- components:
- - type: Transform
- pos: 24.5,-21.5
- parent: 2
- - uid: 10284
- components:
- - type: Transform
- pos: -48.5,24.5
- parent: 2
- - uid: 10285
- components:
- - type: Transform
- pos: -48.5,23.5
- parent: 2
- - uid: 10286
- components:
- - type: Transform
- pos: -53.5,10.5
- parent: 2
- - uid: 10287
- components:
- - type: Transform
- pos: -48.5,27.5
- parent: 2
- - uid: 10288
- components:
- - type: Transform
- pos: -48.5,26.5
- parent: 2
- - uid: 10289
- components:
- - type: Transform
- pos: -19.5,-30.5
- parent: 2
- - uid: 10290
- components:
- - type: Transform
- pos: -13.5,-42.5
- parent: 2
- - uid: 10291
- components:
- - type: Transform
- pos: 27.5,-31.5
- parent: 2
- - uid: 10292
- components:
- - type: Transform
- pos: 35.5,-60.5
- parent: 2
- - uid: 10293
- components:
- - type: Transform
- pos: 35.5,-63.5
- parent: 2
- - uid: 10294
- components:
- - type: Transform
- pos: 27.5,-58.5
- parent: 2
- - uid: 10295
- components:
- - type: Transform
- pos: -33.5,-50.5
- parent: 2
- - uid: 10296
- components:
- - type: Transform
- pos: -4.5,-36.5
- parent: 2
- - uid: 10297
- components:
- - type: Transform
- pos: 35.5,-62.5
- parent: 2
- - uid: 10298
- components:
- - type: Transform
- pos: 15.5,-38.5
- parent: 2
- - uid: 10299
- components:
- - type: Transform
- pos: -31.5,-55.5
- parent: 2
- - uid: 10300
- components:
- - type: Transform
- pos: 27.5,-57.5
- parent: 2
- - uid: 10301
- components:
- - type: Transform
- pos: -3.5,14.5
- parent: 2
- - uid: 10302
- components:
- - type: Transform
- pos: -9.5,11.5
- parent: 2
- - uid: 10303
- components:
- - type: Transform
- pos: -0.5,15.5
- parent: 2
- - uid: 10304
- components:
- - type: Transform
- pos: 8.5,11.5
- parent: 2
- - uid: 10305
- components:
- - type: Transform
- pos: -4.5,14.5
- parent: 2
- - uid: 10306
- components:
- - type: Transform
- pos: -5.5,14.5
- parent: 2
- - uid: 10307
- components:
- - type: Transform
- pos: 12.5,8.5
- parent: 2
- - uid: 10308
- components:
- - type: Transform
- pos: 8.5,14.5
- parent: 2
- - uid: 10309
- components:
- - type: Transform
- pos: -6.5,14.5
- parent: 2
- - uid: 10310
- components:
- - type: Transform
- pos: 9.5,11.5
- parent: 2
- - uid: 10311
- components:
- - type: Transform
- pos: -2.5,15.5
- parent: 2
- - uid: 10312
- components:
- - type: Transform
- pos: -14.5,-39.5
- parent: 2
- - uid: 10313
- components:
- - type: Transform
- pos: -28.5,-50.5
- parent: 2
- - uid: 10314
- components:
- - type: Transform
- pos: -11.5,-40.5
- parent: 2
- - uid: 10315
- components:
- - type: Transform
- pos: 29.5,-60.5
- parent: 2
- - uid: 10316
- components:
- - type: Transform
- pos: -13.5,-40.5
- parent: 2
- - uid: 10317
- components:
- - type: Transform
- pos: 9.5,-33.5
- parent: 2
- - uid: 10318
- components:
- - type: Transform
- pos: -13.5,-39.5
- parent: 2
- - uid: 10319
- components:
- - type: Transform
- pos: 12.5,-1.5
- parent: 2
- - uid: 10320
- components:
- - type: Transform
- pos: 6.5,-53.5
- parent: 2
- - uid: 10321
- components:
- - type: Transform
- pos: -54.5,38.5
- parent: 2
- - uid: 10322
- components:
- - type: Transform
- pos: 32.5,-60.5
- parent: 2
- - uid: 10323
- components:
- - type: Transform
- pos: -57.5,10.5
- parent: 2
- - uid: 10324
- components:
- - type: Transform
- pos: -49.5,9.5
- parent: 2
- - uid: 10325
- components:
- - type: Transform
- pos: -72.5,-25.5
- parent: 2
- - uid: 10326
- components:
- - type: Transform
- pos: -58.5,10.5
- parent: 2
- - uid: 10327
- components:
- - type: Transform
- pos: -52.5,9.5
- parent: 2
- - uid: 10328
- components:
- - type: Transform
- pos: -60.5,10.5
- parent: 2
- - uid: 10329
- components:
- - type: Transform
- pos: -13.5,-34.5
- parent: 2
- - uid: 10330
- components:
- - type: Transform
- pos: -10.5,-34.5
- parent: 2
- - uid: 10331
- components:
- - type: Transform
- pos: -21.5,-27.5
- parent: 2
- - uid: 10332
- components:
- - type: Transform
- pos: 4.5,-49.5
- parent: 2
- - uid: 10333
- components:
- - type: Transform
- pos: -11.5,-34.5
- parent: 2
- - uid: 10334
- components:
- - type: Transform
- pos: -21.5,-31.5
- parent: 2
- - uid: 10335
- components:
- - type: Transform
- pos: -63.5,14.5
- parent: 2
- - uid: 10336
- components:
- - type: Transform
- pos: -12.5,-34.5
- parent: 2
- - uid: 10337
- components:
- - type: Transform
- pos: -9.5,-34.5
- parent: 2
- - uid: 10338
- components:
- - type: Transform
- pos: -20.5,-27.5
- parent: 2
- - uid: 10339
- components:
- - type: Transform
- pos: -21.5,-28.5
- parent: 2
- - uid: 10340
- components:
- - type: Transform
- pos: 4.5,-47.5
- parent: 2
- - uid: 10341
- components:
- - type: Transform
- pos: -29.5,23.5
- parent: 2
- - uid: 10342
- components:
- - type: Transform
- pos: -19.5,-34.5
- parent: 2
- - uid: 10343
- components:
- - type: Transform
- pos: -17.5,-34.5
- parent: 2
- - uid: 10344
- components:
- - type: Transform
- pos: -17.5,-29.5
- parent: 2
- - uid: 10345
- components:
- - type: Transform
- pos: -19.5,-39.5
- parent: 2
- - uid: 10346
- components:
- - type: Transform
- pos: 32.5,31.5
- parent: 2
- - uid: 10347
- components:
- - type: Transform
- pos: 67.5,0.5
- parent: 2
- - uid: 10348
- components:
- - type: Transform
- pos: 67.5,26.5
- parent: 2
- - uid: 10349
- components:
- - type: Transform
- pos: -16.5,-39.5
- parent: 2
- - uid: 10350
- components:
- - type: Transform
- pos: -9.5,8.5
- parent: 2
- - uid: 10351
- components:
- - type: Transform
- pos: -21.5,-40.5
- parent: 2
- - uid: 10352
- components:
- - type: Transform
- pos: -18.5,-34.5
- parent: 2
- - uid: 10353
- components:
- - type: Transform
- pos: 68.5,0.5
- parent: 2
- - uid: 10354
- components:
- - type: Transform
- pos: -10.5,5.5
- parent: 2
- - uid: 10355
- components:
- - type: Transform
- pos: 33.5,-23.5
- parent: 2
- - uid: 10356
- components:
- - type: Transform
- pos: 69.5,0.5
- parent: 2
- - uid: 10357
- components:
- - type: Transform
- pos: 43.5,-36.5
- parent: 2
- - uid: 10358
- components:
- - type: Transform
- pos: 29.5,31.5
- parent: 2
- - uid: 10359
- components:
- - type: Transform
- pos: 69.5,-0.5
- parent: 2
- - uid: 10360
- components:
- - type: Transform
- pos: -57.5,-1.5
- parent: 2
- - uid: 10361
- components:
- - type: Transform
- pos: 13.5,36.5
- parent: 2
- - uid: 10362
- components:
- - type: Transform
- pos: 26.5,-20.5
- parent: 2
- - uid: 10363
- components:
- - type: Transform
- pos: -38.5,-1.5
- parent: 2
- - uid: 10364
- components:
- - type: Transform
- pos: -58.5,13.5
- parent: 2
- - uid: 10365
- components:
- - type: Transform
- pos: -57.5,-16.5
- parent: 2
- - uid: 10366
- components:
- - type: Transform
- pos: 0.5,33.5
- parent: 2
- - uid: 10367
- components:
- - type: Transform
- pos: -18.5,7.5
- parent: 2
- - uid: 10368
- components:
- - type: Transform
- pos: 68.5,26.5
- parent: 2
- - uid: 10369
- components:
- - type: Transform
- pos: 10.5,63.5
- parent: 2
- - uid: 10370
- components:
- - type: Transform
- pos: 69.5,-1.5
- parent: 2
- - uid: 10371
- components:
- - type: Transform
- pos: -62.5,14.5
- parent: 2
- - uid: 10372
- components:
- - type: Transform
- pos: -57.5,-0.5
- parent: 2
- - uid: 10373
- components:
- - type: Transform
- pos: -25.5,-48.5
- parent: 2
- - uid: 10374
- components:
- - type: Transform
- pos: -28.5,-47.5
- parent: 2
- - uid: 10375
- components:
- - type: Transform
- pos: 14.5,-35.5
- parent: 2
- - uid: 10376
- components:
- - type: Transform
- pos: -16.5,-34.5
- parent: 2
- - uid: 10377
- components:
- - type: Transform
- pos: -58.5,-16.5
- parent: 2
- - uid: 10378
- components:
- - type: Transform
- pos: 69.5,-2.5
- parent: 2
- - uid: 10379
- components:
- - type: Transform
- pos: 29.5,-28.5
- parent: 2
- - uid: 10380
- components:
- - type: Transform
- pos: -21.5,-33.5
- parent: 2
- - uid: 10381
- components:
- - type: Transform
- pos: 31.5,-23.5
- parent: 2
- - uid: 10382
- components:
- - type: Transform
- pos: 26.5,-19.5
- parent: 2
- - uid: 10383
- components:
- - type: Transform
- pos: 14.5,-37.5
- parent: 2
- - uid: 10384
- components:
- - type: Transform
- pos: -28.5,-39.5
- parent: 2
- - uid: 10385
- components:
- - type: Transform
- pos: 4.5,-52.5
- parent: 2
- - uid: 10386
- components:
- - type: Transform
- pos: -17.5,-39.5
- parent: 2
- - uid: 10387
- components:
- - type: Transform
- pos: 69.5,-3.5
- parent: 2
- - uid: 10388
- components:
- - type: Transform
- pos: 16.5,-39.5
- parent: 2
- - uid: 10389
- components:
- - type: Transform
- pos: 70.5,-3.5
- parent: 2
- - uid: 10390
- components:
- - type: Transform
- pos: 7.5,-9.5
- parent: 2
- - uid: 10391
- components:
- - type: Transform
- pos: -27.5,-68.5
- parent: 2
- - uid: 10392
- components:
- - type: Transform
- pos: 71.5,-3.5
- parent: 2
- - uid: 10393
- components:
- - type: Transform
- pos: -31.5,37.5
- parent: 2
- - uid: 10394
- components:
- - type: Transform
- pos: -41.5,49.5
- parent: 2
- - uid: 10395
- components:
- - type: Transform
- pos: 72.5,-3.5
- parent: 2
- - uid: 10396
- components:
- - type: Transform
- pos: 17.5,-49.5
- parent: 2
- - uid: 10397
- components:
- - type: Transform
- pos: 5.5,-43.5
- parent: 2
- - uid: 10398
- components:
- - type: Transform
- pos: 33.5,31.5
- parent: 2
- - uid: 10399
- components:
- - type: Transform
- pos: 28.5,-43.5
- parent: 2
- - uid: 10400
- components:
- - type: Transform
- pos: 27.5,-19.5
- parent: 2
- - uid: 10401
- components:
- - type: Transform
- pos: -51.5,29.5
- parent: 2
- - uid: 10402
- components:
- - type: Transform
- pos: 73.5,-3.5
- parent: 2
- - uid: 10403
- components:
- - type: Transform
- pos: -65.5,14.5
- parent: 2
- - uid: 10404
- components:
- - type: Transform
- pos: 74.5,-3.5
- parent: 2
- - uid: 10405
- components:
- - type: Transform
- pos: 74.5,-2.5
- parent: 2
- - uid: 10406
- components:
- - type: Transform
- pos: -48.5,22.5
- parent: 2
- - uid: 10407
- components:
- - type: Transform
- pos: 30.5,31.5
- parent: 2
- - uid: 10408
- components:
- - type: Transform
- pos: 30.5,-25.5
- parent: 2
- - uid: 10409
- components:
- - type: Transform
- pos: 28.5,-44.5
- parent: 2
- - uid: 10410
- components:
- - type: Transform
- pos: -28.5,-40.5
- parent: 2
- - uid: 10411
- components:
- - type: Transform
- pos: 4.5,-51.5
- parent: 2
- - uid: 10412
- components:
- - type: Transform
- pos: 35.5,31.5
- parent: 2
- - uid: 10413
- components:
- - type: Transform
- pos: 6.5,14.5
- parent: 2
- - uid: 10414
- components:
- - type: Transform
- pos: 5.5,14.5
- parent: 2
- - uid: 10415
- components:
- - type: Transform
- pos: 4.5,14.5
- parent: 2
- - uid: 10416
- components:
- - type: Transform
- pos: -28.5,-48.5
- parent: 2
- - uid: 10417
- components:
- - type: Transform
- pos: 31.5,31.5
- parent: 2
- - uid: 10418
- components:
- - type: Transform
- pos: 17.5,-50.5
- parent: 2
- - uid: 10419
- components:
- - type: Transform
- pos: -50.5,29.5
- parent: 2
- - uid: 10420
- components:
- - type: Transform
- pos: -60.5,-16.5
- parent: 2
- - uid: 10421
- components:
- - type: Transform
- pos: -48.5,25.5
- parent: 2
- - uid: 10422
- components:
- - type: Transform
- pos: 10.5,-33.5
- parent: 2
- - uid: 10423
- components:
- - type: Transform
- pos: 11.5,-1.5
- parent: 2
- - uid: 10424
- components:
- - type: Transform
- pos: 3.5,14.5
- parent: 2
- - uid: 10425
- components:
- - type: Transform
- pos: 2.5,14.5
- parent: 2
- - uid: 10426
- components:
- - type: Transform
- pos: 6.5,-43.5
- parent: 2
- - uid: 10427
- components:
- - type: Transform
- pos: 28.5,-60.5
- parent: 2
- - uid: 10428
- components:
- - type: Transform
- pos: -28.5,-52.5
- parent: 2
- - uid: 10429
- components:
- - type: Transform
- pos: -73.5,5.5
- parent: 2
- - uid: 10430
- components:
- - type: Transform
- pos: -8.5,-11.5
- parent: 2
- - uid: 10431
- components:
- - type: Transform
- pos: 13.5,-38.5
- parent: 2
- - uid: 10432
- components:
- - type: Transform
- pos: 16.5,-46.5
- parent: 2
- - uid: 10433
- components:
- - type: Transform
- pos: -57.5,0.5
- parent: 2
- - uid: 10434
- components:
- - type: Transform
- pos: 16.5,-45.5
- parent: 2
- - uid: 10435
- components:
- - type: Transform
- pos: -57.5,1.5
- parent: 2
- - uid: 10436
- components:
- - type: Transform
- pos: 16.5,-44.5
- parent: 2
- - uid: 10437
- components:
- - type: Transform
- pos: 16.5,-43.5
- parent: 2
- - uid: 10438
- components:
- - type: Transform
- pos: -68.5,-30.5
- parent: 2
- - uid: 10439
- components:
- - type: Transform
- pos: -70.5,-30.5
- parent: 2
- - uid: 10440
- components:
- - type: Transform
- pos: -69.5,-30.5
- parent: 2
- - uid: 10441
- components:
- - type: Transform
- pos: 50.5,-46.5
- parent: 2
- - uid: 10442
- components:
- - type: Transform
- pos: 45.5,-3.5
- parent: 2
- - uid: 10443
- components:
- - type: Transform
- pos: 40.5,-3.5
- parent: 2
- - uid: 10444
- components:
- - type: Transform
- pos: 44.5,-7.5
- parent: 2
- - uid: 10445
- components:
- - type: Transform
- pos: 34.5,-0.5
- parent: 2
- - uid: 10446
- components:
- - type: Transform
- pos: 35.5,-0.5
- parent: 2
- - uid: 10447
- components:
- - type: Transform
- pos: 54.5,-28.5
- parent: 2
- - uid: 10448
- components:
- - type: Transform
- pos: 24.5,12.5
- parent: 2
- - uid: 10449
- components:
- - type: Transform
- pos: -73.5,10.5
- parent: 2
- - uid: 10450
- components:
- - type: Transform
- pos: 0.5,-41.5
- parent: 2
- - uid: 10451
- components:
- - type: Transform
- pos: 26.5,12.5
- parent: 2
- - uid: 10452
- components:
- - type: Transform
- pos: 51.5,-44.5
- parent: 2
- - uid: 10453
- components:
- - type: Transform
- pos: 35.5,32.5
- parent: 2
- - uid: 10454
- components:
- - type: Transform
- pos: 50.5,-20.5
- parent: 2
- - uid: 10455
- components:
- - type: Transform
- pos: 26.5,56.5
- parent: 2
- - uid: 10456
- components:
- - type: Transform
- pos: -15.5,23.5
- parent: 2
- - uid: 10457
- components:
- - type: Transform
- pos: 0.5,30.5
- parent: 2
- - uid: 10458
- components:
- - type: Transform
- pos: 10.5,43.5
- parent: 2
- - uid: 10459
- components:
- - type: Transform
- pos: 14.5,67.5
- parent: 2
- - uid: 10460
- components:
- - type: Transform
- pos: 34.5,31.5
- parent: 2
- - uid: 10461
- components:
- - type: Transform
- pos: -49.5,-0.5
- parent: 2
- - uid: 10462
- components:
- - type: Transform
- pos: -48.5,0.5
- parent: 2
- - uid: 10463
- components:
- - type: Transform
- pos: -5.5,-11.5
- parent: 2
- - uid: 10464
- components:
- - type: Transform
- pos: 35.5,33.5
- parent: 2
- - uid: 10465
- components:
- - type: Transform
- pos: 17.5,14.5
- parent: 2
- - uid: 10466
- components:
- - type: Transform
- pos: -16.5,-80.5
- parent: 2
- - uid: 10467
- components:
- - type: Transform
- pos: 34.5,33.5
- parent: 2
- - uid: 10468
- components:
- - type: Transform
- pos: 17.5,15.5
- parent: 2
- - uid: 10469
- components:
- - type: Transform
- pos: -22.5,-77.5
- parent: 2
- - uid: 10470
- components:
- - type: Transform
- pos: -44.5,-15.5
- parent: 2
- - uid: 10471
- components:
- - type: Transform
- pos: -49.5,-7.5
- parent: 2
- - uid: 10472
- components:
- - type: Transform
- pos: 17.5,-11.5
- parent: 2
- - uid: 10473
- components:
- - type: Transform
- pos: -18.5,-13.5
- parent: 2
- - uid: 10474
- components:
- - type: Transform
- pos: -18.5,-12.5
- parent: 2
- - uid: 10475
- components:
- - type: Transform
- pos: 10.5,36.5
- parent: 2
- - uid: 10476
- components:
- - type: Transform
- pos: 17.5,61.5
- parent: 2
- - uid: 10477
- components:
- - type: Transform
- pos: -0.5,23.5
- parent: 2
- - uid: 10478
- components:
- - type: Transform
- pos: -18.5,14.5
- parent: 2
- - uid: 10479
- components:
- - type: Transform
- pos: -18.5,15.5
- parent: 2
- - uid: 10480
- components:
- - type: Transform
- pos: 17.5,62.5
- parent: 2
- - uid: 10481
- components:
- - type: Transform
- pos: 8.5,38.5
- parent: 2
- - uid: 10482
- components:
- - type: Transform
- pos: 16.5,61.5
- parent: 2
- - uid: 10483
- components:
- - type: Transform
- pos: -70.5,8.5
- parent: 2
- - uid: 10484
- components:
- - type: Transform
- pos: 27.5,56.5
- parent: 2
- - uid: 10485
- components:
- - type: Transform
- pos: -44.5,-7.5
- parent: 2
- - uid: 10486
- components:
- - type: Transform
- pos: 28.5,56.5
- parent: 2
- - uid: 10487
- components:
- - type: Transform
- pos: 41.5,-44.5
- parent: 2
- - uid: 10488
- components:
- - type: Transform
- pos: 56.5,-23.5
- parent: 2
- - uid: 10489
- components:
- - type: Transform
- pos: 8.5,36.5
- parent: 2
- - uid: 10490
- components:
- - type: Transform
- pos: 14.5,61.5
- parent: 2
- - uid: 10491
- components:
- - type: Transform
- pos: 8.5,53.5
- parent: 2
- - uid: 10492
- components:
- - type: Transform
- pos: 16.5,-22.5
- parent: 2
- - uid: 10493
- components:
- - type: Transform
- pos: 9.5,52.5
- parent: 2
- - uid: 10494
- components:
- - type: Transform
- pos: 16.5,-20.5
- parent: 2
- - uid: 10495
- components:
- - type: Transform
- pos: 14.5,66.5
- parent: 2
- - uid: 10496
- components:
- - type: Transform
- pos: -51.5,-6.5
- parent: 2
- - uid: 10497
- components:
- - type: Transform
- pos: -8.5,-71.5
- parent: 2
- - uid: 10498
- components:
- - type: Transform
- pos: 48.5,-27.5
- parent: 2
- - uid: 10499
- components:
- - type: Transform
- pos: 42.5,-46.5
- parent: 2
- - uid: 10500
- components:
- - type: Transform
- pos: -47.5,-7.5
- parent: 2
- - uid: 10501
- components:
- - type: Transform
- pos: -36.5,-62.5
- parent: 2
- - uid: 10502
- components:
- - type: Transform
- pos: 3.5,62.5
- parent: 2
- - uid: 10503
- components:
- - type: Transform
- pos: -67.5,-30.5
- parent: 2
- - uid: 10504
- components:
- - type: Transform
- pos: -66.5,-30.5
- parent: 2
- - uid: 10505
- components:
- - type: Transform
- pos: -71.5,-30.5
- parent: 2
- - uid: 10506
- components:
- - type: Transform
- pos: -36.5,-1.5
- parent: 2
- - uid: 10507
- components:
- - type: Transform
- pos: -50.5,13.5
- parent: 2
- - uid: 10508
- components:
- - type: Transform
- pos: -48.5,31.5
- parent: 2
- - uid: 10509
- components:
- - type: Transform
- pos: -50.5,15.5
- parent: 2
- - uid: 10510
- components:
- - type: Transform
- pos: -20.5,26.5
- parent: 2
- - uid: 10511
- components:
- - type: Transform
- pos: -29.5,54.5
- parent: 2
- - uid: 10512
- components:
- - type: Transform
- pos: -25.5,-30.5
- parent: 2
- - uid: 10513
- components:
- - type: Transform
- pos: -39.5,37.5
- parent: 2
- - uid: 10514
- components:
- - type: Transform
- pos: -40.5,57.5
- parent: 2
- - uid: 10515
- components:
- - type: Transform
- pos: -44.5,38.5
- parent: 2
- - uid: 10516
- components:
- - type: Transform
- pos: -31.5,-78.5
- parent: 2
- - uid: 10517
- components:
- - type: Transform
- pos: 12.5,-8.5
- parent: 2
- - uid: 10518
- components:
- - type: Transform
- pos: -39.5,57.5
- parent: 2
- - uid: 10519
- components:
- - type: Transform
- pos: -41.5,37.5
- parent: 2
- - uid: 10520
- components:
- - type: Transform
- pos: -41.5,57.5
- parent: 2
- - uid: 10521
- components:
- - type: Transform
- pos: 6.5,68.5
- parent: 2
- - uid: 10522
- components:
- - type: Transform
- pos: -18.5,34.5
- parent: 2
- - uid: 10523
- components:
- - type: Transform
- pos: -18.5,-7.5
- parent: 2
- - uid: 10524
- components:
- - type: Transform
- pos: -28.5,56.5
- parent: 2
- - uid: 10525
- components:
- - type: Transform
- pos: 23.5,36.5
- parent: 2
- - uid: 10526
- components:
- - type: Transform
- pos: -51.5,-7.5
- parent: 2
- - uid: 10527
- components:
- - type: Transform
- pos: 14.5,65.5
- parent: 2
- - uid: 10528
- components:
- - type: Transform
- pos: -51.5,-7.5
- parent: 2
- - uid: 10529
- components:
- - type: Transform
- pos: -18.5,-9.5
- parent: 2
- - uid: 10530
- components:
- - type: Transform
- pos: -18.5,18.5
- parent: 2
- - uid: 10531
- components:
- - type: Transform
- pos: 17.5,64.5
- parent: 2
- - uid: 10532
- components:
- - type: Transform
- pos: 17.5,-9.5
- parent: 2
- - uid: 10533
- components:
- - type: Transform
- pos: -9.5,23.5
- parent: 2
- - uid: 10534
- components:
- - type: Transform
- pos: -18.5,-11.5
- parent: 2
- - uid: 10535
- components:
- - type: Transform
- pos: 16.5,56.5
- parent: 2
- - uid: 10536
- components:
- - type: Transform
- pos: 19.5,56.5
- parent: 2
- - uid: 10537
- components:
- - type: Transform
- pos: 20.5,56.5
- parent: 2
- - uid: 10538
- components:
- - type: Transform
- pos: 21.5,56.5
- parent: 2
- - uid: 10539
- components:
- - type: Transform
- pos: 37.5,-65.5
- parent: 2
- - uid: 10540
- components:
- - type: Transform
- pos: 15.5,56.5
- parent: 2
- - uid: 10541
- components:
- - type: Transform
- pos: 22.5,56.5
- parent: 2
- - uid: 10542
- components:
- - type: Transform
- pos: 37.5,-66.5
- parent: 2
- - uid: 10543
- components:
- - type: Transform
- pos: -42.5,39.5
- parent: 2
- - uid: 10544
- components:
- - type: Transform
- pos: -44.5,39.5
- parent: 2
- - uid: 10545
- components:
- - type: Transform
- pos: -43.5,39.5
- parent: 2
- - uid: 10546
- components:
- - type: Transform
- pos: -39.5,-3.5
- parent: 2
- - uid: 10547
- components:
- - type: Transform
- pos: -40.5,28.5
- parent: 2
- - uid: 10548
- components:
- - type: Transform
- pos: -55.5,29.5
- parent: 2
- - uid: 10549
- components:
- - type: Transform
- pos: -73.5,-23.5
- parent: 2
- - uid: 10550
- components:
- - type: Transform
- pos: -55.5,28.5
- parent: 2
- - uid: 10551
- components:
- - type: Transform
- pos: 37.5,-67.5
- parent: 2
- - uid: 10552
- components:
- - type: Transform
- pos: -29.5,39.5
- parent: 2
- - uid: 10553
- components:
- - type: Transform
- pos: 37.5,-68.5
- parent: 2
- - uid: 10554
- components:
- - type: Transform
- pos: -30.5,16.5
- parent: 2
- - uid: 10555
- components:
- - type: Transform
- pos: -73.5,-22.5
- parent: 2
- - uid: 10556
- components:
- - type: Transform
- pos: 38.5,-68.5
- parent: 2
- - uid: 10557
- components:
- - type: Transform
- pos: -65.5,-30.5
- parent: 2
- - uid: 10558
- components:
- - type: Transform
- pos: -70.5,15.5
- parent: 2
- - uid: 10559
- components:
- - type: Transform
- pos: -57.5,-13.5
- parent: 2
- - uid: 10560
- components:
- - type: Transform
- pos: -61.5,-5.5
- parent: 2
- - uid: 10561
- components:
- - type: Transform
- pos: -12.5,-52.5
- parent: 2
- - uid: 10562
- components:
- - type: Transform
- pos: 34.5,-19.5
- parent: 2
- - uid: 10563
- components:
- - type: Transform
- pos: 16.5,-42.5
- parent: 2
- - uid: 10564
- components:
- - type: Transform
- pos: 25.5,-37.5
- parent: 2
- - uid: 10565
- components:
- - type: Transform
- pos: 39.5,-68.5
- parent: 2
- - uid: 10566
- components:
- - type: Transform
- pos: 40.5,-68.5
- parent: 2
- - uid: 10567
- components:
- - type: Transform
- pos: 41.5,-68.5
- parent: 2
- - uid: 10568
- components:
- - type: Transform
- pos: 10.5,-0.5
- parent: 2
- - uid: 10569
- components:
- - type: Transform
- pos: 42.5,-68.5
- parent: 2
- - uid: 10570
- components:
- - type: Transform
- pos: 10.5,2.5
- parent: 2
- - uid: 10571
- components:
- - type: Transform
- pos: -69.5,8.5
- parent: 2
- - uid: 10572
- components:
- - type: Transform
- pos: -36.5,39.5
- parent: 2
- - uid: 10573
- components:
- - type: Transform
- pos: 34.5,-21.5
- parent: 2
- - uid: 10574
- components:
- - type: Transform
- pos: 32.5,-19.5
- parent: 2
- - uid: 10575
- components:
- - type: Transform
- pos: -61.5,-8.5
- parent: 2
- - uid: 10576
- components:
- - type: Transform
- pos: 34.5,-20.5
- parent: 2
- - uid: 10577
- components:
- - type: Transform
- pos: -42.5,-45.5
- parent: 2
- - uid: 10578
- components:
- - type: Transform
- pos: 33.5,-19.5
- parent: 2
- - uid: 10579
- components:
- - type: Transform
- pos: -77.5,14.5
- parent: 2
- - uid: 10580
- components:
- - type: Transform
- pos: 7.5,81.5
- parent: 2
- - uid: 10581
- components:
- - type: Transform
- pos: -61.5,-7.5
- parent: 2
- - uid: 10582
- components:
- - type: Transform
- pos: 6.5,75.5
- parent: 2
- - uid: 10583
- components:
- - type: Transform
- pos: -8.5,-76.5
- parent: 2
- - uid: 10584
- components:
- - type: Transform
- pos: 17.5,10.5
- parent: 2
- - uid: 10585
- components:
- - type: Transform
- pos: 13.5,23.5
- parent: 2
- - uid: 10586
- components:
- - type: Transform
- pos: 12.5,23.5
- parent: 2
- - uid: 10587
- components:
- - type: Transform
- pos: -5.5,-7.5
- parent: 2
- - uid: 10588
- components:
- - type: Transform
- pos: -0.5,48.5
- parent: 2
- - uid: 10589
- components:
- - type: Transform
- pos: -23.5,-66.5
- parent: 2
- - uid: 10590
- components:
- - type: Transform
- pos: 47.5,-9.5
- parent: 2
- - uid: 10591
- components:
- - type: Transform
- pos: 6.5,87.5
- parent: 2
- - uid: 10592
- components:
- - type: Transform
- pos: -7.5,-11.5
- parent: 2
- - uid: 10593
- components:
- - type: Transform
- pos: -36.5,-63.5
- parent: 2
- - uid: 10594
- components:
- - type: Transform
- pos: -71.5,10.5
- parent: 2
- - uid: 10595
- components:
- - type: Transform
- pos: -27.5,25.5
- parent: 2
- - uid: 10596
- components:
- - type: Transform
- pos: -72.5,-30.5
- parent: 2
- - uid: 10597
- components:
- - type: Transform
- pos: -50.5,12.5
- parent: 2
- - uid: 10598
- components:
- - type: Transform
- pos: -10.5,-77.5
- parent: 2
- - uid: 10599
- components:
- - type: Transform
- pos: -24.5,-30.5
- parent: 2
- - uid: 10600
- components:
- - type: Transform
- pos: -41.5,22.5
- parent: 2
- - uid: 10601
- components:
- - type: Transform
- pos: -32.5,37.5
- parent: 2
- - uid: 10602
- components:
- - type: Transform
- pos: -30.5,23.5
- parent: 2
- - uid: 10603
- components:
- - type: Transform
- pos: 6.5,71.5
- parent: 2
- - uid: 10604
- components:
- - type: Transform
- pos: -12.5,-77.5
- parent: 2
- - uid: 10605
- components:
- - type: Transform
- pos: 26.5,38.5
- parent: 2
- - uid: 10606
- components:
- - type: Transform
- pos: 14.5,-8.5
- parent: 2
- - uid: 10607
- components:
- - type: Transform
- pos: 2.5,23.5
- parent: 2
- - uid: 10608
- components:
- - type: Transform
- pos: 10.5,59.5
- parent: 2
- - uid: 10609
- components:
- - type: Transform
- pos: 17.5,-10.5
- parent: 2
- - uid: 10610
- components:
- - type: Transform
- pos: -37.5,-1.5
- parent: 2
- - uid: 10611
- components:
- - type: Transform
- pos: -33.5,37.5
- parent: 2
- - uid: 10612
- components:
- - type: Transform
- pos: -30.5,22.5
- parent: 2
- - uid: 10613
- components:
- - type: Transform
- pos: 26.5,39.5
- parent: 2
- - uid: 10614
- components:
- - type: Transform
- pos: 24.5,36.5
- parent: 2
- - uid: 10615
- components:
- - type: Transform
- pos: -2.5,34.5
- parent: 2
- - uid: 10616
- components:
- - type: Transform
- pos: 13.5,56.5
- parent: 2
- - uid: 10617
- components:
- - type: Transform
- pos: 40.5,-15.5
- parent: 2
- - uid: 10618
- components:
- - type: Transform
- pos: 30.5,4.5
- parent: 2
- - uid: 10619
- components:
- - type: Transform
- pos: -11.5,-9.5
- parent: 2
- - uid: 10620
- components:
- - type: Transform
- pos: 26.5,20.5
- parent: 2
- - uid: 10621
- components:
- - type: Transform
- pos: 17.5,-5.5
- parent: 2
- - uid: 10622
- components:
- - type: Transform
- pos: 0.5,-47.5
- parent: 2
- - uid: 10623
- components:
- - type: Transform
- pos: 17.5,-55.5
- parent: 2
- - uid: 10624
- components:
- - type: Transform
- pos: -31.5,-74.5
- parent: 2
- - uid: 10625
- components:
- - type: Transform
- pos: 1.5,-47.5
- parent: 2
- - uid: 10626
- components:
- - type: Transform
- pos: 16.5,-8.5
- parent: 2
- - uid: 10627
- components:
- - type: Transform
- pos: 26.5,19.5
- parent: 2
- - uid: 10628
- components:
- - type: Transform
- pos: 13.5,67.5
- parent: 2
- - uid: 10629
- components:
- - type: Transform
- pos: 56.5,-21.5
- parent: 2
- - uid: 10630
- components:
- - type: Transform
- pos: -40.5,-63.5
- parent: 2
- - uid: 10631
- components:
- - type: Transform
- pos: 13.5,34.5
- parent: 2
- - uid: 10632
- components:
- - type: Transform
- pos: 1.5,-38.5
- parent: 2
- - uid: 10633
- components:
- - type: Transform
- pos: -37.5,-63.5
- parent: 2
- - uid: 10634
- components:
- - type: Transform
- pos: -46.5,8.5
- parent: 2
- - uid: 10635
- components:
- - type: Transform
- pos: 29.5,-22.5
- parent: 2
- - uid: 10636
- components:
- - type: Transform
- pos: -57.5,-12.5
- parent: 2
- - uid: 10637
- components:
- - type: Transform
- pos: -114.5,40.5
- parent: 2
- - uid: 10638
- components:
- - type: Transform
- pos: -48.5,34.5
- parent: 2
- - uid: 10639
- components:
- - type: Transform
- pos: -48.5,33.5
- parent: 2
- - uid: 10640
- components:
- - type: Transform
- pos: -46.5,34.5
- parent: 2
- - uid: 10641
- components:
- - type: Transform
- pos: -62.5,10.5
- parent: 2
- - uid: 10642
- components:
- - type: Transform
- pos: -61.5,10.5
- parent: 2
- - uid: 10643
- components:
- - type: Transform
- pos: 4.5,62.5
- parent: 2
- - uid: 10644
- components:
- - type: Transform
- pos: -73.5,-28.5
- parent: 2
- - uid: 10645
- components:
- - type: Transform
- pos: -36.5,-12.5
- parent: 2
- - uid: 10646
- components:
- - type: Transform
- pos: -73.5,-29.5
- parent: 2
- - uid: 10647
- components:
- - type: Transform
- pos: -37.5,-12.5
- parent: 2
- - uid: 10648
- components:
- - type: Transform
- pos: -40.5,42.5
- parent: 2
- - uid: 10649
- components:
- - type: Transform
- pos: -30.5,20.5
- parent: 2
- - uid: 10650
- components:
- - type: Transform
- pos: -36.5,-13.5
- parent: 2
- - uid: 10651
- components:
- - type: Transform
- pos: -73.5,-30.5
- parent: 2
- - uid: 10652
- components:
- - type: Transform
- pos: -30.5,15.5
- parent: 2
- - uid: 10653
- components:
- - type: Transform
- pos: -41.5,42.5
- parent: 2
- - uid: 10654
- components:
- - type: Transform
- pos: -36.5,-10.5
- parent: 2
- - uid: 10655
- components:
- - type: Transform
- pos: -73.5,-27.5
- parent: 2
- - uid: 10656
- components:
- - type: Transform
- pos: -38.5,42.5
- parent: 2
- - uid: 10657
- components:
- - type: Transform
- pos: 17.5,3.5
- parent: 2
- - uid: 10658
- components:
- - type: Transform
- pos: -36.5,57.5
- parent: 2
- - uid: 10659
- components:
- - type: Transform
- pos: -46.5,-14.5
- parent: 2
- - uid: 10660
- components:
- - type: Transform
- pos: 6.5,66.5
- parent: 2
- - uid: 10661
- components:
- - type: Transform
- pos: -25.5,-75.5
- parent: 2
- - uid: 10662
- components:
- - type: Transform
- pos: 17.5,-13.5
- parent: 2
- - uid: 10663
- components:
- - type: Transform
- pos: -25.5,64.5
- parent: 2
- - uid: 10664
- components:
- - type: Transform
- pos: -73.5,15.5
- parent: 2
- - uid: 10665
- components:
- - type: Transform
- pos: -62.5,-32.5
- parent: 2
- - uid: 10666
- components:
- - type: Transform
- pos: -74.5,15.5
- parent: 2
- - uid: 10667
- components:
- - type: Transform
- pos: 24.5,-28.5
- parent: 2
- - uid: 10668
- components:
- - type: Transform
- pos: -36.5,-4.5
- parent: 2
- - uid: 10669
- components:
- - type: Transform
- pos: -28.5,23.5
- parent: 2
- - uid: 10670
- components:
- - type: Transform
- pos: -29.5,40.5
- parent: 2
- - uid: 10671
- components:
- - type: Transform
- pos: -28.5,24.5
- parent: 2
- - uid: 10672
- components:
- - type: Transform
- pos: -30.5,40.5
- parent: 2
- - uid: 10673
- components:
- - type: Transform
- pos: -64.5,53.5
- parent: 2
- - uid: 10674
- components:
- - type: Transform
- pos: -58.5,11.5
- parent: 2
- - uid: 10675
- components:
- - type: Transform
- pos: -59.5,10.5
- parent: 2
- - uid: 10676
- components:
- - type: Transform
- pos: 3.5,64.5
- parent: 2
- - uid: 10677
- components:
- - type: Transform
- pos: 3.5,63.5
- parent: 2
- - uid: 10678
- components:
- - type: Transform
- pos: -62.5,53.5
- parent: 2
- - uid: 10679
- components:
- - type: Transform
- pos: -41.5,28.5
- parent: 2
- - uid: 10680
- components:
- - type: Transform
- pos: -21.5,-34.5
- parent: 2
- - uid: 10681
- components:
- - type: Transform
- pos: -32.5,-78.5
- parent: 2
- - uid: 10682
- components:
- - type: Transform
- pos: -28.5,-72.5
- parent: 2
- - uid: 10683
- components:
- - type: Transform
- pos: 36.5,-42.5
- parent: 2
- - uid: 10684
- components:
- - type: Transform
- pos: 28.5,-22.5
- parent: 2
- - uid: 10685
- components:
- - type: Transform
- pos: 27.5,-22.5
- parent: 2
- - uid: 10686
- components:
- - type: Transform
- pos: 21.5,-28.5
- parent: 2
- - uid: 10687
- components:
- - type: Transform
- pos: -25.5,61.5
- parent: 2
- - uid: 10688
- components:
- - type: Transform
- pos: -12.5,71.5
- parent: 2
- - uid: 10689
- components:
- - type: Transform
- pos: 6.5,70.5
- parent: 2
- - uid: 10690
- components:
- - type: Transform
- pos: -72.5,15.5
- parent: 2
- - uid: 10691
- components:
- - type: Transform
- pos: 29.5,-26.5
- parent: 2
- - uid: 10692
- components:
- - type: Transform
- pos: -20.5,-34.5
- parent: 2
- - uid: 10693
- components:
- - type: Transform
- pos: -57.5,32.5
- parent: 2
- - uid: 10694
- components:
- - type: Transform
- pos: -58.5,-5.5
- parent: 2
- - uid: 10695
- components:
- - type: Transform
- pos: -25.5,60.5
- parent: 2
- - uid: 10696
- components:
- - type: Transform
- pos: -26.5,60.5
- parent: 2
- - uid: 10697
- components:
- - type: Transform
- pos: -26.5,-72.5
- parent: 2
- - uid: 10698
- components:
- - type: Transform
- pos: -46.5,7.5
- parent: 2
- - uid: 10699
- components:
- - type: Transform
- pos: -41.5,23.5
- parent: 2
- - uid: 10700
- components:
- - type: Transform
- pos: -41.5,50.5
- parent: 2
- - uid: 10701
- components:
- - type: Transform
- pos: -31.5,-76.5
- parent: 2
- - uid: 10702
- components:
- - type: Transform
- pos: -45.5,6.5
- parent: 2
- - uid: 10703
- components:
- - type: Transform
- pos: -6.5,31.5
- parent: 2
- - uid: 10704
- components:
- - type: Transform
- pos: -57.5,-4.5
- parent: 2
- - uid: 10705
- components:
- - type: Transform
- pos: -57.5,-5.5
- parent: 2
- - uid: 10706
- components:
- - type: Transform
- pos: -59.5,-5.5
- parent: 2
- - uid: 10707
- components:
- - type: Transform
- pos: -60.5,-5.5
- parent: 2
- - uid: 10708
- components:
- - type: Transform
- pos: 4.5,-38.5
- parent: 2
- - uid: 10709
- components:
- - type: Transform
- pos: 12.5,-41.5
- parent: 2
- - uid: 10710
- components:
- - type: Transform
- pos: 12.5,-40.5
- parent: 2
- - uid: 10711
- components:
- - type: Transform
- pos: 8.5,12.5
- parent: 2
- - uid: 10712
- components:
- - type: Transform
- pos: 8.5,13.5
- parent: 2
- - uid: 10713
- components:
- - type: Transform
- pos: -33.5,-49.5
- parent: 2
- - uid: 10714
- components:
- - type: Transform
- pos: 32.5,-42.5
- parent: 2
- - uid: 10715
- components:
- - type: Transform
- pos: -32.5,-45.5
- parent: 2
- - uid: 10716
- components:
- - type: Transform
- pos: -122.5,40.5
- parent: 2
- - uid: 10717
- components:
- - type: Transform
- pos: -32.5,-47.5
- parent: 2
- - uid: 10718
- components:
- - type: Transform
- pos: 8.5,4.5
- parent: 2
- - uid: 10719
- components:
- - type: Transform
- pos: -46.5,22.5
- parent: 2
- - uid: 10720
- components:
- - type: Transform
- pos: -10.5,1.5
- parent: 2
- - uid: 10721
- components:
- - type: Transform
- pos: 33.5,-42.5
- parent: 2
- - uid: 10722
- components:
- - type: Transform
- pos: -10.5,6.5
- parent: 2
- - uid: 10723
- components:
- - type: Transform
- pos: 4.5,-46.5
- parent: 2
- - uid: 10724
- components:
- - type: Transform
- pos: 4.5,-42.5
- parent: 2
- - uid: 10725
- components:
- - type: Transform
- pos: 12.5,-44.5
- parent: 2
- - uid: 10726
- components:
- - type: Transform
- pos: 8.5,-44.5
- parent: 2
- - uid: 10727
- components:
- - type: Transform
- pos: 10.5,-44.5
- parent: 2
- - uid: 10728
- components:
- - type: Transform
- pos: 7.5,-44.5
- parent: 2
- - uid: 10729
- components:
- - type: Transform
- pos: 12.5,-42.5
- parent: 2
- - uid: 10730
- components:
- - type: Transform
- pos: 17.5,-47.5
- parent: 2
- - uid: 10731
- components:
- - type: Transform
- pos: 15.5,-41.5
- parent: 2
- - uid: 10732
- components:
- - type: Transform
- pos: 26.5,-45.5
- parent: 2
- - uid: 10733
- components:
- - type: Transform
- pos: 12.5,-43.5
- parent: 2
- - uid: 10734
- components:
- - type: Transform
- pos: 9.5,5.5
- parent: 2
- - uid: 10735
- components:
- - type: Transform
- pos: 10.5,5.5
- parent: 2
- - uid: 10736
- components:
- - type: Transform
- pos: -8.5,1.5
- parent: 2
- - uid: 10737
- components:
- - type: Transform
- pos: -9.5,1.5
- parent: 2
- - uid: 10738
- components:
- - type: Transform
- pos: 10.5,6.5
- parent: 2
- - uid: 10739
- components:
- - type: Transform
- pos: 29.5,-37.5
- parent: 2
- - uid: 10740
- components:
- - type: Transform
- pos: -27.5,-19.5
- parent: 2
- - uid: 10741
- components:
- - type: Transform
- pos: -57.5,56.5
- parent: 2
- - uid: 10742
- components:
- - type: Transform
- pos: 67.5,25.5
- parent: 2
- - uid: 10743
- components:
- - type: Transform
- pos: 36.5,-15.5
- parent: 2
- - uid: 10744
- components:
- - type: Transform
- pos: 25.5,-27.5
- parent: 2
- - uid: 10745
- components:
- - type: Transform
- pos: -36.5,-59.5
- parent: 2
- - uid: 10746
- components:
- - type: Transform
- pos: 6.5,-11.5
- parent: 2
- - uid: 10747
- components:
- - type: Transform
- pos: 56.5,-25.5
- parent: 2
- - uid: 10748
- components:
- - type: Transform
- pos: 38.5,-3.5
- parent: 2
- - uid: 10749
- components:
- - type: Transform
- pos: 38.5,-15.5
- parent: 2
- - uid: 10750
- components:
- - type: Transform
- pos: -22.5,-80.5
- parent: 2
- - uid: 10751
- components:
- - type: Transform
- pos: -71.5,9.5
- parent: 2
- - uid: 10752
- components:
- - type: Transform
- pos: 10.5,88.5
- parent: 2
- - uid: 10753
- components:
- - type: Transform
- pos: -35.5,37.5
- parent: 2
- - uid: 10754
- components:
- - type: Transform
- pos: -1.5,48.5
- parent: 2
- - uid: 10755
- components:
- - type: Transform
- pos: 1.5,-14.5
- parent: 2
- - uid: 10756
- components:
- - type: Transform
- pos: 11.5,23.5
- parent: 2
- - uid: 10757
- components:
- - type: Transform
- pos: 8.5,56.5
- parent: 2
- - uid: 10758
- components:
- - type: Transform
- pos: 34.5,-15.5
- parent: 2
- - uid: 10759
- components:
- - type: Transform
- pos: 24.5,-10.5
- parent: 2
- - uid: 10760
- components:
- - type: Transform
- pos: 31.5,-15.5
- parent: 2
- - uid: 10761
- components:
- - type: Transform
- pos: 32.5,-15.5
- parent: 2
- - uid: 10762
- components:
- - type: Transform
- pos: 31.5,7.5
- parent: 2
- - uid: 10763
- components:
- - type: Transform
- pos: 26.5,-12.5
- parent: 2
- - uid: 10764
- components:
- - type: Transform
- pos: 41.5,-29.5
- parent: 2
- - uid: 10765
- components:
- - type: Transform
- pos: 18.5,56.5
- parent: 2
- - uid: 10766
- components:
- - type: Transform
- pos: 41.5,-47.5
- parent: 2
- - uid: 10767
- components:
- - type: Transform
- pos: 31.5,1.5
- parent: 2
- - uid: 10768
- components:
- - type: Transform
- pos: -5.5,-14.5
- parent: 2
- - uid: 10769
- components:
- - type: Transform
- pos: -31.5,-73.5
- parent: 2
- - uid: 10770
- components:
- - type: Transform
- pos: 32.5,-0.5
- parent: 2
- - uid: 10771
- components:
- - type: Transform
- pos: 50.5,-47.5
- parent: 2
- - uid: 10772
- components:
- - type: Transform
- pos: 14.5,64.5
- parent: 2
- - uid: 10773
- components:
- - type: Transform
- pos: 0.5,39.5
- parent: 2
- - uid: 10774
- components:
- - type: Transform
- pos: -50.5,-14.5
- parent: 2
- - uid: 10775
- components:
- - type: Transform
- pos: 1.5,39.5
- parent: 2
- - uid: 10776
- components:
- - type: Transform
- pos: 15.5,48.5
- parent: 2
- - uid: 10777
- components:
- - type: Transform
- pos: 15.5,47.5
- parent: 2
- - uid: 10778
- components:
- - type: Transform
- pos: 25.5,-8.5
- parent: 2
- - uid: 10779
- components:
- - type: Transform
- pos: 41.5,-18.5
- parent: 2
- - uid: 10780
- components:
- - type: Transform
- pos: 41.5,-17.5
- parent: 2
- - uid: 10781
- components:
- - type: Transform
- pos: 43.5,-18.5
- parent: 2
- - uid: 10782
- components:
- - type: Transform
- pos: -27.5,21.5
- parent: 2
- - uid: 10783
- components:
- - type: Transform
- pos: -44.5,7.5
- parent: 2
- - uid: 10784
- components:
- - type: Transform
- pos: 26.5,-13.5
- parent: 2
- - uid: 10785
- components:
- - type: Transform
- pos: 46.5,-10.5
- parent: 2
- - uid: 10786
- components:
- - type: Transform
- pos: 8.5,55.5
- parent: 2
- - uid: 10787
- components:
- - type: Transform
- pos: 49.5,-46.5
- parent: 2
- - uid: 10788
- components:
- - type: Transform
- pos: -18.5,11.5
- parent: 2
- - uid: 10789
- components:
- - type: Transform
- pos: -47.5,-2.5
- parent: 2
- - uid: 10790
- components:
- - type: Transform
- pos: 17.5,67.5
- parent: 2
- - uid: 10791
- components:
- - type: Transform
- pos: 46.5,-46.5
- parent: 2
- - uid: 10792
- components:
- - type: Transform
- pos: 45.5,-46.5
- parent: 2
- - uid: 10793
- components:
- - type: Transform
- pos: 41.5,-37.5
- parent: 2
- - uid: 10794
- components:
- - type: Transform
- pos: 41.5,-33.5
- parent: 2
- - uid: 10795
- components:
- - type: Transform
- pos: 31.5,8.5
- parent: 2
- - uid: 10796
- components:
- - type: Transform
- pos: -26.5,-78.5
- parent: 2
- - uid: 10797
- components:
- - type: Transform
- pos: 17.5,17.5
- parent: 2
- - uid: 10798
- components:
- - type: Transform
- pos: -51.5,-4.5
- parent: 2
- - uid: 10799
- components:
- - type: Transform
- pos: 10.5,42.5
- parent: 2
- - uid: 10800
- components:
- - type: Transform
- pos: -4.5,23.5
- parent: 2
- - uid: 10801
- components:
- - type: Transform
- pos: 53.5,-43.5
- parent: 2
- - uid: 10802
- components:
- - type: Transform
- pos: 0.5,23.5
- parent: 2
- - uid: 10803
- components:
- - type: Transform
- pos: 17.5,66.5
- parent: 2
- - uid: 10804
- components:
- - type: Transform
- pos: -18.5,22.5
- parent: 2
- - uid: 10805
- components:
- - type: Transform
- pos: 19.5,18.5
- parent: 2
- - uid: 10806
- components:
- - type: Transform
- pos: -16.5,23.5
- parent: 2
- - uid: 10807
- components:
- - type: Transform
- pos: 10.5,-8.5
- parent: 2
- - uid: 10808
- components:
- - type: Transform
- pos: -32.5,-79.5
- parent: 2
- - uid: 10809
- components:
- - type: Transform
- pos: 22.5,18.5
- parent: 2
- - uid: 10810
- components:
- - type: Transform
- pos: -25.5,-78.5
- parent: 2
- - uid: 10811
- components:
- - type: Transform
- pos: 8.5,23.5
- parent: 2
- - uid: 10812
- components:
- - type: Transform
- pos: -8.5,-59.5
- parent: 2
- - uid: 10813
- components:
- - type: Transform
- pos: 33.5,0.5
- parent: 2
- - uid: 10814
- components:
- - type: Transform
- pos: 47.5,-27.5
- parent: 2
- - uid: 10815
- components:
- - type: Transform
- pos: 41.5,-48.5
- parent: 2
- - uid: 10816
- components:
- - type: Transform
- pos: 41.5,-45.5
- parent: 2
- - uid: 10817
- components:
- - type: Transform
- pos: 9.5,36.5
- parent: 2
- - uid: 10818
- components:
- - type: Transform
- pos: 50.5,-48.5
- parent: 2
- - uid: 10819
- components:
- - type: Transform
- pos: -6.5,-14.5
- parent: 2
- - uid: 10820
- components:
- - type: Transform
- pos: 25.5,-26.5
- parent: 2
- - uid: 10821
- components:
- - type: Transform
- pos: -36.5,-60.5
- parent: 2
- - uid: 10822
- components:
- - type: Transform
- pos: 5.5,-11.5
- parent: 2
- - uid: 10823
- components:
- - type: Transform
- pos: 56.5,-26.5
- parent: 2
- - uid: 10824
- components:
- - type: Transform
- pos: 38.5,-2.5
- parent: 2
- - uid: 10825
- components:
- - type: Transform
- pos: -48.5,1.5
- parent: 2
- - uid: 10826
- components:
- - type: Transform
- pos: 17.5,2.5
- parent: 2
- - uid: 10827
- components:
- - type: Transform
- pos: -27.5,-72.5
- parent: 2
- - uid: 10828
- components:
- - type: Transform
- pos: 17.5,7.5
- parent: 2
- - uid: 10829
- components:
- - type: Transform
- pos: 10.5,89.5
- parent: 2
- - uid: 10830
- components:
- - type: Transform
- pos: -27.5,-61.5
- parent: 2
- - uid: 10831
- components:
- - type: Transform
- pos: -5.5,23.5
- parent: 2
- - uid: 10832
- components:
- - type: Transform
- pos: 1.5,40.5
- parent: 2
- - uid: 10833
- components:
- - type: Transform
- pos: 0.5,37.5
- parent: 2
- - uid: 10834
- components:
- - type: Transform
- pos: -18.5,9.5
- parent: 2
- - uid: 10835
- components:
- - type: Transform
- pos: 11.5,64.5
- parent: 2
- - uid: 10836
- components:
- - type: Transform
- pos: -18.5,23.5
- parent: 2
- - uid: 10837
- components:
- - type: Transform
- pos: -49.5,-3.5
- parent: 2
- - uid: 10838
- components:
- - type: Transform
- pos: 18.5,18.5
- parent: 2
- - uid: 10839
- components:
- - type: Transform
- pos: -21.5,-71.5
- parent: 2
- - uid: 10840
- components:
- - type: Transform
- pos: 41.5,-35.5
- parent: 2
- - uid: 10841
- components:
- - type: Transform
- pos: 52.5,-43.5
- parent: 2
- - uid: 10842
- components:
- - type: Transform
- pos: 48.5,-46.5
- parent: 2
- - uid: 10843
- components:
- - type: Transform
- pos: 41.5,-36.5
- parent: 2
- - uid: 10844
- components:
- - type: Transform
- pos: 51.5,-46.5
- parent: 2
- - uid: 10845
- components:
- - type: Transform
- pos: 12.5,45.5
- parent: 2
- - uid: 10846
- components:
- - type: Transform
- pos: 33.5,1.5
- parent: 2
- - uid: 10847
- components:
- - type: Transform
- pos: 30.5,5.5
- parent: 2
- - uid: 10848
- components:
- - type: Transform
- pos: 17.5,-6.5
- parent: 2
- - uid: 10849
- components:
- - type: Transform
- pos: 30.5,6.5
- parent: 2
- - uid: 10850
- components:
- - type: Transform
- pos: 43.5,-33.5
- parent: 2
- - uid: 10851
- components:
- - type: Transform
- pos: 25.5,-24.5
- parent: 2
- - uid: 10852
- components:
- - type: Transform
- pos: 41.5,-43.5
- parent: 2
- - uid: 10853
- components:
- - type: Transform
- pos: 41.5,-41.5
- parent: 2
- - uid: 10854
- components:
- - type: Transform
- pos: 41.5,-42.5
- parent: 2
- - uid: 10855
- components:
- - type: Transform
- pos: 41.5,-31.5
- parent: 2
- - uid: 10856
- components:
- - type: Transform
- pos: 25.5,12.5
- parent: 2
- - uid: 10857
- components:
- - type: Transform
- pos: 41.5,-30.5
- parent: 2
- - uid: 10858
- components:
- - type: Transform
- pos: 23.5,12.5
- parent: 2
- - uid: 10859
- components:
- - type: Transform
- pos: 56.5,-20.5
- parent: 2
- - uid: 10860
- components:
- - type: Transform
- pos: 17.5,-19.5
- parent: 2
- - uid: 10861
- components:
- - type: Transform
- pos: 17.5,-18.5
- parent: 2
- - uid: 10862
- components:
- - type: Transform
- pos: 17.5,-17.5
- parent: 2
- - uid: 10863
- components:
- - type: Transform
- pos: -18.5,5.5
- parent: 2
- - uid: 10864
- components:
- - type: Transform
- pos: 17.5,-20.5
- parent: 2
- - uid: 10865
- components:
- - type: Transform
- pos: 11.5,50.5
- parent: 2
- - uid: 10866
- components:
- - type: Transform
- pos: 4.5,-13.5
- parent: 2
- - uid: 10867
- components:
- - type: Transform
- pos: -22.5,-74.5
- parent: 2
- - uid: 10868
- components:
- - type: Transform
- pos: 4.5,-14.5
- parent: 2
- - uid: 10869
- components:
- - type: Transform
- pos: 23.5,20.5
- parent: 2
- - uid: 10870
- components:
- - type: Transform
- pos: -35.5,41.5
- parent: 2
- - uid: 10871
- components:
- - type: Transform
- pos: 3.5,-14.5
- parent: 2
- - uid: 10872
- components:
- - type: Transform
- pos: 22.5,20.5
- parent: 2
- - uid: 10873
- components:
- - type: Transform
- pos: 24.5,20.5
- parent: 2
- - uid: 10874
- components:
- - type: Transform
- pos: 46.5,23.5
- parent: 2
- - uid: 10875
- components:
- - type: Transform
- pos: -41.5,-75.5
- parent: 2
- - uid: 10876
- components:
- - type: Transform
- pos: -22.5,-76.5
- parent: 2
- - uid: 10877
- components:
- - type: Transform
- pos: -20.5,27.5
- parent: 2
- - uid: 10878
- components:
- - type: Transform
- pos: 14.5,45.5
- parent: 2
- - uid: 10879
- components:
- - type: Transform
- pos: 13.5,50.5
- parent: 2
- - uid: 10880
- components:
- - type: Transform
- pos: 12.5,50.5
- parent: 2
- - uid: 10881
- components:
- - type: Transform
- pos: -51.5,-10.5
- parent: 2
- - uid: 10882
- components:
- - type: Transform
- pos: -33.5,-5.5
- parent: 2
- - uid: 10883
- components:
- - type: Transform
- pos: -57.5,60.5
- parent: 2
- - uid: 10884
- components:
- - type: Transform
- pos: -36.5,-7.5
- parent: 2
- - uid: 10885
- components:
- - type: Transform
- pos: -25.5,63.5
- parent: 2
- - uid: 10886
- components:
- - type: Transform
- pos: -32.5,-3.5
- parent: 2
- - uid: 10887
- components:
- - type: Transform
- pos: 6.5,83.5
- parent: 2
- - uid: 10888
- components:
- - type: Transform
- pos: 6.5,84.5
- parent: 2
- - uid: 10889
- components:
- - type: Transform
- pos: -35.5,57.5
- parent: 2
- - uid: 10890
- components:
- - type: Transform
- pos: 6.5,82.5
- parent: 2
- - uid: 10891
- components:
- - type: Transform
- pos: -32.5,-4.5
- parent: 2
- - uid: 10892
- components:
- - type: Transform
- pos: -32.5,-5.5
- parent: 2
- - uid: 10893
- components:
- - type: Transform
- pos: 6.5,85.5
- parent: 2
- - uid: 10894
- components:
- - type: Transform
- pos: -35.5,-3.5
- parent: 2
- - uid: 10895
- components:
- - type: Transform
- pos: -34.5,-3.5
- parent: 2
- - uid: 10896
- components:
- - type: Transform
- pos: 6.5,73.5
- parent: 2
- - uid: 10897
- components:
- - type: Transform
- pos: -8.5,-75.5
- parent: 2
- - uid: 10898
- components:
- - type: Transform
- pos: -8.5,-72.5
- parent: 2
- - uid: 10899
- components:
- - type: Transform
- pos: -63.5,-30.5
- parent: 2
- - uid: 10900
- components:
- - type: Transform
- pos: -54.5,35.5
- parent: 2
- - uid: 10901
- components:
- - type: Transform
- pos: -39.5,27.5
- parent: 2
- - uid: 10902
- components:
- - type: Transform
- pos: -41.5,18.5
- parent: 2
- - uid: 10903
- components:
- - type: Transform
- pos: -28.5,-33.5
- parent: 2
- - uid: 10904
- components:
- - type: Transform
- pos: -30.5,-45.5
- parent: 2
- - uid: 10905
- components:
- - type: Transform
- pos: -30.5,17.5
- parent: 2
- - uid: 10906
- components:
- - type: Transform
- pos: -42.5,25.5
- parent: 2
- - uid: 10907
- components:
- - type: Transform
- pos: -42.5,29.5
- parent: 2
- - uid: 10908
- components:
- - type: Transform
- pos: -41.5,12.5
- parent: 2
- - uid: 10909
- components:
- - type: Transform
- pos: -59.5,14.5
- parent: 2
- - uid: 10910
- components:
- - type: Transform
- pos: -69.5,15.5
- parent: 2
- - uid: 10911
- components:
- - type: Transform
- pos: -27.5,-30.5
- parent: 2
- - uid: 10912
- components:
- - type: Transform
- pos: 30.5,-42.5
- parent: 2
- - uid: 10913
- components:
- - type: Transform
- pos: -45.5,-7.5
- parent: 2
- - uid: 10914
- components:
- - type: Transform
- pos: -54.5,34.5
- parent: 2
- - uid: 10915
- components:
- - type: Transform
- pos: -73.5,-25.5
- parent: 2
- - uid: 10916
- components:
- - type: Transform
- pos: 28.5,-48.5
- parent: 2
- - uid: 10917
- components:
- - type: Transform
- pos: -61.5,1.5
- parent: 2
- - uid: 10918
- components:
- - type: Transform
- pos: 28.5,-49.5
- parent: 2
- - uid: 10919
- components:
- - type: Transform
- pos: -28.5,-46.5
- parent: 2
- - uid: 10920
- components:
- - type: Transform
- pos: -33.5,-48.5
- parent: 2
- - uid: 10921
- components:
- - type: Transform
- pos: -36.5,-6.5
- parent: 2
- - uid: 10922
- components:
- - type: Transform
- pos: -73.5,-24.5
- parent: 2
- - uid: 10923
- components:
- - type: Transform
- pos: -42.5,30.5
- parent: 2
- - uid: 10924
- components:
- - type: Transform
- pos: -36.5,-8.5
- parent: 2
- - uid: 10925
- components:
- - type: Transform
- pos: -36.5,-9.5
- parent: 2
- - uid: 10926
- components:
- - type: Transform
- pos: -54.5,36.5
- parent: 2
- - uid: 10927
- components:
- - type: Transform
- pos: -58.5,12.5
- parent: 2
- - uid: 10928
- components:
- - type: Transform
- pos: -41.5,14.5
- parent: 2
- - uid: 10929
- components:
- - type: Transform
- pos: -42.5,28.5
- parent: 2
- - uid: 10930
- components:
- - type: Transform
- pos: -2.5,26.5
- parent: 2
- - uid: 10931
- components:
- - type: Transform
- pos: 9.5,23.5
- parent: 2
- - uid: 10932
- components:
- - type: Transform
- pos: 31.5,-0.5
- parent: 2
- - uid: 10933
- components:
- - type: Transform
- pos: 1.5,46.5
- parent: 2
- - uid: 10934
- components:
- - type: Transform
- pos: -25.5,22.5
- parent: 2
- - uid: 10935
- components:
- - type: Transform
- pos: -113.5,43.5
- parent: 2
- - uid: 10936
- components:
- - type: Transform
- pos: -113.5,40.5
- parent: 2
- - uid: 10937
- components:
- - type: Transform
- pos: 24.5,13.5
- parent: 2
- - uid: 10938
- components:
- - type: Transform
- pos: 15.5,35.5
- parent: 2
- - uid: 10939
- components:
- - type: Transform
- pos: 25.5,-26.5
- parent: 2
- - uid: 10940
- components:
- - type: Transform
- pos: 5.5,66.5
- parent: 2
- - uid: 10941
- components:
- - type: Transform
- pos: 5.5,65.5
- parent: 2
- - uid: 10942
- components:
- - type: Transform
- pos: 46.5,20.5
- parent: 2
- - uid: 10943
- components:
- - type: Transform
- pos: 26.5,36.5
- parent: 2
- - uid: 10944
- components:
- - type: Transform
- pos: 31.5,-2.5
- parent: 2
- - uid: 10945
- components:
- - type: Transform
- pos: 10.5,46.5
- parent: 2
- - uid: 10946
- components:
- - type: Transform
- pos: 31.5,0.5
- parent: 2
- - uid: 10947
- components:
- - type: Transform
- pos: -49.5,-14.5
- parent: 2
- - uid: 10948
- components:
- - type: Transform
- pos: 12.5,67.5
- parent: 2
- - uid: 10949
- components:
- - type: Transform
- pos: 12.5,68.5
- parent: 2
- - uid: 10950
- components:
- - type: Transform
- pos: -1.5,29.5
- parent: 2
- - uid: 10951
- components:
- - type: Transform
- pos: -2.5,29.5
- parent: 2
- - uid: 10952
- components:
- - type: Transform
- pos: 11.5,69.5
- parent: 2
- - uid: 10953
- components:
- - type: Transform
- pos: 14.5,35.5
- parent: 2
- - uid: 10954
- components:
- - type: Transform
- pos: 66.5,25.5
- parent: 2
- - uid: 10955
- components:
- - type: Transform
- pos: 31.5,-14.5
- parent: 2
- - uid: 10956
- components:
- - type: Transform
- pos: 31.5,-5.5
- parent: 2
- - uid: 10957
- components:
- - type: Transform
- pos: 21.5,-10.5
- parent: 2
- - uid: 10958
- components:
- - type: Transform
- pos: 20.5,-10.5
- parent: 2
- - uid: 10959
- components:
- - type: Transform
- pos: -39.5,26.5
- parent: 2
- - uid: 10960
- components:
- - type: Transform
- pos: 31.5,3.5
- parent: 2
- - uid: 10961
- components:
- - type: Transform
- pos: 7.5,58.5
- parent: 2
- - uid: 10962
- components:
- - type: Transform
- pos: -57.5,-2.5
- parent: 2
- - uid: 10963
- components:
- - type: Transform
- pos: -71.5,4.5
- parent: 2
- - uid: 10964
- components:
- - type: Transform
- pos: -76.5,15.5
- parent: 2
- - uid: 10965
- components:
- - type: Transform
- pos: -47.5,9.5
- parent: 2
- - uid: 10966
- components:
- - type: Transform
- pos: 7.5,59.5
- parent: 2
- - uid: 10967
- components:
- - type: Transform
- pos: -54.5,39.5
- parent: 2
- - uid: 10968
- components:
- - type: Transform
- pos: -54.5,37.5
- parent: 2
- - uid: 10969
- components:
- - type: Transform
- pos: -42.5,36.5
- parent: 2
- - uid: 10970
- components:
- - type: Transform
- pos: -38.5,36.5
- parent: 2
- - uid: 10971
- components:
- - type: Transform
- pos: 10.5,41.5
- parent: 2
- - uid: 10972
- components:
- - type: Transform
- pos: -2.5,28.5
- parent: 2
- - uid: 10973
- components:
- - type: Transform
- pos: -18.5,-2.5
- parent: 2
- - uid: 10974
- components:
- - type: Transform
- pos: 10.5,56.5
- parent: 2
- - uid: 10975
- components:
- - type: Transform
- pos: 29.5,-27.5
- parent: 2
- - uid: 10976
- components:
- - type: Transform
- pos: -28.5,-38.5
- parent: 2
- - uid: 10977
- components:
- - type: Transform
- pos: 4.5,-43.5
- parent: 2
- - uid: 10978
- components:
- - type: Transform
- pos: -64.5,14.5
- parent: 2
- - uid: 10979
- components:
- - type: Transform
- pos: -14.5,-55.5
- parent: 2
- - uid: 10980
- components:
- - type: Transform
- pos: 4.5,-40.5
- parent: 2
- - uid: 10981
- components:
- - type: Transform
- pos: 5.5,-33.5
- parent: 2
- - uid: 10982
- components:
- - type: Transform
- pos: -29.5,-57.5
- parent: 2
- - uid: 10983
- components:
- - type: Transform
- pos: 28.5,-36.5
- parent: 2
- - uid: 10984
- components:
- - type: Transform
- pos: -33.5,-54.5
- parent: 2
- - uid: 10985
- components:
- - type: Transform
- pos: 28.5,-37.5
- parent: 2
- - uid: 10986
- components:
- - type: Transform
- pos: 4.5,-39.5
- parent: 2
- - uid: 10987
- components:
- - type: Transform
- pos: 5.5,-36.5
- parent: 2
- - uid: 10988
- components:
- - type: Transform
- pos: -20.5,-39.5
- parent: 2
- - uid: 10989
- components:
- - type: Transform
- pos: 11.5,-33.5
- parent: 2
- - uid: 10990
- components:
- - type: Transform
- pos: 16.5,-41.5
- parent: 2
- - uid: 10991
- components:
- - type: Transform
- pos: -9.5,-32.5
- parent: 2
- - uid: 10992
- components:
- - type: Transform
- pos: 10.5,62.5
- parent: 2
- - uid: 10993
- components:
- - type: Transform
- pos: 8.5,-8.5
- parent: 2
- - uid: 10994
- components:
- - type: Transform
- pos: -27.5,-70.5
- parent: 2
- - uid: 10995
- components:
- - type: Transform
- pos: -58.5,57.5
- parent: 2
- - uid: 10996
- components:
- - type: Transform
- pos: 49.5,-20.5
- parent: 2
- - uid: 10997
- components:
- - type: Transform
- pos: -55.5,-10.5
- parent: 2
- - uid: 10998
- components:
- - type: Transform
- pos: 17.5,-5.5
- parent: 2
- - uid: 10999
- components:
- - type: Transform
- pos: 47.5,-10.5
- parent: 2
- - uid: 11000
- components:
- - type: Transform
- pos: 22.5,10.5
- parent: 2
- - uid: 11001
- components:
- - type: Transform
- pos: -34.5,37.5
- parent: 2
- - uid: 11002
- components:
- - type: Transform
- pos: -30.5,21.5
- parent: 2
- - uid: 11003
- components:
- - type: Transform
- pos: -77.5,13.5
- parent: 2
- - uid: 11004
- components:
- - type: Transform
- pos: -61.5,-6.5
- parent: 2
- - uid: 11005
- components:
- - type: Transform
- pos: 14.5,-1.5
- parent: 2
- - uid: 11006
- components:
- - type: Transform
- pos: -9.5,7.5
- parent: 2
- - uid: 11007
- components:
- - type: Transform
- pos: -23.5,27.5
- parent: 2
- - uid: 11008
- components:
- - type: Transform
- pos: 6.5,86.5
- parent: 2
- - uid: 11009
- components:
- - type: Transform
- pos: 43.5,-35.5
- parent: 2
- - uid: 11010
- components:
- - type: Transform
- pos: 17.5,5.5
- parent: 2
- - uid: 11011
- components:
- - type: Transform
- pos: -74.5,-22.5
- parent: 2
- - uid: 11012
- components:
- - type: Transform
- pos: -35.5,38.5
- parent: 2
- - uid: 11013
- components:
- - type: Transform
- pos: -69.5,6.5
- parent: 2
- - uid: 11014
- components:
- - type: Transform
- pos: -68.5,15.5
- parent: 2
- - uid: 11015
- components:
- - type: Transform
- pos: -54.5,29.5
- parent: 2
- - uid: 11016
- components:
- - type: Transform
- pos: -58.5,14.5
- parent: 2
- - uid: 11017
- components:
- - type: Transform
- pos: -27.5,-69.5
- parent: 2
- - uid: 11018
- components:
- - type: Transform
- pos: 9.5,-8.5
- parent: 2
- - uid: 11019
- components:
- - type: Transform
- pos: -48.5,3.5
- parent: 2
- - uid: 11020
- components:
- - type: Transform
- pos: 12.5,69.5
- parent: 2
- - uid: 11021
- components:
- - type: Transform
- pos: -2.5,27.5
- parent: 2
- - uid: 11022
- components:
- - type: Transform
- pos: 37.5,-15.5
- parent: 2
- - uid: 11023
- components:
- - type: Transform
- pos: -27.5,22.5
- parent: 2
- - uid: 11024
- components:
- - type: Transform
- pos: 44.5,-1.5
- parent: 2
- - uid: 11025
- components:
- - type: Transform
- pos: 12.5,64.5
- parent: 2
- - uid: 11026
- components:
- - type: Transform
- pos: -18.5,10.5
- parent: 2
- - uid: 11027
- components:
- - type: Transform
- pos: 0.5,38.5
- parent: 2
- - uid: 11028
- components:
- - type: Transform
- pos: -17.5,23.5
- parent: 2
- - uid: 11029
- components:
- - type: Transform
- pos: -44.5,-8.5
- parent: 2
- - uid: 11030
- components:
- - type: Transform
- pos: -49.5,0.5
- parent: 2
- - uid: 11031
- components:
- - type: Transform
- pos: 17.5,18.5
- parent: 2
- - uid: 11032
- components:
- - type: Transform
- pos: -39.5,28.5
- parent: 2
- - uid: 11033
- components:
- - type: Transform
- pos: -0.5,27.5
- parent: 2
- - uid: 11034
- components:
- - type: Transform
- pos: -11.5,71.5
- parent: 2
- - uid: 11035
- components:
- - type: Transform
- pos: 11.5,3.5
- parent: 2
- - uid: 11036
- components:
- - type: Transform
- pos: 12.5,3.5
- parent: 2
- - uid: 11037
- components:
- - type: Transform
- pos: 9.5,3.5
- parent: 2
- - uid: 11038
- components:
- - type: Transform
- pos: 10.5,9.5
- parent: 2
- - uid: 11039
- components:
- - type: Transform
- pos: 10.5,10.5
- parent: 2
- - uid: 11040
- components:
- - type: Transform
- pos: 30.5,-26.5
- parent: 2
- - uid: 11041
- components:
- - type: Transform
- pos: 27.5,-29.5
- parent: 2
- - uid: 11042
- components:
- - type: Transform
- pos: 12.5,-33.5
- parent: 2
- - uid: 11043
- components:
- - type: Transform
- pos: 12.5,-38.5
- parent: 2
- - uid: 11044
- components:
- - type: Transform
- pos: -42.5,35.5
- parent: 2
- - uid: 11045
- components:
- - type: Transform
- pos: 31.5,6.5
- parent: 2
- - uid: 11046
- components:
- - type: Transform
- pos: 13.5,44.5
- parent: 2
- - uid: 11047
- components:
- - type: Transform
- pos: -19.5,-13.5
- parent: 2
- - uid: 11048
- components:
- - type: Transform
- pos: -18.5,19.5
- parent: 2
- - uid: 11049
- components:
- - type: Transform
- pos: -18.5,2.5
- parent: 2
- - uid: 11050
- components:
- - type: Transform
- pos: -18.5,20.5
- parent: 2
- - uid: 11051
- components:
- - type: Transform
- pos: 23.5,-10.5
- parent: 2
- - uid: 11052
- components:
- - type: Transform
- pos: 43.5,-46.5
- parent: 2
- - uid: 11053
- components:
- - type: Transform
- pos: 45.5,-27.5
- parent: 2
- - uid: 11054
- components:
- - type: Transform
- pos: 32.5,1.5
- parent: 2
- - uid: 11055
- components:
- - type: Transform
- pos: 46.5,-45.5
- parent: 2
- - uid: 11056
- components:
- - type: Transform
- pos: 21.5,11.5
- parent: 2
- - uid: 11057
- components:
- - type: Transform
- pos: -9.5,-59.5
- parent: 2
- - uid: 11058
- components:
- - type: Transform
- pos: -42.5,27.5
- parent: 2
- - uid: 11059
- components:
- - type: Transform
- pos: -44.5,6.5
- parent: 2
- - uid: 11060
- components:
- - type: Transform
- pos: -39.5,-1.5
- parent: 2
- - uid: 11061
- components:
- - type: Transform
- pos: 7.5,-33.5
- parent: 2
- - uid: 11062
- components:
- - type: Transform
- pos: -66.5,-29.5
- parent: 2
- - uid: 11063
- components:
- - type: Transform
- pos: 5.5,-33.5
- parent: 2
- - uid: 11064
- components:
- - type: Transform
- pos: 5.5,64.5
- parent: 2
- - uid: 11065
- components:
- - type: Transform
- pos: 15.5,-8.5
- parent: 2
- - uid: 11066
- components:
- - type: Transform
- pos: -31.5,-75.5
- parent: 2
- - uid: 11067
- components:
- - type: Transform
- pos: -2.5,35.5
- parent: 2
- - uid: 11068
- components:
- - type: Transform
- pos: -41.5,47.5
- parent: 2
- - uid: 11069
- components:
- - type: Transform
- pos: -56.5,61.5
- parent: 2
- - uid: 11070
- components:
- - type: Transform
- pos: -41.5,24.5
- parent: 2
- - uid: 11071
- components:
- - type: Transform
- pos: 42.5,-44.5
- parent: 2
- - uid: 11072
- components:
- - type: Transform
- pos: 53.5,-20.5
- parent: 2
- - uid: 11073
- components:
- - type: Transform
- pos: -27.5,-71.5
- parent: 2
- - uid: 11074
- components:
- - type: Transform
- pos: 7.5,-8.5
- parent: 2
- - uid: 11075
- components:
- - type: Transform
- pos: 10.5,60.5
- parent: 2
- - uid: 11076
- components:
- - type: Transform
- pos: 43.5,-34.5
- parent: 2
- - uid: 11077
- components:
- - type: Transform
- pos: 35.5,-15.5
- parent: 2
- - uid: 11078
- components:
- - type: Transform
- pos: -18.5,12.5
- parent: 2
- - uid: 11079
- components:
- - type: Transform
- pos: -41.5,-63.5
- parent: 2
- - uid: 11080
- components:
- - type: Transform
- pos: 0.5,-38.5
- parent: 2
- - uid: 11081
- components:
- - type: Transform
- pos: 29.5,56.5
- parent: 2
- - uid: 11082
- components:
- - type: Transform
- pos: -72.5,10.5
- parent: 2
- - uid: 11083
- components:
- - type: Transform
- pos: -5.5,-8.5
- parent: 2
- - uid: 11084
- components:
- - type: Transform
- pos: -23.5,-65.5
- parent: 2
- - uid: 11085
- components:
- - type: Transform
- pos: -36.5,-58.5
- parent: 2
- - uid: 11086
- components:
- - type: Transform
- pos: -13.5,-77.5
- parent: 2
- - uid: 11087
- components:
- - type: Transform
- pos: -1.5,-13.5
- parent: 2
- - uid: 11088
- components:
- - type: Transform
- pos: -2.5,-13.5
- parent: 2
- - uid: 11089
- components:
- - type: Transform
- pos: 7.5,-11.5
- parent: 2
- - uid: 11090
- components:
- - type: Transform
- pos: -39.5,-2.5
- parent: 2
- - uid: 11091
- components:
- - type: Transform
- pos: -30.5,37.5
- parent: 2
- - uid: 11092
- components:
- - type: Transform
- pos: -62.5,-30.5
- parent: 2
- - uid: 11093
- components:
- - type: Transform
- pos: -50.5,14.5
- parent: 2
- - uid: 11094
- components:
- - type: Transform
- pos: -55.5,24.5
- parent: 2
- - uid: 11095
- components:
- - type: Transform
- pos: -28.5,25.5
- parent: 2
- - uid: 11096
- components:
- - type: Transform
- pos: -11.5,-11.5
- parent: 2
- - uid: 11097
- components:
- - type: Transform
- pos: -15.5,-79.5
- parent: 2
- - uid: 11098
- components:
- - type: Transform
- pos: -51.5,-8.5
- parent: 2
- - uid: 11099
- components:
- - type: Transform
- pos: -63.5,-22.5
- parent: 2
- - uid: 11100
- components:
- - type: Transform
- pos: -20.5,-13.5
- parent: 2
- - uid: 11101
- components:
- - type: Transform
- pos: -39.5,42.5
- parent: 2
- - uid: 11102
- components:
- - type: Transform
- pos: -73.5,-26.5
- parent: 2
- - uid: 11103
- components:
- - type: Transform
- pos: -36.5,-11.5
- parent: 2
- - uid: 11104
- components:
- - type: Transform
- pos: 2.5,-38.5
- parent: 2
- - uid: 11105
- components:
- - type: Transform
- pos: -38.5,-63.5
- parent: 2
- - uid: 11106
- components:
- - type: Transform
- pos: -4.5,-14.5
- parent: 2
- - uid: 11107
- components:
- - type: Transform
- pos: 17.5,-14.5
- parent: 2
- - uid: 11108
- components:
- - type: Transform
- pos: 17.5,-8.5
- parent: 2
- - uid: 11109
- components:
- - type: Transform
- pos: 8.5,37.5
- parent: 2
- - uid: 11110
- components:
- - type: Transform
- pos: 44.5,-19.5
- parent: 2
- - uid: 11111
- components:
- - type: Transform
- pos: 6.5,67.5
- parent: 2
- - uid: 11112
- components:
- - type: Transform
- pos: -60.5,14.5
- parent: 2
- - uid: 11113
- components:
- - type: Transform
- pos: -58.5,-9.5
- parent: 2
- - uid: 11114
- components:
- - type: Transform
- pos: 14.5,-33.5
- parent: 2
- - uid: 11115
- components:
- - type: Transform
- pos: 28.5,-29.5
- parent: 2
- - uid: 11116
- components:
- - type: Transform
- pos: 17.5,-48.5
- parent: 2
- - uid: 11117
- components:
- - type: Transform
- pos: -50.5,-3.5
- parent: 2
- - uid: 11118
- components:
- - type: Transform
- pos: -51.5,-11.5
- parent: 2
- - uid: 11119
- components:
- - type: Transform
- pos: -36.5,-2.5
- parent: 2
- - uid: 11120
- components:
- - type: Transform
- pos: 29.5,-23.5
- parent: 2
- - uid: 11121
- components:
- - type: Transform
- pos: -62.5,-22.5
- parent: 2
- - uid: 11122
- components:
- - type: Transform
- pos: 17.5,0.5
- parent: 2
- - uid: 11123
- components:
- - type: Transform
- pos: -22.5,-72.5
- parent: 2
- - uid: 11124
- components:
- - type: Transform
- pos: 20.5,18.5
- parent: 2
- - uid: 11125
- components:
- - type: Transform
- pos: -18.5,3.5
- parent: 2
- - uid: 11126
- components:
- - type: Transform
- pos: -49.5,-1.5
- parent: 2
- - uid: 11127
- components:
- - type: Transform
- pos: -65.5,-32.5
- parent: 2
- - uid: 11128
- components:
- - type: Transform
- pos: -22.5,-71.5
- parent: 2
- - uid: 11129
- components:
- - type: Transform
- pos: 47.5,-46.5
- parent: 2
- - uid: 11130
- components:
- - type: Transform
- pos: 41.5,-38.5
- parent: 2
- - uid: 11131
- components:
- - type: Transform
- pos: 41.5,-34.5
- parent: 2
- - uid: 11132
- components:
- - type: Transform
- pos: -18.5,21.5
- parent: 2
- - uid: 11133
- components:
- - type: Transform
- pos: 16.5,66.5
- parent: 2
- - uid: 11134
- components:
- - type: Transform
- pos: -3.5,23.5
- parent: 2
- - uid: 11135
- components:
- - type: Transform
- pos: 51.5,-43.5
- parent: 2
- - uid: 11136
- components:
- - type: Transform
- pos: 26.5,11.5
- parent: 2
- - uid: 11137
- components:
- - type: Transform
- pos: -26.5,21.5
- parent: 2
- - uid: 11138
- components:
- - type: Transform
- pos: -28.5,-49.5
- parent: 2
- - uid: 11139
- components:
- - type: Transform
- pos: 3.5,23.5
- parent: 2
- - uid: 11140
- components:
- - type: Transform
- pos: 26.5,37.5
- parent: 2
- - uid: 11141
- components:
- - type: Transform
- pos: 10.5,57.5
- parent: 2
- - uid: 11142
- components:
- - type: Transform
- pos: 46.5,-20.5
- parent: 2
- - uid: 11143
- components:
- - type: Transform
- pos: 17.5,63.5
- parent: 2
- - uid: 11144
- components:
- - type: Transform
- pos: -18.5,16.5
- parent: 2
- - uid: 11145
- components:
- - type: Transform
- pos: -8.5,-80.5
- parent: 2
- - uid: 11146
- components:
- - type: Transform
- pos: -41.5,56.5
- parent: 2
- - uid: 11147
- components:
- - type: Transform
- pos: 28.5,11.5
- parent: 2
- - uid: 11148
- components:
- - type: Transform
- pos: 51.5,-27.5
- parent: 2
- - uid: 11149
- components:
- - type: Transform
- pos: 15.5,49.5
- parent: 2
- - uid: 11150
- components:
- - type: Transform
- pos: -18.5,-10.5
- parent: 2
- - uid: 11151
- components:
- - type: Transform
- pos: -7.5,-63.5
- parent: 2
- - uid: 11152
- components:
- - type: Transform
- pos: 30.5,3.5
- parent: 2
- - uid: 11153
- components:
- - type: Transform
- pos: -23.5,-64.5
- parent: 2
- - uid: 11154
- components:
- - type: Transform
- pos: -5.5,-9.5
- parent: 2
- - uid: 11155
- components:
- - type: Transform
- pos: 0.5,48.5
- parent: 2
- - uid: 11156
- components:
- - type: Transform
- pos: -41.5,39.5
- parent: 2
- - uid: 11157
- components:
- - type: Transform
- pos: 48.5,-10.5
- parent: 2
- - uid: 11158
- components:
- - type: Transform
- pos: 41.5,-15.5
- parent: 2
- - uid: 11159
- components:
- - type: Transform
- pos: 41.5,-16.5
- parent: 2
- - uid: 11160
- components:
- - type: Transform
- pos: 48.5,-51.5
- parent: 2
- - uid: 11161
- components:
- - type: Transform
- pos: 13.5,37.5
- parent: 2
- - uid: 11162
- components:
- - type: Transform
- pos: 7.5,23.5
- parent: 2
- - uid: 11163
- components:
- - type: Transform
- pos: 0.5,31.5
- parent: 2
- - uid: 11164
-=======
- - uid: 9561
- components:
- - type: Transform
- pos: -5.5,49.5
- parent: 2
- - uid: 9562
- components:
- - type: Transform
- pos: -6.5,49.5
- parent: 2
- - uid: 9563
- components:
- - type: Transform
- pos: -7.5,49.5
- parent: 2
- - uid: 9564
- components:
- - type: Transform
- pos: 0.49999997,40.5
- parent: 2
- - uid: 9565
- components:
- - type: Transform
- pos: -0.5,40.5
- parent: 2
- - uid: 9566
- components:
- - type: Transform
- pos: 1.5,38.5
- parent: 2
- - uid: 9567
- components:
- - type: Transform
- pos: -1.5,40.5
- parent: 2
- - uid: 9568
- components:
- - type: Transform
- pos: -2.5,40.5
- parent: 2
- - uid: 9569
- components:
- - type: Transform
- pos: -2.5,40.5
- parent: 2
- - uid: 9570
- components:
- - type: Transform
- pos: -2.5,39.5
- parent: 2
- - uid: 9571
- components:
- - type: Transform
- pos: -2.5,38.5
- parent: 2
- - uid: 9572
- components:
- - type: Transform
- pos: -2.5,37.5
- parent: 2
- - uid: 9573
- components:
- - type: Transform
- pos: -3.5,37.5
- parent: 2
- - uid: 9574
- components:
- - type: Transform
- pos: -4.5,37.5
- parent: 2
- - uid: 9575
- components:
- - type: Transform
- pos: -5.5,37.5
- parent: 2
- - uid: 9576
- components:
- - type: Transform
- pos: -6.5,38.5
- parent: 2
- - uid: 9577
- components:
- - type: Transform
- pos: -6.5,39.5
- parent: 2
- - uid: 9578
- components:
- - type: Transform
- pos: -6.5,40.5
- parent: 2
- - uid: 9579
- components:
- - type: Transform
- pos: -6.5,41.5
- parent: 2
- - uid: 9580
- components:
- - type: Transform
- pos: -6.5,42.5
- parent: 2
- - uid: 9581
- components:
- - type: Transform
- pos: -6.5,43.5
- parent: 2
- - uid: 9582
- components:
- - type: Transform
- pos: -6.5,44.5
- parent: 2
- - uid: 9583
- components:
- - type: Transform
- pos: -6.5,45.5
- parent: 2
- - uid: 9584
- components:
- - type: Transform
- pos: -6.5,46.5
- parent: 2
- - uid: 9585
- components:
- - type: Transform
- pos: -6.5,47.5
- parent: 2
- - uid: 9586
- components:
- - type: Transform
- pos: -6.5,37.5
- parent: 2
- - uid: 9587
- components:
- - type: Transform
- pos: -6.5,37.5
- parent: 2
- - uid: 9588
- components:
- - type: Transform
- pos: -2.5,30.5
- parent: 2
- - uid: 9589
- components:
- - type: Transform
- pos: -3.5,30.5
- parent: 2
- - uid: 9590
- components:
- - type: Transform
- pos: -4.5,30.5
- parent: 2
- - uid: 9591
- components:
- - type: Transform
- pos: -5.5,30.5
- parent: 2
- - uid: 9592
- components:
- - type: Transform
- pos: -5.5,31.5
- parent: 2
- - uid: 9593
- components:
- - type: Transform
- pos: -37.5,61.5
- parent: 2
- - uid: 9594
- components:
- - type: Transform
- pos: -37.5,40.5
- parent: 2
- - uid: 9595
- components:
- - type: Transform
- pos: -37.5,39.5
- parent: 2
- - uid: 9596
- components:
- - type: Transform
- pos: -36.5,39.5
- parent: 2
- - uid: 9597
- components:
- - type: Transform
- pos: -35.5,39.5
- parent: 2
- - uid: 9598
- components:
- - type: Transform
- pos: -35.5,40.5
- parent: 2
- - uid: 9599
- components:
- - type: Transform
- pos: -35.5,41.5
- parent: 2
- - uid: 9600
- components:
- - type: Transform
- pos: -35.5,42.5
- parent: 2
- - uid: 9601
- components:
- - type: Transform
- pos: -13.5,6.5
- parent: 2
- - uid: 9602
- components:
- - type: Transform
- pos: 12.5,-4.5
- parent: 2
- - uid: 9603
- components:
- - type: Transform
- pos: 11.5,-1.5
- parent: 2
- - uid: 9604
- components:
- - type: Transform
- pos: 10.5,-1.5
- parent: 2
- - uid: 9605
- components:
- - type: Transform
- pos: -37.5,59.5
- parent: 2
- - uid: 9606
- components:
- - type: Transform
- pos: -40.5,57.5
- parent: 2
- - uid: 9607
- components:
- - type: Transform
- pos: 9.5,-3.5
- parent: 2
- - uid: 9608
- components:
- - type: Transform
- pos: 9.5,-2.5
- parent: 2
- - uid: 9609
- components:
- - type: Transform
- pos: 10.5,0.5
- parent: 2
- - uid: 9610
- components:
- - type: Transform
- pos: 10.5,-0.5
- parent: 2
- - uid: 9611
- components:
- - type: Transform
- pos: 10.5,1.5
- parent: 2
- - uid: 9612
- components:
- - type: Transform
- pos: 11.5,1.5
- parent: 2
- - uid: 9613
- components:
- - type: Transform
- pos: 12.5,1.5
- parent: 2
- - uid: 9614
- components:
- - type: Transform
- pos: 13.5,1.5
- parent: 2
- - uid: 9615
- components:
- - type: Transform
- pos: 14.5,1.5
- parent: 2
- - uid: 9616
- components:
- - type: Transform
- pos: 14.5,2.5
- parent: 2
- - uid: 9617
- components:
- - type: Transform
- pos: 14.5,3.5
- parent: 2
- - uid: 9618
- components:
- - type: Transform
- pos: 9.5,1.5
- parent: 2
- - uid: 9619
- components:
- - type: Transform
- pos: 8.5,1.5
- parent: 2
- - uid: 9620
- components:
- - type: Transform
- pos: 8.5,2.5
- parent: 2
- - uid: 9621
- components:
- - type: Transform
- pos: 8.5,3.5
- parent: 2
- - uid: 9622
- components:
- - type: Transform
- pos: 8.5,4.5
- parent: 2
- - uid: 9623
- components:
- - type: Transform
- pos: 8.5,5.5
- parent: 2
- - uid: 9624
- components:
- - type: Transform
- pos: 9.5,5.5
- parent: 2
- - uid: 9625
- components:
- - type: Transform
- pos: 10.5,5.5
- parent: 2
- - uid: 9626
- components:
- - type: Transform
- pos: 10.5,6.5
- parent: 2
- - uid: 9627
- components:
- - type: Transform
- pos: 10.5,7.5
- parent: 2
- - uid: 9628
- components:
- - type: Transform
- pos: 10.5,8.5
- parent: 2
- - uid: 9629
- components:
- - type: Transform
- pos: 10.5,9.5
- parent: 2
- - uid: 9630
- components:
- - type: Transform
- pos: 10.5,10.5
- parent: 2
- - uid: 9631
- components:
- - type: Transform
- pos: 10.5,11.5
- parent: 2
- - uid: 9632
- components:
- - type: Transform
- pos: 10.5,12.5
- parent: 2
- - uid: 9633
- components:
- - type: Transform
- pos: 9.5,11.5
- parent: 2
- - uid: 9634
- components:
- - type: Transform
- pos: 8.5,11.5
- parent: 2
- - uid: 9635
- components:
- - type: Transform
- pos: 8.5,12.5
- parent: 2
- - uid: 9636
- components:
- - type: Transform
- pos: 8.5,13.5
- parent: 2
- - uid: 9637
- components:
- - type: Transform
- pos: 8.5,14.5
- parent: 2
- - uid: 9638
- components:
- - type: Transform
- pos: 9.5,14.5
- parent: 2
- - uid: 9639
- components:
- - type: Transform
- pos: 10.5,14.5
- parent: 2
- - uid: 9640
- components:
- - type: Transform
- pos: 11.5,14.5
- parent: 2
- - uid: 9641
- components:
- - type: Transform
- pos: 11.5,15.5
- parent: 2
- - uid: 9642
- components:
- - type: Transform
- pos: 11.5,16.5
- parent: 2
- - uid: 9643
- components:
- - type: Transform
- pos: 11.5,17.5
- parent: 2
- - uid: 9644
- components:
- - type: Transform
- pos: -4.5,16.5
- parent: 2
- - uid: 9645
- components:
- - type: Transform
- pos: -3.5,16.5
- parent: 2
- - uid: 9646
- components:
- - type: Transform
- pos: -2.5,16.5
- parent: 2
- - uid: 9647
- components:
- - type: Transform
- pos: -1.5,16.5
- parent: 2
- - uid: 9648
- components:
- - type: Transform
- pos: -0.5,16.5
- parent: 2
- - uid: 9649
- components:
- - type: Transform
- pos: 0.49999997,16.5
- parent: 2
- - uid: 9650
- components:
- - type: Transform
- pos: 1.5,16.5
- parent: 2
- - uid: 9651
- components:
- - type: Transform
- pos: 2.5,16.5
- parent: 2
- - uid: 9652
- components:
- - type: Transform
- pos: 3.5,16.5
- parent: 2
- - uid: 9653
- components:
- - type: Transform
- pos: 3.5,15.5
- parent: 2
- - uid: 9654
- components:
- - type: Transform
- pos: 3.5,14.5
- parent: 2
- - uid: 9655
- components:
- - type: Transform
- pos: 4.5,14.5
- parent: 2
- - uid: 9656
- components:
- - type: Transform
- pos: 5.5,14.5
- parent: 2
- - uid: 9657
- components:
- - type: Transform
- pos: 6.5,14.5
- parent: 2
- - uid: 9658
- components:
- - type: Transform
- pos: 7.5,14.5
- parent: 2
- - uid: 9659
- components:
- - type: Transform
- pos: -4.5,15.5
- parent: 2
- - uid: 9660
- components:
- - type: Transform
- pos: -4.5,14.5
- parent: 2
- - uid: 9661
- components:
- - type: Transform
- pos: -5.5,14.5
- parent: 2
- - uid: 9662
- components:
- - type: Transform
- pos: -6.5,14.5
- parent: 2
- - uid: 9663
- components:
- - type: Transform
- pos: -7.5,14.5
- parent: 2
- - uid: 9664
- components:
- - type: Transform
- pos: -8.5,14.5
- parent: 2
- - uid: 9665
- components:
- - type: Transform
- pos: -9.5,14.5
- parent: 2
- - uid: 9666
- components:
- - type: Transform
- pos: -9.5,13.5
- parent: 2
- - uid: 9667
- components:
- - type: Transform
- pos: -9.5,12.5
- parent: 2
- - uid: 9668
- components:
- - type: Transform
- pos: -9.5,11.5
- parent: 2
- - uid: 9669
- components:
- - type: Transform
- pos: -10.5,11.5
- parent: 2
- - uid: 9670
- components:
- - type: Transform
- pos: -11.5,11.5
- parent: 2
- - uid: 9671
- components:
- - type: Transform
- pos: -11.5,12.5
- parent: 2
- - uid: 9672
- components:
- - type: Transform
- pos: -10.5,9.5
- parent: 2
- - uid: 9673
- components:
- - type: Transform
- pos: -10.5,8.5
- parent: 2
- - uid: 9674
- components:
- - type: Transform
- pos: -10.5,7.5
- parent: 2
- - uid: 9675
- components:
- - type: Transform
- pos: -10.5,8.5
- parent: 2
- - uid: 9676
- components:
- - type: Transform
- pos: -10.5,9.5
- parent: 2
- - uid: 9677
- components:
- - type: Transform
- pos: -10.5,9.5
- parent: 2
- - uid: 9678
- components:
- - type: Transform
- pos: -10.5,6.5
- parent: 2
- - uid: 9679
- components:
- - type: Transform
- pos: -10.5,5.5
- parent: 2
- - uid: 9680
- components:
- - type: Transform
- pos: -13.5,5.5
- parent: 2
- - uid: 9681
- components:
- - type: Transform
- pos: -12.5,5.5
- parent: 2
- - uid: 9682
- components:
- - type: Transform
- pos: -0.5,9.5
- parent: 2
- - uid: 9683
- components:
- - type: Transform
- pos: -0.5,8.5
- parent: 2
- - uid: 9684
- components:
- - type: Transform
- pos: -0.5,7.5
- parent: 2
- - uid: 9685
- components:
- - type: Transform
- pos: -0.5,6.5
- parent: 2
- - uid: 9686
- components:
- - type: Transform
- pos: -0.5,5.5
- parent: 2
- - uid: 9687
- components:
- - type: Transform
- pos: -0.5,4.5
- parent: 2
- - uid: 9688
- components:
- - type: Transform
- pos: -0.5,3.5
- parent: 2
- - uid: 9689
- components:
- - type: Transform
- pos: -0.5,2.5
- parent: 2
- - uid: 9690
- components:
- - type: Transform
- pos: -0.5,1.5
- parent: 2
- - uid: 9691
- components:
- - type: Transform
- pos: -0.5,0.5
- parent: 2
- - uid: 9692
- components:
- - type: Transform
- pos: -0.5,-0.5
- parent: 2
- - uid: 9693
- components:
- - type: Transform
- pos: -0.5,-1.5
- parent: 2
- - uid: 9694
- components:
- - type: Transform
- pos: -0.5,-2.5
- parent: 2
- - uid: 9695
- components:
- - type: Transform
- pos: -0.5,-3.5
- parent: 2
- - uid: 9696
- components:
- - type: Transform
- pos: -0.5,-4.5
- parent: 2
- - uid: 9697
- components:
- - type: Transform
- pos: -0.5,-5.5
- parent: 2
- - uid: 9698
- components:
- - type: Transform
- pos: -0.5,-6.5
- parent: 2
- - uid: 9699
- components:
- - type: Transform
- pos: -0.5,-7.5
- parent: 2
- - uid: 9700
- components:
- - type: Transform
- pos: 8.5,-8.5
- parent: 2
- - uid: 9701
- components:
- - type: Transform
- pos: 8.5,-7.5
- parent: 2
- - uid: 9702
- components:
- - type: Transform
- pos: 8.5,-9.5
- parent: 2
- - uid: 9703
- components:
- - type: Transform
- pos: 8.5,-10.5
- parent: 2
- - uid: 9704
- components:
- - type: Transform
- pos: 8.5,-11.5
- parent: 2
- - uid: 9705
- components:
- - type: Transform
- pos: 10.5,-10.5
- parent: 2
- - uid: 9706
- components:
- - type: Transform
- pos: -10.5,3.5
- parent: 2
- - uid: 9707
- components:
- - type: Transform
- pos: -10.5,4.5
- parent: 2
- - uid: 9708
- components:
- - type: Transform
- pos: -10.5,2.5
- parent: 2
- - uid: 9709
- components:
- - type: Transform
- pos: -10.5,1.5
- parent: 2
- - uid: 9710
- components:
- - type: Transform
- pos: -10.5,0.5
- parent: 2
- - uid: 9711
- components:
- - type: Transform
- pos: -10.5,-0.5
- parent: 2
- - uid: 9712
- components:
- - type: Transform
- pos: -9.5,-0.5
- parent: 2
- - uid: 9713
- components:
- - type: Transform
- pos: -9.5,-1.5
- parent: 2
- - uid: 9714
- components:
- - type: Transform
- pos: -9.5,-2.5
- parent: 2
- - uid: 9715
- components:
- - type: Transform
- pos: -9.5,-3.5
- parent: 2
- - uid: 9716
- components:
- - type: Transform
- pos: -9.5,-4.5
- parent: 2
- - uid: 9717
- components:
- - type: Transform
- pos: -9.5,-5.5
- parent: 2
- - uid: 9718
- components:
- - type: Transform
- pos: -9.5,-6.5
- parent: 2
- - uid: 9719
- components:
- - type: Transform
- pos: -9.5,-7.5
- parent: 2
- - uid: 9720
- components:
- - type: Transform
- pos: -9.5,-8.5
- parent: 2
- - uid: 9721
- components:
- - type: Transform
- pos: -9.5,-9.5
- parent: 2
- - uid: 9722
- components:
- - type: Transform
- pos: -10.5,-11.5
- parent: 2
- - uid: 9723
- components:
- - type: Transform
- pos: -9.5,-11.5
- parent: 2
- - uid: 9724
- components:
- - type: Transform
- pos: -11.5,-10.5
- parent: 2
- - uid: 9725
- components:
- - type: Transform
- pos: 8.5,-6.5
- parent: 2
- - uid: 9726
- components:
- - type: Transform
- pos: 8.5,-5.5
- parent: 2
- - uid: 9727
- components:
- - type: Transform
- pos: 8.5,-4.5
- parent: 2
- - uid: 9728
- components:
- - type: Transform
- pos: -0.5,-8.5
- parent: 2
- - uid: 9729
- components:
- - type: Transform
- pos: 0.5,-8.5
- parent: 2
- - uid: 9730
- components:
- - type: Transform
- pos: 1.5,-8.5
- parent: 2
- - uid: 9731
- components:
- - type: Transform
- pos: 2.5,-8.5
- parent: 2
- - uid: 9732
- components:
- - type: Transform
- pos: 3.5,-8.5
- parent: 2
- - uid: 9733
- components:
- - type: Transform
- pos: 4.5,-8.5
- parent: 2
- - uid: 9734
- components:
- - type: Transform
- pos: 5.5,-8.5
- parent: 2
- - uid: 9735
- components:
- - type: Transform
- pos: 6.5,-8.5
- parent: 2
- - uid: 9736
- components:
- - type: Transform
- pos: 7.5,-8.5
- parent: 2
- - uid: 9737
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 2
- - uid: 9738
- components:
- - type: Transform
- pos: -5.5,-8.5
- parent: 2
- - uid: 9739
- components:
- - type: Transform
- pos: -6.5,-8.5
- parent: 2
- - uid: 9740
- components:
- - type: Transform
- pos: -7.5,-8.5
- parent: 2
- - uid: 9741
- components:
- - type: Transform
- pos: -8.5,-8.5
- parent: 2
- - uid: 9742
- components:
- - type: Transform
- pos: 2.5,-12.5
- parent: 2
- - uid: 9743
- components:
- - type: Transform
- pos: 2.5,-13.5
- parent: 2
- - uid: 9744
- components:
- - type: Transform
- pos: 2.5,-14.5
- parent: 2
- - uid: 9745
- components:
- - type: Transform
- pos: 0.50000006,-13.5
- parent: 2
- - uid: 9746
- components:
- - type: Transform
- pos: 0.49999997,-12.5
- parent: 2
- - uid: 9747
- components:
- - type: Transform
- pos: -39.5,-3.5
- parent: 2
- - uid: 9748
- components:
- - type: Transform
- pos: -39.5,-6.5
- parent: 2
- - uid: 9749
- components:
- - type: Transform
- pos: -39.5,-5.5
- parent: 2
- - uid: 9750
- components:
- - type: Transform
- pos: -39.5,-4.5
- parent: 2
- - uid: 9751
- components:
- - type: Transform
- pos: -39.5,-2.5
- parent: 2
- - uid: 9752
- components:
- - type: Transform
- pos: -39.5,-1.5
- parent: 2
- - uid: 9753
- components:
- - type: Transform
- pos: -39.5,-0.5
- parent: 2
- - uid: 9754
- components:
- - type: Transform
- pos: -38.5,-1.5
- parent: 2
- - uid: 9755
- components:
- - type: Transform
- pos: -37.5,-1.5
- parent: 2
- - uid: 9756
- components:
- - type: Transform
- pos: -36.5,-1.5
- parent: 2
- - uid: 9757
- components:
- - type: Transform
- pos: -36.5,-2.5
- parent: 2
- - uid: 9758
- components:
- - type: Transform
- pos: -36.5,-3.5
- parent: 2
- - uid: 9759
- components:
- - type: Transform
- pos: -35.5,-3.5
- parent: 2
- - uid: 9760
- components:
- - type: Transform
- pos: -34.5,-3.5
- parent: 2
- - uid: 9761
- components:
- - type: Transform
- pos: -33.5,-3.5
- parent: 2
- - uid: 9762
- components:
- - type: Transform
- pos: -32.5,-3.5
- parent: 2
- - uid: 9763
- components:
- - type: Transform
- pos: -26.5,-0.5
- parent: 2
- - uid: 9764
- components:
- - type: Transform
- pos: -26.5,-1.5
- parent: 2
- - uid: 9765
- components:
- - type: Transform
- pos: -27.5,-1.5
- parent: 2
- - uid: 9766
- components:
- - type: Transform
- pos: -28.5,-1.5
- parent: 2
- - uid: 9767
- components:
- - type: Transform
- pos: -29.5,-1.5
- parent: 2
- - uid: 9768
- components:
- - type: Transform
- pos: -30.5,-1.5
- parent: 2
- - uid: 9769
- components:
- - type: Transform
- pos: -31.5,-1.5
- parent: 2
- - uid: 9770
- components:
- - type: Transform
- pos: -32.5,-1.5
- parent: 2
- - uid: 9771
- components:
- - type: Transform
- pos: -32.5,-2.5
- parent: 2
- - uid: 9772
- components:
- - type: Transform
- pos: -28.5,-2.5
- parent: 2
- - uid: 9773
- components:
- - type: Transform
- pos: -28.5,-3.5
- parent: 2
- - uid: 9774
- components:
- - type: Transform
- pos: -28.5,-4.5
- parent: 2
- - uid: 9775
- components:
- - type: Transform
- pos: -28.5,-5.5
- parent: 2
- - uid: 9776
- components:
- - type: Transform
- pos: -27.5,-5.5
- parent: 2
- - uid: 9777
- components:
- - type: Transform
- pos: -26.5,-5.5
- parent: 2
- - uid: 9778
- components:
- - type: Transform
- pos: -25.5,-5.5
- parent: 2
- - uid: 9779
- components:
- - type: Transform
- pos: -24.5,-5.5
- parent: 2
- - uid: 9780
- components:
- - type: Transform
- pos: -23.5,-5.5
- parent: 2
- - uid: 9781
- components:
- - type: Transform
- pos: -23.5,-6.5
- parent: 2
- - uid: 9782
- components:
- - type: Transform
- pos: -23.5,-7.5
- parent: 2
- - uid: 9783
- components:
- - type: Transform
- pos: -23.5,-8.5
- parent: 2
- - uid: 9784
- components:
- - type: Transform
- pos: -23.5,-9.5
- parent: 2
- - uid: 9785
- components:
- - type: Transform
- pos: -23.5,-10.5
- parent: 2
- - uid: 9786
- components:
- - type: Transform
- pos: -22.5,-10.5
- parent: 2
- - uid: 9787
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 2
- - uid: 9788
- components:
- - type: Transform
- pos: -21.5,-9.5
- parent: 2
- - uid: 9789
- components:
- - type: Transform
- pos: -22.5,-13.5
- parent: 2
- - uid: 9790
- components:
- - type: Transform
- pos: -22.5,-14.5
- parent: 2
- - uid: 9791
- components:
- - type: Transform
- pos: -22.5,-15.5
- parent: 2
- - uid: 9792
- components:
- - type: Transform
- pos: -23.5,-15.5
- parent: 2
- - uid: 9793
- components:
- - type: Transform
- pos: -23.5,-16.5
- parent: 2
- - uid: 9794
- components:
- - type: Transform
- pos: 32.5,28.5
- parent: 2
- - uid: 9795
- components:
- - type: Transform
- pos: -31.5,37.5
- parent: 2
- - uid: 9796
- components:
- - type: Transform
- pos: -37.5,62.5
- parent: 2
- - uid: 9797
- components:
- - type: Transform
- pos: 77.5,-41.5
- parent: 2
- - uid: 9798
- components:
- - type: Transform
- pos: 77.5,-42.5
- parent: 2
- - uid: 9799
- components:
- - type: Transform
- pos: 78.5,-42.5
- parent: 2
- - uid: 9800
- components:
- - type: Transform
- pos: 79.5,-42.5
- parent: 2
- - uid: 9801
- components:
- - type: Transform
- pos: 71.5,-14.5
- parent: 2
- - uid: 9802
- components:
- - type: Transform
- pos: 71.5,-15.5
- parent: 2
- - uid: 9803
- components:
- - type: Transform
- pos: 71.5,-16.5
- parent: 2
- - uid: 9804
- components:
- - type: Transform
- pos: 71.5,-17.5
- parent: 2
- - uid: 9805
- components:
- - type: Transform
- pos: 71.5,-18.5
- parent: 2
- - uid: 9806
- components:
- - type: Transform
- pos: 70.5,-18.5
- parent: 2
- - uid: 9807
- components:
- - type: Transform
- pos: 69.5,-18.5
- parent: 2
- - uid: 9808
- components:
- - type: Transform
- pos: 68.5,-18.5
- parent: 2
- - uid: 9809
- components:
- - type: Transform
- pos: 67.5,-18.5
- parent: 2
- - uid: 9810
- components:
- - type: Transform
- pos: 66.5,-18.5
- parent: 2
- - uid: 9811
- components:
- - type: Transform
- pos: 65.5,-18.5
- parent: 2
- - uid: 9812
- components:
- - type: Transform
- pos: 64.5,-18.5
- parent: 2
- - uid: 9813
- components:
- - type: Transform
- pos: 63.5,-18.5
- parent: 2
- - uid: 9814
- components:
- - type: Transform
- pos: 72.5,-18.5
- parent: 2
- - uid: 9815
- components:
- - type: Transform
- pos: 73.5,-18.5
- parent: 2
- - uid: 9816
- components:
- - type: Transform
- pos: 74.5,-18.5
- parent: 2
- - uid: 9817
- components:
- - type: Transform
- pos: 75.5,-18.5
- parent: 2
- - uid: 9818
- components:
- - type: Transform
- pos: 76.5,-18.5
- parent: 2
- - uid: 9819
- components:
- - type: Transform
- pos: 77.5,-18.5
- parent: 2
- - uid: 9820
- components:
- - type: Transform
- pos: 78.5,-18.5
- parent: 2
- - uid: 9821
- components:
- - type: Transform
- pos: 79.5,-18.5
- parent: 2
- - uid: 9822
- components:
- - type: Transform
- pos: 80.5,-18.5
- parent: 2
- - uid: 9823
- components:
- - type: Transform
- pos: 81.5,-18.5
- parent: 2
- - uid: 9824
- components:
- - type: Transform
- pos: 82.5,-18.5
- parent: 2
- - uid: 9825
- components:
- - type: Transform
- pos: 83.5,-18.5
- parent: 2
- - uid: 9826
- components:
- - type: Transform
- pos: 84.5,-18.5
- parent: 2
- - uid: 9827
- components:
- - type: Transform
- pos: 85.5,-18.5
- parent: 2
- - uid: 9828
- components:
- - type: Transform
- pos: 86.5,-18.5
- parent: 2
- - uid: 9829
- components:
- - type: Transform
- pos: 87.5,-18.5
- parent: 2
- - uid: 9830
- components:
- - type: Transform
- pos: 87.5,-17.5
- parent: 2
- - uid: 9831
- components:
- - type: Transform
- pos: 87.5,-16.5
- parent: 2
- - uid: 9832
- components:
- - type: Transform
- pos: 87.5,-15.5
- parent: 2
- - uid: 9833
- components:
- - type: Transform
- pos: 87.5,-14.5
- parent: 2
- - uid: 9834
- components:
- - type: Transform
- pos: -26.5,27.5
- parent: 2
- - uid: 9835
- components:
- - type: Transform
- pos: -26.5,26.5
- parent: 2
- - uid: 9836
- components:
- - type: Transform
- pos: -26.5,25.5
- parent: 2
- - uid: 9837
- components:
- - type: Transform
- pos: -27.5,25.5
- parent: 2
- - uid: 9838
- components:
- - type: Transform
- pos: -28.5,25.5
- parent: 2
- - uid: 9839
- components:
- - type: Transform
- pos: -28.5,24.5
- parent: 2
- - uid: 9840
- components:
- - type: Transform
- pos: -28.5,23.5
- parent: 2
- - uid: 9841
- components:
- - type: Transform
- pos: -29.5,23.5
- parent: 2
- - uid: 9842
- components:
- - type: Transform
- pos: -30.5,23.5
- parent: 2
- - uid: 9843
- components:
- - type: Transform
- pos: -31.5,23.5
- parent: 2
- - uid: 9844
- components:
- - type: Transform
- pos: -32.5,23.5
- parent: 2
- - uid: 9845
- components:
- - type: Transform
- pos: -33.5,23.5
- parent: 2
- - uid: 9846
- components:
- - type: Transform
- pos: -34.5,23.5
- parent: 2
- - uid: 9847
- components:
- - type: Transform
- pos: -35.5,23.5
- parent: 2
- - uid: 9848
- components:
- - type: Transform
- pos: -35.5,24.5
- parent: 2
- - uid: 9849
- components:
- - type: Transform
- pos: -35.5,25.5
- parent: 2
- - uid: 9850
- components:
- - type: Transform
- pos: -35.5,26.5
- parent: 2
- - uid: 9851
- components:
- - type: Transform
- pos: -34.5,26.5
- parent: 2
- - uid: 9852
- components:
- - type: Transform
- pos: -33.5,26.5
- parent: 2
- - uid: 9853
- components:
- - type: Transform
- pos: -32.5,26.5
- parent: 2
- - uid: 9854
- components:
- - type: Transform
- pos: -31.5,26.5
- parent: 2
- - uid: 9855
- components:
- - type: Transform
- pos: -30.5,26.5
- parent: 2
- - uid: 9856
- components:
- - type: Transform
- pos: -30.5,27.5
- parent: 2
- - uid: 9857
- components:
- - type: Transform
- pos: -30.5,28.5
- parent: 2
- - uid: 9858
- components:
- - type: Transform
- pos: -30.5,29.5
- parent: 2
- - uid: 9859
- components:
- - type: Transform
- pos: -30.5,30.5
- parent: 2
- - uid: 9860
- components:
- - type: Transform
- pos: -30.5,31.5
- parent: 2
- - uid: 9861
- components:
- - type: Transform
- pos: -30.5,32.5
- parent: 2
- - uid: 9862
- components:
- - type: Transform
- pos: -30.5,33.5
- parent: 2
- - uid: 9863
- components:
- - type: Transform
- pos: -30.5,34.5
- parent: 2
- - uid: 9864
- components:
- - type: Transform
- pos: -30.5,35.5
- parent: 2
- - uid: 9865
- components:
- - type: Transform
- pos: -30.5,36.5
- parent: 2
- - uid: 9866
- components:
- - type: Transform
- pos: -30.5,37.5
- parent: 2
- - uid: 9867
- components:
- - type: Transform
- pos: -32.5,38.5
- parent: 2
- - uid: 9868
- components:
- - type: Transform
- pos: -32.5,39.5
- parent: 2
- - uid: 9869
- components:
- - type: Transform
- pos: -29.5,37.5
- parent: 2
- - uid: 9870
- components:
- - type: Transform
- pos: -29.5,38.5
- parent: 2
- - uid: 9871
- components:
- - type: Transform
- pos: -29.5,39.5
- parent: 2
- - uid: 9872
- components:
- - type: Transform
- pos: -29.5,40.5
- parent: 2
- - uid: 9873
- components:
- - type: Transform
- pos: -29.5,41.5
- parent: 2
- - uid: 9874
- components:
- - type: Transform
- pos: -29.5,42.5
- parent: 2
- - uid: 9875
- components:
- - type: Transform
- pos: -28.5,42.5
- parent: 2
- - uid: 9876
- components:
- - type: Transform
- pos: -28.5,43.5
- parent: 2
- - uid: 9877
- components:
- - type: Transform
- pos: -28.5,44.5
- parent: 2
- - uid: 9878
- components:
- - type: Transform
- pos: -30.5,42.5
- parent: 2
- - uid: 9879
- components:
- - type: Transform
- pos: -31.5,42.5
- parent: 2
- - uid: 9880
- components:
- - type: Transform
- pos: -31.5,43.5
- parent: 2
- - uid: 9881
- components:
- - type: Transform
- pos: -33.5,31.5
- parent: 2
- - uid: 9882
- components:
- - type: Transform
- pos: -33.5,30.5
- parent: 2
- - uid: 9883
- components:
- - type: Transform
- pos: -33.5,29.5
- parent: 2
- - uid: 9884
- components:
- - type: Transform
- pos: -33.5,28.5
- parent: 2
- - uid: 9885
- components:
- - type: Transform
- pos: -33.5,27.5
- parent: 2
- - uid: 9886
- components:
- - type: Transform
- pos: -41.5,39.5
- parent: 2
- - uid: 9887
- components:
- - type: Transform
- pos: -42.5,39.5
- parent: 2
- - uid: 9888
- components:
- - type: Transform
- pos: -43.5,39.5
- parent: 2
- - uid: 9889
- components:
- - type: Transform
- pos: -44.5,39.5
- parent: 2
- - uid: 9890
- components:
- - type: Transform
- pos: -44.5,38.5
- parent: 2
- - uid: 9891
- components:
- - type: Transform
- pos: -44.5,37.5
- parent: 2
- - uid: 9892
- components:
- - type: Transform
- pos: -43.5,37.5
- parent: 2
- - uid: 9893
- components:
- - type: Transform
- pos: -42.5,37.5
- parent: 2
- - uid: 9894
- components:
- - type: Transform
- pos: -42.5,36.5
- parent: 2
- - uid: 9895
- components:
- - type: Transform
- pos: -42.5,35.5
- parent: 2
- - uid: 9896
- components:
- - type: Transform
- pos: -42.5,34.5
- parent: 2
- - uid: 9897
- components:
- - type: Transform
- pos: -41.5,34.5
- parent: 2
- - uid: 9898
- components:
- - type: Transform
- pos: -40.5,34.5
- parent: 2
- - uid: 9899
- components:
- - type: Transform
- pos: -39.5,34.5
- parent: 2
- - uid: 9900
- components:
- - type: Transform
- pos: -38.5,34.5
- parent: 2
- - uid: 9901
- components:
- - type: Transform
- pos: -38.5,35.5
- parent: 2
- - uid: 9902
- components:
- - type: Transform
- pos: -38.5,36.5
- parent: 2
- - uid: 9903
- components:
- - type: Transform
- pos: -42.5,33.5
- parent: 2
- - uid: 9904
- components:
- - type: Transform
- pos: -42.5,32.5
- parent: 2
- - uid: 9905
- components:
- - type: Transform
- pos: -42.5,31.5
- parent: 2
- - uid: 9906
- components:
- - type: Transform
- pos: -42.5,30.5
- parent: 2
- - uid: 9907
- components:
- - type: Transform
- pos: -42.5,29.5
- parent: 2
- - uid: 9908
- components:
- - type: Transform
- pos: -42.5,28.5
- parent: 2
- - uid: 9909
- components:
- - type: Transform
- pos: -41.5,28.5
- parent: 2
- - uid: 9910
- components:
- - type: Transform
- pos: -40.5,28.5
- parent: 2
- - uid: 9911
- components:
- - type: Transform
- pos: -40.5,29.5
- parent: 2
- - uid: 9912
- components:
- - type: Transform
- pos: -40.5,30.5
- parent: 2
- - uid: 9913
- components:
- - type: Transform
- pos: -41.5,37.5
- parent: 2
- - uid: 9914
- components:
- - type: Transform
- pos: -39.5,37.5
- parent: 2
- - uid: 9915
- components:
- - type: Transform
- pos: -40.5,37.5
- parent: 2
- - uid: 9916
- components:
- - type: Transform
- pos: -39.5,38.5
- parent: 2
- - uid: 9917
- components:
- - type: Transform
- pos: -33.5,57.5
- parent: 2
- - uid: 9918
- components:
- - type: Transform
- pos: -32.5,57.5
- parent: 2
- - uid: 9919
- components:
- - type: Transform
- pos: -31.5,57.5
- parent: 2
- - uid: 9920
- components:
- - type: Transform
- pos: -30.5,57.5
- parent: 2
- - uid: 9921
- components:
- - type: Transform
- pos: -29.5,57.5
- parent: 2
- - uid: 9922
- components:
- - type: Transform
- pos: -28.5,57.5
- parent: 2
- - uid: 9923
- components:
- - type: Transform
- pos: -27.5,57.5
- parent: 2
- - uid: 9924
- components:
- - type: Transform
- pos: -26.5,66.5
- parent: 2
- - uid: 9925
- components:
- - type: Transform
- pos: -26.5,65.5
- parent: 2
- - uid: 9926
- components:
- - type: Transform
- pos: -26.5,64.5
- parent: 2
- - uid: 9927
- components:
- - type: Transform
- pos: -26.5,63.5
- parent: 2
- - uid: 9928
- components:
- - type: Transform
- pos: -26.5,62.5
- parent: 2
- - uid: 9929
- components:
- - type: Transform
- pos: -26.5,61.5
- parent: 2
- - uid: 9930
- components:
- - type: Transform
- pos: -26.5,60.5
- parent: 2
- - uid: 9931
- components:
- - type: Transform
- pos: -27.5,60.5
- parent: 2
- - uid: 9932
- components:
- - type: Transform
- pos: -27.5,59.5
- parent: 2
- - uid: 9933
- components:
- - type: Transform
- pos: -27.5,58.5
- parent: 2
- - uid: 9934
- components:
- - type: Transform
- pos: -30.5,66.5
- parent: 2
- - uid: 9935
- components:
- - type: Transform
- pos: -30.5,65.5
- parent: 2
- - uid: 9936
- components:
- - type: Transform
- pos: -30.5,64.5
- parent: 2
- - uid: 9937
- components:
- - type: Transform
- pos: -30.5,63.5
- parent: 2
- - uid: 9938
- components:
- - type: Transform
- pos: -30.5,62.5
- parent: 2
- - uid: 9939
- components:
- - type: Transform
- pos: -30.5,61.5
- parent: 2
- - uid: 9940
- components:
- - type: Transform
- pos: -30.5,60.5
- parent: 2
- - uid: 9941
- components:
- - type: Transform
- pos: -30.5,59.5
- parent: 2
- - uid: 9942
- components:
- - type: Transform
- pos: -30.5,58.5
- parent: 2
- - uid: 9943
- components:
- - type: Transform
- pos: -31.5,83.5
- parent: 2
- - uid: 9944
- components:
- - type: Transform
- pos: -30.5,83.5
- parent: 2
- - uid: 9945
- components:
- - type: Transform
- pos: -29.5,83.5
- parent: 2
- - uid: 9946
- components:
- - type: Transform
- pos: -29.5,82.5
- parent: 2
- - uid: 9947
- components:
- - type: Transform
- pos: -29.5,81.5
- parent: 2
- - uid: 9948
- components:
- - type: Transform
- pos: -29.5,80.5
- parent: 2
- - uid: 9949
- components:
- - type: Transform
- pos: -29.5,79.5
- parent: 2
- - uid: 9950
- components:
- - type: Transform
- pos: -29.5,78.5
- parent: 2
- - uid: 9951
- components:
- - type: Transform
- pos: -29.5,77.5
- parent: 2
- - uid: 9952
- components:
- - type: Transform
- pos: -29.5,76.5
- parent: 2
- - uid: 9953
- components:
- - type: Transform
- pos: -29.5,75.5
- parent: 2
- - uid: 9954
- components:
- - type: Transform
- pos: -29.5,74.5
- parent: 2
- - uid: 9955
- components:
- - type: Transform
- pos: -29.5,73.5
- parent: 2
- - uid: 9956
- components:
- - type: Transform
- pos: -29.5,72.5
- parent: 2
- - uid: 9957
- components:
- - type: Transform
- pos: -29.5,71.5
- parent: 2
- - uid: 9958
- components:
- - type: Transform
- pos: -29.5,70.5
- parent: 2
- - uid: 9959
- components:
- - type: Transform
- pos: -29.5,69.5
- parent: 2
- - uid: 9960
- components:
- - type: Transform
- pos: -29.5,68.5
- parent: 2
- - uid: 9961
- components:
- - type: Transform
- pos: -28.5,68.5
- parent: 2
- - uid: 9962
- components:
- - type: Transform
- pos: -27.5,68.5
- parent: 2
- - uid: 9963
- components:
- - type: Transform
- pos: -26.5,68.5
- parent: 2
- - uid: 9964
- components:
- - type: Transform
- pos: -25.5,68.5
- parent: 2
- - uid: 9965
- components:
- - type: Transform
- pos: -24.5,68.5
- parent: 2
- - uid: 9966
- components:
- - type: Transform
- pos: -23.5,68.5
- parent: 2
- - uid: 9967
- components:
- - type: Transform
- pos: -22.5,68.5
- parent: 2
- - uid: 9968
- components:
- - type: Transform
- pos: -21.5,68.5
- parent: 2
- - uid: 9969
- components:
- - type: Transform
- pos: -20.5,68.5
- parent: 2
- - uid: 9970
- components:
- - type: Transform
- pos: -19.5,68.5
- parent: 2
- - uid: 9971
- components:
- - type: Transform
- pos: -18.5,68.5
- parent: 2
- - uid: 9972
- components:
- - type: Transform
- pos: -17.5,68.5
- parent: 2
- - uid: 9973
- components:
- - type: Transform
- pos: -16.5,68.5
- parent: 2
- - uid: 9974
- components:
- - type: Transform
- pos: -15.5,68.5
- parent: 2
- - uid: 9975
- components:
- - type: Transform
- pos: -14.5,68.5
- parent: 2
- - uid: 9976
- components:
- - type: Transform
- pos: -13.5,68.5
- parent: 2
- - uid: 9977
- components:
- - type: Transform
- pos: -12.5,68.5
- parent: 2
- - uid: 9978
- components:
- - type: Transform
- pos: -11.5,68.5
- parent: 2
- - uid: 9979
- components:
- - type: Transform
- pos: -11.5,69.5
- parent: 2
- - uid: 9980
- components:
- - type: Transform
- pos: -11.5,70.5
- parent: 2
- - uid: 9981
- components:
- - type: Transform
- pos: -11.5,71.5
- parent: 2
- - uid: 9982
- components:
- - type: Transform
- pos: -11.5,72.5
- parent: 2
- - uid: 9983
- components:
- - type: Transform
- pos: -11.5,73.5
- parent: 2
- - uid: 9984
- components:
- - type: Transform
- pos: -11.5,74.5
- parent: 2
- - uid: 9985
- components:
- - type: Transform
- pos: -11.5,75.5
- parent: 2
- - uid: 9986
- components:
- - type: Transform
- pos: -11.5,76.5
- parent: 2
- - uid: 9987
- components:
- - type: Transform
- pos: -11.5,77.5
- parent: 2
- - uid: 9988
- components:
- - type: Transform
- pos: -11.5,78.5
- parent: 2
- - uid: 9989
- components:
- - type: Transform
- pos: -11.5,79.5
- parent: 2
- - uid: 9990
- components:
- - type: Transform
- pos: -11.5,80.5
- parent: 2
- - uid: 9991
- components:
- - type: Transform
- pos: -11.5,81.5
- parent: 2
- - uid: 9992
- components:
- - type: Transform
- pos: -11.5,82.5
- parent: 2
- - uid: 9993
- components:
- - type: Transform
- pos: -11.5,83.5
- parent: 2
- - uid: 9994
- components:
- - type: Transform
- pos: -12.5,83.5
- parent: 2
- - uid: 9995
- components:
- - type: Transform
- pos: -13.5,83.5
- parent: 2
- - uid: 9996
- components:
- - type: Transform
- pos: 2.5,64.5
- parent: 2
- - uid: 9997
- components:
- - type: Transform
- pos: 3.5,64.5
- parent: 2
- - uid: 9998
- components:
- - type: Transform
- pos: 4.5,64.5
- parent: 2
- - uid: 9999
- components:
- - type: Transform
- pos: 5.5,64.5
- parent: 2
- - uid: 10000
- components:
- - type: Transform
- pos: 6.5,64.5
- parent: 2
- - uid: 10001
- components:
- - type: Transform
- pos: 6.5,65.5
- parent: 2
- - uid: 10002
- components:
- - type: Transform
- pos: 6.5,66.5
- parent: 2
- - uid: 10003
- components:
- - type: Transform
- pos: 6.5,67.5
- parent: 2
- - uid: 10004
- components:
- - type: Transform
- pos: 6.5,68.5
- parent: 2
- - uid: 10005
- components:
- - type: Transform
- pos: 5.5,68.5
- parent: 2
- - uid: 10006
- components:
- - type: Transform
- pos: 4.5,68.5
- parent: 2
- - uid: 10007
- components:
- - type: Transform
- pos: 3.5,68.5
- parent: 2
- - uid: 10008
- components:
- - type: Transform
- pos: 2.5,68.5
- parent: 2
- - uid: 10009
- components:
- - type: Transform
- pos: 1.5,68.5
- parent: 2
- - uid: 10010
- components:
- - type: Transform
- pos: 0.49999997,68.5
- parent: 2
- - uid: 10011
- components:
- - type: Transform
- pos: -0.5,68.5
- parent: 2
- - uid: 10012
- components:
- - type: Transform
- pos: -1.5,68.5
- parent: 2
- - uid: 10013
- components:
- - type: Transform
- pos: -2.5,68.5
- parent: 2
- - uid: 10014
- components:
- - type: Transform
- pos: -3.5,68.5
- parent: 2
- - uid: 10015
- components:
- - type: Transform
- pos: -4.5,68.5
- parent: 2
- - uid: 10016
- components:
- - type: Transform
- pos: -5.5,68.5
- parent: 2
- - uid: 10017
- components:
- - type: Transform
- pos: -6.5,68.5
- parent: 2
- - uid: 10018
- components:
- - type: Transform
- pos: -7.5,68.5
- parent: 2
- - uid: 10019
- components:
- - type: Transform
- pos: -8.5,68.5
- parent: 2
- - uid: 10020
- components:
- - type: Transform
- pos: -9.5,68.5
- parent: 2
- - uid: 10021
- components:
- - type: Transform
- pos: -10.5,68.5
- parent: 2
- - uid: 10022
- components:
- - type: Transform
- pos: -11.5,68.5
- parent: 2
- - uid: 10023
- components:
- - type: Transform
- pos: -7.5,70.5
- parent: 2
- - uid: 10024
- components:
- - type: Transform
- pos: -4.5,67.5
- parent: 2
- - uid: 10025
- components:
- - type: Transform
- pos: -4.5,66.5
- parent: 2
- - uid: 10026
- components:
- - type: Transform
- pos: -4.5,65.5
- parent: 2
- - uid: 10027
- components:
- - type: Transform
- pos: -4.5,64.5
- parent: 2
- - uid: 10028
- components:
- - type: Transform
- pos: -4.5,63.5
- parent: 2
- - uid: 10029
- components:
- - type: Transform
- pos: -4.5,62.5
- parent: 2
- - uid: 10030
- components:
- - type: Transform
- pos: -4.5,61.5
- parent: 2
- - uid: 10031
- components:
- - type: Transform
- pos: -4.5,60.5
- parent: 2
- - uid: 10032
- components:
- - type: Transform
- pos: -4.5,59.5
- parent: 2
- - uid: 10033
- components:
- - type: Transform
- pos: -4.5,58.5
- parent: 2
- - uid: 10034
- components:
- - type: Transform
- pos: -4.5,57.5
- parent: 2
- - uid: 10035
- components:
- - type: Transform
- pos: -3.5,57.5
- parent: 2
- - uid: 10036
- components:
- - type: Transform
- pos: -2.5,57.5
- parent: 2
- - uid: 10037
- components:
- - type: Transform
- pos: -1.5,57.5
- parent: 2
- - uid: 10038
- components:
- - type: Transform
- pos: -0.5,57.5
- parent: 2
- - uid: 10039
- components:
- - type: Transform
- pos: -0.5,58.5
- parent: 2
- - uid: 10040
- components:
- - type: Transform
- pos: -0.5,59.5
- parent: 2
- - uid: 10041
- components:
- - type: Transform
- pos: -31.5,44.5
- parent: 2
- - uid: 10042
- components:
- - type: Transform
- pos: -31.5,45.5
- parent: 2
- - uid: 10043
- components:
- - type: Transform
- pos: -31.5,46.5
- parent: 2
- - uid: 10044
- components:
- - type: Transform
- pos: -30.5,46.5
- parent: 2
- - uid: 10045
- components:
- - type: Transform
- pos: -29.5,46.5
- parent: 2
- - uid: 10046
- components:
- - type: Transform
- pos: -28.5,46.5
- parent: 2
- - uid: 10047
- components:
- - type: Transform
- pos: -27.5,46.5
- parent: 2
- - uid: 10048
- components:
- - type: Transform
- pos: -26.5,46.5
- parent: 2
- - uid: 10049
- components:
- - type: Transform
- pos: -26.5,47.5
- parent: 2
- - uid: 10050
- components:
- - type: Transform
- pos: -25.5,47.5
- parent: 2
- - uid: 10051
- components:
- - type: Transform
- pos: -25.5,48.5
- parent: 2
- - uid: 10052
- components:
- - type: Transform
- pos: -25.5,49.5
- parent: 2
- - uid: 10053
- components:
- - type: Transform
- pos: -25.5,50.5
- parent: 2
- - uid: 10054
- components:
- - type: Transform
- pos: -25.5,51.5
- parent: 2
- - uid: 10055
- components:
- - type: Transform
- pos: -25.5,52.5
- parent: 2
- - uid: 10056
- components:
- - type: Transform
- pos: -25.5,53.5
- parent: 2
- - uid: 10057
- components:
- - type: Transform
- pos: -24.5,53.5
- parent: 2
- - uid: 10058
- components:
- - type: Transform
- pos: -24.5,54.5
- parent: 2
- - uid: 10059
- components:
- - type: Transform
- pos: -32.5,46.5
- parent: 2
- - uid: 10060
- components:
- - type: Transform
- pos: -33.5,46.5
- parent: 2
- - uid: 10061
- components:
- - type: Transform
- pos: -33.5,47.5
- parent: 2
- - uid: 10062
- components:
- - type: Transform
- pos: -33.5,48.5
- parent: 2
- - uid: 10063
- components:
- - type: Transform
- pos: -33.5,49.5
- parent: 2
- - uid: 10064
- components:
- - type: Transform
- pos: -34.5,49.5
- parent: 2
- - uid: 10065
- components:
- - type: Transform
- pos: -35.5,49.5
- parent: 2
- - uid: 10066
- components:
- - type: Transform
- pos: -36.5,49.5
- parent: 2
- - uid: 10067
- components:
- - type: Transform
- pos: -37.5,49.5
- parent: 2
- - uid: 10068
- components:
- - type: Transform
- pos: -36.5,50.5
- parent: 2
- - uid: 10069
- components:
- - type: Transform
- pos: -36.5,51.5
- parent: 2
- - uid: 10070
- components:
- - type: Transform
- pos: -36.5,56.5
- parent: 2
- - uid: 10071
- components:
- - type: Transform
- pos: -36.5,55.5
- parent: 2
- - uid: 10072
- components:
- - type: Transform
- pos: -36.5,54.5
- parent: 2
- - uid: 10073
- components:
- - type: Transform
- pos: -37.5,54.5
- parent: 2
- - uid: 10074
- components:
- - type: Transform
- pos: -38.5,54.5
- parent: 2
- - uid: 10075
- components:
- - type: Transform
- pos: -39.5,54.5
- parent: 2
- - uid: 10076
- components:
- - type: Transform
- pos: -39.5,55.5
- parent: 2
- - uid: 10077
- components:
- - type: Transform
- pos: -39.5,55.5
- parent: 2
- - uid: 10078
- components:
- - type: Transform
- pos: -15.5,53.5
- parent: 2
- - uid: 10079
- components:
- - type: Transform
- pos: -15.5,52.5
- parent: 2
- - uid: 10080
- components:
- - type: Transform
- pos: -16.5,52.5
- parent: 2
- - uid: 10081
- components:
- - type: Transform
- pos: -17.5,52.5
- parent: 2
- - uid: 10082
- components:
- - type: Transform
- pos: -18.5,52.5
- parent: 2
- - uid: 10083
- components:
- - type: Transform
- pos: -18.5,51.5
- parent: 2
- - uid: 10084
- components:
- - type: Transform
- pos: -18.5,50.5
- parent: 2
- - uid: 10085
- components:
- - type: Transform
- pos: -18.5,49.5
- parent: 2
- - uid: 10086
- components:
- - type: Transform
- pos: -18.5,48.5
- parent: 2
- - uid: 10087
- components:
- - type: Transform
- pos: -18.5,47.5
- parent: 2
- - uid: 10088
- components:
- - type: Transform
- pos: -18.5,46.5
- parent: 2
- - uid: 10089
- components:
- - type: Transform
- pos: -19.5,46.5
- parent: 2
- - uid: 10090
- components:
- - type: Transform
- pos: -20.5,46.5
- parent: 2
- - uid: 10091
- components:
- - type: Transform
- pos: -21.5,46.5
- parent: 2
- - uid: 10092
- components:
- - type: Transform
- pos: -21.5,45.5
- parent: 2
- - uid: 10093
- components:
- - type: Transform
- pos: -21.5,44.5
- parent: 2
- - uid: 10094
- components:
- - type: Transform
- pos: -21.5,43.5
- parent: 2
- - uid: 10095
- components:
- - type: Transform
- pos: -21.5,42.5
- parent: 2
- - uid: 10096
- components:
- - type: Transform
- pos: -21.5,41.5
- parent: 2
- - uid: 10097
- components:
- - type: Transform
- pos: -21.5,40.5
- parent: 2
- - uid: 10098
- components:
- - type: Transform
- pos: -21.5,39.5
- parent: 2
- - uid: 10099
- components:
- - type: Transform
- pos: -21.5,38.5
- parent: 2
- - uid: 10100
- components:
- - type: Transform
- pos: -21.5,37.5
- parent: 2
- - uid: 10101
- components:
- - type: Transform
- pos: -21.5,36.5
- parent: 2
- - uid: 10102
- components:
- - type: Transform
- pos: -20.5,36.5
- parent: 2
- - uid: 10103
- components:
- - type: Transform
- pos: -19.5,36.5
- parent: 2
- - uid: 10104
- components:
- - type: Transform
- pos: -18.5,36.5
- parent: 2
- - uid: 10105
- components:
- - type: Transform
- pos: -18.5,35.5
- parent: 2
- - uid: 10106
- components:
- - type: Transform
- pos: -18.5,34.5
- parent: 2
- - uid: 10107
- components:
- - type: Transform
- pos: -18.5,33.5
- parent: 2
- - uid: 10108
- components:
- - type: Transform
- pos: -18.5,32.5
- parent: 2
- - uid: 10109
- components:
- - type: Transform
- pos: -18.5,31.5
- parent: 2
- - uid: 10110
- components:
- - type: Transform
- pos: -18.5,30.5
- parent: 2
- - uid: 10111
- components:
- - type: Transform
- pos: -18.5,29.5
- parent: 2
- - uid: 10112
- components:
- - type: Transform
- pos: -18.5,28.5
- parent: 2
- - uid: 10113
- components:
- - type: Transform
- pos: -18.5,27.5
- parent: 2
- - uid: 10114
- components:
- - type: Transform
- pos: -18.5,26.5
- parent: 2
- - uid: 10115
- components:
- - type: Transform
- pos: -19.5,26.5
- parent: 2
- - uid: 10116
- components:
- - type: Transform
- pos: -20.5,26.5
- parent: 2
- - uid: 10117
- components:
- - type: Transform
- pos: -21.5,26.5
- parent: 2
- - uid: 10118
- components:
- - type: Transform
- pos: -22.5,26.5
- parent: 2
- - uid: 10119
- components:
- - type: Transform
- pos: -23.5,26.5
- parent: 2
- - uid: 10120
- components:
- - type: Transform
- pos: -24.5,26.5
- parent: 2
- - uid: 10121
- components:
- - type: Transform
- pos: -24.5,25.5
- parent: 2
- - uid: 10122
- components:
- - type: Transform
- pos: -25.5,25.5
- parent: 2
- - uid: 10123
- components:
- - type: Transform
- pos: -26.5,25.5
- parent: 2
- - uid: 10124
- components:
- - type: Transform
- pos: -30.5,22.5
- parent: 2
- - uid: 10125
- components:
- - type: Transform
- pos: -30.5,21.5
- parent: 2
- - uid: 10126
- components:
- - type: Transform
- pos: -30.5,20.5
- parent: 2
- - uid: 10127
- components:
- - type: Transform
- pos: -30.5,19.5
- parent: 2
- - uid: 10128
- components:
- - type: Transform
- pos: -30.5,18.5
- parent: 2
- - uid: 10129
- components:
- - type: Transform
- pos: -30.5,17.5
- parent: 2
- - uid: 10130
- components:
- - type: Transform
- pos: -29.5,17.5
- parent: 2
- - uid: 10131
- components:
- - type: Transform
- pos: -28.5,17.5
- parent: 2
- - uid: 10132
- components:
- - type: Transform
- pos: -27.5,17.5
- parent: 2
- - uid: 10133
- components:
- - type: Transform
- pos: -26.5,17.5
- parent: 2
- - uid: 10134
- components:
- - type: Transform
- pos: -25.5,17.5
- parent: 2
- - uid: 10135
- components:
- - type: Transform
- pos: -24.5,17.5
- parent: 2
- - uid: 10136
- components:
- - type: Transform
- pos: -24.5,18.5
- parent: 2
- - uid: 10137
- components:
- - type: Transform
- pos: -24.5,19.5
- parent: 2
- - uid: 10138
- components:
- - type: Transform
- pos: -24.5,20.5
- parent: 2
- - uid: 10139
- components:
- - type: Transform
- pos: -25.5,20.5
- parent: 2
- - uid: 10140
- components:
- - type: Transform
- pos: -26.5,20.5
- parent: 2
- - uid: 10141
- components:
- - type: Transform
- pos: -27.5,20.5
- parent: 2
- - uid: 10142
- components:
- - type: Transform
- pos: -27.5,21.5
- parent: 2
- - uid: 10143
- components:
- - type: Transform
- pos: -27.5,22.5
- parent: 2
- - uid: 10144
- components:
- - type: Transform
- pos: -25.5,16.5
- parent: 2
- - uid: 10145
- components:
- - type: Transform
- pos: -25.5,15.5
- parent: 2
- - uid: 10146
- components:
- - type: Transform
- pos: -24.5,15.5
- parent: 2
- - uid: 10147
- components:
- - type: Transform
- pos: -23.5,15.5
- parent: 2
- - uid: 10148
- components:
- - type: Transform
- pos: -23.5,16.5
- parent: 2
- - uid: 10149
- components:
- - type: Transform
- pos: -4.5,25.5
- parent: 2
- - uid: 10150
- components:
- - type: Transform
- pos: -4.5,24.5
- parent: 2
- - uid: 10151
- components:
- - type: Transform
- pos: -4.5,23.5
- parent: 2
- - uid: 10152
- components:
- - type: Transform
- pos: -3.5,23.5
- parent: 2
- - uid: 10153
- components:
- - type: Transform
- pos: -2.5,23.5
- parent: 2
- - uid: 10154
- components:
- - type: Transform
- pos: -1.5,23.5
- parent: 2
- - uid: 10155
- components:
- - type: Transform
- pos: -0.5,23.5
- parent: 2
- - uid: 10156
- components:
- - type: Transform
- pos: 0.49999997,23.5
- parent: 2
- - uid: 10157
- components:
- - type: Transform
- pos: 0.50000006,24.5
- parent: 2
- - uid: 10158
- components:
- - type: Transform
- pos: 0.50000006,25.5
- parent: 2
- - uid: 10159
- components:
- - type: Transform
- pos: 0.50000006,26.5
- parent: 2
- - uid: 10160
- components:
- - type: Transform
- pos: -0.5,26.5
- parent: 2
- - uid: 10161
- components:
- - type: Transform
- pos: -1.5,26.5
- parent: 2
- - uid: 10162
- components:
- - type: Transform
- pos: -2.5,26.5
- parent: 2
- - uid: 10163
- components:
- - type: Transform
- pos: -2.5,27.5
- parent: 2
- - uid: 10164
- components:
- - type: Transform
- pos: -2.5,28.5
- parent: 2
- - uid: 10165
- components:
- - type: Transform
- pos: -2.5,29.5
- parent: 2
- - uid: 10166
- components:
- - type: Transform
- pos: -2.5,30.5
- parent: 2
- - uid: 10167
- components:
- - type: Transform
- pos: 25.5,50.5
- parent: 2
- - uid: 10168
- components:
- - type: Transform
- pos: 33.5,28.5
- parent: 2
- - uid: 10169
- components:
- - type: Transform
- pos: 22.5,31.5
- parent: 2
- - uid: 10170
- components:
- - type: Transform
- pos: 22.5,30.5
- parent: 2
- - uid: 10171
- components:
- - type: Transform
- pos: 22.5,29.5
- parent: 2
- - uid: 10172
- components:
- - type: Transform
- pos: 23.5,29.5
- parent: 2
- - uid: 10173
- components:
- - type: Transform
- pos: 24.5,29.5
- parent: 2
- - uid: 10174
- components:
- - type: Transform
- pos: 25.5,29.5
- parent: 2
- - uid: 10175
- components:
- - type: Transform
- pos: 26.5,29.5
- parent: 2
- - uid: 10176
- components:
- - type: Transform
- pos: 26.5,28.5
- parent: 2
- - uid: 10177
- components:
- - type: Transform
- pos: 26.5,27.5
- parent: 2
- - uid: 10178
- components:
- - type: Transform
- pos: 26.5,26.5
- parent: 2
- - uid: 10179
- components:
- - type: Transform
- pos: 27.5,26.5
- parent: 2
- - uid: 10180
- components:
- - type: Transform
- pos: 26.5,30.5
- parent: 2
- - uid: 10181
- components:
- - type: Transform
- pos: 26.5,31.5
- parent: 2
- - uid: 10182
- components:
- - type: Transform
- pos: 27.5,31.5
- parent: 2
- - uid: 10183
- components:
- - type: Transform
- pos: 28.5,31.5
- parent: 2
- - uid: 10184
- components:
- - type: Transform
- pos: 29.5,31.5
- parent: 2
- - uid: 10185
- components:
- - type: Transform
- pos: 30.5,31.5
- parent: 2
- - uid: 10186
- components:
- - type: Transform
- pos: 31.5,31.5
- parent: 2
- - uid: 10187
- components:
- - type: Transform
- pos: 31.5,30.5
- parent: 2
- - uid: 10188
- components:
- - type: Transform
- pos: 31.5,29.5
- parent: 2
- - uid: 10189
- components:
- - type: Transform
- pos: 31.5,28.5
- parent: 2
- - uid: 10190
- components:
- - type: Transform
- pos: 33.5,29.5
- parent: 2
- - uid: 10191
- components:
- - type: Transform
- pos: 31.5,32.5
- parent: 2
- - uid: 10192
- components:
- - type: Transform
- pos: 31.5,33.5
- parent: 2
- - uid: 10193
- components:
- - type: Transform
- pos: 32.5,31.5
- parent: 2
- - uid: 10194
- components:
- - type: Transform
- pos: 33.5,31.5
- parent: 2
- - uid: 10195
- components:
- - type: Transform
- pos: 34.5,31.5
- parent: 2
- - uid: 10196
- components:
- - type: Transform
- pos: 35.5,31.5
- parent: 2
- - uid: 10197
- components:
- - type: Transform
- pos: 35.5,30.5
- parent: 2
- - uid: 10198
- components:
- - type: Transform
- pos: 36.5,30.5
- parent: 2
- - uid: 10199
- components:
- - type: Transform
- pos: 37.5,30.5
- parent: 2
- - uid: 10200
- components:
- - type: Transform
- pos: 38.5,30.5
- parent: 2
- - uid: 10201
- components:
- - type: Transform
- pos: 38.5,31.5
- parent: 2
- - uid: 10202
- components:
- - type: Transform
- pos: 33.5,39.5
- parent: 2
- - uid: 10203
- components:
- - type: Transform
- pos: 33.5,38.5
- parent: 2
- - uid: 10204
- components:
- - type: Transform
- pos: 34.5,37.5
- parent: 2
- - uid: 10205
- components:
- - type: Transform
- pos: 33.5,37.5
- parent: 2
- - uid: 10206
- components:
- - type: Transform
- pos: 35.5,37.5
- parent: 2
- - uid: 10207
- components:
- - type: Transform
- pos: 35.5,37.5
- parent: 2
- - uid: 10208
- components:
- - type: Transform
- pos: 35.5,36.5
- parent: 2
- - uid: 10209
- components:
- - type: Transform
- pos: 35.5,35.5
- parent: 2
- - uid: 10210
- components:
- - type: Transform
- pos: 35.5,34.5
- parent: 2
- - uid: 10211
- components:
- - type: Transform
- pos: 35.5,33.5
- parent: 2
- - uid: 10212
- components:
- - type: Transform
- pos: 35.5,32.5
- parent: 2
- - uid: 10213
- components:
- - type: Transform
- pos: 29.5,39.5
- parent: 2
- - uid: 10214
- components:
- - type: Transform
- pos: 29.5,38.5
- parent: 2
- - uid: 10215
- components:
- - type: Transform
- pos: 29.5,37.5
- parent: 2
- - uid: 10216
- components:
- - type: Transform
- pos: 29.5,36.5
- parent: 2
- - uid: 10217
- components:
- - type: Transform
- pos: 28.5,36.5
- parent: 2
- - uid: 10218
- components:
- - type: Transform
- pos: 27.5,36.5
- parent: 2
- - uid: 10219
- components:
- - type: Transform
- pos: 26.5,36.5
- parent: 2
- - uid: 10220
- components:
- - type: Transform
- pos: 25.5,36.5
- parent: 2
- - uid: 10221
- components:
- - type: Transform
- pos: 24.5,36.5
- parent: 2
- - uid: 10222
- components:
- - type: Transform
- pos: 23.5,36.5
- parent: 2
- - uid: 10223
- components:
- - type: Transform
- pos: 22.5,36.5
- parent: 2
- - uid: 10224
- components:
- - type: Transform
- pos: 21.5,36.5
- parent: 2
- - uid: 10225
- components:
- - type: Transform
- pos: 21.5,35.5
- parent: 2
- - uid: 10226
- components:
- - type: Transform
- pos: 21.5,34.5
- parent: 2
- - uid: 10227
- components:
- - type: Transform
- pos: 21.5,33.5
- parent: 2
- - uid: 10228
- components:
- - type: Transform
- pos: 21.5,32.5
- parent: 2
- - uid: 10229
- components:
- - type: Transform
- pos: 9.5,55.5
- parent: 2
- - uid: 10230
- components:
- - type: Transform
- pos: 9.5,54.5
- parent: 2
- - uid: 10231
- components:
- - type: Transform
- pos: 9.5,53.5
- parent: 2
- - uid: 10232
- components:
- - type: Transform
- pos: 10.5,53.5
- parent: 2
- - uid: 10233
- components:
- - type: Transform
- pos: 20.5,50.5
- parent: 2
- - uid: 10234
- components:
- - type: Transform
- pos: 20.5,49.5
- parent: 2
- - uid: 10235
- components:
- - type: Transform
- pos: 20.5,48.5
- parent: 2
- - uid: 10236
- components:
- - type: Transform
- pos: 20.5,47.5
- parent: 2
- - uid: 10237
- components:
- - type: Transform
- pos: 20.5,46.5
- parent: 2
- - uid: 10238
- components:
- - type: Transform
- pos: 20.5,45.5
- parent: 2
- - uid: 10239
- components:
- - type: Transform
- pos: 19.5,45.5
- parent: 2
- - uid: 10240
- components:
- - type: Transform
- pos: 18.5,45.5
- parent: 2
- - uid: 10241
- components:
- - type: Transform
- pos: 17.5,45.5
- parent: 2
- - uid: 10242
- components:
- - type: Transform
- pos: 16.5,45.5
- parent: 2
- - uid: 10243
- components:
- - type: Transform
- pos: 15.5,45.5
- parent: 2
- - uid: 10244
- components:
- - type: Transform
- pos: 14.5,45.5
- parent: 2
- - uid: 10245
- components:
- - type: Transform
- pos: 13.5,45.5
- parent: 2
- - uid: 10246
- components:
- - type: Transform
- pos: 12.5,45.5
- parent: 2
- - uid: 10247
- components:
- - type: Transform
- pos: 11.5,45.5
- parent: 2
- - uid: 10248
- components:
- - type: Transform
- pos: 10.5,45.5
- parent: 2
- - uid: 10249
- components:
- - type: Transform
- pos: 9.5,45.5
- parent: 2
- - uid: 10250
- components:
- - type: Transform
- pos: 9.5,46.5
- parent: 2
- - uid: 10251
- components:
- - type: Transform
- pos: 9.5,47.5
- parent: 2
- - uid: 10252
- components:
- - type: Transform
- pos: 10.5,44.5
- parent: 2
- - uid: 10253
- components:
- - type: Transform
- pos: 10.5,43.5
- parent: 2
- - uid: 10254
- components:
- - type: Transform
- pos: 10.5,42.5
- parent: 2
- - uid: 10255
- components:
- - type: Transform
- pos: 10.5,41.5
- parent: 2
- - uid: 10256
- components:
- - type: Transform
- pos: 10.5,40.5
- parent: 2
- - uid: 10257
- components:
- - type: Transform
- pos: 9.5,40.5
- parent: 2
- - uid: 10258
- components:
- - type: Transform
- pos: 10.5,39.5
- parent: 2
- - uid: 10259
- components:
- - type: Transform
- pos: 10.5,38.5
- parent: 2
- - uid: 10260
- components:
- - type: Transform
- pos: 10.5,37.5
- parent: 2
- - uid: 10261
- components:
- - type: Transform
- pos: 10.5,36.5
- parent: 2
- - uid: 10262
- components:
- - type: Transform
- pos: 10.5,35.5
- parent: 2
- - uid: 10263
- components:
- - type: Transform
- pos: 7.5,38.5
- parent: 2
- - uid: 10264
- components:
- - type: Transform
- pos: 7.5,37.5
- parent: 2
- - uid: 10265
- components:
- - type: Transform
- pos: 7.5,36.5
- parent: 2
- - uid: 10266
- components:
- - type: Transform
- pos: 7.5,35.5
- parent: 2
- - uid: 10267
- components:
- - type: Transform
- pos: 8.5,35.5
- parent: 2
- - uid: 10268
- components:
- - type: Transform
- pos: 9.5,35.5
- parent: 2
- - uid: 10269
- components:
- - type: Transform
- pos: 6.5,35.5
- parent: 2
- - uid: 10270
- components:
- - type: Transform
- pos: 5.5,35.5
- parent: 2
- - uid: 10271
- components:
- - type: Transform
- pos: 4.5,35.5
- parent: 2
- - uid: 10272
- components:
- - type: Transform
- pos: 4.5,34.5
- parent: 2
- - uid: 10273
- components:
- - type: Transform
- pos: 4.5,33.5
- parent: 2
- - uid: 10274
- components:
- - type: Transform
- pos: 4.5,32.5
- parent: 2
- - uid: 10275
- components:
- - type: Transform
- pos: 4.5,31.5
- parent: 2
- - uid: 10276
- components:
- - type: Transform
- pos: 4.5,30.5
- parent: 2
- - uid: 10277
- components:
- - type: Transform
- pos: 4.5,29.5
- parent: 2
- - uid: 10278
- components:
- - type: Transform
- pos: 6.5,29.5
- parent: 2
- - uid: 10279
- components:
- - type: Transform
- pos: 7.5,29.5
- parent: 2
- - uid: 10280
- components:
- - type: Transform
- pos: 5.5,29.5
- parent: 2
- - uid: 10281
- components:
- - type: Transform
- pos: 7.5,30.5
- parent: 2
- - uid: 10282
- components:
- - type: Transform
- pos: 7.5,31.5
- parent: 2
- - uid: 10283
- components:
- - type: Transform
- pos: 7.5,32.5
- parent: 2
- - uid: 10284
- components:
- - type: Transform
- pos: 25.5,24.5
- parent: 2
- - uid: 10285
- components:
- - type: Transform
- pos: 24.5,24.5
- parent: 2
- - uid: 10286
- components:
- - type: Transform
- pos: 23.5,24.5
- parent: 2
- - uid: 10287
- components:
- - type: Transform
- pos: 22.5,24.5
- parent: 2
- - uid: 10288
- components:
- - type: Transform
- pos: 21.5,24.5
- parent: 2
- - uid: 10289
- components:
- - type: Transform
- pos: 21.5,25.5
- parent: 2
- - uid: 10290
- components:
- - type: Transform
- pos: 21.5,26.5
- parent: 2
- - uid: 10291
- components:
- - type: Transform
- pos: 21.5,27.5
- parent: 2
- - uid: 10292
- components:
- - type: Transform
- pos: 21.5,28.5
- parent: 2
- - uid: 10293
- components:
- - type: Transform
- pos: 21.5,29.5
- parent: 2
- - uid: 10294
- components:
- - type: Transform
- pos: 24.5,50.5
- parent: 2
- - uid: 10295
- components:
- - type: Transform
- pos: 23.5,50.5
- parent: 2
- - uid: 10296
- components:
- - type: Transform
- pos: 22.5,50.5
- parent: 2
- - uid: 10297
- components:
- - type: Transform
- pos: 21.5,50.5
- parent: 2
- - uid: 10298
- components:
- - type: Transform
- pos: 20.5,50.5
- parent: 2
- - uid: 10299
- components:
- - type: Transform
- pos: 11.5,53.5
- parent: 2
- - uid: 10300
- components:
- - type: Transform
- pos: 12.5,53.5
- parent: 2
- - uid: 10301
- components:
- - type: Transform
- pos: 13.5,53.5
- parent: 2
- - uid: 10302
- components:
- - type: Transform
- pos: 14.5,53.5
- parent: 2
- - uid: 10303
- components:
- - type: Transform
- pos: 15.5,53.5
- parent: 2
- - uid: 10304
- components:
- - type: Transform
- pos: 16.5,53.5
- parent: 2
- - uid: 10305
- components:
- - type: Transform
- pos: 17.5,53.5
- parent: 2
- - uid: 10306
- components:
- - type: Transform
- pos: 18.5,53.5
- parent: 2
- - uid: 10307
- components:
- - type: Transform
- pos: 19.5,53.5
- parent: 2
- - uid: 10308
- components:
- - type: Transform
- pos: 20.5,52.5
- parent: 2
- - uid: 10309
- components:
- - type: Transform
- pos: 20.5,51.5
- parent: 2
- - uid: 10310
- components:
- - type: Transform
- pos: 20.5,53.5
- parent: 2
- - uid: 10311
- components:
- - type: Transform
- pos: -20.5,-30.5
- parent: 2
- - uid: 10312
- components:
- - type: Transform
- pos: 76.5,-1.5
- parent: 2
- - uid: 10313
- components:
- - type: Transform
- pos: 76.5,-0.5
- parent: 2
- - uid: 10314
- components:
- - type: Transform
- pos: 75.5,-0.5
- parent: 2
- - uid: 10315
- components:
- - type: Transform
- pos: 74.5,-0.5
- parent: 2
- - uid: 10316
- components:
- - type: Transform
- pos: 73.5,-0.5
- parent: 2
- - uid: 10317
- components:
- - type: Transform
- pos: 73.5,0.5
- parent: 2
- - uid: 10318
- components:
- - type: Transform
- pos: 73.5,1.5
- parent: 2
- - uid: 10319
- components:
- - type: Transform
- pos: 73.5,2.5
- parent: 2
- - uid: 10320
- components:
- - type: Transform
- pos: 73.5,3.5
- parent: 2
- - uid: 10321
- components:
- - type: Transform
- pos: 72.5,3.5
- parent: 2
- - uid: 10322
- components:
- - type: Transform
- pos: 72.5,4.5
- parent: 2
- - uid: 10323
- components:
- - type: Transform
- pos: 93.5,24.5
- parent: 2
- - uid: 10324
- components:
- - type: Transform
- pos: 93.5,23.5
- parent: 2
- - uid: 10325
- components:
- - type: Transform
- pos: 92.5,23.5
- parent: 2
- - uid: 10326
- components:
- - type: Transform
- pos: 92.5,22.5
- parent: 2
- - uid: 10327
- components:
- - type: Transform
- pos: 92.5,21.5
- parent: 2
- - uid: 10328
- components:
- - type: Transform
- pos: 92.5,20.5
- parent: 2
- - uid: 10329
- components:
- - type: Transform
- pos: 92.5,19.5
- parent: 2
- - uid: 10330
- components:
- - type: Transform
- pos: 92.5,18.5
- parent: 2
- - uid: 10331
- components:
- - type: Transform
- pos: 92.5,17.5
- parent: 2
- - uid: 10332
- components:
- - type: Transform
- pos: 92.5,16.5
- parent: 2
- - uid: 10333
- components:
- - type: Transform
- pos: 92.5,15.5
- parent: 2
- - uid: 10334
- components:
- - type: Transform
- pos: 92.5,14.5
- parent: 2
- - uid: 10335
- components:
- - type: Transform
- pos: 92.5,13.5
- parent: 2
- - uid: 10336
- components:
- - type: Transform
- pos: 91.5,13.5
- parent: 2
- - uid: 10337
- components:
- - type: Transform
- pos: 90.5,13.5
- parent: 2
- - uid: 10338
- components:
- - type: Transform
- pos: 89.5,13.5
- parent: 2
- - uid: 10339
- components:
- - type: Transform
- pos: 88.5,13.5
- parent: 2
- - uid: 10340
- components:
- - type: Transform
- pos: 87.5,13.5
- parent: 2
- - uid: 10341
- components:
- - type: Transform
- pos: 86.5,13.5
- parent: 2
- - uid: 10342
- components:
- - type: Transform
- pos: 85.5,13.5
- parent: 2
- - uid: 10343
- components:
- - type: Transform
- pos: 84.5,13.5
- parent: 2
- - uid: 10344
- components:
- - type: Transform
- pos: 83.5,13.5
- parent: 2
- - uid: 10345
- components:
- - type: Transform
- pos: 83.5,12.5
- parent: 2
- - uid: 10346
- components:
- - type: Transform
- pos: 83.5,11.5
- parent: 2
- - uid: 10347
- components:
- - type: Transform
- pos: 83.5,10.5
- parent: 2
- - uid: 10348
- components:
- - type: Transform
- pos: 84.5,10.5
- parent: 2
- - uid: 10349
- components:
- - type: Transform
- pos: 85.5,10.5
- parent: 2
- - uid: 10350
- components:
- - type: Transform
- pos: 86.5,10.5
- parent: 2
- - uid: 10351
- components:
- - type: Transform
- pos: 86.5,11.5
- parent: 2
- - uid: 10352
- components:
- - type: Transform
- pos: 82.5,10.5
- parent: 2
- - uid: 10353
- components:
- - type: Transform
- pos: 82.5,9.5
- parent: 2
- - uid: 10354
- components:
- - type: Transform
- pos: 80.5,9.5
- parent: 2
- - uid: 10355
- components:
- - type: Transform
- pos: 79.5,9.5
- parent: 2
- - uid: 10356
- components:
- - type: Transform
- pos: 78.5,9.5
- parent: 2
- - uid: 10357
- components:
- - type: Transform
- pos: 77.5,9.5
- parent: 2
- - uid: 10358
- components:
- - type: Transform
- pos: 76.5,9.5
- parent: 2
- - uid: 10359
- components:
- - type: Transform
- pos: 75.5,9.5
- parent: 2
- - uid: 10360
- components:
- - type: Transform
- pos: 74.5,9.5
- parent: 2
- - uid: 10361
- components:
- - type: Transform
- pos: 73.5,9.5
- parent: 2
- - uid: 10362
- components:
- - type: Transform
- pos: 81.5,9.5
- parent: 2
- - uid: 10363
- components:
- - type: Transform
- pos: 73.5,10.5
- parent: 2
- - uid: 10364
- components:
- - type: Transform
- pos: 73.5,11.5
- parent: 2
- - uid: 10365
- components:
- - type: Transform
- pos: 73.5,12.5
- parent: 2
- - uid: 10366
- components:
- - type: Transform
- pos: 73.5,13.5
- parent: 2
- - uid: 10367
- components:
- - type: Transform
- pos: 72.5,13.5
- parent: 2
- - uid: 10368
- components:
- - type: Transform
- pos: 71.5,13.5
- parent: 2
- - uid: 10369
- components:
- - type: Transform
- pos: 70.5,13.5
- parent: 2
- - uid: 10370
- components:
- - type: Transform
- pos: 69.5,13.5
- parent: 2
- - uid: 10371
- components:
- - type: Transform
- pos: 69.5,14.5
- parent: 2
- - uid: 10372
- components:
- - type: Transform
- pos: 69.5,15.5
- parent: 2
- - uid: 10373
- components:
- - type: Transform
- pos: 69.5,16.5
- parent: 2
- - uid: 10374
- components:
- - type: Transform
- pos: 69.5,17.5
- parent: 2
- - uid: 10375
- components:
- - type: Transform
- pos: 72.5,5.5
- parent: 2
- - uid: 10376
- components:
- - type: Transform
- pos: 73.5,5.5
- parent: 2
- - uid: 10377
- components:
- - type: Transform
- pos: 73.5,6.5
- parent: 2
- - uid: 10378
- components:
- - type: Transform
- pos: 73.5,7.5
- parent: 2
- - uid: 10379
- components:
- - type: Transform
- pos: 73.5,8.5
- parent: 2
- - uid: 10380
- components:
- - type: Transform
- pos: 73.5,9.5
- parent: 2
- - uid: 10381
- components:
- - type: Transform
- pos: 73.5,4.5
- parent: 2
- - uid: 10382
- components:
- - type: Transform
- pos: 73.5,14.5
- parent: 2
- - uid: 10383
- components:
- - type: Transform
- pos: 73.5,15.5
- parent: 2
- - uid: 10384
- components:
- - type: Transform
- pos: 73.5,16.5
- parent: 2
- - uid: 10385
- components:
- - type: Transform
- pos: 73.5,17.5
- parent: 2
- - uid: 10386
- components:
- - type: Transform
- pos: 73.5,18.5
- parent: 2
- - uid: 10387
- components:
- - type: Transform
- pos: 73.5,19.5
- parent: 2
- - uid: 10388
- components:
- - type: Transform
- pos: 73.5,20.5
- parent: 2
- - uid: 10389
- components:
- - type: Transform
- pos: 73.5,21.5
- parent: 2
- - uid: 10390
- components:
- - type: Transform
- pos: 73.5,22.5
- parent: 2
- - uid: 10391
- components:
- - type: Transform
- pos: 73.5,23.5
- parent: 2
- - uid: 10392
- components:
- - type: Transform
- pos: 73.5,24.5
- parent: 2
- - uid: 10393
- components:
- - type: Transform
- pos: 85.5,7.5
- parent: 2
- - uid: 10394
- components:
- - type: Transform
- pos: 86.5,10.5
- parent: 2
- - uid: 10395
- components:
- - type: Transform
- pos: 92.5,11.5
- parent: 2
- - uid: 10396
- components:
- - type: Transform
- pos: 98.5,5.5
- parent: 2
- - uid: 10397
- components:
- - type: Transform
- pos: 85.5,5.5
- parent: 2
- - uid: 10398
- components:
- - type: Transform
- pos: 98.5,4.5
- parent: 2
- - uid: 10399
- components:
- - type: Transform
- pos: 98.5,2.5
- parent: 2
- - uid: 10400
- components:
- - type: Transform
- pos: 98.5,0.5
- parent: 2
- - uid: 10401
- components:
- - type: Transform
- pos: 92.5,10.5
- parent: 2
- - uid: 10402
- components:
- - type: Transform
- pos: 98.5,-1.5
- parent: 2
- - uid: 10403
- components:
- - type: Transform
- pos: 85.5,4.5
- parent: 2
- - uid: 10404
- components:
- - type: Transform
- pos: 85.5,8.5
- parent: 2
- - uid: 10405
- components:
- - type: Transform
- pos: 85.5,6.5
- parent: 2
- - uid: 10406
- components:
- - type: Transform
- pos: -59.5,-35.5
- parent: 2
- - uid: 10407
- components:
- - type: Transform
- pos: -22.5,-70.5
- parent: 2
- - uid: 10408
- components:
- - type: Transform
- pos: -58.5,-38.5
- parent: 2
- - uid: 10409
- components:
- - type: Transform
- pos: -58.5,-41.5
- parent: 2
- - uid: 10410
- components:
- - type: Transform
- pos: -58.5,-39.5
- parent: 2
- - uid: 10411
- components:
- - type: Transform
- pos: -58.5,-40.5
- parent: 2
- - uid: 10412
- components:
- - type: Transform
- pos: -58.5,-42.5
- parent: 2
- - uid: 10413
- components:
- - type: Transform
- pos: 74.5,-2.5
- parent: 2
- - uid: 10414
- components:
- - type: Transform
- pos: 74.5,-3.5
- parent: 2
- - uid: 10415
- components:
- - type: Transform
- pos: 73.5,-3.5
- parent: 2
- - uid: 10416
- components:
- - type: Transform
- pos: 72.5,-3.5
- parent: 2
- - uid: 10417
- components:
- - type: Transform
- pos: 71.5,-3.5
- parent: 2
- - uid: 10418
- components:
- - type: Transform
- pos: 70.5,-3.5
- parent: 2
- - uid: 10419
- components:
- - type: Transform
- pos: 69.5,-3.5
- parent: 2
- - uid: 10420
- components:
- - type: Transform
- pos: 69.5,-2.5
- parent: 2
- - uid: 10421
- components:
- - type: Transform
- pos: 69.5,-1.5
- parent: 2
- - uid: 10422
- components:
- - type: Transform
- pos: 69.5,-0.5
- parent: 2
- - uid: 10423
- components:
- - type: Transform
- pos: 68.5,-0.5
- parent: 2
- - uid: 10424
- components:
- - type: Transform
- pos: 67.5,0.5
- parent: 2
- - uid: 10425
- components:
- - type: Transform
- pos: 67.5,-0.5
- parent: 2
- - uid: 10426
- components:
- - type: Transform
- pos: 67.5,0.5
- parent: 2
- - uid: 10427
- components:
- - type: Transform
- pos: 66.5,0.5
- parent: 2
- - uid: 10428
- components:
- - type: Transform
- pos: 65.5,0.5
- parent: 2
- - uid: 10429
- components:
- - type: Transform
- pos: 64.5,0.5
- parent: 2
- - uid: 10430
- components:
- - type: Transform
- pos: 63.5,0.5
- parent: 2
- - uid: 10431
- components:
- - type: Transform
- pos: 65.5,28.5
- parent: 2
- - uid: 10432
- components:
- - type: Transform
- pos: 65.5,27.5
- parent: 2
- - uid: 10433
- components:
- - type: Transform
- pos: 65.5,26.5
- parent: 2
- - uid: 10434
- components:
- - type: Transform
- pos: 65.5,25.5
- parent: 2
- - uid: 10435
- components:
- - type: Transform
- pos: 66.5,25.5
- parent: 2
- - uid: 10436
- components:
- - type: Transform
- pos: 67.5,25.5
- parent: 2
- - uid: 10437
- components:
- - type: Transform
- pos: 68.5,25.5
- parent: 2
- - uid: 10438
- components:
- - type: Transform
- pos: 69.5,25.5
- parent: 2
- - uid: 10439
- components:
- - type: Transform
- pos: 69.5,24.5
- parent: 2
- - uid: 10440
- components:
- - type: Transform
- pos: 69.5,23.5
- parent: 2
- - uid: 10441
- components:
- - type: Transform
- pos: 69.5,22.5
- parent: 2
- - uid: 10442
- components:
- - type: Transform
- pos: 68.5,22.5
- parent: 2
- - uid: 10443
- components:
- - type: Transform
- pos: 67.5,22.5
- parent: 2
- - uid: 10444
- components:
- - type: Transform
- pos: 66.5,22.5
- parent: 2
- - uid: 10445
- components:
- - type: Transform
- pos: 65.5,22.5
- parent: 2
- - uid: 10446
- components:
- - type: Transform
- pos: 64.5,22.5
- parent: 2
- - uid: 10447
- components:
- - type: Transform
- pos: 63.5,22.5
- parent: 2
- - uid: 10448
- components:
- - type: Transform
- pos: 62.5,22.5
- parent: 2
- - uid: 10449
- components:
- - type: Transform
- pos: 61.5,22.5
- parent: 2
- - uid: 10450
- components:
- - type: Transform
- pos: 61.5,21.5
- parent: 2
- - uid: 10451
- components:
- - type: Transform
- pos: 64.5,25.5
- parent: 2
- - uid: 10452
- components:
- - type: Transform
- pos: 63.5,25.5
- parent: 2
- - uid: 10453
- components:
- - type: Transform
- pos: 62.5,25.5
- parent: 2
- - uid: 10454
- components:
- - type: Transform
- pos: 61.5,25.5
- parent: 2
- - uid: 10455
- components:
- - type: Transform
- pos: 60.5,25.5
- parent: 2
- - uid: 10456
- components:
- - type: Transform
- pos: 59.5,25.5
- parent: 2
- - uid: 10457
- components:
- - type: Transform
- pos: 58.5,25.5
- parent: 2
- - uid: 10458
- components:
- - type: Transform
- pos: 57.5,25.5
- parent: 2
- - uid: 10459
- components:
- - type: Transform
- pos: 56.5,25.5
- parent: 2
- - uid: 10460
- components:
- - type: Transform
- pos: 55.5,25.5
- parent: 2
- - uid: 10461
- components:
- - type: Transform
- pos: 54.5,25.5
- parent: 2
- - uid: 10462
- components:
- - type: Transform
- pos: 36.5,23.5
- parent: 2
- - uid: 10463
- components:
- - type: Transform
- pos: 36.5,22.5
- parent: 2
- - uid: 10464
- components:
- - type: Transform
- pos: 36.5,21.5
- parent: 2
- - uid: 10465
- components:
- - type: Transform
- pos: 36.5,20.5
- parent: 2
- - uid: 10466
- components:
- - type: Transform
- pos: 38.5,20.5
- parent: 2
- - uid: 10467
- components:
- - type: Transform
- pos: 37.5,20.5
- parent: 2
- - uid: 10468
- components:
- - type: Transform
- pos: 38.5,20.5
- parent: 2
- - uid: 10469
- components:
- - type: Transform
- pos: 39.5,20.5
- parent: 2
- - uid: 10470
- components:
- - type: Transform
- pos: 40.5,20.5
- parent: 2
- - uid: 10471
- components:
- - type: Transform
- pos: 41.5,20.5
- parent: 2
- - uid: 10472
- components:
- - type: Transform
- pos: 42.5,20.5
- parent: 2
- - uid: 10473
- components:
- - type: Transform
- pos: 43.5,20.5
- parent: 2
- - uid: 10474
- components:
- - type: Transform
- pos: 44.5,20.5
- parent: 2
- - uid: 10475
- components:
- - type: Transform
- pos: 45.5,20.5
- parent: 2
- - uid: 10476
- components:
- - type: Transform
- pos: 46.5,20.5
- parent: 2
- - uid: 10477
- components:
- - type: Transform
- pos: 54.5,26.5
- parent: 2
- - uid: 10478
- components:
- - type: Transform
- pos: 54.5,29.5
- parent: 2
- - uid: 10479
- components:
- - type: Transform
- pos: 54.5,28.5
- parent: 2
- - uid: 10480
- components:
- - type: Transform
- pos: 54.5,25.5
- parent: 2
- - uid: 10481
- components:
- - type: Transform
- pos: 54.5,27.5
- parent: 2
- - uid: 10482
- components:
- - type: Transform
- pos: 70.5,25.5
- parent: 2
- - uid: 10483
- components:
- - type: Transform
- pos: 71.5,25.5
- parent: 2
- - uid: 10484
- components:
- - type: Transform
- pos: 71.5,26.5
- parent: 2
- - uid: 10485
- components:
- - type: Transform
- pos: 71.5,27.5
- parent: 2
- - uid: 10486
- components:
- - type: Transform
- pos: 26.5,10.5
- parent: 2
- - uid: 10487
- components:
- - type: Transform
- pos: 26.5,9.5
- parent: 2
- - uid: 10488
- components:
- - type: Transform
- pos: 27.5,9.5
- parent: 2
- - uid: 10489
- components:
- - type: Transform
- pos: 28.5,9.5
- parent: 2
- - uid: 10490
- components:
- - type: Transform
- pos: 29.5,9.5
- parent: 2
- - uid: 10491
- components:
- - type: Transform
- pos: 29.5,8.5
- parent: 2
- - uid: 10492
- components:
- - type: Transform
- pos: 29.5,7.5
- parent: 2
- - uid: 10493
- components:
- - type: Transform
- pos: 29.5,6.5
- parent: 2
- - uid: 10494
- components:
- - type: Transform
- pos: 29.5,5.5
- parent: 2
- - uid: 10495
- components:
- - type: Transform
- pos: 28.5,5.5
- parent: 2
- - uid: 10496
- components:
- - type: Transform
- pos: 27.5,5.5
- parent: 2
- - uid: 10497
- components:
- - type: Transform
- pos: 26.5,5.5
- parent: 2
- - uid: 10498
- components:
- - type: Transform
- pos: 25.5,5.5
- parent: 2
- - uid: 10499
- components:
- - type: Transform
- pos: 24.5,5.5
- parent: 2
- - uid: 10500
- components:
- - type: Transform
- pos: 23.5,5.5
- parent: 2
- - uid: 10501
- components:
- - type: Transform
- pos: 22.5,5.5
- parent: 2
- - uid: 10502
- components:
- - type: Transform
- pos: 21.5,5.5
- parent: 2
- - uid: 10503
- components:
- - type: Transform
- pos: 20.5,5.5
- parent: 2
- - uid: 10504
- components:
- - type: Transform
- pos: 20.5,6.5
- parent: 2
- - uid: 10505
- components:
- - type: Transform
- pos: 20.5,7.5
- parent: 2
- - uid: 10506
- components:
- - type: Transform
- pos: 30.5,5.5
- parent: 2
- - uid: 10507
- components:
- - type: Transform
- pos: 31.5,5.5
- parent: 2
- - uid: 10508
- components:
- - type: Transform
- pos: 32.5,5.5
- parent: 2
- - uid: 10509
- components:
- - type: Transform
- pos: 32.5,4.5
- parent: 2
- - uid: 10510
- components:
- - type: Transform
- pos: 33.5,4.5
- parent: 2
- - uid: 10511
- components:
- - type: Transform
- pos: 34.5,4.5
- parent: 2
- - uid: 10512
- components:
- - type: Transform
- pos: 35.5,4.5
- parent: 2
- - uid: 10513
- components:
- - type: Transform
- pos: 36.5,4.5
- parent: 2
- - uid: 10514
- components:
- - type: Transform
- pos: 37.5,4.5
- parent: 2
- - uid: 10515
- components:
- - type: Transform
- pos: 38.5,4.5
- parent: 2
- - uid: 10516
- components:
- - type: Transform
- pos: 39.5,4.5
- parent: 2
- - uid: 10517
- components:
- - type: Transform
- pos: 40.5,4.5
- parent: 2
- - uid: 10518
- components:
- - type: Transform
- pos: 41.5,4.5
- parent: 2
- - uid: 10519
- components:
- - type: Transform
- pos: 42.5,4.5
- parent: 2
- - uid: 10520
- components:
- - type: Transform
- pos: 43.5,4.5
- parent: 2
- - uid: 10521
- components:
- - type: Transform
- pos: 44.5,4.5
- parent: 2
- - uid: 10522
- components:
- - type: Transform
- pos: 45.5,4.5
- parent: 2
- - uid: 10523
- components:
- - type: Transform
- pos: 46.5,4.5
- parent: 2
- - uid: 10524
- components:
- - type: Transform
- pos: 47.5,4.5
- parent: 2
- - uid: 10525
- components:
- - type: Transform
- pos: 47.5,3.5
- parent: 2
- - uid: 10526
- components:
- - type: Transform
- pos: 47.5,2.5
- parent: 2
- - uid: 10527
- components:
- - type: Transform
- pos: 47.5,1.5
- parent: 2
- - uid: 10528
- components:
- - type: Transform
- pos: 47.5,0.5
- parent: 2
- - uid: 10529
- components:
- - type: Transform
- pos: 48.5,0.5
- parent: 2
- - uid: 10530
- components:
- - type: Transform
- pos: 49.5,0.5
- parent: 2
- - uid: 10531
- components:
- - type: Transform
- pos: 50.5,0.5
- parent: 2
- - uid: 10532
- components:
- - type: Transform
- pos: 51.5,0.5
- parent: 2
- - uid: 10533
- components:
- - type: Transform
- pos: 52.5,0.5
- parent: 2
- - uid: 10534
- components:
- - type: Transform
- pos: 53.5,0.5
- parent: 2
- - uid: 10535
- components:
- - type: Transform
- pos: 54.5,0.5
- parent: 2
- - uid: 10536
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 2
- - uid: 10537
- components:
- - type: Transform
- pos: 56.5,0.5
- parent: 2
- - uid: 10538
- components:
- - type: Transform
- pos: 57.5,0.5
- parent: 2
- - uid: 10539
- components:
- - type: Transform
- pos: 58.5,0.5
- parent: 2
- - uid: 10540
- components:
- - type: Transform
- pos: 59.5,0.5
- parent: 2
- - uid: 10541
- components:
- - type: Transform
- pos: 60.5,0.5
- parent: 2
- - uid: 10542
- components:
- - type: Transform
- pos: 61.5,0.5
- parent: 2
- - uid: 10543
- components:
- - type: Transform
- pos: 62.5,0.5
- parent: 2
- - uid: 10544
- components:
- - type: Transform
- pos: 63.5,0.5
- parent: 2
- - uid: 10545
- components:
- - type: Transform
- pos: 47.5,5.5
- parent: 2
- - uid: 10546
- components:
- - type: Transform
- pos: 47.5,6.5
- parent: 2
- - uid: 10547
- components:
- - type: Transform
- pos: 47.5,7.5
- parent: 2
- - uid: 10548
- components:
- - type: Transform
- pos: 47.5,8.5
- parent: 2
- - uid: 10549
- components:
- - type: Transform
- pos: 47.5,9.5
- parent: 2
- - uid: 10550
- components:
- - type: Transform
- pos: 47.5,10.5
- parent: 2
- - uid: 10551
- components:
- - type: Transform
- pos: 47.5,11.5
- parent: 2
- - uid: 10552
- components:
- - type: Transform
- pos: 47.5,12.5
- parent: 2
- - uid: 10553
- components:
- - type: Transform
- pos: 47.5,13.5
- parent: 2
- - uid: 10554
- components:
- - type: Transform
- pos: 47.5,14.5
- parent: 2
- - uid: 10555
- components:
- - type: Transform
- pos: 47.5,15.5
- parent: 2
- - uid: 10556
- components:
- - type: Transform
- pos: 47.5,16.5
- parent: 2
- - uid: 10557
- components:
- - type: Transform
- pos: 47.5,17.5
- parent: 2
- - uid: 10558
- components:
- - type: Transform
- pos: 47.5,18.5
- parent: 2
- - uid: 10559
- components:
- - type: Transform
- pos: 47.5,19.5
- parent: 2
- - uid: 10560
- components:
- - type: Transform
- pos: 47.5,20.5
- parent: 2
- - uid: 10561
- components:
- - type: Transform
- pos: 45.5,25.5
- parent: 2
- - uid: 10562
- components:
- - type: Transform
- pos: 45.5,24.5
- parent: 2
- - uid: 10563
- components:
- - type: Transform
- pos: 45.5,23.5
- parent: 2
- - uid: 10564
- components:
- - type: Transform
- pos: 45.5,22.5
- parent: 2
- - uid: 10565
- components:
- - type: Transform
- pos: 45.5,21.5
- parent: 2
- - uid: 10566
- components:
- - type: Transform
- pos: 45.5,21.5
- parent: 2
- - uid: 10567
- components:
- - type: Transform
- pos: 56.5,20.5
- parent: 2
- - uid: 10568
- components:
- - type: Transform
- pos: 56.5,19.5
- parent: 2
- - uid: 10569
- components:
- - type: Transform
- pos: 56.5,18.5
- parent: 2
- - uid: 10570
- components:
- - type: Transform
- pos: 56.5,17.5
- parent: 2
- - uid: 10571
- components:
- - type: Transform
- pos: 55.5,17.5
- parent: 2
- - uid: 10572
- components:
- - type: Transform
- pos: 54.5,17.5
- parent: 2
- - uid: 10573
- components:
- - type: Transform
- pos: 53.5,17.5
- parent: 2
- - uid: 10574
- components:
- - type: Transform
- pos: 52.5,17.5
- parent: 2
- - uid: 10575
- components:
- - type: Transform
- pos: 51.5,17.5
- parent: 2
- - uid: 10576
- components:
- - type: Transform
- pos: 51.5,16.5
- parent: 2
- - uid: 10577
- components:
- - type: Transform
- pos: 50.5,16.5
- parent: 2
- - uid: 10578
- components:
- - type: Transform
- pos: 49.5,16.5
- parent: 2
- - uid: 10579
- components:
- - type: Transform
- pos: 48.5,16.5
- parent: 2
- - uid: 10580
- components:
- - type: Transform
- pos: 48.5,12.5
- parent: 2
- - uid: 10581
- components:
- - type: Transform
- pos: 49.5,12.5
- parent: 2
- - uid: 10582
- components:
- - type: Transform
- pos: 50.5,12.5
- parent: 2
- - uid: 10583
- components:
- - type: Transform
- pos: 51.5,12.5
- parent: 2
- - uid: 10584
- components:
- - type: Transform
- pos: 52.5,12.5
- parent: 2
- - uid: 10585
- components:
- - type: Transform
- pos: 53.5,12.5
- parent: 2
- - uid: 10586
- components:
- - type: Transform
- pos: 54.5,12.5
- parent: 2
- - uid: 10587
- components:
- - type: Transform
- pos: 55.5,12.5
- parent: 2
- - uid: 10588
- components:
- - type: Transform
- pos: 55.5,13.5
- parent: 2
- - uid: 10589
- components:
- - type: Transform
- pos: 55.5,13.5
- parent: 2
- - uid: 10590
- components:
- - type: Transform
- pos: 55.5,14.5
- parent: 2
- - uid: 10591
- components:
- - type: Transform
- pos: 55.5,10.5
- parent: 2
- - uid: 10592
- components:
- - type: Transform
- pos: 55.5,9.5
- parent: 2
- - uid: 10593
- components:
- - type: Transform
- pos: 55.5,8.5
- parent: 2
- - uid: 10594
- components:
- - type: Transform
- pos: 55.5,7.5
- parent: 2
- - uid: 10595
- components:
- - type: Transform
- pos: 55.5,6.5
- parent: 2
- - uid: 10596
- components:
- - type: Transform
- pos: 55.5,5.5
- parent: 2
- - uid: 10597
- components:
- - type: Transform
- pos: 55.5,4.5
- parent: 2
- - uid: 10598
- components:
- - type: Transform
- pos: 54.5,4.5
- parent: 2
- - uid: 10599
- components:
- - type: Transform
- pos: 53.5,4.5
- parent: 2
- - uid: 10600
- components:
- - type: Transform
- pos: 52.5,4.5
- parent: 2
- - uid: 10601
- components:
- - type: Transform
- pos: 51.5,4.5
- parent: 2
- - uid: 10602
- components:
- - type: Transform
- pos: 50.5,4.5
- parent: 2
- - uid: 10603
- components:
- - type: Transform
- pos: 49.5,4.5
- parent: 2
- - uid: 10604
- components:
- - type: Transform
- pos: 48.5,4.5
- parent: 2
- - uid: 10605
- components:
- - type: Transform
- pos: 47.5,4.5
- parent: 2
- - uid: 10606
- components:
- - type: Transform
- pos: 56.5,4.5
- parent: 2
- - uid: 10607
- components:
- - type: Transform
- pos: 57.5,4.5
- parent: 2
- - uid: 10608
- components:
- - type: Transform
- pos: 57.5,3.5
- parent: 2
- - uid: 10609
- components:
- - type: Transform
- pos: 57.5,2.5
- parent: 2
- - uid: 10610
- components:
- - type: Transform
- pos: 43.5,5.5
- parent: 2
- - uid: 10611
- components:
- - type: Transform
- pos: 43.5,6.5
- parent: 2
- - uid: 10612
- components:
- - type: Transform
- pos: 55.5,-8.5
- parent: 2
- - uid: 10613
- components:
- - type: Transform
- pos: 55.5,-9.5
- parent: 2
- - uid: 10614
- components:
- - type: Transform
- pos: 55.5,-10.5
- parent: 2
- - uid: 10615
- components:
- - type: Transform
- pos: 56.5,-10.5
- parent: 2
- - uid: 10616
- components:
- - type: Transform
- pos: 57.5,-10.5
- parent: 2
- - uid: 10617
- components:
- - type: Transform
- pos: 58.5,-10.5
- parent: 2
- - uid: 10618
- components:
- - type: Transform
- pos: 59.5,-10.5
- parent: 2
- - uid: 10619
- components:
- - type: Transform
- pos: 60.5,-10.5
- parent: 2
- - uid: 10620
- components:
- - type: Transform
- pos: 61.5,-10.5
- parent: 2
- - uid: 10621
- components:
- - type: Transform
- pos: 62.5,-10.5
- parent: 2
- - uid: 10622
- components:
- - type: Transform
- pos: 63.5,-10.5
- parent: 2
- - uid: 10623
- components:
- - type: Transform
- pos: 63.5,-11.5
- parent: 2
- - uid: 10624
- components:
- - type: Transform
- pos: 63.5,-12.5
- parent: 2
- - uid: 10625
- components:
- - type: Transform
- pos: 63.5,-13.5
- parent: 2
- - uid: 10626
- components:
- - type: Transform
- pos: 63.5,-14.5
- parent: 2
- - uid: 10627
- components:
- - type: Transform
- pos: 63.5,-15.5
- parent: 2
- - uid: 10628
- components:
- - type: Transform
- pos: 63.5,-16.5
- parent: 2
- - uid: 10629
- components:
- - type: Transform
- pos: 63.5,-17.5
- parent: 2
- - uid: 10630
- components:
- - type: Transform
- pos: 63.5,-18.5
- parent: 2
- - uid: 10631
- components:
- - type: Transform
- pos: 63.5,-19.5
- parent: 2
- - uid: 10632
- components:
- - type: Transform
- pos: 63.5,-20.5
- parent: 2
- - uid: 10633
- components:
- - type: Transform
- pos: 63.5,-21.5
- parent: 2
- - uid: 10634
- components:
- - type: Transform
- pos: 63.5,-22.5
- parent: 2
- - uid: 10635
- components:
- - type: Transform
- pos: 63.5,-23.5
- parent: 2
- - uid: 10636
- components:
- - type: Transform
- pos: 63.5,-24.5
- parent: 2
- - uid: 10637
- components:
- - type: Transform
- pos: 63.5,-25.5
- parent: 2
- - uid: 10638
- components:
- - type: Transform
- pos: 63.5,-26.5
- parent: 2
- - uid: 10639
- components:
- - type: Transform
- pos: 63.5,-27.5
- parent: 2
- - uid: 10640
- components:
- - type: Transform
- pos: 63.5,-28.5
- parent: 2
- - uid: 10641
- components:
- - type: Transform
- pos: 62.5,-28.5
- parent: 2
- - uid: 10642
- components:
- - type: Transform
- pos: 61.5,-28.5
- parent: 2
- - uid: 10643
- components:
- - type: Transform
- pos: 60.5,-28.5
- parent: 2
- - uid: 10644
- components:
- - type: Transform
- pos: 59.5,-28.5
- parent: 2
- - uid: 10645
- components:
- - type: Transform
- pos: 58.5,-28.5
- parent: 2
- - uid: 10646
- components:
- - type: Transform
- pos: 57.5,-28.5
- parent: 2
- - uid: 10647
- components:
- - type: Transform
- pos: 56.5,-28.5
- parent: 2
- - uid: 10648
- components:
- - type: Transform
- pos: 55.5,-28.5
- parent: 2
- - uid: 10649
- components:
- - type: Transform
- pos: 54.5,-28.5
- parent: 2
- - uid: 10650
- components:
- - type: Transform
- pos: 53.5,-28.5
- parent: 2
- - uid: 10651
- components:
- - type: Transform
- pos: 52.5,-28.5
- parent: 2
- - uid: 10652
- components:
- - type: Transform
- pos: 51.5,-28.5
- parent: 2
- - uid: 10653
- components:
- - type: Transform
- pos: 51.5,-29.5
- parent: 2
- - uid: 10654
- components:
- - type: Transform
- pos: 51.5,-30.5
- parent: 2
- - uid: 10655
- components:
- - type: Transform
- pos: 51.5,-31.5
- parent: 2
- - uid: 10656
- components:
- - type: Transform
- pos: 51.5,-32.5
- parent: 2
- - uid: 10657
- components:
- - type: Transform
- pos: 51.5,-33.5
- parent: 2
- - uid: 10658
- components:
- - type: Transform
- pos: 51.5,-34.5
- parent: 2
- - uid: 10659
- components:
- - type: Transform
- pos: 51.5,-35.5
- parent: 2
- - uid: 10660
- components:
- - type: Transform
- pos: 51.5,-36.5
- parent: 2
- - uid: 10661
- components:
- - type: Transform
- pos: 51.5,-37.5
- parent: 2
- - uid: 10662
- components:
- - type: Transform
- pos: 51.5,-38.5
- parent: 2
- - uid: 10663
- components:
- - type: Transform
- pos: 51.5,-39.5
- parent: 2
- - uid: 10664
- components:
- - type: Transform
- pos: 51.5,-40.5
- parent: 2
- - uid: 10665
- components:
- - type: Transform
- pos: 51.5,-41.5
- parent: 2
- - uid: 10666
- components:
- - type: Transform
- pos: 51.5,-42.5
- parent: 2
- - uid: 10667
- components:
- - type: Transform
- pos: 51.5,-43.5
- parent: 2
- - uid: 10668
- components:
- - type: Transform
- pos: 52.5,-43.5
- parent: 2
- - uid: 10669
- components:
- - type: Transform
- pos: 53.5,-43.5
- parent: 2
- - uid: 10670
- components:
- - type: Transform
- pos: 54.5,-43.5
- parent: 2
- - uid: 10671
- components:
- - type: Transform
- pos: 55.5,-43.5
- parent: 2
- - uid: 10672
- components:
- - type: Transform
- pos: 55.5,-42.5
- parent: 2
- - uid: 10673
- components:
- - type: Transform
- pos: 62.5,-16.5
- parent: 2
- - uid: 10674
- components:
- - type: Transform
- pos: 61.5,-16.5
- parent: 2
- - uid: 10675
- components:
- - type: Transform
- pos: 60.5,-16.5
- parent: 2
- - uid: 10676
- components:
- - type: Transform
- pos: 59.5,-16.5
- parent: 2
- - uid: 10677
- components:
- - type: Transform
- pos: 58.5,-16.5
- parent: 2
- - uid: 10678
- components:
- - type: Transform
- pos: 57.5,-16.5
- parent: 2
- - uid: 10679
- components:
- - type: Transform
- pos: 56.5,-16.5
- parent: 2
- - uid: 10680
- components:
- - type: Transform
- pos: 56.5,-17.5
- parent: 2
- - uid: 10681
- components:
- - type: Transform
- pos: 56.5,-18.5
- parent: 2
- - uid: 10682
- components:
- - type: Transform
- pos: 55.5,-18.5
- parent: 2
- - uid: 10683
- components:
- - type: Transform
- pos: 54.5,-18.5
- parent: 2
- - uid: 10684
- components:
- - type: Transform
- pos: 53.5,-18.5
- parent: 2
- - uid: 10685
- components:
- - type: Transform
- pos: 52.5,-18.5
- parent: 2
- - uid: 10686
- components:
- - type: Transform
- pos: 51.5,-18.5
- parent: 2
- - uid: 10687
- components:
- - type: Transform
- pos: 50.5,-18.5
- parent: 2
- - uid: 10688
- components:
- - type: Transform
- pos: 49.5,-18.5
- parent: 2
- - uid: 10689
- components:
- - type: Transform
- pos: 48.5,-18.5
- parent: 2
- - uid: 10690
- components:
- - type: Transform
- pos: 47.5,-18.5
- parent: 2
- - uid: 10691
- components:
- - type: Transform
- pos: 46.5,-18.5
- parent: 2
- - uid: 10692
- components:
- - type: Transform
- pos: 45.5,-18.5
- parent: 2
- - uid: 10693
- components:
- - type: Transform
- pos: 44.5,-18.5
- parent: 2
- - uid: 10694
- components:
- - type: Transform
- pos: 43.5,-18.5
- parent: 2
- - uid: 10695
- components:
- - type: Transform
- pos: 42.5,-18.5
- parent: 2
- - uid: 10696
- components:
- - type: Transform
- pos: 41.5,-18.5
- parent: 2
- - uid: 10697
- components:
- - type: Transform
- pos: 41.5,-17.5
- parent: 2
- - uid: 10698
- components:
- - type: Transform
- pos: 41.5,-16.5
- parent: 2
- - uid: 10699
- components:
- - type: Transform
- pos: 41.5,-15.5
- parent: 2
- - uid: 10700
- components:
- - type: Transform
- pos: 41.5,-14.5
- parent: 2
- - uid: 10701
- components:
- - type: Transform
- pos: 41.5,-13.5
- parent: 2
- - uid: 10702
- components:
- - type: Transform
- pos: 41.5,-12.5
- parent: 2
- - uid: 10703
- components:
- - type: Transform
- pos: 42.5,-12.5
- parent: 2
- - uid: 10704
- components:
- - type: Transform
- pos: 24.5,-8.5
- parent: 2
- - uid: 10705
- components:
- - type: Transform
- pos: 24.5,-9.5
- parent: 2
- - uid: 10706
- components:
- - type: Transform
- pos: 24.5,-10.5
- parent: 2
- - uid: 10707
- components:
- - type: Transform
- pos: 25.5,-10.5
- parent: 2
- - uid: 10708
- components:
- - type: Transform
- pos: 26.5,-10.5
- parent: 2
- - uid: 10709
- components:
- - type: Transform
- pos: 27.5,-10.5
- parent: 2
- - uid: 10710
- components:
- - type: Transform
- pos: 28.5,-10.5
- parent: 2
- - uid: 10711
- components:
- - type: Transform
- pos: 29.5,-10.5
- parent: 2
- - uid: 10712
- components:
- - type: Transform
- pos: 30.5,-10.5
- parent: 2
- - uid: 10713
- components:
- - type: Transform
- pos: 31.5,-10.5
- parent: 2
- - uid: 10714
- components:
- - type: Transform
- pos: 31.5,-11.5
- parent: 2
- - uid: 10715
- components:
- - type: Transform
- pos: 32.5,-11.5
- parent: 2
- - uid: 10716
- components:
- - type: Transform
- pos: 33.5,-11.5
- parent: 2
- - uid: 10717
- components:
- - type: Transform
- pos: 34.5,-11.5
- parent: 2
- - uid: 10718
- components:
- - type: Transform
- pos: 35.5,-11.5
- parent: 2
- - uid: 10719
- components:
- - type: Transform
- pos: 36.5,-11.5
- parent: 2
- - uid: 10720
- components:
- - type: Transform
- pos: 37.5,-11.5
- parent: 2
- - uid: 10721
- components:
- - type: Transform
- pos: 38.5,-11.5
- parent: 2
- - uid: 10722
- components:
- - type: Transform
- pos: 39.5,-11.5
- parent: 2
- - uid: 10723
- components:
- - type: Transform
- pos: 40.5,-11.5
- parent: 2
- - uid: 10724
- components:
- - type: Transform
- pos: 41.5,-11.5
- parent: 2
- - uid: 10725
- components:
- - type: Transform
- pos: 37.5,3.5
- parent: 2
- - uid: 10726
- components:
- - type: Transform
- pos: 37.5,2.5
- parent: 2
- - uid: 10727
- components:
- - type: Transform
- pos: 35.5,0.5
- parent: 2
- - uid: 10728
- components:
- - type: Transform
- pos: 37.5,0.5
- parent: 2
- - uid: 10729
- components:
- - type: Transform
- pos: 36.5,0.5
- parent: 2
- - uid: 10730
- components:
- - type: Transform
- pos: 36.5,-0.5
- parent: 2
- - uid: 10731
- components:
- - type: Transform
- pos: 36.5,-1.5
- parent: 2
- - uid: 10732
- components:
- - type: Transform
- pos: 36.5,-2.5
- parent: 2
- - uid: 10733
- components:
- - type: Transform
- pos: 36.5,-3.5
- parent: 2
- - uid: 10734
- components:
- - type: Transform
- pos: 38.5,-2.5
- parent: 2
- - uid: 10735
- components:
- - type: Transform
- pos: 38.5,-3.5
- parent: 2
- - uid: 10736
- components:
- - type: Transform
- pos: 37.5,-3.5
- parent: 2
- - uid: 10737
- components:
- - type: Transform
- pos: 44.5,-4.5
- parent: 2
- - uid: 10738
- components:
- - type: Transform
- pos: 44.5,-5.5
- parent: 2
- - uid: 10739
- components:
- - type: Transform
- pos: 44.5,-6.5
- parent: 2
- - uid: 10740
- components:
- - type: Transform
- pos: 44.5,-7.5
- parent: 2
- - uid: 10741
- components:
- - type: Transform
- pos: 44.5,-8.5
- parent: 2
- - uid: 10742
- components:
- - type: Transform
- pos: 44.5,-9.5
- parent: 2
- - uid: 10743
- components:
- - type: Transform
- pos: 44.5,-10.5
- parent: 2
- - uid: 10744
- components:
- - type: Transform
- pos: 45.5,-10.5
- parent: 2
- - uid: 10745
- components:
- - type: Transform
- pos: 46.5,-10.5
- parent: 2
- - uid: 10746
- components:
- - type: Transform
- pos: 47.5,-10.5
- parent: 2
- - uid: 10747
- components:
- - type: Transform
- pos: 48.5,-10.5
- parent: 2
- - uid: 10748
- components:
- - type: Transform
- pos: 49.5,-10.5
- parent: 2
- - uid: 10749
- components:
- - type: Transform
- pos: 50.5,-10.5
- parent: 2
- - uid: 10750
- components:
- - type: Transform
- pos: 51.5,-10.5
- parent: 2
- - uid: 10751
- components:
- - type: Transform
- pos: 52.5,-10.5
- parent: 2
- - uid: 10752
- components:
- - type: Transform
- pos: 53.5,-10.5
- parent: 2
- - uid: 10753
- components:
- - type: Transform
- pos: 53.5,-9.5
- parent: 2
- - uid: 10754
- components:
- - type: Transform
- pos: 53.5,-8.5
- parent: 2
- - uid: 10755
- components:
- - type: Transform
- pos: 53.5,-7.5
- parent: 2
- - uid: 10756
- components:
- - type: Transform
- pos: 53.5,-6.5
- parent: 2
- - uid: 10757
- components:
- - type: Transform
- pos: 37.5,1.5
- parent: 2
- - uid: 10758
- components:
- - type: Transform
- pos: 35.5,1.5
- parent: 2
- - uid: 10759
- components:
- - type: Transform
- pos: 34.5,1.5
- parent: 2
- - uid: 10760
- components:
- - type: Transform
- pos: 33.5,1.5
- parent: 2
- - uid: 10761
- components:
- - type: Transform
- pos: 32.5,1.5
- parent: 2
- - uid: 10762
- components:
- - type: Transform
- pos: 31.5,1.5
- parent: 2
- - uid: 10763
- components:
- - type: Transform
- pos: 30.5,1.5
- parent: 2
- - uid: 10764
- components:
- - type: Transform
- pos: 29.5,1.5
- parent: 2
- - uid: 10765
- components:
- - type: Transform
- pos: 28.5,1.5
- parent: 2
- - uid: 10766
- components:
- - type: Transform
- pos: 27.5,1.5
- parent: 2
- - uid: 10767
- components:
- - type: Transform
- pos: 26.5,2.5
- parent: 2
- - uid: 10768
- components:
- - type: Transform
- pos: 26.5,3.5
- parent: 2
- - uid: 10769
- components:
- - type: Transform
- pos: 26.5,1.5
- parent: 2
- - uid: 10770
- components:
- - type: Transform
- pos: -48.5,6.5
- parent: 2
- - uid: 10771
- components:
- - type: Transform
- pos: -47.5,6.5
- parent: 2
- - uid: 10772
- components:
- - type: Transform
- pos: 52.5,-0.5
- parent: 2
- - uid: 10773
- components:
- - type: Transform
- pos: 52.5,-1.5
- parent: 2
- - uid: 10774
- components:
- - type: Transform
- pos: 52.5,-2.5
- parent: 2
- - uid: 10775
- components:
- - type: Transform
- pos: 52.5,-3.5
- parent: 2
- - uid: 10776
- components:
- - type: Transform
- pos: 51.5,-3.5
- parent: 2
- - uid: 10777
- components:
- - type: Transform
- pos: 50.5,-3.5
- parent: 2
- - uid: 10778
- components:
- - type: Transform
- pos: 50.5,-2.5
- parent: 2
- - uid: 10779
- components:
- - type: Transform
- pos: 50.5,-1.5
- parent: 2
- - uid: 10780
- components:
- - type: Transform
- pos: 61.5,-0.5
- parent: 2
- - uid: 10781
- components:
- - type: Transform
- pos: 61.5,-1.5
- parent: 2
- - uid: 10782
- components:
- - type: Transform
- pos: 61.5,-2.5
- parent: 2
- - uid: 10783
- components:
- - type: Transform
- pos: 61.5,-3.5
- parent: 2
- - uid: 10784
- components:
- - type: Transform
- pos: 62.5,-3.5
- parent: 2
- - uid: 10785
- components:
- - type: Transform
- pos: 63.5,-3.5
- parent: 2
- - uid: 10786
- components:
- - type: Transform
- pos: 63.5,-2.5
- parent: 2
- - uid: 10787
- components:
- - type: Transform
- pos: 63.5,-1.5
- parent: 2
- - uid: 10788
- components:
- - type: Transform
- pos: 25.5,-11.5
- parent: 2
- - uid: 10789
- components:
- - type: Transform
- pos: 25.5,-12.5
- parent: 2
- - uid: 10790
- components:
- - type: Transform
- pos: 25.5,-13.5
- parent: 2
- - uid: 10791
- components:
- - type: Transform
- pos: 25.5,-14.5
- parent: 2
- - uid: 10792
- components:
- - type: Transform
- pos: 26.5,-14.5
- parent: 2
- - uid: 10793
- components:
- - type: Transform
- pos: 27.5,-14.5
- parent: 2
- - uid: 10794
- components:
- - type: Transform
- pos: 28.5,-14.5
- parent: 2
- - uid: 10795
- components:
- - type: Transform
- pos: 28.5,-13.5
- parent: 2
- - uid: 10796
- components:
- - type: Transform
- pos: 28.5,-12.5
- parent: 2
- - uid: 10797
- components:
- - type: Transform
- pos: -47.5,6.5
- parent: 2
- - uid: 10798
- components:
- - type: Transform
- pos: -47.5,7.5
- parent: 2
- - uid: 10799
- components:
- - type: Transform
- pos: -47.5,8.5
- parent: 2
- - uid: 10800
- components:
- - type: Transform
- pos: -47.5,9.5
- parent: 2
- - uid: 10801
- components:
- - type: Transform
- pos: -47.5,10.5
- parent: 2
- - uid: 10802
- components:
- - type: Transform
- pos: -44.5,6.5
- parent: 2
- - uid: 10803
- components:
- - type: Transform
- pos: -44.5,5.5
- parent: 2
- - uid: 10804
- components:
- - type: Transform
- pos: -44.5,4.5
- parent: 2
- - uid: 10805
- components:
- - type: Transform
- pos: -45.5,4.5
- parent: 2
- - uid: 10806
- components:
- - type: Transform
- pos: -46.5,4.5
- parent: 2
- - uid: 10807
- components:
- - type: Transform
- pos: -47.5,4.5
- parent: 2
- - uid: 10808
- components:
- - type: Transform
- pos: -48.5,4.5
- parent: 2
- - uid: 10809
- components:
- - type: Transform
- pos: -48.5,3.5
- parent: 2
- - uid: 10810
- components:
- - type: Transform
- pos: -48.5,2.5
- parent: 2
- - uid: 10811
- components:
- - type: Transform
- pos: -48.5,1.5
- parent: 2
- - uid: 10812
- components:
- - type: Transform
- pos: -60.5,0.5
- parent: 2
- - uid: 10813
- components:
- - type: Transform
- pos: -60.5,-0.5
- parent: 2
- - uid: 10814
- components:
- - type: Transform
- pos: -59.5,-0.5
- parent: 2
- - uid: 10815
- components:
- - type: Transform
- pos: -58.5,-0.5
- parent: 2
- - uid: 10816
- components:
- - type: Transform
- pos: -57.5,-0.5
- parent: 2
- - uid: 10817
- components:
- - type: Transform
- pos: -56.5,-0.5
- parent: 2
- - uid: 10818
- components:
- - type: Transform
- pos: -55.5,-0.5
- parent: 2
- - uid: 10819
- components:
- - type: Transform
- pos: -54.5,-0.5
- parent: 2
- - uid: 10820
- components:
- - type: Transform
- pos: -53.5,-0.5
- parent: 2
- - uid: 10821
- components:
- - type: Transform
- pos: -52.5,-0.5
- parent: 2
- - uid: 10822
- components:
- - type: Transform
- pos: -52.5,0.5
- parent: 2
- - uid: 10823
- components:
- - type: Transform
- pos: -52.5,1.5
- parent: 2
- - uid: 10824
- components:
- - type: Transform
- pos: -52.5,2.5
- parent: 2
- - uid: 10825
- components:
- - type: Transform
- pos: -52.5,3.5
- parent: 2
- - uid: 10826
- components:
- - type: Transform
- pos: -52.5,4.5
- parent: 2
- - uid: 10827
- components:
- - type: Transform
- pos: -52.5,5.5
- parent: 2
- - uid: 10828
- components:
- - type: Transform
- pos: -52.5,6.5
- parent: 2
- - uid: 10829
- components:
- - type: Transform
- pos: -52.5,7.5
- parent: 2
- - uid: 10830
- components:
- - type: Transform
- pos: -52.5,8.5
- parent: 2
- - uid: 10831
- components:
- - type: Transform
- pos: -52.5,9.5
- parent: 2
- - uid: 10832
- components:
- - type: Transform
- pos: -52.5,10.5
- parent: 2
- - uid: 10833
- components:
- - type: Transform
- pos: -52.5,11.5
- parent: 2
- - uid: 10834
- components:
- - type: Transform
- pos: -52.5,12.5
- parent: 2
- - uid: 10835
- components:
- - type: Transform
- pos: -51.5,12.5
- parent: 2
- - uid: 10836
- components:
- - type: Transform
- pos: -50.5,12.5
- parent: 2
- - uid: 10837
- components:
- - type: Transform
- pos: -49.5,12.5
- parent: 2
- - uid: 10838
- components:
- - type: Transform
- pos: -48.5,12.5
- parent: 2
- - uid: 10839
- components:
- - type: Transform
- pos: -47.5,12.5
- parent: 2
- - uid: 10840
- components:
- - type: Transform
- pos: -46.5,12.5
- parent: 2
- - uid: 10841
- components:
- - type: Transform
- pos: -46.5,13.5
- parent: 2
- - uid: 10842
- components:
- - type: Transform
- pos: -46.5,14.5
- parent: 2
- - uid: 10843
- components:
- - type: Transform
- pos: -46.5,15.5
- parent: 2
- - uid: 10844
- components:
- - type: Transform
- pos: -46.5,16.5
- parent: 2
- - uid: 10845
- components:
- - type: Transform
- pos: -62.5,12.5
- parent: 2
- - uid: 10846
- components:
- - type: Transform
- pos: -62.5,11.5
- parent: 2
- - uid: 10847
- components:
- - type: Transform
- pos: -62.5,10.5
- parent: 2
- - uid: 10848
- components:
- - type: Transform
- pos: -61.5,10.5
- parent: 2
- - uid: 10849
- components:
- - type: Transform
- pos: -60.5,10.5
- parent: 2
- - uid: 10850
- components:
- - type: Transform
- pos: -59.5,10.5
- parent: 2
- - uid: 10851
- components:
- - type: Transform
- pos: -58.5,10.5
- parent: 2
- - uid: 10852
- components:
- - type: Transform
- pos: -57.5,10.5
- parent: 2
- - uid: 10853
- components:
- - type: Transform
- pos: -56.5,10.5
- parent: 2
- - uid: 10854
- components:
- - type: Transform
- pos: -55.5,10.5
- parent: 2
- - uid: 10855
- components:
- - type: Transform
- pos: -54.5,10.5
- parent: 2
- - uid: 10856
- components:
- - type: Transform
- pos: -53.5,10.5
- parent: 2
- - uid: 10857
- components:
- - type: Transform
- pos: -60.5,-4.5
- parent: 2
- - uid: 10858
- components:
- - type: Transform
- pos: -60.5,-5.5
- parent: 2
- - uid: 10859
- components:
- - type: Transform
- pos: -60.5,-6.5
- parent: 2
- - uid: 10860
- components:
- - type: Transform
- pos: -60.5,-7.5
- parent: 2
- - uid: 10861
- components:
- - type: Transform
- pos: -60.5,-8.5
- parent: 2
- - uid: 10862
- components:
- - type: Transform
- pos: -59.5,-8.5
- parent: 2
- - uid: 10863
- components:
- - type: Transform
- pos: -58.5,-8.5
- parent: 2
- - uid: 10864
- components:
- - type: Transform
- pos: -57.5,-8.5
- parent: 2
- - uid: 10865
- components:
- - type: Transform
- pos: -56.5,-8.5
- parent: 2
- - uid: 10866
- components:
- - type: Transform
- pos: -55.5,-8.5
- parent: 2
- - uid: 10867
- components:
- - type: Transform
- pos: -54.5,-8.5
- parent: 2
- - uid: 10868
- components:
- - type: Transform
- pos: -53.5,-8.5
- parent: 2
- - uid: 10869
- components:
- - type: Transform
- pos: -52.5,-8.5
- parent: 2
- - uid: 10870
- components:
- - type: Transform
- pos: -52.5,-7.5
- parent: 2
- - uid: 10871
- components:
- - type: Transform
- pos: -52.5,-6.5
- parent: 2
- - uid: 10872
- components:
- - type: Transform
- pos: -52.5,-5.5
- parent: 2
- - uid: 10873
- components:
- - type: Transform
- pos: -52.5,-4.5
- parent: 2
- - uid: 10874
- components:
- - type: Transform
- pos: -52.5,-3.5
- parent: 2
- - uid: 10875
- components:
- - type: Transform
- pos: -52.5,-2.5
- parent: 2
- - uid: 10876
- components:
- - type: Transform
- pos: -52.5,-1.5
- parent: 2
- - uid: 10877
- components:
- - type: Transform
- pos: -52.5,-0.5
- parent: 2
- - uid: 10878
- components:
- - type: Transform
- pos: -65.5,-4.5
- parent: 2
- - uid: 10879
- components:
- - type: Transform
- pos: -65.5,-5.5
- parent: 2
- - uid: 10880
- components:
- - type: Transform
- pos: -65.5,-6.5
- parent: 2
- - uid: 10881
- components:
- - type: Transform
- pos: -64.5,-6.5
- parent: 2
- - uid: 10882
- components:
- - type: Transform
- pos: -63.5,-6.5
- parent: 2
- - uid: 10883
- components:
- - type: Transform
- pos: -62.5,-6.5
- parent: 2
- - uid: 10884
- components:
- - type: Transform
- pos: -61.5,-6.5
- parent: 2
- - uid: 10885
- components:
- - type: Transform
- pos: -60.5,-6.5
- parent: 2
- - uid: 10886
- components:
- - type: Transform
- pos: -67.5,3.5
- parent: 2
- - uid: 10887
- components:
- - type: Transform
- pos: -67.5,2.5
- parent: 2
- - uid: 10888
- components:
- - type: Transform
- pos: -68.5,2.5
- parent: 2
- - uid: 10889
- components:
- - type: Transform
- pos: -68.5,1.5
- parent: 2
- - uid: 10890
- components:
- - type: Transform
- pos: -68.5,0.5
- parent: 2
- - uid: 10891
- components:
- - type: Transform
- pos: -68.5,-0.5
- parent: 2
- - uid: 10892
- components:
- - type: Transform
- pos: -68.5,-1.5
- parent: 2
- - uid: 10893
- components:
- - type: Transform
- pos: -68.5,-2.5
- parent: 2
- - uid: 10894
- components:
- - type: Transform
- pos: -68.5,-4.5
- parent: 2
- - uid: 10895
- components:
- - type: Transform
- pos: -68.5,-3.5
- parent: 2
- - uid: 10896
- components:
- - type: Transform
- pos: -67.5,-6.5
- parent: 2
- - uid: 10897
- components:
- - type: Transform
- pos: -66.5,-6.5
- parent: 2
- - uid: 10898
- components:
- - type: Transform
- pos: -68.5,-5.5
- parent: 2
- - uid: 10899
- components:
- - type: Transform
- pos: -68.5,-6.5
- parent: 2
- - uid: 10900
- components:
- - type: Transform
- pos: -51.5,1.5
- parent: 2
- - uid: 10901
- components:
- - type: Transform
- pos: -51.5,1.5
- parent: 2
- - uid: 10902
- components:
- - type: Transform
- pos: -50.5,1.5
- parent: 2
- - uid: 10903
- components:
- - type: Transform
- pos: -49.5,1.5
- parent: 2
- - uid: 10904
- components:
- - type: Transform
- pos: -56.5,21.5
- parent: 2
- - uid: 10905
- components:
- - type: Transform
- pos: -56.5,20.5
- parent: 2
- - uid: 10906
- components:
- - type: Transform
- pos: -57.5,20.5
- parent: 2
- - uid: 10907
- components:
- - type: Transform
- pos: -57.5,19.5
- parent: 2
- - uid: 10908
- components:
- - type: Transform
- pos: -57.5,18.5
- parent: 2
- - uid: 10909
- components:
- - type: Transform
- pos: -57.5,17.5
- parent: 2
- - uid: 10910
- components:
- - type: Transform
- pos: -57.5,16.5
- parent: 2
- - uid: 10911
- components:
- - type: Transform
- pos: -57.5,15.5
- parent: 2
- - uid: 10912
- components:
- - type: Transform
- pos: -57.5,14.5
- parent: 2
- - uid: 10913
- components:
- - type: Transform
- pos: -57.5,13.5
- parent: 2
- - uid: 10914
- components:
- - type: Transform
- pos: -57.5,12.5
- parent: 2
- - uid: 10915
- components:
- - type: Transform
- pos: -57.5,11.5
- parent: 2
- - uid: 10916
- components:
- - type: Transform
- pos: -58.5,14.5
- parent: 2
- - uid: 10917
- components:
- - type: Transform
- pos: -59.5,14.5
- parent: 2
- - uid: 10918
- components:
- - type: Transform
- pos: -60.5,14.5
- parent: 2
- - uid: 10919
- components:
- - type: Transform
- pos: -61.5,14.5
- parent: 2
- - uid: 10920
- components:
- - type: Transform
- pos: -62.5,14.5
- parent: 2
- - uid: 10921
- components:
- - type: Transform
- pos: -62.5,15.5
- parent: 2
- - uid: 10922
- components:
- - type: Transform
- pos: -62.5,16.5
- parent: 2
- - uid: 10923
- components:
- - type: Transform
- pos: -62.5,17.5
- parent: 2
- - uid: 10924
- components:
- - type: Transform
- pos: -62.5,18.5
- parent: 2
- - uid: 10925
- components:
- - type: Transform
- pos: -62.5,19.5
- parent: 2
- - uid: 10926
- components:
- - type: Transform
- pos: -77.5,17.5
- parent: 2
- - uid: 10927
- components:
- - type: Transform
- pos: -77.5,16.5
- parent: 2
- - uid: 10928
- components:
- - type: Transform
- pos: -77.5,15.5
- parent: 2
- - uid: 10929
- components:
- - type: Transform
- pos: -76.5,15.5
- parent: 2
- - uid: 10930
- components:
- - type: Transform
- pos: -75.5,15.5
- parent: 2
- - uid: 10931
- components:
- - type: Transform
- pos: -74.5,15.5
- parent: 2
- - uid: 10932
- components:
- - type: Transform
- pos: -73.5,15.5
- parent: 2
- - uid: 10933
- components:
- - type: Transform
- pos: -72.5,15.5
- parent: 2
- - uid: 10934
- components:
- - type: Transform
- pos: -71.5,15.5
- parent: 2
- - uid: 10935
- components:
- - type: Transform
- pos: -70.5,15.5
- parent: 2
- - uid: 10936
- components:
- - type: Transform
- pos: -69.5,15.5
- parent: 2
- - uid: 10937
- components:
- - type: Transform
- pos: -68.5,15.5
- parent: 2
- - uid: 10938
- components:
- - type: Transform
- pos: -67.5,15.5
- parent: 2
- - uid: 10939
- components:
- - type: Transform
- pos: -66.5,15.5
- parent: 2
- - uid: 10940
- components:
- - type: Transform
- pos: -65.5,15.5
- parent: 2
- - uid: 10941
- components:
- - type: Transform
- pos: -64.5,15.5
- parent: 2
- - uid: 10942
- components:
- - type: Transform
- pos: -63.5,15.5
- parent: 2
- - uid: 10943
- components:
- - type: Transform
- pos: -123.5,24.5
- parent: 2
- - uid: 10944
- components:
- - type: Transform
- pos: -123.5,23.5
- parent: 2
- - uid: 10945
- components:
- - type: Transform
- pos: -122.5,23.5
- parent: 2
- - uid: 10946
- components:
- - type: Transform
- pos: -121.5,23.5
- parent: 2
- - uid: 10947
- components:
- - type: Transform
- pos: -120.5,23.5
- parent: 2
- - uid: 10948
- components:
- - type: Transform
- pos: -119.5,23.5
- parent: 2
- - uid: 10949
- components:
- - type: Transform
- pos: -118.5,23.5
- parent: 2
- - uid: 10950
- components:
- - type: Transform
- pos: -118.5,23.5
- parent: 2
- - uid: 10951
- components:
- - type: Transform
- pos: -118.5,22.5
- parent: 2
- - uid: 10952
- components:
- - type: Transform
- pos: -118.5,21.5
- parent: 2
- - uid: 10953
- components:
- - type: Transform
- pos: -118.5,20.5
- parent: 2
- - uid: 10954
- components:
- - type: Transform
- pos: -118.5,24.5
- parent: 2
- - uid: 10955
- components:
- - type: Transform
- pos: -118.5,25.5
- parent: 2
- - uid: 10956
- components:
- - type: Transform
- pos: -118.5,26.5
- parent: 2
- - uid: 10957
- components:
- - type: Transform
- pos: -118.5,27.5
- parent: 2
- - uid: 10958
- components:
- - type: Transform
- pos: -118.5,28.5
- parent: 2
- - uid: 10959
- components:
- - type: Transform
- pos: -118.5,29.5
- parent: 2
- - uid: 10960
- components:
- - type: Transform
- pos: -118.5,30.5
- parent: 2
- - uid: 10961
- components:
- - type: Transform
- pos: -118.5,31.5
- parent: 2
- - uid: 10962
- components:
- - type: Transform
- pos: -118.5,32.5
- parent: 2
- - uid: 10963
- components:
- - type: Transform
- pos: -118.5,33.5
- parent: 2
- - uid: 10964
- components:
- - type: Transform
- pos: -118.5,34.5
- parent: 2
- - uid: 10965
- components:
- - type: Transform
- pos: -118.5,35.5
- parent: 2
- - uid: 10966
- components:
- - type: Transform
- pos: -118.5,36.5
- parent: 2
- - uid: 10967
- components:
- - type: Transform
- pos: -118.5,37.5
- parent: 2
- - uid: 10968
- components:
- - type: Transform
- pos: -118.5,38.5
- parent: 2
- - uid: 10969
- components:
- - type: Transform
- pos: -118.5,39.5
- parent: 2
- - uid: 10970
- components:
- - type: Transform
- pos: -118.5,40.5
- parent: 2
- - uid: 10971
- components:
- - type: Transform
- pos: -118.5,41.5
- parent: 2
- - uid: 10972
- components:
- - type: Transform
- pos: -118.5,42.5
- parent: 2
- - uid: 10973
- components:
- - type: Transform
- pos: -118.5,43.5
- parent: 2
- - uid: 10974
- components:
- - type: Transform
- pos: -118.5,44.5
- parent: 2
- - uid: 10975
- components:
- - type: Transform
- pos: -118.5,45.5
- parent: 2
- - uid: 10976
- components:
- - type: Transform
- pos: -118.5,46.5
- parent: 2
- - uid: 10977
- components:
- - type: Transform
- pos: -118.5,47.5
- parent: 2
- - uid: 10978
- components:
- - type: Transform
- pos: -118.5,48.5
- parent: 2
- - uid: 10979
- components:
- - type: Transform
- pos: -118.5,49.5
- parent: 2
- - uid: 10980
- components:
- - type: Transform
- pos: -118.5,50.5
- parent: 2
- - uid: 10981
- components:
- - type: Transform
- pos: -118.5,51.5
- parent: 2
- - uid: 10982
- components:
- - type: Transform
- pos: -119.5,40.5
- parent: 2
- - uid: 10983
- components:
- - type: Transform
- pos: -120.5,40.5
- parent: 2
- - uid: 10984
- components:
- - type: Transform
- pos: -121.5,40.5
- parent: 2
- - uid: 10985
- components:
- - type: Transform
- pos: -122.5,40.5
- parent: 2
- - uid: 10986
- components:
- - type: Transform
- pos: -123.5,40.5
- parent: 2
- - uid: 10987
- components:
- - type: Transform
- pos: -123.5,41.5
- parent: 2
- - uid: 10988
- components:
- - type: Transform
- pos: -123.5,42.5
- parent: 2
- - uid: 10989
- components:
- - type: Transform
- pos: -123.5,43.5
- parent: 2
- - uid: 10990
- components:
- - type: Transform
- pos: -123.5,44.5
- parent: 2
- - uid: 10991
- components:
- - type: Transform
- pos: -117.5,40.5
- parent: 2
- - uid: 10992
- components:
- - type: Transform
- pos: -116.5,40.5
- parent: 2
- - uid: 10993
- components:
- - type: Transform
- pos: -115.5,40.5
- parent: 2
- - uid: 10994
- components:
- - type: Transform
- pos: -114.5,40.5
- parent: 2
- - uid: 10995
- components:
- - type: Transform
- pos: -113.5,40.5
- parent: 2
- - uid: 10996
- components:
- - type: Transform
- pos: -113.5,41.5
- parent: 2
- - uid: 10997
- components:
- - type: Transform
- pos: -113.5,42.5
- parent: 2
- - uid: 10998
- components:
- - type: Transform
- pos: -113.5,43.5
- parent: 2
- - uid: 10999
- components:
- - type: Transform
- pos: -113.5,44.5
- parent: 2
- - uid: 11000
- components:
- - type: Transform
- pos: -69.5,13.5
- parent: 2
- - uid: 11001
- components:
- - type: Transform
- pos: -69.5,12.5
- parent: 2
- - uid: 11002
- components:
- - type: Transform
- pos: -69.5,11.5
- parent: 2
- - uid: 11003
- components:
- - type: Transform
- pos: -69.5,10.5
- parent: 2
- - uid: 11004
- components:
- - type: Transform
- pos: -70.5,10.5
- parent: 2
- - uid: 11005
- components:
- - type: Transform
- pos: -71.5,10.5
- parent: 2
- - uid: 11006
- components:
- - type: Transform
- pos: -72.5,10.5
- parent: 2
- - uid: 11007
- components:
- - type: Transform
- pos: -73.5,10.5
- parent: 2
- - uid: 11008
- components:
- - type: Transform
- pos: -65.5,57.5
- parent: 2
- - uid: 11009
- components:
- - type: Transform
- pos: -65.5,56.5
- parent: 2
- - uid: 11010
- components:
- - type: Transform
- pos: -65.5,55.5
- parent: 2
- - uid: 11011
- components:
- - type: Transform
- pos: -64.5,55.5
- parent: 2
- - uid: 11012
- components:
- - type: Transform
- pos: -63.5,55.5
- parent: 2
- - uid: 11013
- components:
- - type: Transform
- pos: -62.5,55.5
- parent: 2
- - uid: 11014
- components:
- - type: Transform
- pos: -61.5,55.5
- parent: 2
- - uid: 11015
- components:
- - type: Transform
- pos: -61.5,56.5
- parent: 2
- - uid: 11016
- components:
- - type: Transform
- pos: -61.5,57.5
- parent: 2
- - uid: 11017
- components:
- - type: Transform
- pos: -60.5,57.5
- parent: 2
- - uid: 11018
- components:
- - type: Transform
- pos: -59.5,57.5
- parent: 2
- - uid: 11019
- components:
- - type: Transform
- pos: -58.5,57.5
- parent: 2
- - uid: 11020
- components:
- - type: Transform
- pos: -57.5,60.5
- parent: 2
- - uid: 11021
- components:
- - type: Transform
- pos: -58.5,60.5
- parent: 2
- - uid: 11022
- components:
- - type: Transform
- pos: -58.5,59.5
- parent: 2
- - uid: 11023
- components:
- - type: Transform
- pos: -58.5,58.5
- parent: 2
- - uid: 11024
- components:
- - type: Transform
- pos: -58.5,56.5
- parent: 2
- - uid: 11025
- components:
- - type: Transform
- pos: -58.5,55.5
- parent: 2
- - uid: 11026
- components:
- - type: Transform
- pos: -58.5,54.5
- parent: 2
- - uid: 11027
- components:
- - type: Transform
- pos: -58.5,53.5
- parent: 2
- - uid: 11028
- components:
- - type: Transform
- pos: -58.5,52.5
- parent: 2
- - uid: 11029
- components:
- - type: Transform
- pos: -58.5,51.5
- parent: 2
- - uid: 11030
- components:
- - type: Transform
- pos: -58.5,50.5
- parent: 2
- - uid: 11031
- components:
- - type: Transform
- pos: -58.5,49.5
- parent: 2
- - uid: 11032
- components:
- - type: Transform
- pos: -58.5,48.5
- parent: 2
- - uid: 11033
- components:
- - type: Transform
- pos: -58.5,47.5
- parent: 2
- - uid: 11034
- components:
- - type: Transform
- pos: -58.5,46.5
- parent: 2
- - uid: 11035
- components:
- - type: Transform
- pos: -58.5,45.5
- parent: 2
- - uid: 11036
- components:
- - type: Transform
- pos: -57.5,45.5
- parent: 2
- - uid: 11037
- components:
- - type: Transform
- pos: -56.5,45.5
- parent: 2
- - uid: 11038
- components:
- - type: Transform
- pos: -55.5,45.5
- parent: 2
- - uid: 11039
- components:
- - type: Transform
- pos: -54.5,45.5
- parent: 2
- - uid: 11040
- components:
- - type: Transform
- pos: -53.5,45.5
- parent: 2
- - uid: 11041
- components:
- - type: Transform
- pos: -52.5,45.5
- parent: 2
- - uid: 11042
- components:
- - type: Transform
- pos: -51.5,45.5
- parent: 2
- - uid: 11043
- components:
- - type: Transform
- pos: -50.5,45.5
- parent: 2
- - uid: 11044
- components:
- - type: Transform
- pos: -49.5,45.5
- parent: 2
- - uid: 11045
- components:
- - type: Transform
- pos: -48.5,45.5
- parent: 2
- - uid: 11046
- components:
- - type: Transform
- pos: -47.5,45.5
- parent: 2
- - uid: 11047
- components:
- - type: Transform
- pos: -46.5,45.5
- parent: 2
- - uid: 11048
- components:
- - type: Transform
- pos: -45.5,45.5
- parent: 2
- - uid: 11049
- components:
- - type: Transform
- pos: -44.5,45.5
- parent: 2
- - uid: 11050
- components:
- - type: Transform
- pos: -44.5,49.5
- parent: 2
- - uid: 11051
- components:
- - type: Transform
- pos: -44.5,48.5
- parent: 2
- - uid: 11052
- components:
- - type: Transform
- pos: -44.5,47.5
- parent: 2
- - uid: 11053
- components:
- - type: Transform
- pos: -44.5,46.5
- parent: 2
- - uid: 11054
- components:
- - type: Transform
- pos: -50.5,39.5
- parent: 2
- - uid: 11055
- components:
- - type: Transform
- pos: -49.5,39.5
- parent: 2
- - uid: 11056
- components:
- - type: Transform
- pos: -49.5,40.5
- parent: 2
- - uid: 11057
- components:
- - type: Transform
- pos: -49.5,41.5
- parent: 2
- - uid: 11058
- components:
- - type: Transform
- pos: -49.5,42.5
- parent: 2
- - uid: 11059
- components:
- - type: Transform
- pos: -50.5,41.5
- parent: 2
- - uid: 11060
- components:
- - type: Transform
- pos: -51.5,41.5
- parent: 2
- - uid: 11061
- components:
- - type: Transform
- pos: -52.5,41.5
- parent: 2
- - uid: 11062
- components:
- - type: Transform
- pos: -53.5,41.5
- parent: 2
- - uid: 11063
- components:
- - type: Transform
- pos: -54.5,41.5
- parent: 2
- - uid: 11064
- components:
- - type: Transform
- pos: -55.5,41.5
- parent: 2
- - uid: 11065
- components:
- - type: Transform
- pos: -56.5,41.5
- parent: 2
- - uid: 11066
- components:
- - type: Transform
- pos: -57.5,41.5
- parent: 2
- - uid: 11067
- components:
- - type: Transform
- pos: -58.5,41.5
- parent: 2
- - uid: 11068
- components:
- - type: Transform
- pos: -59.5,41.5
- parent: 2
- - uid: 11069
- components:
- - type: Transform
- pos: -60.5,41.5
- parent: 2
- - uid: 11070
- components:
- - type: Transform
- pos: -60.5,42.5
- parent: 2
- - uid: 11071
- components:
- - type: Transform
- pos: -60.5,43.5
- parent: 2
- - uid: 11072
- components:
- - type: Transform
- pos: -54.5,40.5
- parent: 2
- - uid: 11073
- components:
- - type: Transform
- pos: -56.5,39.5
- parent: 2
- - uid: 11074
- components:
- - type: Transform
- pos: -56.5,38.5
- parent: 2
- - uid: 11075
- components:
- - type: Transform
- pos: -55.5,38.5
- parent: 2
- - uid: 11076
- components:
- - type: Transform
- pos: -54.5,38.5
- parent: 2
- - uid: 11077
- components:
- - type: Transform
- pos: -54.5,37.5
- parent: 2
- - uid: 11078
- components:
- - type: Transform
- pos: -54.5,36.5
- parent: 2
- - uid: 11079
- components:
- - type: Transform
- pos: -54.5,35.5
- parent: 2
- - uid: 11080
- components:
- - type: Transform
- pos: -54.5,34.5
- parent: 2
- - uid: 11081
- components:
- - type: Transform
- pos: -54.5,33.5
- parent: 2
- - uid: 11082
- components:
- - type: Transform
- pos: -54.5,32.5
- parent: 2
- - uid: 11083
- components:
- - type: Transform
- pos: -54.5,31.5
- parent: 2
- - uid: 11084
- components:
- - type: Transform
- pos: -54.5,30.5
- parent: 2
- - uid: 11085
- components:
- - type: Transform
- pos: -53.5,30.5
- parent: 2
- - uid: 11086
- components:
- - type: Transform
- pos: -52.5,30.5
- parent: 2
- - uid: 11087
- components:
- - type: Transform
- pos: -52.5,31.5
- parent: 2
- - uid: 11088
- components:
- - type: Transform
- pos: -51.5,30.5
- parent: 2
- - uid: 11089
- components:
- - type: Transform
- pos: -50.5,30.5
- parent: 2
- - uid: 11090
- components:
- - type: Transform
- pos: -49.5,30.5
- parent: 2
- - uid: 11091
- components:
- - type: Transform
- pos: -48.5,30.5
- parent: 2
- - uid: 11092
- components:
- - type: Transform
- pos: -47.5,30.5
- parent: 2
- - uid: 11093
- components:
- - type: Transform
- pos: -46.5,30.5
- parent: 2
- - uid: 11094
- components:
- - type: Transform
- pos: -46.5,31.5
- parent: 2
- - uid: 11095
- components:
- - type: Transform
- pos: -46.5,32.5
- parent: 2
- - uid: 11096
- components:
- - type: Transform
- pos: -46.5,33.5
- parent: 2
- - uid: 11097
- components:
- - type: Transform
- pos: -46.5,34.5
- parent: 2
- - uid: 11098
- components:
- - type: Transform
- pos: -54.5,29.5
- parent: 2
- - uid: 11099
- components:
- - type: Transform
- pos: -54.5,28.5
- parent: 2
- - uid: 11100
- components:
- - type: Transform
- pos: -55.5,28.5
- parent: 2
- - uid: 11101
- components:
- - type: Transform
- pos: -56.5,28.5
- parent: 2
- - uid: 11102
- components:
- - type: Transform
- pos: -56.5,27.5
- parent: 2
- - uid: 11103
- components:
- - type: Transform
- pos: -56.5,26.5
- parent: 2
- - uid: 11104
- components:
- - type: Transform
- pos: -56.5,26.5
- parent: 2
- - uid: 11105
- components:
- - type: Transform
- pos: -56.5,25.5
- parent: 2
- - uid: 11106
- components:
- - type: Transform
- pos: -56.5,24.5
- parent: 2
- - uid: 11107
- components:
- - type: Transform
- pos: -55.5,24.5
- parent: 2
- - uid: 11108
- components:
- - type: Transform
- pos: -54.5,24.5
- parent: 2
- - uid: 11109
- components:
- - type: Transform
- pos: -53.5,24.5
- parent: 2
- - uid: 11110
- components:
- - type: Transform
- pos: -52.5,24.5
- parent: 2
- - uid: 11111
- components:
- - type: Transform
- pos: -51.5,24.5
- parent: 2
- - uid: 11112
- components:
- - type: Transform
- pos: -51.5,25.5
- parent: 2
- - uid: 11113
- components:
- - type: Transform
- pos: -51.5,26.5
- parent: 2
- - uid: 11114
- components:
- - type: Transform
- pos: -53.5,23.5
- parent: 2
- - uid: 11115
- components:
- - type: Transform
- pos: -53.5,22.5
- parent: 2
- - uid: 11116
- components:
- - type: Transform
- pos: -53.5,21.5
- parent: 2
- - uid: 11117
- components:
- - type: Transform
- pos: -52.5,21.5
- parent: 2
- - uid: 11118
- components:
- - type: Transform
- pos: -51.5,21.5
- parent: 2
- - uid: 11119
- components:
- - type: Transform
- pos: -50.5,21.5
- parent: 2
- - uid: 11120
- components:
- - type: Transform
- pos: -49.5,21.5
- parent: 2
- - uid: 11121
- components:
- - type: Transform
- pos: -48.5,21.5
- parent: 2
- - uid: 11122
- components:
- - type: Transform
- pos: -47.5,21.5
- parent: 2
- - uid: 11123
- components:
- - type: Transform
- pos: -47.5,22.5
- parent: 2
- - uid: 11124
- components:
- - type: Transform
- pos: -47.5,23.5
- parent: 2
- - uid: 11125
- components:
- - type: Transform
- pos: -46.5,23.5
- parent: 2
- - uid: 11126
- components:
- - type: Transform
- pos: -45.5,23.5
- parent: 2
- - uid: 11127
- components:
- - type: Transform
- pos: -45.5,24.5
- parent: 2
- - uid: 11128
- components:
- - type: Transform
- pos: -22.5,-71.5
- parent: 2
- - uid: 11129
- components:
- - type: Transform
- pos: -26.5,-78.5
- parent: 2
- - uid: 11130
- components:
- - type: Transform
- pos: -25.5,-78.5
- parent: 2
- - uid: 11131
- components:
- - type: Transform
- pos: -25.5,-77.5
- parent: 2
- - uid: 11132
- components:
- - type: Transform
- pos: -25.5,-76.5
- parent: 2
- - uid: 11133
- components:
- - type: Transform
- pos: -25.5,-75.5
- parent: 2
- - uid: 11134
- components:
- - type: Transform
- pos: -25.5,-74.5
- parent: 2
- - uid: 11135
- components:
- - type: Transform
- pos: -25.5,-73.5
- parent: 2
- - uid: 11136
- components:
- - type: Transform
- pos: -25.5,-72.5
- parent: 2
- - uid: 11137
- components:
- - type: Transform
- pos: -25.5,-71.5
- parent: 2
- - uid: 11138
- components:
- - type: Transform
- pos: -26.5,-71.5
- parent: 2
- - uid: 11139
- components:
- - type: Transform
- pos: -26.5,-70.5
- parent: 2
- - uid: 11140
- components:
- - type: Transform
- pos: -26.5,-69.5
- parent: 2
- - uid: 11141
- components:
- - type: Transform
- pos: -26.5,-68.5
- parent: 2
- - uid: 11142
- components:
- - type: Transform
- pos: -26.5,-67.5
- parent: 2
- - uid: 11143
- components:
- - type: Transform
- pos: -26.5,-66.5
- parent: 2
- - uid: 11144
- components:
- - type: Transform
- pos: -26.5,-65.5
- parent: 2
- - uid: 11145
- components:
- - type: Transform
- pos: -26.5,-64.5
- parent: 2
- - uid: 11146
- components:
- - type: Transform
- pos: -26.5,-63.5
- parent: 2
- - uid: 11147
- components:
- - type: Transform
- pos: -26.5,-62.5
- parent: 2
- - uid: 11148
- components:
- - type: Transform
- pos: -26.5,-61.5
- parent: 2
- - uid: 11149
- components:
- - type: Transform
- pos: -25.5,-61.5
- parent: 2
- - uid: 11150
- components:
- - type: Transform
- pos: -24.5,-61.5
- parent: 2
- - uid: 11151
- components:
- - type: Transform
- pos: -23.5,-61.5
- parent: 2
- - uid: 11152
- components:
- - type: Transform
- pos: -23.5,-62.5
- parent: 2
- - uid: 11153
- components:
- - type: Transform
- pos: -23.5,-63.5
- parent: 2
- - uid: 11154
- components:
- - type: Transform
- pos: -23.5,-64.5
- parent: 2
- - uid: 11155
- components:
- - type: Transform
- pos: -23.5,-65.5
- parent: 2
- - uid: 11156
- components:
- - type: Transform
- pos: -23.5,-66.5
- parent: 2
- - uid: 11157
- components:
- - type: Transform
- pos: -23.5,-67.5
- parent: 2
- - uid: 11158
- components:
- - type: Transform
- pos: -23.5,-68.5
- parent: 2
- - uid: 11159
- components:
- - type: Transform
- pos: -23.5,-69.5
- parent: 2
- - uid: 11160
- components:
- - type: Transform
- pos: -22.5,-69.5
- parent: 2
- - uid: 11161
- components:
- - type: Transform
- pos: -22.5,-72.5
- parent: 2
- - uid: 11162
->>>>>>> master
- components:
- - type: Transform
- pos: -22.5,-73.5
- parent: 2
-<<<<<<< HEAD
- - uid: 11165
- components:
- - type: Transform
- pos: -36.5,-57.5
- parent: 2
- - uid: 11166
- components:
- - type: Transform
- pos: -24.5,-19.5
- parent: 2
- - uid: 11167
- components:
- - type: Transform
- pos: -48.5,30.5
- parent: 2
- - uid: 11168
- components:
- - type: Transform
- pos: 4.5,-31.5
- parent: 2
- - uid: 11169
- components:
- - type: Transform
- pos: -0.5,-13.5
- parent: 2
- - uid: 11170
- components:
- - type: Transform
- pos: -41.5,52.5
- parent: 2
- - uid: 11171
- components:
- - type: Transform
- pos: -29.5,37.5
- parent: 2
- - uid: 11172
- components:
- - type: Transform
- pos: -18.5,-80.5
- parent: 2
- - uid: 11173
- components:
- - type: Transform
- pos: -69.5,5.5
- parent: 2
- - uid: 11174
- components:
- - type: Transform
- pos: 17.5,9.5
- parent: 2
- - uid: 11175
- components:
- - type: Transform
- pos: 4.5,-48.5
- parent: 2
- - uid: 11176
- components:
- - type: Transform
- pos: -25.5,-16.5
-=======
- - uid: 11163
- components:
- - type: Transform
- pos: -22.5,-74.5
- parent: 2
- - uid: 11164
- components:
- - type: Transform
- pos: -22.5,-75.5
- parent: 2
- - uid: 11165
- components:
- - type: Transform
- pos: -22.5,-76.5
- parent: 2
- - uid: 11166
- components:
- - type: Transform
- pos: -22.5,-77.5
- parent: 2
- - uid: 11167
- components:
- - type: Transform
- pos: -22.5,-78.5
- parent: 2
- - uid: 11168
- components:
- - type: Transform
- pos: -22.5,-79.5
- parent: 2
- - uid: 11169
- components:
- - type: Transform
- pos: -21.5,-79.5
- parent: 2
- - uid: 11170
- components:
- - type: Transform
- pos: -20.5,-79.5
- parent: 2
- - uid: 11171
- components:
- - type: Transform
- pos: -20.5,-78.5
- parent: 2
- - uid: 11172
- components:
- - type: Transform
- pos: -22.5,-65.5
- parent: 2
- - uid: 11173
- components:
- - type: Transform
- pos: -21.5,-65.5
- parent: 2
- - uid: 11174
- components:
- - type: Transform
- pos: -20.5,-65.5
- parent: 2
- - uid: 11175
- components:
- - type: Transform
- pos: -19.5,-65.5
- parent: 2
- - uid: 11176
- components:
- - type: Transform
- pos: -18.5,-65.5
->>>>>>> master
- parent: 2
- - uid: 11177
- components:
- - type: Transform
-<<<<<<< HEAD
- pos: 9.5,88.5
-=======
- pos: -17.5,-65.5
->>>>>>> master
- parent: 2
- - uid: 11178
- components:
- - type: Transform
-<<<<<<< HEAD
- pos: 0.5,36.5
- parent: 2
- - uid: 11179
- components:
- - type: Transform
- pos: -26.5,25.5
- parent: 2
- - uid: 11180
- components:
- - type: Transform
- pos: -41.5,40.5
- parent: 2
- - uid: 11181
- components:
- - type: Transform
- pos: -41.5,-76.5
- parent: 2
- - uid: 11182
- components:
- - type: Transform
- pos: -9.5,-62.5
- parent: 2
- - uid: 11183
- components:
- - type: Transform
- pos: 4.5,64.5
- parent: 2
- - uid: 11184
- components:
- - type: Transform
- pos: -41.5,15.5
- parent: 2
- - uid: 11185
- components:
- - type: Transform
- pos: -28.5,-32.5
- parent: 2
- - uid: 11186
- components:
- - type: Transform
- pos: -57.5,-15.5
- parent: 2
- - uid: 11187
- components:
- - type: Transform
- pos: -76.5,14.5
- parent: 2
- - uid: 11188
- components:
- - type: Transform
- pos: 30.5,-24.5
- parent: 2
- - uid: 11189
- components:
- - type: Transform
- pos: -66.5,15.5
- parent: 2
- - uid: 11190
- components:
- - type: Transform
- pos: -35.5,60.5
- parent: 2
- - uid: 11191
- components:
- - type: Transform
- pos: 31.5,-19.5
- parent: 2
- - uid: 11192
- components:
- - type: Transform
- pos: 18.5,-52.5
- parent: 2
- - uid: 11193
- components:
- - type: Transform
- pos: -57.5,61.5
- parent: 2
- - uid: 11194
- components:
- - type: Transform
- pos: -13.5,-43.5
- parent: 2
- - uid: 11195
- components:
- - type: Transform
- pos: 4.5,-37.5
- parent: 2
- - uid: 11196
- components:
- - type: Transform
- pos: 4.5,-36.5
- parent: 2
- - uid: 11197
- components:
- - type: Transform
- pos: 22.5,-10.5
- parent: 2
- - uid: 11198
- components:
- - type: Transform
- pos: 33.5,-15.5
- parent: 2
- - uid: 11199
- components:
- - type: Transform
- pos: 10.5,-1.5
- parent: 2
- - uid: 11200
- components:
- - type: Transform
- pos: -9.5,10.5
- parent: 2
- - uid: 11201
- components:
- - type: Transform
- pos: 8.5,-33.5
- parent: 2
- - uid: 11202
- components:
- - type: Transform
- pos: -13.5,-41.5
- parent: 2
- - uid: 11203
- components:
- - type: Transform
- pos: 0.5,15.5
- parent: 2
- - uid: 11204
- components:
- - type: Transform
- pos: 10.5,11.5
- parent: 2
- - uid: 11205
- components:
- - type: Transform
- pos: 27.5,-56.5
- parent: 2
- - uid: 11206
- components:
- - type: Transform
- pos: -5.5,14.5
- parent: 2
- - uid: 11207
- components:
- - type: Transform
- pos: -55.5,10.5
- parent: 2
- - uid: 11208
- components:
- - type: Transform
- pos: -48.5,32.5
- parent: 2
- - uid: 11209
- components:
- - type: Transform
- pos: 16.5,-38.5
- parent: 2
- - uid: 11210
- components:
- - type: Transform
- pos: -48.5,28.5
- parent: 2
- - uid: 11211
- components:
- - type: Transform
- pos: -12.5,-50.5
- parent: 2
- - uid: 11212
- components:
- - type: Transform
- pos: -13.5,-51.5
- parent: 2
- - uid: 11213
- components:
- - type: Transform
- pos: -20.5,-40.5
- parent: 2
- - uid: 11214
- components:
- - type: Transform
- pos: 17.5,-12.5
- parent: 2
- - uid: 11215
- components:
- - type: Transform
- pos: -22.5,-75.5
- parent: 2
- - uid: 11216
- components:
- - type: Transform
- pos: 12.5,50.5
- parent: 2
- - uid: 11217
- components:
- - type: Transform
- pos: 41.5,-39.5
- parent: 2
- - uid: 11218
- components:
- - type: Transform
- pos: 77.5,-41.5
- parent: 2
- - uid: 11219
- components:
- - type: Transform
- pos: -54.5,36.5
- parent: 2
- - uid: 11220
- components:
- - type: Transform
- pos: -64.5,-30.5
- parent: 2
- - uid: 11221
- components:
- - type: Transform
- pos: -56.5,56.5
- parent: 2
- - uid: 11222
- components:
- - type: Transform
- pos: -60.5,1.5
- parent: 2
- - uid: 11223
- components:
- - type: Transform
- pos: 29.5,-14.5
- parent: 2
- - uid: 11224
- components:
- - type: Transform
- pos: 21.5,10.5
- parent: 2
- - uid: 11225
- components:
- - type: Transform
- pos: -54.5,10.5
- parent: 2
- - uid: 11226
- components:
- - type: Transform
- pos: -41.5,48.5
- parent: 2
- - uid: 11227
- components:
- - type: Transform
- pos: 22.5,36.5
- parent: 2
- - uid: 11228
- components:
- - type: Transform
- pos: -10.5,23.5
- parent: 2
- - uid: 11229
- components:
- - type: Transform
- pos: 10.5,44.5
- parent: 2
- - uid: 11230
- components:
- - type: Transform
- pos: -18.5,17.5
- parent: 2
- - uid: 11231
- components:
- - type: Transform
- pos: 54.5,-26.5
- parent: 2
- - uid: 11232
- components:
- - type: Transform
- pos: -25.5,65.5
- parent: 2
- - uid: 11233
- components:
- - type: Transform
- pos: -11.5,-10.5
- parent: 2
- - uid: 11234
- components:
- - type: Transform
- pos: -36.5,-61.5
- parent: 2
- - uid: 11235
- components:
- - type: Transform
- pos: 44.5,-5.5
- parent: 2
- - uid: 11236
- components:
- - type: Transform
- pos: 24.5,56.5
- parent: 2
- - uid: 11237
- components:
- - type: Transform
- pos: -51.5,-14.5
- parent: 2
- - uid: 11238
- components:
- - type: Transform
- pos: 13.5,61.5
- parent: 2
- - uid: 11239
- components:
- - type: Transform
- pos: 11.5,36.5
- parent: 2
- - uid: 11240
- components:
- - type: Transform
- pos: -2.5,23.5
- parent: 2
- - uid: 11241
- components:
- - type: Transform
- pos: -31.5,-72.5
- parent: 2
- - uid: 11242
- components:
- - type: Transform
- pos: 42.5,-46.5
- parent: 2
- - uid: 11243
- components:
- - type: Transform
- pos: 46.5,-27.5
- parent: 2
- - uid: 11244
- components:
- - type: Transform
- pos: 33.5,-0.5
- parent: 2
- - uid: 11245
- components:
- - type: Transform
- pos: -56.5,32.5
- parent: 2
- - uid: 11246
- components:
- - type: Transform
- pos: -36.5,-3.5
- parent: 2
- - uid: 11247
- components:
- - type: Transform
- pos: -9.5,-61.5
- parent: 2
- - uid: 11248
- components:
- - type: Transform
- pos: -71.5,15.5
- parent: 2
- - uid: 11249
- components:
- - type: Transform
- pos: -4.5,30.5
- parent: 2
- - uid: 11250
- components:
- - type: Transform
- pos: 17.5,-54.5
- parent: 2
- - uid: 11251
- components:
- - type: Transform
- pos: 0.5,-45.5
- parent: 2
- - uid: 11252
- components:
- - type: Transform
- pos: -39.5,-63.5
- parent: 2
- - uid: 11253
- components:
- - type: Transform
- pos: 17.5,1.5
- parent: 2
- - uid: 11254
- components:
- - type: Transform
- pos: -26.5,-73.5
- parent: 2
- - uid: 11255
- components:
- - type: Transform
- pos: -25.5,62.5
- parent: 2
- - uid: 11256
- components:
- - type: Transform
- pos: 17.5,4.5
- parent: 2
- - uid: 11257
- components:
- - type: Transform
- pos: -25.5,-73.5
- parent: 2
- - uid: 11258
- components:
- - type: Transform
- pos: 14.5,-38.5
- parent: 2
- - uid: 11259
- components:
- - type: Transform
- pos: -52.5,29.5
- parent: 2
- - uid: 11260
- components:
- - type: Transform
- pos: 25.5,-29.5
- parent: 2
- - uid: 11261
- components:
- - type: Transform
- pos: 14.5,-34.5
- parent: 2
- - uid: 11262
- components:
- - type: Transform
- pos: -41.5,13.5
- parent: 2
- - uid: 11263
- components:
- - type: Transform
- pos: -28.5,-30.5
- parent: 2
- - uid: 11264
- components:
- - type: Transform
- pos: 39.5,-15.5
- parent: 2
- - uid: 11265
- components:
- - type: Transform
- pos: -3.5,30.5
- parent: 2
- - uid: 11266
- components:
- - type: Transform
- pos: 25.5,-25.5
- parent: 2
- - uid: 11267
- components:
- - type: Transform
- pos: 41.5,-12.5
- parent: 2
- - uid: 11268
- components:
- - type: Transform
- pos: 55.5,-28.5
- parent: 2
- - uid: 11269
- components:
- - type: Transform
- pos: -53.5,41.5
- parent: 2
- - uid: 11270
- components:
- - type: Transform
- pos: 0.5,-42.5
- parent: 2
- - uid: 11271
- components:
- - type: Transform
- pos: -22.5,-61.5
- parent: 2
- - uid: 11272
- components:
- - type: Transform
- pos: 14.5,56.5
- parent: 2
- - uid: 11273
- components:
- - type: Transform
- pos: 11.5,71.5
- parent: 2
- - uid: 11274
- components:
- - type: Transform
- pos: 9.5,50.5
- parent: 2
- - uid: 11275
- components:
- - type: Transform
- pos: -52.5,41.5
- parent: 2
- - uid: 11276
- components:
- - type: Transform
- pos: 26.5,-14.5
- parent: 2
- - uid: 11277
- components:
- - type: Transform
- pos: -51.5,41.5
- parent: 2
- - uid: 11278
- components:
- - type: Transform
- pos: -50.5,41.5
- parent: 2
- - uid: 11279
- components:
- - type: Transform
- pos: -49.5,41.5
- parent: 2
- - uid: 11280
- components:
- - type: Transform
- pos: -26.5,22.5
- parent: 2
- - uid: 11281
- components:
- - type: Transform
- pos: -25.5,23.5
- parent: 2
- - uid: 11282
- components:
- - type: Transform
- pos: -49.5,42.5
- parent: 2
- - uid: 11283
- components:
- - type: Transform
- pos: -66.5,15.5
- parent: 2
- - uid: 11284
- components:
- - type: Transform
- pos: -66.5,15.5
- parent: 2
- - uid: 11285
- components:
- - type: Transform
- pos: -21.5,-30.5
- parent: 2
- - uid: 11286
- components:
- - type: Transform
- pos: -11.5,-77.5
- parent: 2
- - uid: 11287
- components:
- - type: Transform
- pos: -41.5,51.5
- parent: 2
- - uid: 11288
- components:
- - type: Transform
- pos: 14.5,-55.5
- parent: 2
- - uid: 11289
- components:
- - type: Transform
- pos: 27.5,18.5
- parent: 2
- - uid: 11290
- components:
- - type: Transform
- pos: 13.5,40.5
- parent: 2
- - uid: 11291
- components:
- - type: Transform
- pos: 17.5,-16.5
- parent: 2
- - uid: 11292
- components:
- - type: Transform
- pos: 11.5,-8.5
- parent: 2
- - uid: 11293
- components:
- - type: Transform
- pos: 6.5,69.5
- parent: 2
- - uid: 11294
- components:
- - type: Transform
- pos: 9.5,90.5
- parent: 2
- - uid: 11295
- components:
- - type: Transform
- pos: 6.5,81.5
- parent: 2
- - uid: 11296
- components:
- - type: Transform
- pos: 41.5,-32.5
- parent: 2
- - uid: 11297
- components:
- - type: Transform
- pos: 22.5,12.5
- parent: 2
- - uid: 11298
- components:
- - type: Transform
- pos: 25.5,-9.5
- parent: 2
- - uid: 11299
- components:
- - type: Transform
- pos: 9.5,51.5
- parent: 2
- - uid: 11300
- components:
- - type: Transform
- pos: 41.5,-27.5
- parent: 2
- - uid: 11301
- components:
- - type: Transform
- pos: -0.5,29.5
- parent: 2
- - uid: 11302
- components:
- - type: Transform
- pos: -8.5,-74.5
- parent: 2
- - uid: 11303
- components:
- - type: Transform
- pos: 6.5,73.5
- parent: 2
- - uid: 11304
- components:
- - type: Transform
- pos: -35.5,-57.5
- parent: 2
- - uid: 11305
- components:
- - type: Transform
- pos: -3.5,-14.5
- parent: 2
- - uid: 11306
- components:
- - type: Transform
- pos: 43.5,-32.5
- parent: 2
- - uid: 11307
- components:
- - type: Transform
- pos: -51.5,-12.5
- parent: 2
- - uid: 11308
- components:
- - type: Transform
- pos: 36.5,-1.5
- parent: 2
- - uid: 11309
- components:
- - type: Transform
- pos: 43.5,-27.5
- parent: 2
- - uid: 11310
- components:
- - type: Transform
- pos: 15.5,46.5
- parent: 2
- - uid: 11311
- components:
- - type: Transform
- pos: -18.5,4.5
- parent: 2
- - uid: 11312
- components:
- - type: Transform
- pos: 10.5,61.5
- parent: 2
- - uid: 11313
- components:
- - type: Transform
- pos: -51.5,-5.5
- parent: 2
- - uid: 11314
- components:
- - type: Transform
- pos: -5.5,-63.5
- parent: 2
- - uid: 11315
- components:
- - type: Transform
- pos: 17.5,13.5
- parent: 2
- - uid: 11316
- components:
- - type: Transform
- pos: -24.5,-61.5
- parent: 2
- - uid: 11317
- components:
- - type: Transform
- pos: 0.5,-39.5
- parent: 2
- - uid: 11318
- components:
- - type: Transform
- pos: -41.5,-73.5
- parent: 2
- - uid: 11319
- components:
- - type: Transform
- pos: -24.5,67.5
- parent: 2
- - uid: 11320
- components:
- - type: Transform
- pos: -36.5,-14.5
- parent: 2
- - uid: 11321
- components:
- - type: Transform
- pos: 6.5,90.5
- parent: 2
- - uid: 11322
- components:
- - type: Transform
- pos: -27.5,-64.5
- parent: 2
- - uid: 11323
- components:
- - type: Transform
- pos: -23.5,-19.5
- parent: 2
- - uid: 11324
- components:
- - type: Transform
- pos: -35.5,40.5
- parent: 2
- - uid: 11325
- components:
- - type: Transform
- pos: -48.5,29.5
- parent: 2
- - uid: 11326
- components:
- - type: Transform
- pos: -42.5,34.5
- parent: 2
- - uid: 11327
- components:
- - type: Transform
- pos: 17.5,8.5
- parent: 2
- - uid: 11328
- components:
- - type: Transform
- pos: 6.5,72.5
- parent: 2
- - uid: 11329
- components:
- - type: Transform
- pos: -21.5,-29.5
- parent: 2
- - uid: 11330
- components:
- - type: Transform
- pos: -28.5,-57.5
- parent: 2
- - uid: 11331
- components:
- - type: Transform
- pos: -57.5,-10.5
- parent: 2
- - uid: 11332
- components:
- - type: Transform
- pos: -9.5,-33.5
- parent: 2
- - uid: 11333
- components:
- - type: Transform
- pos: 10.5,7.5
- parent: 2
- - uid: 11334
- components:
- - type: Transform
- pos: -10.5,2.5
- parent: 2
- - uid: 11335
- components:
- - type: Transform
- pos: 2.5,15.5
- parent: 2
- - uid: 11336
- components:
- - type: Transform
- pos: -16.5,70.5
- parent: 2
- - uid: 11337
- components:
- - type: Transform
- pos: 27.5,-45.5
- parent: 2
- - uid: 11338
- components:
- - type: Transform
- pos: 9.5,-44.5
- parent: 2
- - uid: 11339
- components:
- - type: Transform
- pos: 6.5,-44.5
- parent: 2
- - uid: 11340
- components:
- - type: Transform
- pos: 4.5,-41.5
- parent: 2
- - uid: 11341
- components:
- - type: Transform
- pos: 4.5,-45.5
- parent: 2
- - uid: 11342
- components:
- - type: Transform
- pos: -28.5,-44.5
- parent: 2
- - uid: 11343
- components:
- - type: Transform
- pos: 26.5,-29.5
- parent: 2
- - uid: 11344
- components:
- - type: Transform
- pos: 17.5,-46.5
- parent: 2
- - uid: 11345
- components:
- - type: Transform
- pos: -11.5,-50.5
- parent: 2
- - uid: 11346
- components:
- - type: Transform
- pos: -58.5,1.5
- parent: 2
- - uid: 11347
- components:
- - type: Transform
- pos: 3.5,-28.5
- parent: 2
- - uid: 11348
- components:
- - type: Transform
- pos: 37.5,-64.5
- parent: 2
- - uid: 11349
- components:
- - type: Transform
- pos: 25.5,-45.5
- parent: 2
- - uid: 11350
- components:
- - type: Transform
- pos: -71.5,8.5
- parent: 2
- - uid: 11351
- components:
- - type: Transform
- pos: 13.5,-1.5
- parent: 2
- - uid: 11352
- components:
- - type: Transform
- pos: -28.5,-51.5
- parent: 2
- - uid: 11353
- components:
- - type: Transform
- pos: -40.5,40.5
- parent: 2
- - uid: 11354
- components:
- - type: Transform
- pos: -29.5,38.5
- parent: 2
- - uid: 11355
- components:
- - type: Transform
- pos: -5.5,-12.5
- parent: 2
- - uid: 11356
- components:
- - type: Transform
- pos: 6.5,76.5
- parent: 2
- - uid: 11357
- components:
- - type: Transform
- pos: -9.5,-80.5
- parent: 2
- - uid: 11358
- components:
- - type: Transform
- pos: 17.5,12.5
- parent: 2
- - uid: 11359
- components:
- - type: Transform
- pos: 3.5,-30.5
- parent: 2
- - uid: 11360
- components:
- - type: Transform
- pos: -10.5,-32.5
- parent: 2
- - uid: 11361
- components:
- - type: Transform
- pos: 5.5,-32.5
- parent: 2
- - uid: 11362
- components:
- - type: Transform
- pos: -4.5,-7.5
- parent: 2
- - uid: 11363
- components:
- - type: Transform
- pos: 0.5,-46.5
- parent: 2
- - uid: 11364
- components:
- - type: Transform
- pos: -33.5,-51.5
- parent: 2
- - uid: 11365
- components:
- - type: Transform
- pos: -59.5,1.5
- parent: 2
- - uid: 11366
- components:
- - type: Transform
- pos: 28.5,-39.5
- parent: 2
- - uid: 11367
- components:
- - type: Transform
- pos: 29.5,-19.5
- parent: 2
- - uid: 11368
- components:
- - type: Transform
- pos: -57.5,-3.5
- parent: 2
- - uid: 11369
- components:
- - type: Transform
- pos: 4.5,-50.5
- parent: 2
- - uid: 11370
- components:
- - type: Transform
- pos: -12.5,-40.5
- parent: 2
- - uid: 11371
- components:
- - type: Transform
- pos: -61.5,14.5
- parent: 2
- - uid: 11372
- components:
- - type: Transform
- pos: 17.5,36.5
- parent: 2
- - uid: 11373
- components:
- - type: Transform
- pos: -55.5,34.5
- parent: 2
- - uid: 11374
- components:
- - type: Transform
- pos: 26.5,-22.5
- parent: 2
- - uid: 11375
- components:
- - type: Transform
- pos: -42.5,32.5
- parent: 2
- - uid: 11376
- components:
- - type: Transform
- pos: -32.5,-46.5
- parent: 2
- - uid: 11377
- components:
- - type: Transform
- pos: -54.5,-11.5
- parent: 2
- - uid: 11378
- components:
- - type: Transform
- pos: 13.5,64.5
- parent: 2
- - uid: 11379
- components:
- - type: Transform
- pos: 30.5,-60.5
- parent: 2
- - uid: 11380
- components:
- - type: Transform
- pos: -49.5,-2.5
- parent: 2
- - uid: 11381
- components:
- - type: Transform
- pos: 4.5,-44.5
- parent: 2
- - uid: 11382
- components:
- - type: Transform
- pos: -28.5,-45.5
- parent: 2
- - uid: 11383
- components:
- - type: Transform
- pos: -21.5,-32.5
- parent: 2
- - uid: 11384
- components:
- - type: Transform
- pos: -45.5,22.5
- parent: 2
- - uid: 11385
- components:
- - type: Transform
- pos: 15.5,-41.5
- parent: 2
- - uid: 11386
- components:
- - type: Transform
- pos: 10.5,0.5
- parent: 2
- - uid: 11387
- components:
- - type: Transform
- pos: -10.5,3.5
- parent: 2
- - uid: 11388
- components:
- - type: Transform
- pos: 11.5,8.5
- parent: 2
- - uid: 11389
- components:
- - type: Transform
- pos: 51.5,-10.5
- parent: 2
- - uid: 11390
- components:
- - type: Transform
- pos: 44.5,-8.5
- parent: 2
- - uid: 11391
- components:
- - type: Transform
- pos: 54.5,-43.5
- parent: 2
- - uid: 11392
- components:
- - type: Transform
- pos: 20.5,27.5
- parent: 2
- - uid: 11393
- components:
- - type: Transform
- pos: 44.5,0.5
- parent: 2
- - uid: 11394
- components:
- - type: Transform
- pos: 55.5,-43.5
- parent: 2
- - uid: 11395
- components:
- - type: Transform
- pos: 17.5,56.5
- parent: 2
- - uid: 11396
- components:
- - type: Transform
- pos: 25.5,56.5
- parent: 2
- - uid: 11397
- components:
- - type: Transform
- pos: -28.5,-54.5
- parent: 2
- - uid: 11398
- components:
- - type: Transform
- pos: 28.5,-38.5
- parent: 2
- - uid: 11399
- components:
- - type: Transform
- pos: -43.5,37.5
- parent: 2
- - uid: 11400
- components:
- - type: Transform
- pos: 23.5,25.5
- parent: 2
- - uid: 11401
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 2
- - uid: 11402
- components:
- - type: Transform
- pos: -56.5,10.5
- parent: 2
- - uid: 11403
- components:
- - type: Transform
- pos: -50.5,11.5
- parent: 2
- - uid: 11404
- components:
- - type: Transform
- pos: -24.5,-16.5
- parent: 2
- - uid: 11405
- components:
- - type: Transform
- pos: -38.5,42.5
- parent: 2
- - uid: 11406
- components:
- - type: Transform
- pos: -42.5,37.5
- parent: 2
- - uid: 11407
- components:
- - type: Transform
- pos: -62.5,12.5
- parent: 2
- - uid: 11408
- components:
- - type: Transform
- pos: -26.5,26.5
- parent: 2
- - uid: 11409
- components:
- - type: Transform
- pos: -50.5,10.5
- parent: 2
- - uid: 11410
- components:
- - type: Transform
- pos: -54.5,41.5
- parent: 2
- - uid: 11411
- components:
- - type: Transform
- pos: 24.5,24.5
- parent: 2
- - uid: 11412
- components:
- - type: Transform
- pos: 21.5,26.5
- parent: 2
- - uid: 11413
- components:
- - type: Transform
- pos: 44.5,-9.5
- parent: 2
- - uid: 11414
- components:
- - type: Transform
- pos: 53.5,-7.5
- parent: 2
- - uid: 11415
- components:
- - type: Transform
- pos: 45.5,-19.5
- parent: 2
- - uid: 11416
- components:
- - type: Transform
- pos: 54.5,-6.5
- parent: 2
- - uid: 11417
- components:
- - type: Transform
- pos: 31.5,-4.5
- parent: 2
- - uid: 11418
- components:
- - type: Transform
- pos: 42.5,-27.5
- parent: 2
- - uid: 11419
- components:
- - type: Transform
- pos: 36.5,-0.5
- parent: 2
- - uid: 11420
- components:
- - type: Transform
- pos: 55.5,-20.5
- parent: 2
- - uid: 11421
- components:
- - type: Transform
- pos: 31.5,-1.5
- parent: 2
- - uid: 11422
- components:
- - type: Transform
- pos: 18.5,36.5
- parent: 2
- - uid: 11423
- components:
- - type: Transform
- pos: 19.5,36.5
- parent: 2
- - uid: 11424
- components:
- - type: Transform
- pos: -18.5,0.5
- parent: 2
- - uid: 11425
- components:
- - type: Transform
- pos: 21.5,36.5
- parent: 2
- - uid: 11426
- components:
- - type: Transform
- pos: -18.5,1.5
- parent: 2
- - uid: 11427
- components:
- - type: Transform
- pos: 21.5,36.5
- parent: 2
- - uid: 11428
- components:
- - type: Transform
- pos: -12.5,23.5
- parent: 2
- - uid: 11429
- components:
- - type: Transform
- pos: 6.5,23.5
- parent: 2
- - uid: 11430
- components:
- - type: Transform
- pos: 8.5,57.5
- parent: 2
- - uid: 11431
- components:
- - type: Transform
- pos: 20.5,36.5
- parent: 2
- - uid: 11432
- components:
- - type: Transform
- pos: 10.5,58.5
- parent: 2
- - uid: 11433
- components:
- - type: Transform
- pos: -18.5,-0.5
- parent: 2
- - uid: 11434
- components:
- - type: Transform
- pos: 17.5,-1.5
- parent: 2
- - uid: 11435
- components:
- - type: Transform
- pos: -13.5,23.5
- parent: 2
- - uid: 11436
- components:
- - type: Transform
- pos: 5.5,23.5
- parent: 2
- - uid: 11437
- components:
- - type: Transform
- pos: 17.5,-0.5
- parent: 2
- - uid: 11438
- components:
- - type: Transform
- pos: 23.5,24.5
- parent: 2
- - uid: 11439
- components:
- - type: Transform
- pos: 22.5,24.5
- parent: 2
- - uid: 11440
- components:
- - type: Transform
- pos: 1.5,47.5
- parent: 2
- - uid: 11441
- components:
- - type: Transform
- pos: 2.5,-14.5
- parent: 2
- - uid: 11442
- components:
- - type: Transform
- pos: 17.5,-2.5
- parent: 2
- - uid: 11443
- components:
- - type: Transform
- pos: 17.5,-3.5
- parent: 2
- - uid: 11444
- components:
- - type: Transform
- pos: 16.5,23.5
- parent: 2
- - uid: 11445
- components:
- - type: Transform
- pos: 1.5,45.5
- parent: 2
- - uid: 11446
- components:
- - type: Transform
- pos: -48.5,4.5
- parent: 2
- - uid: 11447
- components:
- - type: Transform
- pos: 17.5,-3.5
- parent: 2
- - uid: 11448
- components:
- - type: Transform
- pos: -11.5,23.5
- parent: 2
- - uid: 11449
- components:
- - type: Transform
- pos: 9.5,57.5
- parent: 2
- - uid: 11450
- components:
- - type: Transform
- pos: 53.5,-8.5
- parent: 2
- - uid: 11451
- components:
- - type: Transform
- pos: 52.5,-10.5
- parent: 2
- - uid: 11452
- components:
- - type: Transform
- pos: 41.5,-40.5
- parent: 2
- - uid: 11453
- components:
- - type: Transform
- pos: 21.5,27.5
- parent: 2
- - uid: 11454
- components:
- - type: Transform
- pos: 14.5,23.5
- parent: 2
- - uid: 11455
- components:
- - type: Transform
- pos: -24.5,65.5
- parent: 2
- - uid: 11456
- components:
- - type: Transform
- pos: -28.5,-35.5
- parent: 2
- - uid: 11457
- components:
- - type: Transform
- pos: -41.5,16.5
- parent: 2
- - uid: 11458
- components:
- - type: Transform
- pos: -22.5,-68.5
- parent: 2
- - uid: 11459
- components:
- - type: Transform
- pos: -22.5,-70.5
- parent: 2
- - uid: 11460
- components:
- - type: Transform
- pos: -30.5,-40.5
- parent: 2
- - uid: 11461
- components:
- - type: Transform
- pos: 15.5,23.5
- parent: 2
- - uid: 11462
- components:
- - type: Transform
- pos: -36.5,42.5
- parent: 2
- - uid: 11463
- components:
- - type: Transform
- pos: 19.5,24.5
- parent: 2
- - uid: 11464
- components:
- - type: Transform
- pos: 18.5,24.5
- parent: 2
- - uid: 11465
- components:
- - type: Transform
- pos: -4.5,48.5
- parent: 2
- - uid: 11466
- components:
- - type: Transform
- pos: -3.5,48.5
- parent: 2
- - uid: 11467
- components:
- - type: Transform
- pos: 11.5,-55.5
- parent: 2
- - uid: 11468
- components:
- - type: Transform
- pos: 9.5,-55.5
- parent: 2
- - uid: 11469
- components:
- - type: Transform
- pos: 17.5,-4.5
- parent: 2
- - uid: 11470
- components:
- - type: Transform
- pos: 12.5,-55.5
- parent: 2
- - uid: 11471
- components:
- - type: Transform
- pos: -37.5,57.5
- parent: 2
- - uid: 11472
- components:
- - type: Transform
- pos: -41.5,17.5
- parent: 2
- - uid: 11473
- components:
- - type: Transform
- pos: -28.5,-34.5
- parent: 2
- - uid: 11474
- components:
- - type: Transform
- pos: 41.5,-28.5
- parent: 2
- - uid: 11475
- components:
- - type: Transform
- pos: 17.5,23.5
- parent: 2
- - uid: 11476
- components:
- - type: Transform
- pos: -3.5,-6.5
- parent: 2
- - uid: 11477
- components:
- - type: Transform
- pos: -34.5,-5.5
- parent: 2
- - uid: 11478
- components:
- - type: Transform
- pos: -35.5,42.5
- parent: 2
- - uid: 11479
- components:
- - type: Transform
- pos: 46.5,-19.5
- parent: 2
- - uid: 11480
- components:
- - type: Transform
- pos: -31.5,-45.5
- parent: 2
- - uid: 11481
- components:
- - type: Transform
- pos: 12.5,56.5
- parent: 2
- - uid: 11482
- components:
- - type: Transform
- pos: 53.5,-6.5
- parent: 2
- - uid: 11483
- components:
- - type: Transform
- pos: -48.5,-7.5
- parent: 2
- - uid: 11484
- components:
- - type: Transform
- pos: 1.5,43.5
- parent: 2
- - uid: 11485
- components:
- - type: Transform
- pos: 1.5,44.5
- parent: 2
- - uid: 11486
- components:
- - type: Transform
- pos: 15.5,23.5
- parent: 2
- - uid: 11487
- components:
- - type: Transform
- pos: -20.5,-80.5
- parent: 2
- - uid: 11488
- components:
- - type: Transform
- pos: -38.5,57.5
- parent: 2
- - uid: 11489
- components:
- - type: Transform
- pos: -62.5,11.5
- parent: 2
- - uid: 11490
- components:
- - type: Transform
- pos: -26.5,27.5
- parent: 2
- - uid: 11491
- components:
- - type: Transform
- pos: -55.5,41.5
- parent: 2
- - uid: 11492
- components:
- - type: Transform
- pos: -44.5,37.5
- parent: 2
- - uid: 11493
- components:
- - type: Transform
- pos: -39.5,21.5
- parent: 2
- - uid: 11494
- components:
- - type: Transform
- pos: 6.5,80.5
- parent: 2
- - uid: 11495
- components:
- - type: Transform
- pos: -35.5,-5.5
- parent: 2
- - uid: 11496
- components:
- - type: Transform
- pos: 6.5,79.5
- parent: 2
- - uid: 11497
- components:
- - type: Transform
- pos: -41.5,20.5
- parent: 2
- - uid: 11498
- components:
- - type: Transform
- pos: 6.5,78.5
- parent: 2
- - uid: 11499
- components:
- - type: Transform
- pos: 30.5,-14.5
- parent: 2
- - uid: 11500
- components:
- - type: Transform
- pos: 6.5,-33.5
- parent: 2
- - uid: 11501
- components:
- - type: Transform
- pos: -1.5,31.5
- parent: 2
- - uid: 11502
- components:
- - type: Transform
- pos: -41.5,55.5
- parent: 2
- - uid: 11503
- components:
- - type: Transform
- pos: 4.5,23.5
- parent: 2
- - uid: 11504
- components:
- - type: Transform
- pos: 32.5,-23.5
- parent: 2
- - uid: 11505
- components:
- - type: Transform
- pos: -75.5,15.5
- parent: 2
- - uid: 11506
- components:
- - type: Transform
- pos: -55.5,25.5
- parent: 2
- - uid: 11507
- components:
- - type: Transform
- pos: -57.5,-14.5
- parent: 2
- - uid: 11508
- components:
- - type: Transform
- pos: -48.5,2.5
- parent: 2
- - uid: 11509
- components:
- - type: Transform
- pos: 8.5,5.5
- parent: 2
- - uid: 11510
- components:
- - type: Transform
- pos: -8.5,-68.5
- parent: 2
- - uid: 11511
- components:
- - type: Transform
- pos: 10.5,45.5
- parent: 2
- - uid: 11512
- components:
- - type: Transform
- pos: -51.5,9.5
- parent: 2
- - uid: 11513
- components:
- - type: Transform
- pos: 23.5,-19.5
- parent: 2
- - uid: 11514
- components:
- - type: Transform
- pos: 53.5,-10.5
- parent: 2
- - uid: 11515
- components:
- - type: Transform
- pos: 78.5,-42.5
- parent: 2
- - uid: 11516
- components:
- - type: Transform
- pos: 36.5,-3.5
- parent: 2
- - uid: 11517
- components:
- - type: Transform
- pos: 18.5,26.5
- parent: 2
- - uid: 11518
- components:
- - type: Transform
- pos: 53.5,-9.5
- parent: 2
- - uid: 11519
- components:
- - type: Transform
- pos: 23.5,-18.5
- parent: 2
- - uid: 11520
- components:
- - type: Transform
- pos: 36.5,-3.5
- parent: 2
- - uid: 11521
- components:
- - type: Transform
- pos: 44.5,-18.5
- parent: 2
- - uid: 11522
- components:
- - type: Transform
- pos: 37.5,-3.5
- parent: 2
- - uid: 11523
- components:
- - type: Transform
- pos: 19.5,27.5
- parent: 2
- - uid: 11524
- components:
- - type: Transform
- pos: -0.5,31.5
- parent: 2
- - uid: 11525
- components:
- - type: Transform
- pos: -77.5,12.5
- parent: 2
- - uid: 11526
- components:
- - type: Transform
- pos: 10.5,1.5
- parent: 2
- - uid: 11527
- components:
- - type: Transform
- pos: -33.5,-53.5
- parent: 2
- - uid: 11528
- components:
- - type: Transform
- pos: -46.5,6.5
- parent: 2
- - uid: 11529
- components:
- - type: Transform
- pos: -54.5,40.5
- parent: 2
- - uid: 11530
- components:
- - type: Transform
- pos: 1.5,23.5
- parent: 2
- - uid: 11531
- components:
- - type: Transform
- pos: 13.5,-8.5
- parent: 2
- - uid: 11532
- components:
- - type: Transform
- pos: -31.5,-77.5
- parent: 2
- - uid: 11533
- components:
- - type: Transform
- pos: -47.5,22.5
- parent: 2
- - uid: 11534
- components:
- - type: Transform
- pos: 17.5,16.5
- parent: 2
- - uid: 11535
- components:
- - type: Transform
- pos: -80.5,-8.5
- parent: 2
- - uid: 11536
- components:
- - type: Transform
- pos: 50.5,-49.5
- parent: 2
- - uid: 11537
- components:
- - type: Transform
- pos: -66.5,14.5
- parent: 2
- - uid: 11538
- components:
- - type: Transform
- pos: -61.5,-16.5
- parent: 2
- - uid: 11539
- components:
- - type: Transform
- pos: 30.5,-19.5
- parent: 2
- - uid: 11540
- components:
- - type: Transform
- pos: -14.5,-34.5
- parent: 2
- - uid: 11541
- components:
- - type: Transform
- pos: -18.5,-39.5
- parent: 2
- - uid: 11542
- components:
- - type: Transform
- pos: 30.5,-23.5
- parent: 2
- - uid: 11543
- components:
- - type: Transform
- pos: 34.5,-23.5
- parent: 2
- - uid: 11544
- components:
- - type: Transform
- pos: 29.5,-29.5
- parent: 2
- - uid: 11545
- components:
- - type: Transform
- pos: 7.5,-43.5
- parent: 2
- - uid: 11546
- components:
- - type: Transform
- pos: 17.5,-51.5
- parent: 2
- - uid: 11547
- components:
- - type: Transform
- pos: 14.5,-36.5
- parent: 2
- - uid: 11548
- components:
- - type: Transform
- pos: 4.5,-53.5
- parent: 2
- - uid: 11549
- components:
- - type: Transform
- pos: 45.5,-10.5
- parent: 2
- - uid: 11550
- components:
- - type: Transform
- pos: 51.5,-20.5
- parent: 2
- - uid: 11551
- components:
- - type: Transform
- pos: -52.5,-11.5
- parent: 2
- - uid: 11552
- components:
- - type: Transform
- pos: -50.5,9.5
- parent: 2
- - uid: 11553
- components:
- - type: Transform
- pos: 42.5,-3.5
- parent: 2
- - uid: 11554
- components:
- - type: Transform
- pos: 25.5,-28.5
- parent: 2
- - uid: 11555
- components:
- - type: Transform
- pos: -8.5,-69.5
- parent: 2
- - uid: 11556
- components:
- - type: Transform
- pos: 52.5,-27.5
- parent: 2
- - uid: 11557
- components:
- - type: Transform
- pos: -8.5,-73.5
- parent: 2
- - uid: 11558
- components:
- - type: Transform
- pos: -41.5,46.5
- parent: 2
- - uid: 11559
- components:
- - type: Transform
- pos: 29.5,11.5
- parent: 2
- - uid: 11560
- components:
- - type: Transform
- pos: 31.5,11.5
- parent: 2
- - uid: 11561
- components:
- - type: Transform
- pos: 31.5,13.5
- parent: 2
- - uid: 11562
- components:
- - type: Transform
- pos: 47.5,-20.5
- parent: 2
- - uid: 11563
- components:
- - type: Transform
- pos: -2.5,31.5
- parent: 2
- - uid: 11564
- components:
- - type: Transform
- pos: 41.5,-13.5
- parent: 2
- - uid: 11565
- components:
- - type: Transform
- pos: 13.5,43.5
- parent: 2
- - uid: 11566
- components:
- - type: Transform
- pos: -34.5,61.5
- parent: 2
- - uid: 11567
- components:
- - type: Transform
- pos: -23.5,-63.5
- parent: 2
- - uid: 11568
- components:
- - type: Transform
- pos: -70.5,4.5
- parent: 2
- - uid: 11569
- components:
- - type: Transform
- pos: 34.5,-60.5
- parent: 2
- - uid: 11570
- components:
- - type: Transform
- pos: -19.5,-80.5
- parent: 2
- - uid: 11571
- components:
- - type: Transform
- pos: -33.5,-55.5
- parent: 2
- - uid: 11572
- components:
- - type: Transform
- pos: 46.5,-21.5
- parent: 2
- - uid: 11573
- components:
- - type: Transform
- pos: 12.5,36.5
- parent: 2
- - uid: 11574
- components:
- - type: Transform
- pos: -13.5,51.5
- parent: 2
- - uid: 11575
- components:
- - type: Transform
- pos: 10.5,40.5
- parent: 2
- - uid: 11576
- components:
- - type: Transform
- pos: -17.5,-80.5
- parent: 2
- - uid: 11577
- components:
- - type: Transform
- pos: 24.5,-22.5
- parent: 2
- - uid: 11578
- components:
- - type: Transform
- pos: -56.5,33.5
- parent: 2
- - uid: 11579
- components:
- - type: Transform
- pos: -28.5,-37.5
- parent: 2
- - uid: 11580
- components:
- - type: Transform
- pos: 6.5,88.5
- parent: 2
- - uid: 11581
- components:
- - type: Transform
- pos: -25.5,24.5
- parent: 2
- - uid: 11582
- components:
- - type: Transform
- pos: -29.5,-72.5
- parent: 2
- - uid: 11583
- components:
- - type: Transform
- pos: 0.5,35.5
- parent: 2
- - uid: 11584
- components:
- - type: Transform
- pos: -26.5,-61.5
- parent: 2
- - uid: 11585
- components:
- - type: Transform
- pos: -27.5,-65.5
- parent: 2
- - uid: 11586
- components:
- - type: Transform
- pos: -40.5,21.5
- parent: 2
- - uid: 11587
- components:
- - type: Transform
- pos: 35.5,-42.5
- parent: 2
- - uid: 11588
- components:
- - type: Transform
- pos: 27.5,-55.5
- parent: 2
- - uid: 11589
- components:
- - type: Transform
- pos: 27.5,-54.5
- parent: 2
- - uid: 11590
- components:
- - type: Transform
- pos: 27.5,-53.5
- parent: 2
- - uid: 11591
- components:
- - type: Transform
- pos: 27.5,-52.5
- parent: 2
- - uid: 11592
- components:
- - type: Transform
- pos: 28.5,-50.5
- parent: 2
- - uid: 11593
- components:
- - type: Transform
- pos: 28.5,-52.5
- parent: 2
- - uid: 11594
- components:
- - type: Transform
- pos: -13.5,-38.5
- parent: 2
- - uid: 11595
- components:
- - type: Transform
- pos: -14.5,-77.5
- parent: 2
- - uid: 11596
- components:
- - type: Transform
- pos: -47.5,-14.5
- parent: 2
- - uid: 11597
- components:
- - type: Transform
- pos: -13.5,-50.5
- parent: 2
- - uid: 11598
- components:
- - type: Transform
- pos: -31.5,-57.5
- parent: 2
- - uid: 11599
- components:
- - type: Transform
- pos: -13.5,-45.5
- parent: 2
- - uid: 11600
- components:
- - type: Transform
- pos: 36.5,-64.5
- parent: 2
- - uid: 11601
- components:
- - type: Transform
- pos: 35.5,-61.5
- parent: 2
- - uid: 11602
- components:
- - type: Transform
- pos: 35.5,-64.5
- parent: 2
- - uid: 11603
- components:
- - type: Transform
- pos: 27.5,-59.5
- parent: 2
- - uid: 11604
- components:
- - type: Transform
- pos: -1.5,15.5
- parent: 2
- - uid: 11605
- components:
- - type: Transform
- pos: -9.5,12.5
- parent: 2
- - uid: 11606
- components:
- - type: Transform
- pos: -9.5,13.5
- parent: 2
- - uid: 11607
- components:
- - type: Transform
- pos: -11.5,12.5
- parent: 2
- - uid: 11608
- components:
- - type: Transform
- pos: -11.5,13.5
- parent: 2
- - uid: 11609
- components:
- - type: Transform
- pos: -11.5,14.5
- parent: 2
- - uid: 11610
- components:
- - type: Transform
- pos: -10.5,14.5
- parent: 2
- - uid: 11611
- components:
- - type: Transform
- pos: -9.5,14.5
- parent: 2
- - uid: 11612
- components:
- - type: Transform
- pos: -8.5,14.5
- parent: 2
- - uid: 11613
- components:
- - type: Transform
- pos: -7.5,12.5
- parent: 2
- - uid: 11614
- components:
- - type: Transform
- pos: -7.5,13.5
- parent: 2
- - uid: 11615
- components:
- - type: Transform
- pos: -7.5,14.5
- parent: 2
- - uid: 11616
- components:
- - type: Transform
- pos: -15.5,-39.5
- parent: 2
- - uid: 11617
- components:
- - type: Transform
- pos: 4.5,-50.5
- parent: 2
- - uid: 11618
- components:
- - type: Transform
- pos: -15.5,-34.5
- parent: 2
- - uid: 11619
- components:
- - type: Transform
- pos: -59.5,-16.5
- parent: 2
- - uid: 11620
- components:
- - type: Transform
- pos: 28.5,-19.5
- parent: 2
- - uid: 11621
- components:
- - type: Transform
- pos: 28.5,-45.5
- parent: 2
- - uid: 11622
- components:
- - type: Transform
- pos: -28.5,-53.5
- parent: 2
- - uid: 11623
- components:
- - type: Transform
- pos: -22.5,-78.5
- parent: 2
- - uid: 11624
- components:
- - type: Transform
- pos: 25.5,20.5
- parent: 2
- - uid: 11625
- components:
- - type: Transform
- pos: 44.5,-3.5
- parent: 2
- - uid: 11626
- components:
- - type: Transform
- pos: 39.5,-3.5
- parent: 2
- - uid: 11627
- components:
- - type: Transform
- pos: 44.5,-6.5
- parent: 2
- - uid: 11628
- components:
- - type: Transform
- pos: -45.5,-15.5
- parent: 2
- - uid: 11629
- components:
- - type: Transform
- pos: -51.5,-12.5
- parent: 2
- - uid: 11630
- components:
- - type: Transform
- pos: 0.5,29.5
- parent: 2
- - uid: 11631
- components:
- - type: Transform
- pos: 56.5,-22.5
- parent: 2
- - uid: 11632
- components:
- - type: Transform
- pos: 9.5,53.5
- parent: 2
- - uid: 11633
- components:
- - type: Transform
- pos: 16.5,-21.5
- parent: 2
- - uid: 11634
- components:
- - type: Transform
- pos: 15.5,66.5
- parent: 2
- - uid: 11635
- components:
- - type: Transform
- pos: 41.5,-46.5
- parent: 2
- - uid: 11636
- components:
- - type: Transform
- pos: -29.5,14.5
- parent: 2
- - uid: 11637
- components:
- - type: Transform
- pos: -21.5,26.5
- parent: 2
- - uid: 11638
- components:
- - type: Transform
- pos: -22.5,26.5
- parent: 2
- - uid: 11639
- components:
- - type: Transform
- pos: -23.5,26.5
- parent: 2
- - uid: 11640
- components:
- - type: Transform
- pos: -30.5,18.5
- parent: 2
- - uid: 11641
- components:
- - type: Transform
- pos: -24.5,26.5
- parent: 2
- - uid: 11642
- components:
- - type: Transform
- pos: -24.5,25.5
- parent: 2
- - uid: 11643
- components:
- - type: Transform
- pos: -30.5,14.5
- parent: 2
- - uid: 11644
- components:
- - type: Transform
- pos: -28.5,-19.5
- parent: 2
- - uid: 11645
- components:
- - type: Transform
- pos: -50.5,16.5
- parent: 2
- - uid: 11646
- components:
- - type: Transform
- pos: -40.5,37.5
- parent: 2
- - uid: 11647
- components:
- - type: Transform
- pos: 25.5,36.5
- parent: 2
- - uid: 11648
- components:
- - type: Transform
- pos: 10.5,47.5
- parent: 2
- - uid: 11649
- components:
- - type: Transform
- pos: -48.5,5.5
- parent: 2
- - uid: 11650
- components:
- - type: Transform
- pos: -18.5,-8.5
- parent: 2
- - uid: 11651
- components:
- - type: Transform
- pos: -38.5,37.5
- parent: 2
- - uid: 11652
- components:
- - type: Transform
- pos: -41.5,44.5
- parent: 2
- - uid: 11653
- components:
- - type: Transform
- pos: 10.5,3.5
- parent: 2
- - uid: 11654
- components:
- - type: Transform
- pos: -69.5,7.5
- parent: 2
- - uid: 11655
- components:
- - type: Transform
- pos: 11.5,61.5
- parent: 2
- - uid: 11656
- components:
- - type: Transform
- pos: 34.5,-22.5
- parent: 2
- - uid: 11657
- components:
- - type: Transform
- pos: -6.5,-11.5
- parent: 2
- - uid: 11658
- components:
- - type: Transform
- pos: -8.5,-79.5
- parent: 2
- - uid: 11659
- components:
- - type: Transform
- pos: -7.5,-79.5
- parent: 2
- - uid: 11660
- components:
- - type: Transform
- pos: -7.5,-78.5
- parent: 2
- - uid: 11661
- components:
- - type: Transform
- pos: -7.5,-77.5
- parent: 2
- - uid: 11662
- components:
- - type: Transform
- pos: -8.5,-77.5
- parent: 2
- - uid: 11663
- components:
- - type: Transform
- pos: -9.5,-77.5
- parent: 2
- - uid: 11664
- components:
- - type: Transform
- pos: -2.5,33.5
- parent: 2
- - uid: 11665
- components:
- - type: Transform
- pos: 11.5,56.5
- parent: 2
- - uid: 11666
- components:
- - type: Transform
- pos: 3.5,-38.5
- parent: 2
- - uid: 11667
- components:
- - type: Transform
- pos: -47.5,34.5
- parent: 2
- - uid: 11668
- components:
- - type: Transform
- pos: -24.5,68.5
- parent: 2
- - uid: 11669
- components:
- - type: Transform
- pos: -37.5,42.5
- parent: 2
- - uid: 11670
- components:
- - type: Transform
- pos: -25.5,-74.5
- parent: 2
- - uid: 11671
- components:
- - type: Transform
- pos: 17.5,-15.5
- parent: 2
- - uid: 11672
- components:
- - type: Transform
- pos: -36.5,-5.5
- parent: 2
- - uid: 11673
- components:
- - type: Transform
- pos: -54.5,-37.5
- parent: 2
- - uid: 11674
- components:
- - type: Transform
- pos: -55.5,-35.5
- parent: 2
- - uid: 11675
- components:
- - type: Transform
- pos: -55.5,-36.5
- parent: 2
- - uid: 11676
- components:
- - type: Transform
- pos: 20.5,-28.5
- parent: 2
- - uid: 11677
- components:
- - type: Transform
- pos: -26.5,59.5
- parent: 2
- - uid: 11678
- components:
- - type: Transform
- pos: -28.5,-43.5
- parent: 2
- - uid: 11679
- components:
- - type: Transform
- pos: 11.5,-44.5
- parent: 2
- - uid: 11680
- components:
- - type: Transform
- pos: -26.5,-19.5
- parent: 2
- - uid: 11681
- components:
- - type: Transform
- pos: 25.5,-10.5
- parent: 2
- - uid: 11682
- components:
- - type: Transform
- pos: 31.5,2.5
- parent: 2
- - uid: 11683
- components:
- - type: Transform
- pos: -44.5,-9.5
- parent: 2
- - uid: 11684
- components:
- - type: Transform
- pos: 42.5,-18.5
- parent: 2
- - uid: 11685
- components:
- - type: Transform
- pos: 31.5,9.5
- parent: 2
- - uid: 11686
- components:
- - type: Transform
- pos: -14.5,23.5
- parent: 2
- - uid: 11687
- components:
- - type: Transform
- pos: 21.5,18.5
- parent: 2
- - uid: 11688
- components:
- - type: Transform
- pos: -51.5,-13.5
- parent: 2
- - uid: 11689
- components:
- - type: Transform
- pos: -8.5,23.5
- parent: 2
- - uid: 11690
- components:
- - type: Transform
- pos: 13.5,45.5
- parent: 2
- - uid: 11691
- components:
- - type: Transform
- pos: -51.5,-3.5
- parent: 2
- - uid: 11692
- components:
- - type: Transform
- pos: -6.5,23.5
- parent: 2
- - uid: 11693
- components:
- - type: Transform
- pos: -48.5,-14.5
- parent: 2
- - uid: 11694
- components:
- - type: Transform
- pos: 1.5,42.5
- parent: 2
- - uid: 11695
- components:
- - type: Transform
- pos: 1.5,41.5
- parent: 2
- - uid: 11696
- components:
- - type: Transform
- pos: -18.5,6.5
- parent: 2
- - uid: 11697
- components:
- - type: Transform
- pos: 10.5,50.5
- parent: 2
- - uid: 11698
- components:
- - type: Transform
- pos: 0.5,-13.5
- parent: 2
- - uid: 11699
- components:
- - type: Transform
- pos: -20.5,28.5
- parent: 2
- - uid: 11700
- components:
- - type: Transform
- pos: 15.5,45.5
- parent: 2
- - uid: 11701
- components:
- - type: Transform
- pos: -33.5,-3.5
- parent: 2
- - uid: 11702
- components:
- - type: Transform
- pos: -26.5,-30.5
- parent: 2
- - uid: 11703
- components:
- - type: Transform
- pos: -50.5,-7.5
- parent: 2
- - uid: 11704
- components:
- - type: Transform
- pos: 31.5,-42.5
- parent: 2
- - uid: 11705
- components:
- - type: Transform
- pos: 29.5,-42.5
- parent: 2
- - uid: 11706
- components:
- - type: Transform
- pos: -1.5,26.5
- parent: 2
- - uid: 11707
- components:
- - type: Transform
- pos: 31.5,-3.5
- parent: 2
- - uid: 11708
- components:
- - type: Transform
- pos: -58.5,56.5
- parent: 2
- - uid: 11709
- components:
- - type: Transform
- pos: -0.5,28.5
- parent: 2
- - uid: 11710
- components:
- - type: Transform
- pos: -80.5,-7.5
- parent: 2
- - uid: 11711
- components:
- - type: Transform
- pos: 28.5,-39.5
- parent: 2
- - uid: 11712
- components:
- - type: Transform
- pos: -55.5,-11.5
- parent: 2
- - uid: 11713
- components:
- - type: Transform
- pos: -44.5,22.5
- parent: 2
- - uid: 11714
- components:
- - type: Transform
- pos: 50.5,-10.5
- parent: 2
- - uid: 11715
- components:
- - type: Transform
- pos: 54.5,-20.5
- parent: 2
- - uid: 11716
- components:
- - type: Transform
- pos: 21.5,24.5
- parent: 2
- - uid: 11717
- components:
- - type: Transform
- pos: 1.5,48.5
- parent: 2
- - uid: 11718
- components:
- - type: Transform
- pos: -22.5,-69.5
- parent: 2
- - uid: 11719
- components:
- - type: Transform
- pos: 10.5,-55.5
- parent: 2
- - uid: 11720
- components:
- - type: Transform
- pos: 6.5,77.5
- parent: 2
- - uid: 11721
- components:
- - type: Transform
- pos: -41.5,19.5
- parent: 2
- - uid: 11722
- components:
- - type: Transform
- pos: 15.5,61.5
- parent: 2
- - uid: 11723
- components:
- - type: Transform
- pos: 45.5,0.5
- parent: 2
- - uid: 11724
- components:
- - type: Transform
- pos: -44.5,-10.5
- parent: 2
- - uid: 11725
- components:
- - type: Transform
- pos: 7.5,-10.5
- parent: 2
- - uid: 11726
- components:
- - type: Transform
- pos: -8.5,-63.5
- parent: 2
- - uid: 11727
- components:
- - type: Transform
- pos: -8.5,-64.5
- parent: 2
- - uid: 11728
- components:
- - type: Transform
- pos: -8.5,-65.5
- parent: 2
- - uid: 11729
- components:
- - type: Transform
- pos: -8.5,-66.5
- parent: 2
- - uid: 11730
- components:
- - type: Transform
- pos: -8.5,-67.5
- parent: 2
- - uid: 11731
- components:
- - type: Transform
- pos: 7.5,14.5
- parent: 2
- - uid: 11732
- components:
- - type: Transform
- pos: 36.5,-2.5
- parent: 2
- - uid: 11733
- components:
- - type: Transform
- pos: 19.5,26.5
- parent: 2
- - uid: 11734
- components:
- - type: Transform
- pos: -41.5,-74.5
- parent: 2
- - uid: 11735
- components:
- - type: Transform
- pos: 45.5,-4.5
- parent: 2
- - uid: 11736
- components:
- - type: Transform
- pos: -31.5,24.5
- parent: 2
- - uid: 11737
- components:
- - type: Transform
- pos: 44.5,-10.5
- parent: 2
- - uid: 11738
- components:
- - type: Transform
- pos: -48.5,-40.5
- parent: 2
- - uid: 11739
- components:
- - type: Transform
- pos: -80.5,-6.5
- parent: 2
- - uid: 11740
- components:
- - type: Transform
- pos: -21.5,-50.5
- parent: 2
- - uid: 11741
- components:
- - type: Transform
- pos: -20.5,-50.5
- parent: 2
- - uid: 11742
- components:
- - type: Transform
- pos: -19.5,-50.5
- parent: 2
- - uid: 11743
- components:
- - type: Transform
- pos: -18.5,-50.5
- parent: 2
- - uid: 11744
- components:
- - type: Transform
- pos: -17.5,-50.5
- parent: 2
- - uid: 11745
- components:
- - type: Transform
- pos: -16.5,-50.5
- parent: 2
- - uid: 11746
- components:
- - type: Transform
- pos: -15.5,-50.5
- parent: 2
- - uid: 11747
- components:
- - type: Transform
- pos: -76.5,-6.5
- parent: 2
- - uid: 11748
- components:
- - type: Transform
- pos: -14.5,-50.5
- parent: 2
- - uid: 11749
- components:
- - type: Transform
- pos: -49.5,-41.5
- parent: 2
- - uid: 11750
- components:
- - type: Transform
- pos: -27.5,-47.5
- parent: 2
- - uid: 11751
- components:
- - type: Transform
- pos: -26.5,-47.5
- parent: 2
- - uid: 11752
- components:
- - type: Transform
- pos: -25.5,-47.5
- parent: 2
- - uid: 11753
- components:
- - type: Transform
- pos: -55.5,-30.5
- parent: 2
- - uid: 11754
- components:
- - type: Transform
- pos: 4.5,-74.5
- parent: 2
- - uid: 11755
- components:
- - type: Transform
- pos: -54.5,-36.5
- parent: 2
- - uid: 11756
- components:
- - type: Transform
- pos: 5.5,-74.5
- parent: 2
- - uid: 11757
- components:
- - type: Transform
- pos: 6.5,-74.5
- parent: 2
- - uid: 11758
- components:
- - type: Transform
- pos: 6.5,-73.5
- parent: 2
- - uid: 11759
- components:
- - type: Transform
- pos: 6.5,-72.5
- parent: 2
- - uid: 11760
- components:
- - type: Transform
- pos: -54.5,-38.5
- parent: 2
- - uid: 11761
- components:
- - type: Transform
- pos: -55.5,-34.5
- parent: 2
- - uid: 11762
- components:
- - type: Transform
- pos: -55.5,-33.5
- parent: 2
- - uid: 11763
- components:
- - type: Transform
- pos: -5.5,-77.5
- parent: 2
- - uid: 11764
- components:
- - type: Transform
- pos: 3.5,-74.5
- parent: 2
- - uid: 11765
- components:
- - type: Transform
- pos: 2.5,-74.5
- parent: 2
- - uid: 11766
- components:
- - type: Transform
- pos: 1.5,-74.5
- parent: 2
- - uid: 11767
- components:
- - type: Transform
- pos: 1.5,-75.5
- parent: 2
- - uid: 11768
- components:
- - type: Transform
- pos: 1.5,-77.5
- parent: 2
- - uid: 11769
- components:
- - type: Transform
- pos: 1.5,-76.5
- parent: 2
- - uid: 11770
- components:
- - type: Transform
- pos: -3.5,-77.5
- parent: 2
- - uid: 11771
- components:
- - type: Transform
- pos: -4.5,-77.5
- parent: 2
- - uid: 11772
- components:
- - type: Transform
- pos: -2.5,-77.5
- parent: 2
- - uid: 11773
- components:
- - type: Transform
- pos: -1.5,-77.5
- parent: 2
- - uid: 11774
- components:
- - type: Transform
- pos: 0.5,-77.5
- parent: 2
- - uid: 11775
- components:
- - type: Transform
- pos: -0.5,-77.5
- parent: 2
- - uid: 11776
- components:
- - type: Transform
- pos: -6.5,-77.5
- parent: 2
- - uid: 11777
- components:
- - type: Transform
- pos: -54.5,-33.5
- parent: 2
- - uid: 11778
- components:
- - type: Transform
- pos: -54.5,-32.5
- parent: 2
- - uid: 11779
- components:
- - type: Transform
- pos: -54.5,-31.5
- parent: 2
- - uid: 11780
- components:
- - type: Transform
- pos: -54.5,-30.5
- parent: 2
- - uid: 11781
- components:
- - type: Transform
- pos: -56.5,-30.5
- parent: 2
- - uid: 11782
- components:
- - type: Transform
- pos: -57.5,-30.5
- parent: 2
- - uid: 11783
- components:
- - type: Transform
- pos: -58.5,-30.5
- parent: 2
- - uid: 11784
- components:
- - type: Transform
- pos: -59.5,-30.5
- parent: 2
- - uid: 11785
- components:
- - type: Transform
- pos: -60.5,-30.5
- parent: 2
- - uid: 11786
- components:
- - type: Transform
- pos: -61.5,-30.5
- parent: 2
- - uid: 11787
- components:
- - type: Transform
- pos: -15.5,-55.5
- parent: 2
- - uid: 11788
- components:
- - type: Transform
- pos: -16.5,-55.5
- parent: 2
- - uid: 11789
- components:
- - type: Transform
- pos: -16.5,-54.5
- parent: 2
- - uid: 11790
- components:
- - type: Transform
- pos: -54.5,-39.5
- parent: 2
- - uid: 11791
- components:
- - type: Transform
- pos: -53.5,-39.5
- parent: 2
- - uid: 11792
- components:
- - type: Transform
- pos: -52.5,-39.5
- parent: 2
- - uid: 11793
- components:
- - type: Transform
- pos: -52.5,-40.5
- parent: 2
- - uid: 11794
- components:
- - type: Transform
- pos: -51.5,-40.5
- parent: 2
- - uid: 11795
- components:
- - type: Transform
- pos: -50.5,-40.5
- parent: 2
- - uid: 11796
- components:
- - type: Transform
- pos: -49.5,-40.5
- parent: 2
- - uid: 11797
- components:
- - type: Transform
- pos: -77.5,-6.5
- parent: 2
- - uid: 11798
- components:
- - type: Transform
- pos: -75.5,-6.5
- parent: 2
- - uid: 11799
- components:
- - type: Transform
- pos: -74.5,-6.5
- parent: 2
- - uid: 11800
- components:
- - type: Transform
- pos: -11.5,-52.5
- parent: 2
- - uid: 11801
- components:
- - type: Transform
- pos: -10.5,-50.5
- parent: 2
- - uid: 11802
- components:
- - type: Transform
- pos: -9.5,-50.5
- parent: 2
- - uid: 11803
- components:
- - type: Transform
- pos: -8.5,-50.5
- parent: 2
- - uid: 11804
- components:
- - type: Transform
- pos: -7.5,-50.5
- parent: 2
- - uid: 11805
- components:
- - type: Transform
- pos: -6.5,-50.5
- parent: 2
- - uid: 11806
- components:
- - type: Transform
- pos: -5.5,-50.5
- parent: 2
- - uid: 11807
- components:
- - type: Transform
- pos: -4.5,-50.5
- parent: 2
- - uid: 11808
- components:
- - type: Transform
- pos: -3.5,-50.5
- parent: 2
- - uid: 11809
- components:
- - type: Transform
- pos: -3.5,-49.5
- parent: 2
- - uid: 11810
- components:
- - type: Transform
- pos: -3.5,-48.5
- parent: 2
- - uid: 11811
- components:
- - type: Transform
- pos: -3.5,-47.5
- parent: 2
- - uid: 11812
- components:
- - type: Transform
- pos: -3.5,-46.5
- parent: 2
- - uid: 11813
- components:
- - type: Transform
- pos: -3.5,-45.5
- parent: 2
- - uid: 11814
- components:
- - type: Transform
- pos: -3.5,-44.5
- parent: 2
- - uid: 11815
- components:
- - type: Transform
- pos: -10.5,-40.5
- parent: 2
- - uid: 11816
- components:
- - type: Transform
- pos: -9.5,-40.5
- parent: 2
- - uid: 11817
- components:
- - type: Transform
- pos: -8.5,-40.5
- parent: 2
- - uid: 11818
- components:
- - type: Transform
- pos: -7.5,-40.5
- parent: 2
- - uid: 11819
- components:
- - type: Transform
- pos: -6.5,-40.5
- parent: 2
- - uid: 11820
- components:
- - type: Transform
- pos: -5.5,-40.5
- parent: 2
- - uid: 11821
- components:
- - type: Transform
- pos: -4.5,-40.5
- parent: 2
- - uid: 11822
- components:
- - type: Transform
- pos: -4.5,-39.5
- parent: 2
- - uid: 11823
- components:
- - type: Transform
- pos: -4.5,-38.5
- parent: 2
- - uid: 11824
- components:
- - type: Transform
- pos: -4.5,-37.5
- parent: 2
- - uid: 11825
- components:
- - type: Transform
- pos: -4.5,-36.5
- parent: 2
- - uid: 11826
- components:
- - type: Transform
- pos: 8.5,-55.5
- parent: 2
- - uid: 11827
- components:
- - type: Transform
- pos: -82.5,-1.5
- parent: 2
- - uid: 11828
- components:
- - type: Transform
- pos: -82.5,-2.5
- parent: 2
- - uid: 11829
- components:
- - type: Transform
- pos: -82.5,-12.5
- parent: 2
- - uid: 11830
- components:
- - type: Transform
- pos: -82.5,-13.5
- parent: 2
- - uid: 11831
- components:
- - type: Transform
- pos: -62.5,-6.5
- parent: 2
- - uid: 11832
- components:
- - type: Transform
- pos: -63.5,-6.5
- parent: 2
- - uid: 11833
- components:
- - type: Transform
- pos: -64.5,-6.5
- parent: 2
- - uid: 11834
- components:
- - type: Transform
- pos: -65.5,-6.5
- parent: 2
- - uid: 11835
- components:
- - type: Transform
- pos: -66.5,-6.5
- parent: 2
- - uid: 11836
- components:
- - type: Transform
- pos: -67.5,-6.5
- parent: 2
- - uid: 11837
- components:
- - type: Transform
- pos: -68.5,-6.5
- parent: 2
- - uid: 11838
- components:
- - type: Transform
- pos: -69.5,-6.5
- parent: 2
- - uid: 11839
- components:
- - type: Transform
- pos: -66.5,-5.5
- parent: 2
- - uid: 11840
- components:
- - type: Transform
- pos: -66.5,-4.5
- parent: 2
- - uid: 11841
- components:
- - type: Transform
- pos: -81.5,-2.5
- parent: 2
- - uid: 11842
- components:
- - type: Transform
- pos: -80.5,-2.5
- parent: 2
- - uid: 11843
- components:
- - type: Transform
- pos: -80.5,-3.5
- parent: 2
- - uid: 11844
- components:
- - type: Transform
- pos: -38.5,39.5
- parent: 2
- - uid: 11845
- components:
- - type: Transform
- pos: -39.5,39.5
- parent: 2
- - uid: 11846
- components:
- - type: Transform
- pos: 79.5,-42.5
- parent: 2
- - uid: 11847
- components:
- - type: Transform
- pos: 77.5,-42.5
- parent: 2
- - uid: 11848
- components:
- - type: Transform
- pos: 46.5,24.5
- parent: 2
- - uid: 11849
- components:
- - type: Transform
- pos: -118.5,35.5
- parent: 2
- - uid: 11850
- components:
- - type: Transform
- pos: -118.5,38.5
- parent: 2
- - uid: 11851
- components:
- - type: Transform
- pos: -118.5,40.5
- parent: 2
- - uid: 11852
- components:
- - type: Transform
- pos: -123.5,41.5
- parent: 2
- - uid: 11853
- components:
- - type: Transform
- pos: -123.5,40.5
- parent: 2
- - uid: 11854
- components:
- - type: Transform
- pos: -118.5,36.5
- parent: 2
- - uid: 11855
- components:
- - type: Transform
- pos: -118.5,37.5
- parent: 2
- - uid: 11856
- components:
- - type: Transform
- pos: -118.5,32.5
- parent: 2
- - uid: 11857
- components:
- - type: Transform
- pos: -119.5,40.5
- parent: 2
- - uid: 11858
- components:
- - type: Transform
- pos: -121.5,40.5
- parent: 2
- - uid: 11859
- components:
- - type: Transform
- pos: -120.5,40.5
- parent: 2
- - uid: 11860
- components:
- - type: Transform
- pos: -118.5,51.5
- parent: 2
- - uid: 11861
- components:
- - type: Transform
- pos: -118.5,49.5
- parent: 2
- - uid: 11862
- components:
- - type: Transform
- pos: -114.5,26.5
- parent: 2
- - uid: 11863
- components:
- - type: Transform
- pos: -114.5,27.5
- parent: 2
- - uid: 11864
- components:
- - type: Transform
- pos: -118.5,22.5
- parent: 2
- - uid: 11865
- components:
- - type: Transform
- pos: -118.5,21.5
- parent: 2
- - uid: 11866
- components:
- - type: Transform
- pos: -116.5,23.5
- parent: 2
- - uid: 11867
- components:
- - type: Transform
- pos: -115.5,23.5
- parent: 2
- - uid: 11868
- components:
- - type: Transform
- pos: -120.5,23.5
- parent: 2
- - uid: 11869
- components:
- - type: Transform
- pos: -119.5,23.5
- parent: 2
- - uid: 11870
- components:
- - type: Transform
- pos: -118.5,23.5
- parent: 2
- - uid: 11871
- components:
- - type: Transform
- pos: -122.5,25.5
- parent: 2
- - uid: 11872
- components:
- - type: Transform
- pos: -122.5,24.5
- parent: 2
- - uid: 11873
- components:
- - type: Transform
- pos: -122.5,23.5
- parent: 2
- - uid: 11874
- components:
- - type: Transform
- pos: -121.5,23.5
- parent: 2
- - uid: 11875
- components:
- - type: Transform
- pos: -114.5,23.5
- parent: 2
- - uid: 11876
- components:
- - type: Transform
- pos: -114.5,24.5
- parent: 2
- - uid: 11877
- components:
- - type: Transform
- pos: -114.5,25.5
- parent: 2
- - uid: 11878
- components:
- - type: Transform
- pos: -118.5,50.5
- parent: 2
- - uid: 11879
- components:
- - type: Transform
- pos: -122.5,27.5
- parent: 2
- - uid: 11880
- components:
- - type: Transform
- pos: -122.5,26.5
- parent: 2
- - uid: 11881
- components:
- - type: Transform
- pos: -117.5,23.5
- parent: 2
- - uid: 11882
- components:
- - type: Transform
- pos: -118.5,27.5
- parent: 2
- - uid: 11883
- components:
- - type: Transform
- pos: -118.5,20.5
- parent: 2
- - uid: 11884
- components:
- - type: Transform
- pos: -118.5,28.5
- parent: 2
- - uid: 11885
- components:
- - type: Transform
- pos: -118.5,29.5
- parent: 2
- - uid: 11886
- components:
- - type: Transform
- pos: -118.5,24.5
- parent: 2
- - uid: 11887
- components:
- - type: Transform
- pos: -118.5,25.5
- parent: 2
- - uid: 11888
- components:
- - type: Transform
- pos: -118.5,26.5
- parent: 2
- - uid: 11889
- components:
- - type: Transform
- pos: -118.5,30.5
- parent: 2
- - uid: 11890
- components:
- - type: Transform
- pos: -118.5,31.5
- parent: 2
- - uid: 11891
- components:
- - type: Transform
- pos: -118.5,34.5
- parent: 2
- - uid: 11892
- components:
- - type: Transform
- pos: -118.5,33.5
- parent: 2
- - uid: 11893
- components:
- - type: Transform
- pos: -123.5,43.5
- parent: 2
- - uid: 11894
- components:
- - type: Transform
- pos: -118.5,41.5
- parent: 2
- - uid: 11895
- components:
- - type: Transform
- pos: -118.5,48.5
- parent: 2
- - uid: 11896
- components:
- - type: Transform
- pos: -118.5,42.5
- parent: 2
- - uid: 11897
- components:
- - type: Transform
- pos: -117.5,40.5
- parent: 2
- - uid: 11898
- components:
- - type: Transform
- pos: -118.5,43.5
- parent: 2
- - uid: 11899
- components:
- - type: Transform
- pos: -118.5,44.5
- parent: 2
- - uid: 11900
- components:
- - type: Transform
- pos: -118.5,39.5
- parent: 2
- - uid: 11901
- components:
- - type: Transform
- pos: -115.5,40.5
- parent: 2
- - uid: 11902
- components:
- - type: Transform
- pos: -116.5,40.5
- parent: 2
- - uid: 11903
- components:
- - type: Transform
- pos: -118.5,45.5
- parent: 2
- - uid: 11904
- components:
- - type: Transform
- pos: -118.5,46.5
- parent: 2
- - uid: 11905
- components:
- - type: Transform
- pos: -118.5,47.5
- parent: 2
- - uid: 11906
- components:
- - type: Transform
- pos: -113.5,44.5
- parent: 2
- - uid: 11907
- components:
- - type: Transform
- pos: -123.5,42.5
- parent: 2
- - uid: 11908
- components:
- - type: Transform
- pos: -123.5,44.5
- parent: 2
- - uid: 11909
- components:
- - type: Transform
- pos: -113.5,41.5
- parent: 2
- - uid: 11910
- components:
- - type: Transform
- pos: -113.5,42.5
- parent: 2
- - uid: 11911
- components:
- - type: Transform
- pos: -123.5,24.5
- parent: 2
- - uid: 11912
- components:
- - type: Transform
- pos: -67.5,53.5
- parent: 2
- - uid: 11913
- components:
- - type: Transform
- pos: -68.5,49.5
- parent: 2
- - uid: 11914
- components:
- - type: Transform
- pos: -68.5,51.5
- parent: 2
- - uid: 11915
- components:
- - type: Transform
- pos: -63.5,53.5
- parent: 2
- - uid: 11916
- components:
- - type: Transform
- pos: 61.5,25.5
- parent: 2
- - uid: 11917
- components:
- - type: Transform
- pos: -65.5,53.5
- parent: 2
- - uid: 11918
- components:
- - type: Transform
- pos: -68.5,50.5
- parent: 2
- - uid: 11919
- components:
- - type: Transform
- pos: -58.5,54.5
- parent: 2
- - uid: 11920
- components:
- - type: Transform
- pos: -68.5,47.5
- parent: 2
- - uid: 11921
- components:
- - type: Transform
- pos: -58.5,53.5
- parent: 2
- - uid: 11922
- components:
- - type: Transform
- pos: -61.5,53.5
- parent: 2
- - uid: 11923
- components:
- - type: Transform
- pos: -68.5,53.5
- parent: 2
- - uid: 11924
- components:
- - type: Transform
- pos: -68.5,52.5
- parent: 2
- - uid: 11925
- components:
- - type: Transform
- pos: -68.5,48.5
- parent: 2
- - uid: 11926
- components:
- - type: Transform
- pos: -58.5,55.5
- parent: 2
- - uid: 11927
- components:
- - type: Transform
- pos: -66.5,53.5
- parent: 2
- - uid: 11928
- components:
- - type: Transform
- pos: -60.5,53.5
- parent: 2
- - uid: 11929
- components:
- - type: Transform
- pos: -59.5,53.5
- parent: 2
- - uid: 11930
- components:
- - type: Transform
- pos: 80.5,-1.5
- parent: 2
- - uid: 11931
- components:
- - type: Transform
- pos: 81.5,-1.5
- parent: 2
- - uid: 11932
- components:
- - type: Transform
- pos: 82.5,-1.5
- parent: 2
- - uid: 11933
- components:
- - type: Transform
- pos: 89.5,1.5
- parent: 2
- - uid: 11934
- components:
- - type: Transform
- pos: 87.5,0.5
- parent: 2
- - uid: 11935
- components:
- - type: Transform
- pos: 85.5,-1.5
- parent: 2
- - uid: 11936
- components:
- - type: Transform
- pos: 87.5,-0.5
- parent: 2
- - uid: 11937
- components:
- - type: Transform
- pos: 88.5,1.5
- parent: 2
- - uid: 11938
- components:
- - type: Transform
- pos: 86.5,-1.5
- parent: 2
- - uid: 11939
- components:
- - type: Transform
- pos: 84.5,-1.5
- parent: 2
- - uid: 11940
- components:
- - type: Transform
- pos: 78.5,-1.5
- parent: 2
- - uid: 11941
- components:
- - type: Transform
- pos: 79.5,-1.5
- parent: 2
- - uid: 11942
- components:
- - type: Transform
- pos: 83.5,-1.5
- parent: 2
- - uid: 11943
- components:
- - type: Transform
- pos: 87.5,-1.5
- parent: 2
- - uid: 11944
- components:
- - type: Transform
- pos: 87.5,1.5
- parent: 2
- - uid: 11945
- components:
- - type: Transform
- pos: 89.5,2.5
- parent: 2
- - uid: 11946
- components:
- - type: Transform
- pos: 90.5,2.5
- parent: 2
- - uid: 11947
- components:
- - type: Transform
- pos: 91.5,2.5
- parent: 2
- - uid: 11948
- components:
- - type: Transform
- pos: 91.5,3.5
- parent: 2
- - uid: 11949
- components:
- - type: Transform
- pos: 91.5,4.5
- parent: 2
- - uid: 11950
- components:
- - type: Transform
- pos: 69.5,23.5
- parent: 2
- - uid: 11951
- components:
- - type: Transform
- pos: 69.5,22.5
- parent: 2
- - uid: 11952
- components:
- - type: Transform
- pos: 68.5,22.5
- parent: 2
- - uid: 11953
- components:
- - type: Transform
- pos: 67.5,22.5
- parent: 2
- - uid: 11954
- components:
- - type: Transform
- pos: 66.5,22.5
- parent: 2
- - uid: 11955
- components:
- - type: Transform
- pos: 65.5,22.5
- parent: 2
- - uid: 11956
- components:
- - type: Transform
- pos: 64.5,22.5
- parent: 2
- - uid: 11957
- components:
- - type: Transform
- pos: 63.5,22.5
- parent: 2
- - uid: 11958
- components:
- - type: Transform
- pos: 62.5,22.5
- parent: 2
- - uid: 11959
- components:
- - type: Transform
- pos: 61.5,22.5
- parent: 2
- - uid: 11960
- components:
- - type: Transform
- pos: 61.5,21.5
- parent: 2
- - uid: 11961
- components:
- - type: Transform
- pos: -24.5,68.5
- parent: 2
- - uid: 11962
- components:
- - type: Transform
- pos: -23.5,68.5
- parent: 2
- - uid: 11963
- components:
- - type: Transform
- pos: 11.5,83.5
- parent: 2
- - uid: 11964
- components:
- - type: Transform
- pos: -7.5,68.5
- parent: 2
- - uid: 11965
- components:
- - type: Transform
- pos: 11.5,82.5
- parent: 2
- - uid: 11966
- components:
- - type: Transform
- pos: -15.5,68.5
- parent: 2
- - uid: 11967
- components:
- - type: Transform
- pos: -5.5,68.5
- parent: 2
- - uid: 11968
- components:
- - type: Transform
- pos: -16.5,69.5
- parent: 2
- - uid: 11969
- components:
- - type: Transform
- pos: -13.5,71.5
- parent: 2
- - uid: 11970
- components:
- - type: Transform
- pos: -28.5,55.5
- parent: 2
- - uid: 11971
- components:
- - type: Transform
- pos: 10.5,81.5
- parent: 2
- - uid: 11972
- components:
- - type: Transform
- pos: -22.5,68.5
- parent: 2
- - uid: 11973
- components:
- - type: Transform
- pos: -28.5,68.5
- parent: 2
- - uid: 11974
- components:
- - type: Transform
- pos: 4.5,-12.5
- parent: 2
- - uid: 11975
- components:
- - type: Transform
- pos: -21.5,68.5
- parent: 2
- - uid: 11976
- components:
- - type: Transform
- pos: -19.5,68.5
- parent: 2
- - uid: 11977
- components:
- - type: Transform
- pos: -20.5,68.5
- parent: 2
- - uid: 11978
- components:
- - type: Transform
- pos: -18.5,68.5
- parent: 2
- - uid: 11979
- components:
- - type: Transform
- pos: 17.5,66.5
- parent: 2
- - uid: 11980
- components:
- - type: Transform
- pos: -17.5,68.5
- parent: 2
- - uid: 11981
- components:
- - type: Transform
- pos: -16.5,68.5
- parent: 2
- - uid: 11982
- components:
- - type: Transform
- pos: -14.5,68.5
- parent: 2
- - uid: 11983
- components:
- - type: Transform
- pos: -13.5,68.5
- parent: 2
- - uid: 11984
- components:
- - type: Transform
- pos: -12.5,68.5
- parent: 2
- - uid: 11985
- components:
- - type: Transform
- pos: -11.5,68.5
- parent: 2
- - uid: 11986
- components:
- - type: Transform
- pos: -10.5,68.5
- parent: 2
- - uid: 11987
- components:
- - type: Transform
- pos: -9.5,68.5
- parent: 2
- - uid: 11988
- components:
- - type: Transform
- pos: -6.5,68.5
- parent: 2
- - uid: 11989
- components:
- - type: Transform
- pos: -8.5,68.5
- parent: 2
- - uid: 11990
- components:
- - type: Transform
- pos: -4.5,68.5
- parent: 2
- - uid: 11991
- components:
- - type: Transform
- pos: -3.5,68.5
- parent: 2
- - uid: 11992
- components:
- - type: Transform
- pos: -2.5,68.5
- parent: 2
- - uid: 11993
- components:
- - type: Transform
- pos: -1.5,68.5
- parent: 2
- - uid: 11994
- components:
- - type: Transform
- pos: -0.5,68.5
- parent: 2
- - uid: 11995
- components:
- - type: Transform
- pos: 0.5,68.5
- parent: 2
- - uid: 11996
- components:
- - type: Transform
- pos: 1.5,68.5
- parent: 2
- - uid: 11997
- components:
- - type: Transform
- pos: 2.5,68.5
- parent: 2
- - uid: 11998
- components:
- - type: Transform
- pos: 3.5,68.5
- parent: 2
- - uid: 11999
- components:
- - type: Transform
- pos: 4.5,68.5
- parent: 2
- - uid: 12000
- components:
- - type: Transform
- pos: 5.5,68.5
- parent: 2
- - uid: 12001
- components:
- - type: Transform
- pos: 6.5,68.5
- parent: 2
- - uid: 38741
- components:
- - type: Transform
- pos: 2.5,0.5
- parent: 38714
- - uid: 38742
- components:
- - type: Transform
- pos: 2.5,1.5
- parent: 38714
- - uid: 38743
- components:
- - type: Transform
- pos: 2.5,2.5
- parent: 38714
- - uid: 38744
- components:
- - type: Transform
- pos: 3.5,-0.5
- parent: 38714
- - uid: 38745
- components:
- - type: Transform
- pos: 3.5,0.5
- parent: 38714
-- proto: CableMVStack
- entities:
- - uid: 1061
- components:
- - type: Transform
- parent: 1057
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 12002
- components:
- - type: Transform
- pos: -57.533306,-13.3101
- parent: 2
- - uid: 12003
- components:
- - type: Transform
- pos: 11.488064,40.640076
- parent: 2
- - uid: 12004
- components:
- - type: Transform
- pos: -7.634339,-35.40014
- parent: 2
- - type: Physics
- canCollide: False
-- proto: CableMVStack1
- entities:
- - uid: 12005
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.527086,-60.507156
- parent: 2
-- proto: CableTerminal
- entities:
- - uid: 12006
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,61.5
- parent: 2
- - uid: 12007
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,31.5
- parent: 2
- - uid: 12008
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-0.5
- parent: 2
- - uid: 12009
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,-3.5
- parent: 2
- - uid: 12010
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,45.5
- parent: 2
- - uid: 12011
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-30.5
- parent: 2
- - type: Physics
- canCollide: False
- - type: Fixtures
- fixtures: {}
- - uid: 12012
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-9.5
- parent: 2
- - uid: 12013
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-40.5
- parent: 2
- - type: Physics
- canCollide: False
- - type: Fixtures
- fixtures: {}
- - uid: 12014
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,1.5
- parent: 2
- - uid: 12015
- components:
- - type: Transform
- pos: -59.5,61.5
- parent: 2
- - type: Physics
- canCollide: False
- - type: Fixtures
- fixtures: {}
- - uid: 12016
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,12.5
- parent: 2
- - uid: 12017
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,88.5
- parent: 2
- - type: Physics
- canCollide: False
- - type: Fixtures
- fixtures: {}
- - uid: 12018
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,45.5
- parent: 2
- - uid: 12019
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,2.5
- parent: 2
- - uid: 12020
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,0.5
- parent: 2
- - uid: 12021
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,-0.5
- parent: 2
- - uid: 12022
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-73.5
- parent: 2
- - type: Physics
- canCollide: False
- - type: Fixtures
- fixtures: {}
- - uid: 12023
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -80.5,-12.5
- parent: 2
- - uid: 12024
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,-44.5
- parent: 2
- - uid: 12025
- components:
- - type: Transform
- pos: -121.5,25.5
- parent: 2
-- proto: CandleRed
- entities:
- - uid: 12026
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.50317,-34.333656
- parent: 2
-- proto: CandleRedInfinite
- entities:
- - uid: 12027
- components:
- - type: Transform
- pos: -67.991455,-35.431976
- parent: 2
-- proto: CannabisSeeds
- entities:
- - uid: 12028
- components:
- - type: Transform
- pos: -38.5,32.5
- parent: 2
-- proto: CapacitorStockPart
- entities:
- - uid: 1062
- components:
- - type: Transform
- parent: 1057
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1063
- components:
- - type: Transform
- parent: 1057
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 12029
- components:
- - type: Transform
- pos: -32.5,12.5
- parent: 2
- - uid: 12030
- components:
- - type: Transform
- pos: -45.5,4.5
- parent: 2
- - uid: 12031
- components:
- - type: Transform
- pos: -7.5,-39.5
- parent: 2
-- proto: CaptainIDCard
- entities:
- - uid: 12032
- components:
- - type: Transform
- pos: 7.44547,0.9202859
- parent: 2
-- proto: CarbonDioxideCanister
- entities:
- - uid: 12033
- components:
- - type: Transform
- pos: -30.5,-50.5
- parent: 2
- - uid: 12034
- components:
- - type: Transform
- pos: 77.5,23.5
- parent: 2
- - uid: 12035
- components:
- - type: Transform
- pos: -30.5,-49.5
- parent: 2
- - type: Lock
- locked: False
- - uid: 12036
- components:
- - type: Transform
- pos: -40.5,-50.5
- parent: 2
- - uid: 12037
- components:
- - type: Transform
- pos: -70.5,31.5
- parent: 2
-- proto: Carpet
- entities:
- - uid: 12038
- components:
- - type: Transform
- pos: -11.5,9.5
- parent: 2
- - uid: 12039
- components:
- - type: Transform
- pos: -12.5,9.5
- parent: 2
- - uid: 12040
- components:
- - type: Transform
- pos: -12.5,10.5
- parent: 2
- - uid: 12041
- components:
- - type: Transform
- pos: -11.5,10.5
- parent: 2
- - uid: 12042
- components:
- - type: Transform
- pos: -10.5,10.5
- parent: 2
- - uid: 12043
- components:
- - type: Transform
- pos: -10.5,9.5
- parent: 2
- - uid: 12044
- components:
- - type: Transform
- pos: -10.5,8.5
- parent: 2
- - uid: 12045
- components:
- - type: Transform
- pos: -11.5,8.5
- parent: 2
- - uid: 12046
- components:
- - type: Transform
- pos: -12.5,8.5
- parent: 2
- - uid: 12047
- components:
- - type: Transform
- pos: -13.5,8.5
- parent: 2
- - uid: 12048
- components:
- - type: Transform
- pos: -13.5,9.5
- parent: 2
- - uid: 12049
- components:
- - type: Transform
- pos: -13.5,10.5
- parent: 2
- - uid: 12050
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,-15.5
- parent: 2
- - uid: 12051
- components:
- - type: Transform
- pos: 33.5,8.5
- parent: 2
- - uid: 12052
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-16.5
- parent: 2
- - uid: 12053
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,-14.5
- parent: 2
- - uid: 12054
- components:
- - type: Transform
- pos: 32.5,9.5
- parent: 2
- - uid: 12055
- components:
- - type: Transform
- pos: 31.5,8.5
- parent: 2
- - uid: 12056
- components:
- - type: Transform
- pos: 8.5,7.5
- parent: 2
- - uid: 12057
- components:
- - type: Transform
- pos: -1.5,13.5
- parent: 2
- - uid: 12058
- components:
- - type: Transform
- pos: -0.5,13.5
- parent: 2
- - uid: 12059
- components:
- - type: Transform
- pos: 7.5,7.5
- parent: 2
- - uid: 12060
- components:
- - type: Transform
- pos: 7.5,5.5
- parent: 2
- - uid: 12061
- components:
- - type: Transform
- pos: 9.5,6.5
- parent: 2
- - uid: 12062
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-13.5
- parent: 2
- - uid: 12063
- components:
- - type: Transform
- pos: -1.5,12.5
- parent: 2
- - uid: 12064
- components:
- - type: Transform
- pos: -0.5,12.5
- parent: 2
- - uid: 12065
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-13.5
- parent: 2
- - uid: 12066
- components:
- - type: Transform
- pos: 32.5,10.5
- parent: 2
- - uid: 12067
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-14.5
- parent: 2
- - uid: 12068
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,-16.5
- parent: 2
- - uid: 12069
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-15.5
- parent: 2
- - uid: 12070
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-14.5
- parent: 2
- - uid: 12071
- components:
- - type: Transform
- pos: 33.5,10.5
- parent: 2
- - uid: 12072
- components:
- - type: Transform
- pos: 0.5,12.5
- parent: 2
- - uid: 12073
- components:
- - type: Transform
- pos: 31.5,10.5
- parent: 2
- - uid: 12074
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-16.5
- parent: 2
- - uid: 12075
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,-13.5
- parent: 2
- - uid: 12076
- components:
- - type: Transform
- pos: 31.5,9.5
- parent: 2
- - uid: 12077
- components:
- - type: Transform
- pos: 0.5,13.5
- parent: 2
- - uid: 12078
- components:
- - type: Transform
- pos: 33.5,9.5
- parent: 2
- - uid: 12079
- components:
- - type: Transform
- pos: 7.5,6.5
- parent: 2
- - uid: 12080
- components:
- - type: Transform
- pos: 8.5,6.5
- parent: 2
- - uid: 12081
- components:
- - type: Transform
- pos: 9.5,7.5
- parent: 2
- - uid: 12082
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-15.5
- parent: 2
- - uid: 12083
- components:
- - type: Transform
- pos: 32.5,8.5
- parent: 2
- - uid: 12084
- components:
- - type: Transform
- pos: -9.5,10.5
- parent: 2
- - uid: 12085
- components:
- - type: Transform
- pos: -9.5,9.5
- parent: 2
- - uid: 12086
- components:
- - type: Transform
- pos: -9.5,8.5
- parent: 2
-- proto: CarpetBlack
- entities:
- - uid: 12087
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,9.5
- parent: 2
- - uid: 12088
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,10.5
- parent: 2
- - uid: 12089
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,9.5
- parent: 2
- - uid: 12090
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,10.5
- parent: 2
- - uid: 12091
- components:
- - type: Transform
- pos: -29.5,-7.5
- parent: 2
- - uid: 12092
- components:
- - type: Transform
- pos: -71.5,-40.5
- parent: 2
- - uid: 12093
- components:
- - type: Transform
- pos: -70.5,-40.5
- parent: 2
- - uid: 12094
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,9.5
- parent: 2
- - uid: 12095
- components:
- - type: Transform
- pos: -27.5,-7.5
- parent: 2
- - uid: 12096
- components:
- - type: Transform
- pos: -22.5,-11.5
- parent: 2
- - uid: 12097
- components:
- - type: Transform
- pos: 42.5,20.5
- parent: 2
- - uid: 12098
- components:
- - type: Transform
- pos: 40.5,20.5
- parent: 2
- - uid: 12099
- components:
- - type: Transform
- pos: 40.5,19.5
- parent: 2
- - uid: 12100
- components:
- - type: Transform
- pos: 42.5,21.5
- parent: 2
- - uid: 12101
- components:
- - type: Transform
- pos: 40.5,21.5
- parent: 2
- - uid: 12102
- components:
- - type: Transform
- pos: 41.5,20.5
- parent: 2
- - uid: 12103
- components:
- - type: Transform
- pos: 41.5,19.5
- parent: 2
- - uid: 12104
- components:
- - type: Transform
- pos: 42.5,19.5
- parent: 2
- - uid: 12105
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-44.5
- parent: 2
- - uid: 12106
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-45.5
- parent: 2
- - uid: 12107
- components:
- - type: Transform
- pos: 41.5,21.5
- parent: 2
- - uid: 12108
- components:
- - type: Transform
- pos: 15.5,-51.5
- parent: 2
- - uid: 12109
- components:
- - type: Transform
- pos: -22.5,-10.5
- parent: 2
- - uid: 12110
- components:
- - type: Transform
- pos: -28.5,-8.5
- parent: 2
- - uid: 12111
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-45.5
- parent: 2
- - uid: 12112
- components:
- - type: Transform
- pos: -28.5,-7.5
- parent: 2
- - uid: 12113
- components:
- - type: Transform
- pos: 18.5,-51.5
- parent: 2
- - uid: 12114
- components:
- - type: Transform
- pos: 16.5,-52.5
- parent: 2
- - uid: 12115
- components:
- - type: Transform
- pos: 17.5,-51.5
- parent: 2
- - uid: 12116
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-44.5
- parent: 2
- - uid: 12117
- components:
- - type: Transform
- pos: -27.5,-8.5
- parent: 2
- - uid: 12118
- components:
- - type: Transform
- pos: 15.5,-52.5
- parent: 2
- - uid: 12119
- components:
- - type: Transform
- pos: 17.5,-52.5
- parent: 2
- - uid: 12120
- components:
- - type: Transform
- pos: 18.5,-52.5
- parent: 2
- - uid: 12121
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-51.5
- parent: 2
- - uid: 12122
- components:
- - type: Transform
- pos: 16.5,-51.5
- parent: 2
- - uid: 12123
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-45.5
- parent: 2
- - uid: 12124
- components:
- - type: Transform
- pos: -21.5,-11.5
- parent: 2
- - uid: 12125
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 2
- - uid: 12126
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-8.5
- parent: 2
- - uid: 12127
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-8.5
- parent: 2
- - uid: 12128
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-7.5
- parent: 2
- - uid: 12129
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-7.5
- parent: 2
- - uid: 12130
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-44.5
- parent: 2
- - uid: 12131
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-52.5
- parent: 2
- - uid: 12132
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,10.5
- parent: 2
- - uid: 12133
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,9.5
- parent: 2
- - uid: 12134
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,10.5
- parent: 2
- - uid: 12135
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,10.5
- parent: 2
- - uid: 12136
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,9.5
- parent: 2
- - uid: 12137
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,10.5
- parent: 2
- - uid: 12138
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,9.5
- parent: 2
- - uid: 12139
- components:
- - type: Transform
- pos: -29.5,-8.5
- parent: 2
-- proto: CarpetChapel
- entities:
- - uid: 12140
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-68.5
- parent: 2
- - uid: 12141
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-72.5
- parent: 2
- - uid: 12142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-71.5
- parent: 2
- - uid: 12143
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-69.5
- parent: 2
- - uid: 12144
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-67.5
- parent: 2
- - uid: 12145
- components:
- - type: Transform
- pos: -13.5,-68.5
- parent: 2
- - uid: 12146
- components:
- - type: Transform
- pos: -15.5,-68.5
- parent: 2
- - uid: 12147
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-71.5
- parent: 2
- - uid: 12148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-71.5
- parent: 2
- - uid: 12149
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-68.5
- parent: 2
- - uid: 12150
- components:
- - type: Transform
- pos: -15.5,-72.5
- parent: 2
- - uid: 12151
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-73.5
- parent: 2
- - uid: 12152
- components:
- - type: Transform
- pos: -15.5,-70.5
- parent: 2
- - uid: 12153
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-71.5
- parent: 2
- - uid: 12154
- components:
- - type: Transform
- pos: -13.5,-72.5
- parent: 2
- - uid: 12155
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-70.5
- parent: 2
- - uid: 12156
- components:
- - type: Transform
- pos: -13.5,-70.5
- parent: 2
- - uid: 12157
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-72.5
- parent: 2
- - uid: 12158
- components:
- - type: Transform
- pos: -18.5,-70.5
- parent: 2
- - uid: 12159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-67.5
- parent: 2
- - uid: 12160
- components:
- - type: Transform
- pos: -18.5,-68.5
- parent: 2
- - uid: 12161
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-73.5
- parent: 2
- - uid: 12162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-71.5
- parent: 2
- - uid: 12163
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-67.5
- parent: 2
- - uid: 12164
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-69.5
- parent: 2
- - uid: 12165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-69.5
- parent: 2
- - uid: 12166
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-71.5
- parent: 2
- - uid: 12167
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-74.5
- parent: 2
- - uid: 12168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-67.5
- parent: 2
- - uid: 12169
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-74.5
- parent: 2
- - uid: 12170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-72.5
- parent: 2
- - uid: 12171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-71.5
- parent: 2
- - uid: 12172
- components:
- - type: Transform
- pos: -20.5,-68.5
- parent: 2
- - uid: 12173
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-67.5
- parent: 2
- - uid: 12174
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-69.5
- parent: 2
- - uid: 12175
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-73.5
- parent: 2
- - uid: 12176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-67.5
- parent: 2
- - uid: 12177
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-70.5
- parent: 2
- - uid: 12178
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-68.5
- parent: 2
- - uid: 12179
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-69.5
- parent: 2
- - uid: 12180
- components:
- - type: Transform
- pos: -13.5,-74.5
- parent: 2
- - uid: 12181
- components:
- - type: Transform
- pos: -18.5,-72.5
- parent: 2
- - uid: 12182
- components:
- - type: Transform
- pos: -20.5,-70.5
- parent: 2
- - uid: 12183
- components:
- - type: Transform
- pos: -20.5,-72.5
- parent: 2
- - uid: 12184
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-67.5
- parent: 2
- - uid: 12185
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-69.5
- parent: 2
- - uid: 12186
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-72.5
- parent: 2
- - uid: 12187
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-68.5
- parent: 2
- - uid: 12188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-69.5
- parent: 2
- - uid: 12189
- components:
- - type: Transform
- pos: -20.5,-74.5
- parent: 2
- - uid: 12190
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-67.5
- parent: 2
- - uid: 12191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-69.5
- parent: 2
- - uid: 12192
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-73.5
- parent: 2
- - uid: 12193
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-70.5
- parent: 2
- - uid: 12194
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-71.5
- parent: 2
- - uid: 12195
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-70.5
- parent: 2
-- proto: CarpetCyan
- entities:
- - uid: 12196
- components:
- - type: Transform
- pos: -4.5,0.5
- parent: 2
- - uid: 12197
- components:
- - type: Transform
- pos: -4.5,1.5
- parent: 2
- - uid: 12198
- components:
- - type: Transform
- pos: -3.5,0.5
- parent: 2
- - uid: 12199
- components:
- - type: Transform
- pos: -3.5,1.5
- parent: 2
-- proto: CarpetOrange
- entities:
- - uid: 12200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-25.5
- parent: 2
- - uid: 12201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-24.5
- parent: 2
- - uid: 12202
- components:
- - type: Transform
- pos: -28.5,19.5
- parent: 2
- - uid: 12203
- components:
- - type: Transform
- pos: -27.5,19.5
- parent: 2
- - uid: 12204
- components:
- - type: Transform
- pos: -26.5,19.5
- parent: 2
- - uid: 12205
- components:
- - type: Transform
- pos: -62.5,-39.5
- parent: 2
- - uid: 12206
- components:
- - type: Transform
- pos: -62.5,-40.5
- parent: 2
- - uid: 12207
- components:
- - type: Transform
- pos: -28.5,20.5
- parent: 2
- - uid: 12208
- components:
- - type: Transform
- pos: -26.5,20.5
- parent: 2
- - uid: 12209
- components:
- - type: Transform
- pos: -28.5,21.5
- parent: 2
- - uid: 12210
- components:
- - type: Transform
- pos: -26.5,21.5
- parent: 2
- - uid: 12211
- components:
- - type: Transform
- pos: -27.5,20.5
- parent: 2
- - uid: 12212
- components:
- - type: Transform
- pos: -27.5,21.5
- parent: 2
- - uid: 12213
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-25.5
- parent: 2
- - uid: 12214
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-24.5
- parent: 2
-- proto: CarpetPink
- entities:
- - uid: 12215
- components:
- - type: Transform
- pos: -58.5,-47.5
- parent: 2
- - uid: 12216
- components:
- - type: Transform
- pos: -69.5,-44.5
- parent: 2
- - uid: 12217
- components:
- - type: Transform
- pos: -68.5,-44.5
- parent: 2
- - uid: 12218
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,62.5
- parent: 2
- - uid: 12219
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,62.5
- parent: 2
- - uid: 12220
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,62.5
- parent: 2
- - uid: 12221
- components:
- - type: Transform
- pos: -59.5,-47.5
- parent: 2
- - uid: 12222
- components:
- - type: Transform
- pos: -59.5,-48.5
- parent: 2
- - uid: 12223
- components:
- - type: Transform
- pos: -59.5,-49.5
- parent: 2
- - uid: 12224
- components:
- - type: Transform
- pos: -59.5,-50.5
- parent: 2
- - uid: 12225
- components:
- - type: Transform
- pos: -58.5,-48.5
- parent: 2
- - uid: 12226
- components:
- - type: Transform
- pos: -58.5,-49.5
- parent: 2
- - uid: 12227
- components:
- - type: Transform
- pos: -58.5,-50.5
- parent: 2
- - uid: 12228
- components:
- - type: Transform
- pos: -57.5,-47.5
- parent: 2
- - uid: 12229
- components:
- - type: Transform
- pos: -57.5,-48.5
- parent: 2
- - uid: 12230
- components:
- - type: Transform
- pos: -57.5,-49.5
- parent: 2
- - uid: 12231
- components:
- - type: Transform
- pos: -57.5,-50.5
- parent: 2
-- proto: CarpetPurple
- entities:
- - uid: 12232
- components:
- - type: Transform
- pos: -68.5,-35.5
- parent: 2
- - uid: 12233
- components:
- - type: Transform
- pos: -67.5,-35.5
- parent: 2
- - uid: 12234
- components:
- - type: Transform
- pos: -69.5,-35.5
- parent: 2
-- proto: CarpetSBlue
- entities:
- - uid: 12235
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,0.5
- parent: 2
- - uid: 12236
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,1.5
- parent: 2
- - uid: 12237
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,3.5
- parent: 2
- - uid: 12238
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,1.5
- parent: 2
- - uid: 12239
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,2.5
- parent: 2
- - uid: 12240
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,1.5
- parent: 2
- - uid: 12241
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,2.5
- parent: 2
- - uid: 12242
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,0.5
- parent: 2
- - uid: 12243
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,3.5
- parent: 2
- - uid: 12244
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,1.5
- parent: 2
- - uid: 12245
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,2.5
- parent: 2
- - uid: 12246
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,2.5
- parent: 2
-- proto: Catwalk
- entities:
- - uid: 12247
- components:
- - type: Transform
- pos: 47.5,-6.5
- parent: 2
- - uid: 12248
- components:
- - type: Transform
- pos: 41.5,-34.5
- parent: 2
- - uid: 12249
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,39.5
- parent: 2
- - uid: 12250
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,19.5
- parent: 2
- - uid: 12252
- components:
- - type: Transform
- pos: -62.5,-25.5
- parent: 2
- - uid: 12253
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-19.5
- parent: 2
- - uid: 12254
- components:
- - type: Transform
- pos: -41.5,-4.5
- parent: 2
- - uid: 12255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-3.5
- parent: 2
- - uid: 12256
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-22.5
- parent: 2
- - uid: 12257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,23.5
- parent: 2
- - uid: 12258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,17.5
- parent: 2
- - uid: 12259
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,62.5
- parent: 2
- - uid: 12260
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,63.5
- parent: 2
- - uid: 12261
- components:
- - type: Transform
- pos: -59.5,29.5
- parent: 2
- - uid: 12262
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,64.5
- parent: 2
- - uid: 12263
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,66.5
- parent: 2
- - uid: 12264
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-1.5
- parent: 2
- - uid: 12265
- components:
- - type: Transform
- pos: -52.5,27.5
- parent: 2
- - uid: 12266
- components:
- - type: Transform
- pos: -55.5,40.5
- parent: 2
- - uid: 12267
- components:
- - type: Transform
- pos: -59.5,28.5
- parent: 2
- - uid: 12268
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,57.5
- parent: 2
- - uid: 12269
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,62.5
- parent: 2
- - uid: 12270
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-30.5
- parent: 2
- - uid: 12271
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,0.5
- parent: 2
- - uid: 12272
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,59.5
- parent: 2
- - uid: 12273
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,57.5
- parent: 2
- - uid: 12274
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,61.5
- parent: 2
- - uid: 12275
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-20.5
- parent: 2
- - uid: 12276
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,49.5
- parent: 2
- - uid: 12277
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,61.5
- parent: 2
- - uid: 12278
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,60.5
- parent: 2
- - uid: 12279
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,64.5
- parent: 2
- - uid: 12280
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-20.5
- parent: 2
- - uid: 12281
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-20.5
- parent: 2
- - uid: 12282
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,55.5
- parent: 2
- - uid: 12283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,44.5
- parent: 2
- - uid: 12284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,66.5
- parent: 2
- - uid: 12285
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,47.5
- parent: 2
- - uid: 12286
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-3.5
- parent: 2
- - uid: 12287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,10.5
- parent: 2
- - uid: 12288
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,48.5
- parent: 2
- - uid: 12289
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,57.5
- parent: 2
- - uid: 12290
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-32.5
- parent: 2
- - uid: 12291
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-32.5
- parent: 2
- - uid: 12292
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-32.5
- parent: 2
- - uid: 12293
- components:
- - type: Transform
- pos: -56.5,29.5
- parent: 2
- - uid: 12294
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,23.5
- parent: 2
- - uid: 12295
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-25.5
- parent: 2
- - uid: 12296
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,63.5
- parent: 2
- - uid: 12297
- components:
- - type: Transform
- pos: -59.5,36.5
- parent: 2
- - uid: 12298
- components:
- - type: Transform
- pos: -57.5,29.5
- parent: 2
- - uid: 12299
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,59.5
- parent: 2
- - uid: 12300
- components:
- - type: Transform
- pos: 91.5,-2.5
- parent: 2
- - uid: 12301
- components:
- - type: Transform
- pos: 7.5,59.5
- parent: 2
- - uid: 12302
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,71.5
- parent: 2
- - uid: 12303
- components:
- - type: Transform
- pos: 93.5,-2.5
- parent: 2
- - uid: 12304
- components:
- - type: Transform
- pos: -47.5,-75.5
- parent: 2
- - uid: 12305
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-11.5
- parent: 2
- - uid: 12306
- components:
- - type: Transform
- pos: -47.5,-76.5
- parent: 2
- - uid: 12307
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-1.5
- parent: 2
- - uid: 12308
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-27.5
- parent: 2
- - uid: 12309
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-32.5
- parent: 2
- - uid: 12310
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-25.5
- parent: 2
- - uid: 12311
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,11.5
- parent: 2
- - uid: 12312
- components:
- - type: Transform
- pos: -58.5,29.5
- parent: 2
- - uid: 12313
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-8.5
- parent: 2
- - uid: 12314
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,23.5
- parent: 2
- - uid: 12315
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-13.5
- parent: 2
- - uid: 12316
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-33.5
- parent: 2
- - uid: 12317
- components:
- - type: Transform
- pos: -55.5,26.5
- parent: 2
- - uid: 12318
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-32.5
- parent: 2
- - uid: 12319
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-32.5
- parent: 2
- - uid: 12320
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,31.5
- parent: 2
- - uid: 12321
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,39.5
- parent: 2
- - uid: 12322
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,32.5
- parent: 2
- - uid: 12323
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,57.5
- parent: 2
- - uid: 12324
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-30.5
- parent: 2
- - uid: 12325
- components:
- - type: Transform
- pos: -46.5,-76.5
- parent: 2
- - uid: 12326
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,57.5
- parent: 2
- - uid: 12327
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,31.5
- parent: 2
- - uid: 12328
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,32.5
- parent: 2
- - uid: 12329
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-16.5
- parent: 2
- - uid: 12330
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-3.5
- parent: 2
- - uid: 12331
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-17.5
- parent: 2
- - uid: 12332
- components:
- - type: Transform
- pos: -56.5,27.5
- parent: 2
- - uid: 12333
- components:
- - type: Transform
- pos: -57.5,29.5
- parent: 2
- - uid: 12334
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,36.5
- parent: 2
- - uid: 12335
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,45.5
- parent: 2
- - uid: 12336
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,38.5
- parent: 2
- - uid: 12337
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-14.5
- parent: 2
- - uid: 12338
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-20.5
- parent: 2
- - uid: 12339
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-39.5
- parent: 2
- - uid: 12340
- components:
- - type: Transform
- pos: -56.5,26.5
- parent: 2
- - uid: 12341
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,63.5
- parent: 2
- - uid: 12342
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,31.5
- parent: 2
- - uid: 12343
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,31.5
- parent: 2
- - uid: 12344
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-26.5
- parent: 2
- - uid: 12345
- components:
- - type: Transform
- pos: -59.5,27.5
- parent: 2
- - uid: 12346
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,27.5
- parent: 2
- - uid: 12347
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,64.5
- parent: 2
- - uid: 12348
- components:
- - type: Transform
- pos: -52.5,28.5
- parent: 2
- - uid: 12349
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,64.5
- parent: 2
- - uid: 12350
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,63.5
- parent: 2
- - uid: 12351
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,59.5
- parent: 2
- - uid: 12352
- components:
- - type: Transform
- pos: -45.5,-76.5
- parent: 2
- - uid: 12353
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-19.5
- parent: 2
- - uid: 12354
- components:
- - type: Transform
- pos: -45.5,-77.5
- parent: 2
- - uid: 12355
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,59.5
- parent: 2
- - uid: 12356
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-1.5
- parent: 2
- - uid: 12357
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-19.5
- parent: 2
- - uid: 12358
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,57.5
- parent: 2
- - uid: 12359
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-19.5
- parent: 2
- - uid: 12360
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-20.5
- parent: 2
- - uid: 12361
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-11.5
- parent: 2
- - uid: 12362
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-24.5
- parent: 2
- - uid: 12363
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,56.5
- parent: 2
- - uid: 12364
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,23.5
- parent: 2
- - uid: 12365
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,29.5
- parent: 2
- - uid: 12366
- components:
- - type: Transform
- pos: -59.5,28.5
- parent: 2
- - uid: 12367
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-38.5
- parent: 2
- - uid: 12368
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,39.5
- parent: 2
- - uid: 12369
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-13.5
- parent: 2
- - uid: 12370
- components:
- - type: Transform
- pos: -52.5,26.5
- parent: 2
- - uid: 12371
- components:
- - type: Transform
- pos: -52.5,29.5
- parent: 2
- - uid: 12372
- components:
- - type: Transform
- pos: -54.5,26.5
- parent: 2
- - uid: 12373
- components:
- - type: Transform
- pos: -56.5,28.5
- parent: 2
- - uid: 12374
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-20.5
- parent: 2
- - uid: 12375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,41.5
- parent: 2
- - uid: 12376
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,32.5
- parent: 2
- - uid: 12377
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,47.5
- parent: 2
- - uid: 12378
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,61.5
- parent: 2
- - uid: 12379
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,43.5
- parent: 2
- - uid: 12380
- components:
- - type: Transform
- pos: -91.5,-13.5
- parent: 2
- - uid: 12381
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,31.5
- parent: 2
- - uid: 12382
- components:
- - type: Transform
- pos: -15.5,-61.5
- parent: 2
- - uid: 12383
- components:
- - type: Transform
- pos: -44.5,-77.5
- parent: 2
- - uid: 12384
- components:
- - type: Transform
- pos: -54.5,30.5
- parent: 2
- - uid: 12385
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,31.5
- parent: 2
- - uid: 12386
- components:
- - type: Transform
- pos: -90.5,-13.5
- parent: 2
- - uid: 12387
- components:
- - type: Transform
- pos: -43.5,-77.5
- parent: 2
- - uid: 12388
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,31.5
- parent: 2
- - uid: 12389
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-41.5
- parent: 2
- - uid: 12390
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,31.5
- parent: 2
- - uid: 12391
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-19.5
- parent: 2
- - uid: 12392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-30.5
- parent: 2
- - uid: 12393
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,39.5
- parent: 2
- - uid: 12394
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-30.5
- parent: 2
- - uid: 12395
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-11.5
- parent: 2
- - uid: 12396
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-30.5
- parent: 2
- - uid: 12397
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,14.5
- parent: 2
- - uid: 12398
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-5.5
- parent: 2
- - uid: 12399
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,54.5
- parent: 2
- - uid: 12400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-20.5
- parent: 2
- - uid: 12401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-21.5
- parent: 2
- - uid: 12402
- components:
- - type: Transform
- pos: -53.5,26.5
- parent: 2
- - uid: 12403
- components:
- - type: Transform
- pos: -42.5,-77.5
- parent: 2
- - uid: 12404
- components:
- - type: Transform
- pos: -41.5,-77.5
- parent: 2
- - uid: 12405
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,56.5
- parent: 2
- - uid: 12406
- components:
- - type: Transform
- pos: -41.5,-78.5
- parent: 2
- - uid: 12407
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-19.5
- parent: 2
- - uid: 12408
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-19.5
- parent: 2
- - uid: 12409
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,70.5
- parent: 2
- - uid: 12410
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,26.5
- parent: 2
- - uid: 12411
- components:
- - type: Transform
- pos: -59.5,34.5
- parent: 2
- - uid: 12412
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,43.5
- parent: 2
- - uid: 12413
- components:
- - type: Transform
- pos: -58.5,26.5
- parent: 2
- - uid: 12414
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,17.5
- parent: 2
- - uid: 12415
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,52.5
- parent: 2
- - uid: 12416
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-32.5
- parent: 2
- - uid: 12417
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-19.5
- parent: 2
- - uid: 12418
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,57.5
- parent: 2
- - uid: 12419
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,64.5
- parent: 2
- - uid: 12420
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,64.5
- parent: 2
- - uid: 12421
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-21.5
- parent: 2
- - uid: 12422
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-9.5
- parent: 2
- - uid: 12423
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-32.5
- parent: 2
- - uid: 12424
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-7.5
- parent: 2
- - uid: 12425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-1.5
- parent: 2
- - uid: 12426
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-19.5
- parent: 2
- - uid: 12427
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,37.5
- parent: 2
- - uid: 12428
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-19.5
- parent: 2
- - uid: 12429
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-19.5
- parent: 2
- - uid: 12430
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,17.5
- parent: 2
- - uid: 12431
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,53.5
- parent: 2
- - uid: 12432
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,56.5
- parent: 2
- - uid: 12433
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,47.5
- parent: 2
- - uid: 12434
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,72.5
- parent: 2
- - uid: 12435
- components:
- - type: Transform
- pos: -41.5,-79.5
- parent: 2
- - uid: 12436
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,21.5
- parent: 2
- - uid: 12437
- components:
- - type: Transform
- pos: -24.5,25.5
- parent: 2
- - uid: 12438
- components:
- - type: Transform
- pos: -52.5,25.5
- parent: 2
- - uid: 12439
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,46.5
- parent: 2
- - uid: 12440
- components:
- - type: Transform
- pos: -59.5,26.5
- parent: 2
- - uid: 12441
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-28.5
- parent: 2
- - uid: 12442
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-46.5
- parent: 2
- - uid: 12443
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-50.5
- parent: 2
- - uid: 12444
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-28.5
- parent: 2
- - uid: 12445
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-30.5
- parent: 2
- - uid: 12446
- components:
- - type: Transform
- pos: -38.5,-80.5
- parent: 2
- - uid: 12447
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,56.5
- parent: 2
- - uid: 12448
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,56.5
- parent: 2
- - uid: 12449
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,44.5
- parent: 2
- - uid: 12450
- components:
- - type: Transform
- pos: -36.5,-81.5
- parent: 2
- - uid: 12451
- components:
- - type: Transform
- pos: -35.5,-81.5
- parent: 2
- - uid: 12452
- components:
- - type: Transform
- pos: -34.5,-81.5
- parent: 2
- - uid: 12453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-19.5
- parent: 2
- - uid: 12454
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-19.5
- parent: 2
- - uid: 12455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,62.5
- parent: 2
- - uid: 12456
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,31.5
- parent: 2
- - uid: 12457
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-30.5
- parent: 2
- - uid: 12458
- components:
- - type: Transform
- pos: 92.5,-2.5
- parent: 2
- - uid: 12459
- components:
- - type: Transform
- pos: 90.5,-2.5
- parent: 2
- - uid: 12460
- components:
- - type: Transform
- pos: -33.5,-81.5
- parent: 2
- - uid: 12461
- components:
- - type: Transform
- pos: 55.5,-46.5
- parent: 2
- - uid: 12462
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,56.5
- parent: 2
- - uid: 12463
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,56.5
- parent: 2
- - uid: 12464
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-20.5
- parent: 2
- - uid: 12465
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,57.5
- parent: 2
- - uid: 12466
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,56.5
- parent: 2
- - uid: 12467
- components:
- - type: Transform
- pos: -32.5,-81.5
- parent: 2
- - uid: 12468
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-4.5
- parent: 2
- - uid: 12469
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-23.5
- parent: 2
- - uid: 12470
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,23.5
- parent: 2
- - uid: 12471
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-21.5
- parent: 2
- - uid: 12472
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,63.5
- parent: 2
- - uid: 12473
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-22.5
- parent: 2
- - uid: 12474
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,47.5
- parent: 2
- - uid: 12475
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,57.5
- parent: 2
- - uid: 12476
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,64.5
- parent: 2
- - uid: 12477
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-21.5
- parent: 2
- - uid: 12478
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-20.5
- parent: 2
- - uid: 12479
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,61.5
- parent: 2
- - uid: 12480
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,47.5
- parent: 2
- - uid: 12481
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,31.5
- parent: 2
- - uid: 12482
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,54.5
- parent: 2
- - uid: 12483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,15.5
- parent: 2
- - uid: 12484
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-30.5
- parent: 2
- - uid: 12485
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-19.5
- parent: 2
- - uid: 12486
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-19.5
- parent: 2
- - uid: 12487
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,69.5
- parent: 2
- - uid: 12488
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,26.5
- parent: 2
- - uid: 12489
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,45.5
- parent: 2
- - uid: 12490
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-38.5
- parent: 2
- - uid: 12491
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,30.5
- parent: 2
- - uid: 12492
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,58.5
- parent: 2
- - uid: 12493
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,31.5
- parent: 2
- - uid: 12494
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,58.5
- parent: 2
- - uid: 12495
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-38.5
- parent: 2
- - uid: 12496
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,51.5
- parent: 2
- - uid: 12497
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,47.5
- parent: 2
- - uid: 12498
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,29.5
- parent: 2
- - uid: 12499
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,25.5
- parent: 2
- - uid: 12500
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,23.5
- parent: 2
- - uid: 12501
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,55.5
- parent: 2
- - uid: 12502
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-46.5
- parent: 2
- - uid: 12503
- components:
- - type: Transform
- pos: -31.5,-81.5
- parent: 2
- - uid: 12504
- components:
- - type: Transform
- pos: -30.5,-81.5
- parent: 2
- - uid: 12505
- components:
- - type: Transform
- pos: -28.5,-81.5
- parent: 2
- - uid: 12506
- components:
- - type: Transform
- pos: -55.5,-40.5
- parent: 2
- - uid: 12507
- components:
- - type: Transform
- pos: -27.5,-81.5
- parent: 2
- - uid: 12508
- components:
- - type: Transform
- pos: 7.5,60.5
- parent: 2
- - uid: 12509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-46.5
- parent: 2
- - uid: 12510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-27.5
- parent: 2
- - uid: 12511
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-51.5
- parent: 2
- - uid: 12512
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,50.5
- parent: 2
- - uid: 12513
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,16.5
- parent: 2
- - uid: 12514
- components:
- - type: Transform
- pos: -38.5,-81.5
- parent: 2
- - uid: 12515
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-19.5
- parent: 2
- - uid: 12516
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-18.5
- parent: 2
- - uid: 12517
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-1.5
- parent: 2
- - uid: 12518
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-31.5
- parent: 2
- - uid: 12519
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-30.5
- parent: 2
- - uid: 12520
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,57.5
- parent: 2
- - uid: 12521
- components:
- - type: Transform
- pos: -21.5,-83.5
- parent: 2
- - uid: 12522
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,46.5
- parent: 2
- - uid: 12523
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,42.5
- parent: 2
- - uid: 12524
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-26.5
- parent: 2
- - uid: 12525
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-61.5
- parent: 2
- - uid: 12526
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,29.5
- parent: 2
- - uid: 12527
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,17.5
- parent: 2
- - uid: 12528
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,23.5
- parent: 2
- - uid: 12529
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-22.5
- parent: 2
- - uid: 12530
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,30.5
- parent: 2
- - uid: 12531
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,57.5
- parent: 2
- - uid: 12532
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-12.5
- parent: 2
- - uid: 12533
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-30.5
- parent: 2
- - uid: 12534
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,65.5
- parent: 2
- - uid: 12535
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,64.5
- parent: 2
- - uid: 12536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,65.5
- parent: 2
- - uid: 12537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,57.5
- parent: 2
- - uid: 12538
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-21.5
- parent: 2
- - uid: 12539
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-28.5
- parent: 2
- - uid: 12540
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-21.5
- parent: 2
- - uid: 12541
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-40.5
- parent: 2
- - uid: 12542
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-15.5
- parent: 2
- - uid: 12543
- components:
- - type: Transform
- pos: -24.5,-83.5
- parent: 2
- - uid: 12544
- components:
- - type: Transform
- pos: -23.5,-83.5
- parent: 2
- - uid: 12545
- components:
- - type: Transform
- pos: -22.5,-83.5
- parent: 2
- - uid: 12546
- components:
- - type: Transform
- pos: -89.5,-13.5
- parent: 2
- - uid: 12547
- components:
- - type: Transform
- pos: -20.5,-83.5
- parent: 2
- - uid: 12548
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-19.5
- parent: 2
- - uid: 12549
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-21.5
- parent: 2
- - uid: 12550
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-0.5
- parent: 2
- - uid: 12551
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,31.5
- parent: 2
- - uid: 12552
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,32.5
- parent: 2
- - uid: 12553
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,56.5
- parent: 2
- - uid: 12554
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-19.5
- parent: 2
- - uid: 12555
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,12.5
- parent: 2
- - uid: 12556
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,45.5
- parent: 2
- - uid: 12557
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,60.5
- parent: 2
- - uid: 12558
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-2.5
- parent: 2
- - uid: 12559
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-39.5
- parent: 2
- - uid: 12560
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-42.5
- parent: 2
- - uid: 12561
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-43.5
- parent: 2
- - uid: 12562
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-19.5
- parent: 2
- - uid: 12563
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-40.5
- parent: 2
- - uid: 12564
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,30.5
- parent: 2
- - uid: 12565
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-20.5
- parent: 2
- - uid: 12566
- components:
- - type: Transform
- pos: -59.5,35.5
- parent: 2
- - uid: 12567
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-19.5
- parent: 2
- - uid: 12568
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-20.5
- parent: 2
- - uid: 12569
- components:
- - type: Transform
- pos: -19.5,-83.5
- parent: 2
- - uid: 12570
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-19.5
- parent: 2
- - uid: 12571
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,55.5
- parent: 2
- - uid: 12572
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,64.5
- parent: 2
- - uid: 12573
- components:
- - type: Transform
- pos: -18.5,-83.5
- parent: 2
- - uid: 12574
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,49.5
- parent: 2
- - uid: 12575
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,51.5
- parent: 2
- - uid: 12576
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,37.5
- parent: 2
- - uid: 12577
- components:
- - type: Transform
- pos: -17.5,-83.5
- parent: 2
- - uid: 12578
- components:
- - type: Transform
- pos: -75.5,80.5
- parent: 2
- - uid: 12579
- components:
- - type: Transform
- pos: -16.5,-83.5
- parent: 2
- - uid: 12580
- components:
- - type: Transform
- pos: -15.5,-84.5
- parent: 2
- - uid: 12581
- components:
- - type: Transform
- pos: -14.5,-84.5
- parent: 2
- - uid: 12582
- components:
- - type: Transform
- pos: -13.5,-84.5
- parent: 2
- - uid: 12583
- components:
- - type: Transform
- pos: -12.5,-84.5
- parent: 2
- - uid: 12584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,29.5
- parent: 2
- - uid: 12585
- components:
- - type: Transform
- pos: -80.5,69.5
- parent: 2
- - uid: 12586
- components:
- - type: Transform
- pos: -51.5,-62.5
- parent: 2
- - uid: 12587
- components:
- - type: Transform
- pos: -68.5,20.5
- parent: 2
- - uid: 12588
- components:
- - type: Transform
- pos: -75.5,78.5
- parent: 2
- - uid: 12589
- components:
- - type: Transform
- pos: 32.5,91.5
- parent: 2
- - uid: 12590
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-19.5
- parent: 2
- - uid: 12591
- components:
- - type: Transform
- pos: -51.5,-81.5
- parent: 2
- - uid: 12592
- components:
- - type: Transform
- pos: -75.5,66.5
- parent: 2
- - uid: 12593
- components:
- - type: Transform
- pos: -75.5,79.5
- parent: 2
- - uid: 12594
- components:
- - type: Transform
- pos: -60.5,-54.5
- parent: 2
- - uid: 12595
- components:
- - type: Transform
- pos: -54.5,-52.5
- parent: 2
- - uid: 12596
- components:
- - type: Transform
- pos: -76.5,77.5
- parent: 2
- - uid: 12597
- components:
- - type: Transform
- pos: -45.5,-85.5
- parent: 2
- - uid: 12598
- components:
- - type: Transform
- pos: -43.5,-57.5
- parent: 2
- - uid: 12599
- components:
- - type: Transform
- pos: 67.5,-51.5
- parent: 2
- - uid: 12600
- components:
- - type: Transform
- pos: 69.5,-51.5
- parent: 2
- - uid: 12601
- components:
- - type: Transform
- pos: -79.5,77.5
- parent: 2
- - uid: 12602
- components:
- - type: Transform
- pos: 68.5,-51.5
- parent: 2
- - uid: 12603
- components:
- - type: Transform
- pos: -88.5,13.5
- parent: 2
- - uid: 12604
- components:
- - type: Transform
- pos: -43.5,-54.5
- parent: 2
- - uid: 12605
- components:
- - type: Transform
- pos: -53.5,-52.5
- parent: 2
- - uid: 12606
- components:
- - type: Transform
- pos: 30.5,21.5
- parent: 2
- - uid: 12607
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-3.5
- parent: 2
- - uid: 12608
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-3.5
- parent: 2
- - uid: 12609
- components:
- - type: Transform
- pos: 30.5,19.5
- parent: 2
- - uid: 12610
- components:
- - type: Transform
- pos: 35.5,95.5
- parent: 2
- - uid: 12611
- components:
- - type: Transform
- pos: -74.5,69.5
- parent: 2
- - uid: 12612
- components:
- - type: Transform
- pos: 22.5,87.5
- parent: 2
- - uid: 12613
- components:
- - type: Transform
- pos: 27.5,87.5
- parent: 2
- - uid: 12614
- components:
- - type: Transform
- pos: 26.5,87.5
- parent: 2
- - uid: 12615
- components:
- - type: Transform
- pos: -59.5,66.5
- parent: 2
- - uid: 12616
- components:
- - type: Transform
- pos: 23.5,87.5
- parent: 2
- - uid: 12617
- components:
- - type: Transform
- pos: -72.5,77.5
- parent: 2
- - uid: 12618
- components:
- - type: Transform
- pos: -70.5,69.5
- parent: 2
- - uid: 12619
- components:
- - type: Transform
- pos: -69.5,69.5
- parent: 2
- - uid: 12620
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-8.5
- parent: 2
- - uid: 12621
- components:
- - type: Transform
- pos: -43.5,42.5
- parent: 2
- - uid: 12622
- components:
- - type: Transform
- pos: -85.5,14.5
- parent: 2
- - uid: 12623
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-7.5
- parent: 2
- - uid: 12624
- components:
- - type: Transform
- pos: 34.5,91.5
- parent: 2
- - uid: 12625
- components:
- - type: Transform
- pos: -63.5,66.5
- parent: 2
- - uid: 12626
- components:
- - type: Transform
- pos: -54.5,-81.5
- parent: 2
- - uid: 12627
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-3.5
- parent: 2
- - uid: 12628
- components:
- - type: Transform
- pos: -55.5,-81.5
- parent: 2
- - uid: 12629
- components:
- - type: Transform
- pos: -62.5,66.5
- parent: 2
- - uid: 12630
- components:
- - type: Transform
- pos: -60.5,66.5
- parent: 2
- - uid: 12631
- components:
- - type: Transform
- pos: -75.5,82.5
- parent: 2
- - uid: 12632
- components:
- - type: Transform
- pos: -75.5,81.5
- parent: 2
- - uid: 12633
- components:
- - type: Transform
- pos: -43.5,60.5
- parent: 2
- - uid: 12634
- components:
- - type: Transform
- pos: -55.5,41.5
- parent: 2
- - uid: 12635
- components:
- - type: Transform
- pos: -12.5,-83.5
- parent: 2
- - uid: 12636
- components:
- - type: Transform
- pos: 28.5,97.5
- parent: 2
- - uid: 12637
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,37.5
- parent: 2
- - uid: 12638
- components:
- - type: Transform
- pos: -11.5,-83.5
- parent: 2
- - uid: 12639
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,52.5
- parent: 2
- - uid: 12640
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,50.5
- parent: 2
- - uid: 12641
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-63.5
- parent: 2
- - uid: 12642
- components:
- - type: Transform
- pos: -57.5,26.5
- parent: 2
- - uid: 12643
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-55.5
- parent: 2
- - uid: 12644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-59.5
- parent: 2
- - uid: 12645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-66.5
- parent: 2
- - uid: 12646
- components:
- - type: Transform
- pos: -88.5,-13.5
- parent: 2
- - uid: 12647
- components:
- - type: Transform
- pos: -56.5,41.5
- parent: 2
- - uid: 12648
- components:
- - type: Transform
- pos: -53.5,29.5
- parent: 2
- - uid: 12649
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,43.5
- parent: 2
- - uid: 12650
- components:
- - type: Transform
- pos: -10.5,-83.5
- parent: 2
- - uid: 12651
- components:
- - type: Transform
- pos: -82.5,-29.5
- parent: 2
- - uid: 12652
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,48.5
- parent: 2
- - uid: 12653
- components:
- - type: Transform
- pos: -42.5,-45.5
- parent: 2
- - uid: 12654
- components:
- - type: Transform
- pos: -94.5,-13.5
- parent: 2
- - uid: 12655
- components:
- - type: Transform
- pos: -93.5,-4.5
- parent: 2
- - uid: 12656
- components:
- - type: Transform
- pos: -96.5,-13.5
- parent: 2
- - uid: 12657
- components:
- - type: Transform
- pos: -91.5,-3.5
- parent: 2
- - uid: 12658
- components:
- - type: Transform
- pos: -86.5,-11.5
- parent: 2
- - uid: 12659
- components:
- - type: Transform
- pos: -43.5,57.5
- parent: 2
- - uid: 12660
- components:
- - type: Transform
- pos: -86.5,-10.5
- parent: 2
- - uid: 12661
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-71.5
- parent: 2
- - uid: 12662
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-61.5
- parent: 2
- - uid: 12663
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-56.5
- parent: 2
- - uid: 12664
- components:
- - type: Transform
- pos: -37.5,-11.5
- parent: 2
- - uid: 12665
- components:
- - type: Transform
- pos: -89.5,-1.5
- parent: 2
- - uid: 12666
- components:
- - type: Transform
- pos: -88.5,-8.5
- parent: 2
- - uid: 12667
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-54.5
- parent: 2
- - uid: 12668
- components:
- - type: Transform
- pos: -88.5,-6.5
- parent: 2
- - uid: 12669
- components:
- - type: Transform
- pos: -89.5,-6.5
- parent: 2
- - uid: 12670
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-57.5
- parent: 2
- - uid: 12671
- components:
- - type: Transform
- pos: -98.5,-10.5
- parent: 2
- - uid: 12672
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-30.5
- parent: 2
- - uid: 12673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-21.5
- parent: 2
- - uid: 12674
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-75.5
- parent: 2
- - uid: 12675
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-42.5
- parent: 2
- - uid: 12676
- components:
- - type: Transform
- pos: -98.5,-8.5
- parent: 2
- - uid: 12677
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,32.5
- parent: 2
- - uid: 12678
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,52.5
- parent: 2
- - uid: 12679
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-54.5
- parent: 2
- - uid: 12680
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,36.5
- parent: 2
- - uid: 12681
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,35.5
- parent: 2
- - uid: 12682
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,50.5
- parent: 2
- - uid: 12683
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-54.5
- parent: 2
- - uid: 12684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-55.5
- parent: 2
- - uid: 12685
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-54.5
- parent: 2
- - uid: 12686
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-35.5
- parent: 2
- - uid: 12687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-69.5
- parent: 2
- - uid: 12688
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-44.5
- parent: 2
- - uid: 12689
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-43.5
- parent: 2
- - uid: 12690
- components:
- - type: Transform
- pos: -61.5,-23.5
- parent: 2
- - uid: 12691
- components:
- - type: Transform
- pos: -51.5,-92.5
- parent: 2
- - uid: 12692
- components:
- - type: Transform
- pos: -70.5,77.5
- parent: 2
- - uid: 12693
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-35.5
- parent: 2
- - uid: 12694
- components:
- - type: Transform
- pos: -91.5,-1.5
- parent: 2
- - uid: 12695
- components:
- - type: Transform
- pos: -61.5,-24.5
- parent: 2
- - uid: 12696
- components:
- - type: Transform
- pos: -90.5,-1.5
- parent: 2
- - uid: 12697
- components:
- - type: Transform
- pos: -61.5,-26.5
- parent: 2
- - uid: 12698
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-76.5
- parent: 2
- - uid: 12699
- components:
- - type: Transform
- pos: -92.5,-1.5
- parent: 2
- - uid: 12700
- components:
- - type: Transform
- pos: -95.5,-1.5
- parent: 2
- - uid: 12701
- components:
- - type: Transform
- pos: -59.5,33.5
- parent: 2
- - uid: 12702
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,33.5
- parent: 2
- - uid: 12703
- components:
- - type: Transform
- pos: -2.5,30.5
- parent: 2
- - uid: 12704
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,22.5
- parent: 2
- - uid: 12705
- components:
- - type: Transform
- pos: -98.5,-5.5
- parent: 2
- - uid: 12706
- components:
- - type: Transform
- pos: -98.5,-6.5
- parent: 2
- - uid: 12707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-43.5
- parent: 2
- - uid: 12708
- components:
- - type: Transform
- pos: -98.5,-9.5
- parent: 2
- - uid: 12709
- components:
- - type: Transform
- pos: -91.5,-10.5
- parent: 2
- - uid: 12710
- components:
- - type: Transform
- pos: -97.5,-1.5
- parent: 2
- - uid: 12711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,38.5
- parent: 2
- - uid: 12712
- components:
- - type: Transform
- pos: -93.5,-1.5
- parent: 2
- - uid: 12713
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,31.5
- parent: 2
- - uid: 12714
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-42.5
- parent: 2
- - uid: 12715
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-40.5
- parent: 2
- - uid: 12716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-10.5
- parent: 2
- - uid: 12717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-10.5
- parent: 2
- - uid: 12718
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-39.5
- parent: 2
- - uid: 12719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-3.5
- parent: 2
- - uid: 12720
- components:
- - type: Transform
- pos: -69.5,66.5
- parent: 2
- - uid: 12721
- components:
- - type: Transform
- pos: -51.5,-79.5
- parent: 2
- - uid: 12722
- components:
- - type: Transform
- pos: 29.5,99.5
- parent: 2
- - uid: 12723
- components:
- - type: Transform
- pos: -56.5,42.5
- parent: 2
- - uid: 12724
- components:
- - type: Transform
- pos: -54.5,29.5
- parent: 2
- - uid: 12725
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,48.5
- parent: 2
- - uid: 12726
- components:
- - type: Transform
- pos: -82.5,-26.5
- parent: 2
- - uid: 12727
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,44.5
- parent: 2
- - uid: 12728
- components:
- - type: Transform
- pos: -5.5,30.5
- parent: 2
- - uid: 12729
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,42.5
- parent: 2
- - uid: 12730
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,12.5
- parent: 2
- - uid: 12731
- components:
- - type: Transform
- pos: -45.5,61.5
- parent: 2
- - uid: 12732
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,42.5
- parent: 2
- - uid: 12733
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-57.5
- parent: 2
- - uid: 12734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-22.5
- parent: 2
- - uid: 12735
- components:
- - type: Transform
- pos: -91.5,-11.5
- parent: 2
- - uid: 12736
- components:
- - type: Transform
- pos: -61.5,-25.5
- parent: 2
- - uid: 12737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-71.5
- parent: 2
- - uid: 12738
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-31.5
- parent: 2
- - uid: 12739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-10.5
- parent: 2
- - uid: 12740
- components:
- - type: Transform
- pos: -78.5,-37.5
- parent: 2
- - uid: 12741
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,24.5
- parent: 2
- - uid: 12742
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,47.5
- parent: 2
- - uid: 12743
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,40.5
- parent: 2
- - uid: 12744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,33.5
- parent: 2
- - uid: 12745
- components:
- - type: Transform
- pos: -38.5,-56.5
- parent: 2
- - uid: 12746
- components:
- - type: Transform
- pos: -60.5,39.5
- parent: 2
- - uid: 12747
- components:
- - type: Transform
- pos: -86.5,14.5
- parent: 2
- - uid: 12748
- components:
- - type: Transform
- pos: -52.5,-81.5
- parent: 2
- - uid: 12749
- components:
- - type: Transform
- pos: -60.5,40.5
- parent: 2
- - uid: 12750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,44.5
- parent: 2
- - uid: 12751
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-61.5
- parent: 2
- - uid: 12752
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,26.5
- parent: 2
- - uid: 12753
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,21.5
- parent: 2
- - uid: 12754
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-74.5
- parent: 2
- - uid: 12755
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-30.5
- parent: 2
- - uid: 12756
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-54.5
- parent: 2
- - uid: 12757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-29.5
- parent: 2
- - uid: 12758
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,28.5
- parent: 2
- - uid: 12759
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,52.5
- parent: 2
- - uid: 12760
- components:
- - type: Transform
- pos: 35.5,27.5
- parent: 2
- - uid: 12761
- components:
- - type: Transform
- pos: -77.5,-37.5
- parent: 2
- - uid: 12762
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-19.5
- parent: 2
- - uid: 12763
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,30.5
- parent: 2
- - uid: 12764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-19.5
- parent: 2
- - uid: 12765
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-28.5
- parent: 2
- - uid: 12766
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,53.5
- parent: 2
- - uid: 12767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,23.5
- parent: 2
- - uid: 12768
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,52.5
- parent: 2
- - uid: 12769
- components:
- - type: Transform
- pos: -53.5,25.5
- parent: 2
- - uid: 12770
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,46.5
- parent: 2
- - uid: 12771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,26.5
- parent: 2
- - uid: 12772
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,44.5
- parent: 2
- - uid: 12773
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,25.5
- parent: 2
- - uid: 12774
- components:
- - type: Transform
- pos: -91.5,-4.5
- parent: 2
- - uid: 12775
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-25.5
- parent: 2
- - uid: 12776
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,38.5
- parent: 2
- - uid: 12777
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,27.5
- parent: 2
- - uid: 12778
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-61.5
- parent: 2
- - uid: 12779
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,54.5
- parent: 2
- - uid: 12780
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,40.5
- parent: 2
- - uid: 12781
- components:
- - type: Transform
- pos: -98.5,-1.5
- parent: 2
- - uid: 12782
- components:
- - type: Transform
- pos: -95.5,-6.5
- parent: 2
- - uid: 12783
- components:
- - type: Transform
- pos: -86.5,-5.5
- parent: 2
- - uid: 12784
- components:
- - type: Transform
- pos: -59.5,37.5
- parent: 2
- - uid: 12785
- components:
- - type: Transform
- pos: -61.5,-27.5
- parent: 2
- - uid: 12786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-18.5
- parent: 2
- - uid: 12787
- components:
- - type: Transform
- pos: -96.5,-6.5
- parent: 2
- - uid: 12788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,41.5
- parent: 2
- - uid: 12789
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,42.5
- parent: 2
- - uid: 12790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-57.5
- parent: 2
- - uid: 12791
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,41.5
- parent: 2
- - uid: 12792
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-70.5
- parent: 2
- - uid: 12793
- components:
- - type: Transform
- pos: -86.5,-8.5
- parent: 2
- - uid: 12794
- components:
- - type: Transform
- pos: -69.5,-0.5
- parent: 2
- - uid: 12795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-62.5
- parent: 2
- - uid: 12796
- components:
- - type: Transform
- pos: -98.5,-4.5
- parent: 2
- - uid: 12797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-68.5
- parent: 2
- - uid: 12798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-57.5
- parent: 2
- - uid: 12799
- components:
- - type: Transform
- pos: -86.5,-4.5
- parent: 2
- - uid: 12800
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-18.5
- parent: 2
- - uid: 12801
- components:
- - type: Transform
- pos: -60.5,-25.5
- parent: 2
- - uid: 12802
- components:
- - type: Transform
- pos: -86.5,-6.5
- parent: 2
- - uid: 12803
- components:
- - type: Transform
- pos: -95.5,-8.5
- parent: 2
- - uid: 12804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,37.5
- parent: 2
- - uid: 12805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,37.5
- parent: 2
- - uid: 12806
- components:
- - type: Transform
- pos: -51.5,-75.5
- parent: 2
- - uid: 12807
- components:
- - type: Transform
- pos: -51.5,-84.5
- parent: 2
- - uid: 12808
- components:
- - type: Transform
- pos: -66.5,66.5
- parent: 2
- - uid: 12809
- components:
- - type: Transform
- pos: 22.5,99.5
- parent: 2
- - uid: 12810
- components:
- - type: Transform
- pos: -67.5,66.5
- parent: 2
- - uid: 12811
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,42.5
- parent: 2
- - uid: 12812
- components:
- - type: Transform
- pos: -52.5,-89.5
- parent: 2
- - uid: 12813
- components:
- - type: Transform
- pos: -53.5,-89.5
- parent: 2
- - uid: 12814
- components:
- - type: Transform
- pos: -53.5,-58.5
- parent: 2
- - uid: 12815
- components:
- - type: Transform
- pos: -48.5,-85.5
- parent: 2
- - uid: 12816
- components:
- - type: Transform
- pos: 30.5,20.5
- parent: 2
- - uid: 12817
- components:
- - type: Transform
- pos: -54.5,-58.5
- parent: 2
- - uid: 12818
- components:
- - type: Transform
- pos: -70.5,73.5
- parent: 2
- - uid: 12819
- components:
- - type: Transform
- pos: -56.5,-81.5
- parent: 2
- - uid: 12820
- components:
- - type: Transform
- pos: -57.5,-81.5
- parent: 2
- - uid: 12821
- components:
- - type: Transform
- pos: -75.5,72.5
- parent: 2
- - uid: 12822
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-33.5
- parent: 2
- - uid: 12823
- components:
- - type: Transform
- pos: -75.5,71.5
- parent: 2
- - uid: 12824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-37.5
- parent: 2
- - uid: 12825
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-36.5
- parent: 2
- - uid: 12826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-7.5
- parent: 2
- - uid: 12827
- components:
- - type: Transform
- pos: -75.5,70.5
- parent: 2
- - uid: 12828
- components:
- - type: Transform
- pos: -72.5,69.5
- parent: 2
- - uid: 12829
- components:
- - type: Transform
- pos: -71.5,69.5
- parent: 2
- - uid: 12830
- components:
- - type: Transform
- pos: -49.5,-66.5
- parent: 2
- - uid: 12831
- components:
- - type: Transform
- pos: 28.5,93.5
- parent: 2
- - uid: 12832
- components:
- - type: Transform
- pos: 28.5,95.5
- parent: 2
- - uid: 12833
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-40.5
- parent: 2
- - uid: 12834
- components:
- - type: Transform
- pos: -48.5,-89.5
- parent: 2
- - uid: 12835
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-10.5
- parent: 2
- - uid: 12836
- components:
- - type: Transform
- pos: -47.5,-89.5
- parent: 2
- - uid: 12837
- components:
- - type: Transform
- pos: -75.5,83.5
- parent: 2
- - uid: 12838
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-7.5
- parent: 2
- - uid: 12839
- components:
- - type: Transform
- pos: 26.5,91.5
- parent: 2
- - uid: 12840
- components:
- - type: Transform
- pos: 28.5,90.5
- parent: 2
- - uid: 12841
- components:
- - type: Transform
- pos: 28.5,89.5
- parent: 2
- - uid: 12842
- components:
- - type: Transform
- pos: 28.5,88.5
- parent: 2
- - uid: 12843
- components:
- - type: Transform
- pos: 30.5,91.5
- parent: 2
- - uid: 12844
- components:
- - type: Transform
- pos: 29.5,91.5
- parent: 2
- - uid: 12845
- components:
- - type: Transform
- pos: 27.5,91.5
- parent: 2
- - uid: 12846
- components:
- - type: Transform
- pos: 27.5,95.5
- parent: 2
- - uid: 12847
- components:
- - type: Transform
- pos: 23.5,91.5
- parent: 2
- - uid: 12848
- components:
- - type: Transform
- pos: 22.5,91.5
- parent: 2
- - uid: 12849
- components:
- - type: Transform
- pos: 31.5,91.5
- parent: 2
- - uid: 12850
- components:
- - type: Transform
- pos: -76.5,81.5
- parent: 2
- - uid: 12851
- components:
- - type: Transform
- pos: -80.5,77.5
- parent: 2
- - uid: 12852
- components:
- - type: Transform
- pos: -56.5,-85.5
- parent: 2
- - uid: 12853
- components:
- - type: Transform
- pos: -71.5,81.5
- parent: 2
- - uid: 12854
- components:
- - type: Transform
- pos: -74.5,81.5
- parent: 2
- - uid: 12855
- components:
- - type: Transform
- pos: -51.5,-87.5
- parent: 2
- - uid: 12856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,40.5
- parent: 2
- - uid: 12857
- components:
- - type: Transform
- pos: -57.5,-85.5
- parent: 2
- - uid: 12858
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,44.5
- parent: 2
- - uid: 12859
- components:
- - type: Transform
- pos: -51.5,-86.5
- parent: 2
- - uid: 12860
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,31.5
- parent: 2
- - uid: 12861
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,-40.5
- parent: 2
- - uid: 12862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-3.5
- parent: 2
- - uid: 12863
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-31.5
- parent: 2
- - uid: 12864
- components:
- - type: Transform
- pos: -75.5,73.5
- parent: 2
- - uid: 12865
- components:
- - type: Transform
- pos: -73.5,69.5
- parent: 2
- - uid: 12866
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,33.5
- parent: 2
- - uid: 12867
- components:
- - type: Transform
- pos: -62.5,-50.5
- parent: 2
- - uid: 12868
- components:
- - type: Transform
- pos: -76.5,-37.5
- parent: 2
- - uid: 12869
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-10.5
- parent: 2
- - uid: 12870
- components:
- - type: Transform
- pos: -73.5,73.5
- parent: 2
- - uid: 12871
- components:
- - type: Transform
- pos: -57.5,-89.5
- parent: 2
- - uid: 12872
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,29.5
- parent: 2
- - uid: 12873
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,28.5
- parent: 2
- - uid: 12874
- components:
- - type: Transform
- pos: -43.5,-58.5
- parent: 2
- - uid: 12875
- components:
- - type: Transform
- pos: 33.5,99.5
- parent: 2
- - uid: 12876
- components:
- - type: Transform
- pos: -51.5,-78.5
- parent: 2
- - uid: 12877
- components:
- - type: Transform
- pos: 20.5,87.5
- parent: 2
- - uid: 12878
- components:
- - type: Transform
- pos: -51.5,-58.5
- parent: 2
- - uid: 12879
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,44.5
- parent: 2
- - uid: 12880
- components:
- - type: Transform
- pos: 25.5,99.5
- parent: 2
- - uid: 12881
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,43.5
- parent: 2
- - uid: 12882
- components:
- - type: Transform
- pos: -78.5,73.5
- parent: 2
- - uid: 12883
- components:
- - type: Transform
- pos: -74.5,-38.5
- parent: 2
- - uid: 12884
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,43.5
- parent: 2
- - uid: 12885
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,41.5
- parent: 2
- - uid: 12886
- components:
- - type: Transform
- pos: -43.5,61.5
- parent: 2
- - uid: 12887
- components:
- - type: Transform
- pos: -77.5,81.5
- parent: 2
- - uid: 12888
- components:
- - type: Transform
- pos: -73.5,-38.5
- parent: 2
- - uid: 12889
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,27.5
- parent: 2
- - uid: 12890
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,52.5
- parent: 2
- - uid: 12891
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,54.5
- parent: 2
- - uid: 12892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-46.5
- parent: 2
- - uid: 12893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-71.5
- parent: 2
- - uid: 12894
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-71.5
- parent: 2
- - uid: 12895
- components:
- - type: Transform
- pos: -92.5,-13.5
- parent: 2
- - uid: 12896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,36.5
- parent: 2
- - uid: 12897
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-75.5
- parent: 2
- - uid: 12898
- components:
- - type: Transform
- pos: -86.5,-9.5
- parent: 2
- - uid: 12899
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-73.5
- parent: 2
- - uid: 12900
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-65.5
- parent: 2
- - uid: 12901
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-57.5
- parent: 2
- - uid: 12902
- components:
- - type: Transform
- pos: -93.5,-13.5
- parent: 2
- - uid: 12903
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-54.5
- parent: 2
- - uid: 12904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-38.5
- parent: 2
- - uid: 12905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-46.5
- parent: 2
- - uid: 12906
- components:
- - type: Transform
- pos: -35.5,45.5
- parent: 2
- - uid: 12907
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-19.5
- parent: 2
- - uid: 12908
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-71.5
- parent: 2
- - uid: 12909
- components:
- - type: Transform
- pos: -39.5,-4.5
- parent: 2
- - uid: 12910
- components:
- - type: Transform
- pos: -52.5,-54.5
- parent: 2
- - uid: 12911
- components:
- - type: Transform
- pos: -49.5,-85.5
- parent: 2
- - uid: 12912
- components:
- - type: Transform
- pos: -81.5,81.5
- parent: 2
- - uid: 12913
- components:
- - type: Transform
- pos: -61.5,-50.5
- parent: 2
- - uid: 12914
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-36.5
- parent: 2
- - uid: 12915
- components:
- - type: Transform
- pos: -51.5,-66.5
- parent: 2
- - uid: 12916
- components:
- - type: Transform
- pos: -47.5,-74.5
- parent: 2
- - uid: 12917
- components:
- - type: Transform
- pos: -74.5,27.5
- parent: 2
- - uid: 12918
- components:
- - type: Transform
- pos: -81.5,73.5
- parent: 2
- - uid: 12919
- components:
- - type: Transform
- pos: -49.5,-89.5
- parent: 2
- - uid: 12920
- components:
- - type: Transform
- pos: -52.5,-66.5
- parent: 2
- - uid: 12921
- components:
- - type: Transform
- pos: -80.5,73.5
- parent: 2
- - uid: 12922
- components:
- - type: Transform
- pos: -76.5,69.5
- parent: 2
- - uid: 12923
- components:
- - type: Transform
- pos: -75.5,75.5
- parent: 2
- - uid: 12924
- components:
- - type: Transform
- pos: -80.5,81.5
- parent: 2
- - uid: 12925
- components:
- - type: Transform
- pos: 30.5,95.5
- parent: 2
- - uid: 12926
- components:
- - type: Transform
- pos: -52.5,-58.5
- parent: 2
- - uid: 12927
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,34.5
- parent: 2
- - uid: 12928
- components:
- - type: Transform
- pos: 30.5,16.5
- parent: 2
- - uid: 12929
- components:
- - type: Transform
- pos: 30.5,17.5
- parent: 2
- - uid: 12930
- components:
- - type: Transform
- pos: -78.5,81.5
- parent: 2
- - uid: 12931
- components:
- - type: Transform
- pos: -73.5,-40.5
- parent: 2
- - uid: 12932
- components:
- - type: Transform
- pos: -50.5,-62.5
- parent: 2
- - uid: 12933
- components:
- - type: Transform
- pos: -83.5,14.5
- parent: 2
- - uid: 12934
- components:
- - type: Transform
- pos: -93.5,-10.5
- parent: 2
- - uid: 12935
- components:
- - type: Transform
- pos: -84.5,14.5
- parent: 2
- - uid: 12936
- components:
- - type: Transform
- pos: -74.5,-40.5
- parent: 2
- - uid: 12937
- components:
- - type: Transform
- pos: -53.5,-85.5
- parent: 2
- - uid: 12938
- components:
- - type: Transform
- pos: -62.5,-54.5
- parent: 2
- - uid: 12939
- components:
- - type: Transform
- pos: -52.5,-52.5
- parent: 2
- - uid: 12940
- components:
- - type: Transform
- pos: -81.5,69.5
- parent: 2
- - uid: 12941
- components:
- - type: Transform
- pos: -46.5,-81.5
- parent: 2
- - uid: 12942
- components:
- - type: Transform
- pos: -54.5,-56.5
- parent: 2
- - uid: 12943
- components:
- - type: Transform
- pos: -52.5,-56.5
- parent: 2
- - uid: 12944
- components:
- - type: Transform
- pos: -45.5,-81.5
- parent: 2
- - uid: 12945
- components:
- - type: Transform
- pos: -54.5,-54.5
- parent: 2
- - uid: 12946
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,42.5
- parent: 2
- - uid: 12947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,28.5
- parent: 2
- - uid: 12948
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-17.5
- parent: 2
- - uid: 12949
- components:
- - type: Transform
- pos: -59.5,32.5
- parent: 2
- - uid: 12950
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,31.5
- parent: 2
- - uid: 12951
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-57.5
- parent: 2
- - uid: 12952
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-58.5
- parent: 2
- - uid: 12953
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-57.5
- parent: 2
- - uid: 12954
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-30.5
- parent: 2
- - uid: 12955
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,30.5
- parent: 2
- - uid: 12956
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,32.5
- parent: 2
- - uid: 12957
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,28.5
- parent: 2
- - uid: 12958
- components:
- - type: Transform
- pos: 30.5,18.5
- parent: 2
- - uid: 12959
- components:
- - type: Transform
- pos: -51.5,-90.5
- parent: 2
- - uid: 12960
- components:
- - type: Transform
- pos: -61.5,66.5
- parent: 2
- - uid: 12961
- components:
- - type: Transform
- pos: -79.5,81.5
- parent: 2
- - uid: 12962
- components:
- - type: Transform
- pos: -72.5,81.5
- parent: 2
- - uid: 12963
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,12.5
- parent: 2
- - uid: 12964
- components:
- - type: Transform
- pos: -50.5,-69.5
- parent: 2
- - uid: 12965
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-74.5
- parent: 2
- - uid: 12966
- components:
- - type: Transform
- pos: -73.5,77.5
- parent: 2
- - uid: 12967
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-55.5
- parent: 2
- - uid: 12968
- components:
- - type: Transform
- pos: -96.5,-8.5
- parent: 2
- - uid: 12969
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,56.5
- parent: 2
- - uid: 12970
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-20.5
- parent: 2
- - uid: 12971
- components:
- - type: Transform
- pos: -43.5,59.5
- parent: 2
- - uid: 12972
- components:
- - type: Transform
- pos: -45.5,59.5
- parent: 2
- - uid: 12973
- components:
- - type: Transform
- pos: -78.5,-41.5
- parent: 2
- - uid: 12974
- components:
- - type: Transform
- pos: 28.5,98.5
- parent: 2
- - uid: 12975
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-46.5
- parent: 2
- - uid: 12976
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-55.5
- parent: 2
- - uid: 12977
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-55.5
- parent: 2
- - uid: 12978
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-55.5
- parent: 2
- - uid: 12979
- components:
- - type: Transform
- pos: 23.5,99.5
- parent: 2
- - uid: 12980
- components:
- - type: Transform
- pos: -65.5,66.5
- parent: 2
- - uid: 12981
- components:
- - type: Transform
- pos: -51.5,-83.5
- parent: 2
- - uid: 12982
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-41.5
- parent: 2
- - uid: 12983
- components:
- - type: Transform
- pos: -51.5,-69.5
- parent: 2
- - uid: 12984
- components:
- - type: Transform
- pos: -75.5,69.5
- parent: 2
- - uid: 12985
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-7.5
- parent: 2
- - uid: 12986
- components:
- - type: Transform
- pos: -73.5,81.5
- parent: 2
- - uid: 12987
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-28.5
- parent: 2
- - uid: 12988
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-61.5
- parent: 2
- - uid: 12989
- components:
- - type: Transform
- pos: -70.5,81.5
- parent: 2
- - uid: 12990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-71.5
- parent: 2
- - uid: 12991
- components:
- - type: Transform
- pos: -86.5,-1.5
- parent: 2
- - uid: 12992
- components:
- - type: Transform
- pos: 28.5,99.5
- parent: 2
- - uid: 12993
- components:
- - type: Transform
- pos: -71.5,73.5
- parent: 2
- - uid: 12994
- components:
- - type: Transform
- pos: -74.5,33.5
- parent: 2
- - uid: 12995
- components:
- - type: Transform
- pos: -55.5,-89.5
- parent: 2
- - uid: 12996
- components:
- - type: Transform
- pos: -54.5,-89.5
- parent: 2
- - uid: 12997
- components:
- - type: Transform
- pos: -69.5,81.5
- parent: 2
- - uid: 12998
- components:
- - type: Transform
- pos: 25.5,91.5
- parent: 2
- - uid: 12999
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,29.5
- parent: 2
- - uid: 13000
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-54.5
- parent: 2
- - uid: 13001
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-26.5
- parent: 2
- - uid: 13002
- components:
- - type: Transform
- pos: -77.5,-41.5
- parent: 2
- - uid: 13003
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-61.5
- parent: 2
- - uid: 13004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,27.5
- parent: 2
- - uid: 13005
- components:
- - type: Transform
- pos: -88.5,-1.5
- parent: 2
- - uid: 13006
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-28.5
- parent: 2
- - uid: 13007
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,27.5
- parent: 2
- - uid: 13008
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,34.5
- parent: 2
- - uid: 13009
- components:
- - type: Transform
- pos: -76.5,-41.5
- parent: 2
- - uid: 13010
- components:
- - type: Transform
- pos: 35.5,28.5
- parent: 2
- - uid: 13011
- components:
- - type: Transform
- pos: -46.5,-89.5
- parent: 2
- - uid: 13012
- components:
- - type: Transform
- pos: -45.5,-89.5
- parent: 2
- - uid: 13013
- components:
- - type: Transform
- pos: 30.5,99.5
- parent: 2
- - uid: 13014
- components:
- - type: Transform
- pos: 31.5,99.5
- parent: 2
- - uid: 13015
- components:
- - type: Transform
- pos: 32.5,99.5
- parent: 2
- - uid: 13016
- components:
- - type: Transform
- pos: 28.5,100.5
- parent: 2
- - uid: 13017
- components:
- - type: Transform
- pos: 28.5,101.5
- parent: 2
- - uid: 13018
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-40.5
- parent: 2
- - uid: 13019
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-10.5
- parent: 2
- - uid: 13020
- components:
- - type: Transform
- pos: -74.5,-43.5
- parent: 2
- - uid: 13021
- components:
- - type: Transform
- pos: -68.5,66.5
- parent: 2
- - uid: 13022
- components:
- - type: Transform
- pos: -51.5,-76.5
- parent: 2
- - uid: 13023
- components:
- - type: Transform
- pos: -88.5,11.5
- parent: 2
- - uid: 13024
- components:
- - type: Transform
- pos: -59.5,31.5
- parent: 2
- - uid: 13025
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-57.5
- parent: 2
- - uid: 13026
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-61.5
- parent: 2
- - uid: 13027
- components:
- - type: Transform
- pos: -98.5,-2.5
- parent: 2
- - uid: 13028
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,42.5
- parent: 2
- - uid: 13029
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-28.5
- parent: 2
- - uid: 13030
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-71.5
- parent: 2
- - uid: 13031
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-55.5
- parent: 2
- - uid: 13032
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,41.5
- parent: 2
- - uid: 13033
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,37.5
- parent: 2
- - uid: 13034
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-55.5
- parent: 2
- - uid: 13035
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-54.5
- parent: 2
- - uid: 13036
- components:
- - type: Transform
- pos: -98.5,-7.5
- parent: 2
- - uid: 13037
- components:
- - type: Transform
- pos: 28.5,96.5
- parent: 2
- - uid: 13038
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-30.5
- parent: 2
- - uid: 13039
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-12.5
- parent: 2
- - uid: 13040
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-7.5
- parent: 2
- - uid: 13041
- components:
- - type: Transform
- pos: -50.5,-66.5
- parent: 2
- - uid: 13042
- components:
- - type: Transform
- pos: -74.5,37.5
- parent: 2
- - uid: 13043
- components:
- - type: Transform
- pos: -98.5,-12.5
- parent: 2
- - uid: 13044
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-13.5
- parent: 2
- - uid: 13045
- components:
- - type: Transform
- pos: 28.5,87.5
- parent: 2
- - uid: 13046
- components:
- - type: Transform
- pos: -87.5,14.5
- parent: 2
- - uid: 13047
- components:
- - type: Transform
- pos: -43.5,-56.5
- parent: 2
- - uid: 13048
- components:
- - type: Transform
- pos: -49.5,-74.5
- parent: 2
- - uid: 13049
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-55.5
- parent: 2
- - uid: 13050
- components:
- - type: Transform
- pos: 21.5,87.5
- parent: 2
- - uid: 13051
- components:
- - type: Transform
- pos: -86.5,-13.5
- parent: 2
- - uid: 13052
- components:
- - type: Transform
- pos: -98.5,-13.5
- parent: 2
- - uid: 13053
- components:
- - type: Transform
- pos: -93.5,-3.5
- parent: 2
- - uid: 13054
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,12.5
- parent: 2
- - uid: 13055
- components:
- - type: Transform
- pos: -45.5,62.5
- parent: 2
- - uid: 13056
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-56.5
- parent: 2
- - uid: 13057
- components:
- - type: Transform
- pos: -86.5,-7.5
- parent: 2
- - uid: 13058
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-67.5
- parent: 2
- - uid: 13059
- components:
- - type: Transform
- pos: -87.5,-1.5
- parent: 2
- - uid: 13060
- components:
- - type: Transform
- pos: -74.5,36.5
- parent: 2
- - uid: 13061
- components:
- - type: Transform
- pos: -72.5,73.5
- parent: 2
- - uid: 13062
- components:
- - type: Transform
- pos: -74.5,32.5
- parent: 2
- - uid: 13063
- components:
- - type: Transform
- pos: -56.5,-89.5
- parent: 2
- - uid: 13064
- components:
- - type: Transform
- pos: -74.5,31.5
- parent: 2
- - uid: 13065
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-61.5
- parent: 2
- - uid: 13066
- components:
- - type: Transform
- pos: -51.5,-80.5
- parent: 2
- - uid: 13067
- components:
- - type: Transform
- pos: -73.5,66.5
- parent: 2
- - uid: 13068
- components:
- - type: Transform
- pos: -55.5,29.5
- parent: 2
- - uid: 13069
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-57.5
- parent: 2
- - uid: 13070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-19.5
- parent: 2
- - uid: 13071
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,51.5
- parent: 2
- - uid: 13072
- components:
- - type: Transform
- pos: 28.5,102.5
- parent: 2
- - uid: 13073
- components:
- - type: Transform
- pos: 24.5,99.5
- parent: 2
- - uid: 13074
- components:
- - type: Transform
- pos: -75.5,76.5
- parent: 2
- - uid: 13075
- components:
- - type: Transform
- pos: 21.5,95.5
- parent: 2
- - uid: 13076
- components:
- - type: Transform
- pos: -43.5,62.5
- parent: 2
- - uid: 13077
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-71.5
- parent: 2
- - uid: 13078
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-55.5
- parent: 2
- - uid: 13079
- components:
- - type: Transform
- pos: -78.5,77.5
- parent: 2
- - uid: 13080
- components:
- - type: Transform
- pos: -73.5,-43.5
- parent: 2
- - uid: 13081
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-3.5
- parent: 2
- - uid: 13082
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-23.5
- parent: 2
- - uid: 13083
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-46.5
- parent: 2
- - uid: 13084
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,24.5
- parent: 2
- - uid: 13085
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-10.5
- parent: 2
- - uid: 13086
- components:
- - type: Transform
- pos: -64.5,66.5
- parent: 2
- - uid: 13087
- components:
- - type: Transform
- pos: -51.5,-82.5
- parent: 2
- - uid: 13088
- components:
- - type: Transform
- pos: -16.5,-84.5
- parent: 2
- - uid: 13089
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-61.5
- parent: 2
- - uid: 13090
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-27.5
- parent: 2
- - uid: 13091
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-24.5
- parent: 2
- - uid: 13092
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,31.5
- parent: 2
- - uid: 13093
- components:
- - type: Transform
- pos: -4.5,30.5
- parent: 2
- - uid: 13094
- components:
- - type: Transform
- pos: -52.5,-85.5
- parent: 2
- - uid: 13095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,40.5
- parent: 2
- - uid: 13096
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,12.5
- parent: 2
- - uid: 13097
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,32.5
- parent: 2
- - uid: 13098
- components:
- - type: Transform
- pos: -77.5,77.5
- parent: 2
- - uid: 13099
- components:
- - type: Transform
- pos: -63.5,-50.5
- parent: 2
- - uid: 13100
- components:
- - type: Transform
- pos: -45.5,60.5
- parent: 2
- - uid: 13101
- components:
- - type: Transform
- pos: -51.5,-85.5
- parent: 2
- - uid: 13102
- components:
- - type: Transform
- pos: -75.5,74.5
- parent: 2
- - uid: 13103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-6.5
- parent: 2
- - uid: 13104
- components:
- - type: Transform
- pos: 28.5,92.5
- parent: 2
- - uid: 13105
- components:
- - type: Transform
- pos: 24.5,91.5
- parent: 2
- - uid: 13106
- components:
- - type: Transform
- pos: -51.5,-74.5
- parent: 2
- - uid: 13107
- components:
- - type: Transform
- pos: 30.5,22.5
- parent: 2
- - uid: 13108
- components:
- - type: Transform
- pos: -75.5,67.5
- parent: 2
- - uid: 13109
- components:
- - type: Transform
- pos: -77.5,69.5
- parent: 2
- - uid: 13110
- components:
- - type: Transform
- pos: -46.5,-85.5
- parent: 2
- - uid: 13111
- components:
- - type: Transform
- pos: -79.5,69.5
- parent: 2
- - uid: 13112
- components:
- - type: Transform
- pos: -50.5,-89.5
- parent: 2
- - uid: 13113
- components:
- - type: Transform
- pos: -69.5,73.5
- parent: 2
- - uid: 13114
- components:
- - type: Transform
- pos: -50.5,-85.5
- parent: 2
- - uid: 13115
- components:
- - type: Transform
- pos: -82.5,73.5
- parent: 2
- - uid: 13116
- components:
- - type: Transform
- pos: -79.5,73.5
- parent: 2
- - uid: 13117
- components:
- - type: Transform
- pos: -44.5,59.5
- parent: 2
- - uid: 13118
- components:
- - type: Transform
- pos: 26.5,99.5
- parent: 2
- - uid: 13119
- components:
- - type: Transform
- pos: -39.5,42.5
- parent: 2
- - uid: 13120
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,37.5
- parent: 2
- - uid: 13121
- components:
- - type: Transform
- pos: -95.5,-13.5
- parent: 2
- - uid: 13122
- components:
- - type: Transform
- pos: -98.5,-3.5
- parent: 2
- - uid: 13123
- components:
- - type: Transform
- pos: -89.5,-8.5
- parent: 2
- - uid: 13124
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-72.5
- parent: 2
- - uid: 13125
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-23.5
- parent: 2
- - uid: 13126
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-20.5
- parent: 2
- - uid: 13127
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-19.5
- parent: 2
- - uid: 13128
- components:
- - type: Transform
- pos: -39.5,-2.5
- parent: 2
- - uid: 13129
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,25.5
- parent: 2
- - uid: 13130
- components:
- - type: Transform
- pos: -41.5,43.5
- parent: 2
- - uid: 13131
- components:
- - type: Transform
- pos: -74.5,30.5
- parent: 2
- - uid: 13132
- components:
- - type: Transform
- pos: 25.5,71.5
- parent: 2
- - uid: 13133
- components:
- - type: Transform
- pos: -81.5,77.5
- parent: 2
- - uid: 13134
- components:
- - type: Transform
- pos: -71.5,66.5
- parent: 2
- - uid: 13135
- components:
- - type: Transform
- pos: -86.5,-3.5
- parent: 2
- - uid: 13136
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-59.5
- parent: 2
- - uid: 13137
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-58.5
- parent: 2
- - uid: 13138
- components:
- - type: Transform
- pos: -40.5,42.5
- parent: 2
- - uid: 13139
- components:
- - type: Transform
- pos: 33.5,62.5
- parent: 2
- - uid: 13140
- components:
- - type: Transform
- pos: -45.5,-56.5
- parent: 2
- - uid: 13141
- components:
- - type: Transform
- pos: 32.5,95.5
- parent: 2
- - uid: 13142
- components:
- - type: Transform
- pos: 23.5,95.5
- parent: 2
- - uid: 13143
- components:
- - type: Transform
- pos: -50.5,-81.5
- parent: 2
- - uid: 13144
- components:
- - type: Transform
- pos: -86.5,-12.5
- parent: 2
- - uid: 13145
- components:
- - type: Transform
- pos: -69.5,0.5
- parent: 2
- - uid: 13146
- components:
- - type: Transform
- pos: -97.5,-13.5
- parent: 2
- - uid: 13147
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,46.5
- parent: 2
- - uid: 13148
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,55.5
- parent: 2
- - uid: 13149
- components:
- - type: Transform
- pos: -42.5,-47.5
- parent: 2
- - uid: 13150
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,45.5
- parent: 2
- - uid: 13151
- components:
- - type: Transform
- pos: -75.5,77.5
- parent: 2
- - uid: 13152
- components:
- - type: Transform
- pos: 28.5,94.5
- parent: 2
- - uid: 13153
- components:
- - type: Transform
- pos: -52.5,-62.5
- parent: 2
- - uid: 13154
- components:
- - type: Transform
- pos: -51.5,-88.5
- parent: 2
- - uid: 13155
- components:
- - type: Transform
- pos: 33.5,95.5
- parent: 2
- - uid: 13156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-4.5
- parent: 2
- - uid: 13157
- components:
- - type: Transform
- pos: -42.5,-48.5
- parent: 2
- - uid: 13158
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-3.5
- parent: 2
- - uid: 13159
- components:
- - type: Transform
- pos: 29.5,95.5
- parent: 2
- - uid: 13160
- components:
- - type: Transform
- pos: 24.5,95.5
- parent: 2
- - uid: 13161
- components:
- - type: Transform
- pos: 22.5,95.5
- parent: 2
- - uid: 13162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-3.5
- parent: 2
- - uid: 13163
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-3.5
- parent: 2
- - uid: 13164
- components:
- - type: Transform
- pos: -48.5,-81.5
- parent: 2
- - uid: 13165
- components:
- - type: Transform
- pos: -77.5,73.5
- parent: 2
- - uid: 13166
- components:
- - type: Transform
- pos: -74.5,25.5
- parent: 2
- - uid: 13167
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-64.5
- parent: 2
- - uid: 13168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-19.5
- parent: 2
- - uid: 13169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-20.5
- parent: 2
- - uid: 13170
- components:
- - type: Transform
- pos: 23.5,60.5
- parent: 2
- - uid: 13171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-11.5
- parent: 2
- - uid: 13172
- components:
- - type: Transform
- pos: 10.5,93.5
- parent: 2
- - uid: 13173
- components:
- - type: Transform
- pos: -74.5,26.5
- parent: 2
- - uid: 13174
- components:
- - type: Transform
- pos: -74.5,24.5
- parent: 2
- - uid: 13175
- components:
- - type: Transform
- pos: -74.5,73.5
- parent: 2
- - uid: 13176
- components:
- - type: Transform
- pos: 70.5,-51.5
- parent: 2
- - uid: 13177
- components:
- - type: Transform
- pos: 23.5,61.5
- parent: 2
- - uid: 13178
- components:
- - type: Transform
- pos: -53.5,-62.5
- parent: 2
- - uid: 13179
- components:
- - type: Transform
- pos: -74.5,29.5
- parent: 2
- - uid: 13180
- components:
- - type: Transform
- pos: -76.5,73.5
- parent: 2
- - uid: 13181
- components:
- - type: Transform
- pos: -45.5,-54.5
- parent: 2
- - uid: 13182
- components:
- - type: Transform
- pos: -93.5,-11.5
- parent: 2
- - uid: 13183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-11.5
- parent: 2
- - uid: 13184
- components:
- - type: Transform
- pos: -72.5,66.5
- parent: 2
- - uid: 13185
- components:
- - type: Transform
- pos: -49.5,-69.5
- parent: 2
- - uid: 13186
- components:
- - type: Transform
- pos: 33.5,60.5
- parent: 2
- - uid: 13187
- components:
- - type: Transform
- pos: 26.5,95.5
- parent: 2
- - uid: 13188
- components:
- - type: Transform
- pos: -74.5,66.5
- parent: 2
- - uid: 13189
- components:
- - type: Transform
- pos: -69.5,77.5
- parent: 2
- - uid: 13190
- components:
- - type: Transform
- pos: -49.5,-81.5
- parent: 2
- - uid: 13191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,42.5
- parent: 2
- - uid: 13192
- components:
- - type: Transform
- pos: -98.5,-11.5
- parent: 2
- - uid: 13193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-55.5
- parent: 2
- - uid: 13194
- components:
- - type: Transform
- pos: -47.5,-85.5
- parent: 2
- - uid: 13195
- components:
- - type: Transform
- pos: -68.5,73.5
- parent: 2
- - uid: 13196
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-19.5
- parent: 2
- - uid: 13197
- components:
- - type: Transform
- pos: -87.5,-13.5
- parent: 2
- - uid: 13198
- components:
- - type: Transform
- pos: -96.5,-1.5
- parent: 2
- - uid: 13199
- components:
- - type: Transform
- pos: -50.5,-74.5
- parent: 2
- - uid: 13200
- components:
- - type: Transform
- pos: -75.5,68.5
- parent: 2
- - uid: 13201
- components:
- - type: Transform
- pos: 25.5,70.5
- parent: 2
- - uid: 13202
- components:
- - type: Transform
- pos: -51.5,-91.5
- parent: 2
- - uid: 13203
- components:
- - type: Transform
- pos: -71.5,77.5
- parent: 2
- - uid: 13204
- components:
- - type: Transform
- pos: 33.5,91.5
- parent: 2
- - uid: 13205
- components:
- - type: Transform
- pos: 27.5,99.5
- parent: 2
- - uid: 13206
- components:
- - type: Transform
- pos: -55.5,-85.5
- parent: 2
- - uid: 13207
- components:
- - type: Transform
- pos: -44.5,-85.5
- parent: 2
- - uid: 13208
- components:
- - type: Transform
- pos: -88.5,12.5
- parent: 2
- - uid: 13209
- components:
- - type: Transform
- pos: 25.5,87.5
- parent: 2
- - uid: 13210
- components:
- - type: Transform
- pos: 24.5,87.5
- parent: 2
- - uid: 13211
- components:
- - type: Transform
- pos: -94.5,-1.5
- parent: 2
- - uid: 13212
- components:
- - type: Transform
- pos: -69.5,-1.5
- parent: 2
- - uid: 13213
- components:
- - type: Transform
- pos: -86.5,-2.5
- parent: 2
- - uid: 13214
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,37.5
- parent: 2
- - uid: 13215
- components:
- - type: Transform
- pos: -74.5,77.5
- parent: 2
- - uid: 13216
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,48.5
- parent: 2
- - uid: 13217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-28.5
- parent: 2
- - uid: 13218
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,43.5
- parent: 2
- - uid: 13219
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,42.5
- parent: 2
- - uid: 13220
- components:
- - type: Transform
- pos: -88.5,15.5
- parent: 2
- - uid: 13221
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,40.5
- parent: 2
- - uid: 13222
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,39.5
- parent: 2
- - uid: 13223
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,38.5
- parent: 2
- - uid: 13224
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,38.5
- parent: 2
- - uid: 13225
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,38.5
- parent: 2
- - uid: 13226
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,38.5
- parent: 2
- - uid: 13227
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,38.5
- parent: 2
- - uid: 13228
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,38.5
- parent: 2
- - uid: 13229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-75.5
- parent: 2
- - uid: 13230
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-38.5
- parent: 2
- - uid: 13231
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-10.5
- parent: 2
- - uid: 13232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-10.5
- parent: 2
- - uid: 13233
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-36.5
- parent: 2
- - uid: 13234
- components:
- - type: Transform
- pos: -27.5,-84.5
- parent: 2
- - uid: 13235
- components:
- - type: Transform
- pos: -88.5,14.5
- parent: 2
- - uid: 13236
- components:
- - type: Transform
- pos: -53.5,-81.5
- parent: 2
- - uid: 13237
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,25.5
- parent: 2
- - uid: 13238
- components:
- - type: Transform
- pos: -52.5,-33.5
- parent: 2
- - uid: 13239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,28.5
- parent: 2
- - uid: 13240
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-34.5
- parent: 2
- - uid: 13241
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-28.5
- parent: 2
- - uid: 13242
- components:
- - type: Transform
- pos: -55.5,-34.5
- parent: 2
- - uid: 13243
- components:
- - type: Transform
- pos: -55.5,-35.5
- parent: 2
- - uid: 13244
- components:
- - type: Transform
- pos: -55.5,-36.5
- parent: 2
- - uid: 13245
- components:
- - type: Transform
- pos: -54.5,-36.5
- parent: 2
- - uid: 13246
- components:
- - type: Transform
- pos: -54.5,-37.5
- parent: 2
- - uid: 13247
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-55.5
- parent: 2
- - uid: 13248
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-55.5
- parent: 2
- - uid: 13249
- components:
- - type: Transform
- pos: -48.5,-40.5
- parent: 2
- - uid: 13250
- components:
- - type: Transform
- pos: -47.5,-39.5
- parent: 2
- - uid: 13251
- components:
- - type: Transform
- pos: -46.5,-39.5
- parent: 2
- - uid: 13252
- components:
- - type: Transform
- pos: -44.5,-40.5
- parent: 2
- - uid: 13253
- components:
- - type: Transform
- pos: -43.5,-40.5
- parent: 2
- - uid: 13254
- components:
- - type: Transform
- pos: -74.5,34.5
- parent: 2
- - uid: 13255
- components:
- - type: Transform
- pos: -74.5,28.5
- parent: 2
- - uid: 13256
- components:
- - type: Transform
- pos: -48.5,-74.5
- parent: 2
- - uid: 13257
- components:
- - type: Transform
- pos: 25.5,95.5
- parent: 2
- - uid: 13258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-35.5
- parent: 2
- - uid: 13259
- components:
- - type: Transform
- pos: 28.5,91.5
- parent: 2
- - uid: 13260
- components:
- - type: Transform
- pos: -58.5,-85.5
- parent: 2
- - uid: 13261
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-40.5
- parent: 2
- - uid: 13262
- components:
- - type: Transform
- pos: 34.5,99.5
- parent: 2
- - uid: 13263
- components:
- - type: Transform
- pos: 10.5,92.5
- parent: 2
- - uid: 13264
- components:
- - type: Transform
- pos: -51.5,-77.5
- parent: 2
- - uid: 13265
- components:
- - type: Transform
- pos: 19.5,87.5
- parent: 2
- - uid: 13266
- components:
- - type: Transform
- pos: -41.5,-5.5
- parent: 2
- - uid: 13267
- components:
- - type: Transform
- pos: -41.5,-11.5
- parent: 2
- - uid: 13268
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,54.5
- parent: 2
- - uid: 13269
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,53.5
- parent: 2
- - uid: 13270
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,38.5
- parent: 2
- - uid: 13271
- components:
- - type: Transform
- pos: -41.5,-6.5
- parent: 2
- - uid: 13272
- components:
- - type: Transform
- pos: 31.5,95.5
- parent: 2
- - uid: 13273
- components:
- - type: Transform
- pos: -39.5,-3.5
- parent: 2
- - uid: 13274
- components:
- - type: Transform
- pos: -54.5,-85.5
- parent: 2
- - uid: 13275
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,12.5
- parent: 2
- - uid: 13276
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-54.5
- parent: 2
- - uid: 13277
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-71.5
- parent: 2
- - uid: 13278
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-71.5
- parent: 2
- - uid: 13279
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-20.5
- parent: 2
- - uid: 13280
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-21.5
- parent: 2
- - uid: 13281
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-19.5
- parent: 2
- - uid: 13282
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-54.5
- parent: 2
- - uid: 13283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-53.5
- parent: 2
- - uid: 13284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-46.5
- parent: 2
- - uid: 13285
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-52.5
- parent: 2
- - uid: 13286
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-46.5
- parent: 2
- - uid: 13287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-46.5
- parent: 2
- - uid: 13288
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-23.5
- parent: 2
- - uid: 13289
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-23.5
- parent: 2
- - uid: 13290
- components:
- - type: Transform
- pos: -51.5,-89.5
- parent: 2
- - uid: 13291
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,44.5
- parent: 2
- - uid: 13292
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,49.5
- parent: 2
- - uid: 13293
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,33.5
- parent: 2
- - uid: 13294
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-55.5
- parent: 2
- - uid: 13295
- components:
- - type: Transform
- pos: 34.5,95.5
- parent: 2
- - uid: 13296
- components:
- - type: Transform
- pos: -47.5,-81.5
- parent: 2
- - uid: 13297
- components:
- - type: Transform
- pos: -70.5,66.5
- parent: 2
- - uid: 13298
- components:
- - type: Transform
- pos: -78.5,69.5
- parent: 2
- - uid: 13299
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-61.5
- parent: 2
- - uid: 13300
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-10.5
- parent: 2
- - uid: 13301
- components:
- - type: Transform
- pos: -64.5,-50.5
- parent: 2
- - uid: 13302
- components:
- - type: Transform
- pos: 16.5,-60.5
- parent: 2
- - uid: 13303
- components:
- - type: Transform
- pos: 18.5,-58.5
- parent: 2
- - uid: 13304
- components:
- - type: Transform
- pos: 19.5,-58.5
- parent: 2
- - uid: 13305
- components:
- - type: Transform
- pos: 20.5,-58.5
- parent: 2
- - uid: 13306
- components:
- - type: Transform
- pos: 21.5,-58.5
- parent: 2
- - uid: 13307
- components:
- - type: Transform
- pos: 22.5,-58.5
- parent: 2
- - uid: 13308
- components:
- - type: Transform
- pos: 23.5,-58.5
- parent: 2
- - uid: 13309
- components:
- - type: Transform
- pos: 13.5,-80.5
- parent: 2
- - uid: 13310
- components:
- - type: Transform
- pos: 13.5,-79.5
- parent: 2
- - uid: 13311
- components:
- - type: Transform
- pos: 13.5,-78.5
- parent: 2
- - uid: 13312
- components:
- - type: Transform
- pos: 13.5,-73.5
- parent: 2
- - uid: 13313
- components:
- - type: Transform
- pos: 13.5,-72.5
- parent: 2
- - uid: 13314
- components:
- - type: Transform
- pos: 13.5,-71.5
- parent: 2
- - uid: 13315
- components:
- - type: Transform
- pos: 12.5,-65.5
- parent: 2
- - uid: 13316
- components:
- - type: Transform
- pos: -29.5,-81.5
- parent: 2
- - uid: 13317
- components:
- - type: Transform
- pos: -37.5,-81.5
- parent: 2
- - uid: 13318
- components:
- - type: Transform
- pos: 15.5,78.5
- parent: 2
- - uid: 13319
- components:
- - type: Transform
- pos: 14.5,78.5
- parent: 2
- - uid: 13320
- components:
- - type: Transform
- pos: 16.5,78.5
- parent: 2
- - uid: 13321
- components:
- - type: Transform
- pos: 17.5,78.5
- parent: 2
- - uid: 13322
- components:
- - type: Transform
- pos: 60.5,-40.5
- parent: 2
- - uid: 13323
- components:
- - type: Transform
- pos: 59.5,-40.5
- parent: 2
- - uid: 13324
- components:
- - type: Transform
- pos: 58.5,-40.5
- parent: 2
- - uid: 13325
- components:
- - type: Transform
- pos: 57.5,-40.5
- parent: 2
- - uid: 13326
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,-40.5
- parent: 2
- - uid: 13327
- components:
- - type: Transform
- pos: -88.5,16.5
- parent: 2
- - uid: 13328
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.5,22.5
- parent: 2
- - uid: 13329
- components:
- - type: Transform
- pos: -89.5,23.5
- parent: 2
- - uid: 13330
- components:
- - type: Transform
- pos: -88.5,17.5
- parent: 2
- - uid: 13331
- components:
- - type: Transform
- pos: -88.5,18.5
- parent: 2
- - uid: 13332
- components:
- - type: Transform
- pos: -88.5,19.5
- parent: 2
- - uid: 13333
- components:
- - type: Transform
- pos: -88.5,20.5
- parent: 2
- - uid: 13334
- components:
- - type: Transform
- pos: -88.5,21.5
- parent: 2
- - uid: 13335
- components:
- - type: Transform
- pos: -88.5,22.5
- parent: 2
- - uid: 13336
- components:
- - type: Transform
- pos: -88.5,23.5
- parent: 2
- - uid: 13337
- components:
- - type: Transform
- pos: -90.5,23.5
- parent: 2
- - uid: 13338
- components:
- - type: Transform
- pos: -91.5,23.5
- parent: 2
- - uid: 13339
- components:
- - type: Transform
- pos: -92.5,23.5
- parent: 2
- - uid: 13340
- components:
- - type: Transform
- pos: -93.5,23.5
- parent: 2
- - uid: 13341
- components:
- - type: Transform
- pos: -94.5,23.5
- parent: 2
- - uid: 13342
- components:
- - type: Transform
- pos: -95.5,23.5
- parent: 2
- - uid: 13343
- components:
- - type: Transform
- pos: -96.5,23.5
- parent: 2
- - uid: 13344
- components:
- - type: Transform
- pos: -97.5,23.5
- parent: 2
- - uid: 13345
- components:
- - type: Transform
- pos: -98.5,23.5
- parent: 2
- - uid: 13346
- components:
- - type: Transform
- pos: -99.5,23.5
- parent: 2
- - uid: 13347
- components:
- - type: Transform
- pos: -100.5,23.5
- parent: 2
- - uid: 13348
- components:
- - type: Transform
- pos: -101.5,23.5
- parent: 2
- - uid: 13349
- components:
- - type: Transform
- pos: -102.5,23.5
- parent: 2
- - uid: 13350
- components:
- - type: Transform
- pos: -103.5,23.5
- parent: 2
- - uid: 13351
- components:
- - type: Transform
- pos: -104.5,23.5
- parent: 2
- - uid: 13352
- components:
- - type: Transform
- pos: -105.5,23.5
- parent: 2
- - uid: 13353
- components:
- - type: Transform
- pos: -106.5,23.5
- parent: 2
- - uid: 13354
- components:
- - type: Transform
- pos: -107.5,23.5
- parent: 2
- - uid: 13355
- components:
- - type: Transform
- pos: -108.5,23.5
- parent: 2
- - uid: 13356
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,22.5
- parent: 2
- - uid: 13357
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,22.5
- parent: 2
- - uid: 13358
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,23.5
- parent: 2
- - uid: 13359
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,25.5
- parent: 2
- - uid: 13360
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,24.5
- parent: 2
- - uid: 13361
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -79.5,0.5
- parent: 2
- - uid: 13362
- components:
- - type: Transform
- pos: 5.5,44.5
- parent: 2
- - uid: 13363
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-12.5
- parent: 2
- - uid: 13364
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-13.5
- parent: 2
- - uid: 13365
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-13.5
- parent: 2
- - uid: 13366
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-12.5
- parent: 2
- - uid: 13367
- components:
- - type: Transform
- pos: 77.5,4.5
- parent: 2
- - uid: 13368
- components:
- - type: Transform
- pos: 77.5,3.5
- parent: 2
- - uid: 13369
- components:
- - type: Transform
- pos: 78.5,4.5
- parent: 2
- - uid: 13370
- components:
- - type: Transform
- pos: 78.5,3.5
- parent: 2
- - uid: 13371
- components:
- - type: Transform
- pos: 8.5,-84.5
- parent: 2
- - uid: 13372
- components:
- - type: Transform
- pos: 9.5,-84.5
- parent: 2
- - uid: 13373
- components:
- - type: Transform
- pos: 10.5,-84.5
- parent: 2
- - uid: 13374
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-76.5
- parent: 2
- - uid: 13375
- components:
- - type: Transform
- pos: -6.5,30.5
- parent: 2
- - uid: 18303
- components:
- - type: Transform
- pos: -24.5,26.5
- parent: 2
-- proto: Chair
- entities:
- - uid: 13376
- components:
- - type: Transform
- pos: 57.5,-14.5
- parent: 2
- - uid: 13377
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-25.5
- parent: 2
- - uid: 13378
- components:
- - type: Transform
- pos: 60.5,-15.5
- parent: 2
- - uid: 13379
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,89.5
- parent: 2
- - uid: 13380
- components:
- - type: Transform
- pos: -31.5,69.5
- parent: 2
- - uid: 13381
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,66.5
- parent: 2
- - uid: 13382
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,81.5
- parent: 2
- - uid: 13383
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,81.5
- parent: 2
- - uid: 13384
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,91.5
- parent: 2
- - uid: 13385
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,80.5
- parent: 2
- - uid: 13386
- components:
- - type: Transform
- pos: 58.5,-14.5
- parent: 2
- - uid: 13387
- components:
- - type: Transform
- pos: 59.5,-14.5
- parent: 2
- - uid: 13388
- components:
- - type: Transform
- pos: 60.5,-14.5
- parent: 2
- - uid: 13389
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-27.5
- parent: 2
- - uid: 13390
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-28.5
- parent: 2
- - uid: 13391
- components:
- - type: Transform
- pos: 58.5,-14.5
- parent: 2
- - uid: 13392
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-6.5
- parent: 2
- - uid: 13393
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-73.5
- parent: 2
- - uid: 13394
- components:
- - type: Transform
- pos: -4.5,-67.5
- parent: 2
- - uid: 13395
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,7.5
- parent: 2
- - uid: 13396
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-27.5
- parent: 2
- - uid: 13397
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 88.5,5.5
- parent: 2
- - uid: 13398
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,80.5
- parent: 2
- - uid: 13399
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,3.5
- parent: 2
- - uid: 13400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,80.5
- parent: 2
- - uid: 13401
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-42.5
- parent: 2
- - uid: 13402
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,81.5
- parent: 2
- - uid: 13403
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-28.5
- parent: 2
- - uid: 13404
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-67.5
- parent: 2
- - uid: 13405
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 87.5,7.5
- parent: 2
- - uid: 13406
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-28.5
- parent: 2
- - uid: 13407
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,81.5
- parent: 2
- - uid: 13408
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-15.5
- parent: 2
- - uid: 13409
- components:
- - type: Transform
- pos: -22.5,-38.5
- parent: 2
- - uid: 13410
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,5.5
- parent: 2
- - uid: 13411
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,19.5
- parent: 2
- - uid: 13412
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.5,-0.5
- parent: 2
- - uid: 13413
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,89.5
- parent: 2
- - uid: 13414
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,17.5
- parent: 2
- - uid: 13415
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,27.5
- parent: 2
- - uid: 13416
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,23.5
- parent: 2
- - uid: 13417
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,23.5
- parent: 2
- - uid: 13418
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,28.5
- parent: 2
- - uid: 13419
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,28.5
- parent: 2
- - uid: 13420
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,23.5
- parent: 2
- - uid: 13421
- components:
- - type: Transform
- pos: -2.5,-67.5
- parent: 2
- - uid: 13422
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-66.5
- parent: 2
- - uid: 13423
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,80.5
- parent: 2
- - uid: 13424
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-40.5
- parent: 2
- - uid: 13425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-71.5
- parent: 2
- - uid: 13426
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,47.5
- parent: 2
- - uid: 13427
- components:
- - type: Transform
- pos: -23.5,-38.5
- parent: 2
- - uid: 13428
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-45.5
- parent: 2
- - uid: 13429
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-4.5
- parent: 2
- - uid: 13430
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-68.5
- parent: 2
- - uid: 13431
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,28.5
- parent: 2
- - uid: 13432
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-7.5
- parent: 2
- - uid: 13433
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,4.5
- parent: 2
- - uid: 13434
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-65.5
- parent: 2
- - uid: 13435
- components:
- - type: Transform
- pos: -56.5,13.5
- parent: 2
- - uid: 13436
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-6.5
- parent: 2
- - uid: 13437
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-65.5
- parent: 2
- - uid: 13438
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,79.5
- parent: 2
- - uid: 13439
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-13.5
- parent: 2
- - uid: 13440
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,89.5
- parent: 2
- - uid: 13441
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,88.5
- parent: 2
- - uid: 13442
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-66.5
- parent: 2
- - uid: 13443
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-28.5
- parent: 2
- - uid: 13444
- components:
- - type: Transform
- pos: -55.5,13.5
- parent: 2
- - uid: 13445
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,11.5
- parent: 2
- - uid: 13446
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,11.5
- parent: 2
- - uid: 13447
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,11.5
- parent: 2
- - uid: 13448
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-40.5
- parent: 2
- - uid: 13449
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,23.5
- parent: 2
- - uid: 13450
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,23.5
- parent: 2
- - uid: 13451
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,23.5
- parent: 2
- - uid: 13452
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,11.5
- parent: 2
- - uid: 13453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,14.5
- parent: 2
- - uid: 13454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,-23.5
- parent: 2
- - uid: 13455
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-24.5
- parent: 2
- - uid: 13456
- components:
- - type: Transform
- pos: 34.5,-43.5
- parent: 2
- - uid: 13457
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-2.5
- parent: 2
- - uid: 13458
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,1.5
- parent: 2
- - uid: 13459
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-71.5
- parent: 2
- - uid: 13460
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,62.5
- parent: 2
- - uid: 13461
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,64.5
- parent: 2
- - uid: 13462
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-72.5
- parent: 2
- - uid: 13463
- components:
- - type: Transform
- pos: -3.5,-67.5
- parent: 2
- - uid: 13464
- components:
- - type: Transform
- pos: -52.5,13.5
- parent: 2
- - uid: 13465
- components:
- - type: Transform
- pos: -53.5,13.5
- parent: 2
- - uid: 13466
- components:
- - type: Transform
- pos: -11.5,-22.5
- parent: 2
- - uid: 13467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-4.5
- parent: 2
- - uid: 13468
- components:
- - type: Transform
- pos: -51.5,13.5
- parent: 2
- - uid: 13469
- components:
- - type: Transform
- pos: -14.5,-22.5
- parent: 2
- - uid: 13470
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,30.5
- parent: 2
- - uid: 13471
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-72.5
- parent: 2
- - uid: 13472
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-79.5
- parent: 2
- - uid: 13473
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,87.5
- parent: 2
- - uid: 13474
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,91.5
- parent: 2
- - uid: 13475
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,89.5
- parent: 2
- - uid: 13476
- components:
- - type: Transform
- pos: 75.5,28.5
- parent: 2
- - uid: 13477
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-3.5
- parent: 2
- - uid: 13478
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-3.5
- parent: 2
- - uid: 13479
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-70.5
- parent: 2
- - uid: 13480
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,11.5
- parent: 2
- - uid: 13481
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-80.5
- parent: 2
- - uid: 13482
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,11.5
- parent: 2
- - uid: 13483
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-16.5
- parent: 2
- - uid: 13484
- components:
- - type: Transform
- pos: 13.5,-22.5
- parent: 2
- - uid: 13485
- components:
- - type: Transform
- pos: 25.5,1.5
- parent: 2
- - uid: 13486
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-48.5
- parent: 2
- - uid: 13487
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-45.5
- parent: 2
- - uid: 13488
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,0.5
- parent: 2
- - uid: 13489
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-66.5
- parent: 2
- - uid: 13490
- components:
- - type: Transform
- pos: 74.5,-38.5
- parent: 2
- - uid: 13491
- components:
- - type: Transform
- pos: 26.5,1.5
- parent: 2
- - uid: 13492
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-7.5
- parent: 2
- - uid: 13493
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,2.5
- parent: 2
- - uid: 13494
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-4.5
- parent: 2
- - uid: 13495
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-5.5
- parent: 2
- - uid: 13496
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-7.5
- parent: 2
- - uid: 13497
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-0.5
- parent: 2
- - uid: 13498
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-44.5
- parent: 2
- - uid: 13499
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-72.5
- parent: 2
- - uid: 13500
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,0.5
- parent: 2
- - uid: 13501
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-2.5
- parent: 2
- - uid: 13502
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-0.5
- parent: 2
- - uid: 13503
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,46.5
- parent: 2
- - uid: 13504
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,46.5
- parent: 2
- - uid: 13505
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-6.5
- parent: 2
- - uid: 13506
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-6.5
- parent: 2
- - uid: 13507
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,46.5
- parent: 2
- - uid: 13508
- components:
- - type: Transform
- pos: -74.5,-33.5
- parent: 2
- - uid: 13509
- components:
- - type: Transform
- pos: 60.5,-14.5
- parent: 2
- - uid: 13510
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,27.5
- parent: 2
- - uid: 13511
- components:
- - type: Transform
- pos: 7.5,49.5
- parent: 2
- - uid: 13512
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-7.5
- parent: 2
- - uid: 13513
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-65.5
- parent: 2
- - uid: 13514
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,12.5
- parent: 2
- - uid: 13515
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-15.5
- parent: 2
- - uid: 13516
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-14.5
- parent: 2
- - uid: 13517
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-72.5
- parent: 2
- - uid: 13518
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-65.5
- parent: 2
- - uid: 13519
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,15.5
- parent: 2
- - uid: 13520
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-73.5
- parent: 2
- - uid: 13521
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-69.5
- parent: 2
- - uid: 13522
- components:
- - type: Transform
- pos: 29.5,2.5
- parent: 2
- - uid: 13523
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,91.5
- parent: 2
- - uid: 13524
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,63.5
- parent: 2
- - uid: 13525
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-65.5
- parent: 2
- - uid: 13526
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-4.5
- parent: 2
- - uid: 13527
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,63.5
- parent: 2
- - uid: 13528
- components:
- - type: Transform
- pos: -5.5,-67.5
- parent: 2
- - uid: 13529
- components:
- - type: Transform
- pos: -54.5,13.5
- parent: 2
- - uid: 13530
- components:
- - type: Transform
- pos: 10.5,-22.5
- parent: 2
- - uid: 13531
- components:
- - type: Transform
- pos: 6.5,-22.5
- parent: 2
- - uid: 13532
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.5,-1.5
- parent: 2
- - uid: 13533
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,77.5
- parent: 2
- - uid: 13534
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,4.5
- parent: 2
- - uid: 13535
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-49.5
- parent: 2
- - uid: 13536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,9.5
- parent: 2
- - uid: 13537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-67.5
- parent: 2
- - uid: 13538
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-26.5
- parent: 2
- - uid: 13539
- components:
- - type: Transform
- pos: -39.5,-8.5
- parent: 2
- - uid: 13540
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-45.5
- parent: 2
- - uid: 13541
- components:
- - type: Transform
- pos: -4.5,-22.5
- parent: 2
- - uid: 13542
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,78.5
- parent: 2
- - uid: 13543
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,1.5
- parent: 2
- - uid: 13544
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,23.5
- parent: 2
- - uid: 13545
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,61.5
- parent: 2
- - uid: 13546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,8.5
- parent: 2
- - uid: 13547
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-44.5
- parent: 2
- - uid: 13548
- components:
- - type: Transform
- pos: 3.5,-22.5
- parent: 2
- - uid: 13549
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-74.5
- parent: 2
- - uid: 13550
- components:
- - type: Transform
- pos: 10.5,-76.5
- parent: 2
- - uid: 13551
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-71.5
- parent: 2
- - uid: 13552
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-71.5
- parent: 2
- - uid: 13553
- components:
- - type: Transform
- pos: -5.5,-63.5
- parent: 2
- - uid: 13554
- components:
- - type: Transform
- pos: -6.5,-63.5
- parent: 2
- - uid: 13555
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-76.5
- parent: 2
- - uid: 13556
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-67.5
- parent: 2
- - uid: 13557
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-68.5
- parent: 2
- - uid: 13558
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-69.5
- parent: 2
- - uid: 13559
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-71.5
- parent: 2
- - uid: 13560
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-70.5
- parent: 2
- - uid: 13561
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-69.5
- parent: 2
- - uid: 13562
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-81.5
- parent: 2
- - uid: 13563
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-81.5
- parent: 2
- - uid: 13564
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-81.5
- parent: 2
- - uid: 13565
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-26.5
- parent: 2
- - uid: 13566
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-77.5
- parent: 2
- - uid: 13567
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-77.5
- parent: 2
- - uid: 13568
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-77.5
- parent: 2
- - uid: 13569
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-77.5
- parent: 2
- - uid: 13570
- components:
- - type: Transform
- pos: 83.5,0.5
- parent: 2
- - uid: 13571
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 85.5,-1.5
- parent: 2
- - uid: 13572
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,25.5
- parent: 2
- - uid: 13573
- components:
- - type: Transform
- pos: 30.5,-44.5
- parent: 2
- - uid: 13574
- components:
- - type: Transform
- pos: 32.5,-44.5
- parent: 2
- - uid: 13575
- components:
- - type: Transform
- pos: 33.5,-44.5
- parent: 2
- - uid: 13576
- components:
- - type: Transform
- pos: 31.5,-44.5
- parent: 2
- - uid: 13577
- components:
- - type: Transform
- pos: 34.5,-44.5
- parent: 2
- - uid: 13578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,18.5
- parent: 2
- - uid: 13579
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 86.5,-0.5
- parent: 2
- - uid: 13580
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,19.5
- parent: 2
- - uid: 13581
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,18.5
- parent: 2
- - uid: 13582
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,20.5
- parent: 2
- - uid: 13583
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,20.5
- parent: 2
- - uid: 13584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,19.5
- parent: 2
- - uid: 13585
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,18.5
- parent: 2
- - uid: 13586
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 89.5,12.5
- parent: 2
- - uid: 13587
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 88.5,12.5
- parent: 2
- - uid: 13588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 87.5,12.5
- parent: 2
- - uid: 13589
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,12.5
- parent: 2
- - uid: 13590
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 90.5,12.5
- parent: 2
- - uid: 13591
- components:
- - type: Transform
- pos: 84.5,0.5
- parent: 2
- - uid: 13592
- components:
- - type: Transform
- pos: 85.5,0.5
- parent: 2
- - uid: 13593
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 83.5,-1.5
- parent: 2
- - uid: 13594
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,19.5
- parent: 2
- - uid: 13595
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,18.5
- parent: 2
- - uid: 13596
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,17.5
- parent: 2
- - uid: 13597
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 83.5,9.5
- parent: 2
- - uid: 13598
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 82.5,9.5
- parent: 2
- - uid: 13599
- components:
- - type: Transform
- pos: 58.5,-11.5
- parent: 2
- - uid: 13600
- components:
- - type: Transform
- pos: 60.5,-11.5
- parent: 2
- - uid: 13601
- components:
- - type: Transform
- pos: -12.5,59.5
- parent: 2
- - uid: 13602
- components:
- - type: Transform
- pos: -10.5,59.5
- parent: 2
- - uid: 13603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,66.5
- parent: 2
- - uid: 13604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,66.5
- parent: 2
- - uid: 13605
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,89.5
- parent: 2
- - uid: 13606
- components:
- - type: Transform
- pos: 7.5,85.5
- parent: 2
- - uid: 13607
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,83.5
- parent: 2
- - uid: 13608
- components:
- - type: Transform
- pos: -11.5,59.5
- parent: 2
- - uid: 13609
- components:
- - type: Transform
- pos: -10.5,59.5
- parent: 2
- - uid: 13610
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,66.5
- parent: 2
- - uid: 13611
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,91.5
- parent: 2
- - uid: 13612
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,67.5
- parent: 2
- - uid: 13613
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-24.5
- parent: 2
- - uid: 13614
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-24.5
- parent: 2
- - uid: 13615
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-24.5
- parent: 2
- - uid: 13616
- components:
- - type: Transform
- pos: 57.5,-12.5
- parent: 2
- - uid: 13617
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-28.5
- parent: 2
- - uid: 13618
- components:
- - type: Transform
- pos: 61.5,-12.5
- parent: 2
- - uid: 13619
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-28.5
- parent: 2
- - uid: 13620
- components:
- - type: Transform
- pos: 59.5,-15.5
- parent: 2
- - uid: 13621
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,61.5
- parent: 2
- - uid: 13622
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-25.5
- parent: 2
- - uid: 13623
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-27.5
- parent: 2
- - uid: 13624
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-25.5
- parent: 2
- - uid: 13625
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-27.5
- parent: 2
- - uid: 13626
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,61.5
- parent: 2
- - uid: 13627
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,64.5
- parent: 2
- - uid: 13628
- components:
- - type: Transform
- pos: 60.5,-15.5
- parent: 2
- - uid: 13629
- components:
- - type: Transform
- pos: 59.5,-11.5
- parent: 2
- - uid: 13630
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-27.5
- parent: 2
- - uid: 13631
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-27.5
- parent: 2
- - uid: 13632
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-25.5
- parent: 2
- - uid: 13633
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-25.5
- parent: 2
- - uid: 13634
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-25.5
- parent: 2
- - uid: 13635
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-25.5
- parent: 2
- - uid: 13636
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-24.5
- parent: 2
- - uid: 13637
- components:
- - type: Transform
- pos: 58.5,-15.5
- parent: 2
- - uid: 13638
- components:
- - type: Transform
- pos: 59.5,-12.5
- parent: 2
- - uid: 13639
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-25.5
- parent: 2
- - uid: 13640
- components:
- - type: Transform
- pos: 59.5,-12.5
- parent: 2
- - uid: 13641
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-26.5
- parent: 2
- - uid: 13642
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-26.5
- parent: 2
- - uid: 13643
- components:
- - type: Transform
- pos: 58.5,-12.5
- parent: 2
- - uid: 13644
- components:
- - type: Transform
- pos: 61.5,-14.5
- parent: 2
- - uid: 13645
- components:
- - type: Transform
- pos: 60.5,-13.5
- parent: 2
- - uid: 13646
- components:
- - type: Transform
- pos: 61.5,-14.5
- parent: 2
- - uid: 13647
- components:
- - type: Transform
- pos: 57.5,-13.5
- parent: 2
- - uid: 13648
- components:
- - type: Transform
- pos: 59.5,-12.5
- parent: 2
- - uid: 13649
- components:
- - type: Transform
- pos: 61.5,-13.5
- parent: 2
- - uid: 13650
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-26.5
- parent: 2
- - uid: 13651
- components:
- - type: Transform
- pos: 58.5,-13.5
- parent: 2
- - uid: 13652
- components:
- - type: Transform
- pos: 59.5,-13.5
- parent: 2
- - uid: 13653
- components:
- - type: Transform
- pos: 60.5,-12.5
- parent: 2
- - uid: 13654
- components:
- - type: Transform
- pos: 59.5,-12.5
- parent: 2
- - uid: 13655
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,63.5
- parent: 2
- - uid: 13656
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-26.5
- parent: 2
- - uid: 13657
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,64.5
- parent: 2
- - uid: 13658
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,62.5
- parent: 2
- - uid: 13659
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,62.5
- parent: 2
-- proto: ChairBrass
- entities:
- - uid: 13660
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-76.5
- parent: 2
-- proto: ChairCarp
- entities:
- - uid: 13661
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,31.5
- parent: 2
- - uid: 13662
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,31.5
- parent: 2
- - uid: 13663
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,31.5
- parent: 2
- - uid: 13664
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,31.5
- parent: 2
- - uid: 13665
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,31.5
- parent: 2
- - uid: 13666
- components:
- - type: Transform
- pos: 20.5,63.5
- parent: 2
-- proto: ChairFolding
- entities:
- - uid: 13667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,-1.5
- parent: 2
- - uid: 13668
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,28.5
- parent: 2
- - uid: 13669
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,1.5
- parent: 2
- - uid: 13670
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-25.5
- parent: 2
- - uid: 13671
- components:
- - type: Transform
- pos: -65.5,-23.5
- parent: 2
- - uid: 13672
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,-17.5
- parent: 2
- - uid: 13673
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-50.5
- parent: 2
- - uid: 13674
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-16.5
- parent: 2
- - uid: 13675
- components:
- - type: Transform
- pos: 87.5,-16.5
- parent: 2
- - uid: 13676
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,-17.5
- parent: 2
- - uid: 13677
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,58.5
- parent: 2
- - uid: 13678
- components:
- - type: Transform
- pos: -29.5,-46.5
- parent: 2
- - uid: 13679
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-0.5
- parent: 2
- - uid: 13680
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-1.5
- parent: 2
- - uid: 13681
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,57.5
- parent: 2
- - uid: 13682
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-10.5
- parent: 2
-- proto: ChairGreyscale
- entities:
- - uid: 13683
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,37.5
- parent: 2
- - uid: 13684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,34.5
- parent: 2
- - uid: 13685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,32.5
- parent: 2
- - uid: 13686
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,34.5
- parent: 2
- - uid: 13687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,37.5
- parent: 2
- - uid: 13688
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,35.5
- parent: 2
- - uid: 13689
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,31.5
- parent: 2
- - uid: 13690
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,38.5
- parent: 2
- - uid: 13691
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,32.5
- parent: 2
- - uid: 13692
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,38.5
- parent: 2
- - uid: 13693
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,35.5
- parent: 2
- - uid: 13694
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,31.5
- parent: 2
- - uid: 13695
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-10.5
- parent: 2
-- proto: ChairOfficeDark
- entities:
- - uid: 13696
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.399817,0.6220567
- parent: 2
- - uid: 13697
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-1.5
- parent: 2
- - uid: 13698
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,9.5
- parent: 2
- - uid: 13699
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 91.5,9.5
- parent: 2
- - uid: 13700
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-4.5
- parent: 2
- - uid: 13701
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-2.5
- parent: 2
- - uid: 13702
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,22.5
- parent: 2
- - uid: 13703
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-12.5
- parent: 2
- - uid: 13704
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-13.5
- parent: 2
- - uid: 13705
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,15.5
- parent: 2
- - uid: 13706
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,8.5
- parent: 2
- - uid: 13707
- components:
- - type: Transform
- pos: -31.5,-11.5
- parent: 2
- - uid: 13708
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-41.5
- parent: 2
- - uid: 13709
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-3.5
- parent: 2
- - uid: 13710
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,27.5
- parent: 2
- - uid: 13711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-9.5
- parent: 2
- - uid: 13712
- components:
- - type: Transform
- pos: -46.5,9.5
- parent: 2
- - uid: 13713
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-14.5
- parent: 2
- - uid: 13714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,2.5
- parent: 2
- - uid: 13715
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-12.5
- parent: 2
- - uid: 13716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,19.5
- parent: 2
- - uid: 13717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-13.5
- parent: 2
- - uid: 13718
- components:
- - type: Transform
- pos: -32.5,-11.5
- parent: 2
- - uid: 13719
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-14.5
- parent: 2
- - uid: 13720
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,9.5
- parent: 2
- - uid: 13721
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-2.5
- parent: 2
- - uid: 13722
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,4.5
- parent: 2
- - uid: 13723
- components:
- - type: Transform
- pos: 51.5,-2.5
- parent: 2
- - uid: 13724
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,-4.5
- parent: 2
- - uid: 13725
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,86.5
- parent: 2
- - uid: 13726
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-4.5
- parent: 2
- - uid: 13727
- components:
- - type: Transform
- pos: 6.5,63.5
- parent: 2
- - uid: 13728
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,34.5
- parent: 2
- - uid: 13729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-46.5
- parent: 2
- - uid: 13730
- components:
- - type: Transform
- pos: 11.5,-51.5
- parent: 2
- - uid: 13731
- components:
- - type: Transform
- pos: 50.5,-2.5
- parent: 2
- - uid: 13732
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,1.5
- parent: 2
- - uid: 13733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-75.5
- parent: 2
- - uid: 13734
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-29.5
- parent: 2
- - uid: 13735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,15.5
- parent: 2
- - uid: 13736
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-60.5
- parent: 2
- - uid: 13737
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,17.5
- parent: 2
- - uid: 13738
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,17.5
- parent: 2
- - uid: 13739
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-68.5
- parent: 2
- - uid: 13740
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-5.5
- parent: 2
- - uid: 13741
- components:
- - type: Transform
- pos: -32.5,-59.5
- parent: 2
- - uid: 13742
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-61.5
- parent: 2
- - uid: 13743
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,38.5
- parent: 2
- - uid: 13744
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,17.5
- parent: 2
- - uid: 13745
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,17.5
- parent: 2
- - uid: 13746
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-59.5
- parent: 2
- - uid: 13747
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,43.5
- parent: 2
- - uid: 13748
- components:
- - type: Transform
- pos: -45.5,5.5
- parent: 2
- - uid: 13749
- components:
- - type: Transform
- pos: -46.5,0.5
- parent: 2
- - uid: 13750
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,19.5
- parent: 2
- - uid: 13751
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,18.5
- parent: 2
- - uid: 13752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,18.5
- parent: 2
- - uid: 13753
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,17.5
- parent: 2
- - uid: 13754
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,-54.5
- parent: 2
- - uid: 13755
- components:
- - type: Transform
- pos: 51.5,-52.5
- parent: 2
- - uid: 13756
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,10.5
- parent: 2
- - uid: 13757
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,15.5
- parent: 2
- - uid: 13758
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,36.5
- parent: 2
- - uid: 13759
- components:
- - type: Transform
- pos: 9.5,33.5
- parent: 2
- - uid: 13760
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-80.5
- parent: 2
- - uid: 13761
- components:
- - type: Transform
- pos: -14.5,-78.5
- parent: 2
- - uid: 13762
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,1.5
- parent: 2
- - uid: 13763
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-5.5
- parent: 2
- - uid: 13764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-0.5
- parent: 2
- - uid: 13765
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,21.5
- parent: 2
- - uid: 13766
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-15.5
- parent: 2
- - uid: 13767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,17.5
- parent: 2
- - uid: 13768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,9.5
- parent: 2
- - uid: 13769
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,20.5
- parent: 2
- - uid: 13770
- components:
- - type: Transform
- pos: -47.5,18.5
- parent: 2
- - uid: 13771
- components:
- - type: Transform
- pos: 50.5,-52.5
- parent: 2
- - uid: 13772
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-52.5
- parent: 2
- - uid: 13773
- components:
- - type: Transform
- pos: -13.5,-78.5
- parent: 2
- - uid: 13774
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,62.5
- parent: 2
- - uid: 13775
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-60.5
- parent: 2
- - uid: 13776
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-50.5
- parent: 2
- - uid: 13777
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,37.5
- parent: 2
- - uid: 13778
- components:
- - type: Transform
- pos: -31.5,-59.5
- parent: 2
- - uid: 13779
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-61.5
- parent: 2
- - uid: 13780
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-60.5
- parent: 2
- - uid: 13781
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-26.5
- parent: 2
- - uid: 13782
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-23.5
- parent: 2
- - uid: 13783
- components:
- - type: Transform
- pos: 12.5,-31.5
- parent: 2
- - uid: 13784
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-0.5
- parent: 2
- - uid: 13785
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-0.5
- parent: 2
- - uid: 13786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-2.5
- parent: 2
- - uid: 13787
- components:
- - type: Transform
- pos: 36.5,8.5
- parent: 2
- - uid: 13788
- components:
- - type: Transform
- pos: 44.5,-24.5
- parent: 2
- - uid: 13789
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,20.5
- parent: 2
- - uid: 13790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-40.5
- parent: 2
- - uid: 13791
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,15.5
- parent: 2
- - uid: 13792
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,15.5
- parent: 2
- - uid: 13793
- components:
- - type: Transform
- pos: -39.5,-68.5
- parent: 2
- - uid: 13794
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,37.5
- parent: 2
- - uid: 13795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,19.5
- parent: 2
- - uid: 13796
- components:
- - type: Transform
- pos: 48.5,-24.5
- parent: 2
- - uid: 13797
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,35.5
- parent: 2
- - uid: 13798
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-62.5
- parent: 2
- - uid: 13799
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,38.5
- parent: 2
- - uid: 13800
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,62.5
- parent: 2
- - uid: 13801
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,27.5
- parent: 2
- - uid: 13802
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,60.5
- parent: 2
- - uid: 13803
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-25.5
- parent: 2
- - uid: 13804
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-49.5
- parent: 2
- - uid: 13805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-37.5
- parent: 2
- - uid: 13806
- components:
- - type: Transform
- pos: -11.47343,-0.62564135
- parent: 2
- - uid: 13807
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.399817,0.6220567
- parent: 2
- - uid: 13808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.524817,0.6220567
- parent: 2
- - uid: 13809
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.53509253,61.69526
- parent: 2
-- proto: ChairOfficeLight
- entities:
- - uid: 13810
- components:
- - type: Transform
- pos: 20.5,-27.5
- parent: 2
- - uid: 13811
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,0.5
- parent: 2
- - uid: 13812
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,29.5
- parent: 2
- - uid: 13813
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-3.5
- parent: 2
- - uid: 13814
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-59.5
- parent: 2
- - uid: 13815
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-30.5
- parent: 2
- - uid: 13816
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-30.5
- parent: 2
- - uid: 13817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-26.5
- parent: 2
- - uid: 13818
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-56.5
- parent: 2
- - uid: 13819
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-47.5
- parent: 2
- - uid: 13820
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,7.5
- parent: 2
- - uid: 13821
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-66.5
- parent: 2
- - uid: 13822
- components:
- - type: Transform
- pos: 22.5,-45.5
- parent: 2
- - uid: 13823
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-68.5
- parent: 2
- - uid: 13824
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-42.5
- parent: 2
- - uid: 13825
- components:
- - type: Transform
- pos: -17.5,-40.5
- parent: 2
- - uid: 13826
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-29.5
- parent: 2
- - uid: 13827
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-47.5
- parent: 2
- - uid: 13828
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,31.5
- parent: 2
- - uid: 13829
- components:
- - type: Transform
- pos: 3.5,-15.5
- parent: 2
- - uid: 13830
- components:
- - type: Transform
- pos: -18.5,-40.5
- parent: 2
- - uid: 13831
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,8.5
- parent: 2
- - uid: 13832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 80.5,-19.5
- parent: 2
- - uid: 13833
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-60.5
- parent: 2
- - uid: 13834
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,8.5
- parent: 2
- - uid: 13835
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-29.5
- parent: 2
- - uid: 13836
- components:
- - type: Transform
- pos: -24.5,50.5
- parent: 2
- - uid: 13837
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,52.5
- parent: 2
- - uid: 13838
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-49.5
- parent: 2
- - uid: 13839
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-34.5
- parent: 2
- - uid: 13840
- components:
- - type: Transform
- pos: 23.5,-45.5
- parent: 2
- - uid: 13841
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-34.5
- parent: 2
- - uid: 13842
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-44.5
- parent: 2
- - uid: 13843
- components:
- - type: Transform
- pos: 41.5,-73.5
- parent: 2
- - uid: 13844
- components:
- - type: Transform
- pos: 35.5,-40.5
- parent: 2
- - uid: 13845
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-40.5
- parent: 2
- - uid: 13846
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-38.5
- parent: 2
- - uid: 13847
- components:
- - type: Transform
- pos: 39.5,-73.5
- parent: 2
- - uid: 13848
- components:
- - type: Transform
- pos: 59.5,28.5
- parent: 2
- - uid: 13849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-44.5
- parent: 2
- - uid: 13850
- components:
- - type: Transform
- pos: -28.5,46.5
- parent: 2
- - uid: 13851
- components:
- - type: Transform
- pos: -26.5,46.5
- parent: 2
-- proto: ChairPilotSeat
- entities:
- - uid: 38746
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,3.5
- parent: 38714
- - uid: 38747
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 38714
- - uid: 38748
- components:
- - type: Transform
- pos: 2.5,1.5
- parent: 38714
- - uid: 38749
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 38714
- - uid: 38750
- components:
- - type: Transform
- pos: -0.5,1.5
- parent: 38714
-- proto: ChairWood
- entities:
- - uid: 13852
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.8492327,53.653503
- parent: 2
- - uid: 13853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.8965049,45.78206
- parent: 2
- - uid: 13854
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-34.5
- parent: 2
- - uid: 13855
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-39.5
- parent: 2
- - uid: 13856
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-41.5
- parent: 2
- - uid: 13857
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-45.5
- parent: 2
- - uid: 13858
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-40.5
- parent: 2
- - uid: 13859
- components:
- - type: Transform
- pos: -69.5,-43.5
- parent: 2
- - uid: 13860
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-39.5
- parent: 2
- - uid: 13861
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-45.5
- parent: 2
- - uid: 13862
- components:
- - type: Transform
- pos: -68.5,-43.5
- parent: 2
- - uid: 13863
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-41.5
- parent: 2
- - uid: 13864
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-35.5
- parent: 2
- - uid: 13865
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,44.5
- parent: 2
- - uid: 13866
- components:
- - type: Transform
- pos: -18.5,-70.5
- parent: 2
- - uid: 13867
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-36.5
- parent: 2
- - uid: 13868
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-36.5
- parent: 2
- - uid: 13869
- components:
- - type: Transform
- pos: -15.5,-68.5
- parent: 2
- - uid: 13870
- components:
- - type: Transform
- pos: -17.5,-68.5
- parent: 2
- - uid: 13871
- components:
- - type: Transform
- pos: -18.5,-68.5
- parent: 2
- - uid: 13872
- components:
- - type: Transform
- pos: -20.5,-69.5
- parent: 2
- - uid: 13873
- components:
- - type: Transform
- pos: -19.5,-69.5
- parent: 2
- - uid: 13874
- components:
- - type: Transform
- pos: -19.5,-68.5
- parent: 2
- - uid: 13875
- components:
- - type: Transform
- pos: -20.5,-68.5
- parent: 2
- - uid: 13876
- components:
- - type: Transform
- pos: -18.5,-69.5
- parent: 2
- - uid: 13877
- components:
- - type: Transform
- pos: -17.5,-69.5
- parent: 2
- - uid: 13878
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-52.5
- parent: 2
- - uid: 13879
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-53.5
- parent: 2
- - uid: 13880
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,44.5
- parent: 2
- - uid: 13881
- components:
- - type: Transform
- pos: -12.5,-68.5
- parent: 2
- - uid: 13882
- components:
- - type: Transform
- pos: -13.5,-70.5
- parent: 2
- - uid: 13883
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.563258,46.649433
- parent: 2
- - uid: 13884
- components:
- - type: Transform
- pos: -19.5,-70.5
- parent: 2
- - uid: 13885
- components:
- - type: Transform
- pos: -13.5,-68.5
- parent: 2
- - uid: 13886
- components:
- - type: Transform
- pos: -14.5,-69.5
- parent: 2
- - uid: 13887
- components:
- - type: Transform
- pos: -70.5,-39.5
- parent: 2
- - uid: 13888
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-40.5
- parent: 2
- - uid: 13889
- components:
- - type: Transform
- pos: -3.4907331,42.184048
- parent: 2
- - uid: 13890
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.563247,36.74413
- parent: 2
- - uid: 13891
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-36.5
- parent: 2
- - uid: 13892
- components:
- - type: Transform
- pos: -71.5,-39.5
- parent: 2
- - uid: 13893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-7.5
- parent: 2
- - uid: 13894
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-8.5
- parent: 2
- - uid: 13895
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.485122,38.76386
- parent: 2
- - uid: 13896
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.500747,36.759758
- parent: 2
- - uid: 13897
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.500759,46.665062
- parent: 2
- - uid: 13898
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.453872,38.748238
- parent: 2
- - uid: 13899
- components:
- - type: Transform
- pos: -15.5,-69.5
- parent: 2
- - uid: 13900
- components:
- - type: Transform
- pos: -12.5,-69.5
- parent: 2
- - uid: 13901
- components:
- - type: Transform
- pos: -14.5,-70.5
- parent: 2
- - uid: 13902
- components:
- - type: Transform
- pos: -12.5,-70.5
- parent: 2
- - uid: 13903
- components:
- - type: Transform
- pos: -14.5,-68.5
- parent: 2
- - uid: 13904
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-51.5
- parent: 2
- - uid: 13905
- components:
- - type: Transform
- pos: -13.5,-69.5
- parent: 2
- - uid: 13906
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-7.5
- parent: 2
- - uid: 13907
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-8.5
- parent: 2
- - uid: 13908
- components:
- - type: Transform
- pos: -28.5,-7.5
- parent: 2
- - uid: 13909
- components:
- - type: Transform
- pos: -122.5,33.5
- parent: 2
- - uid: 13910
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -122.5,31.5
- parent: 2
- - uid: 13911
- components:
- - type: Transform
- pos: -20.5,-70.5
- parent: 2
- - uid: 13912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,27.5
- parent: 2
- - uid: 13913
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,28.5
- parent: 2
-- proto: CheapRollerBed
- entities:
- - uid: 13914
- components:
- - type: Transform
- pos: 2.5292196,-49.44199
- parent: 2
- - uid: 13915
- components:
- - type: Transform
- pos: 45.5,-30.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13916
- components:
- - type: Transform
- pos: 6.567247,-12.276767
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13917
- components:
- - type: Transform
- pos: 33.5,-41.5
- parent: 2
- - uid: 13918
- components:
- - type: Transform
- pos: 47.5,-30.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13919
- components:
- - type: Transform
- pos: 18.524715,-23.354324
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13920
- components:
- - type: Transform
- pos: 17.493465,-23.354118
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13921
- components:
- - type: Transform
- pos: 2.5268502,-40.29957
- parent: 2
- - type: Physics
- canCollide: False
-- proto: CheapRollerBedSpawnFolded
- entities:
- - uid: 13922
- components:
- - type: Transform
- pos: 24.247139,-26.420021
- parent: 2
- - uid: 13923
- components:
- - type: Transform
- pos: 24.262762,-27.091896
- parent: 2
-- proto: ChemDispenser
- entities:
- - uid: 13924
- components:
- - type: Transform
- pos: 3.5,-33.5
- parent: 2
- - type: ContainerContainer
- containers:
- ReagentDispenser-beaker: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- beakerSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 13925
- components:
- - type: Transform
- pos: 6.5,-29.5
- parent: 2
- - type: ContainerContainer
- containers:
- ReagentDispenser-beaker: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- beakerSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: ChemicalPayload
- entities:
- - uid: 13926
- components:
- - type: Transform
- pos: -6.654764,-46.34208
- parent: 2
- - uid: 13927
- components:
- - type: Transform
- pos: 2.7165446,-30.750381
- parent: 2
- - uid: 13928
- components:
- - type: Transform
- pos: 2.7165446,-30.750381
- parent: 2
- - uid: 13929
- components:
- - type: Transform
- pos: 2.7165446,-30.750381
- parent: 2
-- proto: ChemistryHotplate
- entities:
- - uid: 13930
- components:
- - type: Transform
- pos: -22.5,-14.5
- parent: 2
- - uid: 13931
- components:
- - type: Transform
- pos: 4.5,-33.5
- parent: 2
-- proto: ChemMaster
- entities:
- - uid: 13932
- components:
- - type: Transform
- pos: 4.5,-29.5
- parent: 2
- - type: ContainerContainer
- containers:
- ChemMaster-beaker: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- beakerSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- outputSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 13933
- components:
- - type: Transform
- pos: 3.5,-35.5
- parent: 2
- - type: ContainerContainer
- containers:
- ChemMaster-beaker: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- beakerSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- outputSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: ChessBoard
- entities:
- - uid: 13934
- components:
- - type: Transform
- pos: -31.521072,68.62613
- parent: 2
- - uid: 13935
- components:
- - type: Transform
- pos: -31.999136,-13.284749
- parent: 2
- - uid: 13936
- components:
- - type: Transform
- pos: 40.47708,-0.39684796
- parent: 2
- - uid: 13937
- components:
- - type: Transform
- pos: 40.47705,13.567584
- parent: 2
- - uid: 13938
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.540379,-77.35887
- parent: 2
- - uid: 13939
- components:
- - type: Transform
- pos: 63.66099,-25.833206
- parent: 2
-- proto: Cigar
- entities:
- - uid: 13940
- components:
- - type: Transform
- pos: 84.492966,-0.35883796
- parent: 2
- - uid: 13941
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.399334,28.555635
- parent: 2
- - uid: 13942
- components:
- - type: Transform
- pos: 53.546623,28.419834
- parent: 2
-- proto: CigarCase
- entities:
- - uid: 13943
- components:
- - type: Transform
- pos: 36.502167,-9.505364
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13944
- components:
- - type: Transform
- pos: -76.360794,-0.4243784
- parent: 2
-- proto: CigaretteSpent
- entities:
- - uid: 13945
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.221859,68.580894
- parent: 2
- - uid: 13946
- components:
- - type: Transform
- pos: -18.792145,56.784576
- parent: 2
- - uid: 13947
- components:
- - type: Transform
- pos: -4.220675,56.874905
- parent: 2
- - uid: 13948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.749214,14.934522
- parent: 2
- - uid: 13949
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.606853,-28.286798
- parent: 2
- - uid: 13950
- components:
- - type: Transform
- pos: 25.112226,-16.579811
- parent: 2
- - uid: 13951
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.874308,-30.625107
- parent: 2
- - uid: 13952
- components:
- - type: Transform
- pos: 24.793365,17.311203
- parent: 2
- - uid: 13953
- components:
- - type: Transform
- pos: 9.577554,-11.391624
- parent: 2
- - uid: 13954
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.25211835,-45.352993
- parent: 2
- - uid: 13955
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.0373211,-57.28495
- parent: 2
- - uid: 13956
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.953518,0.0045550466
- parent: 2
- - uid: 13957
- components:
- - type: Transform
- pos: -46.327656,-33.127026
- parent: 2
- - uid: 13958
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.800909,10.6530485
- parent: 2
-- proto: CigaretteSyndicate
- entities:
- - uid: 1513
- components:
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1514
- components:
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1515
- components:
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CigarGold
- entities:
- - uid: 13959
- components:
- - type: Transform
- pos: -15.43277,10.848992
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13960
- components:
- - type: Transform
- pos: -15.55777,10.942742
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13961
- components:
- - type: Transform
- pos: 41.683758,19.570614
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13962
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.51288,-0.6245712
- parent: 2
- - uid: 13963
- components:
- - type: Transform
- pos: 12.463764,9.66757
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13964
- components:
- - type: Transform
- pos: -63.249516,6.58782
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13965
- components:
- - type: Transform
- pos: 12.588764,9.57382
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13966
- components:
- - type: Transform
- pos: 41.558758,19.633179
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13967
- components:
- - type: Transform
- pos: 31.391697,10.8042965
- parent: 2
- - uid: 13968
- components:
- - type: Transform
- pos: -63.374516,6.65032
- parent: 2
- - type: Physics
- canCollide: False
-- proto: CigarGoldCase
- entities:
- - uid: 13969
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.459763,16.514328
- parent: 2
- - uid: 13970
- components:
- - type: Transform
- pos: -2.4250343,12.791277
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 13971
- components:
- - type: Transform
- pos: 23.554373,16.669165
- parent: 2
- - uid: 13973
- components:
- - type: Transform
- parent: 13972
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CigarSpent
- entities:
- - uid: 13978
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.358705,15.421036
- parent: 2
-- proto: CigCartonMixed
- entities:
- - uid: 13979
- components:
- - type: Transform
- pos: -0.5251062,-10.303878
- parent: 2
-- proto: CircuitImprinter
- entities:
- - uid: 13980
- components:
- - type: Transform
- pos: -3.5,-31.5
- parent: 2
-- proto: Claymore
- entities:
- - uid: 13981
- components:
- - type: Transform
- pos: -77.5,-3.5
- parent: 2
-- proto: CleanerDispenser
- entities:
- - uid: 13982
- components:
- - type: Transform
- pos: 0.5,55.5
- parent: 2
-- proto: CloningPod
- entities:
- - uid: 13983
- components:
- - type: Transform
- pos: 8.5,-37.5
- parent: 2
-- proto: ClosetBomb
- entities:
- - uid: 13984
- components:
- - type: Transform
- pos: 51.5,-6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 13985
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: ClosetBombFilled
- entities:
- - uid: 13986
- components:
- - type: Transform
- pos: 61.5,6.5
- parent: 2
- - uid: 13987
- components:
- - type: Transform
- pos: 63.5,6.5
- parent: 2
- - uid: 13988
- components:
- - type: Transform
- pos: -29.5,-43.5
- parent: 2
- - uid: 13989
- components:
- - type: Transform
- pos: -7.5,-48.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 13990
- components:
- - type: Transform
- pos: -29.5,-41.5
- parent: 2
- - uid: 13991
- components:
- - type: Transform
- pos: 59.5,6.5
- parent: 2
-- proto: ClosetChefFilled
- entities:
- - uid: 13992
- components:
- - type: Transform
- pos: -32.5,25.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 234.99968
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetEmergency
- entities:
- - uid: 13993
- components:
- - type: Transform
- pos: -31.5,82.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 6.7046022
- - 25.222076
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 13994
- components:
- - type: Transform
- pos: -27.5,82.5
- parent: 2
-- proto: ClosetEmergencyFilledRandom
- entities:
- - uid: 13995
- components:
- - type: Transform
- pos: 4.5,81.5
- parent: 2
- - uid: 13996
- components:
- - type: Transform
- pos: -9.5,82.5
- parent: 2
- - uid: 13997
- components:
- - type: Transform
- pos: -9.5,88.5
- parent: 2
- - uid: 13998
- components:
- - type: Transform
- pos: 4.5,80.5
- parent: 2
- - uid: 13999
- components:
- - type: Transform
- pos: -13.5,82.5
- parent: 2
- - uid: 14000
- components:
- - type: Transform
- pos: -57.5,64.5
- parent: 2
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14001
- - 14002
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14003
- components:
- - type: Transform
- pos: -12.5,98.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1498
- moles:
- - 3.3523011
- - 12.611038
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14004
- components:
- - type: Transform
- pos: -31.5,88.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 6.7046022
- - 25.222076
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14005
- components:
- - type: Transform
- pos: -18.5,-21.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14006
- components:
- - type: Transform
- pos: 4.5,-67.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14007
- components:
- - type: Transform
- pos: 4.5,-73.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14008
- components:
- - type: Transform
- pos: 15.5,19.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14009
- components:
- - type: Transform
- pos: -10.5,-71.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14010
- components:
- - type: Transform
- pos: -76.5,-25.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14011
- components:
- - type: Transform
- pos: 29.5,32.5
- parent: 2
- - uid: 14012
- components:
- - type: Transform
- pos: -43.5,8.5
- parent: 2
- - uid: 14013
- components:
- - type: Transform
- pos: -43.5,41.5
- parent: 2
- - uid: 14014
- components:
- - type: Transform
- pos: -42.5,-0.5
- parent: 2
- - uid: 14015
- components:
- - type: Transform
- pos: 28.5,-61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14016
- components:
- - type: Transform
- pos: -16.5,19.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14017
- components:
- - type: Transform
- pos: -1.5,27.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14018
- components:
- - type: Transform
- pos: -2.5,-60.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14019
- components:
- - type: Transform
- pos: -15.5,-29.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14020
- components:
- - type: Transform
- pos: 54.5,-38.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14021
- components:
- - type: Transform
- pos: -30.5,98.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1498
- moles:
- - 3.3523011
- - 12.611038
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14022
- components:
- - type: Transform
- pos: 33.5,-18.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14023
- components:
- - type: Transform
- pos: -60.5,-17.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14024
- components:
- - type: Transform
- pos: -16.5,18.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14025
- components:
- - type: Transform
- pos: -15.5,-31.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14026
- components:
- - type: Transform
- pos: -34.5,-51.5
- parent: 2
- - uid: 14027
- components:
- - type: Transform
- pos: -79.5,15.499999
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14028
- components:
- - type: Transform
- pos: 9.5,90.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14029
- components:
- - type: Transform
- pos: 15.5,20.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14030
- components:
- - type: Transform
- pos: -46.5,-39.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14031
- components:
- - type: Transform
- pos: -67.5,-31.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14032
- components:
- - type: Transform
- pos: -32.5,-49.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14033
- components:
- - type: Transform
- pos: 70.5,-40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 2.101486
- - 7.9055915
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14034
- components:
- - type: Transform
- pos: -21.5,58.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14035
- components:
- - type: Transform
- pos: 8.5,-58.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14036
- components:
- - type: Transform
- pos: -115.5,26.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14037
- components:
- - type: Transform
- pos: -57.5,-38.5
- parent: 2
- - uid: 14038
- components:
- - type: Transform
- pos: -27.5,88.5
- parent: 2
- - uid: 14039
- components:
- - type: Transform
- pos: -13.5,88.5
- parent: 2
-- proto: ClosetFireFilled
- entities:
- - uid: 14040
- components:
- - type: Transform
- pos: 0.5,27.5
- parent: 2
- - uid: 14041
- components:
- - type: Transform
- pos: -9.5,92.5
- parent: 2
- - uid: 14042
- components:
- - type: Transform
- pos: -13.5,79.5
- parent: 2
- - uid: 14043
- components:
- - type: Transform
- pos: -9.5,79.5
- parent: 2
- - uid: 14044
- components:
- - type: Transform
- pos: 4.5,79.5
- parent: 2
- - uid: 14045
- components:
- - type: Transform
- pos: -31.5,92.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 6.7046022
- - 25.222076
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14046
- components:
- - type: Transform
- pos: -43.5,40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14047
- components:
- - type: Transform
- pos: 4.5,-68.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14048
- components:
- - type: Transform
- pos: -44.5,44.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14049
- components:
- - type: Transform
- pos: -50.5,44.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14050
- components:
- - type: Transform
- pos: 2.5,42.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14051
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14052
- components:
- - type: Transform
- pos: 22.5,-22.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14053
- components:
- - type: Transform
- pos: -21.5,57.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14054
- components:
- - type: Transform
- pos: -43.5,50.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14055
- components:
- - type: Transform
- pos: 4.5,82.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14056
- components:
- - type: Transform
- pos: -54.5,23.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14057
- components:
- - type: Transform
- pos: -42.5,-1.5
- parent: 2
- - uid: 14058
- components:
- - type: Transform
- pos: 53.5,-30.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14059
- components:
- - type: Transform
- pos: 15.5,18.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14060
- components:
- - type: Transform
- pos: -11.5,-30.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14061
- components:
- - type: Transform
- pos: -31.5,61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14062
- components:
- - type: Transform
- pos: -11.5,-29.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14063
- components:
- - type: Transform
- pos: -16.5,20.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14064
- components:
- - type: Transform
- pos: -31.5,79.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 6.7046022
- - 25.222076
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14065
- components:
- - type: Transform
- pos: -3.5,-50.5
- parent: 2
- - uid: 14066
- components:
- - type: Transform
- pos: -2.5,-61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14067
- components:
- - type: Transform
- pos: -42.5,3.5
- parent: 2
- - uid: 14068
- components:
- - type: Transform
- pos: -10.5,-74.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14069
- components:
- - type: Transform
- pos: 47.5,-41.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14070
- components:
- - type: Transform
- pos: -34.5,-49.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14071
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14072
- components:
- - type: Transform
- pos: 1.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14073
- components:
- - type: Transform
- pos: -19.5,-21.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14074
- components:
- - type: Transform
- pos: -57.5,-37.5
- parent: 2
- - uid: 14075
- components:
- - type: Transform
- pos: -27.5,92.5
- parent: 2
- - uid: 14076
- components:
- - type: Transform
- pos: 0.5,27.5
- parent: 2
- - uid: 14077
- components:
- - type: Transform
- pos: -13.5,92.5
- parent: 2
- - uid: 14078
- components:
- - type: Transform
- pos: -27.5,79.5
- parent: 2
-- proto: ClosetJanitor
- entities:
- - uid: 14079
- components:
- - type: Transform
- pos: 65.5,-10.5
- parent: 2
- - uid: 14080
- components:
- - type: Transform
- pos: 65.5,-29.5
- parent: 2
-- proto: ClosetJanitorFilled
- entities:
- - uid: 1787
- components:
- - type: Transform
- pos: 4.5,53.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:
- - 1790
- - 1791
- - 1789
- - 1792
- - 1797
- - 1788
- - 1794
- - 1795
- - 1793
- - 1796
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: ClosetL3JanitorFilled
- entities:
- - uid: 14081
- components:
- - type: Transform
- pos: 4.5,54.5
- parent: 2
-- proto: ClosetL3ScienceFilled
- entities:
- - uid: 14082
- components:
- - type: Transform
- pos: -27.5,-37.5
- parent: 2
- - uid: 14083
- components:
- - type: Transform
- pos: -27.5,-38.5
- parent: 2
- - uid: 14084
- components:
- - type: Transform
- pos: -11.5,-31.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetL3SecurityFilled
- entities:
- - uid: 14085
- components:
- - type: Transform
- pos: 70.5,-2.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14086
- components:
- - type: Transform
- pos: 70.5,-4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14087
- components:
- - type: Transform
- pos: 69.5,-4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetL3VirologyFilled
- entities:
- - uid: 14088
- components:
- - type: Transform
- pos: 26.5,-61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14089
- components:
- - type: Transform
- pos: 32.5,-68.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14090
- components:
- - type: Transform
- pos: 27.5,-61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetLegal
- entities:
- - uid: 14091
- components:
- - type: Transform
- pos: 65.5,-28.5
- parent: 2
- - uid: 14092
- components:
- - type: Transform
- pos: 65.5,-11.5
- parent: 2
-- proto: ClosetMaintenanceFilledRandom
- entities:
- - uid: 14093
- components:
- - type: Transform
- pos: -61.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
- - uid: 14094
- components:
- - type: Transform
- pos: 43.5,-6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14095
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14096
- components:
- - type: Transform
- pos: -50.5,-33.5
- parent: 2
- - uid: 14097
- components:
- - type: Transform
- pos: -26.5,-76.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14098
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14099
- components:
- - type: Transform
- pos: -31.5,58.5
- parent: 2
- - uid: 14100
- components:
- - type: Transform
- pos: -21.5,-21.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14101
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14102
- components:
- - type: Transform
- pos: 5.5,56.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8856695
- - 7.0937095
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14103
- components:
- - type: Transform
- pos: -64.5,-39.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14104
- components:
- - type: Transform
- pos: 21.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14105
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14106
- components:
- - type: Transform
- pos: -24.5,27.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14107
- components:
- - type: Transform
- pos: -40.5,50.5
- parent: 2
- - uid: 14108
- components:
- - type: Transform
- pos: 4.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14109
- components:
- - type: Transform
- pos: -73.5,-22.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14110
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14111
- components:
- - type: Transform
- pos: 41.5,-25.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14112
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14113
- components:
- - type: Transform
- pos: 34.5,-4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14114
- components:
- - type: Transform
- pos: -77.5,-20.5
- parent: 2
- - uid: 14115
- components:
- - type: Transform
- pos: -18.5,-62.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14116
- components:
- - type: Transform
- pos: 25.5,61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14117
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14118
- components:
- - type: Transform
- pos: 25.5,59.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14119
- components:
- - type: Transform
- pos: 40.5,-47.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14120
- components:
- - type: Transform
- pos: -38.5,2.5
- parent: 2
- - uid: 14121
- components:
- - type: Transform
- pos: -32.5,-53.5
- parent: 2
- - uid: 14122
- components:
- - type: Transform
- pos: -52.5,-22.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14123
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14124
- components:
- - type: Transform
- pos: -45.5,-37.5
- parent: 2
- - uid: 14125
- components:
- - type: Transform
- pos: -57.5,-45.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14126
- components:
- - type: Transform
- pos: -43.5,-46.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14127
- components:
- - type: Transform
- pos: 68.5,22.5
- parent: 2
- - uid: 14128
- components:
- - type: Transform
- pos: -39.5,-75.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14129
- components:
- - type: Transform
- pos: 35.5,-23.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14130
- components:
- - type: Transform
- pos: 40.5,-37.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14131
- components:
- - type: Transform
- pos: 40.5,-41.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14132
- components:
- - type: Transform
- pos: 48.5,-47.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14133
- components:
- - type: Transform
- pos: 52.5,-38.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14134
- components:
- - type: Transform
- pos: 48.5,-27.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14135
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14136
- components:
- - type: Transform
- pos: 43.5,-27.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14137
- components:
- - type: Transform
- pos: 36.5,-46.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14138
- components:
- - type: Transform
- pos: 18.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14139
- components:
- - type: Transform
- pos: -57.5,-33.5
- parent: 2
-- proto: ClosetRadiationSuitFilled
- entities:
- - uid: 14140
- components:
- - type: Transform
- pos: -62.5,2.5
- parent: 2
- - uid: 14141
- components:
- - type: Transform
- pos: -63.5,2.5
- parent: 2
- - uid: 14142
- components:
- - type: Transform
- pos: -57.5,44.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14143
- components:
- - type: Transform
- pos: -43.5,52.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14144
- components:
- - type: Transform
- pos: -55.5,-3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14145
- components:
- - type: Transform
- pos: -56.5,-3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14146
- components:
- - type: Transform
- pos: -50.5,6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14147
- components:
- - type: Transform
- pos: -58.5,44.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14148
- components:
- - type: Transform
- pos: -51.5,40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14149
- components:
- - type: Transform
- pos: -29.5,-39.5
- parent: 2
- - uid: 14150
- components:
- - type: Transform
- pos: -14.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14151
- components:
- - type: Transform
- pos: 75.5,-45.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 8.182408
- - 30.781443
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14152
- components:
- - type: Transform
- pos: -52.5,40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14153
- components:
- - type: Transform
- pos: -31.5,-46.5
- parent: 2
- - uid: 14154
- components:
- - type: Transform
- pos: -53.5,4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14155
- components:
- - type: Transform
- pos: -54.5,20.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14156
- components:
- - type: Transform
- pos: -69.5,10.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14157
- components:
- - type: Transform
- pos: -77.5,1.5
- parent: 2
-- proto: ClosetSteelBase
- entities:
- - uid: 14158
- components:
- - type: Transform
- pos: 8.5,-40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14159
- components:
- - type: Transform
- pos: 76.5,23.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14160
- components:
- - type: Transform
- pos: 35.5,-6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14161
- components:
- - type: Transform
- pos: 36.5,-6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14162
- components:
- - type: Transform
- pos: 38.5,-66.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14163
- - 14164
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14165
- components:
- - type: Transform
- pos: 42.5,-66.5
- parent: 2
- - 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: 293.1496
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- open: True
- removedMasks: 20
- - type: PlaceableSurface
- isPlaceable: True
- - uid: 14166
- components:
- - type: Transform
- pos: 13.5,-57.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14167
- components:
- - type: Transform
- pos: 12.5,-57.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14168
- components:
- - type: Transform
- pos: 11.5,-57.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14169
- components:
- - type: Transform
- pos: 34.5,-49.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14170
- components:
- - type: Transform
- pos: 34.5,-6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14171
- components:
- - type: Transform
- pos: 43.5,-35.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14172
- components:
- - type: Transform
- pos: -55.5,-43.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:
- - 14175
- - 14176
- - 14173
- - 14174
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14177
- components:
- - type: Transform
- pos: 6.5,-10.5
- parent: 2
- - uid: 14178
- components:
- - type: Transform
- pos: 65.5,-9.5
- parent: 2
- - uid: 14179
- components:
- - type: Transform
- pos: 65.5,-30.5
- parent: 2
-- proto: ClosetToolFilled
- entities:
- - uid: 14180
- components:
- - type: Transform
- pos: -77.5,-25.5
- parent: 2
- - uid: 14181
- components:
- - type: Transform
- pos: -56.5,17.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14183
- - 14182
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14184
- components:
- - type: Transform
- pos: -55.5,-11.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14185
- components:
- - type: Transform
- pos: 11.5,85.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14186
- components:
- - type: Transform
- pos: 24.5,10.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14187
- components:
- - type: Transform
- pos: 11.5,84.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14188
- components:
- - type: Transform
- pos: -56.5,-11.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14189
- components:
- - type: Transform
- pos: -53.5,6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14190
- components:
- - type: Transform
- pos: 23.5,10.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14191
- components:
- - type: Transform
- pos: -22.5,-47.5
- parent: 2
- - uid: 14192
- components:
- - type: Transform
- pos: -50.5,4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetWallEmergencyFilledRandom
- entities:
- - uid: 14193
- components:
- - type: Transform
- pos: 11.5,-2.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetWallOrange
- entities:
- - uid: 14194
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 81.5,2.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14197
- - 14195
- - 14196
- - uid: 14198
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 81.5,3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14199
- - 14200
- - 14201
- - uid: 14202
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 77.5,0.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14206
- - 14204
- - 14203
- - 14205
- - 14207
- - uid: 14208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,0.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14210
- - 14209
- - 14211
- - 14212
- - 14213
-- proto: ClothingBackpackBrigmedic
- entities:
- - uid: 14215
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBackpackDuffelBrigmedic
- entities:
- - uid: 14216
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBackpackDuffelMilitary
- entities:
- - uid: 14228
- components:
- - type: Transform
- pos: -39.5,56.5
- parent: 2
-- proto: ClothingBackpackDuffelVirology
- entities:
- - uid: 14229
- components:
- - type: Transform
- pos: 39.371994,-59.285408
- parent: 2
-- proto: ClothingBackpackSatchelBrigmedic
- entities:
- - uid: 14217
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBackpackSatchelLeather
- entities:
- - uid: 14230
- components:
- - type: Transform
- pos: 38.42007,-13.187743
- parent: 2
-- proto: ClothingBeltChampion
- entities:
- - uid: 14231
- components:
- - type: Transform
- pos: 26.5,16.5
- parent: 2
- - uid: 14232
- components:
- - type: Transform
- pos: 63.481087,-20.497055
- parent: 2
- - uid: 14233
- components:
- - type: Transform
- pos: 63.65296,-20.13768
- parent: 2
-- proto: ClothingBeltJanitorFilled
- entities:
- - uid: 1789
- components:
- - type: Transform
- parent: 1787
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1790
- components:
- - type: Transform
- parent: 1787
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBeltMedical
- entities:
- - uid: 14218
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBeltPlantFilled
- entities:
- - uid: 14234
- components:
- - type: Transform
- pos: -34.420864,52.3301
- parent: 2
- - uid: 14235
- components:
- - type: Transform
- pos: -34.610645,52.66603
- parent: 2
-- proto: ClothingBeltSecurityFilled
- entities:
- - uid: 1516
- components:
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBeltSecurityWebbing
- entities:
- - uid: 14236
- components:
- - type: Transform
- pos: 63.5,7.5
- parent: 2
- - uid: 14237
- components:
- - type: Transform
- pos: 63.5,7.5
- parent: 2
- - uid: 14238
- components:
- - type: Transform
- pos: 63.5,7.5
- parent: 2
- - uid: 14239
- components:
- - type: Transform
- pos: 63.5,7.5
- parent: 2
-- proto: ClothingBeltStorageWaistbag
- entities:
- - uid: 14240
- components:
- - type: Transform
- pos: 38.466946,-9.531493
- parent: 2
-- proto: ClothingBeltUtility
- entities:
- - uid: 14241
- components:
- - type: Transform
- pos: -15.544889,-14.405305
- parent: 2
- - uid: 14242
- components:
- - type: Transform
- pos: 9.527449,86.09863
- parent: 2
-- proto: ClothingBeltUtilityFilled
- entities:
- - uid: 14182
- components:
- - type: Transform
- parent: 14181
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14243
- components:
- - type: Transform
- pos: 15.5,39.5
- parent: 2
- - uid: 14244
- components:
- - type: Transform
- pos: -33.5,60.5
- parent: 2
- - uid: 14245
- components:
- - type: Transform
- pos: -57.47635,27.662151
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14246
- components:
- - type: Transform
- pos: 6.513186,-15.495517
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14247
- components:
- - type: Transform
- pos: -49.5,-16.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14248
- components:
- - type: Transform
- pos: -57.515335,-43.273537
- parent: 2
-- proto: ClothingEyesBinoclardLenses
- entities:
- - uid: 14249
- components:
- - type: Transform
- pos: -21.485056,-7.1794715
- parent: 2
-- proto: ClothingEyesBlindfold
- entities:
- - uid: 14250
- components:
- - type: Transform
- pos: 73.36917,23.696793
- parent: 2
-- proto: ClothingEyesEyepatch
- entities:
- - uid: 14251
- components:
- - type: Transform
- pos: 83.62367,-0.42007774
- parent: 2
-- proto: ClothingEyesGlasses
- entities:
- - uid: 14252
- components:
- - type: Transform
- pos: -36.412228,63.676514
- parent: 2
- - uid: 14253
- components:
- - type: Transform
- pos: 28.440517,-26.436743
- parent: 2
- - uid: 14254
- components:
- - type: Transform
- pos: 28.378017,-26.327368
- parent: 2
- - uid: 14255
- components:
- - type: Transform
- pos: 29.542643,-1.1786702
- parent: 2
-- proto: ClothingEyesGlassesCheapSunglasses
- entities:
- - uid: 14256
- components:
- - type: Transform
- pos: 20.8171,62.763203
- parent: 2
-- proto: ClothingEyesGlassesMercenary
- entities:
- - uid: 14001
- components:
- - type: Transform
- parent: 14000
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14257
- components:
- - type: Transform
- pos: -36.385307,-54.463394
- parent: 2
-- proto: ClothingEyesGlassesMeson
- entities:
- - uid: 14258
- components:
- - type: Transform
- pos: 90.24979,10.735543
- parent: 2
- - uid: 14259
- components:
- - type: Transform
- pos: -49.5,-12.5
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingEyesGlassesSunglasses
- entities:
- - uid: 1517
- components:
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14260
- components:
- - type: Transform
- pos: -78.5,1.5
- parent: 2
- - uid: 14261
- components:
- - type: Transform
- pos: 34.431522,0.096880555
- parent: 2
-- proto: ClothingEyesHudDiagnostic
- entities:
- - uid: 14262
- components:
- - type: Transform
- pos: -75.5,9.5
- parent: 2
- - uid: 14263
- components:
- - type: Transform
- pos: 15.542948,77.507545
- parent: 2
- - uid: 14264
- components:
- - type: Transform
- pos: -54.45722,-9.789352
- parent: 2
- - uid: 14265
- components:
- - type: Transform
- pos: -54.45722,-9.789352
- parent: 2
- - uid: 14266
- components:
- - type: Transform
- pos: -54.45722,-9.789352
- parent: 2
- - uid: 14267
- components:
- - type: Transform
- pos: -54.45722,-9.789352
- parent: 2
-- proto: ClothingEyesHudMedical
- entities:
- - uid: 14268
- components:
- - type: Transform
- pos: 30.585972,-26.50681
- parent: 2
- - uid: 14269
- components:
- - type: Transform
- pos: 22.578123,-46.395374
- parent: 2
- - uid: 14270
- components:
- - type: Transform
- pos: 30.710972,-26.428684
- parent: 2
- - uid: 14271
- components:
- - type: Transform
- pos: 30.804722,-26.334932
- parent: 2
-- proto: ClothingEyesSalesman
- entities:
- - uid: 14272
- components:
- - type: Transform
- pos: 34.52355,-29.358326
- parent: 2
-- proto: ClothingHandsGlovesAerostatic
- entities:
- - uid: 14274
- components:
- - type: Transform
- parent: 14273
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHandsGlovesBoxingBlue
- entities:
- - uid: 14280
- components:
- - type: Transform
- pos: 55.321033,-16.213081
- parent: 2
- - uid: 14281
- components:
- - type: Transform
- pos: 55.696033,-16.134956
- parent: 2
-- proto: ClothingHandsGlovesBoxingGreen
- entities:
- - uid: 14282
- components:
- - type: Transform
- pos: 55.33666,-15.541207
- parent: 2
- - uid: 14283
- components:
- - type: Transform
- pos: 55.727283,-15.384956
- parent: 2
-- proto: ClothingHandsGlovesBoxingRed
- entities:
- - uid: 14284
- components:
- - type: Transform
- pos: 55.27416,-16.588081
- parent: 2
- - uid: 14285
- components:
- - type: Transform
- pos: 55.64916,-16.509956
- parent: 2
-- proto: ClothingHandsGlovesBoxingYellow
- entities:
- - uid: 14286
- components:
- - type: Transform
- pos: 55.30541,-15.884956
- parent: 2
- - uid: 14287
- components:
- - type: Transform
- pos: 55.77416,-15.759956
- parent: 2
-- proto: ClothingHandsGlovesColorBlack
- entities:
- - uid: 14288
- components:
- - type: Transform
- pos: 14.491442,39.55459
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14289
- components:
- - type: Transform
- pos: 31.5,32.5
- parent: 2
- - uid: 14290
- components:
- - type: Transform
- pos: -28.464966,-75.180466
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14291
- components:
- - type: Transform
- pos: 33.5,32.5
- parent: 2
- - uid: 14292
- components:
- - type: Transform
- pos: 32.5,32.5
- parent: 2
- - uid: 14293
- components:
- - type: Transform
- pos: 53.542866,-53.372818
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14294
- components:
- - type: Transform
- pos: 49.5,-37.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14295
- components:
- - type: Transform
- pos: 14.491442,39.71084
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14296
- components:
- - type: Transform
- pos: -49.94571,-48.294197
- parent: 2
- - uid: 14297
- components:
- - type: Transform
- pos: -22.50142,-44.5684
- parent: 2
-- proto: ClothingHandsGlovesColorBrown
- entities:
- - uid: 14298
- components:
- - type: Transform
- pos: 27.46601,36.112278
- parent: 2
-- proto: ClothingHandsGlovesColorOrange
- entities:
- - uid: 14299
- components:
- - type: Transform
- pos: 0.6084916,50.72592
- parent: 2
- - uid: 14300
- components:
- - type: Transform
- pos: -77.531624,-30.35354
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHandsGlovesColorPurple
- entities:
- - uid: 14301
- components:
- - type: Transform
- pos: 0.55345386,50.3957
- parent: 2
-- proto: ClothingHandsGlovesColorWhite
- entities:
- - uid: 14302
- components:
- - type: Transform
- pos: -33.5,-35.5
- parent: 2
-- proto: ClothingHandsGlovesColorYellow
- entities:
- - uid: 14183
- components:
- - type: Transform
- parent: 14181
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14303
- components:
- - type: Transform
- pos: 11.5,40.5
- parent: 2
- - uid: 14304
- components:
- - type: Transform
- pos: -55.5,-1.5
- parent: 2
- - uid: 14305
- components:
- - type: Transform
- pos: -45.44088,-13.045986
- parent: 2
- - uid: 14306
- components:
- - type: Transform
- pos: -35.5,21.5
- parent: 2
- - uid: 14307
- components:
- - type: Transform
- pos: -28.5,8.5
- parent: 2
- - uid: 14308
- components:
- - type: Transform
- pos: -49.5,-12.5
- parent: 2
- - uid: 14310
- components:
- - type: Transform
- parent: 14309
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14314
- components:
- - type: Transform
- parent: 14313
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14318
- components:
- - type: Transform
- parent: 14317
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14321
- components:
- - type: Transform
- pos: 54.5,-42.5
- parent: 2
-- proto: ClothingHandsGlovesColorYellowBudget
- entities:
- - uid: 14322
- components:
- - type: Transform
- pos: -41.49198,-55.389194
- parent: 2
- - uid: 14323
- components:
- - type: Transform
- pos: -36.400394,-78.32921
- parent: 2
- - uid: 14324
- components:
- - type: Transform
- pos: 20.524391,10.520571
- parent: 2
-- proto: ClothingHandsGlovesCombat
- entities:
- - uid: 1518
- components:
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14325
- components:
- - type: Transform
- pos: 70.5,8.5
- parent: 2
- - uid: 14326
- components:
- - type: Transform
- pos: -67.44785,-22.699738
- parent: 2
-- proto: ClothingHandsGlovesFingerlessInsulated
- entities:
- - uid: 14327
- components:
- - type: Transform
- pos: 29.53348,59.58545
- parent: 2
-- proto: ClothingHandsGlovesHop
- entities:
- - uid: 14328
- components:
- - type: Transform
- pos: -41.5,61.5
- parent: 2
-- proto: ClothingHandsGlovesLatex
- entities:
- - uid: 14329
- components:
- - type: Transform
- pos: 3.3556955,-52.53906
- parent: 2
- - uid: 14330
- components:
- - type: Transform
- pos: 33.512875,-52.369106
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14331
- components:
- - type: Transform
- pos: 26.501759,9.535522
- parent: 2
- - uid: 14332
- components:
- - type: Transform
- pos: -25.48231,-31.481985
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14333
- components:
- - type: Transform
- pos: 6.5106626,-42.76824
- parent: 2
- - uid: 14334
- components:
- - type: Transform
- pos: 45.5,-35.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14335
- components:
- - type: Transform
- pos: 27.495026,67.60358
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14336
- components:
- - type: Transform
- pos: -3.4906864,-22.43212
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14337
- components:
- - type: Transform
- pos: 3.8132644,-52.53906
- parent: 2
- - uid: 14338
- components:
- - type: Transform
- pos: 3.666549,-13.525673
- parent: 2
-- proto: ClothingHandsGlovesLeather
- entities:
- - uid: 14339
- components:
- - type: Transform
- pos: -25.485296,54.53175
- parent: 2
-- proto: ClothingHandsGlovesNitrile
- entities:
- - uid: 14340
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.60349,-72.92771
- parent: 2
-- proto: ClothingHandsMercGlovesCombat
- entities:
- - uid: 14002
- components:
- - type: Transform
- parent: 14000
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14342
- components:
- - type: Transform
- parent: 14341
- - type: Physics
- canCollide: False
-- proto: ClothingHeadBandBlack
- entities:
- - uid: 14343
- components:
- - type: Transform
- pos: -50.609512,-48.24995
- parent: 2
-- proto: ClothingHeadBandMerc
- entities:
- - uid: 14071
- components:
- - type: Transform
- parent: 14070
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadBandSkull
- entities:
- - uid: 14203
- components:
- - type: Transform
- parent: 14202
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14209
- components:
- - type: Transform
- parent: 14208
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14344
- components:
- - type: Transform
- pos: -57.5,-42.5
- parent: 2
-- proto: ClothingHeadHatAnimalCatBlack
- entities:
- - uid: 14345
- components:
- - type: Transform
- pos: 39.473694,-49.477642
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHeadHatAnimalHeadslime
- entities:
- - uid: 14346
- components:
- - type: Transform
- pos: -51.484074,-22.45441
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHeadHatBeaverHat
- entities:
- - uid: 14347
- components:
- - type: Transform
- pos: 11.610336,68.17239
- parent: 2
-- proto: ClothingHeadHatBeret
- entities:
- - uid: 1519
- components:
- - type: MetaData
- desc: 'Этот берет принадлежал когда-то первому пилоту Стервятника. Леонарду Уварову. '
- name: Берет Первого Пилота
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatBeretBrigmedic
- entities:
- - uid: 14349
- components:
- - type: Transform
- parent: 14348
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14350
- components:
- - type: Transform
- parent: 14348
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14352
- components:
- - type: Transform
- parent: 14351
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14353
- components:
- - type: Transform
- pos: 26.16902,-24.54952
- parent: 2
- - uid: 14354
- components:
- - type: Transform
- pos: 25.512768,-24.26827
- parent: 2
-- proto: ClothingHeadHatBeretEngineering
- entities:
- - uid: 14355
- components:
- - type: Transform
- pos: -54.4179,-9.596214
- parent: 2
- - uid: 14356
- components:
- - type: Transform
- pos: -56.24604,-13.244306
- parent: 2
-- proto: ClothingHeadHatBeretMerc
- entities:
- - uid: 14357
- components:
- - type: Transform
- pos: -30.357168,-65.595474
- parent: 2
-- proto: ClothingHeadHatBeretRND
- entities:
- - uid: 14358
- components:
- - type: Transform
- pos: -20.530878,-38.289
- parent: 2
-- proto: ClothingHeadHatBeretSecurityMedic
- entities:
- - uid: 14219
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatBeretWarden
- entities:
- - uid: 14360
- components:
- - type: Transform
- parent: 14359
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatBowlerHat
- entities:
- - uid: 14368
- components:
- - type: Transform
- parent: 14367
- - type: Physics
- canCollide: False
- - uid: 14374
- components:
- - type: Transform
- pos: -23.507126,23.627884
- parent: 2
- - uid: 14375
- components:
- - type: Transform
- pos: 43.480366,-50.404068
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14376
- components:
- - type: Transform
- pos: 20.17384,62.727947
- parent: 2
-- proto: ClothingHeadHatBunny
- entities:
- - uid: 14377
- components:
- - type: Transform
- pos: 43.54777,15.417131
- parent: 2
-- proto: ClothingHeadHatCapWardenAlt
- entities:
- - uid: 14361
- components:
- - type: Transform
- parent: 14359
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatCardborg
- entities:
- - uid: 14051
- components:
- - type: Transform
- parent: 14050
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14378
- components:
- - type: Transform
- pos: 47.511616,-54.529068
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHeadHatCasa
- entities:
- - uid: 14379
- components:
- - type: Transform
- pos: -50.54699,-44.048893
- parent: 2
- - uid: 14380
- components:
- - type: Transform
- pos: -52.47938,-45.096096
- parent: 2
-- proto: ClothingHeadHatChef
- entities:
- - uid: 14381
- components:
- - type: Transform
- pos: 22.545242,65.61058
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14382
- components:
- - type: Transform
- pos: -28.69005,32.65273
- parent: 2
-- proto: ClothingHeadHatCone
- entities:
- - uid: 14383
- components:
- - type: Transform
- pos: -59.5,-27.5
- parent: 2
- - uid: 14384
- components:
- - type: Transform
- pos: -63.5,-23.5
- parent: 2
- - uid: 14385
- components:
- - type: Transform
- pos: -59.5,-26.5
- parent: 2
- - uid: 14386
- components:
- - type: Transform
- pos: -56.52692,-17.587082
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHeadHatCowboyBountyHunter
- entities:
- - uid: 14387
- components:
- - type: Transform
- pos: -71.5,-39.5
- parent: 2
-- proto: ClothingHeadHatFedoraBrown
- entities:
- - uid: 1761
- components:
- - type: Transform
- parent: 1759
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatFedoraGrey
- entities:
- - uid: 14369
- components:
- - type: Transform
- parent: 14367
- - type: Physics
- canCollide: False
- - uid: 14388
- components:
- - type: Transform
- pos: -21.532356,19.607018
- parent: 2
-- proto: ClothingHeadHatFlowerWreath
- entities:
- - uid: 14389
- components:
- - type: Transform
- pos: 71.87246,-17.56805
- parent: 2
- - uid: 14390
- components:
- - type: Transform
- pos: 71.65119,-17.641798
- parent: 2
-- proto: ClothingHeadHatHardhatBlue
- entities:
- - uid: 14391
- components:
- - type: Transform
- pos: -67.37956,-23.102869
- parent: 2
-- proto: ClothingHeadHatHardhatRed
- entities:
- - uid: 14392
- components:
- - type: Transform
- pos: -64.42626,-28.486387
- parent: 2
-- proto: ClothingHeadHatHardhatYellow
- entities:
- - uid: 14393
- components:
- - type: Transform
- pos: -64.64753,-28.294647
- parent: 2
-- proto: ClothingHeadHatPaper
- entities:
- - uid: 14394
- components:
- - type: Transform
- pos: -52.608284,-42.366573
- parent: 2
- - uid: 14395
- components:
- - type: Transform
- pos: -52.40177,-42.51407
- parent: 2
-- proto: ClothingHeadHatPartyWaterCup
- entities:
- - uid: 14396
- components:
- - type: Transform
- pos: -26.689962,43.860317
- parent: 2
- - uid: 14397
- components:
- - type: Transform
- pos: -26.314962,43.797817
- parent: 2
- - uid: 14398
- components:
- - type: Transform
- pos: -26.846212,43.641567
- parent: 2
- - uid: 14399
- components:
- - type: Transform
- pos: -26.518087,43.547817
- parent: 2
-- proto: ClothingHeadHatPurplesoft
- entities:
- - uid: 1791
- components:
- - type: Transform
- parent: 1787
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatPurplesoftFlipped
- entities:
- - uid: 1792
- components:
- - type: Transform
- parent: 1787
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatRedwizard
- entities:
- - uid: 14400
- components:
- - type: Transform
- pos: -69.5,-36.5
- parent: 2
-- proto: ClothingHeadHatRichard
- entities:
- - uid: 1205
- components:
- - type: Transform
- parent: 1203
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatSurgcapBlue
- entities:
- - uid: 14401
- components:
- - type: Transform
- pos: 4.0855947,-52.240982
- parent: 2
-- proto: ClothingHeadHatUshanka
- entities:
- - uid: 14402
- components:
- - type: Transform
- pos: 70.485535,-41.48498
- parent: 2
-- proto: ClothingHeadHatVioletwizard
- entities:
- - uid: 14403
- components:
- - type: Transform
- pos: -67.5,-36.5
- parent: 2
-- proto: ClothingHeadHatWarden
- entities:
- - uid: 14362
- components:
- - type: Transform
- parent: 14359
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatWelding
- entities:
- - uid: 14404
- components:
- - type: Transform
- pos: -10.523207,-43.260536
- parent: 2
- - uid: 14405
- components:
- - type: Transform
- pos: -49.5,-16.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14406
- components:
- - type: Transform
- pos: -22.5,15.499999
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHeadHatWeldingMaskFlame
- entities:
- - uid: 14407
- components:
- - type: Transform
- pos: -10.742213,-43.474052
- parent: 2
-- proto: ClothingHeadHatWeldingMaskFlameBlue
- entities:
- - uid: 14408
- components:
- - type: Transform
- pos: -59.520313,42.482796
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14409
- components:
- - type: Transform
- pos: 55.630886,-47.44692
- parent: 2
-- proto: ClothingHeadHatWeldingMaskPainted
- entities:
- - uid: 14410
- components:
- - type: Transform
- pos: -79.500916,13.625097
- parent: 2
- - uid: 14411
- components:
- - type: Transform
- pos: 11.554202,-3.2498593
- parent: 2
-- proto: ClothingHeadHatWizard
- entities:
- - uid: 14412
- components:
- - type: Transform
- pos: -68.5,-36.5
- parent: 2
-- proto: ClothingHeadHelmetERTJanitor
- entities:
- - uid: 1793
- components:
- - type: Transform
- parent: 1787
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHelmetEVA
- entities:
- - uid: 14413
- components:
- - type: Transform
- pos: 92.29311,3.5736334
- parent: 2
- - uid: 14414
- components:
- - type: Transform
- pos: 91.27749,3.6048834
- parent: 2
-- proto: ClothingHeadHelmetEVALarge
- entities:
- - uid: 14415
- components:
- - type: Transform
- pos: 70.5,-49.5
- parent: 2
-- proto: ClothingHeadHelmetFire
- entities:
- - uid: 14416
- components:
- - type: Transform
- pos: -29.5,-44.5
- parent: 2
-- proto: ClothingHeadHelmetPodWars
- entities:
- - uid: 14417
- components:
- - type: Transform
- pos: -21.007933,-81.30595
- parent: 2
-- proto: ClothingHeadHelmetRiot
- entities:
- - uid: 14418
- components:
- - type: Transform
- pos: 57.5,7.5
- parent: 2
- - uid: 14419
- components:
- - type: Transform
- pos: 57.5,8.5
- parent: 2
- - uid: 14420
- components:
- - type: Transform
- pos: 57.5,7.5
- parent: 2
- - uid: 14421
- components:
- - type: Transform
- pos: 57.5,8.5
- parent: 2
-- proto: ClothingHeadHelmetSecurityMedic
- entities:
- - uid: 14220
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHelmetSwat
- entities:
- - uid: 14422
- components:
- - type: Transform
- pos: 70.5,10.5
- parent: 2
-- proto: ClothingHeadNurseHat
- entities:
- - uid: 14423
- components:
- - type: MetaData
- name: шапочка горничной
- - type: Transform
- pos: 0.027392589,50.83607
- parent: 2
- - uid: 14424
- components:
- - type: MetaData
- desc: Для настоящих мужчин
- name: шапочка горничной
- - type: Transform
- pos: -0.3395255,50.83607
- parent: 2
-- proto: ClothingHeadPyjamaSyndicateRed
- entities:
- - uid: 14425
- components:
- - type: MetaData
- desc: Чтобы держать твою милую голову в тепле.
- name: красная пижамная шапочка
- - type: Transform
- pos: 45.5,-13.5
- parent: 2
-- proto: ClothingHeadsetBrigmedic
- entities:
- - uid: 14221
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadsetMining
- entities:
- - uid: 14426
- components:
- - type: Transform
- pos: 33.407036,38.515415
- parent: 2
- - uid: 14427
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.94246,38.563385
- parent: 2
-- proto: ClothingMaskBandBlack
- entities:
- - uid: 14428
- components:
- - type: Transform
- pos: -50.521004,-48.42694
- parent: 2
-- proto: ClothingMaskBat
- entities:
- - uid: 14429
- components:
- - type: Transform
- pos: 10.709117,67.608955
- parent: 2
-- proto: ClothingMaskBear
- entities:
- - uid: 14430
- components:
- - type: Transform
- pos: -3.1418045,0.1992526
- parent: 2
-- proto: ClothingMaskBee
- entities:
- - uid: 14431
- components:
- - type: Transform
- pos: 48.406803,-25.420956
- parent: 2
-- proto: ClothingMaskBreath
- entities:
- - uid: 14432
- components:
- - type: Transform
- pos: -40.586826,-13.385798
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14433
- components:
- - type: Transform
- pos: 29.476248,60.442265
- parent: 2
- - uid: 14434
- components:
- - type: Transform
- pos: -49.53151,20.5579
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14435
- components:
- - type: Transform
- pos: -32.5,-77.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14436
- components:
- - type: Transform
- pos: -28.464966,-75.305466
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14437
- components:
- - type: Transform
- pos: -32.5,-76.5
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingMaskClown
- entities:
- - uid: 14438
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.179256,2.4163718
- parent: 2
-- proto: ClothingMaskFox
- entities:
- - uid: 14439
- components:
- - type: Transform
- pos: 10.886129,67.41721
- parent: 2
- - uid: 14440
- components:
- - type: Transform
- pos: -4.823427,1.9396657
- parent: 2
-- proto: ClothingMaskGas
- entities:
- - uid: 14441
- components:
- - type: Transform
- pos: -29.5,-44.5
- parent: 2
- - uid: 14442
- components:
- - type: Transform
- pos: 92.35561,1.6986334
- parent: 2
- - uid: 14443
- components:
- - type: Transform
- pos: -18.498352,-32.40024
- parent: 2
- - uid: 14444
- components:
- - type: Transform
- pos: 92.73061,1.6830084
- parent: 2
- - uid: 14445
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -30.528467,-31.360748
- parent: 2
- - uid: 14446
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -29.768051,-31.44414
- parent: 2
- - uid: 14447
- components:
- - type: Transform
- pos: -44.506374,-30.442978
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14448
- components:
- - type: Transform
- pos: 49.5,-37.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14449
- components:
- - type: Transform
- pos: -40.5,3.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14450
- components:
- - type: Transform
- pos: -39.517647,-50.443714
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14451
- components:
- - type: Transform
- pos: -35.451183,-35.34068
- parent: 2
- - uid: 14452
- components:
- - type: Transform
- pos: 92.69936,1.4330084
- parent: 2
- - uid: 14453
- components:
- - type: Transform
- pos: 92.32436,1.4330084
- parent: 2
-- proto: ClothingMaskGasAtmos
- entities:
- - uid: 14454
- components:
- - type: Transform
- pos: -67.59537,-22.390003
- parent: 2
- - uid: 14455
- components:
- - type: Transform
- pos: -58.610283,22.760155
- parent: 2
- - uid: 14456
- components:
- - type: Transform
- pos: -58.329033,22.978905
- parent: 2
- - uid: 14457
- components:
- - type: Transform
- pos: -62.433693,8.033986
- parent: 2
-- proto: ClothingMaskGasMerc
- entities:
- - uid: 14458
- components:
- - type: Transform
- pos: -34.478718,-2.3417118
- parent: 2
-- proto: ClothingMaskGasSwat
- entities:
- - uid: 14459
- components:
- - type: Transform
- pos: 68.5,10.5
- parent: 2
-- proto: ClothingMaskJackal
- entities:
- - uid: 14460
- components:
- - type: Transform
- pos: 11.299159,67.653206
- parent: 2
-- proto: ClothingMaskMuzzle
- entities:
- - uid: 14163
- components:
- - type: Transform
- parent: 14162
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14461
- components:
- - type: Transform
- pos: 42.5,-66.5
- parent: 2
- - uid: 14462
- components:
- - type: Transform
- pos: 73.37959,23.53001
- parent: 2
- - uid: 14463
- components:
- - type: Transform
- pos: 69.77919,26.857225
- parent: 2
- - uid: 14464
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.8122,19.013836
- parent: 2
-- proto: ClothingMaskSexyClown
- entities:
- - uid: 1420
- components:
- - type: Transform
- parent: 1418
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14465
- components:
- - type: Transform
- pos: 47.621845,-53.26381
- parent: 2
-- proto: ClothingMaskSexyMime
- entities:
- - uid: 14467
- components:
- - type: Transform
- parent: 14466
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14470
- components:
- - type: Transform
- pos: -5.5252013,26.629133
- parent: 2
-- proto: ClothingMaskSterile
- entities:
- - uid: 14471
- components:
- - type: Transform
- pos: 6.504747,-13.464267
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14472
- components:
- - type: Transform
- pos: 6.4998994,-42.29039
- parent: 2
- - uid: 14473
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.401516,-44.661903
- parent: 2
- - uid: 14474
- components:
- - type: Transform
- pos: 45.5,-35.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14475
- components:
- - type: Transform
- pos: 4.0884237,-13.635049
- parent: 2
- - uid: 14476
- components:
- - type: Transform
- pos: 3.5965211,-52.177906
- parent: 2
-- proto: ClothingNeckBling
- entities:
- - uid: 13974
- components:
- - type: Transform
- parent: 13972
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14477
- components:
- - type: Transform
- pos: 25.452574,16.509296
- parent: 2
- - uid: 14478
- components:
- - type: Transform
- pos: 25.667227,16.59669
- parent: 2
- - uid: 14479
- components:
- - type: Transform
- pos: 25.311596,16.614462
- parent: 2
-- proto: ClothingNeckCloakGoliathCloak
- entities:
- - uid: 14480
- components:
- - type: Transform
- pos: 43.456936,-24.711899
- parent: 2
-- proto: ClothingNeckCloakHerald
- entities:
- - uid: 14481
- components:
- - type: Transform
- pos: 43.496037,-54.385834
- parent: 2
-- proto: ClothingNeckCloakMiner
- entities:
- - uid: 14482
- components:
- - type: Transform
- pos: -55.51422,-50.568737
- parent: 2
- - uid: 14483
- components:
- - type: Transform
- pos: -102.4832,-18.476238
- parent: 2
-- proto: ClothingNeckCloakTrans
- entities:
- - uid: 14484
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.501427,-71.51004
- parent: 2
-- proto: ClothingNeckClownmedal
- entities:
- - uid: 14485
- components:
- - type: Transform
- pos: 40.95823,23.521482
- parent: 2
-- proto: ClothingNeckHeadphones
- entities:
- - uid: 14486
- components:
- - type: Transform
- pos: 56.742912,15.760529
- parent: 2
- - uid: 14487
- components:
- - type: Transform
- pos: 56.733246,15.393333
- parent: 2
- - uid: 14488
- components:
- - type: Transform
- pos: 56.733246,15.393333
- parent: 2
- - uid: 14489
- components:
- - type: Transform
- pos: 56.733246,15.393333
- parent: 2
- - uid: 14490
- components:
- - type: Transform
- pos: 56.727287,15.588654
- parent: 2
- - uid: 14491
- components:
- - type: Transform
- pos: 56.733246,15.393333
- parent: 2
- - uid: 14492
- components:
- - type: Transform
- pos: 56.733246,15.377708
- parent: 2
- - uid: 14493
- components:
- - type: Transform
- pos: -58.5,-49.5
- parent: 2
-- proto: ClothingNeckHorrific
- entities:
- - uid: 14370
- components:
- - type: Transform
- parent: 14367
- - type: Physics
- canCollide: False
-- proto: ClothingNeckMantleCap
- entities:
- - uid: 14494
- components:
- - type: Transform
- pos: 13.52143,0.6648903
- parent: 2
-- proto: ClothingNeckMantleCE
- entities:
- - uid: 14495
- components:
- - type: Transform
- pos: -58.490314,5.5715113
- parent: 2
-- proto: ClothingNeckMantleCMO
- entities:
- - uid: 14496
- components:
- - type: Transform
- pos: 24.487383,-50.378414
- parent: 2
-- proto: ClothingNeckMantleHOP
- entities:
- - uid: 14497
- components:
- - type: Transform
- pos: -15.52096,-3.4409883
- parent: 2
-- proto: ClothingNeckMantleHOS
- entities:
- - uid: 14498
- components:
- - type: Transform
- pos: 36.564354,22.725296
- parent: 2
-- proto: ClothingNeckMantleRD
- entities:
- - uid: 14499
- components:
- - type: Transform
- pos: -16.468708,-45.430428
- parent: 2
-- proto: ClothingNeckNanoTrasenPin
- entities:
- - uid: 14500
- components:
- - type: Transform
- pos: 71.252914,-17.538551
- parent: 2
-- proto: ClothingNeckScarfStripedZebra
- entities:
- - uid: 14468
- components:
- - type: Transform
- parent: 14466
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingNeckStethoscope
- entities:
- - uid: 14501
- components:
- - type: Transform
- pos: 14.568494,-58.43179
- parent: 2
- - uid: 14502
- components:
- - type: Transform
- pos: 32.043938,-26.529804
- parent: 2
- - uid: 14503
- components:
- - type: Transform
- pos: 31.84081,-26.48293
- parent: 2
- - uid: 14504
- components:
- - type: Transform
- pos: 21.703972,-42.332386
- parent: 2
- - uid: 14505
- components:
- - type: Transform
- pos: 47.5,-35.5
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingNeckStoleChaplain
- entities:
- - uid: 14506
- components:
- - type: Transform
- pos: -21.513214,-79.44685
- parent: 2
-- proto: ClothingNeckTieDet
- entities:
- - uid: 14371
- components:
- - type: Transform
- parent: 14367
- - type: Physics
- canCollide: False
- - uid: 14507
- components:
- - type: Transform
- pos: 36.449116,-50.524494
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingNeckTieRed
- entities:
- - uid: 14372
- components:
- - type: Transform
- parent: 14367
- - type: Physics
- canCollide: False
-- proto: ClothingNeckTieSci
- entities:
- - uid: 14373
- components:
- - type: Transform
- parent: 14367
- - type: Physics
- canCollide: False
-- proto: ClothingOuterAerostaticBomberJacket
- entities:
- - uid: 14275
- components:
- - type: Transform
- parent: 14273
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterApronChef
- entities:
- - uid: 14508
- components:
- - type: Transform
- pos: 22.545242,65.64183
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14509
- components:
- - type: Transform
- pos: -28.37068,32.64315
- parent: 2
-- proto: ClothingOuterArmorBasic
- entities:
- - uid: 14510
- components:
- - type: Transform
- pos: 61.5,9.5
- parent: 2
- - uid: 14511
- components:
- - type: Transform
- pos: 61.5,9.5
- parent: 2
- - uid: 14512
- components:
- - type: Transform
- pos: 61.5,9.5
- parent: 2
- - uid: 14513
- components:
- - type: Transform
- pos: 61.5,9.5
- parent: 2
-- proto: ClothingOuterArmorBulletproof
- entities:
- - uid: 14514
- components:
- - type: Transform
- pos: 61.5,7.5
- parent: 2
- - uid: 14515
- components:
- - type: Transform
- pos: 61.5,7.5
- parent: 2
- - uid: 14516
- components:
- - type: Transform
- pos: 61.5,7.5
- parent: 2
- - uid: 14517
- components:
- - type: Transform
- pos: 61.5,7.5
- parent: 2
-- proto: ClothingOuterArmorHeavy
- entities:
- - uid: 14518
- components:
- - type: Transform
- pos: 69.5,10.5
- parent: 2
- - type: GroupExamine
- group:
- - hoverMessage: ""
- contextText: verb-examine-group-other
- icon: /Textures/Interface/examine-star.png
- components:
- - Armor
- - ClothingSpeedModifier
- entries:
- - message: Понижает вашу скорость на [color=yellow]10%[/color].
- priority: 0
- component: ClothingSpeedModifier
- - message: >-
- Обеспечивает следующую защиту:
-
- - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]80%[/color].
-
- - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]80%[/color].
-
- - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]80%[/color].
-
- - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color].
-
- - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]100%[/color].
-
- - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]25%[/color].
- priority: 0
- component: Armor
- title: null
-- proto: ClothingOuterArmorReflective
- entities:
- - uid: 14519
- components:
- - type: Transform
- pos: 61.5,8.5
- parent: 2
- - uid: 14520
- components:
- - type: Transform
- pos: 61.5,8.5
- parent: 2
- - uid: 14521
- components:
- - type: Transform
- pos: 61.5,8.5
- parent: 2
-- proto: ClothingOuterArmorRiot
- entities:
- - uid: 14522
- components:
- - type: Transform
- pos: 57.5,8.5
- parent: 2
- - uid: 14523
- components:
- - type: Transform
- pos: 57.5,8.5
- parent: 2
- - uid: 14524
- components:
- - type: Transform
- pos: 57.5,7.5
- parent: 2
- - uid: 14525
- components:
- - type: Transform
- pos: 57.5,7.5
- parent: 2
-- proto: ClothingOuterCardborg
- entities:
- - uid: 14526
- components:
- - type: Transform
- pos: 47.511616,-54.497818
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingOuterCoatAMG
- entities:
- - uid: 14527
- components:
- - type: Transform
- pos: 38.485973,-72.53411
- parent: 2
-- proto: ClothingOuterCoatBomber
- entities:
- - uid: 1520
- components:
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterCoatExpensive
- entities:
- - uid: 14528
- components:
- - type: Transform
- pos: 20.5,63.5
- parent: 2
-- proto: ClothingOuterCoatJensen
- entities:
- - uid: 14529
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.450886,-10.224105
- parent: 2
-- proto: ClothingOuterCoatLabSecurityMedic
- entities:
- - uid: 14222
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterCoatRobo
- entities:
- - uid: 14204
- components:
- - type: Transform
- parent: 14202
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14210
- components:
- - type: Transform
- parent: 14208
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterCoatSpaceAsshole
- entities:
- - uid: 14530
- components:
- - type: Transform
- pos: -71.5,-36.5
- parent: 2
-- proto: ClothingOuterCoatWardenAlt
- entities:
- - uid: 14363
- components:
- - type: Transform
- parent: 14359
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterDogi
- entities:
- - uid: 14531
- components:
- - type: Transform
- pos: -55.5,-44.5
- parent: 2
-- proto: ClothingOuterHardsuitBrigmedic
- entities:
- - uid: 14223
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterHardsuitEVAPrisoner
- entities:
- - uid: 14532
- components:
- - type: Transform
- pos: 92.35561,3.7298834
- parent: 2
- - uid: 14533
- components:
- - type: Transform
- pos: 91.30874,3.6517584
- parent: 2
-- proto: ClothingOuterHoodieBlack
- entities:
- - uid: 14534
- components:
- - type: Transform
- pos: -50.255486,-48.44169
- parent: 2
-- proto: ClothingOuterStraightjacket
- entities:
- - uid: 14164
- components:
- - type: Transform
- parent: 14162
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14535
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.45677,-66.6926
- parent: 2
- - uid: 14536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.470066,2.4219537
- parent: 2
- - uid: 14537
- components:
- - type: Transform
- pos: 70.371666,18.826336
- parent: 2
-- proto: ClothingOuterSuitCarp
- entities:
- - uid: 14539
- components:
- - type: Transform
- parent: 14538
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterSuitEmergency
- entities:
- - uid: 14540
- components:
- - type: Transform
- pos: 69.5,-49.5
- parent: 2
-- proto: ClothingOuterSuitFire
- entities:
- - uid: 14541
- components:
- - type: Transform
- pos: -29.5,-44.5
- parent: 2
-- proto: ClothingOuterVestArmorMedSec
- entities:
- - uid: 14224
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterVestHazard
- entities:
- - uid: 14542
- components:
- - type: Transform
- pos: -28.464966,-75.180466
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14543
- components:
- - type: Transform
- pos: 20.535162,10.5619135
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14544
- components:
- - type: Transform
- pos: 49.5,-37.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14545
- components:
- - type: Transform
- pos: -53.815666,28.52803
- parent: 2
-- proto: ClothingOuterVestSecurityMedic
- entities:
- - uid: 14225
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterWinterCoat
- entities:
- - uid: 14546
- components:
- - type: Transform
- pos: -30.328856,28.425974
- parent: 2
-- proto: ClothingOuterWizard
- entities:
- - uid: 14547
- components:
- - type: Transform
- pos: -68.5,-36.5
- parent: 2
-- proto: ClothingOuterWizardRed
- entities:
- - uid: 14548
- components:
- - type: Transform
- pos: -69.5,-36.5
- parent: 2
-- proto: ClothingOuterWizardViolet
- entities:
- - uid: 14549
- components:
- - type: Transform
- pos: -67.5,-36.5
- parent: 2
-- proto: ClothingRandomSpawner
- entities:
- - uid: 14550
- components:
- - type: Transform
- pos: 11.345603,70.69221
- parent: 2
- - uid: 14551
- components:
- - type: Transform
- pos: 11.6524935,70.487724
- parent: 2
-- proto: ClothingShoesAerostatic
- entities:
- - uid: 14276
- components:
- - type: Transform
- parent: 14273
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14552
- components:
- - type: Transform
- pos: -61.5,-39.5
- parent: 2
-- proto: ClothingShoesBootsCombatFilled
- entities:
- - uid: 14553
- components:
- - type: Transform
- pos: 36.193935,21.963104
- parent: 2
-- proto: ClothingShoesBootsJack
- entities:
- - uid: 1521
- components:
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesBootsLaceup
- entities:
- - uid: 14554
- components:
- - type: Transform
- pos: -49.50318,-48.500687
- parent: 2
- - uid: 14555
- components:
- - type: Transform
- pos: 55.5,-35.5
- parent: 2
-- proto: ClothingShoesBootsMag
- entities:
- - uid: 14311
- components:
- - type: Transform
- parent: 14309
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14315
- components:
- - type: Transform
- parent: 14313
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14319
- components:
- - type: Transform
- parent: 14317
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14556
- components:
- - type: Transform
- pos: -45.534843,-13.538627
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14557
- components:
- - type: Transform
- pos: -15.668542,-13.459213
- parent: 2
- - uid: 14558
- components:
- - type: Transform
- pos: -15.449792,-13.459212
- parent: 2
-- proto: ClothingShoesBootsPerformer
- entities:
- - uid: 14559
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -6.253917,54.752438
- parent: 2
-- proto: ClothingShoesChef
- entities:
- - uid: 14560
- components:
- - type: Transform
- pos: -32.67555,29.368694
- parent: 2
-- proto: ClothingShoesColorOrange
- entities:
- - uid: 14195
- components:
- - type: Transform
- parent: 14194
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14199
- components:
- - type: Transform
- parent: 14198
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14205
- components:
- - type: Transform
- parent: 14202
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14211
- components:
- - type: Transform
- parent: 14208
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesGaloshes
- entities:
- - uid: 1794
- components:
- - type: Transform
- parent: 1787
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1795
- components:
- - type: Transform
- parent: 1787
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesSchoolBlack
- entities:
- - uid: 14173
- components:
- - type: Transform
- parent: 14172
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesSchoolWhite
- entities:
- - uid: 14174
- components:
- - type: Transform
- parent: 14172
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesSlippers
- entities:
- - uid: 14561
- components:
- - type: Transform
- pos: 49.5,-16.5
- parent: 2
-- proto: ClothingShoesSwat
- entities:
- - uid: 14562
- components:
- - type: Transform
- pos: 68.5,8.5
- parent: 2
-- proto: ClothingShoesWizard
- entities:
- - uid: 14563
- components:
- - type: Transform
- pos: -68.51795,-37.045822
- parent: 2
- - uid: 14564
- components:
- - type: Transform
- pos: -69.535774,-37.060574
- parent: 2
- - uid: 14565
- components:
- - type: MetaData
- desc: Японские деревянные сандалии.
- name: гэта
- - type: Transform
- pos: -45.41999,-48.686264
- parent: 2
- - uid: 14566
- components:
- - type: MetaData
- desc: Японские деревянные сандалии.
- name: гэта
- - type: Transform
- pos: -46.688583,-48.627266
- parent: 2
- - uid: 14567
- components:
- - type: Transform
- pos: -67.51488,-37.060574
- parent: 2
-- proto: ClothingUnderSocksCoder
- entities:
- - uid: 14568
- components:
- - type: Transform
- pos: -58.5,-49.5
- parent: 2
-- proto: ClothingUniformJumpskirtBrigmedic
- entities:
- - uid: 14226
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtDetectiveGrey
- entities:
- - uid: 14569
- components:
- - type: Transform
- pos: -36.5,59.5
- parent: 2
-- proto: ClothingUniformJumpskirtElegantMaid
- entities:
- - uid: 14570
- components:
- - type: Transform
- pos: 0.036769398,50.45079
- parent: 2
- - uid: 14571
- components:
- - type: Transform
- pos: -0.33014846,50.450794
- parent: 2
-- proto: ClothingUniformJumpskirtHoSParadeMale
- entities:
- - uid: 14573
- components:
- - type: Transform
- parent: 14572
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtJanimaidmini
- entities:
- - uid: 14575
- components:
- - type: Transform
- pos: 53.54969,-25.345713
- parent: 2
- - uid: 14576
- components:
- - type: Transform
- pos: -0.29345667,50.450794
- parent: 2
-- proto: ClothingUniformJumpskirtJanitor
- entities:
- - uid: 1796
- components:
- - type: Transform
- parent: 1787
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1797
- components:
- - type: Transform
- parent: 1787
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtPerformer
- entities:
- - uid: 14577
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -6.6330657,54.752438
- parent: 2
-- proto: ClothingUniformJumpskirtPrisoner
- entities:
- - uid: 14196
- components:
- - type: Transform
- parent: 14194
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14200
- components:
- - type: Transform
- parent: 14198
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14206
- components:
- - type: Transform
- parent: 14202
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14212
- components:
- - type: Transform
- parent: 14208
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14579
- components:
- - type: Transform
- parent: 14578
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14580
- components:
- - type: Transform
- parent: 14578
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14584
- components:
- - type: Transform
- parent: 14583
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14585
- components:
- - type: Transform
- parent: 14583
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14588
- components:
- - type: Transform
- pos: 86.514824,6.4461493
- parent: 2
-- proto: ClothingUniformJumpskirtSchool
- entities:
- - uid: 14175
- components:
- - type: Transform
- parent: 14172
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14176
- components:
- - type: Transform
- parent: 14172
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitAerostatic
- entities:
- - uid: 14277
- components:
- - type: Transform
- parent: 14273
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitBrigmedic
- entities:
- - uid: 14227
- components:
- - type: Transform
- parent: 14214
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitColorBlack
- entities:
- - uid: 14589
- components:
- - type: Transform
- pos: -49.827705,-48.589184
- parent: 2
-- proto: ClothingUniformJumpsuitDetective
- entities:
- - uid: 1762
- components:
- - type: Transform
- parent: 1759
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitDetectiveGrey
- entities:
- - uid: 14590
- components:
- - type: Transform
- pos: -36.5,59.5
- parent: 2
-- proto: ClothingUniformJumpsuitHoSParadeMale
- entities:
- - uid: 14574
- components:
- - type: Transform
- parent: 14572
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitKimono
- entities:
- - uid: 14591
- components:
- - type: Transform
- pos: -46.6148,-48.380947
- parent: 2
- - uid: 14592
- components:
- - type: Transform
- pos: -45.355076,-48.42951
- parent: 2
-- proto: ClothingUniformJumpsuitLoungewear
- entities:
- - uid: 14593
- components:
- - type: Transform
- pos: -55.444347,-45.36158
- parent: 2
-- proto: ClothingUniformJumpsuitNanotrasen
- entities:
- - uid: 14594
- components:
- - type: Transform
- pos: 6.542385,-83.541824
- parent: 2
-- proto: ClothingUniformJumpsuitPrisoner
- entities:
- - uid: 14197
- components:
- - type: Transform
- parent: 14194
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14201
- components:
- - type: Transform
- parent: 14198
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14207
- components:
- - type: Transform
- parent: 14202
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14213
- components:
- - type: Transform
- parent: 14208
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14581
- components:
- - type: Transform
- parent: 14578
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14582
- components:
- - type: Transform
- parent: 14578
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14586
- components:
- - type: Transform
- parent: 14583
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14587
- components:
- - type: Transform
- parent: 14583
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14595
- components:
- - type: Transform
- pos: 86.546074,4.475347
- parent: 2
-- proto: ClothingUniformJumpsuitRepairmanSyndie
- entities:
- - uid: 14596
- components:
- - type: Transform
- pos: -34.717594,-33.68413
- parent: 2
-- proto: ClothingUniformJumpsuitSecBlue
- entities:
- - uid: 1522
- components:
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClownRecorder
- entities:
- - uid: 14597
- components:
- - type: Transform
- pos: -8.497296,31.748924
- parent: 2
-- proto: Cobweb1
- entities:
- - uid: 14598
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-17.5
- parent: 2
- - uid: 14599
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-17.5
- parent: 2
- - uid: 14600
- components:
- - type: Transform
- pos: -41.5,-13.5
- parent: 2
-- proto: Cobweb2
- entities:
- - uid: 14601
- components:
- - type: Transform
- pos: 56.5,-34.5
- parent: 2
- - uid: 14602
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-71.5
- parent: 2
- - uid: 14603
- components:
- - type: Transform
- pos: -38.5,-13.5
- parent: 2
-- proto: CombatKnife
- entities:
- - uid: 14604
- components:
- - type: Transform
- pos: -20.695433,-81.44657
- parent: 2
-- proto: ComfyChair
- entities:
- - uid: 14605
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-9.5
- parent: 2
- - uid: 14606
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,16.5
- parent: 2
- - uid: 14607
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,16.5
- parent: 2
- - uid: 14608
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-8.5
- parent: 2
- - uid: 14609
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,16.5
- parent: 2
- - uid: 14610
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-52.5
- parent: 2
- - uid: 14611
- components:
- - type: Transform
- pos: -68.5,-34.5
- parent: 2
- - uid: 14612
- components:
- - type: Transform
- pos: 51.5,29.5
- parent: 2
- - uid: 14613
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,6.5
- parent: 2
- - uid: 14614
- components:
- - type: Transform
- pos: 8.5,8.5
- parent: 2
- - uid: 14615
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,9.5
- parent: 2
- - uid: 14616
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,10.5
- parent: 2
- - uid: 14617
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,9.5
- parent: 2
- - uid: 14618
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,10.5
- parent: 2
- - uid: 14619
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,8.5
- parent: 2
- - uid: 14620
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,8.5
- parent: 2
- - uid: 14621
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,8.5
- parent: 2
- - uid: 14622
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,9.5
- parent: 2
- - uid: 14623
- components:
- - type: Transform
- pos: -12.5,10.5
- parent: 2
- - uid: 14624
- components:
- - type: Transform
- pos: -11.5,10.5
- parent: 2
- - uid: 14625
- components:
- - type: Transform
- pos: -10.5,10.5
- parent: 2
- - uid: 14626
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,16.5
- parent: 2
- - uid: 14627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,61.5
- parent: 2
- - uid: 14628
- components:
- - type: Transform
- pos: -23.5,-11.5
- parent: 2
- - uid: 14629
- components:
- - type: Transform
- pos: 54.5,28.5
- parent: 2
- - uid: 14630
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,47.5
- parent: 2
- - uid: 14631
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,-38.5
- parent: 2
- - uid: 14632
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-77.5
- parent: 2
- - uid: 14633
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,13.5
- parent: 2
- - uid: 14634
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,46.5
- parent: 2
- - uid: 14635
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,20.5
- parent: 2
- - uid: 14636
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-77.5
- parent: 2
- - uid: 14637
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,1.5
- parent: 2
- - uid: 14638
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,-44.5
- parent: 2
- - uid: 14639
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,47.5
- parent: 2
- - uid: 14640
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-10.5
- parent: 2
- - uid: 14641
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-10.5
- parent: 2
- - uid: 14642
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-30.5
- parent: 2
- - uid: 14643
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-9.5
- parent: 2
- - uid: 14644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-30.5
- parent: 2
-- proto: CommsComputerCircuitboard
- entities:
- - uid: 14645
- components:
- - type: Transform
- pos: -35.485302,19.5736
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ComputerAlert
- entities:
- - uid: 14646
- components:
- - type: Transform
- pos: -8.5,16.5
- parent: 2
- - uid: 14647
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,18.5
- parent: 2
- - uid: 14648
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,6.5
- parent: 2
- - uid: 14649
- components:
- - type: Transform
- pos: -59.5,20.5
- parent: 2
- - uid: 14650
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,34.5
- parent: 2
-- proto: ComputerAnalysisConsole
- entities:
- - uid: 14651
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-46.5
- parent: 2
- - uid: 14652
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-41.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 26401:
- - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
-- proto: computerBodyScanner
- entities:
- - uid: 14653
- components:
- - type: Transform
- pos: -1.5,-13.5
- parent: 2
- - uid: 14654
- components:
- - type: Transform
- pos: 47.5,-13.5
- parent: 2
- - uid: 14655
- components:
- - type: Transform
- pos: 36.5,-43.5
- parent: 2
- - uid: 14656
- components:
- - type: Transform
- pos: 45.5,-37.5
- parent: 2
-- proto: ComputerBroken
- entities:
- - uid: 14657
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-76.5
- parent: 2
- - uid: 14658
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-29.5
- parent: 2
- - uid: 14659
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,62.5
- parent: 2
- - uid: 14660
- components:
- - type: Transform
- pos: -40.5,-35.5
- parent: 2
- - uid: 14661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,-40.5
- parent: 2
- - uid: 14662
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-38.5
- parent: 2
- - uid: 14663
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 81.5,-19.5
- parent: 2
- - uid: 14664
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-19.5
- parent: 2
- - uid: 14665
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-37.5
- parent: 2
- - uid: 14666
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-44.5
- parent: 2
-- proto: ComputerCargoBounty
- entities:
- - uid: 14667
- components:
- - type: Transform
- pos: 16.5,39.5
- parent: 2
-- proto: ComputerCargoOrders
- entities:
- - uid: 14668
- components:
- - type: Transform
- pos: -3.5,18.5
- parent: 2
- - uid: 14669
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,50.5
- parent: 2
- - uid: 14670
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,31.5
- parent: 2
- - uid: 14671
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,33.5
- parent: 2
- - uid: 14672
- components:
- - type: Transform
- pos: 18.5,39.5
- parent: 2
- - uid: 14673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,35.5
- parent: 2
- - uid: 14674
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,42.5
- parent: 2
-- proto: ComputerCargoShuttle
- entities:
- - uid: 14675
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,37.5
- parent: 2
-- proto: ComputerComms
- entities:
- - uid: 14676
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,5.5
- parent: 2
- - uid: 14677
- components:
- - type: Transform
- pos: -0.5,14.5
- parent: 2
-- proto: ComputerCrewMonitoring
- entities:
- - uid: 14678
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-28.5
- parent: 2
- - uid: 14679
- components:
- - type: Transform
- pos: 50.5,9.5
- parent: 2
- - uid: 14680
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,20.5
- parent: 2
- - uid: 14681
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-31.5
- parent: 2
- - uid: 14682
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-48.5
- parent: 2
- - uid: 14683
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,62.5
- parent: 2
- - uid: 14684
- components:
- - type: Transform
- pos: -4.5,18.5
- parent: 2
- - uid: 14685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-60.5
- parent: 2
-- proto: ComputerCriminalRecords
- entities:
- - uid: 14686
- components:
- - type: Transform
- pos: 51.5,9.5
- parent: 2
- - uid: 14687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,1.5
- parent: 2
- - uid: 14688
- components:
- - type: Transform
- pos: -1.5,18.5
- parent: 2
- - uid: 14689
- components:
- - type: Transform
- pos: 6.5,-57.5
- parent: 2
- - uid: 14690
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-55.5
- parent: 2
- - uid: 14691
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,21.5
- parent: 2
- - uid: 14692
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-29.5
- parent: 2
- - uid: 14693
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-4.5
- parent: 2
- - uid: 14694
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,21.5
- parent: 2
- - uid: 14695
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,9.5
- parent: 2
- - uid: 14696
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,9.5
- parent: 2
- - uid: 14697
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-24.5
- parent: 2
- - uid: 14698
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,60.5
- parent: 2
-- proto: ComputerFrame
- entities:
- - uid: 14699
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -122.5,45.5
- parent: 2
- - uid: 14700
- components:
- - type: Transform
- pos: 47.5,-33.5
- parent: 2
- - uid: 14701
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -114.5,45.5
- parent: 2
-- proto: ComputerId
- entities:
- - uid: 14702
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,6.5
- parent: 2
- - uid: 14703
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,3.5
- parent: 2
-- proto: ComputerMassMedia
- entities:
- - uid: 14704
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,21.5
- parent: 2
-- proto: ComputerMedicalRecords
- entities:
- - uid: 14705
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-47.5
- parent: 2
- - uid: 14706
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-58.5
- parent: 2
- - uid: 14707
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,62.5
- parent: 2
-- proto: ComputerPowerMonitoring
- entities:
- - uid: 14708
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,63.5
- parent: 2
- - uid: 14709
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-0.5
- parent: 2
- - uid: 14710
- components:
- - type: Transform
- pos: 3.5,18.5
- parent: 2
- - uid: 14711
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-5.5
- parent: 2
- - uid: 14712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-40.5
- parent: 2
- - uid: 14713
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-9.5
- parent: 2
- - uid: 14714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,88.5
- parent: 2
- - uid: 14715
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,8.5
- parent: 2
- - uid: 14716
- components:
- - type: Transform
- pos: -19.5,-29.5
- parent: 2
- - uid: 14717
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,38.5
- parent: 2
-- proto: ComputerRadar
- entities:
- - uid: 14718
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,89.5
- parent: 2
- - uid: 14719
- components:
- - type: Transform
- pos: 0.5,18.5
- parent: 2
- - uid: 14720
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,9.5
- parent: 2
- - uid: 14721
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-81.5
- parent: 2
- - uid: 14722
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,40.5
- parent: 2
-- proto: ComputerResearchAndDevelopment
- entities:
- - uid: 14723
- components:
- - type: Transform
- pos: 7.5,16.5
- parent: 2
- - uid: 14724
- components:
- - type: Transform
- pos: -7.5,-29.5
- parent: 2
- - uid: 14725
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-37.5
- parent: 2
- - uid: 14726
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-42.5
- parent: 2
- - uid: 14727
- components:
- - type: Transform
- pos: -20.5,-49.5
- parent: 2
- - uid: 14728
- components:
- - type: Transform
- pos: -13.5,-55.5
- parent: 2
- - uid: 14729
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-52.5
- parent: 2
-- proto: ComputerRoboticsControl
- entities:
- - uid: 14730
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-42.5
- parent: 2
-- proto: ComputerSalvageExpedition
- entities:
- - uid: 14731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,35.5
- parent: 2
-- proto: ComputerShuttle
- entities:
- - uid: 38751
- components:
- - type: Transform
- pos: 1.5,4.5
- parent: 38714
-- proto: ComputerShuttleCargo
- entities:
- - uid: 14732
- components:
- - type: Transform
- pos: 17.5,39.5
- parent: 2
-- proto: ComputerShuttleSalvage
- entities:
- - uid: 14733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,36.5
- parent: 2
-- proto: ComputerSolarControl
- entities:
- - uid: 14734
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,63.5
- parent: 2
- - uid: 14735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-75.5
- parent: 2
- - uid: 14736
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,86.5
- parent: 2
- - uid: 14737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 78.5,-46.5
- parent: 2
-- proto: ComputerStationRecords
- entities:
- - uid: 14738
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,2.5
- parent: 2
- - uid: 14739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,7.5
- parent: 2
- - uid: 14740
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,21.5
- parent: 2
- - uid: 14741
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-4.5
- parent: 2
- - uid: 14742
- components:
- - type: Transform
- pos: 2.5,18.5
- parent: 2
- - uid: 14743
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-25.5
- parent: 2
- - uid: 14744
- components:
- - type: Transform
- pos: 5.5,-57.5
- parent: 2
- - uid: 14745
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-54.5
- parent: 2
- - uid: 14746
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-29.5
- parent: 2
- - uid: 14747
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,10.5
- parent: 2
-- proto: ComputerSurveillanceCameraMonitor
- entities:
- - uid: 14748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,62.5
- parent: 2
- - uid: 14749
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,8.5
- parent: 2
- - uid: 14750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-59.5
- parent: 2
- - uid: 14751
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,19.5
- parent: 2
- - uid: 14752
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,21.5
- parent: 2
- - uid: 14753
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,31.5
- parent: 2
- - uid: 14754
- components:
- - type: Transform
- pos: 11.5,44.5
- parent: 2
- - uid: 14755
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,8.5
- parent: 2
- - uid: 14756
- components:
- - type: Transform
- pos: 4.5,-57.5
- parent: 2
- - uid: 14757
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-30.5
- parent: 2
- - uid: 14758
- components:
- - type: Transform
- pos: -0.5,18.5
- parent: 2
- - uid: 14759
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,8.5
- parent: 2
- - uid: 14760
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-26.5
- parent: 2
-- proto: ComputerSurveillanceWirelessCameraMonitor
- entities:
- - uid: 14761
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,22.5
- parent: 2
-- proto: ComputerTelevision
- entities:
- - uid: 14762
- components:
- - type: Transform
- pos: 33.5,8.5
- parent: 2
- - uid: 14763
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,6.5
- parent: 2
-- proto: ContainmentFieldGenerator
- entities:
- - uid: 14764
- components:
- - type: Transform
- pos: 12.5,-5.5
- parent: 2
- - uid: 14765
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-9.5
- parent: 2
- - uid: 14766
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-10.5
- parent: 2
- - uid: 14767
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-9.5
- parent: 2
- - uid: 14768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-10.5
- parent: 2
-- proto: ConvertAltarSpawner
- entities:
- - uid: 14769
- components:
- - type: Transform
- pos: -16.5,-73.5
- parent: 2
-- proto: ConveyorBelt
- entities:
- - uid: 14770
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14772
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14773
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14774
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,57.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14777
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14778
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14779
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14780
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,47.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14781
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14782
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14783
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14784
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14785
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14787
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14789
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14791
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14792
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,42.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14793
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14794
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,59.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14795
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14796
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14797
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,46.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,58.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14799
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,57.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14800
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14802
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,53.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14803
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,58.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14805
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,42.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14806
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,43.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,58.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14808
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,60.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14809
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,45.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14810
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14811
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33054
- - uid: 14812
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14813
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,44.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14814
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14815
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14816
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14817
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33055
- - uid: 14818
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,57.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14819
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,57.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14820
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,57.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14821
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14822
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,58.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14823
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14824
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
- - uid: 14825
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,58.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 33059
-- proto: CounterWoodFrame
- entities:
- - uid: 14826
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-35.5
- parent: 2
-- proto: CowToolboxFilled
- entities:
- - uid: 14827
- components:
- - type: Transform
- pos: -45.2872,-42.39937
- parent: 2
- - uid: 14828
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.51572,-31.41529
- parent: 2
- - type: Physics
- canCollide: False
-- proto: CrateArtifactContainer
- entities:
- - uid: 14829
- components:
- - type: Transform
- pos: -32.5,-46.5
- parent: 2
-- proto: CrateChemistrySupplies
- entities:
- - uid: 14830
- components:
- - type: Transform
- pos: 22.5,-30.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateEmergencyInternals
- entities:
- - uid: 14831
- components:
- - type: Transform
- pos: -24.5,15.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14832
- components:
- - type: Transform
- pos: 21.5,-30.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14833
- components:
- - type: Transform
- pos: -28.5,-77.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14834
- components:
- - type: Transform
- pos: 12.5,80.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateEmptySpawner
- entities:
- - uid: 14835
- components:
- - type: Transform
- pos: 48.5,-8.5
- parent: 2
- - uid: 14836
- components:
- - type: Transform
- pos: 22.5,41.5
- parent: 2
- - uid: 14837
- components:
- - type: Transform
- pos: 26.5,-20.5
- parent: 2
- - uid: 14838
- components:
- - type: Transform
- pos: 9.5,58.5
- parent: 2
- - uid: 14839
- components:
- - type: Transform
- pos: 36.5,-52.5
- parent: 2
-- proto: CrateEngineeringSecure
- entities:
- - uid: 1057
- components:
- - type: Transform
- pos: 16.5,77.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 1.885598
- - 7.0934405
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1063
- - 1060
- - 1062
- - 1058
- - 1059
- - 1061
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14840
-=======
- pos: -16.5,-65.5
- parent: 2
- - uid: 11179
- components:
- - type: Transform
- pos: -15.5,-65.5
- parent: 2
- - uid: 11180
- components:
- - type: Transform
- pos: -15.5,-64.5
- parent: 2
- - uid: 11181
- components:
- - type: Transform
- pos: -15.5,-63.5
- parent: 2
- - uid: 11182
- components:
- - type: Transform
- pos: -23.5,-61.5
- parent: 2
- - uid: 11183
- components:
- - type: Transform
- pos: -22.5,-61.5
- parent: 2
- - uid: 11184
- components:
- - type: Transform
- pos: -21.5,-61.5
- parent: 2
- - uid: 11185
- components:
- - type: Transform
- pos: -20.5,-61.5
- parent: 2
- - uid: 11186
- components:
- - type: Transform
- pos: -19.5,-61.5
- parent: 2
- - uid: 11187
- components:
- - type: Transform
- pos: -18.5,-61.5
- parent: 2
- - uid: 11188
- components:
- - type: Transform
- pos: -18.5,-60.5
- parent: 2
- - uid: 11189
- components:
- - type: Transform
- pos: -26.5,-61.5
- parent: 2
- - uid: 11190
- components:
- - type: Transform
- pos: -26.5,-60.5
- parent: 2
- - uid: 11191
- components:
- - type: Transform
- pos: -26.5,-59.5
- parent: 2
- - uid: 11192
- components:
- - type: Transform
- pos: -26.5,-58.5
- parent: 2
- - uid: 11193
- components:
- - type: Transform
- pos: -26.5,-57.5
- parent: 2
- - uid: 11194
- components:
- - type: Transform
- pos: -27.5,-57.5
- parent: 2
- - uid: 11195
- components:
- - type: Transform
- pos: -28.5,-57.5
- parent: 2
- - uid: 11196
- components:
- - type: Transform
- pos: -29.5,-57.5
- parent: 2
- - uid: 11197
- components:
- - type: Transform
- pos: -30.5,-57.5
- parent: 2
- - uid: 11198
- components:
- - type: Transform
- pos: -31.5,-57.5
- parent: 2
- - uid: 11199
- components:
- - type: Transform
- pos: -32.5,-57.5
- parent: 2
- - uid: 11200
- components:
- - type: Transform
- pos: -33.5,-57.5
- parent: 2
- - uid: 11201
- components:
- - type: Transform
- pos: -34.5,-57.5
- parent: 2
- - uid: 11202
- components:
- - type: Transform
- pos: -35.5,-57.5
- parent: 2
- - uid: 11203
- components:
- - type: Transform
- pos: -36.5,-57.5
- parent: 2
- - uid: 11204
- components:
- - type: Transform
- pos: -36.5,-58.5
- parent: 2
- - uid: 11205
- components:
- - type: Transform
- pos: -36.5,-59.5
- parent: 2
- - uid: 11206
- components:
- - type: Transform
- pos: -36.5,-60.5
- parent: 2
- - uid: 11207
- components:
- - type: Transform
- pos: -36.5,-61.5
- parent: 2
- - uid: 11208
- components:
- - type: Transform
- pos: -36.5,-62.5
- parent: 2
- - uid: 11209
- components:
- - type: Transform
- pos: -36.5,-63.5
- parent: 2
- - uid: 11210
- components:
- - type: Transform
- pos: -36.5,-64.5
- parent: 2
- - uid: 11211
- components:
- - type: Transform
- pos: -36.5,-65.5
- parent: 2
- - uid: 11212
- components:
- - type: Transform
- pos: -37.5,-65.5
- parent: 2
- - uid: 11213
- components:
- - type: Transform
- pos: -38.5,-65.5
- parent: 2
- - uid: 11214
- components:
- - type: Transform
- pos: -39.5,-65.5
- parent: 2
- - uid: 11215
- components:
- - type: Transform
- pos: -39.5,-64.5
- parent: 2
- - uid: 11216
- components:
- - type: Transform
- pos: -39.5,-63.5
- parent: 2
- - uid: 11217
- components:
- - type: Transform
- pos: -28.5,-70.5
- parent: 2
- - uid: 11218
- components:
- - type: Transform
- pos: -27.5,-70.5
- parent: 2
- - uid: 11219
- components:
- - type: Transform
- pos: -29.5,-70.5
- parent: 2
- - uid: 11220
- components:
- - type: Transform
- pos: -30.5,-70.5
- parent: 2
- - uid: 11221
- components:
- - type: Transform
- pos: -31.5,-70.5
- parent: 2
- - uid: 11222
- components:
- - type: Transform
- pos: -32.5,-70.5
- parent: 2
- - uid: 11223
- components:
- - type: Transform
- pos: -32.5,-71.5
- parent: 2
- - uid: 11224
- components:
- - type: Transform
- pos: -32.5,-72.5
- parent: 2
- - uid: 11225
- components:
- - type: Transform
- pos: -32.5,-73.5
- parent: 2
- - uid: 11226
- components:
- - type: Transform
- pos: -32.5,-74.5
- parent: 2
- - uid: 11227
- components:
- - type: Transform
- pos: -31.5,-74.5
- parent: 2
- - uid: 11228
- components:
- - type: Transform
- pos: -30.5,-74.5
- parent: 2
- - uid: 11229
- components:
- - type: Transform
- pos: -29.5,-74.5
- parent: 2
- - uid: 11230
- components:
- - type: Transform
- pos: -28.5,-74.5
- parent: 2
- - uid: 11231
- components:
- - type: Transform
- pos: -28.5,-69.5
- parent: 2
- - uid: 11232
- components:
- - type: Transform
- pos: -31.5,-56.5
- parent: 2
- - uid: 11233
- components:
- - type: Transform
- pos: -31.5,-55.5
- parent: 2
- - uid: 11234
- components:
- - type: Transform
- pos: -33.5,-56.5
- parent: 2
- - uid: 11235
- components:
- - type: Transform
- pos: -33.5,-55.5
- parent: 2
- - uid: 11236
- components:
- - type: Transform
- pos: -33.5,-54.5
- parent: 2
- - uid: 11237
- components:
- - type: Transform
- pos: -33.5,-53.5
- parent: 2
- - uid: 11238
- components:
- - type: Transform
- pos: -33.5,-52.5
- parent: 2
- - uid: 11239
- components:
- - type: Transform
- pos: -32.5,-52.5
- parent: 2
- - uid: 11240
- components:
- - type: Transform
- pos: -31.5,-52.5
- parent: 2
- - uid: 11241
- components:
- - type: Transform
- pos: -30.5,-52.5
- parent: 2
- - uid: 11242
- components:
- - type: Transform
- pos: -29.5,-52.5
- parent: 2
- - uid: 11243
- components:
- - type: Transform
- pos: -28.5,-52.5
- parent: 2
- - uid: 11244
- components:
- - type: Transform
- pos: -28.5,-51.5
- parent: 2
- - uid: 11245
- components:
- - type: Transform
- pos: -28.5,-50.5
- parent: 2
- - uid: 11246
- components:
- - type: Transform
- pos: -28.5,-49.5
- parent: 2
- - uid: 11247
- components:
- - type: Transform
- pos: -28.5,-48.5
- parent: 2
- - uid: 11248
- components:
- - type: Transform
- pos: -36.5,-49.5
- parent: 2
- - uid: 11249
- components:
- - type: Transform
- pos: -36.5,-50.5
- parent: 2
- - uid: 11250
- components:
- - type: Transform
- pos: -36.5,-51.5
- parent: 2
- - uid: 11251
- components:
- - type: Transform
- pos: -36.5,-52.5
- parent: 2
- - uid: 11252
- components:
- - type: Transform
- pos: -35.5,-52.5
- parent: 2
- - uid: 11253
- components:
- - type: Transform
- pos: -34.5,-52.5
- parent: 2
- - uid: 11254
- components:
- - type: Transform
- pos: -33.5,-52.5
- parent: 2
- - uid: 11255
- components:
- - type: Transform
- pos: -21.5,-30.5
- parent: 2
- - uid: 11256
- components:
- - type: Transform
- pos: -22.5,-30.5
- parent: 2
- - uid: 11257
- components:
- - type: Transform
- pos: -22.5,-31.5
- parent: 2
- - uid: 11258
- components:
- - type: Transform
- pos: -22.5,-32.5
- parent: 2
- - uid: 11259
- components:
- - type: Transform
- pos: -22.5,-33.5
- parent: 2
- - uid: 11260
- components:
- - type: Transform
- pos: -22.5,-34.5
- parent: 2
- - uid: 11261
- components:
- - type: Transform
- pos: -23.5,-34.5
- parent: 2
- - uid: 11262
- components:
- - type: Transform
- pos: -24.5,-34.5
- parent: 2
- - uid: 11263
- components:
- - type: Transform
- pos: -25.5,-34.5
- parent: 2
- - uid: 11264
- components:
- - type: Transform
- pos: -26.5,-34.5
- parent: 2
- - uid: 11265
- components:
- - type: Transform
- pos: -27.5,-34.5
- parent: 2
- - uid: 11266
- components:
- - type: Transform
- pos: -28.5,-34.5
- parent: 2
- - uid: 11267
- components:
- - type: Transform
- pos: -28.5,-33.5
- parent: 2
- - uid: 11268
- components:
- - type: Transform
- pos: -28.5,-32.5
- parent: 2
- - uid: 11269
- components:
- - type: Transform
- pos: -28.5,-31.5
- parent: 2
- - uid: 11270
- components:
- - type: Transform
- pos: -28.5,-30.5
- parent: 2
- - uid: 11271
- components:
- - type: Transform
- pos: -28.5,-29.5
- parent: 2
- - uid: 11272
- components:
- - type: Transform
- pos: -28.5,-28.5
- parent: 2
- - uid: 11273
- components:
- - type: Transform
- pos: -28.5,-27.5
- parent: 2
- - uid: 11274
- components:
- - type: Transform
- pos: -28.5,-26.5
- parent: 2
- - uid: 11275
- components:
- - type: Transform
- pos: -28.5,-25.5
- parent: 2
- - uid: 11276
- components:
- - type: Transform
- pos: -27.5,-25.5
- parent: 2
- - uid: 11277
- components:
- - type: Transform
- pos: -26.5,-25.5
- parent: 2
- - uid: 11278
- components:
- - type: Transform
- pos: -26.5,-24.5
- parent: 2
- - uid: 11279
- components:
- - type: Transform
- pos: -32.5,-47.5
- parent: 2
- - uid: 11280
- components:
- - type: Transform
- pos: -32.5,-46.5
- parent: 2
- - uid: 11281
- components:
- - type: Transform
- pos: -32.5,-45.5
- parent: 2
- - uid: 11282
- components:
- - type: Transform
- pos: -32.5,-44.5
- parent: 2
- - uid: 11283
- components:
- - type: Transform
- pos: -32.5,-43.5
- parent: 2
- - uid: 11284
- components:
- - type: Transform
- pos: -32.5,-42.5
- parent: 2
- - uid: 11285
- components:
- - type: Transform
- pos: -32.5,-41.5
- parent: 2
- - uid: 11286
- components:
- - type: Transform
- pos: -32.5,-40.5
- parent: 2
- - uid: 11287
- components:
- - type: Transform
- pos: -32.5,-39.5
- parent: 2
- - uid: 11288
- components:
- - type: Transform
- pos: -32.5,-38.5
- parent: 2
- - uid: 11289
- components:
- - type: Transform
- pos: -31.5,-38.5
- parent: 2
- - uid: 11290
- components:
- - type: Transform
- pos: -30.5,-38.5
- parent: 2
- - uid: 11291
- components:
- - type: Transform
- pos: -29.5,-38.5
- parent: 2
- - uid: 11292
- components:
- - type: Transform
- pos: -28.5,-38.5
- parent: 2
- - uid: 11293
- components:
- - type: Transform
- pos: -28.5,-39.5
- parent: 2
- - uid: 11294
- components:
- - type: Transform
- pos: -28.5,-40.5
- parent: 2
- - uid: 11295
- components:
- - type: Transform
- pos: -30.5,-40.5
- parent: 2
- - uid: 11296
- components:
- - type: Transform
- pos: -29.5,-40.5
- parent: 2
- - uid: 11297
- components:
- - type: Transform
- pos: -28.5,-37.5
- parent: 2
- - uid: 11298
- components:
- - type: Transform
- pos: -28.5,-36.5
- parent: 2
- - uid: 11299
- components:
- - type: Transform
- pos: -28.5,-35.5
- parent: 2
- - uid: 11300
- components:
- - type: Transform
- pos: -28.5,-34.5
- parent: 2
- - uid: 11301
- components:
- - type: Transform
- pos: -23.5,-35.5
- parent: 2
- - uid: 11302
- components:
- - type: Transform
- pos: -23.5,-36.5
- parent: 2
- - uid: 11303
- components:
- - type: Transform
- pos: -23.5,-37.5
- parent: 2
- - uid: 11304
- components:
- - type: Transform
- pos: -23.5,-38.5
- parent: 2
- - uid: 11305
- components:
- - type: Transform
- pos: -23.5,-39.5
- parent: 2
- - uid: 11306
- components:
- - type: Transform
- pos: -23.5,-40.5
- parent: 2
- - uid: 11307
- components:
- - type: Transform
- pos: -23.5,-41.5
- parent: 2
- - uid: 11308
- components:
- - type: Transform
- pos: -23.5,-42.5
- parent: 2
- - uid: 11309
- components:
- - type: Transform
- pos: -23.5,-43.5
- parent: 2
- - uid: 11310
- components:
- - type: Transform
- pos: -23.5,-44.5
- parent: 2
- - uid: 11311
- components:
- - type: Transform
- pos: -23.5,-45.5
- parent: 2
- - uid: 11312
- components:
- - type: Transform
- pos: -25.5,-42.5
- parent: 2
- - uid: 11313
- components:
- - type: Transform
- pos: -25.5,-43.5
- parent: 2
- - uid: 11314
- components:
- - type: Transform
- pos: -25.5,-44.5
- parent: 2
- - uid: 11315
- components:
- - type: Transform
- pos: -25.5,-45.5
- parent: 2
- - uid: 11316
- components:
- - type: Transform
- pos: -24.5,-45.5
- parent: 2
- - uid: 11317
- components:
- - type: Transform
- pos: -31.5,-45.5
- parent: 2
- - uid: 11318
- components:
- - type: Transform
- pos: -30.5,-45.5
- parent: 2
- - uid: 11319
- components:
- - type: Transform
- pos: -29.5,-45.5
- parent: 2
- - uid: 11320
- components:
- - type: Transform
- pos: -28.5,-45.5
- parent: 2
- - uid: 11321
- components:
- - type: Transform
- pos: -27.5,-45.5
- parent: 2
- - uid: 11322
- components:
- - type: Transform
- pos: -26.5,-45.5
- parent: 2
- - uid: 11323
- components:
- - type: Transform
- pos: -28.5,-44.5
- parent: 2
- - uid: 11324
- components:
- - type: Transform
- pos: -28.5,-42.5
- parent: 2
- - uid: 11325
- components:
- - type: Transform
- pos: -28.5,-41.5
- parent: 2
- - uid: 11326
- components:
- - type: Transform
- pos: -28.5,-42.5
- parent: 2
- - uid: 11327
- components:
- - type: Transform
- pos: -28.5,-43.5
- parent: 2
- - uid: 11328
- components:
- - type: Transform
- pos: -20.5,-36.5
- parent: 2
- - uid: 11329
- components:
- - type: Transform
- pos: -20.5,-37.5
- parent: 2
- - uid: 11330
- components:
- - type: Transform
- pos: -20.5,-38.5
- parent: 2
- - uid: 11331
- components:
- - type: Transform
- pos: -19.5,-38.5
- parent: 2
- - uid: 11332
- components:
- - type: Transform
- pos: -18.5,-38.5
- parent: 2
- - uid: 11333
- components:
- - type: Transform
- pos: -18.5,-39.5
- parent: 2
- - uid: 11334
- components:
- - type: Transform
- pos: -17.5,-39.5
- parent: 2
- - uid: 11335
- components:
- - type: Transform
- pos: -16.5,-39.5
- parent: 2
- - uid: 11336
- components:
- - type: Transform
- pos: -15.5,-39.5
- parent: 2
- - uid: 11337
- components:
- - type: Transform
- pos: -14.5,-39.5
- parent: 2
- - uid: 11338
- components:
- - type: Transform
- pos: -13.5,-39.5
- parent: 2
- - uid: 11339
- components:
- - type: Transform
- pos: -13.5,-38.5
- parent: 2
- - uid: 11340
- components:
- - type: Transform
- pos: -13.5,-37.5
- parent: 2
- - uid: 11341
- components:
- - type: Transform
- pos: -13.5,-36.5
- parent: 2
- - uid: 11342
- components:
- - type: Transform
- pos: -13.5,-35.5
- parent: 2
- - uid: 11343
- components:
- - type: Transform
- pos: -13.5,-34.5
- parent: 2
- - uid: 11344
- components:
- - type: Transform
- pos: -14.5,-34.5
- parent: 2
- - uid: 11345
- components:
- - type: Transform
- pos: -15.5,-34.5
- parent: 2
- - uid: 11346
- components:
- - type: Transform
- pos: -16.5,-34.5
- parent: 2
- - uid: 11347
- components:
- - type: Transform
- pos: -17.5,-34.5
- parent: 2
- - uid: 11348
- components:
- - type: Transform
- pos: -18.5,-34.5
- parent: 2
- - uid: 11349
- components:
- - type: Transform
- pos: -19.5,-34.5
- parent: 2
- - uid: 11350
- components:
- - type: Transform
- pos: -20.5,-34.5
- parent: 2
- - uid: 11351
- components:
- - type: Transform
- pos: -21.5,-34.5
- parent: 2
- - uid: 11352
- components:
- - type: Transform
- pos: -13.5,-40.5
- parent: 2
- - uid: 11353
- components:
- - type: Transform
- pos: -12.5,-34.5
- parent: 2
- - uid: 11354
- components:
- - type: Transform
- pos: -11.5,-34.5
- parent: 2
- - uid: 11355
- components:
- - type: Transform
- pos: -10.5,-34.5
- parent: 2
- - uid: 11356
- components:
- - type: Transform
- pos: -9.5,-34.5
- parent: 2
- - uid: 11357
- components:
- - type: Transform
- pos: -8.5,-34.5
- parent: 2
- - uid: 11358
- components:
- - type: Transform
- pos: -8.5,-33.5
- parent: 2
- - uid: 11359
- components:
- - type: Transform
- pos: -8.5,-32.5
- parent: 2
- - uid: 11360
- components:
- - type: Transform
- pos: -8.5,-31.5
- parent: 2
- - uid: 11361
- components:
- - type: Transform
- pos: -8.5,-30.5
- parent: 2
- - uid: 11362
- components:
- - type: Transform
- pos: -8.5,-29.5
- parent: 2
- - uid: 11363
- components:
- - type: Transform
- pos: -9.5,-29.5
- parent: 2
- - uid: 11364
- components:
- - type: Transform
- pos: -9.5,-28.5
- parent: 2
- - uid: 11365
- components:
- - type: Transform
- pos: -12.5,-40.5
- parent: 2
- - uid: 11366
- components:
- - type: Transform
- pos: -11.5,-40.5
- parent: 2
- - uid: 11367
- components:
- - type: Transform
- pos: -10.5,-40.5
- parent: 2
- - uid: 11368
- components:
- - type: Transform
- pos: -13.5,-41.5
- parent: 2
- - uid: 11369
- components:
- - type: Transform
- pos: -10.5,-39.5
- parent: 2
- - uid: 11370
- components:
- - type: Transform
- pos: -10.5,-38.5
- parent: 2
- - uid: 11371
- components:
- - type: Transform
- pos: -10.5,-37.5
- parent: 2
- - uid: 11372
- components:
- - type: Transform
- pos: -10.5,-36.5
- parent: 2
- - uid: 11373
- components:
- - type: Transform
- pos: -13.5,-42.5
- parent: 2
- - uid: 11374
- components:
- - type: Transform
- pos: -13.5,-43.5
- parent: 2
- - uid: 11375
- components:
- - type: Transform
- pos: -13.5,-44.5
- parent: 2
- - uid: 11376
- components:
- - type: Transform
- pos: -13.5,-45.5
- parent: 2
- - uid: 11377
- components:
- - type: Transform
- pos: -13.5,-46.5
- parent: 2
- - uid: 11378
- components:
- - type: Transform
- pos: -13.5,-47.5
- parent: 2
- - uid: 11379
- components:
- - type: Transform
- pos: -13.5,-48.5
- parent: 2
- - uid: 11380
- components:
- - type: Transform
- pos: -13.5,-49.5
- parent: 2
- - uid: 11381
- components:
- - type: Transform
- pos: -12.5,-49.5
- parent: 2
- - uid: 11382
- components:
- - type: Transform
- pos: -11.5,-49.5
- parent: 2
- - uid: 11383
- components:
- - type: Transform
- pos: -10.5,-49.5
- parent: 2
- - uid: 11384
- components:
- - type: Transform
- pos: -9.5,-49.5
- parent: 2
- - uid: 11385
- components:
- - type: Transform
- pos: -8.5,-49.5
- parent: 2
- - uid: 11386
- components:
- - type: Transform
- pos: -7.5,-49.5
- parent: 2
- - uid: 11387
- components:
- - type: Transform
- pos: -6.5,-49.5
- parent: 2
- - uid: 11388
- components:
- - type: Transform
- pos: -5.5,-49.5
- parent: 2
- - uid: 11389
- components:
- - type: Transform
- pos: -5.5,-48.5
- parent: 2
- - uid: 11390
- components:
- - type: Transform
- pos: -5.5,-47.5
- parent: 2
- - uid: 11391
- components:
- - type: Transform
- pos: -5.5,-46.5
- parent: 2
- - uid: 11392
- components:
- - type: Transform
- pos: -5.5,-45.5
- parent: 2
- - uid: 11393
- components:
- - type: Transform
- pos: -4.5,-45.5
- parent: 2
- - uid: 11394
- components:
- - type: Transform
- pos: -3.5,-45.5
- parent: 2
- - uid: 11395
- components:
- - type: Transform
- pos: -3.5,-44.5
- parent: 2
- - uid: 11396
- components:
- - type: Transform
- pos: -5.5,-44.5
- parent: 2
- - uid: 11397
- components:
- - type: Transform
- pos: -5.5,-43.5
- parent: 2
- - uid: 11398
- components:
- - type: Transform
- pos: -5.5,-42.5
- parent: 2
- - uid: 11399
- components:
- - type: Transform
- pos: -5.5,-41.5
- parent: 2
- - uid: 11400
- components:
- - type: Transform
- pos: -5.5,-40.5
- parent: 2
- - uid: 11401
- components:
- - type: Transform
- pos: -6.5,-40.5
- parent: 2
- - uid: 11402
- components:
- - type: Transform
- pos: -7.5,-40.5
- parent: 2
- - uid: 11403
- components:
- - type: Transform
- pos: -8.5,-40.5
- parent: 2
- - uid: 11404
- components:
- - type: Transform
- pos: -9.5,-40.5
- parent: 2
- - uid: 11405
- components:
- - type: Transform
- pos: -25.5,-33.5
- parent: 2
- - uid: 11406
- components:
- - type: Transform
- pos: -25.5,-32.5
- parent: 2
- - uid: 11407
- components:
- - type: Transform
- pos: -17.5,-22.5
- parent: 2
- - uid: 11408
- components:
- - type: Transform
- pos: -17.5,-23.5
- parent: 2
- - uid: 11409
- components:
- - type: Transform
- pos: -18.5,-23.5
- parent: 2
- - uid: 11410
- components:
- - type: Transform
- pos: -18.5,-24.5
- parent: 2
- - uid: 11411
- components:
- - type: Transform
- pos: -18.5,-25.5
- parent: 2
- - uid: 11412
- components:
- - type: Transform
- pos: -19.5,-25.5
- parent: 2
- - uid: 11413
- components:
- - type: Transform
- pos: -20.5,-25.5
- parent: 2
- - uid: 11414
- components:
- - type: Transform
- pos: -22.5,-25.5
- parent: 2
- - uid: 11415
- components:
- - type: Transform
- pos: -21.5,-25.5
- parent: 2
- - uid: 11416
- components:
- - type: Transform
- pos: -22.5,-26.5
- parent: 2
- - uid: 11417
- components:
- - type: Transform
- pos: -22.5,-27.5
- parent: 2
- - uid: 11418
- components:
- - type: Transform
- pos: -22.5,-28.5
- parent: 2
- - uid: 11419
- components:
- - type: Transform
- pos: -22.5,-29.5
- parent: 2
- - uid: 11420
- components:
- - type: Transform
- pos: -22.5,-30.5
- parent: 2
- - uid: 11421
- components:
- - type: Transform
- pos: -22.5,-31.5
- parent: 2
- - uid: 11422
- components:
- - type: Transform
- pos: -22.5,-32.5
- parent: 2
- - uid: 11423
- components:
- - type: Transform
- pos: -22.5,-33.5
- parent: 2
- - uid: 11424
- components:
- - type: Transform
- pos: -13.5,-50.5
- parent: 2
- - uid: 11425
- components:
- - type: Transform
- pos: -14.5,-50.5
- parent: 2
- - uid: 11426
- components:
- - type: Transform
- pos: -15.5,-50.5
- parent: 2
- - uid: 11427
- components:
- - type: Transform
- pos: -16.5,-50.5
- parent: 2
- - uid: 11428
- components:
- - type: Transform
- pos: -15.5,-51.5
- parent: 2
- - uid: 11429
- components:
- - type: Transform
- pos: -15.5,-52.5
- parent: 2
- - uid: 11430
- components:
- - type: Transform
- pos: -20.5,-50.5
- parent: 2
- - uid: 11431
- components:
- - type: Transform
- pos: -20.5,-49.5
- parent: 2
- - uid: 11432
- components:
- - type: Transform
- pos: -20.5,-48.5
- parent: 2
- - uid: 11433
- components:
- - type: Transform
- pos: -15.5,-53.5
- parent: 2
- - uid: 11434
- components:
- - type: Transform
- pos: -15.5,-54.5
- parent: 2
- - uid: 11435
- components:
- - type: Transform
- pos: -15.5,-55.5
- parent: 2
- - uid: 11436
- components:
- - type: Transform
- pos: -15.5,-56.5
- parent: 2
- - uid: 11437
- components:
- - type: Transform
- pos: -16.5,-56.5
- parent: 2
- - uid: 11438
- components:
- - type: Transform
- pos: -17.5,-56.5
- parent: 2
- - uid: 11439
- components:
- - type: Transform
- pos: -18.5,-56.5
- parent: 2
- - uid: 11440
- components:
- - type: Transform
- pos: -19.5,-56.5
- parent: 2
- - uid: 11441
- components:
- - type: Transform
- pos: -19.5,-55.5
- parent: 2
- - uid: 11442
- components:
- - type: Transform
- pos: -19.5,-54.5
- parent: 2
- - uid: 11443
- components:
- - type: Transform
- pos: -3.5,-57.5
- parent: 2
- - uid: 11444
- components:
- - type: Transform
- pos: -4.5,-57.5
- parent: 2
- - uid: 11445
- components:
- - type: Transform
- pos: -5.5,-57.5
- parent: 2
- - uid: 11446
- components:
- - type: Transform
- pos: -6.5,-57.5
- parent: 2
- - uid: 11447
- components:
- - type: Transform
- pos: -14.5,-65.5
- parent: 2
- - uid: 11448
- components:
- - type: Transform
- pos: -13.5,-65.5
- parent: 2
- - uid: 11449
- components:
- - type: Transform
- pos: -12.5,-65.5
- parent: 2
- - uid: 11450
- components:
- - type: Transform
- pos: -11.5,-65.5
- parent: 2
- - uid: 11451
- components:
- - type: Transform
- pos: -10.5,-65.5
- parent: 2
- - uid: 11452
- components:
- - type: Transform
- pos: -9.5,-65.5
- parent: 2
- - uid: 11453
- components:
- - type: Transform
- pos: -8.5,-65.5
- parent: 2
- - uid: 11454
- components:
- - type: Transform
- pos: -7.5,-65.5
- parent: 2
- - uid: 11455
- components:
- - type: Transform
- pos: -7.5,-64.5
- parent: 2
- - uid: 11456
- components:
- - type: Transform
- pos: -6.5,-64.5
- parent: 2
- - uid: 11457
- components:
- - type: Transform
- pos: -5.5,-64.5
- parent: 2
- - uid: 11458
- components:
- - type: Transform
- pos: -4.5,-64.5
- parent: 2
- - uid: 11459
- components:
- - type: Transform
- pos: -3.5,-64.5
- parent: 2
- - uid: 11460
- components:
- - type: Transform
- pos: -3.5,-63.5
- parent: 2
- - uid: 11461
- components:
- - type: Transform
- pos: -3.5,-62.5
- parent: 2
- - uid: 11462
- components:
- - type: Transform
- pos: -6.5,-56.5
- parent: 2
- - uid: 11463
- components:
- - type: Transform
- pos: -6.5,-55.5
- parent: 2
- - uid: 11464
- components:
- - type: Transform
- pos: -7.5,-55.5
- parent: 2
- - uid: 11465
- components:
- - type: Transform
- pos: -8.5,-55.5
- parent: 2
- - uid: 11466
- components:
- - type: Transform
- pos: -9.5,-55.5
- parent: 2
- - uid: 11467
- components:
- - type: Transform
- pos: -9.5,-56.5
- parent: 2
- - uid: 11468
- components:
- - type: Transform
- pos: -9.5,-57.5
- parent: 2
- - uid: 11469
- components:
- - type: Transform
- pos: -9.5,-58.5
- parent: 2
- - uid: 11470
- components:
- - type: Transform
- pos: -9.5,-59.5
- parent: 2
- - uid: 11471
- components:
- - type: Transform
- pos: -9.5,-60.5
- parent: 2
- - uid: 11472
- components:
- - type: Transform
- pos: -9.5,-61.5
- parent: 2
- - uid: 11473
- components:
- - type: Transform
- pos: -9.5,-62.5
- parent: 2
- - uid: 11474
- components:
- - type: Transform
- pos: -9.5,-63.5
- parent: 2
- - uid: 11475
- components:
- - type: Transform
- pos: -9.5,-64.5
- parent: 2
- - uid: 11476
- components:
- - type: Transform
- pos: 7.5,-75.5
- parent: 2
- - uid: 11477
- components:
- - type: Transform
- pos: 6.5,-75.5
- parent: 2
- - uid: 11478
- components:
- - type: Transform
- pos: 5.5,-75.5
- parent: 2
- - uid: 11479
- components:
- - type: Transform
- pos: 5.5,-74.5
- parent: 2
- - uid: 11480
- components:
- - type: Transform
- pos: 5.5,-73.5
- parent: 2
- - uid: 11481
- components:
- - type: Transform
- pos: 5.5,-72.5
- parent: 2
- - uid: 11482
- components:
- - type: Transform
- pos: 5.5,-71.5
- parent: 2
- - uid: 11483
- components:
- - type: Transform
- pos: 5.5,-70.5
- parent: 2
- - uid: 11484
- components:
- - type: Transform
- pos: 5.5,-69.5
- parent: 2
- - uid: 11485
- components:
- - type: Transform
- pos: 5.5,-68.5
- parent: 2
- - uid: 11486
- components:
- - type: Transform
- pos: 5.5,-67.5
- parent: 2
- - uid: 11487
- components:
- - type: Transform
- pos: 5.5,-66.5
- parent: 2
- - uid: 11488
- components:
- - type: Transform
- pos: 5.5,-65.5
- parent: 2
- - uid: 11489
- components:
- - type: Transform
- pos: 4.5,-65.5
- parent: 2
- - uid: 11490
- components:
- - type: Transform
- pos: 3.5,-65.5
- parent: 2
- - uid: 11491
- components:
- - type: Transform
- pos: 2.5,-65.5
- parent: 2
- - uid: 11492
- components:
- - type: Transform
- pos: 1.5,-65.5
- parent: 2
- - uid: 11493
- components:
- - type: Transform
- pos: 1.5,-64.5
- parent: 2
- - uid: 11494
- components:
- - type: Transform
- pos: 0.49999997,-64.5
- parent: 2
- - uid: 11495
- components:
- - type: Transform
- pos: -0.5,-64.5
- parent: 2
- - uid: 11496
- components:
- - type: Transform
- pos: -1.5,-64.5
- parent: 2
- - uid: 11497
- components:
- - type: Transform
- pos: -2.5,-64.5
- parent: 2
- - uid: 11498
- components:
- - type: Transform
- pos: 26.5,-22.5
- parent: 2
- - uid: 11499
- components:
- - type: Transform
- pos: 25.5,-22.5
- parent: 2
- - uid: 11500
- components:
- - type: Transform
- pos: 24.5,-22.5
- parent: 2
- - uid: 11501
- components:
- - type: Transform
- pos: 24.5,-21.5
- parent: 2
- - uid: 11502
- components:
- - type: Transform
- pos: 24.5,-20.5
- parent: 2
- - uid: 11503
- components:
- - type: Transform
- pos: 24.5,-19.5
- parent: 2
- - uid: 11504
- components:
- - type: Transform
- pos: 25.5,-19.5
- parent: 2
- - uid: 11505
- components:
- - type: Transform
- pos: 26.5,-19.5
- parent: 2
- - uid: 11506
- components:
- - type: Transform
- pos: 27.5,-19.5
- parent: 2
- - uid: 11507
- components:
- - type: Transform
- pos: 28.5,-19.5
- parent: 2
- - uid: 11508
- components:
- - type: Transform
- pos: 29.5,-19.5
- parent: 2
- - uid: 11509
- components:
- - type: Transform
- pos: 30.5,-19.5
- parent: 2
- - uid: 11510
- components:
- - type: Transform
- pos: 31.5,-19.5
- parent: 2
- - uid: 11511
- components:
- - type: Transform
- pos: 32.5,-19.5
- parent: 2
- - uid: 11512
- components:
- - type: Transform
- pos: 33.5,-19.5
- parent: 2
- - uid: 11513
- components:
- - type: Transform
- pos: 34.5,-19.5
- parent: 2
- - uid: 11514
- components:
- - type: Transform
- pos: 34.5,-20.5
- parent: 2
- - uid: 11515
- components:
- - type: Transform
- pos: 34.5,-21.5
- parent: 2
- - uid: 11516
- components:
- - type: Transform
- pos: 34.5,-22.5
- parent: 2
- - uid: 11517
- components:
- - type: Transform
- pos: 33.5,-22.5
- parent: 2
- - uid: 11518
- components:
- - type: Transform
- pos: 32.5,-22.5
- parent: 2
- - uid: 11519
- components:
- - type: Transform
- pos: 31.5,-22.5
- parent: 2
- - uid: 11520
- components:
- - type: Transform
- pos: 30.5,-22.5
- parent: 2
- - uid: 11521
- components:
- - type: Transform
- pos: 29.5,-22.5
- parent: 2
- - uid: 11522
- components:
- - type: Transform
- pos: 29.5,-23.5
- parent: 2
- - uid: 11523
- components:
- - type: Transform
- pos: 29.5,-24.5
- parent: 2
- - uid: 11524
- components:
- - type: Transform
- pos: 29.5,-25.5
- parent: 2
- - uid: 11525
- components:
- - type: Transform
- pos: 29.5,-26.5
- parent: 2
- - uid: 11526
- components:
- - type: Transform
- pos: 29.5,-27.5
- parent: 2
- - uid: 11527
- components:
- - type: Transform
- pos: 29.5,-28.5
- parent: 2
- - uid: 11528
- components:
- - type: Transform
- pos: 29.5,-29.5
- parent: 2
- - uid: 11529
- components:
- - type: Transform
- pos: 29.5,-30.5
- parent: 2
- - uid: 11530
- components:
- - type: Transform
- pos: 29.5,-31.5
- parent: 2
- - uid: 11531
- components:
- - type: Transform
- pos: 29.5,-32.5
- parent: 2
- - uid: 11532
- components:
- - type: Transform
- pos: 29.5,-33.5
- parent: 2
- - uid: 11533
- components:
- - type: Transform
- pos: 29.5,-34.5
- parent: 2
- - uid: 11534
- components:
- - type: Transform
- pos: 30.5,-29.5
- parent: 2
- - uid: 11535
- components:
- - type: Transform
- pos: 31.5,-29.5
- parent: 2
- - uid: 11536
- components:
- - type: Transform
- pos: 31.5,-28.5
- parent: 2
- - uid: 11537
- components:
- - type: Transform
- pos: 31.5,-27.5
- parent: 2
- - uid: 11538
- components:
- - type: Transform
- pos: 29.5,-34.5
- parent: 2
- - uid: 11539
- components:
- - type: Transform
- pos: 30.5,-34.5
- parent: 2
- - uid: 11540
- components:
- - type: Transform
- pos: 31.5,-34.5
- parent: 2
- - uid: 11541
- components:
- - type: Transform
- pos: 32.5,-34.5
- parent: 2
- - uid: 11542
- components:
- - type: Transform
- pos: 33.5,-34.5
- parent: 2
- - uid: 11543
- components:
- - type: Transform
- pos: 34.5,-34.5
- parent: 2
- - uid: 11544
- components:
- - type: Transform
- pos: 35.5,-34.5
- parent: 2
- - uid: 11545
- components:
- - type: Transform
- pos: 36.5,-34.5
- parent: 2
- - uid: 11546
- components:
- - type: Transform
- pos: 37.5,-34.5
- parent: 2
- - uid: 11547
- components:
- - type: Transform
- pos: 36.5,-33.5
- parent: 2
- - uid: 11548
- components:
- - type: Transform
- pos: 36.5,-32.5
- parent: 2
- - uid: 11549
- components:
- - type: Transform
- pos: 36.5,-31.5
- parent: 2
- - uid: 11550
- components:
- - type: Transform
- pos: 36.5,-30.5
- parent: 2
- - uid: 11551
- components:
- - type: Transform
- pos: 36.5,-29.5
- parent: 2
- - uid: 11552
- components:
- - type: Transform
- pos: 35.5,-29.5
- parent: 2
- - uid: 11553
- components:
- - type: Transform
- pos: 35.5,-28.5
- parent: 2
- - uid: 11554
- components:
- - type: Transform
- pos: 35.5,-27.5
- parent: 2
- - uid: 11555
- components:
- - type: Transform
- pos: 35.5,-26.5
- parent: 2
- - uid: 11556
- components:
- - type: Transform
- pos: 27.5,-35.5
- parent: 2
- - uid: 11557
- components:
- - type: Transform
- pos: 27.5,-36.5
- parent: 2
- - uid: 11558
- components:
- - type: Transform
- pos: 27.5,-37.5
- parent: 2
- - uid: 11559
- components:
- - type: Transform
- pos: 27.5,-38.5
- parent: 2
- - uid: 11560
- components:
- - type: Transform
- pos: 27.5,-39.5
- parent: 2
- - uid: 11561
- components:
- - type: Transform
- pos: 29.5,-39.5
- parent: 2
- - uid: 11562
- components:
- - type: Transform
- pos: 30.5,-39.5
- parent: 2
- - uid: 11563
- components:
- - type: Transform
- pos: 31.5,-39.5
- parent: 2
- - uid: 11564
- components:
- - type: Transform
- pos: 32.5,-39.5
- parent: 2
- - uid: 11565
- components:
- - type: Transform
- pos: 33.5,-39.5
- parent: 2
- - uid: 11566
- components:
- - type: Transform
- pos: 34.5,-39.5
- parent: 2
- - uid: 11567
- components:
- - type: Transform
- pos: 28.5,-39.5
- parent: 2
- - uid: 11568
- components:
- - type: Transform
- pos: 33.5,-38.5
- parent: 2
- - uid: 11569
- components:
- - type: Transform
- pos: 33.5,-37.5
- parent: 2
- - uid: 11570
- components:
- - type: Transform
- pos: 33.5,-36.5
- parent: 2
- - uid: 11571
- components:
- - type: Transform
- pos: 26.5,-34.5
- parent: 2
- - uid: 11572
- components:
- - type: Transform
- pos: 25.5,-34.5
- parent: 2
- - uid: 11573
- components:
- - type: Transform
- pos: 24.5,-34.5
- parent: 2
- - uid: 11574
- components:
- - type: Transform
- pos: 23.5,-34.5
- parent: 2
- - uid: 11575
- components:
- - type: Transform
- pos: 22.5,-34.5
- parent: 2
- - uid: 11576
- components:
- - type: Transform
- pos: 21.5,-34.5
- parent: 2
- - uid: 11577
- components:
- - type: Transform
- pos: 20.5,-34.5
- parent: 2
- - uid: 11578
- components:
- - type: Transform
- pos: 19.5,-34.5
- parent: 2
- - uid: 11579
- components:
- - type: Transform
- pos: 18.5,-34.5
- parent: 2
- - uid: 11580
- components:
- - type: Transform
- pos: 17.5,-34.5
- parent: 2
- - uid: 11581
- components:
- - type: Transform
- pos: 16.5,-34.5
- parent: 2
- - uid: 11582
- components:
- - type: Transform
- pos: 15.5,-34.5
- parent: 2
- - uid: 11583
- components:
- - type: Transform
- pos: 14.5,-34.5
- parent: 2
- - uid: 11584
- components:
- - type: Transform
- pos: 13.5,-34.5
- parent: 2
- - uid: 11585
- components:
- - type: Transform
- pos: 12.5,-34.5
- parent: 2
- - uid: 11586
- components:
- - type: Transform
- pos: 11.5,-34.5
- parent: 2
- - uid: 11587
- components:
- - type: Transform
- pos: 10.5,-34.5
- parent: 2
- - uid: 11588
- components:
- - type: Transform
- pos: 10.5,-35.5
- parent: 2
- - uid: 11589
- components:
- - type: Transform
- pos: 9.5,-35.5
- parent: 2
- - uid: 11590
- components:
- - type: Transform
- pos: 8.5,-35.5
- parent: 2
- - uid: 11591
- components:
- - type: Transform
- pos: 9.5,-29.5
- parent: 2
- - uid: 11592
- components:
- - type: Transform
- pos: 8.5,-29.5
- parent: 2
- - uid: 11593
- components:
- - type: Transform
- pos: 7.5,-29.5
- parent: 2
- - uid: 11594
- components:
- - type: Transform
- pos: 7.5,-30.5
- parent: 2
- - uid: 11595
- components:
- - type: Transform
- pos: 7.5,-31.5
- parent: 2
- - uid: 11596
- components:
- - type: Transform
- pos: 7.5,-32.5
- parent: 2
- - uid: 11597
- components:
- - type: Transform
- pos: 7.5,-33.5
- parent: 2
- - uid: 11598
- components:
- - type: Transform
- pos: 7.5,-34.5
- parent: 2
- - uid: 11599
- components:
- - type: Transform
- pos: 7.5,-35.5
- parent: 2
- - uid: 11600
- components:
- - type: Transform
- pos: 6.5,-36.5
- parent: 2
- - uid: 11601
- components:
- - type: Transform
- pos: 6.5,-37.5
- parent: 2
- - uid: 11602
- components:
- - type: Transform
- pos: 6.5,-38.5
- parent: 2
- - uid: 11603
- components:
- - type: Transform
- pos: 6.5,-39.5
- parent: 2
- - uid: 11604
- components:
- - type: Transform
- pos: 5.5,-38.5
- parent: 2
- - uid: 11605
- components:
- - type: Transform
- pos: 4.5,-38.5
- parent: 2
- - uid: 11606
- components:
- - type: Transform
- pos: 4.5,-39.5
- parent: 2
- - uid: 11607
- components:
- - type: Transform
- pos: 4.5,-40.5
- parent: 2
- - uid: 11608
- components:
- - type: Transform
- pos: 4.5,-41.5
- parent: 2
- - uid: 11609
- components:
- - type: Transform
- pos: 4.5,-42.5
- parent: 2
- - uid: 11610
- components:
- - type: Transform
- pos: 4.5,-43.5
- parent: 2
- - uid: 11611
- components:
- - type: Transform
- pos: 4.5,-44.5
- parent: 2
- - uid: 11612
- components:
- - type: Transform
- pos: 4.5,-45.5
- parent: 2
- - uid: 11613
- components:
- - type: Transform
- pos: 4.5,-46.5
- parent: 2
- - uid: 11614
- components:
- - type: Transform
- pos: 4.5,-47.5
- parent: 2
- - uid: 11615
- components:
- - type: Transform
- pos: 4.5,-48.5
- parent: 2
- - uid: 11616
- components:
- - type: Transform
- pos: 4.5,-49.5
- parent: 2
- - uid: 11617
- components:
- - type: Transform
- pos: 4.5,-50.5
- parent: 2
- - uid: 11618
- components:
- - type: Transform
- pos: 7.5,-48.5
- parent: 2
- - uid: 11619
- components:
- - type: Transform
- pos: 7.5,-49.5
- parent: 2
- - uid: 11620
- components:
- - type: Transform
- pos: 7.5,-50.5
- parent: 2
- - uid: 11621
- components:
- - type: Transform
- pos: 6.5,-50.5
- parent: 2
- - uid: 11622
- components:
- - type: Transform
- pos: 5.5,-50.5
- parent: 2
- - uid: 11623
- components:
- - type: Transform
- pos: 4.5,-50.5
- parent: 2
- - uid: 11624
- components:
- - type: Transform
- pos: 14.5,-36.5
- parent: 2
- - uid: 11625
- components:
- - type: Transform
- pos: 14.5,-37.5
- parent: 2
- - uid: 11626
- components:
- - type: Transform
- pos: 14.5,-38.5
- parent: 2
- - uid: 11627
- components:
- - type: Transform
- pos: 14.5,-39.5
- parent: 2
- - uid: 11628
- components:
- - type: Transform
- pos: 13.5,-39.5
- parent: 2
- - uid: 11629
- components:
- - type: Transform
- pos: 12.5,-39.5
- parent: 2
- - uid: 11630
- components:
- - type: Transform
- pos: 11.5,-39.5
- parent: 2
- - uid: 11631
- components:
- - type: Transform
- pos: 10.5,-39.5
- parent: 2
- - uid: 11632
- components:
- - type: Transform
- pos: 9.5,-39.5
- parent: 2
- - uid: 11633
- components:
- - type: Transform
- pos: 9.5,-40.5
- parent: 2
- - uid: 11634
- components:
- - type: Transform
- pos: 9.5,-41.5
- parent: 2
- - uid: 11635
- components:
- - type: Transform
- pos: 9.5,-42.5
- parent: 2
- - uid: 11636
- components:
- - type: Transform
- pos: 9.5,-43.5
- parent: 2
- - uid: 11637
- components:
- - type: Transform
- pos: 9.5,-44.5
- parent: 2
- - uid: 11638
- components:
- - type: Transform
- pos: 9.5,-45.5
- parent: 2
- - uid: 11639
- components:
- - type: Transform
- pos: 8.5,-45.5
- parent: 2
- - uid: 11640
- components:
- - type: Transform
- pos: 7.5,-45.5
- parent: 2
- - uid: 11641
- components:
- - type: Transform
- pos: 6.5,-45.5
- parent: 2
- - uid: 11642
- components:
- - type: Transform
- pos: 5.5,-45.5
- parent: 2
- - uid: 11643
- components:
- - type: Transform
- pos: 4.5,-45.5
- parent: 2
- - uid: 11644
- components:
- - type: Transform
- pos: 24.5,-49.5
- parent: 2
- - uid: 11645
- components:
- - type: Transform
- pos: 24.5,-50.5
- parent: 2
- - uid: 11646
- components:
- - type: Transform
- pos: 24.5,-51.5
- parent: 2
- - uid: 11647
- components:
- - type: Transform
- pos: 23.5,-51.5
- parent: 2
- - uid: 11648
- components:
- - type: Transform
- pos: 22.5,-51.5
- parent: 2
- - uid: 11649
- components:
- - type: Transform
- pos: 22.5,-50.5
- parent: 2
- - uid: 11650
- components:
- - type: Transform
- pos: 22.5,-49.5
- parent: 2
- - uid: 11651
- components:
- - type: Transform
- pos: 22.5,-48.5
- parent: 2
- - uid: 11652
- components:
- - type: Transform
- pos: 22.5,-47.5
- parent: 2
- - uid: 11653
- components:
- - type: Transform
- pos: 22.5,-46.5
- parent: 2
- - uid: 11654
- components:
- - type: Transform
- pos: 22.5,-45.5
- parent: 2
- - uid: 11655
- components:
- - type: Transform
- pos: 22.5,-44.5
- parent: 2
- - uid: 11656
- components:
- - type: Transform
- pos: 22.5,-43.5
- parent: 2
- - uid: 11657
- components:
- - type: Transform
- pos: 22.5,-43.5
- parent: 2
- - uid: 11658
- components:
- - type: Transform
- pos: 21.5,-43.5
- parent: 2
- - uid: 11659
- components:
- - type: Transform
- pos: 20.5,-43.5
- parent: 2
- - uid: 11660
- components:
- - type: Transform
- pos: 19.5,-43.5
- parent: 2
- - uid: 11661
- components:
- - type: Transform
- pos: 18.5,-43.5
- parent: 2
- - uid: 11662
- components:
- - type: Transform
- pos: 17.5,-43.5
- parent: 2
- - uid: 11663
- components:
- - type: Transform
- pos: 17.5,-42.5
- parent: 2
- - uid: 11664
- components:
- - type: Transform
- pos: 17.5,-41.5
- parent: 2
- - uid: 11665
- components:
- - type: Transform
- pos: 17.5,-40.5
- parent: 2
- - uid: 11666
- components:
- - type: Transform
- pos: 17.5,-39.5
- parent: 2
- - uid: 11667
- components:
- - type: Transform
- pos: 16.5,-39.5
- parent: 2
- - uid: 11668
- components:
- - type: Transform
- pos: 15.5,-39.5
- parent: 2
- - uid: 11669
- components:
- - type: Transform
- pos: 14.5,-39.5
- parent: 2
- - uid: 11670
- components:
- - type: Transform
- pos: 12.5,-56.5
- parent: 2
- - uid: 11671
- components:
- - type: Transform
- pos: 12.5,-57.5
- parent: 2
- - uid: 11672
- components:
- - type: Transform
- pos: 12.5,-58.5
- parent: 2
- - uid: 11673
- components:
- - type: Transform
- pos: 12.5,-59.5
- parent: 2
- - uid: 11674
- components:
- - type: Transform
- pos: 12.5,-59.5
- parent: 2
- - uid: 11675
- components:
- - type: Transform
- pos: 11.5,-59.5
- parent: 2
- - uid: 11676
- components:
- - type: Transform
- pos: 10.5,-59.5
- parent: 2
- - uid: 11677
- components:
- - type: Transform
- pos: 10.5,-58.5
- parent: 2
- - uid: 11678
- components:
- - type: Transform
- pos: 10.5,-57.5
- parent: 2
- - uid: 11679
- components:
- - type: Transform
- pos: 10.5,-56.5
- parent: 2
- - uid: 11680
- components:
- - type: Transform
- pos: 10.5,-55.5
- parent: 2
- - uid: 11681
- components:
- - type: Transform
- pos: 10.5,-54.5
- parent: 2
- - uid: 11682
- components:
- - type: Transform
- pos: 10.5,-53.5
- parent: 2
- - uid: 11683
- components:
- - type: Transform
- pos: 10.5,-52.5
- parent: 2
- - uid: 11684
- components:
- - type: Transform
- pos: 10.5,-51.5
- parent: 2
- - uid: 11685
- components:
- - type: Transform
- pos: 10.5,-50.5
- parent: 2
- - uid: 11686
- components:
- - type: Transform
- pos: 9.5,-50.5
- parent: 2
- - uid: 11687
- components:
- - type: Transform
- pos: 8.5,-50.5
- parent: 2
- - uid: 11688
- components:
- - type: Transform
- pos: 7.5,-50.5
- parent: 2
- - uid: 11689
- components:
- - type: Transform
- pos: 16.5,-43.5
- parent: 2
- - uid: 11690
- components:
- - type: Transform
- pos: 15.5,-43.5
- parent: 2
- - uid: 11691
- components:
- - type: Transform
- pos: 14.5,-43.5
- parent: 2
- - uid: 11692
- components:
- - type: Transform
- pos: 14.5,-42.5
- parent: 2
- - uid: 11693
- components:
- - type: Transform
- pos: 14.5,-41.5
- parent: 2
- - uid: 11694
- components:
- - type: Transform
- pos: 17.5,-44.5
- parent: 2
- - uid: 11695
- components:
- - type: Transform
- pos: 17.5,-45.5
- parent: 2
- - uid: 11696
- components:
- - type: Transform
- pos: 17.5,-46.5
- parent: 2
- - uid: 11697
- components:
- - type: Transform
- pos: 17.5,-47.5
- parent: 2
- - uid: 11698
- components:
- - type: Transform
- pos: 17.5,-48.5
- parent: 2
- - uid: 11699
- components:
- - type: Transform
- pos: 17.5,-49.5
- parent: 2
- - uid: 11700
- components:
- - type: Transform
- pos: 16.5,-49.5
- parent: 2
- - uid: 11701
- components:
- - type: Transform
- pos: 15.5,-49.5
- parent: 2
- - uid: 11702
- components:
- - type: Transform
- pos: 14.5,-49.5
- parent: 2
- - uid: 11703
- components:
- - type: Transform
- pos: 13.5,-49.5
- parent: 2
- - uid: 11704
- components:
- - type: Transform
- pos: 8.5,-48.5
- parent: 2
- - uid: 11705
- components:
- - type: Transform
- pos: 8.5,-47.5
- parent: 2
- - uid: 11706
- components:
- - type: Transform
- pos: -0.5,-44.5
- parent: 2
- - uid: 11707
- components:
- - type: Transform
- pos: 12.5,-28.5
- parent: 2
- - uid: 11708
- components:
- - type: Transform
- pos: 12.5,-29.5
- parent: 2
- - uid: 11709
- components:
- - type: Transform
- pos: 12.5,-30.5
- parent: 2
- - uid: 11710
- components:
- - type: Transform
- pos: 13.5,-30.5
- parent: 2
- - uid: 11711
- components:
- - type: Transform
- pos: 14.5,-30.5
- parent: 2
- - uid: 11712
- components:
- - type: Transform
- pos: 15.5,-30.5
- parent: 2
- - uid: 11713
- components:
- - type: Transform
- pos: 16.5,-30.5
- parent: 2
- - uid: 11714
- components:
- - type: Transform
- pos: 17.5,-30.5
- parent: 2
- - uid: 11715
- components:
- - type: Transform
- pos: 17.5,-31.5
- parent: 2
- - uid: 11716
- components:
- - type: Transform
- pos: 17.5,-32.5
- parent: 2
- - uid: 11717
- components:
- - type: Transform
- pos: 17.5,-33.5
- parent: 2
- - uid: 11718
- components:
- - type: Transform
- pos: 49.5,-28.5
- parent: 2
- - uid: 11719
- components:
- - type: Transform
- pos: 48.5,-28.5
- parent: 2
- - uid: 11720
- components:
- - type: Transform
- pos: 47.5,-28.5
- parent: 2
- - uid: 11721
- components:
- - type: Transform
- pos: 46.5,-28.5
- parent: 2
- - uid: 11722
- components:
- - type: Transform
- pos: 46.5,-27.5
- parent: 2
- - uid: 11723
- components:
- - type: Transform
- pos: 46.5,-26.5
- parent: 2
- - uid: 11724
- components:
- - type: Transform
- pos: 43.5,-45.5
- parent: 2
- - uid: 11725
- components:
- - type: Transform
- pos: 43.5,-46.5
- parent: 2
- - uid: 11726
- components:
- - type: Transform
- pos: 44.5,-46.5
- parent: 2
- - uid: 11727
- components:
- - type: Transform
- pos: 45.5,-46.5
- parent: 2
- - uid: 11728
- components:
- - type: Transform
- pos: 46.5,-46.5
- parent: 2
- - uid: 11729
- components:
- - type: Transform
- pos: 47.5,-46.5
- parent: 2
- - uid: 11730
- components:
- - type: Transform
- pos: 48.5,-46.5
- parent: 2
- - uid: 11731
- components:
- - type: Transform
- pos: 49.5,-46.5
- parent: 2
- - uid: 11732
- components:
- - type: Transform
- pos: 50.5,-46.5
- parent: 2
- - uid: 11733
- components:
- - type: Transform
- pos: 51.5,-46.5
- parent: 2
- - uid: 11734
- components:
- - type: Transform
- pos: 51.5,-45.5
- parent: 2
- - uid: 11735
- components:
- - type: Transform
- pos: 51.5,-44.5
- parent: 2
- - uid: 11736
- components:
- - type: Transform
- pos: 51.5,-43.5
- parent: 2
- - uid: 11737
- components:
- - type: Transform
- pos: 43.5,-19.5
- parent: 2
- - uid: 11738
- components:
- - type: Transform
- pos: 43.5,-20.5
- parent: 2
- - uid: 11739
- components:
- - type: Transform
- pos: 43.5,-21.5
- parent: 2
- - uid: 11740
- components:
- - type: Transform
- pos: 47.5,-21.5
- parent: 2
- - uid: 11741
- components:
- - type: Transform
- pos: 47.5,-20.5
- parent: 2
- - uid: 11742
- components:
- - type: Transform
- pos: 47.5,-19.5
- parent: 2
- - uid: 11743
- components:
- - type: Transform
- pos: 53.5,-21.5
- parent: 2
- - uid: 11744
- components:
- - type: Transform
- pos: 53.5,-20.5
- parent: 2
- - uid: 11745
- components:
- - type: Transform
- pos: 53.5,-19.5
- parent: 2
- - uid: 11746
- components:
- - type: Transform
- pos: 53.5,-18.5
- parent: 2
- - uid: 11747
- components:
- - type: Transform
- pos: 51.5,-12.5
- parent: 2
- - uid: 11748
- components:
- - type: Transform
- pos: 51.5,-13.5
- parent: 2
- - uid: 11749
- components:
- - type: Transform
- pos: 51.5,-14.5
- parent: 2
- - uid: 11750
- components:
- - type: Transform
- pos: 51.5,-15.5
- parent: 2
- - uid: 11751
- components:
- - type: Transform
- pos: 51.5,-16.5
- parent: 2
- - uid: 11752
- components:
- - type: Transform
- pos: 51.5,-17.5
- parent: 2
- - uid: 11753
- components:
- - type: Transform
- pos: 51.5,-18.5
- parent: 2
- - uid: 11754
- components:
- - type: Transform
- pos: 45.5,-12.5
- parent: 2
- - uid: 11755
- components:
- - type: Transform
- pos: 45.5,-13.5
- parent: 2
- - uid: 11756
- components:
- - type: Transform
- pos: 45.5,-14.5
- parent: 2
- - uid: 11757
- components:
- - type: Transform
- pos: 45.5,-15.5
- parent: 2
- - uid: 11758
- components:
- - type: Transform
- pos: 46.5,-15.5
- parent: 2
- - uid: 11759
- components:
- - type: Transform
- pos: 46.5,-16.5
- parent: 2
- - uid: 11760
- components:
- - type: Transform
- pos: 46.5,-17.5
- parent: 2
- - uid: 11761
- components:
- - type: Transform
- pos: 46.5,-18.5
- parent: 2
- - uid: 11762
- components:
- - type: Transform
- pos: -5.5,-55.5
- parent: 2
- - uid: 11763
- components:
- - type: Transform
- pos: -4.5,-55.5
- parent: 2
- - uid: 11764
- components:
- - type: Transform
- pos: -3.5,-55.5
- parent: 2
- - uid: 11765
- components:
- - type: Transform
- pos: -2.5,-55.5
- parent: 2
- - uid: 11766
- components:
- - type: Transform
- pos: -1.5,-55.5
- parent: 2
- - uid: 11767
- components:
- - type: Transform
- pos: -0.5,-55.5
- parent: 2
- - uid: 11768
- components:
- - type: Transform
- pos: 0.49999997,-55.5
- parent: 2
- - uid: 11769
- components:
- - type: Transform
- pos: 0.50000006,-56.5
- parent: 2
- - uid: 11770
- components:
- - type: Transform
- pos: 1.5,-56.5
- parent: 2
- - uid: 11771
- components:
- - type: Transform
- pos: 1.5,-44.5
- parent: 2
- - uid: 11772
- components:
- - type: Transform
- pos: 0.50000006,-44.5
- parent: 2
- - uid: 11773
- components:
- - type: Transform
- pos: -0.5,-45.5
- parent: 2
- - uid: 11774
- components:
- - type: Transform
- pos: -0.5,-46.5
- parent: 2
- - uid: 11775
- components:
- - type: Transform
- pos: -0.49999997,-47.5
- parent: 2
- - uid: 11776
- components:
- - type: Transform
- pos: -0.5,-48.5
- parent: 2
- - uid: 11777
- components:
- - type: Transform
- pos: -0.5,-49.5
- parent: 2
- - uid: 11778
- components:
- - type: Transform
- pos: -0.5,-50.5
- parent: 2
- - uid: 11779
- components:
- - type: Transform
- pos: -0.5,-51.5
- parent: 2
- - uid: 11780
- components:
- - type: Transform
- pos: -0.5,-52.5
- parent: 2
- - uid: 11781
- components:
- - type: Transform
- pos: -0.5,-53.5
- parent: 2
- - uid: 11782
- components:
- - type: Transform
- pos: -0.5,-54.5
- parent: 2
- - uid: 11783
- components:
- - type: Transform
- pos: -0.5,-55.5
- parent: 2
- - uid: 11784
- components:
- - type: Transform
- pos: 2.5,-17.5
- parent: 2
- - uid: 11785
- components:
- - type: Transform
- pos: 2.5,-18.5
- parent: 2
- - uid: 11786
- components:
- - type: Transform
- pos: 2.5,-19.5
- parent: 2
- - uid: 11787
- components:
- - type: Transform
- pos: 23.5,-19.5
- parent: 2
- - uid: 11788
- components:
- - type: Transform
- pos: 22.5,-19.5
- parent: 2
- - uid: 11789
- components:
- - type: Transform
- pos: 21.5,-19.5
- parent: 2
- - uid: 11790
- components:
- - type: Transform
- pos: 20.5,-19.5
- parent: 2
- - uid: 11791
- components:
- - type: Transform
- pos: 19.5,-19.5
- parent: 2
- - uid: 11792
- components:
- - type: Transform
- pos: 18.5,-19.5
- parent: 2
- - uid: 11793
- components:
- - type: Transform
- pos: 17.5,-19.5
- parent: 2
- - uid: 11794
- components:
- - type: Transform
- pos: 16.5,-19.5
- parent: 2
- - uid: 11795
- components:
- - type: Transform
- pos: 15.5,-19.5
- parent: 2
- - uid: 11796
- components:
- - type: Transform
- pos: 14.5,-19.5
- parent: 2
- - uid: 11797
- components:
- - type: Transform
- pos: 13.5,-19.5
- parent: 2
- - uid: 11798
- components:
- - type: Transform
- pos: 12.5,-19.5
- parent: 2
- - uid: 11799
- components:
- - type: Transform
- pos: 11.5,-19.5
- parent: 2
- - uid: 11800
- components:
- - type: Transform
- pos: 10.5,-19.5
- parent: 2
- - uid: 11801
- components:
- - type: Transform
- pos: 9.5,-19.5
- parent: 2
- - uid: 11802
- components:
- - type: Transform
- pos: 8.5,-19.5
- parent: 2
- - uid: 11803
- components:
- - type: Transform
- pos: 7.5,-19.5
- parent: 2
- - uid: 11804
- components:
- - type: Transform
- pos: 6.5,-19.5
- parent: 2
- - uid: 11805
- components:
- - type: Transform
- pos: 5.5,-19.5
- parent: 2
- - uid: 11806
- components:
- - type: Transform
- pos: 4.5,-19.5
- parent: 2
- - uid: 11807
- components:
- - type: Transform
- pos: 3.5,-19.5
- parent: 2
- - uid: 11808
- components:
- - type: Transform
- pos: 2.5,-19.5
- parent: 2
- - uid: 11809
- components:
- - type: Transform
- pos: -9.5,-21.5
- parent: 2
- - uid: 11810
- components:
- - type: Transform
- pos: -9.5,-22.5
- parent: 2
- - uid: 11811
- components:
- - type: Transform
- pos: -9.5,-23.5
- parent: 2
- - uid: 11812
- components:
- - type: Transform
- pos: -9.5,-24.5
- parent: 2
- - uid: 11813
- components:
- - type: Transform
- pos: -9.5,-25.5
- parent: 2
- - uid: 11814
- components:
- - type: Transform
- pos: -10.5,-25.5
- parent: 2
- - uid: 11815
- components:
- - type: Transform
- pos: -11.5,-25.5
- parent: 2
- - uid: 11816
- components:
- - type: Transform
- pos: -12.5,-25.5
- parent: 2
- - uid: 11817
- components:
- - type: Transform
- pos: -12.5,-26.5
- parent: 2
- - uid: 11818
- components:
- - type: Transform
- pos: -12.5,-27.5
- parent: 2
- - uid: 11819
- components:
- - type: Transform
- pos: -12.5,-28.5
- parent: 2
- - uid: 11820
- components:
- - type: Transform
- pos: -12.5,-29.5
- parent: 2
- - uid: 11821
- components:
- - type: Transform
- pos: -12.5,-30.5
- parent: 2
- - uid: 11822
- components:
- - type: Transform
- pos: -12.5,-31.5
- parent: 2
- - uid: 11823
- components:
- - type: Transform
- pos: -12.5,-32.5
- parent: 2
- - uid: 11824
- components:
- - type: Transform
- pos: -12.5,-33.5
- parent: 2
- - uid: 11825
- components:
- - type: Transform
- pos: 8.5,-21.5
- parent: 2
- - uid: 11826
- components:
- - type: Transform
- pos: 8.5,-22.5
- parent: 2
- - uid: 11827
- components:
- - type: Transform
- pos: 8.5,-23.5
- parent: 2
- - uid: 11828
- components:
- - type: Transform
- pos: 8.5,-24.5
- parent: 2
- - uid: 11829
- components:
- - type: Transform
- pos: 8.5,-25.5
- parent: 2
- - uid: 11830
- components:
- - type: Transform
- pos: 9.5,-25.5
- parent: 2
- - uid: 11831
- components:
- - type: Transform
- pos: 10.5,-25.5
- parent: 2
- - uid: 11832
- components:
- - type: Transform
- pos: 11.5,-25.5
- parent: 2
- - uid: 11833
- components:
- - type: Transform
- pos: 12.5,-25.5
- parent: 2
- - uid: 11834
- components:
- - type: Transform
- pos: 13.5,-25.5
- parent: 2
- - uid: 11835
- components:
- - type: Transform
- pos: 14.5,-25.5
- parent: 2
- - uid: 11836
- components:
- - type: Transform
- pos: 15.5,-25.5
- parent: 2
- - uid: 11837
- components:
- - type: Transform
- pos: 16.5,-25.5
- parent: 2
- - uid: 11838
- components:
- - type: Transform
- pos: 17.5,-25.5
- parent: 2
- - uid: 11839
- components:
- - type: Transform
- pos: 17.5,-25.5
- parent: 2
- - uid: 11840
- components:
- - type: Transform
- pos: 17.5,-26.5
- parent: 2
- - uid: 11841
- components:
- - type: Transform
- pos: 17.5,-27.5
- parent: 2
- - uid: 11842
- components:
- - type: Transform
- pos: 17.5,-28.5
- parent: 2
- - uid: 11843
- components:
- - type: Transform
- pos: 17.5,-29.5
- parent: 2
- - uid: 11844
- components:
- - type: Transform
- pos: 17.5,-30.5
- parent: 2
- - uid: 11845
- components:
- - type: Transform
- pos: -5.5,-18.5
- parent: 2
- - uid: 11846
- components:
- - type: Transform
- pos: -5.5,-19.5
- parent: 2
- - uid: 11847
- components:
- - type: Transform
- pos: -5.5,-20.5
- parent: 2
- - uid: 11848
- components:
- - type: Transform
- pos: -5.5,-21.5
- parent: 2
- - uid: 11849
- components:
- - type: Transform
- pos: -5.5,-22.5
- parent: 2
- - uid: 11850
- components:
- - type: Transform
- pos: -5.5,-23.5
- parent: 2
- - uid: 11851
- components:
- - type: Transform
- pos: -5.5,-24.5
- parent: 2
- - uid: 11852
- components:
- - type: Transform
- pos: -5.5,-25.5
- parent: 2
- - uid: 11853
- components:
- - type: Transform
- pos: -6.5,-25.5
- parent: 2
- - uid: 11854
- components:
- - type: Transform
- pos: -7.5,-25.5
- parent: 2
- - uid: 11855
- components:
- - type: Transform
- pos: -8.5,-25.5
- parent: 2
- - uid: 11856
- components:
- - type: Transform
- pos: -5.5,-17.5
- parent: 2
- - uid: 11857
- components:
- - type: Transform
- pos: -25.5,-1.5
- parent: 2
- - uid: 11858
- components:
- - type: Transform
- pos: -24.5,-1.5
- parent: 2
- - uid: 11859
- components:
- - type: Transform
- pos: -23.5,-1.5
- parent: 2
- - uid: 11860
- components:
- - type: Transform
- pos: -22.5,-1.5
- parent: 2
- - uid: 11861
- components:
- - type: Transform
- pos: -21.5,-1.5
- parent: 2
- - uid: 11862
- components:
- - type: Transform
- pos: -20.5,-1.5
- parent: 2
- - uid: 11863
- components:
- - type: Transform
- pos: -19.5,-1.5
- parent: 2
- - uid: 11864
- components:
- - type: Transform
- pos: -18.5,-1.5
- parent: 2
- - uid: 11865
- components:
- - type: Transform
- pos: -17.5,-1.5
- parent: 2
- - uid: 11866
- components:
- - type: Transform
- pos: -17.5,-2.5
- parent: 2
- - uid: 11867
- components:
- - type: Transform
- pos: -17.5,-3.5
- parent: 2
- - uid: 11868
- components:
- - type: Transform
- pos: -16.5,-3.5
- parent: 2
- - uid: 11869
- components:
- - type: Transform
- pos: -45.5,12.5
- parent: 2
- - uid: 11870
- components:
- - type: Transform
- pos: -44.5,12.5
- parent: 2
- - uid: 11871
- components:
- - type: Transform
- pos: -43.5,12.5
- parent: 2
- - uid: 11872
- components:
- - type: Transform
- pos: -42.5,12.5
- parent: 2
- - uid: 11873
- components:
- - type: Transform
- pos: -41.5,12.5
- parent: 2
- - uid: 11874
- components:
- - type: Transform
- pos: -40.5,11.5
- parent: 2
- - uid: 11875
- components:
- - type: Transform
- pos: -39.5,11.5
- parent: 2
- - uid: 11876
- components:
- - type: Transform
- pos: -33.5,17.5
- parent: 2
- - uid: 11877
- components:
- - type: Transform
- pos: -33.5,16.5
- parent: 2
- - uid: 11878
- components:
- - type: Transform
- pos: -34.5,16.5
- parent: 2
- - uid: 11879
- components:
- - type: Transform
- pos: -35.5,16.5
- parent: 2
- - uid: 11880
- components:
- - type: Transform
- pos: -35.5,15.5
- parent: 2
- - uid: 11881
- components:
- - type: Transform
- pos: -35.5,14.5
- parent: 2
- - uid: 11882
- components:
- - type: Transform
- pos: -35.5,13.5
- parent: 2
- - uid: 11883
- components:
- - type: Transform
- pos: -35.5,12.5
- parent: 2
- - uid: 11884
- components:
- - type: Transform
- pos: -35.5,11.5
- parent: 2
- - uid: 11885
- components:
- - type: Transform
- pos: -35.5,10.5
- parent: 2
- - uid: 11886
- components:
- - type: Transform
- pos: -35.5,9.5
- parent: 2
- - uid: 11887
- components:
- - type: Transform
- pos: -35.5,8.5
- parent: 2
- - uid: 11888
- components:
- - type: Transform
- pos: -35.5,7.5
- parent: 2
- - uid: 11889
- components:
- - type: Transform
- pos: -35.5,6.5
- parent: 2
- - uid: 11890
- components:
- - type: Transform
- pos: -35.5,5.5
- parent: 2
- - uid: 11891
- components:
- - type: Transform
- pos: -36.5,5.5
- parent: 2
- - uid: 11892
- components:
- - type: Transform
- pos: -37.5,5.5
- parent: 2
- - uid: 11893
- components:
- - type: Transform
- pos: -38.5,5.5
- parent: 2
- - uid: 11894
- components:
- - type: Transform
- pos: -39.5,5.5
- parent: 2
- - uid: 11895
- components:
- - type: Transform
- pos: -40.5,5.5
- parent: 2
- - uid: 11896
- components:
- - type: Transform
- pos: -41.5,5.5
- parent: 2
- - uid: 11897
- components:
- - type: Transform
- pos: -41.5,6.5
- parent: 2
- - uid: 11898
- components:
- - type: Transform
- pos: -41.5,7.5
- parent: 2
- - uid: 11899
- components:
- - type: Transform
- pos: -41.5,8.5
- parent: 2
- - uid: 11900
- components:
- - type: Transform
- pos: -41.5,9.5
- parent: 2
- - uid: 11901
- components:
- - type: Transform
- pos: -41.5,10.5
- parent: 2
- - uid: 11902
- components:
- - type: Transform
- pos: -41.5,11.5
- parent: 2
- - uid: 11903
- components:
- - type: Transform
- pos: -41.5,12.5
- parent: 2
- - uid: 11904
- components:
- - type: Transform
- pos: -76.5,-23.5
- parent: 2
- - uid: 11905
- components:
- - type: Transform
- pos: -76.5,-22.5
- parent: 2
- - uid: 11906
- components:
- - type: Transform
- pos: -75.5,-22.5
- parent: 2
- - uid: 11907
- components:
- - type: Transform
- pos: -74.5,-22.5
- parent: 2
- - uid: 11908
- components:
- - type: Transform
- pos: -73.5,-19.5
- parent: 2
- - uid: 11909
- components:
- - type: Transform
- pos: -72.5,-19.5
- parent: 2
- - uid: 11910
- components:
- - type: Transform
- pos: -71.5,-19.5
- parent: 2
- - uid: 11911
- components:
- - type: Transform
- pos: -70.5,-19.5
- parent: 2
- - uid: 11912
- components:
- - type: Transform
- pos: -69.5,-19.5
- parent: 2
- - uid: 11913
- components:
- - type: Transform
- pos: -74.5,-19.5
- parent: 2
- - uid: 11914
- components:
- - type: Transform
- pos: -74.5,-20.5
- parent: 2
- - uid: 11915
- components:
- - type: Transform
- pos: -74.5,-21.5
- parent: 2
- - uid: 11916
- components:
- - type: Transform
- pos: -74.5,-21.5
- parent: 2
- - uid: 11917
- components:
- - type: Transform
- pos: -69.5,-20.5
- parent: 2
- - uid: 11918
- components:
- - type: Transform
- pos: -69.5,-21.5
- parent: 2
- - uid: 11919
- components:
- - type: Transform
- pos: -70.5,-21.5
- parent: 2
- - uid: 11920
- components:
- - type: Transform
- pos: -63.5,-21.5
- parent: 2
- - uid: 11921
- components:
- - type: Transform
- pos: -63.5,-20.5
- parent: 2
- - uid: 11922
- components:
- - type: Transform
- pos: -64.5,-20.5
- parent: 2
- - uid: 11923
- components:
- - type: Transform
- pos: -63.5,-20.5
- parent: 2
- - uid: 11924
- components:
- - type: Transform
- pos: -66.5,-20.5
- parent: 2
- - uid: 11925
- components:
- - type: Transform
- pos: -65.5,-20.5
- parent: 2
- - uid: 11926
- components:
- - type: Transform
- pos: -65.5,-20.5
- parent: 2
- - uid: 11927
- components:
- - type: Transform
- pos: -65.5,-20.5
- parent: 2
- - uid: 11928
- components:
- - type: Transform
- pos: -66.5,-20.5
- parent: 2
- - uid: 11929
- components:
- - type: Transform
- pos: -67.5,-19.5
- parent: 2
- - uid: 11930
- components:
- - type: Transform
- pos: -68.5,-19.5
- parent: 2
- - uid: 11931
- components:
- - type: Transform
- pos: -69.5,-19.5
- parent: 2
- - uid: 11932
- components:
- - type: Transform
- pos: -69.5,-19.5
- parent: 2
- - uid: 11933
- components:
- - type: Transform
- pos: -68.5,-19.5
- parent: 2
- - uid: 11934
- components:
- - type: Transform
- pos: -67.5,-20.5
- parent: 2
- - uid: 11935
- components:
- - type: Transform
- pos: -67.5,-20.5
- parent: 2
- - uid: 11936
- components:
- - type: Transform
- pos: -67.5,-29.5
- parent: 2
- - uid: 11937
- components:
- - type: Transform
- pos: -67.5,-30.5
- parent: 2
- - uid: 11938
- components:
- - type: Transform
- pos: -68.5,-30.5
- parent: 2
- - uid: 11939
- components:
- - type: Transform
- pos: -69.5,-30.5
- parent: 2
- - uid: 11940
- components:
- - type: Transform
- pos: -70.5,-30.5
- parent: 2
- - uid: 11941
- components:
- - type: Transform
- pos: -71.5,-30.5
- parent: 2
- - uid: 11942
- components:
- - type: Transform
- pos: -72.5,-30.5
- parent: 2
- - uid: 11943
- components:
- - type: Transform
- pos: -73.5,-30.5
- parent: 2
- - uid: 11944
- components:
- - type: Transform
- pos: -73.5,-29.5
- parent: 2
- - uid: 11945
- components:
- - type: Transform
- pos: -73.5,-28.5
- parent: 2
- - uid: 11946
- components:
- - type: Transform
- pos: -73.5,-27.5
- parent: 2
- - uid: 11947
- components:
- - type: Transform
- pos: -73.5,-26.5
- parent: 2
- - uid: 11948
- components:
- - type: Transform
- pos: -73.5,-25.5
- parent: 2
- - uid: 11949
- components:
- - type: Transform
- pos: -73.5,-24.5
- parent: 2
- - uid: 11950
- components:
- - type: Transform
- pos: -73.5,-23.5
- parent: 2
- - uid: 11951
- components:
- - type: Transform
- pos: -73.5,-22.5
- parent: 2
- - uid: 11952
- components:
- - type: Transform
- pos: -69.5,-32.5
- parent: 2
- - uid: 11953
- components:
- - type: Transform
- pos: -67.5,-45.5
- parent: 2
- - uid: 11954
- components:
- - type: Transform
- pos: -64.5,-42.5
- parent: 2
- - uid: 11955
- components:
- - type: Transform
- pos: -61.5,-42.5
- parent: 2
- - uid: 11956
- components:
- - type: Transform
- pos: -59.5,-42.5
- parent: 2
- - uid: 11957
- components:
- - type: Transform
- pos: -64.5,-46.5
- parent: 2
- - uid: 11958
- components:
- - type: Transform
- pos: -59.5,-35.5
- parent: 2
- - uid: 11959
- components:
- - type: Transform
- pos: -58.5,-35.5
- parent: 2
- - uid: 11960
- components:
- - type: Transform
- pos: -67.5,-43.5
- parent: 2
- - uid: 11961
- components:
- - type: Transform
- pos: -58.5,-33.5
- parent: 2
- - uid: 11962
- components:
- - type: Transform
- pos: -58.5,-32.5
- parent: 2
- - uid: 11963
- components:
- - type: Transform
- pos: -58.5,-31.5
- parent: 2
- - uid: 11964
- components:
- - type: Transform
- pos: -58.5,-30.5
- parent: 2
- - uid: 11965
- components:
- - type: Transform
- pos: -59.5,-30.5
- parent: 2
- - uid: 11966
- components:
- - type: Transform
- pos: -60.5,-30.5
- parent: 2
- - uid: 11967
- components:
- - type: Transform
- pos: -61.5,-30.5
- parent: 2
- - uid: 11968
- components:
- - type: Transform
- pos: -62.5,-30.5
- parent: 2
- - uid: 11969
- components:
- - type: Transform
- pos: -63.5,-30.5
- parent: 2
- - uid: 11970
- components:
- - type: Transform
- pos: -64.5,-30.5
- parent: 2
- - uid: 11971
- components:
- - type: Transform
- pos: -65.5,-30.5
- parent: 2
- - uid: 11972
- components:
- - type: Transform
- pos: -66.5,-30.5
- parent: 2
- - uid: 11973
- components:
- - type: Transform
- pos: -67.5,-30.5
- parent: 2
- - uid: 11974
- components:
- - type: Transform
- pos: -48.5,-40.5
- parent: 2
- - uid: 11975
- components:
- - type: Transform
- pos: -49.5,-38.5
- parent: 2
- - uid: 11976
- components:
- - type: Transform
- pos: -49.5,-39.5
- parent: 2
- - uid: 11977
- components:
- - type: Transform
- pos: -49.5,-40.5
- parent: 2
- - uid: 11978
- components:
- - type: Transform
- pos: -47.5,-40.5
- parent: 2
- - uid: 11979
- components:
- - type: Transform
- pos: -46.5,-40.5
- parent: 2
- - uid: 11980
- components:
- - type: Transform
- pos: -46.5,-41.5
- parent: 2
- - uid: 11981
- components:
- - type: Transform
- pos: -46.5,-42.5
- parent: 2
- - uid: 11982
- components:
- - type: Transform
- pos: -46.5,-43.5
- parent: 2
- - uid: 11983
- components:
- - type: Transform
- pos: -46.5,-44.5
- parent: 2
- - uid: 11984
- components:
- - type: Transform
- pos: -46.5,-45.5
- parent: 2
- - uid: 11985
- components:
- - type: Transform
- pos: -45.5,-45.5
- parent: 2
- - uid: 11986
- components:
- - type: Transform
- pos: -50.5,-40.5
- parent: 2
- - uid: 11987
- components:
- - type: Transform
- pos: -51.5,-40.5
- parent: 2
- - uid: 11988
- components:
- - type: Transform
- pos: -52.5,-40.5
- parent: 2
- - uid: 11989
- components:
- - type: Transform
- pos: -53.5,-40.5
- parent: 2
- - uid: 11990
- components:
- - type: Transform
- pos: -54.5,-40.5
- parent: 2
- - uid: 11991
- components:
- - type: Transform
- pos: -54.5,-39.5
- parent: 2
- - uid: 11992
- components:
- - type: Transform
- pos: -54.5,-38.5
- parent: 2
- - uid: 11993
- components:
- - type: Transform
- pos: -54.5,-37.5
- parent: 2
- - uid: 11994
- components:
- - type: Transform
- pos: -54.5,-36.5
- parent: 2
- - uid: 11995
- components:
- - type: Transform
- pos: -54.5,-35.5
- parent: 2
- - uid: 11996
- components:
- - type: Transform
- pos: -54.5,-34.5
- parent: 2
- - uid: 11997
- components:
- - type: Transform
- pos: -54.5,-33.5
- parent: 2
- - uid: 11998
- components:
- - type: Transform
- pos: -54.5,-32.5
- parent: 2
- - uid: 11999
- components:
- - type: Transform
- pos: -54.5,-31.5
- parent: 2
- - uid: 12000
- components:
- - type: Transform
- pos: -54.5,-30.5
- parent: 2
- - uid: 12001
- components:
- - type: Transform
- pos: -55.5,-30.5
- parent: 2
- - uid: 12002
- components:
- - type: Transform
- pos: -56.5,-30.5
- parent: 2
- - uid: 12003
- components:
- - type: Transform
- pos: -57.5,-30.5
- parent: 2
- - uid: 12004
- components:
- - type: Transform
- pos: -51.5,-18.5
- parent: 2
- - uid: 12005
- components:
- - type: Transform
- pos: -51.5,-19.5
- parent: 2
- - uid: 12006
- components:
- - type: Transform
- pos: -52.5,-19.5
- parent: 2
- - uid: 12007
- components:
- - type: Transform
- pos: -53.5,-19.5
- parent: 2
- - uid: 12008
- components:
- - type: Transform
- pos: -54.5,-19.5
- parent: 2
- - uid: 12009
- components:
- - type: Transform
- pos: -55.5,-19.5
- parent: 2
- - uid: 12010
- components:
- - type: Transform
- pos: -56.5,-19.5
- parent: 2
- - uid: 12011
- components:
- - type: Transform
- pos: -57.5,-19.5
- parent: 2
- - uid: 12012
- components:
- - type: Transform
- pos: -58.5,-19.5
- parent: 2
- - uid: 12013
- components:
- - type: Transform
- pos: -59.5,-19.5
- parent: 2
- - uid: 12014
- components:
- - type: Transform
- pos: -60.5,-19.5
- parent: 2
- - uid: 12015
- components:
- - type: Transform
- pos: -61.5,-19.5
- parent: 2
- - uid: 12016
- components:
- - type: Transform
- pos: -62.5,-19.5
- parent: 2
- - uid: 12017
- components:
- - type: Transform
- pos: -62.5,-20.5
- parent: 2
- - uid: 12018
- components:
- - type: Transform
- pos: -76.5,-21.5
- parent: 2
- - uid: 12019
- components:
- - type: Transform
- pos: -62.5,-42.5
- parent: 2
- - uid: 12020
- components:
- - type: Transform
- pos: -63.5,-42.5
- parent: 2
- - uid: 12021
- components:
- - type: Transform
- pos: -66.5,-45.5
- parent: 2
- - uid: 12022
- components:
- - type: Transform
- pos: -67.5,-45.5
- parent: 2
- - uid: 12023
- components:
- - type: Transform
- pos: -67.5,-39.5
- parent: 2
- - uid: 12024
- components:
- - type: Transform
- pos: -67.5,-44.5
- parent: 2
- - uid: 12025
- components:
- - type: Transform
- pos: -60.5,-42.5
- parent: 2
- - uid: 12026
- components:
- - type: Transform
- pos: -63.5,-46.5
- parent: 2
- - uid: 12027
- components:
- - type: Transform
- pos: -65.5,-45.5
- parent: 2
- - uid: 12028
- components:
- - type: Transform
- pos: -64.5,-45.5
- parent: 2
- - uid: 12029
- components:
- - type: Transform
- pos: 27.5,-34.5
- parent: 2
- - uid: 12030
- components:
- - type: Transform
- pos: 28.5,-34.5
- parent: 2
- - uid: 12031
- components:
- - type: Transform
- pos: 29.5,-34.5
- parent: 2
- - uid: 12032
- components:
- - type: Transform
- pos: 31.5,-33.5
- parent: 2
- - uid: 12033
- components:
- - type: Transform
- pos: 31.5,-32.5
- parent: 2
- - uid: 12034
- components:
- - type: Transform
- pos: -32.5,-4.5
- parent: 2
- - uid: 12035
- components:
- - type: Transform
- pos: -32.5,-5.5
- parent: 2
- - uid: 12036
- components:
- - type: Transform
- pos: -32.5,-6.5
- parent: 2
- - uid: 12037
- components:
- - type: Transform
- pos: -32.5,-7.5
- parent: 2
- - uid: 12038
- components:
- - type: Transform
- pos: -32.5,-8.5
- parent: 2
- - uid: 12039
- components:
- - type: Transform
- pos: -32.5,-9.5
- parent: 2
- - uid: 12040
- components:
- - type: Transform
- pos: -32.5,-10.5
- parent: 2
- - uid: 12041
- components:
- - type: Transform
- pos: -32.5,-11.5
- parent: 2
- - uid: 12042
- components:
- - type: Transform
- pos: -32.5,-12.5
- parent: 2
- - uid: 12043
- components:
- - type: Transform
- pos: -32.5,-13.5
- parent: 2
- - uid: 12044
- components:
- - type: Transform
- pos: -31.5,-13.5
- parent: 2
- - uid: 12045
- components:
- - type: Transform
- pos: -30.5,-13.5
- parent: 2
- - uid: 12046
- components:
- - type: Transform
- pos: -29.5,-13.5
- parent: 2
- - uid: 12047
- components:
- - type: Transform
- pos: -28.5,-13.5
- parent: 2
- - uid: 12048
- components:
- - type: Transform
- pos: -27.5,-13.5
- parent: 2
- - uid: 12049
- components:
- - type: Transform
- pos: -27.5,-14.5
- parent: 2
- - uid: 12050
- components:
- - type: Transform
- pos: -27.5,-15.5
- parent: 2
- - uid: 12051
- components:
- - type: Transform
- pos: -27.5,-16.5
- parent: 2
- - uid: 12052
- components:
- - type: Transform
- pos: -27.5,-17.5
- parent: 2
- - uid: 12053
- components:
- - type: Transform
- pos: -27.5,-18.5
- parent: 2
- - uid: 12054
- components:
- - type: Transform
- pos: -27.5,-19.5
- parent: 2
- - uid: 12055
- components:
- - type: Transform
- pos: -27.5,-19.5
- parent: 2
- - uid: 12056
- components:
- - type: Transform
- pos: -26.5,-19.5
- parent: 2
- - uid: 12057
- components:
- - type: Transform
- pos: -25.5,-19.5
- parent: 2
- - uid: 12058
- components:
- - type: Transform
- pos: -24.5,-19.5
- parent: 2
- - uid: 12059
- components:
- - type: Transform
- pos: -23.5,-19.5
- parent: 2
- - uid: 12060
- components:
- - type: Transform
- pos: -23.5,-18.5
- parent: 2
- - uid: 12061
- components:
- - type: Transform
- pos: -23.5,-17.5
- parent: 2
- - uid: 12062
- components:
- - type: Transform
- pos: -23.5,-16.5
- parent: 2
- - uid: 12063
- components:
- - type: Transform
- pos: 95.5,13.5
- parent: 2
- - uid: 12064
- components:
- - type: Transform
- pos: 96.5,13.5
- parent: 2
- - uid: 12065
- components:
- - type: Transform
- pos: 96.5,14.5
- parent: 2
- - uid: 12066
- components:
- - type: Transform
- pos: 97.5,14.5
- parent: 2
- - uid: 12067
- components:
- - type: Transform
- pos: 97.5,15.5
- parent: 2
- - uid: 12068
- components:
- - type: Transform
- pos: 77.5,-4.5
- parent: 2
- - uid: 12069
- components:
- - type: Transform
- pos: 103.5,-8.5
- parent: 2
- - uid: 12070
- components:
- - type: Transform
- pos: 101.5,-7.5
- parent: 2
- - uid: 12071
- components:
- - type: Transform
- pos: 99.5,-7.5
- parent: 2
- - uid: 12072
- components:
- - type: Transform
- pos: 76.5,-4.5
- parent: 2
- - uid: 12073
- components:
- - type: Transform
- pos: 75.5,-4.5
- parent: 2
- - uid: 12074
- components:
- - type: Transform
- pos: 75.5,-5.5
- parent: 2
- - uid: 12075
- components:
- - type: Transform
- pos: 74.5,-5.5
- parent: 2
- - uid: 12076
- components:
- - type: Transform
- pos: 74.5,-6.5
- parent: 2
- - uid: 12077
- components:
- - type: Transform
- pos: 76.5,-8.5
- parent: 2
- - uid: 12078
- components:
- - type: Transform
- pos: 77.5,-8.5
- parent: 2
- - uid: 12079
- components:
- - type: Transform
- pos: 78.5,-8.5
- parent: 2
- - uid: 12080
- components:
- - type: Transform
- pos: 79.5,-8.5
- parent: 2
- - uid: 12081
- components:
- - type: Transform
- pos: 80.5,-8.5
- parent: 2
- - uid: 12082
- components:
- - type: Transform
- pos: 81.5,-8.5
- parent: 2
- - uid: 12083
- components:
- - type: Transform
- pos: 82.5,-8.5
- parent: 2
- - uid: 12084
- components:
- - type: Transform
- pos: 83.5,-8.5
- parent: 2
- - uid: 12085
- components:
- - type: Transform
- pos: 84.5,-8.5
- parent: 2
- - uid: 12086
- components:
- - type: Transform
- pos: 86.5,-9.5
- parent: 2
- - uid: 12087
- components:
- - type: Transform
- pos: 87.5,-9.5
- parent: 2
- - uid: 12088
- components:
- - type: Transform
- pos: 93.5,-9.5
- parent: 2
- - uid: 12089
- components:
- - type: Transform
- pos: 92.5,-9.5
- parent: 2
- - uid: 12090
- components:
- - type: Transform
- pos: 88.5,-9.5
- parent: 2
- - uid: 12091
- components:
- - type: Transform
- pos: 89.5,-9.5
- parent: 2
- - uid: 12092
- components:
- - type: Transform
- pos: 90.5,-9.5
- parent: 2
- - uid: 12093
- components:
- - type: Transform
- pos: 91.5,-9.5
- parent: 2
- - uid: 12094
- components:
- - type: Transform
- pos: 93.5,-8.5
- parent: 2
- - uid: 12095
- components:
- - type: Transform
- pos: 94.5,-8.5
- parent: 2
- - uid: 12096
- components:
- - type: Transform
- pos: 95.5,-8.5
- parent: 2
- - uid: 12097
- components:
- - type: Transform
- pos: 96.5,-8.5
- parent: 2
- - uid: 12098
- components:
- - type: Transform
- pos: 97.5,-8.5
- parent: 2
- - uid: 12099
- components:
- - type: Transform
- pos: 98.5,-7.5
- parent: 2
- - uid: 12100
- components:
- - type: Transform
- pos: 98.5,-8.5
- parent: 2
- - uid: 12101
- components:
- - type: Transform
- pos: 102.5,-8.5
- parent: 2
- - uid: 12102
- components:
- - type: Transform
- pos: 103.5,-8.5
- parent: 2
- - uid: 12103
- components:
- - type: Transform
- pos: 104.5,-8.5
- parent: 2
- - uid: 12104
- components:
- - type: Transform
- pos: 104.5,-7.5
- parent: 2
- - uid: 12105
- components:
- - type: Transform
- pos: 104.5,-6.5
- parent: 2
- - uid: 12106
- components:
- - type: Transform
- pos: 104.5,-5.5
- parent: 2
- - uid: 12107
- components:
- - type: Transform
- pos: 104.5,-4.5
- parent: 2
- - uid: 12108
- components:
- - type: Transform
- pos: 104.5,-3.5
- parent: 2
- - uid: 12109
- components:
- - type: Transform
- pos: 104.5,-2.5
- parent: 2
- - uid: 12110
- components:
- - type: Transform
- pos: 104.5,-1.5
- parent: 2
- - uid: 12111
- components:
- - type: Transform
- pos: 104.5,-0.5
- parent: 2
- - uid: 12112
- components:
- - type: Transform
- pos: 104.5,0.5
- parent: 2
- - uid: 12113
- components:
- - type: Transform
- pos: 104.5,1.5
- parent: 2
- - uid: 12114
- components:
- - type: Transform
- pos: 104.5,2.5
- parent: 2
- - uid: 12115
- components:
- - type: Transform
- pos: 104.5,3.5
- parent: 2
- - uid: 12116
- components:
- - type: Transform
- pos: 103.5,3.5
- parent: 2
- - uid: 12117
- components:
- - type: Transform
- pos: 102.5,3.5
- parent: 2
- - uid: 12118
- components:
- - type: Transform
- pos: 102.5,4.5
- parent: 2
- - uid: 12119
- components:
- - type: Transform
- pos: 102.5,5.5
- parent: 2
- - uid: 12120
- components:
- - type: Transform
- pos: 102.5,6.5
- parent: 2
- - uid: 12121
- components:
- - type: Transform
- pos: 102.5,6.5
- parent: 2
- - uid: 12122
- components:
- - type: Transform
- pos: 101.5,7.5
- parent: 2
- - uid: 12123
- components:
- - type: Transform
- pos: 100.5,7.5
- parent: 2
- - uid: 12124
- components:
- - type: Transform
- pos: 99.5,7.5
- parent: 2
- - uid: 12125
- components:
- - type: Transform
- pos: 102.5,7.5
- parent: 2
- - uid: 12126
- components:
- - type: Transform
- pos: 84.5,-9.5
- parent: 2
- - uid: 12127
- components:
- - type: Transform
- pos: 84.5,-8.5
- parent: 2
- - uid: 12128
- components:
- - type: Transform
- pos: 85.5,-9.5
- parent: 2
- - uid: 12129
- components:
- - type: Transform
- pos: 100.5,-7.5
- parent: 2
- - uid: 12130
- components:
- - type: Transform
- pos: 102.5,-8.5
- parent: 2
- - uid: 12131
- components:
- - type: Transform
- pos: 102.5,-7.5
- parent: 2
- - uid: 12132
- components:
- - type: Transform
- pos: 75.5,2.5
- parent: 2
- - uid: 12133
- components:
- - type: Transform
- pos: 75.5,0.5
- parent: 2
- - uid: 12134
- components:
- - type: Transform
- pos: 20.5,19.5
- parent: 2
- - uid: 12135
- components:
- - type: Transform
- pos: 20.5,17.5
- parent: 2
- - uid: 12136
- components:
- - type: Transform
- pos: 19.5,17.5
- parent: 2
- - uid: 12137
- components:
- - type: Transform
- pos: 19.5,16.5
- parent: 2
- - uid: 12138
- components:
- - type: Transform
- pos: 19.5,19.5
- parent: 2
- - uid: 12139
- components:
- - type: Transform
- pos: 19.5,20.5
- parent: 2
- - uid: 12140
- components:
- - type: Transform
- pos: 93.5,10.5
- parent: 2
- - uid: 12141
- components:
- - type: Transform
- pos: 94.5,10.5
- parent: 2
- - uid: 12142
- components:
- - type: Transform
- pos: 94.5,9.5
- parent: 2
- - uid: 12143
- components:
- - type: Transform
- pos: -62.5,-31.5
- parent: 2
- - uid: 12144
- components:
- - type: Transform
- pos: -62.5,-32.5
- parent: 2
- - uid: 12145
- components:
- - type: Transform
- pos: -62.5,-33.5
- parent: 2
- - uid: 12146
- components:
- - type: Transform
- pos: -62.5,-34.5
- parent: 2
- - uid: 12147
- components:
- - type: Transform
- pos: -62.5,-35.5
- parent: 2
- - uid: 12148
- components:
- - type: Transform
- pos: -63.5,-35.5
- parent: 2
- - uid: 12149
- components:
- - type: Transform
- pos: -69.5,-34.5
- parent: 2
- - uid: 12150
- components:
- - type: Transform
- pos: -69.5,-35.5
- parent: 2
- - uid: 12151
- components:
- - type: Transform
- pos: -69.5,-33.5
- parent: 2
- - uid: 12152
- components:
- - type: Transform
- pos: -68.5,-35.5
- parent: 2
- - uid: 12153
- components:
- - type: Transform
- pos: 7.5,-43.5
- parent: 2
- - uid: 12154
- components:
- - type: Transform
- pos: 7.5,-44.5
- parent: 2
- - uid: 12155
- components:
- - type: Transform
- pos: -77.5,4.5
- parent: 2
- - uid: 12156
- components:
- - type: Transform
- pos: -76.5,14.5
- parent: 2
- - uid: 12157
- components:
- - type: Transform
- pos: -76.5,8.5
- parent: 2
- - uid: 12158
- components:
- - type: Transform
- pos: -76.5,10.5
- parent: 2
- - uid: 12159
- components:
- - type: Transform
- pos: -76.5,7.5
- parent: 2
- - uid: 12160
- components:
- - type: Transform
- pos: -78.5,4.5
- parent: 2
- - uid: 12161
- components:
- - type: Transform
- pos: -76.5,12.5
- parent: 2
- - uid: 12162
- components:
- - type: Transform
- pos: -76.5,5.5
- parent: 2
- - uid: 12163
- components:
- - type: Transform
- pos: -76.5,4.5
- parent: 2
- - uid: 12164
- components:
- - type: Transform
- pos: -76.5,6.5
- parent: 2
- - uid: 12165
- components:
- - type: Transform
- pos: -76.5,11.5
- parent: 2
- - uid: 12166
- components:
- - type: Transform
- pos: -76.5,9.5
- parent: 2
- - uid: 12167
- components:
- - type: Transform
- pos: -76.5,13.5
- parent: 2
- - uid: 12168
- components:
- - type: Transform
- pos: -79.5,4.5
- parent: 2
- - uid: 12169
- components:
- - type: Transform
- pos: -80.5,4.5
- parent: 2
- - uid: 12170
- components:
- - type: Transform
- pos: -81.5,4.5
- parent: 2
- - uid: 12171
- components:
- - type: Transform
- pos: -82.5,4.5
- parent: 2
- - uid: 12172
- components:
- - type: Transform
- pos: -83.5,4.5
- parent: 2
- - uid: 12173
- components:
- - type: Transform
- pos: -84.5,4.5
- parent: 2
- - uid: 12174
- components:
- - type: Transform
- pos: -85.5,4.5
- parent: 2
- - uid: 12175
- components:
- - type: Transform
- pos: -86.5,4.5
- parent: 2
- - uid: 12176
- components:
- - type: Transform
- pos: -87.5,4.5
- parent: 2
- - uid: 12177
- components:
- - type: Transform
- pos: -88.5,4.5
- parent: 2
- - uid: 12178
- components:
- - type: Transform
- pos: -89.5,4.5
- parent: 2
- - uid: 12179
- components:
- - type: Transform
- pos: -90.5,4.5
- parent: 2
- - uid: 12180
- components:
- - type: Transform
- pos: -91.5,4.5
- parent: 2
- - uid: 12181
- components:
- - type: Transform
- pos: -92.5,4.5
- parent: 2
- - uid: 12182
- components:
- - type: Transform
- pos: -93.5,4.5
- parent: 2
- - uid: 12183
- components:
- - type: Transform
- pos: -94.5,4.5
- parent: 2
- - uid: 12184
- components:
- - type: Transform
- pos: -95.5,4.5
- parent: 2
- - uid: 12185
- components:
- - type: Transform
- pos: -96.5,4.5
- parent: 2
- - uid: 12186
- components:
- - type: Transform
- pos: -97.5,4.5
- parent: 2
- - uid: 12187
- components:
- - type: Transform
- pos: -98.5,4.5
- parent: 2
- - uid: 12188
- components:
- - type: Transform
- pos: -99.5,4.5
- parent: 2
- - uid: 12189
- components:
- - type: Transform
- pos: -100.5,4.5
- parent: 2
- - uid: 12190
- components:
- - type: Transform
- pos: -102.5,4.5
- parent: 2
- - uid: 12191
- components:
- - type: Transform
- pos: -100.5,6.5
- parent: 2
- - uid: 12192
- components:
- - type: Transform
- pos: -99.5,6.5
- parent: 2
- - uid: 12193
- components:
- - type: Transform
- pos: -98.5,6.5
- parent: 2
- - uid: 12194
- components:
- - type: Transform
- pos: -97.5,6.5
- parent: 2
- - uid: 12195
- components:
- - type: Transform
- pos: -96.5,6.5
- parent: 2
- - uid: 12196
- components:
- - type: Transform
- pos: -95.5,6.5
- parent: 2
- - uid: 12197
- components:
- - type: Transform
- pos: -94.5,6.5
- parent: 2
- - uid: 12198
- components:
- - type: Transform
- pos: -93.5,6.5
- parent: 2
- - uid: 12199
- components:
- - type: Transform
- pos: -92.5,6.5
- parent: 2
- - uid: 12200
- components:
- - type: Transform
- pos: -91.5,6.5
- parent: 2
- - uid: 12201
- components:
- - type: Transform
- pos: -90.5,6.5
- parent: 2
- - uid: 12202
- components:
- - type: Transform
- pos: -89.5,6.5
- parent: 2
- - uid: 12203
- components:
- - type: Transform
- pos: -88.5,6.5
- parent: 2
- - uid: 12204
- components:
- - type: Transform
- pos: -87.5,6.5
- parent: 2
- - uid: 12205
- components:
- - type: Transform
- pos: -86.5,6.5
- parent: 2
- - uid: 12206
- components:
- - type: Transform
- pos: -85.5,6.5
- parent: 2
- - uid: 12207
- components:
- - type: Transform
- pos: -84.5,6.5
- parent: 2
- - uid: 12208
- components:
- - type: Transform
- pos: -83.5,6.5
- parent: 2
- - uid: 12209
- components:
- - type: Transform
- pos: -82.5,6.5
- parent: 2
- - uid: 12210
- components:
- - type: Transform
- pos: -81.5,6.5
- parent: 2
- - uid: 12211
- components:
- - type: Transform
- pos: -80.5,6.5
- parent: 2
- - uid: 12212
- components:
- - type: Transform
- pos: -79.5,6.5
- parent: 2
- - uid: 12213
- components:
- - type: Transform
- pos: -78.5,6.5
- parent: 2
- - uid: 12214
- components:
- - type: Transform
- pos: -77.5,6.5
- parent: 2
- - uid: 12215
- components:
- - type: Transform
- pos: -102.5,3.5
- parent: 2
- - uid: 12216
- components:
- - type: Transform
- pos: -102.5,5.5
- parent: 2
- - uid: 12217
- components:
- - type: Transform
- pos: -103.5,3.5
- parent: 2
- - uid: 12218
- components:
- - type: Transform
- pos: -100.5,2.5
- parent: 2
- - uid: 12219
- components:
- - type: Transform
- pos: -100.5,1.5
- parent: 2
- - uid: 12220
- components:
- - type: Transform
- pos: -101.5,1.5
- parent: 2
- - uid: 12221
- components:
- - type: Transform
- pos: -100.5,3.5
- parent: 2
- - uid: 12222
- components:
- - type: Transform
- pos: -102.5,1.5
- parent: 2
- - uid: 12223
- components:
- - type: Transform
- pos: -103.5,1.5
- parent: 2
- - uid: 12224
- components:
- - type: Transform
- pos: -103.5,0.5
- parent: 2
- - uid: 12225
- components:
- - type: Transform
- pos: -103.5,-0.5
- parent: 2
- - uid: 12226
- components:
- - type: Transform
- pos: -104.5,3.5
- parent: 2
- - uid: 12227
- components:
- - type: Transform
- pos: -105.5,3.5
- parent: 2
- - uid: 12228
- components:
- - type: Transform
- pos: -105.5,2.5
- parent: 2
- - uid: 12229
- components:
- - type: Transform
- pos: -105.5,1.5
- parent: 2
- - uid: 12230
- components:
- - type: Transform
- pos: -105.5,0.5
- parent: 2
- - uid: 12231
- components:
- - type: Transform
- pos: -105.5,-0.5
- parent: 2
- - uid: 12232
- components:
- - type: Transform
- pos: -105.5,-0.5
- parent: 2
- - uid: 12233
- components:
- - type: Transform
- pos: -105.5,-1.5
- parent: 2
- - uid: 12234
- components:
- - type: Transform
- pos: -105.5,-2.5
- parent: 2
- - uid: 12235
- components:
- - type: Transform
- pos: -105.5,-3.5
- parent: 2
- - uid: 12236
- components:
- - type: Transform
- pos: -105.5,-4.5
- parent: 2
- - uid: 12237
- components:
- - type: Transform
- pos: -105.5,-5.5
- parent: 2
- - uid: 12238
- components:
- - type: Transform
- pos: -105.5,-6.5
- parent: 2
- - uid: 12239
- components:
- - type: Transform
- pos: -105.5,-7.5
- parent: 2
- - uid: 12240
- components:
- - type: Transform
- pos: -105.5,-8.5
- parent: 2
- - uid: 12241
- components:
- - type: Transform
- pos: -105.5,-9.5
- parent: 2
- - uid: 12242
- components:
- - type: Transform
- pos: -105.5,-10.5
- parent: 2
- - uid: 12243
- components:
- - type: Transform
- pos: -105.5,-11.5
- parent: 2
- - uid: 12244
- components:
- - type: Transform
- pos: -105.5,-12.5
- parent: 2
- - uid: 12245
- components:
- - type: Transform
- pos: -105.5,-13.5
- parent: 2
- - uid: 12246
- components:
- - type: Transform
- pos: -105.5,-14.5
- parent: 2
- - uid: 12247
- components:
- - type: Transform
- pos: -105.5,-15.5
- parent: 2
- - uid: 12248
- components:
- - type: Transform
- pos: -105.5,-16.5
- parent: 2
- - uid: 12249
- components:
- - type: Transform
- pos: -105.5,-17.5
- parent: 2
- - uid: 12250
- components:
- - type: Transform
- pos: -105.5,-18.5
- parent: 2
- - uid: 12251
- components:
- - type: Transform
- pos: -104.5,-18.5
- parent: 2
- - uid: 12252
- components:
- - type: Transform
- pos: -103.5,-18.5
- parent: 2
- - uid: 12253
- components:
- - type: Transform
- pos: -102.5,-18.5
- parent: 2
- - uid: 12254
- components:
- - type: Transform
- pos: -102.5,-19.5
- parent: 2
- - uid: 12255
- components:
- - type: Transform
- pos: -102.5,-19.5
- parent: 2
- - uid: 12256
- components:
- - type: Transform
- pos: -102.5,-20.5
- parent: 2
- - uid: 12257
- components:
- - type: Transform
- pos: -102.5,-21.5
- parent: 2
- - uid: 12258
- components:
- - type: Transform
- pos: -102.5,-21.5
- parent: 2
- - uid: 12259
- components:
- - type: Transform
- pos: -102.5,-21.5
- parent: 2
- - uid: 12260
- components:
- - type: Transform
- pos: -101.5,-21.5
- parent: 2
- - uid: 12261
- components:
- - type: Transform
- pos: -100.5,-21.5
- parent: 2
- - uid: 12262
- components:
- - type: Transform
- pos: -99.5,-21.5
- parent: 2
- - uid: 12263
- components:
- - type: Transform
- pos: -98.5,-21.5
- parent: 2
- - uid: 12264
- components:
- - type: Transform
- pos: -97.5,-21.5
- parent: 2
- - uid: 12265
- components:
- - type: Transform
- pos: -96.5,-21.5
- parent: 2
- - uid: 12266
- components:
- - type: Transform
- pos: -95.5,-21.5
- parent: 2
- - uid: 12267
- components:
- - type: Transform
- pos: -94.5,-21.5
- parent: 2
- - uid: 12268
- components:
- - type: Transform
- pos: -93.5,-21.5
- parent: 2
- - uid: 12269
- components:
- - type: Transform
- pos: -92.5,-21.5
- parent: 2
- - uid: 12270
- components:
- - type: Transform
- pos: -91.5,-21.5
- parent: 2
- - uid: 12271
- components:
- - type: Transform
- pos: -90.5,-21.5
- parent: 2
- - uid: 12272
- components:
- - type: Transform
- pos: -89.5,-21.5
- parent: 2
- - uid: 12273
- components:
- - type: Transform
- pos: -88.5,-21.5
- parent: 2
- - uid: 12274
- components:
- - type: Transform
- pos: -87.5,-21.5
- parent: 2
- - uid: 12275
- components:
- - type: Transform
- pos: -86.5,-21.5
- parent: 2
- - uid: 12276
- components:
- - type: Transform
- pos: -85.5,-21.5
- parent: 2
- - uid: 12277
- components:
- - type: Transform
- pos: -84.5,-21.5
- parent: 2
- - uid: 12278
- components:
- - type: Transform
- pos: -83.5,-21.5
- parent: 2
- - uid: 12279
- components:
- - type: Transform
- pos: -82.5,-21.5
- parent: 2
- - uid: 12280
- components:
- - type: Transform
- pos: -78.5,-21.5
- parent: 2
- - uid: 12281
- components:
- - type: Transform
- pos: -78.5,-19.5
- parent: 2
- - uid: 12282
- components:
- - type: Transform
- pos: -83.5,-19.5
- parent: 2
- - uid: 12283
- components:
- - type: Transform
- pos: -84.5,-19.5
- parent: 2
- - uid: 12284
- components:
- - type: Transform
- pos: -85.5,-19.5
- parent: 2
- - uid: 12285
- components:
- - type: Transform
- pos: -86.5,-19.5
- parent: 2
- - uid: 12286
- components:
- - type: Transform
- pos: -87.5,-19.5
- parent: 2
- - uid: 12287
- components:
- - type: Transform
- pos: -88.5,-19.5
- parent: 2
- - uid: 12288
- components:
- - type: Transform
- pos: -89.5,-19.5
- parent: 2
- - uid: 12289
- components:
- - type: Transform
- pos: -90.5,-19.5
- parent: 2
- - uid: 12290
- components:
- - type: Transform
- pos: -91.5,-19.5
- parent: 2
- - uid: 12291
- components:
- - type: Transform
- pos: -92.5,-19.5
- parent: 2
- - uid: 12292
- components:
- - type: Transform
- pos: -93.5,-19.5
- parent: 2
- - uid: 12293
- components:
- - type: Transform
- pos: -94.5,-19.5
- parent: 2
- - uid: 12294
- components:
- - type: Transform
- pos: -95.5,-19.5
- parent: 2
- - uid: 12295
- components:
- - type: Transform
- pos: -96.5,-19.5
- parent: 2
- - uid: 12296
- components:
- - type: Transform
- pos: -97.5,-19.5
- parent: 2
- - uid: 12297
- components:
- - type: Transform
- pos: -98.5,-19.5
- parent: 2
- - uid: 12298
- components:
- - type: Transform
- pos: -99.5,-19.5
- parent: 2
- - uid: 12299
- components:
- - type: Transform
- pos: -100.5,-19.5
- parent: 2
- - uid: 12300
- components:
- - type: Transform
- pos: -100.5,-18.5
- parent: 2
- - uid: 12301
- components:
- - type: Transform
- pos: -100.5,-17.5
- parent: 2
- - uid: 12302
- components:
- - type: Transform
- pos: -100.5,-16.5
- parent: 2
- - uid: 12303
- components:
- - type: Transform
- pos: -101.5,-16.5
- parent: 2
- - uid: 12304
- components:
- - type: Transform
- pos: -102.5,-16.5
- parent: 2
- - uid: 12305
- components:
- - type: Transform
- pos: -103.5,-16.5
- parent: 2
- - uid: 12306
- components:
- - type: Transform
- pos: -103.5,-15.5
- parent: 2
- - uid: 12307
- components:
- - type: Transform
- pos: -103.5,-14.5
- parent: 2
- - uid: 12308
- components:
- - type: Transform
- pos: -103.5,-13.5
- parent: 2
- - uid: 12309
- components:
- - type: Transform
- pos: -103.5,-12.5
- parent: 2
- - uid: 12310
- components:
- - type: Transform
- pos: -103.5,-11.5
- parent: 2
- - uid: 12311
- components:
- - type: Transform
- pos: -103.5,-10.5
- parent: 2
- - uid: 12312
- components:
- - type: Transform
- pos: -103.5,-9.5
- parent: 2
- - uid: 12313
- components:
- - type: Transform
- pos: -103.5,-8.5
- parent: 2
- - uid: 12314
- components:
- - type: Transform
- pos: -103.5,-7.5
- parent: 2
- - uid: 12315
- components:
- - type: Transform
- pos: -103.5,-6.5
- parent: 2
- - uid: 12316
- components:
- - type: Transform
- pos: -103.5,-5.5
- parent: 2
- - uid: 12317
- components:
- - type: Transform
- pos: -103.5,-4.5
- parent: 2
- - uid: 12318
- components:
- - type: Transform
- pos: -103.5,-3.5
- parent: 2
- - uid: 12319
- components:
- - type: Transform
- pos: -103.5,-2.5
- parent: 2
- - uid: 12320
- components:
- - type: Transform
- pos: -103.5,-1.5
- parent: 2
- - uid: 12321
- components:
- - type: Transform
- pos: -103.5,-0.5
- parent: 2
- - uid: 12322
- components:
- - type: Transform
- pos: -103.5,0.5
- parent: 2
- - uid: 12323
- components:
- - type: Transform
- pos: -103.5,1.5
- parent: 2
- - uid: 12324
- components:
- - type: Transform
- pos: -102.5,6.5
- parent: 2
- - uid: 12325
- components:
- - type: Transform
- pos: -101.5,6.5
- parent: 2
- - uid: 12326
- components:
- - type: Transform
- pos: -9.5,-10.5
- parent: 2
- - uid: 12327
- components:
- - type: Transform
- pos: 10.5,-10.5
- parent: 2
- - uid: 12328
- components:
- - type: Transform
- pos: 9.5,-11.5
- parent: 2
- - uid: 12329
- components:
- - type: Transform
- pos: 3.5,-12.5
- parent: 2
- - uid: 12330
- components:
- - type: Transform
- pos: 10.5,-11.5
- parent: 2
- - uid: 12331
- components:
- - type: Transform
- pos: 4.5,-10.5
- parent: 2
- - uid: 12332
- components:
- - type: Transform
- pos: 4.5,-9.5
- parent: 2
- - uid: 12333
- components:
- - type: Transform
- pos: 4.5,-11.5
- parent: 2
- - uid: 12334
- components:
- - type: Transform
- pos: 3.5,-10.5
- parent: 2
- - uid: 12335
- components:
- - type: Transform
- pos: 79.5,7.5
- parent: 2
- - uid: 12336
- components:
- - type: Transform
- pos: 79.5,6.5
- parent: 2
- - uid: 12337
- components:
- - type: Transform
- pos: 78.5,6.5
- parent: 2
- - uid: 12338
- components:
- - type: Transform
- pos: 78.5,5.5
- parent: 2
- - uid: 12339
- components:
- - type: Transform
- pos: 78.5,4.5
- parent: 2
- - uid: 12340
- components:
- - type: Transform
- pos: 78.5,3.5
- parent: 2
- - uid: 12341
- components:
- - type: Transform
- pos: 78.5,2.5
- parent: 2
- - uid: 12342
- components:
- - type: Transform
- pos: 54.5,30.5
- parent: 2
- - uid: 12343
- components:
- - type: Transform
- pos: 66.5,31.5
- parent: 2
- - uid: 12344
- components:
- - type: Transform
- pos: 65.5,30.5
- parent: 2
- - uid: 12345
- components:
- - type: Transform
- pos: 66.5,30.5
- parent: 2
- - uid: 12346
- components:
- - type: Transform
- pos: 65.5,29.5
- parent: 2
- - uid: 12347
- components:
- - type: Transform
- pos: 54.5,32.5
- parent: 2
- - uid: 12348
- components:
- - type: Transform
- pos: 54.5,31.5
- parent: 2
- - uid: 12349
- components:
- - type: Transform
- pos: 54.5,33.5
- parent: 2
- - uid: 12350
- components:
- - type: Transform
- pos: 34.5,-51.5
- parent: 2
- - uid: 12351
- components:
- - type: Transform
- pos: 35.5,-51.5
- parent: 2
- - uid: 12352
- components:
- - type: Transform
- pos: -17.5,-50.5
- parent: 2
- - uid: 12353
- components:
- - type: Transform
- pos: -18.5,-50.5
- parent: 2
- - uid: 12354
- components:
- - type: Transform
- pos: -19.5,-50.5
- parent: 2
- - uid: 12355
- components:
- - type: Transform
- pos: -20.5,-50.5
- parent: 2
- - uid: 12356
- components:
- - type: Transform
- pos: 34.5,-50.5
- parent: 2
- - uid: 12357
- components:
- - type: Transform
- pos: 34.5,-49.5
- parent: 2
- - uid: 12358
- components:
- - type: Transform
- pos: 33.5,-49.5
- parent: 2
- - uid: 12359
- components:
- - type: Transform
- pos: 32.5,-49.5
- parent: 2
- - uid: 12360
- components:
- - type: Transform
- pos: 31.5,-49.5
- parent: 2
- - uid: 12361
- components:
- - type: Transform
- pos: 30.5,-49.5
- parent: 2
- - uid: 12362
- components:
- - type: Transform
- pos: 29.5,-49.5
- parent: 2
- - uid: 12363
- components:
- - type: Transform
- pos: 28.5,-49.5
- parent: 2
- - uid: 12364
- components:
- - type: Transform
- pos: 27.5,-49.5
- parent: 2
- - uid: 12365
- components:
- - type: Transform
- pos: 27.5,-48.5
- parent: 2
- - uid: 12366
- components:
- - type: Transform
- pos: 27.5,-47.5
- parent: 2
- - uid: 12367
- components:
- - type: Transform
- pos: 27.5,-46.5
- parent: 2
- - uid: 12368
- components:
- - type: Transform
- pos: 27.5,-45.5
- parent: 2
- - uid: 12369
- components:
- - type: Transform
- pos: 27.5,-44.5
- parent: 2
- - uid: 12370
- components:
- - type: Transform
- pos: 27.5,-43.5
- parent: 2
- - uid: 12371
- components:
- - type: Transform
- pos: 27.5,-42.5
- parent: 2
- - uid: 12372
- components:
- - type: Transform
- pos: 27.5,-41.5
- parent: 2
- - uid: 12373
- components:
- - type: Transform
- pos: 27.5,-40.5
- parent: 2
- - uid: 12374
- components:
- - type: Transform
- pos: 27.5,-39.5
- parent: 2
- - uid: 12375
- components:
- - type: Transform
- pos: 5.5,-64.5
- parent: 2
- - uid: 12376
- components:
- - type: Transform
- pos: 5.5,-63.5
- parent: 2
- - uid: 12377
- components:
- - type: Transform
- pos: 5.5,-62.5
- parent: 2
- - uid: 12378
- components:
- - type: Transform
- pos: 5.5,-61.5
- parent: 2
- - uid: 12379
- components:
- - type: Transform
- pos: 5.5,-60.5
- parent: 2
- - uid: 12380
- components:
- - type: Transform
- pos: 5.5,-59.5
- parent: 2
- - uid: 12381
- components:
- - type: Transform
- pos: 5.5,-58.5
- parent: 2
- - uid: 12382
- components:
- - type: Transform
- pos: 5.5,-57.5
- parent: 2
- - uid: 12383
- components:
- - type: Transform
- pos: 4.5,-57.5
- parent: 2
- - uid: 12384
- components:
- - type: Transform
- pos: 3.5,-57.5
- parent: 2
- - uid: 12385
- components:
- - type: Transform
- pos: 3.5,-56.5
- parent: 2
- - uid: 38270
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 38244
- - uid: 38271
- components:
- - type: Transform
- pos: 3.5,-0.5
- parent: 38244
- - uid: 38272
- components:
- - type: Transform
- pos: 3.5,0.5
- parent: 38244
- - uid: 38273
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 38244
- - uid: 38274
- components:
- - type: Transform
- pos: 2.5,1.5
- parent: 38244
- - uid: 38275
- components:
- - type: Transform
- pos: 1.5,1.5
- parent: 38244
- - uid: 38276
- components:
- - type: Transform
- pos: -0.5,1.5
- parent: 38244
- - uid: 38277
- components:
- - type: Transform
- pos: -0.5,0.5
- parent: 38244
- - uid: 38278
- components:
- - type: Transform
- pos: -0.5,-0.5
- parent: 38244
- - uid: 38681
- components:
- - type: Transform
- pos: -1.5,-0.5
- parent: 38344
- - uid: 38682
- components:
- - type: Transform
- pos: 4.5,0.5
- parent: 38344
- - uid: 38683
- components:
- - type: Transform
- pos: 4.5,-1.5
- parent: 38344
- - uid: 38684
- components:
- - type: Transform
- pos: -12.5,-1.5
- parent: 38344
- - uid: 38685
- components:
- - type: Transform
- pos: -4.5,3.5
- parent: 38344
- - uid: 38686
- components:
- - type: Transform
- pos: 4.5,-2.5
- parent: 38344
- - uid: 38687
- components:
- - type: Transform
- pos: -12.5,6.5
- parent: 38344
- - uid: 38688
- components:
- - type: Transform
- pos: -12.5,3.5
- parent: 38344
- - uid: 38689
- components:
- - type: Transform
- pos: 8.5,1.5
- parent: 38344
- - uid: 38690
- components:
- - type: Transform
- pos: -7.5,-0.5
- parent: 38344
- - uid: 38691
- components:
- - type: Transform
- pos: -12.5,0.5
- parent: 38344
- - uid: 38692
- components:
- - type: Transform
- pos: -12.5,1.5
- parent: 38344
- - uid: 38693
- components:
- - type: Transform
- pos: -12.5,-3.5
- parent: 38344
- - uid: 38694
- components:
- - type: Transform
- pos: -12.5,9.5
- parent: 38344
- - uid: 38695
- components:
- - type: Transform
- pos: -10.5,9.5
- parent: 38344
- - uid: 38696
- components:
- - type: Transform
- pos: -9.5,9.5
- parent: 38344
- - uid: 38697
- components:
- - type: Transform
- pos: -7.5,9.5
- parent: 38344
- - uid: 38698
- components:
- - type: Transform
- pos: -7.5,10.5
- parent: 38344
- - uid: 38699
- components:
- - type: Transform
- pos: 10.5,-3.5
- parent: 38344
- - uid: 38700
- components:
- - type: Transform
- pos: -7.5,11.5
- parent: 38344
- - uid: 38701
- components:
- - type: Transform
- pos: 8.5,-4.5
- parent: 38344
- - uid: 38702
- components:
- - type: Transform
- pos: -5.5,1.5
- parent: 38344
- - uid: 38703
- components:
- - type: Transform
- pos: -5.5,0.5
- parent: 38344
- - uid: 38704
- components:
- - type: Transform
- pos: -5.5,-0.5
- parent: 38344
- - uid: 38705
- components:
- - type: Transform
- pos: 10.5,-4.5
- parent: 38344
- - uid: 38706
- components:
- - type: Transform
- pos: -8.5,9.5
- parent: 38344
- - uid: 38707
- components:
- - type: Transform
- pos: -21.5,25.5
- parent: 38344
- - uid: 38708
- components:
- - type: Transform
- pos: -21.5,26.5
- parent: 38344
- - uid: 38709
- components:
- - type: Transform
- pos: -21.5,27.5
- parent: 38344
- - uid: 38710
- components:
- - type: Transform
- pos: -20.5,28.5
- parent: 38344
- - uid: 38711
- components:
- - type: Transform
- pos: -19.5,28.5
- parent: 38344
- - uid: 38712
- components:
- - type: Transform
- pos: 8.5,2.5
- parent: 38344
- - uid: 38713
- components:
- - type: Transform
- pos: -6.5,2.5
- parent: 38344
- - uid: 38714
- components:
- - type: Transform
- pos: -10.5,2.5
- parent: 38344
- - uid: 38715
- components:
- - type: Transform
- pos: -4.5,2.5
- parent: 38344
- - uid: 38716
- components:
- - type: Transform
- pos: -5.5,2.5
- parent: 38344
- - uid: 38717
- components:
- - type: Transform
- pos: 2.5,3.5
- parent: 38344
- - uid: 38718
- components:
- - type: Transform
- pos: -2.5,2.5
- parent: 38344
- - uid: 38719
- components:
- - type: Transform
- pos: -3.5,2.5
- parent: 38344
- - uid: 38720
- components:
- - type: Transform
- pos: -1.5,2.5
- parent: 38344
- - uid: 38721
- components:
- - type: Transform
- pos: -1.5,3.5
- parent: 38344
- - uid: 38722
- components:
- - type: Transform
- pos: 4.5,-4.5
- parent: 38344
- - uid: 38723
- components:
- - type: Transform
- pos: -8.5,2.5
- parent: 38344
- - uid: 38724
- components:
- - type: Transform
- pos: -12.5,5.5
- parent: 38344
- - uid: 38725
- components:
- - type: Transform
- pos: -11.5,2.5
- parent: 38344
- - uid: 38726
- components:
- - type: Transform
- pos: -7.5,2.5
- parent: 38344
- - uid: 38727
- components:
- - type: Transform
- pos: 4.5,-0.5
- parent: 38344
- - uid: 38728
- components:
- - type: Transform
- pos: -16.5,-2.5
- parent: 38344
- - uid: 38729
- components:
- - type: Transform
- pos: -7.5,-1.5
- parent: 38344
- - uid: 38730
- components:
- - type: Transform
- pos: -12.5,8.5
- parent: 38344
- - uid: 38731
- components:
- - type: Transform
- pos: -6.5,-1.5
- parent: 38344
- - uid: 38732
- components:
- - type: Transform
- pos: 9.5,-4.5
- parent: 38344
- - uid: 38733
- components:
- - type: Transform
- pos: -12.5,4.5
- parent: 38344
- - uid: 38734
- components:
- - type: Transform
- pos: -12.5,-2.5
- parent: 38344
- - uid: 38735
- components:
- - type: Transform
- pos: -12.5,-0.5
- parent: 38344
- - uid: 38736
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 38344
- - uid: 38737
- components:
- - type: Transform
- pos: 4.5,1.5
- parent: 38344
- - uid: 38738
- components:
- - type: Transform
- pos: 10.5,-0.5
- parent: 38344
- - uid: 38739
- components:
- - type: Transform
- pos: 10.5,-1.5
- parent: 38344
- - uid: 38740
- components:
- - type: Transform
- pos: -5.5,-1.5
- parent: 38344
- - uid: 38741
- components:
- - type: Transform
- pos: 10.5,-2.5
- parent: 38344
- - uid: 38742
- components:
- - type: Transform
- pos: -11.5,9.5
- parent: 38344
- - uid: 38743
- components:
- - type: Transform
- pos: 7.5,1.5
- parent: 38344
- - uid: 38744
- components:
- - type: Transform
- pos: 8.5,3.5
- parent: 38344
- - uid: 38745
- components:
- - type: Transform
- pos: 4.5,3.5
- parent: 38344
- - uid: 38746
- components:
- - type: Transform
- pos: -12.5,2.5
- parent: 38344
- - uid: 38747
- components:
- - type: Transform
- pos: -4.5,4.5
- parent: 38344
- - uid: 38748
- components:
- - type: Transform
- pos: 5.5,1.5
- parent: 38344
- - uid: 38749
- components:
- - type: Transform
- pos: -9.5,2.5
- parent: 38344
- - uid: 38750
- components:
- - type: Transform
- pos: -4.5,5.5
- parent: 38344
- - uid: 38751
- components:
- - type: Transform
- pos: -7.5,9.5
- parent: 38344
- - uid: 38752
- components:
- - type: Transform
- pos: 3.5,3.5
- parent: 38344
- - uid: 38753
- components:
- - type: Transform
- pos: -1.5,-2.5
- parent: 38344
- - uid: 38754
- components:
- - type: Transform
- pos: -16.5,-1.5
- parent: 38344
- - uid: 38755
- components:
- - type: Transform
- pos: 5.5,-4.5
- parent: 38344
- - uid: 38756
- components:
- - type: Transform
- pos: 4.5,-3.5
- parent: 38344
- - uid: 38757
- components:
- - type: Transform
- pos: 6.5,-4.5
- parent: 38344
- - uid: 38758
- components:
- - type: Transform
- pos: 7.5,-3.5
- parent: 38344
- - uid: 38759
- components:
- - type: Transform
- pos: -16.5,-3.5
- parent: 38344
- - uid: 38760
- components:
- - type: Transform
- pos: -14.5,-3.5
- parent: 38344
- - uid: 38761
- components:
- - type: Transform
- pos: -1.5,-4.5
- parent: 38344
- - uid: 38762
- components:
- - type: Transform
- pos: -0.5,-5.5
- parent: 38344
- - uid: 38763
- components:
- - type: Transform
- pos: -1.5,1.5
- parent: 38344
- - uid: 38764
- components:
- - type: Transform
- pos: -13.5,-3.5
- parent: 38344
- - uid: 38765
- components:
- - type: Transform
- pos: -0.5,-6.5
- parent: 38344
- - uid: 38766
- components:
- - type: Transform
- pos: 7.5,-4.5
- parent: 38344
- - uid: 38767
- components:
- - type: Transform
- pos: 7.5,-2.5
- parent: 38344
- - uid: 38768
- components:
- - type: Transform
- pos: -1.5,-5.5
- parent: 38344
- - uid: 38769
- components:
- - type: Transform
- pos: 6.5,1.5
- parent: 38344
- - uid: 38770
- components:
- - type: Transform
- pos: 4.5,4.5
- parent: 38344
- - uid: 38771
- components:
- - type: Transform
- pos: 4.5,5.5
- parent: 38344
- - uid: 38772
- components:
- - type: Transform
- pos: -0.5,3.5
- parent: 38344
- - uid: 38773
- components:
- - type: Transform
- pos: -1.5,-1.5
- parent: 38344
- - uid: 38774
- components:
- - type: Transform
- pos: -1.5,-3.5
- parent: 38344
- - uid: 38775
- components:
- - type: Transform
- pos: -15.5,-3.5
- parent: 38344
- - uid: 38776
- components:
- - type: Transform
- pos: -1.5,0.5
- parent: 38344
- - uid: 38777
- components:
- - type: Transform
- pos: -16.5,-0.5
- parent: 38344
- - uid: 38778
- components:
- - type: Transform
- pos: -10.5,7.5
- parent: 38344
- - uid: 38779
- components:
- - type: Transform
- pos: -12.5,7.5
- parent: 38344
- - uid: 38780
- components:
- - type: Transform
- pos: -11.5,7.5
- parent: 38344
- - uid: 38781
- components:
- - type: Transform
- pos: 8.5,4.5
- parent: 38344
- - uid: 38782
- components:
- - type: Transform
- pos: 7.5,5.5
- parent: 38344
- - uid: 38783
- components:
- - type: Transform
- pos: 7.5,4.5
- parent: 38344
- - uid: 38784
- components:
- - type: Transform
- pos: 1.5,3.5
- parent: 38344
- - uid: 38785
- components:
- - type: Transform
- pos: 4.5,2.5
- parent: 38344
- - uid: 38786
- components:
- - type: Transform
- pos: -10.5,2.5
- parent: 38344
- - uid: 38787
- components:
- - type: Transform
- pos: -10.5,1.5
- parent: 38344
- - uid: 38788
- components:
- - type: Transform
- pos: -10.5,0.5
- parent: 38344
- - uid: 38789
- components:
- - type: Transform
- pos: -10.5,-0.5
- parent: 38344
- - uid: 38790
- components:
- - type: Transform
- pos: -9.5,-0.5
- parent: 38344
- - uid: 38791
- components:
- - type: Transform
- pos: -9.5,-1.5
- parent: 38344
- - uid: 38792
- components:
- - type: Transform
- pos: -9.5,-2.5
- parent: 38344
- - uid: 38793
- components:
- - type: Transform
- pos: -9.5,-3.5
- parent: 38344
- - uid: 38794
- components:
- - type: Transform
- pos: -9.5,-4.5
- parent: 38344
- - uid: 38795
- components:
- - type: Transform
- pos: -8.5,-4.5
- parent: 38344
- - uid: 38796
- components:
- - type: Transform
- pos: -8.5,-5.5
- parent: 38344
- - uid: 38797
- components:
- - type: Transform
- pos: -8.5,-6.5
- parent: 38344
- - uid: 38798
- components:
- - type: Transform
- pos: -8.5,-6.5
- parent: 38344
- - uid: 38799
- components:
- - type: Transform
- pos: -8.5,-7.5
- parent: 38344
- - uid: 38800
- components:
- - type: Transform
- pos: -9.5,-7.5
- parent: 38344
- - uid: 38801
- components:
- - type: Transform
- pos: -10.5,-8.5
- parent: 38344
- - uid: 38802
- components:
- - type: Transform
- pos: -11.5,-8.5
- parent: 38344
- - uid: 38803
- components:
- - type: Transform
- pos: -12.5,-8.5
- parent: 38344
- - uid: 38804
- components:
- - type: Transform
- pos: -13.5,-8.5
- parent: 38344
- - uid: 38805
- components:
- - type: Transform
- pos: -14.5,-8.5
- parent: 38344
- - uid: 38806
- components:
- - type: Transform
- pos: -15.5,-8.5
- parent: 38344
- - uid: 38807
- components:
- - type: Transform
- pos: -16.5,-8.5
- parent: 38344
- - uid: 38808
- components:
- - type: Transform
- pos: -17.5,-8.5
- parent: 38344
- - uid: 38809
- components:
- - type: Transform
- pos: -18.5,-8.5
- parent: 38344
-- proto: CableMVStack
- entities:
- - uid: 12386
- components:
- - type: Transform
- pos: -47.789772,11.574663
- parent: 2
-- proto: CableMVStack1
- entities:
- - uid: 12387
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 9.176718,72.34477
- parent: 2
- - uid: 12388
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: 74.60467,-7.6676617
- parent: 2
- - uid: 12389
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 75.66717,-8.480163
- parent: 2
- - uid: 12390
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: 74.74529,-8.589538
- parent: 2
-- proto: CableTerminal
- entities:
- - uid: 12391
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-29.5
- parent: 2
- - uid: 12392
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,61.5
- parent: 2
- - uid: 12393
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,31.5
- parent: 2
- - uid: 12394
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,-3.5
- parent: 2
- - uid: 12395
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-9.5
- parent: 2
- - uid: 12396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-40.5
- parent: 2
- - type: Physics
- canCollide: False
- - type: Fixtures
- fixtures: {}
- - uid: 12397
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,1.5
- parent: 2
- - uid: 12398
- components:
- - type: Transform
- pos: -59.5,61.5
- parent: 2
- - type: Physics
- canCollide: False
- - type: Fixtures
- fixtures: {}
- - uid: 12399
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,12.5
- parent: 2
- - uid: 12400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,88.5
- parent: 2
- - type: Physics
- canCollide: False
- - type: Fixtures
- fixtures: {}
- - uid: 12401
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,2.5
- parent: 2
- - uid: 12402
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,0.5
- parent: 2
- - uid: 12403
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,-0.5
- parent: 2
- - uid: 12404
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-73.5
- parent: 2
- - type: Physics
- canCollide: False
- - type: Fixtures
- fixtures: {}
- - uid: 12405
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -80.5,-12.5
- parent: 2
- - uid: 12406
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,-44.5
- parent: 2
- - uid: 12407
- components:
- - type: Transform
- pos: -121.5,25.5
- parent: 2
- - uid: 12408
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-2.5
- parent: 2
- - uid: 38810
- components:
- - type: Transform
- pos: 9.5,6.5
- parent: 38344
- - uid: 38811
- components:
- - type: Transform
- pos: 8.5,6.5
- parent: 38344
-- proto: CandleGreenInfinite
- entities:
- - uid: 12409
- components:
- - type: Transform
- pos: 62.49112,26.661777
- parent: 2
-- proto: CandleGreenSmallInfinite
- entities:
- - uid: 12410
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: -51.405003,-47.558502
- parent: 2
-- proto: CandleInfinite
- entities:
- - uid: 12411
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: -49.0339,-43.62724
- parent: 2
-- proto: CandleRedInfinite
- entities:
- - uid: 12412
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: -53.86745,-43.94071
- parent: 2
-- proto: CannabisSeeds
- entities:
- - uid: 12413
- components:
- - type: Transform
- pos: -38.5,32.5
- parent: 2
-- proto: CapacitorStockPart
- entities:
- - uid: 1064
- components:
- - type: Transform
- parent: 1062
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1065
- components:
- - type: Transform
- parent: 1062
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 12414
- components:
- - type: Transform
- pos: -32.5,12.5
- parent: 2
- - uid: 12415
- components:
- - type: Transform
- pos: -45.5,4.5
- parent: 2
- - uid: 12416
- components:
- - type: Transform
- pos: -7.5,-39.5
- parent: 2
-- proto: CaptainIDCard
- entities:
- - uid: 12417
- components:
- - type: Transform
- pos: 7.44547,0.9202859
- parent: 2
-- proto: CarbonDioxideCanister
- entities:
- - uid: 12418
- components:
- - type: Transform
- pos: -30.5,-50.5
- parent: 2
- - uid: 12419
- components:
- - type: Transform
- pos: 77.5,23.5
- parent: 2
- - uid: 12420
- components:
- - type: Transform
- pos: -30.5,-49.5
- parent: 2
- - type: Lock
- locked: False
- - uid: 12421
- components:
- - type: Transform
- pos: -40.5,-50.5
- parent: 2
- - uid: 12422
- components:
- - type: Transform
- pos: -70.5,41.5
- parent: 2
-- proto: Carpet
- entities:
- - uid: 12423
- components:
- - type: Transform
- pos: 67.5,29.5
- parent: 2
- - uid: 12424
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-16.5
- parent: 2
- - uid: 12425
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-13.5
- parent: 2
- - uid: 12426
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-15.5
- parent: 2
- - uid: 12427
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-16.5
- parent: 2
- - uid: 12428
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-14.5
- parent: 2
- - uid: 12429
- components:
- - type: Transform
- pos: -11.5,9.5
- parent: 2
- - uid: 12430
- components:
- - type: Transform
- pos: -12.5,9.5
- parent: 2
- - uid: 12431
- components:
- - type: Transform
- pos: -12.5,10.5
- parent: 2
- - uid: 12432
- components:
- - type: Transform
- pos: -11.5,10.5
- parent: 2
- - uid: 12433
- components:
- - type: Transform
- pos: -10.5,10.5
- parent: 2
- - uid: 12434
- components:
- - type: Transform
- pos: -9.5,10.5
- parent: 2
- - uid: 12435
- components:
- - type: Transform
- pos: -9.5,9.5
- parent: 2
- - uid: 12436
- components:
- - type: Transform
- pos: -11.5,8.5
- parent: 2
- - uid: 12437
- components:
- - type: Transform
- pos: -12.5,8.5
- parent: 2
- - uid: 12438
- components:
- - type: Transform
- pos: -13.5,8.5
- parent: 2
- - uid: 12439
- components:
- - type: Transform
- pos: -13.5,9.5
- parent: 2
- - uid: 12440
- components:
- - type: Transform
- pos: -13.5,10.5
- parent: 2
- - uid: 12441
- components:
- - type: Transform
- pos: 33.5,8.5
- parent: 2
- - uid: 12442
- components:
- - type: Transform
- pos: 32.5,9.5
- parent: 2
- - uid: 12443
- components:
- - type: Transform
- pos: 31.5,8.5
- parent: 2
- - uid: 12444
- components:
- - type: Transform
- pos: 8.5,7.5
- parent: 2
- - uid: 12445
- components:
- - type: Transform
- pos: -1.5,13.5
- parent: 2
- - uid: 12446
- components:
- - type: Transform
- pos: -0.5,13.5
- parent: 2
- - uid: 12447
- components:
- - type: Transform
- pos: 7.5,7.5
- parent: 2
- - uid: 12448
- components:
- - type: Transform
- pos: 7.5,5.5
- parent: 2
- - uid: 12449
- components:
- - type: Transform
- pos: 9.5,6.5
- parent: 2
- - uid: 12450
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-13.5
- parent: 2
- - uid: 12451
- components:
- - type: Transform
- pos: -1.5,12.5
- parent: 2
- - uid: 12452
- components:
- - type: Transform
- pos: -0.5,12.5
- parent: 2
- - uid: 12453
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-13.5
- parent: 2
- - uid: 12454
- components:
- - type: Transform
- pos: 32.5,10.5
- parent: 2
- - uid: 12455
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-14.5
- parent: 2
- - uid: 12456
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-15.5
- parent: 2
- - uid: 12457
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-14.5
- parent: 2
- - uid: 12458
- components:
- - type: Transform
- pos: 33.5,10.5
- parent: 2
- - uid: 12459
- components:
- - type: Transform
- pos: 0.5,12.5
- parent: 2
- - uid: 12460
- components:
- - type: Transform
- pos: 31.5,10.5
- parent: 2
- - uid: 12461
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-16.5
- parent: 2
- - uid: 12462
- components:
- - type: Transform
- pos: 31.5,9.5
- parent: 2
- - uid: 12463
- components:
- - type: Transform
- pos: 0.5,13.5
- parent: 2
- - uid: 12464
- components:
- - type: Transform
- pos: 33.5,9.5
- parent: 2
- - uid: 12465
- components:
- - type: Transform
- pos: 7.5,6.5
- parent: 2
- - uid: 12466
- components:
- - type: Transform
- pos: 8.5,6.5
- parent: 2
- - uid: 12467
- components:
- - type: Transform
- pos: 9.5,7.5
- parent: 2
- - uid: 12468
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-15.5
- parent: 2
- - uid: 12469
- components:
- - type: Transform
- pos: 32.5,8.5
- parent: 2
- - uid: 12470
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-16.5
- parent: 2
- - uid: 12471
- components:
- - type: Transform
- pos: -10.5,9.5
- parent: 2
- - uid: 12472
- components:
- - type: Transform
- pos: -32.5,-67.5
- parent: 2
- - uid: 12473
- components:
- - type: Transform
- pos: -31.5,-66.5
- parent: 2
- - uid: 12474
- components:
- - type: Transform
- pos: -31.5,-67.5
- parent: 2
- - uid: 12475
- components:
- - type: Transform
- pos: -32.5,-66.5
- parent: 2
- - uid: 12476
- components:
- - type: Transform
- pos: -30.5,-66.5
- parent: 2
- - uid: 12477
- components:
- - type: Transform
- pos: -30.5,-67.5
- parent: 2
- - uid: 12478
- components:
- - type: Transform
- pos: -10.5,8.5
- parent: 2
- - uid: 12479
- components:
- - type: Transform
- pos: -9.5,8.5
- parent: 2
- - uid: 12480
- components:
- - type: Transform
- pos: -113.5,32.5
- parent: 2
- - uid: 12481
- components:
- - type: Transform
- pos: -112.5,32.5
- parent: 2
- - uid: 12482
- components:
- - type: Transform
- pos: 68.5,30.5
- parent: 2
- - uid: 12483
- components:
- - type: Transform
- pos: 66.5,28.5
- parent: 2
- - uid: 12484
- components:
- - type: Transform
- pos: 67.5,30.5
- parent: 2
- - uid: 12485
- components:
- - type: Transform
- pos: 68.5,29.5
- parent: 2
- - uid: 12486
- components:
- - type: Transform
- pos: 68.5,28.5
- parent: 2
- - uid: 12487
- components:
- - type: Transform
- pos: 67.5,28.5
- parent: 2
- - uid: 12488
- components:
- - type: Transform
- pos: 66.5,30.5
- parent: 2
- - uid: 12489
- components:
- - type: Transform
- pos: 66.5,29.5
- parent: 2
-- proto: CarpetBlack
- entities:
- - uid: 12490
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,9.5
- parent: 2
- - uid: 12491
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,10.5
- parent: 2
- - uid: 12492
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,9.5
- parent: 2
- - uid: 12493
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,10.5
- parent: 2
- - uid: 12494
- components:
- - type: Transform
- pos: -29.5,-7.5
- parent: 2
- - uid: 12495
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-10.5
- parent: 2
- - uid: 12496
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-10.5
- parent: 2
- - uid: 12497
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,9.5
- parent: 2
- - uid: 12498
- components:
- - type: Transform
- pos: -27.5,-7.5
- parent: 2
- - uid: 12499
- components:
- - type: Transform
- pos: -22.5,-11.5
- parent: 2
- - uid: 12500
- components:
- - type: Transform
- pos: 42.5,20.5
- parent: 2
- - uid: 12501
- components:
- - type: Transform
- pos: 40.5,20.5
- parent: 2
- - uid: 12502
- components:
- - type: Transform
- pos: 40.5,19.5
- parent: 2
- - uid: 12503
- components:
- - type: Transform
- pos: 42.5,21.5
- parent: 2
- - uid: 12504
- components:
- - type: Transform
- pos: 40.5,21.5
- parent: 2
- - uid: 12505
- components:
- - type: Transform
- pos: 41.5,20.5
- parent: 2
- - uid: 12506
- components:
- - type: Transform
- pos: 41.5,19.5
- parent: 2
- - uid: 12507
- components:
- - type: Transform
- pos: 42.5,19.5
- parent: 2
- - uid: 12508
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-44.5
- parent: 2
- - uid: 12509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-45.5
- parent: 2
- - uid: 12510
- components:
- - type: Transform
- pos: 41.5,21.5
- parent: 2
- - uid: 12511
- components:
- - type: Transform
- pos: 15.5,-51.5
- parent: 2
- - uid: 12512
- components:
- - type: Transform
- pos: -28.5,-8.5
- parent: 2
- - uid: 12513
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-45.5
- parent: 2
- - uid: 12514
- components:
- - type: Transform
- pos: -28.5,-7.5
- parent: 2
- - uid: 12515
- components:
- - type: Transform
- pos: 18.5,-51.5
- parent: 2
- - uid: 12516
- components:
- - type: Transform
- pos: 16.5,-52.5
- parent: 2
- - uid: 12517
- components:
- - type: Transform
- pos: 17.5,-51.5
- parent: 2
- - uid: 12518
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-44.5
- parent: 2
- - uid: 12519
- components:
- - type: Transform
- pos: -27.5,-8.5
- parent: 2
- - uid: 12520
- components:
- - type: Transform
- pos: 15.5,-52.5
- parent: 2
- - uid: 12521
- components:
- - type: Transform
- pos: 17.5,-52.5
- parent: 2
- - uid: 12522
- components:
- - type: Transform
- pos: 18.5,-52.5
- parent: 2
- - uid: 12523
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-51.5
- parent: 2
- - uid: 12524
- components:
- - type: Transform
- pos: 16.5,-51.5
- parent: 2
- - uid: 12525
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-45.5
- parent: 2
- - uid: 12526
- components:
- - type: Transform
- pos: -21.5,-11.5
- parent: 2
- - uid: 12527
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 2
- - uid: 12528
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-8.5
- parent: 2
- - uid: 12529
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-8.5
- parent: 2
- - uid: 12530
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-7.5
- parent: 2
- - uid: 12531
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-7.5
- parent: 2
- - uid: 12532
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-44.5
- parent: 2
- - uid: 12533
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-52.5
- parent: 2
- - uid: 12534
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,10.5
- parent: 2
- - uid: 12535
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,9.5
- parent: 2
- - uid: 12536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,10.5
- parent: 2
- - uid: 12537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,10.5
- parent: 2
- - uid: 12538
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,9.5
- parent: 2
- - uid: 12539
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,10.5
- parent: 2
- - uid: 12540
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,9.5
- parent: 2
- - uid: 12541
- components:
- - type: Transform
- pos: -29.5,-8.5
- parent: 2
- - uid: 38812
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,27.5
- parent: 38344
- - uid: 38813
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,27.5
- parent: 38344
-- proto: CarpetChapel
- entities:
- - uid: 12542
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-69.5
- parent: 2
- - uid: 12543
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-73.5
- parent: 2
- - uid: 12544
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-69.5
- parent: 2
- - uid: 12545
- components:
- - type: Transform
- pos: -20.5,-74.5
- parent: 2
- - uid: 12546
- components:
- - type: Transform
- pos: -20.5,-68.5
- parent: 2
- - uid: 12547
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-72.5
- parent: 2
- - uid: 12548
- components:
- - type: Transform
- pos: -15.5,-72.5
- parent: 2
- - uid: 12549
- components:
- - type: Transform
- pos: -18.5,-72.5
- parent: 2
- - uid: 12550
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-67.5
- parent: 2
- - uid: 12551
- components:
- - type: Transform
- pos: -20.5,-72.5
- parent: 2
- - uid: 12552
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-72.5
- parent: 2
- - uid: 12553
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-73.5
- parent: 2
- - uid: 12554
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-68.5
- parent: 2
- - uid: 12555
- components:
- - type: Transform
- pos: -13.5,-68.5
- parent: 2
- - uid: 12556
- components:
- - type: Transform
- pos: -15.5,-68.5
- parent: 2
- - uid: 12557
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-71.5
- parent: 2
- - uid: 12558
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-71.5
- parent: 2
- - uid: 12559
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-68.5
- parent: 2
- - uid: 12560
- components:
- - type: Transform
- pos: -15.5,-70.5
- parent: 2
- - uid: 12561
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-71.5
- parent: 2
- - uid: 12562
- components:
- - type: Transform
- pos: -13.5,-72.5
- parent: 2
- - uid: 12563
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-70.5
- parent: 2
- - uid: 12564
- components:
- - type: Transform
- pos: -13.5,-70.5
- parent: 2
- - uid: 12565
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-72.5
- parent: 2
- - uid: 12566
- components:
- - type: Transform
- pos: -18.5,-70.5
- parent: 2
- - uid: 12567
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-67.5
- parent: 2
- - uid: 12568
- components:
- - type: Transform
- pos: -18.5,-68.5
- parent: 2
- - uid: 12569
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-71.5
- parent: 2
- - uid: 12570
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-67.5
- parent: 2
- - uid: 12571
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-69.5
- parent: 2
- - uid: 12572
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-69.5
- parent: 2
- - uid: 12573
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-71.5
- parent: 2
- - uid: 12574
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-74.5
- parent: 2
- - uid: 12575
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-67.5
- parent: 2
- - uid: 12576
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-74.5
- parent: 2
- - uid: 12577
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-72.5
- parent: 2
- - uid: 12578
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-71.5
- parent: 2
- - uid: 12579
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-67.5
- parent: 2
- - uid: 12580
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-69.5
- parent: 2
- - uid: 12581
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-73.5
- parent: 2
- - uid: 12582
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-67.5
- parent: 2
- - uid: 12583
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-70.5
- parent: 2
- - uid: 12584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-68.5
- parent: 2
- - uid: 12585
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-69.5
- parent: 2
- - uid: 12586
- components:
- - type: Transform
- pos: -13.5,-74.5
- parent: 2
- - uid: 12587
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-67.5
- parent: 2
- - uid: 12588
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-68.5
- parent: 2
- - uid: 12589
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-69.5
- parent: 2
- - uid: 12590
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-67.5
- parent: 2
- - uid: 12591
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-69.5
- parent: 2
- - uid: 12592
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-73.5
- parent: 2
- - uid: 12593
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-70.5
- parent: 2
- - uid: 12594
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-71.5
- parent: 2
- - uid: 12595
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-70.5
- parent: 2
- - uid: 12596
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-71.5
- parent: 2
- - uid: 12597
- components:
- - type: Transform
- pos: -20.5,-70.5
- parent: 2
-- proto: CarpetCyan
- entities:
- - uid: 12598
- components:
- - type: Transform
- pos: -4.5,0.5
- parent: 2
- - uid: 12599
- components:
- - type: Transform
- pos: -4.5,1.5
- parent: 2
- - uid: 12600
- components:
- - type: Transform
- pos: -3.5,0.5
- parent: 2
- - uid: 12601
- components:
- - type: Transform
- pos: -3.5,1.5
- parent: 2
-- proto: CarpetOrange
- entities:
- - uid: 12602
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-25.5
- parent: 2
- - uid: 12603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-24.5
- parent: 2
- - uid: 12604
- components:
- - type: Transform
- pos: -28.5,19.5
- parent: 2
- - uid: 12605
- components:
- - type: Transform
- pos: -27.5,19.5
- parent: 2
- - uid: 12606
- components:
- - type: Transform
- pos: -26.5,19.5
- parent: 2
- - uid: 12607
- components:
- - type: Transform
- pos: -28.5,20.5
- parent: 2
- - uid: 12608
- components:
- - type: Transform
- pos: -26.5,20.5
- parent: 2
- - uid: 12609
- components:
- - type: Transform
- pos: -28.5,21.5
- parent: 2
- - uid: 12610
- components:
- - type: Transform
- pos: -26.5,21.5
- parent: 2
- - uid: 12611
- components:
- - type: Transform
- pos: -27.5,20.5
- parent: 2
- - uid: 12612
- components:
- - type: Transform
- pos: -27.5,21.5
- parent: 2
- - uid: 12613
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-25.5
- parent: 2
- - uid: 12614
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-24.5
- parent: 2
-- proto: CarpetPink
- entities:
- - uid: 12615
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-48.5
- parent: 2
- - uid: 12616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-49.5
- parent: 2
- - uid: 12617
- components:
- - type: Transform
- pos: -58.5,-47.5
- parent: 2
- - uid: 12618
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,62.5
- parent: 2
- - uid: 12619
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,62.5
- parent: 2
- - uid: 12620
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,62.5
- parent: 2
- - uid: 12621
- components:
- - type: Transform
- pos: -59.5,-50.5
- parent: 2
- - uid: 12622
- components:
- - type: Transform
- pos: -58.5,-48.5
- parent: 2
- - uid: 12623
- components:
- - type: Transform
- pos: -58.5,-50.5
- parent: 2
- - uid: 12624
- components:
- - type: Transform
- pos: -57.5,-49.5
- parent: 2
- - uid: 12625
- components:
- - type: Transform
- pos: -57.5,-50.5
- parent: 2
- - uid: 12626
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-47.5
- parent: 2
-- proto: CarpetSBlue
- entities:
- - uid: 12627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,2.5
- parent: 2
- - uid: 12628
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,3.5
- parent: 2
- - uid: 12629
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,0.5
- parent: 2
- - uid: 12630
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,1.5
- parent: 2
- - uid: 12631
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,1.5
- parent: 2
- - uid: 12632
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,1.5
- parent: 2
- - uid: 12633
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,2.5
- parent: 2
- - uid: 12634
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,2.5
- parent: 2
- - uid: 12635
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,0.5
- parent: 2
- - uid: 12636
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,3.5
- parent: 2
- - uid: 12637
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,1.5
- parent: 2
- - uid: 12638
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,2.5
- parent: 2
-- proto: Catwalk
- entities:
- - uid: 12639
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-40.5
- parent: 2
- - uid: 12640
- components:
- - type: Transform
- pos: -32.5,-69.5
- parent: 2
- - uid: 12641
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-18.5
- parent: 2
- - uid: 12642
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,30.5
- parent: 2
- - uid: 12643
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,31.5
- parent: 2
- - uid: 12644
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,32.5
- parent: 2
- - uid: 12645
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-43.5
- parent: 2
- - uid: 12646
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,31.5
- parent: 2
- - uid: 12647
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,27.5
- parent: 2
- - uid: 12648
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,26.5
- parent: 2
- - uid: 12649
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,27.5
- parent: 2
- - uid: 12650
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,25.5
- parent: 2
- - uid: 12651
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,26.5
- parent: 2
- - uid: 12652
- components:
- - type: Transform
- pos: -58.5,30.5
- parent: 2
- - uid: 12653
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,27.5
- parent: 2
- - uid: 12654
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,26.5
- parent: 2
- - uid: 12655
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,27.5
- parent: 2
- - uid: 12656
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,22.5
- parent: 2
- - uid: 12657
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,23.5
- parent: 2
- - uid: 12658
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,24.5
- parent: 2
- - uid: 12659
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,22.5
- parent: 2
- - uid: 12660
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,28.5
- parent: 2
- - uid: 12661
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,27.5
- parent: 2
- - uid: 12662
- components:
- - type: Transform
- pos: -56.5,27.5
- parent: 2
- - uid: 12663
- components:
- - type: Transform
- pos: -35.5,-57.5
- parent: 2
- - uid: 12664
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-41.5
- parent: 2
- - uid: 12665
- components:
- - type: Transform
- pos: -57.5,27.5
- parent: 2
- - uid: 12666
- components:
- - type: Transform
- pos: -56.5,28.5
- parent: 2
- - uid: 12667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,29.5
- parent: 2
- - uid: 12668
- components:
- - type: Transform
- pos: -32.5,-57.5
- parent: 2
- - uid: 12669
- components:
- - type: Transform
- pos: -57.5,30.5
- parent: 2
- - uid: 12670
- components:
- - type: Transform
- pos: -57.5,29.5
- parent: 2
- - uid: 12671
- components:
- - type: Transform
- pos: -55.5,29.5
- parent: 2
- - uid: 12672
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,34.5
- parent: 2
- - uid: 12673
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,34.5
- parent: 2
- - uid: 12674
- components:
- - type: Transform
- pos: -56.5,29.5
- parent: 2
- - uid: 12675
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,30.5
- parent: 2
- - uid: 12676
- components:
- - type: Transform
- pos: -57.5,28.5
- parent: 2
- - uid: 12677
- components:
- - type: Transform
- pos: -56.5,30.5
- parent: 2
- - uid: 12678
- components:
- - type: Transform
- pos: -55.5,28.5
- parent: 2
- - uid: 12679
- components:
- - type: Transform
- pos: -55.5,27.5
- parent: 2
- - uid: 12680
- components:
- - type: Transform
- pos: -55.5,30.5
- parent: 2
- - uid: 12681
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,23.5
- parent: 2
- - uid: 12682
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,28.5
- parent: 2
- - uid: 12683
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,26.5
- parent: 2
- - uid: 12684
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,26.5
- parent: 2
- - uid: 12685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-6.5
- parent: 2
- - uid: 12686
- components:
- - type: Transform
- pos: -22.5,-61.5
- parent: 2
- - uid: 12687
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,26.5
- parent: 2
- - uid: 12688
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,63.5
- parent: 2
- - uid: 12689
- components:
- - type: Transform
- pos: -30.5,-57.5
- parent: 2
- - uid: 12690
- components:
- - type: Transform
- pos: -31.5,-57.5
- parent: 2
- - uid: 12691
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,99.5
- parent: 2
- - uid: 12692
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,95.5
- parent: 2
- - uid: 12693
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,23.5
- parent: 2
- - uid: 12694
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,24.5
- parent: 2
- - uid: 12695
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,24.5
- parent: 2
- - uid: 12696
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,25.5
- parent: 2
- - uid: 12697
- components:
- - type: Transform
- pos: -59.5,30.5
- parent: 2
- - uid: 12698
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-16.5
- parent: 2
- - uid: 12699
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-10.5
- parent: 2
- - uid: 12700
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-11.5
- parent: 2
- - uid: 12701
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,91.5
- parent: 2
- - uid: 12702
- components:
- - type: Transform
- pos: -54.5,28.5
- parent: 2
- - uid: 12703
- components:
- - type: Transform
- pos: -54.5,27.5
- parent: 2
- - uid: 12704
- components:
- - type: Transform
- pos: -54.5,29.5
- parent: 2
- - uid: 12705
- components:
- - type: Transform
- pos: -53.5,30.5
- parent: 2
- - uid: 12706
- components:
- - type: Transform
- pos: -52.5,30.5
- parent: 2
- - uid: 12707
- components:
- - type: Transform
- pos: -54.5,30.5
- parent: 2
- - uid: 12708
- components:
- - type: Transform
- pos: -51.5,30.5
- parent: 2
- - uid: 12709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,31.5
- parent: 2
- - uid: 12710
- components:
- - type: Transform
- pos: -26.5,-57.5
- parent: 2
- - uid: 12711
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,91.5
- parent: 2
- - uid: 12712
- components:
- - type: Transform
- pos: -26.5,-58.5
- parent: 2
- - uid: 12713
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-17.5
- parent: 2
- - uid: 12714
- components:
- - type: Transform
- pos: -28.5,-57.5
- parent: 2
- - uid: 12715
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,57.5
- parent: 2
- - uid: 12716
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-10.5
- parent: 2
- - uid: 12717
- components:
- - type: Transform
- pos: -26.5,-59.5
- parent: 2
- - uid: 12718
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,65.5
- parent: 2
- - uid: 12719
- components:
- - type: Transform
- pos: -29.5,-57.5
- parent: 2
- - uid: 12720
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,64.5
- parent: 2
- - uid: 12721
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,57.5
- parent: 2
- - uid: 12722
- components:
- - type: Transform
- pos: -26.5,-69.5
- parent: 2
- - uid: 12723
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,61.5
- parent: 2
- - uid: 12724
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-42.5
- parent: 2
- - uid: 12725
- components:
- - type: Transform
- pos: -62.5,-25.5
- parent: 2
- - uid: 12726
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-19.5
- parent: 2
- - uid: 12727
- components:
- - type: Transform
- pos: -41.5,-4.5
- parent: 2
- - uid: 12728
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-3.5
- parent: 2
- - uid: 12729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-22.5
- parent: 2
- - uid: 12730
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,62.5
- parent: 2
- - uid: 12731
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,63.5
- parent: 2
- - uid: 12732
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,64.5
- parent: 2
- - uid: 12733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,66.5
- parent: 2
- - uid: 12734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-1.5
- parent: 2
- - uid: 12735
- components:
- - type: Transform
- pos: -55.5,40.5
- parent: 2
- - uid: 12736
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-30.5
- parent: 2
- - uid: 12737
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,59.5
- parent: 2
- - uid: 12738
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,61.5
- parent: 2
- - uid: 12739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-20.5
- parent: 2
- - uid: 12740
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,49.5
- parent: 2
- - uid: 12741
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,61.5
- parent: 2
- - uid: 12742
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,60.5
- parent: 2
- - uid: 12743
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,64.5
- parent: 2
- - uid: 12744
- components:
- - type: Transform
- pos: -63.5,-20.5
- parent: 2
- - uid: 12745
- components:
- - type: Transform
- pos: -62.5,-19.5
- parent: 2
- - uid: 12746
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,44.5
- parent: 2
- - uid: 12747
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,66.5
- parent: 2
- - uid: 12748
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,99.5
- parent: 2
- - uid: 12749
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,48.5
- parent: 2
- - uid: 12750
- components:
- - type: Transform
- pos: -50.5,-33.5
- parent: 2
- - uid: 12751
- components:
- - type: Transform
- pos: -48.5,-33.5
- parent: 2
- - uid: 12752
- components:
- - type: Transform
- pos: -45.5,-33.5
- parent: 2
- - uid: 12753
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,23.5
- parent: 2
- - uid: 12754
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-25.5
- parent: 2
- - uid: 12755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,63.5
- parent: 2
- - uid: 12756
- components:
- - type: Transform
- pos: -59.5,36.5
- parent: 2
- - uid: 12757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,59.5
- parent: 2
- - uid: 12758
- components:
- - type: Transform
- pos: 7.5,59.5
- parent: 2
- - uid: 12759
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,71.5
- parent: 2
- - uid: 12760
- components:
- - type: Transform
- pos: -47.5,-75.5
- parent: 2
- - uid: 12761
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-11.5
- parent: 2
- - uid: 12762
- components:
- - type: Transform
- pos: -47.5,-76.5
- parent: 2
- - uid: 12763
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-1.5
- parent: 2
- - uid: 12764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-27.5
- parent: 2
- - uid: 12765
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-25.5
- parent: 2
- - uid: 12766
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,99.5
- parent: 2
- - uid: 12767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-8.5
- parent: 2
- - uid: 12768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-13.5
- parent: 2
- - uid: 12769
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-33.5
- parent: 2
- - uid: 12770
- components:
- - type: Transform
- pos: -49.5,-33.5
- parent: 2
- - uid: 12771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,31.5
- parent: 2
- - uid: 12772
- components:
- - type: Transform
- pos: -26.5,-65.5
- parent: 2
- - uid: 12773
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-30.5
- parent: 2
- - uid: 12774
- components:
- - type: Transform
- pos: -46.5,-76.5
- parent: 2
- - uid: 12775
- components:
- - type: Transform
- pos: -27.5,-67.5
- parent: 2
- - uid: 12776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,32.5
- parent: 2
- - uid: 12777
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-3.5
- parent: 2
- - uid: 12778
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,63.5
- parent: 2
- - uid: 12779
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,62.5
- parent: 2
- - uid: 12780
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,39.5
- parent: 2
- - uid: 12781
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,45.5
- parent: 2
- - uid: 12782
- components:
- - type: Transform
- pos: -37.5,-70.5
- parent: 2
- - uid: 12783
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-14.5
- parent: 2
- - uid: 12784
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-20.5
- parent: 2
- - uid: 12785
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,63.5
- parent: 2
- - uid: 12786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,31.5
- parent: 2
- - uid: 12787
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,31.5
- parent: 2
- - uid: 12788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-26.5
- parent: 2
- - uid: 12789
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,26.5
- parent: 2
- - uid: 12790
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,64.5
- parent: 2
- - uid: 12791
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,64.5
- parent: 2
- - uid: 12792
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,63.5
- parent: 2
- - uid: 12793
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,59.5
- parent: 2
- - uid: 12794
- components:
- - type: Transform
- pos: -45.5,-76.5
- parent: 2
- - uid: 12795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-19.5
- parent: 2
- - uid: 12796
- components:
- - type: Transform
- pos: -45.5,-77.5
- parent: 2
- - uid: 12797
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,59.5
- parent: 2
- - uid: 12798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-1.5
- parent: 2
- - uid: 12799
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-19.5
- parent: 2
- - uid: 12800
- components:
- - type: Transform
- pos: -67.5,-19.5
- parent: 2
- - uid: 12801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-11.5
- parent: 2
- - uid: 12802
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-24.5
- parent: 2
- - uid: 12803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,56.5
- parent: 2
- - uid: 12804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,29.5
- parent: 2
- - uid: 12805
- components:
- - type: Transform
- pos: -27.5,-68.5
- parent: 2
- - uid: 12806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-13.5
- parent: 2
- - uid: 12807
- components:
- - type: Transform
- pos: -23.5,-61.5
- parent: 2
- - uid: 12808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-20.5
- parent: 2
- - uid: 12809
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,32.5
- parent: 2
- - uid: 12810
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,47.5
- parent: 2
- - uid: 12811
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,43.5
- parent: 2
- - uid: 12812
- components:
- - type: Transform
- pos: -91.5,-13.5
- parent: 2
- - uid: 12813
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,31.5
- parent: 2
- - uid: 12814
- components:
- - type: Transform
- pos: -44.5,-77.5
- parent: 2
- - uid: 12815
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,31.5
- parent: 2
- - uid: 12816
- components:
- - type: Transform
- pos: -90.5,-13.5
- parent: 2
- - uid: 12817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-41.5
- parent: 2
- - uid: 12818
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-30.5
- parent: 2
- - uid: 12819
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,39.5
- parent: 2
- - uid: 12820
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-30.5
- parent: 2
- - uid: 12821
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-11.5
- parent: 2
- - uid: 12822
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-30.5
- parent: 2
- - uid: 12823
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,14.5
- parent: 2
- - uid: 12824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-5.5
- parent: 2
- - uid: 12825
- components:
- - type: Transform
- pos: -61.5,-19.5
- parent: 2
- - uid: 12826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-21.5
- parent: 2
- - uid: 12827
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-19.5
- parent: 2
- - uid: 12828
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-19.5
- parent: 2
- - uid: 12829
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,70.5
- parent: 2
- - uid: 12830
- components:
- - type: Transform
- pos: -59.5,34.5
- parent: 2
- - uid: 12831
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-32.5
- parent: 2
- - uid: 12832
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-6.5
- parent: 2
- - uid: 12833
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,64.5
- parent: 2
- - uid: 12834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-21.5
- parent: 2
- - uid: 12835
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-9.5
- parent: 2
- - uid: 12836
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-1.5
- parent: 2
- - uid: 12837
- components:
- - type: Transform
- pos: -38.5,-71.5
- parent: 2
- - uid: 12838
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-19.5
- parent: 2
- - uid: 12839
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-19.5
- parent: 2
- - uid: 12840
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,53.5
- parent: 2
- - uid: 12841
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,56.5
- parent: 2
- - uid: 12842
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,47.5
- parent: 2
- - uid: 12843
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,72.5
- parent: 2
- - uid: 12844
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,25.5
- parent: 2
- - uid: 12845
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-46.5
- parent: 2
- - uid: 12846
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-50.5
- parent: 2
- - uid: 12847
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-28.5
- parent: 2
- - uid: 12848
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-30.5
- parent: 2
- - uid: 12849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,56.5
- parent: 2
- - uid: 12850
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,44.5
- parent: 2
- - uid: 12851
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-19.5
- parent: 2
- - uid: 12852
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-19.5
- parent: 2
- - uid: 12853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,62.5
- parent: 2
- - uid: 12854
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-30.5
- parent: 2
- - uid: 12855
- components:
- - type: Transform
- pos: 55.5,-46.5
- parent: 2
- - uid: 12856
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,56.5
- parent: 2
- - uid: 12857
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,56.5
- parent: 2
- - uid: 12858
- components:
- - type: Transform
- pos: -65.5,-20.5
- parent: 2
- - uid: 12859
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,57.5
- parent: 2
- - uid: 12860
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-4.5
- parent: 2
- - uid: 12861
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-23.5
- parent: 2
- - uid: 12862
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,23.5
- parent: 2
- - uid: 12863
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-21.5
- parent: 2
- - uid: 12864
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-22.5
- parent: 2
- - uid: 12865
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,47.5
- parent: 2
- - uid: 12866
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,64.5
- parent: 2
- - uid: 12867
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-21.5
- parent: 2
- - uid: 12868
- components:
- - type: Transform
- pos: -60.5,-19.5
- parent: 2
- - uid: 12869
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,54.5
- parent: 2
- - uid: 12870
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,11.5
- parent: 2
- - uid: 12871
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-30.5
- parent: 2
- - uid: 12872
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-19.5
- parent: 2
- - uid: 12873
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-19.5
- parent: 2
- - uid: 12874
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,69.5
- parent: 2
- - uid: 12875
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,34.5
- parent: 2
- - uid: 12876
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,58.5
- parent: 2
- - uid: 12877
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,31.5
- parent: 2
- - uid: 12878
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,58.5
- parent: 2
- - uid: 12879
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-38.5
- parent: 2
- - uid: 12880
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,47.5
- parent: 2
- - uid: 12881
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,25.5
- parent: 2
- - uid: 12882
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,23.5
- parent: 2
- - uid: 12883
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-46.5
- parent: 2
- - uid: 12884
- components:
- - type: Transform
- pos: -55.5,-40.5
- parent: 2
- - uid: 12885
- components:
- - type: Transform
- pos: 7.5,60.5
- parent: 2
- - uid: 12886
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-46.5
- parent: 2
- - uid: 12887
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-27.5
- parent: 2
- - uid: 12888
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-51.5
- parent: 2
- - uid: 12889
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,12.5
- parent: 2
- - uid: 12890
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-19.5
- parent: 2
- - uid: 12891
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,34.5
- parent: 2
- - uid: 12892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-1.5
- parent: 2
- - uid: 12893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-31.5
- parent: 2
- - uid: 12894
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-30.5
- parent: 2
- - uid: 12895
- components:
- - type: Transform
- pos: -21.5,-83.5
- parent: 2
- - uid: 12896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,46.5
- parent: 2
- - uid: 12897
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-26.5
- parent: 2
- - uid: 12898
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-22.5
- parent: 2
- - uid: 12899
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,30.5
- parent: 2
- - uid: 12900
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,57.5
- parent: 2
- - uid: 12901
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-12.5
- parent: 2
- - uid: 12902
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-30.5
- parent: 2
- - uid: 12903
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,65.5
- parent: 2
- - uid: 12904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,64.5
- parent: 2
- - uid: 12905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-21.5
- parent: 2
- - uid: 12906
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-21.5
- parent: 2
- - uid: 12907
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-40.5
- parent: 2
- - uid: 12908
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-15.5
- parent: 2
- - uid: 12909
- components:
- - type: Transform
- pos: -24.5,-83.5
- parent: 2
- - uid: 12910
- components:
- - type: Transform
- pos: -23.5,-83.5
- parent: 2
- - uid: 12911
- components:
- - type: Transform
- pos: -22.5,-83.5
- parent: 2
- - uid: 12912
- components:
- - type: Transform
- pos: -89.5,-13.5
- parent: 2
- - uid: 12913
- components:
- - type: Transform
- pos: -20.5,-83.5
- parent: 2
- - uid: 12914
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-19.5
- parent: 2
- - uid: 12915
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-21.5
- parent: 2
- - uid: 12916
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,33.5
- parent: 2
- - uid: 12917
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-19.5
- parent: 2
- - uid: 12918
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,99.5
- parent: 2
- - uid: 12919
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,45.5
- parent: 2
- - uid: 12920
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,60.5
- parent: 2
- - uid: 12921
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-2.5
- parent: 2
- - uid: 12922
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-42.5
- parent: 2
- - uid: 12923
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-43.5
- parent: 2
- - uid: 12924
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-19.5
- parent: 2
- - uid: 12925
- components:
- - type: Transform
- pos: -66.5,-20.5
- parent: 2
- - uid: 12926
- components:
- - type: Transform
- pos: -59.5,35.5
- parent: 2
- - uid: 12927
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-19.5
- parent: 2
- - uid: 12928
- components:
- - type: Transform
- pos: -64.5,-20.5
- parent: 2
- - uid: 12929
- components:
- - type: Transform
- pos: -19.5,-83.5
- parent: 2
- - uid: 12930
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-19.5
- parent: 2
- - uid: 12931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,34.5
- parent: 2
- - uid: 12932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,64.5
- parent: 2
- - uid: 12933
- components:
- - type: Transform
- pos: -18.5,-83.5
- parent: 2
- - uid: 12934
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,37.5
- parent: 2
- - uid: 12935
- components:
- - type: Transform
- pos: -17.5,-83.5
- parent: 2
- - uid: 12936
- components:
- - type: Transform
- pos: -75.5,80.5
- parent: 2
- - uid: 12937
- components:
- - type: Transform
- pos: -16.5,-83.5
- parent: 2
- - uid: 12938
- components:
- - type: Transform
- pos: -15.5,-84.5
- parent: 2
- - uid: 12939
- components:
- - type: Transform
- pos: -14.5,-84.5
- parent: 2
- - uid: 12940
- components:
- - type: Transform
- pos: -13.5,-84.5
- parent: 2
- - uid: 12941
- components:
- - type: Transform
- pos: -12.5,-84.5
- parent: 2
- - uid: 12942
- components:
- - type: Transform
- pos: -80.5,69.5
- parent: 2
- - uid: 12943
- components:
- - type: Transform
- pos: -51.5,-62.5
- parent: 2
- - uid: 12944
- components:
- - type: Transform
- pos: -75.5,78.5
- parent: 2
- - uid: 12945
- components:
- - type: Transform
- pos: -51.5,-81.5
- parent: 2
- - uid: 12946
- components:
- - type: Transform
- pos: -75.5,66.5
- parent: 2
- - uid: 12947
- components:
- - type: Transform
- pos: -75.5,79.5
- parent: 2
- - uid: 12948
- components:
- - type: Transform
- pos: -60.5,-54.5
- parent: 2
- - uid: 12949
- components:
- - type: Transform
- pos: -54.5,-52.5
- parent: 2
- - uid: 12950
- components:
- - type: Transform
- pos: -76.5,77.5
- parent: 2
- - uid: 12951
- components:
- - type: Transform
- pos: -45.5,-85.5
- parent: 2
- - uid: 12952
- components:
- - type: Transform
- pos: -43.5,-57.5
- parent: 2
- - uid: 12953
- components:
- - type: Transform
- pos: 67.5,-51.5
- parent: 2
- - uid: 12954
- components:
- - type: Transform
- pos: 69.5,-51.5
- parent: 2
- - uid: 12955
- components:
- - type: Transform
- pos: -79.5,77.5
- parent: 2
- - uid: 12956
- components:
- - type: Transform
- pos: 68.5,-51.5
- parent: 2
- - uid: 12957
- components:
- - type: Transform
- pos: -88.5,13.5
- parent: 2
- - uid: 12958
- components:
- - type: Transform
- pos: -43.5,-54.5
- parent: 2
- - uid: 12959
- components:
- - type: Transform
- pos: -53.5,-52.5
- parent: 2
- - uid: 12960
- components:
- - type: Transform
- pos: 30.5,21.5
- parent: 2
- - uid: 12961
- components:
- - type: Transform
- pos: 30.5,19.5
- parent: 2
- - uid: 12962
- components:
- - type: Transform
- pos: -74.5,69.5
- parent: 2
- - uid: 12963
- components:
- - type: Transform
- pos: 22.5,87.5
- parent: 2
- - uid: 12964
- components:
- - type: Transform
- pos: 27.5,87.5
- parent: 2
- - uid: 12965
- components:
- - type: Transform
- pos: 26.5,87.5
- parent: 2
- - uid: 12966
- components:
- - type: Transform
- pos: -59.5,66.5
- parent: 2
- - uid: 12967
- components:
- - type: Transform
- pos: 23.5,87.5
- parent: 2
- - uid: 12968
- components:
- - type: Transform
- pos: -72.5,77.5
- parent: 2
- - uid: 12969
- components:
- - type: Transform
- pos: -70.5,69.5
- parent: 2
- - uid: 12970
- components:
- - type: Transform
- pos: -69.5,69.5
- parent: 2
- - uid: 12971
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-8.5
- parent: 2
- - uid: 12972
- components:
- - type: Transform
- pos: -85.5,14.5
- parent: 2
- - uid: 12973
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-7.5
- parent: 2
- - uid: 12974
- components:
- - type: Transform
- pos: -63.5,66.5
- parent: 2
- - uid: 12975
- components:
- - type: Transform
- pos: -54.5,-81.5
- parent: 2
- - uid: 12976
- components:
- - type: Transform
- pos: -55.5,-81.5
- parent: 2
- - uid: 12977
- components:
- - type: Transform
- pos: -62.5,66.5
- parent: 2
- - uid: 12978
- components:
- - type: Transform
- pos: -60.5,66.5
- parent: 2
- - uid: 12979
- components:
- - type: Transform
- pos: -75.5,82.5
- parent: 2
- - uid: 12980
- components:
- - type: Transform
- pos: -75.5,81.5
- parent: 2
- - uid: 12981
- components:
- - type: Transform
- pos: -43.5,60.5
- parent: 2
- - uid: 12982
- components:
- - type: Transform
- pos: -55.5,41.5
- parent: 2
- - uid: 12983
- components:
- - type: Transform
- pos: -12.5,-83.5
- parent: 2
- - uid: 12984
- components:
- - type: Transform
- pos: 28.5,97.5
- parent: 2
- - uid: 12985
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,37.5
- parent: 2
- - uid: 12986
- components:
- - type: Transform
- pos: -11.5,-83.5
- parent: 2
- - uid: 12987
- components:
- - type: Transform
- pos: -88.5,-13.5
- parent: 2
- - uid: 12988
- components:
- - type: Transform
- pos: -56.5,41.5
- parent: 2
- - uid: 12989
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,43.5
- parent: 2
- - uid: 12990
- components:
- - type: Transform
- pos: -10.5,-83.5
- parent: 2
- - uid: 12991
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-44.5
- parent: 2
- - uid: 12992
- components:
- - type: Transform
- pos: -94.5,-13.5
- parent: 2
- - uid: 12993
- components:
- - type: Transform
- pos: -93.5,-4.5
- parent: 2
- - uid: 12994
- components:
- - type: Transform
- pos: -96.5,-13.5
- parent: 2
- - uid: 12995
- components:
- - type: Transform
- pos: -91.5,-3.5
- parent: 2
- - uid: 12996
- components:
- - type: Transform
- pos: -86.5,-11.5
- parent: 2
- - uid: 12997
- components:
- - type: Transform
- pos: -43.5,57.5
- parent: 2
- - uid: 12998
- components:
- - type: Transform
- pos: -86.5,-10.5
- parent: 2
- - uid: 12999
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-71.5
- parent: 2
- - uid: 13000
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-56.5
- parent: 2
- - uid: 13001
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-11.5
- parent: 2
- - uid: 13002
- components:
- - type: Transform
- pos: -89.5,-1.5
- parent: 2
- - uid: 13003
- components:
- - type: Transform
- pos: -88.5,-8.5
- parent: 2
- - uid: 13004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-54.5
- parent: 2
- - uid: 13005
- components:
- - type: Transform
- pos: -88.5,-6.5
- parent: 2
- - uid: 13006
- components:
- - type: Transform
- pos: -89.5,-6.5
- parent: 2
- - uid: 13007
- components:
- - type: Transform
- pos: -98.5,-10.5
- parent: 2
- - uid: 13008
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-30.5
- parent: 2
- - uid: 13009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-21.5
- parent: 2
- - uid: 13010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-42.5
- parent: 2
- - uid: 13011
- components:
- - type: Transform
- pos: -98.5,-8.5
- parent: 2
- - uid: 13012
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-54.5
- parent: 2
- - uid: 13013
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-54.5
- parent: 2
- - uid: 13014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-55.5
- parent: 2
- - uid: 13015
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-54.5
- parent: 2
- - uid: 13016
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-35.5
- parent: 2
- - uid: 13017
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-44.5
- parent: 2
- - uid: 13018
- components:
- - type: Transform
- pos: -61.5,-23.5
- parent: 2
- - uid: 13019
- components:
- - type: Transform
- pos: -51.5,-92.5
- parent: 2
- - uid: 13020
- components:
- - type: Transform
- pos: -70.5,77.5
- parent: 2
- - uid: 13021
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-35.5
- parent: 2
- - uid: 13022
- components:
- - type: Transform
- pos: -91.5,-1.5
- parent: 2
- - uid: 13023
- components:
- - type: Transform
- pos: -61.5,-24.5
- parent: 2
- - uid: 13024
- components:
- - type: Transform
- pos: -90.5,-1.5
- parent: 2
- - uid: 13025
- components:
- - type: Transform
- pos: -61.5,-26.5
- parent: 2
- - uid: 13026
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-76.5
- parent: 2
- - uid: 13027
- components:
- - type: Transform
- pos: -92.5,-1.5
- parent: 2
- - uid: 13028
- components:
- - type: Transform
- pos: -95.5,-1.5
- parent: 2
- - uid: 13029
- components:
- - type: Transform
- pos: -59.5,33.5
- parent: 2
- - uid: 13030
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,33.5
- parent: 2
- - uid: 13031
- components:
- - type: Transform
- pos: -98.5,-5.5
- parent: 2
- - uid: 13032
- components:
- - type: Transform
- pos: -98.5,-6.5
- parent: 2
- - uid: 13033
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-43.5
- parent: 2
- - uid: 13034
- components:
- - type: Transform
- pos: -98.5,-9.5
- parent: 2
- - uid: 13035
- components:
- - type: Transform
- pos: -91.5,-10.5
- parent: 2
- - uid: 13036
- components:
- - type: Transform
- pos: -97.5,-1.5
- parent: 2
- - uid: 13037
- components:
- - type: Transform
- pos: -93.5,-1.5
- parent: 2
- - uid: 13038
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,31.5
- parent: 2
- - uid: 13039
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-40.5
- parent: 2
- - uid: 13040
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-10.5
- parent: 2
- - uid: 13041
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-39.5
- parent: 2
- - uid: 13042
- components:
- - type: Transform
- pos: -69.5,66.5
- parent: 2
- - uid: 13043
- components:
- - type: Transform
- pos: -51.5,-79.5
- parent: 2
- - uid: 13044
- components:
- - type: Transform
- pos: 29.5,99.5
- parent: 2
- - uid: 13045
- components:
- - type: Transform
- pos: -56.5,42.5
- parent: 2
- - uid: 13046
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,44.5
- parent: 2
- - uid: 13047
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,42.5
- parent: 2
- - uid: 13048
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,12.5
- parent: 2
- - uid: 13049
- components:
- - type: Transform
- pos: -45.5,61.5
- parent: 2
- - uid: 13050
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,42.5
- parent: 2
- - uid: 13051
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-22.5
- parent: 2
- - uid: 13052
- components:
- - type: Transform
- pos: -91.5,-11.5
- parent: 2
- - uid: 13053
- components:
- - type: Transform
- pos: -61.5,-25.5
- parent: 2
- - uid: 13054
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-31.5
- parent: 2
- - uid: 13055
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-10.5
- parent: 2
- - uid: 13056
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,24.5
- parent: 2
- - uid: 13057
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,40.5
- parent: 2
- - uid: 13058
- components:
- - type: Transform
- pos: -38.5,-56.5
- parent: 2
- - uid: 13059
- components:
- - type: Transform
- pos: -86.5,14.5
- parent: 2
- - uid: 13060
- components:
- - type: Transform
- pos: -52.5,-81.5
- parent: 2
- - uid: 13061
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,44.5
- parent: 2
- - uid: 13062
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,33.5
- parent: 2
- - uid: 13063
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,26.5
- parent: 2
- - uid: 13064
- components:
- - type: Transform
- pos: -38.5,-75.5
- parent: 2
- - uid: 13065
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-30.5
- parent: 2
- - uid: 13066
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-54.5
- parent: 2
- - uid: 13067
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-29.5
- parent: 2
- - uid: 13068
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,28.5
- parent: 2
- - uid: 13069
- components:
- - type: Transform
- pos: 35.5,27.5
- parent: 2
- - uid: 13070
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-19.5
- parent: 2
- - uid: 13071
- components:
- - type: Transform
- pos: -91.5,-4.5
- parent: 2
- - uid: 13072
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,38.5
- parent: 2
- - uid: 13073
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,40.5
- parent: 2
- - uid: 13074
- components:
- - type: Transform
- pos: -98.5,-1.5
- parent: 2
- - uid: 13075
- components:
- - type: Transform
- pos: -95.5,-6.5
- parent: 2
- - uid: 13076
- components:
- - type: Transform
- pos: -86.5,-5.5
- parent: 2
- - uid: 13077
- components:
- - type: Transform
- pos: -59.5,37.5
- parent: 2
- - uid: 13078
- components:
- - type: Transform
- pos: -61.5,-27.5
- parent: 2
- - uid: 13079
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-18.5
- parent: 2
- - uid: 13080
- components:
- - type: Transform
- pos: -96.5,-6.5
- parent: 2
- - uid: 13081
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,42.5
- parent: 2
- - uid: 13082
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,41.5
- parent: 2
- - uid: 13083
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,32.5
- parent: 2
- - uid: 13084
- components:
- - type: Transform
- pos: -86.5,-8.5
- parent: 2
- - uid: 13085
- components:
- - type: Transform
- pos: -69.5,-0.5
- parent: 2
- - uid: 13086
- components:
- - type: Transform
- pos: -98.5,-4.5
- parent: 2
- - uid: 13087
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,30.5
- parent: 2
- - uid: 13088
- components:
- - type: Transform
- pos: -86.5,-4.5
- parent: 2
- - uid: 13089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-18.5
- parent: 2
- - uid: 13090
- components:
- - type: Transform
- pos: -60.5,-25.5
- parent: 2
- - uid: 13091
- components:
- - type: Transform
- pos: -86.5,-6.5
- parent: 2
- - uid: 13092
- components:
- - type: Transform
- pos: -95.5,-8.5
- parent: 2
- - uid: 13093
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,37.5
- parent: 2
- - uid: 13094
- components:
- - type: Transform
- pos: -51.5,-75.5
- parent: 2
- - uid: 13095
- components:
- - type: Transform
- pos: -51.5,-84.5
- parent: 2
- - uid: 13096
- components:
- - type: Transform
- pos: -66.5,66.5
- parent: 2
- - uid: 13097
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,99.5
- parent: 2
- - uid: 13098
- components:
- - type: Transform
- pos: -67.5,66.5
- parent: 2
- - uid: 13099
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,42.5
- parent: 2
- - uid: 13100
- components:
- - type: Transform
- pos: -52.5,-89.5
- parent: 2
- - uid: 13101
- components:
- - type: Transform
- pos: -53.5,-89.5
- parent: 2
- - uid: 13102
- components:
- - type: Transform
- pos: -53.5,-58.5
- parent: 2
- - uid: 13103
- components:
- - type: Transform
- pos: -48.5,-85.5
- parent: 2
- - uid: 13104
- components:
- - type: Transform
- pos: 30.5,20.5
- parent: 2
- - uid: 13105
- components:
- - type: Transform
- pos: -54.5,-58.5
- parent: 2
- - uid: 13106
- components:
- - type: Transform
- pos: -70.5,73.5
- parent: 2
- - uid: 13107
- components:
- - type: Transform
- pos: -56.5,-81.5
- parent: 2
- - uid: 13108
- components:
- - type: Transform
- pos: -57.5,-81.5
- parent: 2
- - uid: 13109
- components:
- - type: Transform
- pos: -75.5,72.5
- parent: 2
- - uid: 13110
- components:
- - type: Transform
- pos: -75.5,71.5
- parent: 2
- - uid: 13111
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-7.5
- parent: 2
- - uid: 13112
- components:
- - type: Transform
- pos: -75.5,70.5
- parent: 2
- - uid: 13113
- components:
- - type: Transform
- pos: -72.5,69.5
- parent: 2
- - uid: 13114
- components:
- - type: Transform
- pos: -71.5,69.5
- parent: 2
- - uid: 13115
- components:
- - type: Transform
- pos: -49.5,-66.5
- parent: 2
- - uid: 13116
- components:
- - type: Transform
- pos: 28.5,93.5
- parent: 2
- - uid: 13117
- components:
- - type: Transform
- pos: 28.5,95.5
- parent: 2
- - uid: 13118
- components:
- - type: Transform
- pos: -48.5,-89.5
- parent: 2
- - uid: 13119
- components:
- - type: Transform
- pos: -47.5,-89.5
- parent: 2
- - uid: 13120
- components:
- - type: Transform
- pos: -75.5,83.5
- parent: 2
- - uid: 13121
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-7.5
- parent: 2
- - uid: 13122
- components:
- - type: Transform
- pos: 28.5,90.5
- parent: 2
- - uid: 13123
- components:
- - type: Transform
- pos: 28.5,89.5
- parent: 2
- - uid: 13124
- components:
- - type: Transform
- pos: 28.5,88.5
- parent: 2
- - uid: 13125
- components:
- - type: Transform
- pos: 29.5,91.5
- parent: 2
- - uid: 13126
- components:
- - type: Transform
- pos: 27.5,91.5
- parent: 2
- - uid: 13127
- components:
- - type: Transform
- pos: 27.5,95.5
- parent: 2
- - uid: 13128
- components:
- - type: Transform
- pos: -76.5,81.5
- parent: 2
- - uid: 13129
- components:
- - type: Transform
- pos: -80.5,77.5
- parent: 2
- - uid: 13130
- components:
- - type: Transform
- pos: -56.5,-85.5
- parent: 2
- - uid: 13131
- components:
- - type: Transform
- pos: -71.5,81.5
- parent: 2
- - uid: 13132
- components:
- - type: Transform
- pos: -74.5,81.5
- parent: 2
- - uid: 13133
- components:
- - type: Transform
- pos: -51.5,-87.5
- parent: 2
- - uid: 13134
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,40.5
- parent: 2
- - uid: 13135
- components:
- - type: Transform
- pos: -57.5,-85.5
- parent: 2
- - uid: 13136
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,44.5
- parent: 2
- - uid: 13137
- components:
- - type: Transform
- pos: -51.5,-86.5
- parent: 2
- - uid: 13138
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,-40.5
- parent: 2
- - uid: 13139
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-31.5
- parent: 2
- - uid: 13140
- components:
- - type: Transform
- pos: -75.5,73.5
- parent: 2
- - uid: 13141
- components:
- - type: Transform
- pos: -73.5,69.5
- parent: 2
- - uid: 13142
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,30.5
- parent: 2
- - uid: 13143
- components:
- - type: Transform
- pos: -62.5,-50.5
- parent: 2
- - uid: 13144
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-10.5
- parent: 2
- - uid: 13145
- components:
- - type: Transform
- pos: -73.5,73.5
- parent: 2
- - uid: 13146
- components:
- - type: Transform
- pos: -57.5,-89.5
- parent: 2
- - uid: 13147
- components:
- - type: Transform
- pos: -51.5,-78.5
- parent: 2
- - uid: 13148
- components:
- - type: Transform
- pos: 20.5,87.5
- parent: 2
- - uid: 13149
- components:
- - type: Transform
- pos: -51.5,-58.5
- parent: 2
- - uid: 13150
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,44.5
- parent: 2
- - uid: 13151
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,43.5
- parent: 2
- - uid: 13152
- components:
- - type: Transform
- pos: -78.5,73.5
- parent: 2
- - uid: 13153
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,43.5
- parent: 2
- - uid: 13154
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,41.5
- parent: 2
- - uid: 13155
- components:
- - type: Transform
- pos: -43.5,61.5
- parent: 2
- - uid: 13156
- components:
- - type: Transform
- pos: -77.5,81.5
- parent: 2
- - uid: 13157
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,27.5
- parent: 2
- - uid: 13158
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,54.5
- parent: 2
- - uid: 13159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-46.5
- parent: 2
- - uid: 13160
- components:
- - type: Transform
- pos: -92.5,-13.5
- parent: 2
- - uid: 13161
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-75.5
- parent: 2
- - uid: 13162
- components:
- - type: Transform
- pos: -86.5,-9.5
- parent: 2
- - uid: 13163
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-73.5
- parent: 2
- - uid: 13164
- components:
- - type: Transform
- pos: -93.5,-13.5
- parent: 2
- - uid: 13165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-54.5
- parent: 2
- - uid: 13166
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-38.5
- parent: 2
- - uid: 13167
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-46.5
- parent: 2
- - uid: 13168
- components:
- - type: Transform
- pos: -35.5,45.5
- parent: 2
- - uid: 13169
- components:
- - type: Transform
- pos: -39.5,-4.5
- parent: 2
- - uid: 13170
- components:
- - type: Transform
- pos: -52.5,-54.5
- parent: 2
- - uid: 13171
- components:
- - type: Transform
- pos: -49.5,-85.5
- parent: 2
- - uid: 13172
- components:
- - type: Transform
- pos: -81.5,81.5
- parent: 2
- - uid: 13173
- components:
- - type: Transform
- pos: -61.5,-50.5
- parent: 2
- - uid: 13174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-36.5
- parent: 2
- - uid: 13175
- components:
- - type: Transform
- pos: -51.5,-66.5
- parent: 2
- - uid: 13176
- components:
- - type: Transform
- pos: -47.5,-74.5
- parent: 2
- - uid: 13177
- components:
- - type: Transform
- pos: -81.5,73.5
- parent: 2
- - uid: 13178
- components:
- - type: Transform
- pos: -49.5,-89.5
- parent: 2
- - uid: 13179
- components:
- - type: Transform
- pos: -52.5,-66.5
- parent: 2
- - uid: 13180
- components:
- - type: Transform
- pos: -80.5,73.5
- parent: 2
- - uid: 13181
- components:
- - type: Transform
- pos: -76.5,69.5
- parent: 2
- - uid: 13182
- components:
- - type: Transform
- pos: -75.5,75.5
- parent: 2
- - uid: 13183
- components:
- - type: Transform
- pos: -80.5,81.5
- parent: 2
- - uid: 13184
- components:
- - type: Transform
- pos: 30.5,95.5
- parent: 2
- - uid: 13185
- components:
- - type: Transform
- pos: -52.5,-58.5
- parent: 2
- - uid: 13186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,29.5
- parent: 2
- - uid: 13187
- components:
- - type: Transform
- pos: 30.5,16.5
- parent: 2
- - uid: 13188
- components:
- - type: Transform
- pos: 30.5,17.5
- parent: 2
- - uid: 13189
- components:
- - type: Transform
- pos: -78.5,81.5
- parent: 2
- - uid: 13190
- components:
- - type: Transform
- pos: -73.5,-40.5
- parent: 2
- - uid: 13191
- components:
- - type: Transform
- pos: -50.5,-62.5
- parent: 2
- - uid: 13192
- components:
- - type: Transform
- pos: -83.5,14.5
- parent: 2
- - uid: 13193
- components:
- - type: Transform
- pos: -93.5,-10.5
- parent: 2
- - uid: 13194
- components:
- - type: Transform
- pos: -84.5,14.5
- parent: 2
- - uid: 13195
- components:
- - type: Transform
- pos: -74.5,-40.5
- parent: 2
- - uid: 13196
- components:
- - type: Transform
- pos: -53.5,-85.5
- parent: 2
- - uid: 13197
- components:
- - type: Transform
- pos: -62.5,-54.5
- parent: 2
- - uid: 13198
- components:
- - type: Transform
- pos: -81.5,69.5
- parent: 2
- - uid: 13199
- components:
- - type: Transform
- pos: -46.5,-81.5
- parent: 2
- - uid: 13200
- components:
- - type: Transform
- pos: -54.5,-56.5
- parent: 2
- - uid: 13201
- components:
- - type: Transform
- pos: -52.5,-56.5
- parent: 2
- - uid: 13202
- components:
- - type: Transform
- pos: -45.5,-81.5
- parent: 2
- - uid: 13203
- components:
- - type: Transform
- pos: -54.5,-54.5
- parent: 2
- - uid: 13204
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-17.5
- parent: 2
- - uid: 13205
- components:
- - type: Transform
- pos: -59.5,32.5
- parent: 2
- - uid: 13206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,30.5
- parent: 2
- - uid: 13207
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-30.5
- parent: 2
- - uid: 13208
- components:
- - type: Transform
- pos: 30.5,18.5
- parent: 2
- - uid: 13209
- components:
- - type: Transform
- pos: -51.5,-90.5
- parent: 2
- - uid: 13210
- components:
- - type: Transform
- pos: -61.5,66.5
- parent: 2
- - uid: 13211
- components:
- - type: Transform
- pos: -79.5,81.5
- parent: 2
- - uid: 13212
- components:
- - type: Transform
- pos: -72.5,81.5
- parent: 2
- - uid: 13213
- components:
- - type: Transform
- pos: -50.5,-69.5
- parent: 2
- - uid: 13214
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-74.5
- parent: 2
- - uid: 13215
- components:
- - type: Transform
- pos: -73.5,77.5
- parent: 2
- - uid: 13216
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-55.5
- parent: 2
- - uid: 13217
- components:
- - type: Transform
- pos: -96.5,-8.5
- parent: 2
- - uid: 13218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,56.5
- parent: 2
- - uid: 13219
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-20.5
- parent: 2
- - uid: 13220
- components:
- - type: Transform
- pos: -43.5,59.5
- parent: 2
- - uid: 13221
- components:
- - type: Transform
- pos: -45.5,59.5
- parent: 2
- - uid: 13222
- components:
- - type: Transform
- pos: -78.5,-41.5
- parent: 2
- - uid: 13223
- components:
- - type: Transform
- pos: 28.5,98.5
- parent: 2
- - uid: 13224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-46.5
- parent: 2
- - uid: 13225
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-55.5
- parent: 2
- - uid: 13226
- components:
- - type: Transform
- pos: -65.5,66.5
- parent: 2
- - uid: 13227
- components:
- - type: Transform
- pos: -51.5,-83.5
- parent: 2
- - uid: 13228
- components:
- - type: Transform
- pos: -51.5,-69.5
- parent: 2
- - uid: 13229
- components:
- - type: Transform
- pos: -75.5,69.5
- parent: 2
- - uid: 13230
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-7.5
- parent: 2
- - uid: 13231
- components:
- - type: Transform
- pos: -73.5,81.5
- parent: 2
- - uid: 13232
- components:
- - type: Transform
- pos: -70.5,81.5
- parent: 2
- - uid: 13233
- components:
- - type: Transform
- pos: -86.5,-1.5
- parent: 2
- - uid: 13234
- components:
- - type: Transform
- pos: 28.5,99.5
- parent: 2
- - uid: 13235
- components:
- - type: Transform
- pos: -71.5,73.5
- parent: 2
- - uid: 13236
- components:
- - type: Transform
- pos: -55.5,-89.5
- parent: 2
- - uid: 13237
- components:
- - type: Transform
- pos: -54.5,-89.5
- parent: 2
- - uid: 13238
- components:
- - type: Transform
- pos: -69.5,81.5
- parent: 2
- - uid: 13239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-54.5
- parent: 2
- - uid: 13240
- components:
- - type: Transform
- pos: -77.5,-41.5
- parent: 2
- - uid: 13241
- components:
- - type: Transform
- pos: -88.5,-1.5
- parent: 2
- - uid: 13242
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,27.5
- parent: 2
- - uid: 13243
- components:
- - type: Transform
- pos: -76.5,-41.5
- parent: 2
- - uid: 13244
- components:
- - type: Transform
- pos: 35.5,28.5
- parent: 2
- - uid: 13245
- components:
- - type: Transform
- pos: -46.5,-89.5
- parent: 2
- - uid: 13246
- components:
- - type: Transform
- pos: -45.5,-89.5
- parent: 2
- - uid: 13247
- components:
- - type: Transform
- pos: 28.5,100.5
- parent: 2
- - uid: 13248
- components:
- - type: Transform
- pos: 28.5,101.5
- parent: 2
- - uid: 13249
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-40.5
- parent: 2
- - uid: 13250
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-10.5
- parent: 2
- - uid: 13251
- components:
- - type: Transform
- pos: -74.5,-43.5
- parent: 2
- - uid: 13252
- components:
- - type: Transform
- pos: -68.5,66.5
- parent: 2
- - uid: 13253
- components:
- - type: Transform
- pos: -51.5,-76.5
- parent: 2
- - uid: 13254
- components:
- - type: Transform
- pos: -88.5,11.5
- parent: 2
- - uid: 13255
- components:
- - type: Transform
- pos: -59.5,31.5
- parent: 2
- - uid: 13256
- components:
- - type: Transform
- pos: -98.5,-2.5
- parent: 2
- - uid: 13257
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,41.5
- parent: 2
- - uid: 13258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,37.5
- parent: 2
- - uid: 13259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-55.5
- parent: 2
- - uid: 13260
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-54.5
- parent: 2
- - uid: 13261
- components:
- - type: Transform
- pos: -98.5,-7.5
- parent: 2
- - uid: 13262
- components:
- - type: Transform
- pos: 28.5,96.5
- parent: 2
- - uid: 13263
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-30.5
- parent: 2
- - uid: 13264
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-12.5
- parent: 2
- - uid: 13265
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-7.5
- parent: 2
- - uid: 13266
- components:
- - type: Transform
- pos: -50.5,-66.5
- parent: 2
- - uid: 13267
- components:
- - type: Transform
- pos: -98.5,-12.5
- parent: 2
- - uid: 13268
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-13.5
- parent: 2
- - uid: 13269
- components:
- - type: Transform
- pos: 28.5,87.5
- parent: 2
- - uid: 13270
- components:
- - type: Transform
- pos: -87.5,14.5
- parent: 2
- - uid: 13271
- components:
- - type: Transform
- pos: -43.5,-56.5
- parent: 2
- - uid: 13272
- components:
- - type: Transform
- pos: -49.5,-74.5
- parent: 2
- - uid: 13273
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-55.5
- parent: 2
- - uid: 13274
- components:
- - type: Transform
- pos: 21.5,87.5
- parent: 2
- - uid: 13275
- components:
- - type: Transform
- pos: -86.5,-13.5
- parent: 2
- - uid: 13276
- components:
- - type: Transform
- pos: -98.5,-13.5
- parent: 2
- - uid: 13277
- components:
- - type: Transform
- pos: -93.5,-3.5
- parent: 2
- - uid: 13278
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,12.5
- parent: 2
- - uid: 13279
- components:
- - type: Transform
- pos: -45.5,62.5
- parent: 2
- - uid: 13280
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-56.5
- parent: 2
- - uid: 13281
- components:
- - type: Transform
- pos: -86.5,-7.5
- parent: 2
- - uid: 13282
- components:
- - type: Transform
- pos: -87.5,-1.5
- parent: 2
- - uid: 13283
- components:
- - type: Transform
- pos: -72.5,73.5
- parent: 2
- - uid: 13284
- components:
- - type: Transform
- pos: -56.5,-89.5
- parent: 2
- - uid: 13285
- components:
- - type: Transform
- pos: -51.5,-80.5
- parent: 2
- - uid: 13286
- components:
- - type: Transform
- pos: -73.5,66.5
- parent: 2
- - uid: 13287
- components:
- - type: Transform
- pos: 28.5,102.5
- parent: 2
- - uid: 13288
- components:
- - type: Transform
- pos: -75.5,76.5
- parent: 2
- - uid: 13289
- components:
- - type: Transform
- pos: -43.5,62.5
- parent: 2
- - uid: 13290
- components:
- - type: Transform
- pos: -78.5,77.5
- parent: 2
- - uid: 13291
- components:
- - type: Transform
- pos: -73.5,-43.5
- parent: 2
- - uid: 13292
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-23.5
- parent: 2
- - uid: 13293
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-46.5
- parent: 2
- - uid: 13294
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,24.5
- parent: 2
- - uid: 13295
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-10.5
- parent: 2
- - uid: 13296
- components:
- - type: Transform
- pos: -64.5,66.5
- parent: 2
- - uid: 13297
- components:
- - type: Transform
- pos: -51.5,-82.5
- parent: 2
- - uid: 13298
- components:
- - type: Transform
- pos: -16.5,-84.5
- parent: 2
- - uid: 13299
- components:
- - type: Transform
- pos: -52.5,-85.5
- parent: 2
- - uid: 13300
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,12.5
- parent: 2
- - uid: 13301
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,32.5
- parent: 2
- - uid: 13302
- components:
- - type: Transform
- pos: -77.5,77.5
- parent: 2
- - uid: 13303
- components:
- - type: Transform
- pos: -63.5,-50.5
- parent: 2
- - uid: 13304
- components:
- - type: Transform
- pos: -45.5,60.5
- parent: 2
- - uid: 13305
- components:
- - type: Transform
- pos: -51.5,-85.5
- parent: 2
- - uid: 13306
- components:
- - type: Transform
- pos: -75.5,74.5
- parent: 2
- - uid: 13307
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-6.5
- parent: 2
- - uid: 13308
- components:
- - type: Transform
- pos: 28.5,92.5
- parent: 2
- - uid: 13309
- components:
- - type: Transform
- pos: -51.5,-74.5
- parent: 2
- - uid: 13310
- components:
- - type: Transform
- pos: 30.5,22.5
- parent: 2
- - uid: 13311
- components:
- - type: Transform
- pos: -75.5,67.5
- parent: 2
- - uid: 13312
- components:
- - type: Transform
- pos: -77.5,69.5
- parent: 2
- - uid: 13313
- components:
- - type: Transform
- pos: -46.5,-85.5
- parent: 2
- - uid: 13314
- components:
- - type: Transform
- pos: -79.5,69.5
- parent: 2
- - uid: 13315
- components:
- - type: Transform
- pos: -50.5,-89.5
- parent: 2
- - uid: 13316
- components:
- - type: Transform
- pos: -69.5,73.5
- parent: 2
- - uid: 13317
- components:
- - type: Transform
- pos: -50.5,-85.5
- parent: 2
- - uid: 13318
- components:
- - type: Transform
- pos: -82.5,73.5
- parent: 2
- - uid: 13319
- components:
- - type: Transform
- pos: -79.5,73.5
- parent: 2
- - uid: 13320
- components:
- - type: Transform
- pos: -44.5,59.5
- parent: 2
- - uid: 13321
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,37.5
- parent: 2
- - uid: 13322
- components:
- - type: Transform
- pos: -95.5,-13.5
- parent: 2
- - uid: 13323
- components:
- - type: Transform
- pos: -98.5,-3.5
- parent: 2
- - uid: 13324
- components:
- - type: Transform
- pos: -89.5,-8.5
- parent: 2
- - uid: 13325
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-72.5
- parent: 2
- - uid: 13326
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-20.5
- parent: 2
- - uid: 13327
- components:
- - type: Transform
- pos: -39.5,-2.5
- parent: 2
- - uid: 13328
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,25.5
- parent: 2
- - uid: 13329
- components:
- - type: Transform
- pos: 25.5,71.5
- parent: 2
- - uid: 13330
- components:
- - type: Transform
- pos: -81.5,77.5
- parent: 2
- - uid: 13331
- components:
- - type: Transform
- pos: -71.5,66.5
- parent: 2
- - uid: 13332
- components:
- - type: Transform
- pos: -86.5,-3.5
- parent: 2
- - uid: 13333
- components:
- - type: Transform
- pos: 33.5,62.5
- parent: 2
- - uid: 13334
- components:
- - type: Transform
- pos: -45.5,-56.5
- parent: 2
- - uid: 13335
- components:
- - type: Transform
- pos: -50.5,-81.5
- parent: 2
- - uid: 13336
- components:
- - type: Transform
- pos: -86.5,-12.5
- parent: 2
- - uid: 13337
- components:
- - type: Transform
- pos: -69.5,0.5
- parent: 2
- - uid: 13338
- components:
- - type: Transform
- pos: -97.5,-13.5
- parent: 2
- - uid: 13339
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,55.5
- parent: 2
- - uid: 13340
- components:
- - type: Transform
- pos: -42.5,-47.5
- parent: 2
- - uid: 13341
- components:
- - type: Transform
- pos: -75.5,77.5
- parent: 2
- - uid: 13342
- components:
- - type: Transform
- pos: 28.5,94.5
- parent: 2
- - uid: 13343
- components:
- - type: Transform
- pos: -52.5,-62.5
- parent: 2
- - uid: 13344
- components:
- - type: Transform
- pos: -51.5,-88.5
- parent: 2
- - uid: 13345
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-4.5
- parent: 2
- - uid: 13346
- components:
- - type: Transform
- pos: -42.5,-48.5
- parent: 2
- - uid: 13347
- components:
- - type: Transform
- pos: 29.5,95.5
- parent: 2
- - uid: 13348
- components:
- - type: Transform
- pos: -48.5,-81.5
- parent: 2
- - uid: 13349
- components:
- - type: Transform
- pos: -77.5,73.5
- parent: 2
- - uid: 13350
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-20.5
- parent: 2
- - uid: 13351
- components:
- - type: Transform
- pos: 23.5,60.5
- parent: 2
- - uid: 13352
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-11.5
- parent: 2
- - uid: 13353
- components:
- - type: Transform
- pos: 10.5,93.5
- parent: 2
- - uid: 13354
- components:
- - type: Transform
- pos: -74.5,73.5
- parent: 2
- - uid: 13355
- components:
- - type: Transform
- pos: 70.5,-51.5
- parent: 2
- - uid: 13356
- components:
- - type: Transform
- pos: -53.5,-62.5
- parent: 2
- - uid: 13357
- components:
- - type: Transform
- pos: -76.5,73.5
- parent: 2
- - uid: 13358
- components:
- - type: Transform
- pos: -45.5,-54.5
- parent: 2
- - uid: 13359
- components:
- - type: Transform
- pos: -93.5,-11.5
- parent: 2
- - uid: 13360
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-11.5
- parent: 2
- - uid: 13361
- components:
- - type: Transform
- pos: -72.5,66.5
- parent: 2
- - uid: 13362
- components:
- - type: Transform
- pos: -49.5,-69.5
- parent: 2
- - uid: 13363
- components:
- - type: Transform
- pos: 33.5,60.5
- parent: 2
- - uid: 13364
- components:
- - type: Transform
- pos: 26.5,95.5
- parent: 2
- - uid: 13365
- components:
- - type: Transform
- pos: -74.5,66.5
- parent: 2
- - uid: 13366
- components:
- - type: Transform
- pos: -69.5,77.5
- parent: 2
- - uid: 13367
- components:
- - type: Transform
- pos: -49.5,-81.5
- parent: 2
- - uid: 13368
- components:
- - type: Transform
- pos: -98.5,-11.5
- parent: 2
- - uid: 13369
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-55.5
- parent: 2
- - uid: 13370
- components:
- - type: Transform
- pos: -47.5,-85.5
- parent: 2
- - uid: 13371
- components:
- - type: Transform
- pos: -68.5,73.5
- parent: 2
- - uid: 13372
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-19.5
- parent: 2
- - uid: 13373
- components:
- - type: Transform
- pos: -87.5,-13.5
- parent: 2
- - uid: 13374
- components:
- - type: Transform
- pos: -96.5,-1.5
- parent: 2
- - uid: 13375
- components:
- - type: Transform
- pos: -50.5,-74.5
- parent: 2
- - uid: 13376
- components:
- - type: Transform
- pos: -75.5,68.5
- parent: 2
- - uid: 13377
- components:
- - type: Transform
- pos: 25.5,70.5
- parent: 2
- - uid: 13378
- components:
- - type: Transform
- pos: -51.5,-91.5
- parent: 2
- - uid: 13379
- components:
- - type: Transform
- pos: -71.5,77.5
- parent: 2
- - uid: 13380
- components:
- - type: Transform
- pos: 27.5,99.5
- parent: 2
- - uid: 13381
- components:
- - type: Transform
- pos: -55.5,-85.5
- parent: 2
- - uid: 13382
- components:
- - type: Transform
- pos: -44.5,-85.5
- parent: 2
- - uid: 13383
- components:
- - type: Transform
- pos: -88.5,12.5
- parent: 2
- - uid: 13384
- components:
- - type: Transform
- pos: 25.5,87.5
- parent: 2
- - uid: 13385
- components:
- - type: Transform
- pos: 24.5,87.5
- parent: 2
- - uid: 13386
- components:
- - type: Transform
- pos: -94.5,-1.5
- parent: 2
- - uid: 13387
- components:
- - type: Transform
- pos: -69.5,-1.5
- parent: 2
- - uid: 13388
- components:
- - type: Transform
- pos: -86.5,-2.5
- parent: 2
- - uid: 13389
- components:
- - type: Transform
- pos: -74.5,77.5
- parent: 2
- - uid: 13390
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,46.5
- parent: 2
- - uid: 13391
- components:
- - type: Transform
- pos: -88.5,15.5
- parent: 2
- - uid: 13392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-38.5
- parent: 2
- - uid: 13393
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-10.5
- parent: 2
- - uid: 13394
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-10.5
- parent: 2
- - uid: 13395
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-36.5
- parent: 2
- - uid: 13396
- components:
- - type: Transform
- pos: -88.5,14.5
- parent: 2
- - uid: 13397
- components:
- - type: Transform
- pos: -53.5,-81.5
- parent: 2
- - uid: 13398
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,25.5
- parent: 2
- - uid: 13399
- components:
- - type: Transform
- pos: -52.5,-33.5
- parent: 2
- - uid: 13400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,28.5
- parent: 2
- - uid: 13401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-34.5
- parent: 2
- - uid: 13402
- components:
- - type: Transform
- pos: -55.5,-34.5
- parent: 2
- - uid: 13403
- components:
- - type: Transform
- pos: -55.5,-35.5
- parent: 2
- - uid: 13404
- components:
- - type: Transform
- pos: -55.5,-36.5
- parent: 2
- - uid: 13405
- components:
- - type: Transform
- pos: -54.5,-36.5
- parent: 2
- - uid: 13406
- components:
- - type: Transform
- pos: -54.5,-37.5
- parent: 2
- - uid: 13407
- components:
- - type: Transform
- pos: -48.5,-40.5
- parent: 2
- - uid: 13408
- components:
- - type: Transform
- pos: -47.5,-39.5
- parent: 2
- - uid: 13409
- components:
- - type: Transform
- pos: -46.5,-39.5
- parent: 2
- - uid: 13410
- components:
- - type: Transform
- pos: -44.5,-40.5
- parent: 2
- - uid: 13411
- components:
- - type: Transform
- pos: -43.5,-40.5
- parent: 2
- - uid: 13412
- components:
- - type: Transform
- pos: -48.5,-74.5
- parent: 2
- - uid: 13413
- components:
- - type: Transform
- pos: 28.5,91.5
- parent: 2
- - uid: 13414
- components:
- - type: Transform
- pos: -58.5,-85.5
- parent: 2
- - uid: 13415
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-40.5
- parent: 2
- - uid: 13416
- components:
- - type: Transform
- pos: 10.5,92.5
- parent: 2
- - uid: 13417
- components:
- - type: Transform
- pos: -51.5,-77.5
- parent: 2
- - uid: 13418
- components:
- - type: Transform
- pos: 19.5,87.5
- parent: 2
- - uid: 13419
- components:
- - type: Transform
- pos: -41.5,-5.5
- parent: 2
- - uid: 13420
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-11.5
- parent: 2
- - uid: 13421
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,53.5
- parent: 2
- - uid: 13422
- components:
- - type: Transform
- pos: -41.5,-6.5
- parent: 2
- - uid: 13423
- components:
- - type: Transform
- pos: -39.5,-3.5
- parent: 2
- - uid: 13424
- components:
- - type: Transform
- pos: -54.5,-85.5
- parent: 2
- - uid: 13425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,12.5
- parent: 2
- - uid: 13426
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-54.5
- parent: 2
- - uid: 13427
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-20.5
- parent: 2
- - uid: 13428
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-21.5
- parent: 2
- - uid: 13429
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-19.5
- parent: 2
- - uid: 13430
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-54.5
- parent: 2
- - uid: 13431
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-53.5
- parent: 2
- - uid: 13432
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-46.5
- parent: 2
- - uid: 13433
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-52.5
- parent: 2
- - uid: 13434
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-46.5
- parent: 2
- - uid: 13435
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-46.5
- parent: 2
- - uid: 13436
- components:
- - type: Transform
- pos: -51.5,-89.5
- parent: 2
- - uid: 13437
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-55.5
- parent: 2
- - uid: 13438
- components:
- - type: Transform
- pos: -47.5,-81.5
- parent: 2
- - uid: 13439
- components:
- - type: Transform
- pos: -70.5,66.5
- parent: 2
- - uid: 13440
- components:
- - type: Transform
- pos: -78.5,69.5
- parent: 2
- - uid: 13441
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-10.5
- parent: 2
- - uid: 13442
- components:
- - type: Transform
- pos: -64.5,-50.5
- parent: 2
- - uid: 13443
- components:
- - type: Transform
- pos: 16.5,-60.5
- parent: 2
- - uid: 13444
- components:
- - type: Transform
- pos: 18.5,-58.5
- parent: 2
- - uid: 13445
- components:
- - type: Transform
- pos: 19.5,-58.5
- parent: 2
- - uid: 13446
- components:
- - type: Transform
- pos: 20.5,-58.5
- parent: 2
- - uid: 13447
- components:
- - type: Transform
- pos: 21.5,-58.5
- parent: 2
- - uid: 13448
- components:
- - type: Transform
- pos: 22.5,-58.5
- parent: 2
- - uid: 13449
- components:
- - type: Transform
- pos: 23.5,-58.5
- parent: 2
- - uid: 13450
- components:
- - type: Transform
- pos: 13.5,-80.5
- parent: 2
- - uid: 13451
- components:
- - type: Transform
- pos: 12.5,-65.5
- parent: 2
- - uid: 13452
- components:
- - type: Transform
- pos: 17.5,78.5
- parent: 2
- - uid: 13453
- components:
- - type: Transform
- pos: 57.5,-40.5
- parent: 2
- - uid: 13454
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,-40.5
- parent: 2
- - uid: 13455
- components:
- - type: Transform
- pos: -88.5,16.5
- parent: 2
- - uid: 13456
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.5,22.5
- parent: 2
- - uid: 13457
- components:
- - type: Transform
- pos: -89.5,23.5
- parent: 2
- - uid: 13458
- components:
- - type: Transform
- pos: -88.5,17.5
- parent: 2
- - uid: 13459
- components:
- - type: Transform
- pos: -88.5,18.5
- parent: 2
- - uid: 13460
- components:
- - type: Transform
- pos: -88.5,19.5
- parent: 2
- - uid: 13461
- components:
- - type: Transform
- pos: -88.5,20.5
- parent: 2
- - uid: 13462
- components:
- - type: Transform
- pos: -88.5,21.5
- parent: 2
- - uid: 13463
- components:
- - type: Transform
- pos: -88.5,22.5
- parent: 2
- - uid: 13464
- components:
- - type: Transform
- pos: -88.5,23.5
- parent: 2
- - uid: 13465
- components:
- - type: Transform
- pos: -90.5,23.5
- parent: 2
- - uid: 13466
- components:
- - type: Transform
- pos: -91.5,23.5
- parent: 2
- - uid: 13467
- components:
- - type: Transform
- pos: -92.5,23.5
- parent: 2
- - uid: 13468
- components:
- - type: Transform
- pos: -93.5,23.5
- parent: 2
- - uid: 13469
- components:
- - type: Transform
- pos: -94.5,23.5
- parent: 2
- - uid: 13470
- components:
- - type: Transform
- pos: -95.5,23.5
- parent: 2
- - uid: 13471
- components:
- - type: Transform
- pos: -96.5,23.5
- parent: 2
- - uid: 13472
- components:
- - type: Transform
- pos: -97.5,23.5
- parent: 2
- - uid: 13473
- components:
- - type: Transform
- pos: -98.5,23.5
- parent: 2
- - uid: 13474
- components:
- - type: Transform
- pos: -99.5,23.5
- parent: 2
- - uid: 13475
- components:
- - type: Transform
- pos: -100.5,23.5
- parent: 2
- - uid: 13476
- components:
- - type: Transform
- pos: -101.5,23.5
- parent: 2
- - uid: 13477
- components:
- - type: Transform
- pos: -102.5,23.5
- parent: 2
- - uid: 13478
- components:
- - type: Transform
- pos: -103.5,23.5
- parent: 2
- - uid: 13479
- components:
- - type: Transform
- pos: -104.5,23.5
- parent: 2
- - uid: 13480
- components:
- - type: Transform
- pos: -105.5,23.5
- parent: 2
- - uid: 13481
- components:
- - type: Transform
- pos: -106.5,23.5
- parent: 2
- - uid: 13482
- components:
- - type: Transform
- pos: -107.5,23.5
- parent: 2
- - uid: 13483
- components:
- - type: Transform
- pos: -108.5,23.5
- parent: 2
- - uid: 13484
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,22.5
- parent: 2
- - uid: 13485
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,22.5
- parent: 2
- - uid: 13486
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,23.5
- parent: 2
- - uid: 13487
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,25.5
- parent: 2
- - uid: 13488
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,24.5
- parent: 2
- - uid: 13489
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -79.5,0.5
- parent: 2
- - uid: 13490
- components:
- - type: Transform
- pos: 5.5,44.5
- parent: 2
- - uid: 13491
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-12.5
- parent: 2
- - uid: 13492
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-13.5
- parent: 2
- - uid: 13493
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-13.5
- parent: 2
- - uid: 13494
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-12.5
- parent: 2
- - uid: 13495
- components:
- - type: Transform
- pos: 8.5,-84.5
- parent: 2
- - uid: 13496
- components:
- - type: Transform
- pos: 9.5,-84.5
- parent: 2
- - uid: 13497
- components:
- - type: Transform
- pos: 10.5,-84.5
- parent: 2
- - uid: 13498
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,57.5
- parent: 2
- - uid: 13499
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-40.5
- parent: 2
- - uid: 13500
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-71.5
- parent: 2
- - uid: 13501
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-40.5
- parent: 2
- - uid: 13502
- components:
- - type: Transform
- pos: -70.5,-19.5
- parent: 2
- - uid: 13503
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,42.5
- parent: 2
- - uid: 13504
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,26.5
- parent: 2
- - uid: 13505
- components:
- - type: Transform
- pos: 35.5,-3.5
- parent: 2
- - uid: 13506
- components:
- - type: Transform
- pos: -26.5,-62.5
- parent: 2
- - uid: 13507
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,42.5
- parent: 2
- - uid: 13508
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,55.5
- parent: 2
- - uid: 13509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,29.5
- parent: 2
- - uid: 13510
- components:
- - type: Transform
- pos: -26.5,-70.5
- parent: 2
- - uid: 13511
- components:
- - type: Transform
- pos: -38.5,-74.5
- parent: 2
- - uid: 13512
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,95.5
- parent: 2
- - uid: 13513
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-38.5
- parent: 2
- - uid: 13514
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-48.5
- parent: 2
- - uid: 13515
- components:
- - type: Transform
- pos: -26.5,-19.5
- parent: 2
- - uid: 13516
- components:
- - type: Transform
- pos: -28.5,-19.5
- parent: 2
- - uid: 13517
- components:
- - type: Transform
- pos: -36.5,-70.5
- parent: 2
- - uid: 13518
- components:
- - type: Transform
- pos: -27.5,-58.5
- parent: 2
- - uid: 13519
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,91.5
- parent: 2
- - uid: 13520
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-26.5
- parent: 2
- - uid: 13521
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,91.5
- parent: 2
- - uid: 13522
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-49.5
- parent: 2
- - uid: 13523
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-24.5
- parent: 2
- - uid: 13524
- components:
- - type: Transform
- pos: -31.5,-69.5
- parent: 2
- - uid: 13525
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,16.5
- parent: 2
- - uid: 13526
- components:
- - type: Transform
- pos: -10.5,-61.5
- parent: 2
- - uid: 13527
- components:
- - type: Transform
- pos: -11.5,-61.5
- parent: 2
- - uid: 13528
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,42.5
- parent: 2
- - uid: 13529
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,11.5
- parent: 2
- - uid: 13530
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,47.5
- parent: 2
- - uid: 13531
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,30.5
- parent: 2
- - uid: 13532
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,30.5
- parent: 2
- - uid: 13533
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,99.5
- parent: 2
- - uid: 13534
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,10.5
- parent: 2
- - uid: 13535
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-28.5
- parent: 2
- - uid: 13536
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,23.5
- parent: 2
- - uid: 13537
- components:
- - type: Transform
- pos: 33.5,-3.5
- parent: 2
- - uid: 13538
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,95.5
- parent: 2
- - uid: 13539
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,95.5
- parent: 2
- - uid: 13540
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-23.5
- parent: 2
- - uid: 13541
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,26.5
- parent: 2
- - uid: 13542
- components:
- - type: Transform
- pos: -17.5,-61.5
- parent: 2
- - uid: 13543
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,36.5
- parent: 2
- - uid: 13544
- components:
- - type: Transform
- pos: -27.5,-19.5
- parent: 2
- - uid: 13545
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,34.5
- parent: 2
- - uid: 13546
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,91.5
- parent: 2
- - uid: 13547
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,50.5
- parent: 2
- - uid: 13548
- components:
- - type: Transform
- pos: -27.5,-60.5
- parent: 2
- - uid: 13549
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,95.5
- parent: 2
- - uid: 13550
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,42.5
- parent: 2
- - uid: 13551
- components:
- - type: Transform
- pos: -31.5,-18.5
- parent: 2
- - uid: 13552
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,91.5
- parent: 2
- - uid: 13553
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,99.5
- parent: 2
- - uid: 13554
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,91.5
- parent: 2
- - uid: 13555
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,38.5
- parent: 2
- - uid: 13556
- components:
- - type: Transform
- pos: -9.5,-57.5
- parent: 2
- - uid: 13557
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,57.5
- parent: 2
- - uid: 13558
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,57.5
- parent: 2
- - uid: 13559
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,13.5
- parent: 2
- - uid: 13560
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-19.5
- parent: 2
- - uid: 13561
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,36.5
- parent: 2
- - uid: 13562
- components:
- - type: Transform
- pos: -23.5,-60.5
- parent: 2
- - uid: 13563
- components:
- - type: Transform
- pos: -15.5,-61.5
- parent: 2
- - uid: 13564
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,57.5
- parent: 2
- - uid: 13565
- components:
- - type: Transform
- pos: -24.5,-60.5
- parent: 2
- - uid: 13566
- components:
- - type: Transform
- pos: -38.5,-72.5
- parent: 2
- - uid: 13567
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-19.5
- parent: 2
- - uid: 13568
- components:
- - type: Transform
- pos: 34.5,-3.5
- parent: 2
- - uid: 13569
- components:
- - type: Transform
- pos: -7.5,-55.5
- parent: 2
- - uid: 13570
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,57.5
- parent: 2
- - uid: 13571
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,52.5
- parent: 2
- - uid: 13572
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-19.5
- parent: 2
- - uid: 13573
- components:
- - type: Transform
- pos: 0.49999997,31.5
- parent: 2
- - uid: 13574
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,61.5
- parent: 2
- - uid: 13575
- components:
- - type: Transform
- pos: -27.5,-66.5
- parent: 2
- - uid: 13576
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,55.5
- parent: 2
- - uid: 13577
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-19.5
- parent: 2
- - uid: 13578
- components:
- - type: Transform
- pos: -26.5,-64.5
- parent: 2
- - uid: 13579
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,17.5
- parent: 2
- - uid: 13580
- components:
- - type: Transform
- pos: -39.5,-74.5
- parent: 2
- - uid: 13581
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,57.5
- parent: 2
- - uid: 13582
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,57.5
- parent: 2
- - uid: 13583
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,91.5
- parent: 2
- - uid: 13584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-28.5
- parent: 2
- - uid: 13585
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,17.5
- parent: 2
- - uid: 13586
- components:
- - type: Transform
- pos: -9.5,-60.5
- parent: 2
- - uid: 13587
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-19.5
- parent: 2
- - uid: 13588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,17.5
- parent: 2
- - uid: 13589
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-28.5
- parent: 2
- - uid: 13590
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,55.5
- parent: 2
- - uid: 13591
- components:
- - type: Transform
- pos: -8.5,-55.5
- parent: 2
- - uid: 13592
- components:
- - type: Transform
- pos: -5.5,-55.5
- parent: 2
- - uid: 13593
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,56.5
- parent: 2
- - uid: 13594
- components:
- - type: Transform
- pos: -9.5,-58.5
- parent: 2
- - uid: 13595
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-19.5
- parent: 2
- - uid: 13596
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,27.5
- parent: 2
- - uid: 13597
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,51.5
- parent: 2
- - uid: 13598
- components:
- - type: Transform
- pos: -16.5,-61.5
- parent: 2
- - uid: 13599
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,95.5
- parent: 2
- - uid: 13600
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,35.5
- parent: 2
- - uid: 13601
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,41.5
- parent: 2
- - uid: 13602
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,95.5
- parent: 2
- - uid: 13603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,95.5
- parent: 2
- - uid: 13604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,95.5
- parent: 2
- - uid: 13605
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-22.5
- parent: 2
- - uid: 13606
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-27.5
- parent: 2
- - uid: 13607
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,29.5
- parent: 2
- - uid: 13608
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,43.5
- parent: 2
- - uid: 13609
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-28.5
- parent: 2
- - uid: 13610
- components:
- - type: Transform
- pos: -27.5,-59.5
- parent: 2
- - uid: 13611
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,15.5
- parent: 2
- - uid: 13612
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,42.5
- parent: 2
- - uid: 13613
- components:
- - type: Transform
- pos: -34.5,-57.5
- parent: 2
- - uid: 13614
- components:
- - type: Transform
- pos: -33.5,-18.5
- parent: 2
- - uid: 13615
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-19.5
- parent: 2
- - uid: 13616
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,29.5
- parent: 2
- - uid: 13617
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,17.5
- parent: 2
- - uid: 13618
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,37.5
- parent: 2
- - uid: 13619
- components:
- - type: Transform
- pos: -26.5,-63.5
- parent: 2
- - uid: 13620
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,57.5
- parent: 2
- - uid: 13621
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,99.5
- parent: 2
- - uid: 13622
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-48.5
- parent: 2
- - uid: 13623
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-48.5
- parent: 2
- - uid: 13624
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-48.5
- parent: 2
- - uid: 13625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-45.5
- parent: 2
- - uid: 13626
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-48.5
- parent: 2
- - uid: 13627
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-48.5
- parent: 2
- - uid: 13628
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-40.5
- parent: 2
- - uid: 13629
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-40.5
- parent: 2
- - uid: 13630
- components:
- - type: Transform
- pos: -27.5,-61.5
- parent: 2
- - uid: 13631
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-48.5
- parent: 2
- - uid: 13632
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,57.5
- parent: 2
- - uid: 13633
- components:
- - type: Transform
- pos: -9.5,-55.5
- parent: 2
- - uid: 13634
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,57.5
- parent: 2
- - uid: 13635
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,28.5
- parent: 2
- - uid: 13636
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,95.5
- parent: 2
- - uid: 13637
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-28.5
- parent: 2
- - uid: 13638
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,30.5
- parent: 2
- - uid: 13639
- components:
- - type: Transform
- pos: -13.5,-61.5
- parent: 2
- - uid: 13640
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,29.5
- parent: 2
- - uid: 13641
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-21.5
- parent: 2
- - uid: 13642
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-19.5
- parent: 2
- - uid: 13643
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-25.5
- parent: 2
- - uid: 13644
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,99.5
- parent: 2
- - uid: 13645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,48.5
- parent: 2
- - uid: 13646
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-28.5
- parent: 2
- - uid: 13647
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,99.5
- parent: 2
- - uid: 13648
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,30.5
- parent: 2
- - uid: 13649
- components:
- - type: Transform
- pos: -12.5,-61.5
- parent: 2
- - uid: 13650
- components:
- - type: Transform
- pos: -32.5,-18.5
- parent: 2
- - uid: 13651
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,91.5
- parent: 2
- - uid: 13652
- components:
- - type: Transform
- pos: -25.5,-60.5
- parent: 2
- - uid: 13653
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,54.5
- parent: 2
- - uid: 13654
- components:
- - type: Transform
- pos: -9.5,-59.5
- parent: 2
- - uid: 13655
- components:
- - type: Transform
- pos: -20.5,-61.5
- parent: 2
- - uid: 13656
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-19.5
- parent: 2
- - uid: 13657
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,91.5
- parent: 2
- - uid: 13658
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,23.5
- parent: 2
- - uid: 13659
- components:
- - type: Transform
- pos: -21.5,-61.5
- parent: 2
- - uid: 13660
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,42.5
- parent: 2
- - uid: 13661
- components:
- - type: Transform
- pos: -71.5,-19.5
- parent: 2
- - uid: 13662
- components:
- - type: Transform
- pos: -69.5,-19.5
- parent: 2
- - uid: 13663
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-38.5
- parent: 2
- - uid: 13664
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-35.5
- parent: 2
- - uid: 13665
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-34.5
- parent: 2
- - uid: 13666
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-40.5
- parent: 2
- - uid: 13667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-37.5
- parent: 2
- - uid: 13668
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-39.5
- parent: 2
- - uid: 13669
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-33.5
- parent: 2
- - uid: 13670
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-36.5
- parent: 2
- - uid: 13671
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,56.5
- parent: 2
- - uid: 13672
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,56.5
- parent: 2
- - uid: 13673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,31.5
- parent: 2
- - uid: 13674
- components:
- - type: Transform
- pos: -68.5,-19.5
- parent: 2
- - uid: 13675
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-70.5
- parent: 2
- - uid: 13676
- components:
- - type: Transform
- pos: -47.5,-33.5
- parent: 2
- - uid: 13677
- components:
- - type: Transform
- pos: -27.5,-17.5
- parent: 2
- - uid: 13678
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-70.5
- parent: 2
- - uid: 13679
- components:
- - type: Transform
- pos: -33.5,-69.5
- parent: 2
- - uid: 13680
- components:
- - type: Transform
- pos: -68.5,23.5
- parent: 2
- - uid: 13681
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,12.5
- parent: 2
- - uid: 13682
- components:
- - type: Transform
- pos: 30.5,15.5
- parent: 2
- - uid: 13683
- components:
- - type: Transform
- pos: 30.5,14.5
- parent: 2
- - uid: 13684
- components:
- - type: Transform
- pos: -68.5,22.5
- parent: 2
- - uid: 13685
- components:
- - type: Transform
- pos: -68.5,24.5
- parent: 2
- - uid: 13686
- components:
- - type: Transform
- pos: -68.5,25.5
- parent: 2
- - uid: 13687
- components:
- - type: Transform
- pos: -69.5,25.5
- parent: 2
- - uid: 13688
- components:
- - type: Transform
- pos: -70.5,25.5
- parent: 2
- - uid: 13689
- components:
- - type: Transform
- pos: -71.5,25.5
- parent: 2
- - uid: 13690
- components:
- - type: Transform
- pos: -71.5,24.5
- parent: 2
- - uid: 13691
- components:
- - type: Transform
- pos: -71.5,23.5
- parent: 2
- - uid: 13692
- components:
- - type: Transform
- pos: -71.5,22.5
- parent: 2
- - uid: 13693
- components:
- - type: Transform
- pos: -74.5,26.5
- parent: 2
- - uid: 13694
- components:
- - type: Transform
- pos: -74.5,27.5
- parent: 2
- - uid: 13695
- components:
- - type: Transform
- pos: -68.5,21.5
- parent: 2
- - uid: 13696
- components:
- - type: Transform
- pos: -74.5,28.5
- parent: 2
- - uid: 13697
- components:
- - type: Transform
- pos: -74.5,29.5
- parent: 2
- - uid: 13698
- components:
- - type: Transform
- pos: -68.5,26.5
- parent: 2
- - uid: 13699
- components:
- - type: Transform
- pos: -68.5,27.5
- parent: 2
- - uid: 13700
- components:
- - type: Transform
- pos: -68.5,28.5
- parent: 2
- - uid: 13701
- components:
- - type: Transform
- pos: -68.5,29.5
- parent: 2
- - uid: 13702
- components:
- - type: Transform
- pos: -68.5,30.5
- parent: 2
- - uid: 13703
- components:
- - type: Transform
- pos: -68.5,31.5
- parent: 2
- - uid: 13704
- components:
- - type: Transform
- pos: -74.5,30.5
- parent: 2
- - uid: 13705
- components:
- - type: Transform
- pos: -74.5,31.5
- parent: 2
- - uid: 13706
- components:
- - type: Transform
- pos: -74.5,32.5
- parent: 2
- - uid: 13707
- components:
- - type: Transform
- pos: -74.5,34.5
- parent: 2
- - uid: 13708
- components:
- - type: Transform
- pos: -74.5,35.5
- parent: 2
- - uid: 13709
- components:
- - type: Transform
- pos: -74.5,33.5
- parent: 2
- - uid: 13710
- components:
- - type: Transform
- pos: -68.5,32.5
- parent: 2
- - uid: 13711
- components:
- - type: Transform
- pos: -68.5,33.5
- parent: 2
- - uid: 13712
- components:
- - type: Transform
- pos: -68.5,35.5
- parent: 2
- - uid: 13713
- components:
- - type: Transform
- pos: -68.5,34.5
- parent: 2
- - uid: 13714
- components:
- - type: Transform
- pos: -68.5,36.5
- parent: 2
- - uid: 13715
- components:
- - type: Transform
- pos: -68.5,37.5
- parent: 2
- - uid: 13716
- components:
- - type: Transform
- pos: -68.5,38.5
- parent: 2
- - uid: 13717
- components:
- - type: Transform
- pos: -68.5,39.5
- parent: 2
- - uid: 13718
- components:
- - type: Transform
- pos: -74.5,36.5
- parent: 2
- - uid: 13719
- components:
- - type: Transform
- pos: -74.5,37.5
- parent: 2
- - uid: 13720
- components:
- - type: Transform
- pos: -74.5,38.5
- parent: 2
- - uid: 13721
- components:
- - type: Transform
- pos: -74.5,39.5
- parent: 2
- - uid: 13722
- components:
- - type: Transform
- pos: -68.5,40.5
- parent: 2
- - uid: 13723
- components:
- - type: Transform
- pos: -68.5,41.5
- parent: 2
- - uid: 13724
- components:
- - type: Transform
- pos: -68.5,42.5
- parent: 2
- - uid: 13725
- components:
- - type: Transform
- pos: -68.5,43.5
- parent: 2
- - uid: 13726
- components:
- - type: Transform
- pos: -74.5,40.5
- parent: 2
- - uid: 13727
- components:
- - type: Transform
- pos: -74.5,41.5
- parent: 2
- - uid: 13728
- components:
- - type: Transform
- pos: -74.5,42.5
- parent: 2
- - uid: 13729
- components:
- - type: Transform
- pos: -74.5,43.5
- parent: 2
- - uid: 13730
- components:
- - type: Transform
- pos: -74.5,44.5
- parent: 2
- - uid: 13731
- components:
- - type: Transform
- pos: -68.5,44.5
- parent: 2
- - uid: 13732
- components:
- - type: Transform
- pos: -68.5,45.5
- parent: 2
- - uid: 13733
- components:
- - type: Transform
- pos: -74.5,45.5
- parent: 2
- - uid: 13734
- components:
- - type: Transform
- pos: -74.5,46.5
- parent: 2
- - uid: 13735
- components:
- - type: Transform
- pos: -74.5,47.5
- parent: 2
- - uid: 13736
- components:
- - type: Transform
- pos: -74.5,48.5
- parent: 2
- - uid: 13737
- components:
- - type: Transform
- pos: -68.5,46.5
- parent: 2
- - uid: 13738
- components:
- - type: Transform
- pos: -68.5,47.5
- parent: 2
- - uid: 13739
- components:
- - type: Transform
- pos: -68.5,48.5
- parent: 2
- - uid: 13740
- components:
- - type: Transform
- pos: -68.5,49.5
- parent: 2
- - uid: 13741
- components:
- - type: Transform
- pos: -68.5,50.5
- parent: 2
- - uid: 13742
- components:
- - type: Transform
- pos: -68.5,51.5
- parent: 2
- - uid: 13743
- components:
- - type: Transform
- pos: -74.5,49.5
- parent: 2
- - uid: 13744
- components:
- - type: Transform
- pos: -74.5,50.5
- parent: 2
- - uid: 13745
- components:
- - type: Transform
- pos: -74.5,51.5
- parent: 2
- - uid: 13746
- components:
- - type: Transform
- pos: -74.5,52.5
- parent: 2
- - uid: 13747
- components:
- - type: Transform
- pos: -73.5,52.5
- parent: 2
- - uid: 13748
- components:
- - type: Transform
- pos: -68.5,52.5
- parent: 2
- - uid: 13749
- components:
- - type: Transform
- pos: -1.5,31.5
- parent: 2
- - uid: 13750
- components:
- - type: Transform
- pos: -0.5,31.5
- parent: 2
- - uid: 13751
- components:
- - type: Transform
- pos: 0.49999997,32.5
- parent: 2
- - uid: 13752
- components:
- - type: Transform
- pos: -2.5,30.5
- parent: 2
- - uid: 13753
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,0.5
- parent: 2
- - uid: 13754
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-0.5
- parent: 2
- - uid: 13755
- components:
- - type: Transform
- pos: -23.5,17.5
- parent: 2
- - uid: 13756
- components:
- - type: Transform
- pos: -21.5,17.5
- parent: 2
- - uid: 13757
- components:
- - type: Transform
- pos: -22.5,17.5
- parent: 2
- - uid: 13758
- components:
- - type: Transform
- pos: -24.5,26.5
- parent: 2
- - uid: 13759
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-2.5
- parent: 2
- - uid: 13760
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-3.5
- parent: 2
- - uid: 13761
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-3.5
- parent: 2
- - uid: 13762
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-2.5
- parent: 2
- - uid: 13763
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-2.5
- parent: 2
- - uid: 13764
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-3.5
- parent: 2
- - uid: 13765
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-1.5
- parent: 2
- - uid: 13766
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-1.5
- parent: 2
- - uid: 13767
- components:
- - type: Transform
- pos: 30.5,23.5
- parent: 2
- - uid: 13768
- components:
- - type: Transform
- pos: 30.5,24.5
- parent: 2
- - uid: 13769
- components:
- - type: Transform
- pos: 29.5,24.5
- parent: 2
- - uid: 13770
- components:
- - type: Transform
- pos: 28.5,24.5
- parent: 2
- - uid: 13771
- components:
- - type: Transform
- pos: 27.5,24.5
- parent: 2
- - uid: 13772
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-8.5
- parent: 2
- - uid: 13773
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-11.5
- parent: 2
- - uid: 13774
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-35.5
- parent: 2
- - uid: 13775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-7.5
- parent: 2
- - uid: 13776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-10.5
- parent: 2
- - uid: 13777
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-34.5
- parent: 2
- - uid: 13778
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-9.5
- parent: 2
- - uid: 13779
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-7.5
- parent: 2
- - uid: 13780
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-6.5
- parent: 2
- - uid: 13781
- components:
- - type: Transform
- pos: -54.5,-51.5
- parent: 2
- - uid: 13782
- components:
- - type: Transform
- pos: -55.5,-52.5
- parent: 2
- - uid: 13783
- components:
- - type: Transform
- pos: -57.5,-52.5
- parent: 2
- - uid: 13784
- components:
- - type: Transform
- pos: -56.5,-52.5
- parent: 2
- - uid: 13785
- components:
- - type: Transform
- pos: -58.5,-52.5
- parent: 2
- - uid: 13786
- components:
- - type: Transform
- pos: -59.5,-52.5
- parent: 2
- - uid: 13787
- components:
- - type: Transform
- pos: -60.5,-52.5
- parent: 2
- - uid: 13788
- components:
- - type: Transform
- pos: -61.5,-52.5
- parent: 2
- - uid: 13789
- components:
- - type: Transform
- pos: -61.5,-51.5
- parent: 2
- - uid: 13790
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-55.5
- parent: 2
- - uid: 13791
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-55.5
- parent: 2
- - uid: 13792
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-55.5
- parent: 2
- - uid: 13793
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-1.5
- parent: 2
- - uid: 13794
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-38.5
- parent: 2
- - uid: 13795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-39.5
- parent: 2
- - uid: 38814
- components:
- - type: Transform
- pos: -4.5,27.5
- parent: 38344
- - uid: 38815
- components:
- - type: Transform
- pos: -6.5,26.5
- parent: 38344
- - uid: 38816
- components:
- - type: Transform
- pos: -6.5,28.5
- parent: 38344
- - uid: 38817
- components:
- - type: Transform
- pos: -5.5,28.5
- parent: 38344
- - uid: 38818
- components:
- - type: Transform
- pos: -4.5,30.5
- parent: 38344
- - uid: 38819
- components:
- - type: Transform
- pos: -6.5,29.5
- parent: 38344
- - uid: 38820
- components:
- - type: Transform
- pos: -5.5,27.5
- parent: 38344
- - uid: 38821
- components:
- - type: Transform
- pos: -2.5,22.5
- parent: 38344
- - uid: 38822
- components:
- - type: Transform
- pos: -1.5,22.5
- parent: 38344
- - uid: 38823
- components:
- - type: Transform
- pos: 0.5,17.5
- parent: 38344
- - uid: 38824
- components:
- - type: Transform
- pos: -6.5,25.5
- parent: 38344
- - uid: 38825
- components:
- - type: Transform
- pos: -22.5,25.5
- parent: 38344
- - uid: 38826
- components:
- - type: Transform
- pos: -21.5,25.5
- parent: 38344
- - uid: 38827
- components:
- - type: Transform
- pos: -8.5,15.5
- parent: 38344
- - uid: 38828
- components:
- - type: Transform
- pos: 0.5,16.5
- parent: 38344
- - uid: 38829
- components:
- - type: Transform
- pos: -8.5,14.5
- parent: 38344
- - uid: 38830
- components:
- - type: Transform
- pos: -5.5,26.5
- parent: 38344
- - uid: 38831
- components:
- - type: Transform
- pos: -5.5,34.5
- parent: 38344
- - uid: 38832
- components:
- - type: Transform
- pos: -10.5,34.5
- parent: 38344
- - uid: 38833
- components:
- - type: Transform
- pos: -8.5,34.5
- parent: 38344
- - uid: 38834
- components:
- - type: Transform
- pos: -8.5,30.5
- parent: 38344
- - uid: 38835
- components:
- - type: Transform
- pos: -6.5,34.5
- parent: 38344
- - uid: 38836
- components:
- - type: Transform
- pos: 8.5,7.5
- parent: 38344
- - uid: 38837
- components:
- - type: Transform
- pos: 9.5,6.5
- parent: 38344
- - uid: 38838
- components:
- - type: Transform
- pos: 9.5,7.5
- parent: 38344
- - uid: 38839
- components:
- - type: Transform
- pos: 8.5,6.5
- parent: 38344
- - uid: 38840
- components:
- - type: Transform
- pos: 10.5,7.5
- parent: 38344
- - uid: 38841
- components:
- - type: Transform
- pos: 10.5,6.5
- parent: 38344
- - uid: 38842
- components:
- - type: Transform
- pos: 11.5,7.5
- parent: 38344
- - uid: 38843
- components:
- - type: Transform
- pos: -6.5,35.5
- parent: 38344
-- proto: Chair
- entities:
- - uid: 13796
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,31.5
- parent: 2
- - uid: 13797
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,32.5
- parent: 2
- - uid: 13798
- components:
- - type: Transform
- pos: 57.5,-14.5
- parent: 2
- - uid: 13799
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-25.5
- parent: 2
- - uid: 13800
- components:
- - type: Transform
- pos: 60.5,-15.5
- parent: 2
- - uid: 13801
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,22.5
- parent: 2
- - uid: 13802
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,23.5
- parent: 2
- - uid: 13803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,89.5
- parent: 2
- - uid: 13804
- components:
- - type: Transform
- pos: -31.5,69.5
- parent: 2
- - uid: 13805
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,66.5
- parent: 2
- - uid: 13806
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,81.5
- parent: 2
- - uid: 13807
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,81.5
- parent: 2
- - uid: 13808
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,91.5
- parent: 2
- - uid: 13809
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,80.5
- parent: 2
- - uid: 13810
- components:
- - type: Transform
- pos: 58.5,-14.5
- parent: 2
- - uid: 13811
- components:
- - type: Transform
- pos: 59.5,-14.5
- parent: 2
- - uid: 13812
- components:
- - type: Transform
- pos: 60.5,-14.5
- parent: 2
- - uid: 13813
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-27.5
- parent: 2
- - uid: 13814
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-28.5
- parent: 2
- - uid: 13815
- components:
- - type: Transform
- pos: -48.5,33.5
- parent: 2
- - uid: 13816
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,28.5
- parent: 2
- - uid: 13817
- components:
- - type: Transform
- pos: 58.5,-14.5
- parent: 2
- - uid: 13818
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,29.5
- parent: 2
- - uid: 13819
- components:
- - type: Transform
- pos: -47.5,33.5
- parent: 2
- - uid: 13820
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-6.5
- parent: 2
- - uid: 13821
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-73.5
- parent: 2
- - uid: 13822
- components:
- - type: Transform
- pos: -4.5,-67.5
- parent: 2
- - uid: 13823
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,7.5
- parent: 2
- - uid: 13824
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-27.5
- parent: 2
- - uid: 13825
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,80.5
- parent: 2
- - uid: 13826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,80.5
- parent: 2
- - uid: 13827
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-42.5
- parent: 2
- - uid: 13828
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,81.5
- parent: 2
- - uid: 13829
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-28.5
- parent: 2
- - uid: 13830
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-67.5
- parent: 2
- - uid: 13831
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-28.5
- parent: 2
- - uid: 13832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,81.5
- parent: 2
- - uid: 13833
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-15.5
- parent: 2
- - uid: 13834
- components:
- - type: Transform
- pos: -22.5,-38.5
- parent: 2
- - uid: 13835
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,19.5
- parent: 2
- - uid: 13836
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,89.5
- parent: 2
- - uid: 13837
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,17.5
- parent: 2
- - uid: 13838
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,24.5
- parent: 2
- - uid: 13839
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,22.5
- parent: 2
- - uid: 13840
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,24.5
- parent: 2
- - uid: 13841
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,24.5
- parent: 2
- - uid: 13842
- components:
- - type: Transform
- pos: -2.5,-67.5
- parent: 2
- - uid: 13843
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-66.5
- parent: 2
- - uid: 13844
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,80.5
- parent: 2
- - uid: 13845
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-40.5
- parent: 2
- - uid: 13846
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-71.5
- parent: 2
- - uid: 13847
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,47.5
- parent: 2
- - uid: 13848
- components:
- - type: Transform
- pos: -23.5,-38.5
- parent: 2
- - uid: 13849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-45.5
- parent: 2
- - uid: 13850
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-4.5
- parent: 2
- - uid: 13851
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-68.5
- parent: 2
- - uid: 13852
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-7.5
- parent: 2
- - uid: 13853
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,4.5
- parent: 2
- - uid: 13854
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-65.5
- parent: 2
- - uid: 13855
- components:
- - type: Transform
- pos: -56.5,13.5
- parent: 2
- - uid: 13856
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-6.5
- parent: 2
- - uid: 13857
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-65.5
- parent: 2
- - uid: 13858
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,79.5
- parent: 2
- - uid: 13859
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-13.5
- parent: 2
- - uid: 13860
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,89.5
- parent: 2
- - uid: 13861
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,88.5
- parent: 2
- - uid: 13862
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-66.5
- parent: 2
- - uid: 13863
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-28.5
- parent: 2
- - uid: 13864
- components:
- - type: Transform
- pos: -55.5,13.5
- parent: 2
- - uid: 13865
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,11.5
- parent: 2
- - uid: 13866
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,11.5
- parent: 2
- - uid: 13867
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,11.5
- parent: 2
- - uid: 13868
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-40.5
- parent: 2
- - uid: 13869
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,22.5
- parent: 2
- - uid: 13870
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,22.5
- parent: 2
- - uid: 13871
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,11.5
- parent: 2
- - uid: 13872
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,-23.5
- parent: 2
- - uid: 13873
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-24.5
- parent: 2
- - uid: 13874
- components:
- - type: Transform
- pos: 34.5,-43.5
- parent: 2
- - uid: 13875
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-2.5
- parent: 2
- - uid: 13876
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,1.5
- parent: 2
- - uid: 13877
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-71.5
- parent: 2
- - uid: 13878
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,62.5
- parent: 2
- - uid: 13879
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,64.5
- parent: 2
- - uid: 13880
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-72.5
- parent: 2
- - uid: 13881
- components:
- - type: Transform
- pos: -3.5,-67.5
- parent: 2
- - uid: 13882
- components:
- - type: Transform
- pos: -52.5,13.5
- parent: 2
- - uid: 13883
- components:
- - type: Transform
- pos: -53.5,13.5
- parent: 2
- - uid: 13884
- components:
- - type: Transform
- pos: -11.5,-22.5
- parent: 2
- - uid: 13885
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-4.5
- parent: 2
- - uid: 13886
- components:
- - type: Transform
- pos: -51.5,13.5
- parent: 2
- - uid: 13887
- components:
- - type: Transform
- pos: -14.5,-22.5
- parent: 2
- - uid: 13888
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,30.5
- parent: 2
- - uid: 13889
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-72.5
- parent: 2
- - uid: 13890
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-79.5
- parent: 2
- - uid: 13891
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,87.5
- parent: 2
- - uid: 13892
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,91.5
- parent: 2
- - uid: 13893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,89.5
- parent: 2
- - uid: 13894
- components:
- - type: Transform
- pos: 75.5,28.5
- parent: 2
- - uid: 13895
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-3.5
- parent: 2
- - uid: 13896
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-3.5
- parent: 2
- - uid: 13897
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-70.5
- parent: 2
- - uid: 13898
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,11.5
- parent: 2
- - uid: 13899
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-80.5
- parent: 2
- - uid: 13900
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,11.5
- parent: 2
- - uid: 13901
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-16.5
- parent: 2
- - uid: 13902
- components:
- - type: Transform
- pos: 13.5,-22.5
- parent: 2
- - uid: 13903
- components:
- - type: Transform
- pos: 25.5,1.5
- parent: 2
- - uid: 13904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-48.5
- parent: 2
- - uid: 13905
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-45.5
- parent: 2
- - uid: 13906
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,0.5
- parent: 2
- - uid: 13907
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-66.5
- parent: 2
- - uid: 13908
- components:
- - type: Transform
- pos: 74.5,-38.5
- parent: 2
- - uid: 13909
- components:
- - type: Transform
- pos: 26.5,1.5
- parent: 2
- - uid: 13910
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-7.5
- parent: 2
- - uid: 13911
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,2.5
- parent: 2
- - uid: 13912
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-4.5
- parent: 2
- - uid: 13913
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-5.5
- parent: 2
- - uid: 13914
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-7.5
- parent: 2
- - uid: 13915
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-0.5
- parent: 2
- - uid: 13916
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-44.5
- parent: 2
- - uid: 13917
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-72.5
- parent: 2
- - uid: 13918
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,0.5
- parent: 2
- - uid: 13919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-2.5
- parent: 2
- - uid: 13920
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-0.5
- parent: 2
- - uid: 13921
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,46.5
- parent: 2
- - uid: 13922
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,46.5
- parent: 2
- - uid: 13923
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-6.5
- parent: 2
- - uid: 13924
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-6.5
- parent: 2
- - uid: 13925
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,46.5
- parent: 2
- - uid: 13926
- components:
- - type: Transform
- pos: 60.5,-14.5
- parent: 2
- - uid: 13927
- components:
- - type: Transform
- pos: 7.5,49.5
- parent: 2
- - uid: 13928
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-7.5
- parent: 2
- - uid: 13929
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-65.5
- parent: 2
- - uid: 13930
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,12.5
- parent: 2
- - uid: 13931
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-15.5
- parent: 2
- - uid: 13932
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-14.5
- parent: 2
- - uid: 13933
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-72.5
- parent: 2
- - uid: 13934
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-65.5
- parent: 2
- - uid: 13935
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-73.5
- parent: 2
- - uid: 13936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-69.5
- parent: 2
- - uid: 13937
- components:
- - type: Transform
- pos: 29.5,2.5
- parent: 2
- - uid: 13938
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,91.5
- parent: 2
- - uid: 13939
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,63.5
- parent: 2
- - uid: 13940
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-65.5
- parent: 2
- - uid: 13941
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-4.5
- parent: 2
- - uid: 13942
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,63.5
- parent: 2
- - uid: 13943
- components:
- - type: Transform
- pos: -5.5,-67.5
- parent: 2
- - uid: 13944
- components:
- - type: Transform
- pos: -54.5,13.5
- parent: 2
- - uid: 13945
- components:
- - type: Transform
- pos: 10.5,-22.5
- parent: 2
- - uid: 13946
- components:
- - type: Transform
- pos: 6.5,-22.5
- parent: 2
- - uid: 13947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,77.5
- parent: 2
- - uid: 13948
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-49.5
- parent: 2
- - uid: 13949
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,9.5
- parent: 2
- - uid: 13950
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-67.5
- parent: 2
- - uid: 13951
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-26.5
- parent: 2
- - uid: 13952
- components:
- - type: Transform
- pos: -39.5,-8.5
- parent: 2
- - uid: 13953
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-45.5
- parent: 2
- - uid: 13954
- components:
- - type: Transform
- pos: -4.5,-22.5
- parent: 2
- - uid: 13955
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,78.5
- parent: 2
- - uid: 13956
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,1.5
- parent: 2
- - uid: 13957
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,22.5
- parent: 2
- - uid: 13958
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,61.5
- parent: 2
- - uid: 13959
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,8.5
- parent: 2
- - uid: 13960
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-44.5
- parent: 2
- - uid: 13961
- components:
- - type: Transform
- pos: 3.5,-22.5
- parent: 2
- - uid: 13962
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-74.5
- parent: 2
- - uid: 13963
- components:
- - type: Transform
- pos: 10.5,-76.5
- parent: 2
- - uid: 13964
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-71.5
- parent: 2
- - uid: 13965
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-71.5
- parent: 2
- - uid: 13966
- components:
- - type: Transform
- pos: -5.5,-63.5
- parent: 2
- - uid: 13967
- components:
- - type: Transform
- pos: -6.5,-63.5
- parent: 2
- - uid: 13968
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-76.5
- parent: 2
- - uid: 13969
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-67.5
- parent: 2
- - uid: 13970
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-68.5
- parent: 2
- - uid: 13971
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-69.5
- parent: 2
- - uid: 13972
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-71.5
- parent: 2
- - uid: 13973
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-70.5
- parent: 2
- - uid: 13974
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-69.5
- parent: 2
- - uid: 13975
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-81.5
- parent: 2
- - uid: 13976
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-81.5
- parent: 2
- - uid: 13977
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-81.5
- parent: 2
- - uid: 13978
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-26.5
- parent: 2
- - uid: 13979
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-77.5
- parent: 2
- - uid: 13980
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-77.5
- parent: 2
- - uid: 13981
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-77.5
- parent: 2
- - uid: 13982
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-77.5
- parent: 2
- - uid: 13983
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,25.5
- parent: 2
- - uid: 13984
- components:
- - type: Transform
- pos: 30.5,-44.5
- parent: 2
- - uid: 13985
- components:
- - type: Transform
- pos: 32.5,-44.5
- parent: 2
- - uid: 13986
- components:
- - type: Transform
- pos: 33.5,-44.5
- parent: 2
- - uid: 13987
- components:
- - type: Transform
- pos: 31.5,-44.5
- parent: 2
- - uid: 13988
- components:
- - type: Transform
- pos: 34.5,-44.5
- parent: 2
- - uid: 13989
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,18.5
- parent: 2
- - uid: 13990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,19.5
- parent: 2
- - uid: 13991
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,18.5
- parent: 2
- - uid: 13992
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,20.5
- parent: 2
- - uid: 13993
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,20.5
- parent: 2
- - uid: 13994
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,19.5
- parent: 2
- - uid: 13995
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,18.5
- parent: 2
- - uid: 13996
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 89.5,12.5
- parent: 2
- - uid: 13997
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 88.5,12.5
- parent: 2
- - uid: 13998
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 87.5,12.5
- parent: 2
- - uid: 13999
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,12.5
- parent: 2
- - uid: 14000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 90.5,12.5
- parent: 2
- - uid: 14001
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,19.5
- parent: 2
- - uid: 14002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,18.5
- parent: 2
- - uid: 14003
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,17.5
- parent: 2
- - uid: 14004
- components:
- - type: Transform
- pos: 58.5,-11.5
- parent: 2
- - uid: 14005
- components:
- - type: Transform
- pos: 60.5,-11.5
- parent: 2
- - uid: 14006
- components:
- - type: Transform
- pos: -12.5,59.5
- parent: 2
- - uid: 14007
- components:
- - type: Transform
- pos: -10.5,59.5
- parent: 2
- - uid: 14008
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,66.5
- parent: 2
- - uid: 14009
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,66.5
- parent: 2
- - uid: 14010
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,89.5
- parent: 2
- - uid: 14011
- components:
- - type: Transform
- pos: 7.5,85.5
- parent: 2
- - uid: 14012
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,83.5
- parent: 2
- - uid: 14013
- components:
- - type: Transform
- pos: -11.5,59.5
- parent: 2
- - uid: 14014
- components:
- - type: Transform
- pos: -10.5,59.5
- parent: 2
- - uid: 14015
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,66.5
- parent: 2
- - uid: 14016
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,91.5
- parent: 2
- - uid: 14017
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,67.5
- parent: 2
- - uid: 14018
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-24.5
- parent: 2
- - uid: 14019
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-24.5
- parent: 2
- - uid: 14020
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-24.5
- parent: 2
- - uid: 14021
- components:
- - type: Transform
- pos: 57.5,-12.5
- parent: 2
- - uid: 14022
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-28.5
- parent: 2
- - uid: 14023
- components:
- - type: Transform
- pos: 61.5,-12.5
- parent: 2
- - uid: 14024
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-28.5
- parent: 2
- - uid: 14025
- components:
- - type: Transform
- pos: 59.5,-15.5
- parent: 2
- - uid: 14026
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,61.5
- parent: 2
- - uid: 14027
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-25.5
- parent: 2
- - uid: 14028
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-27.5
- parent: 2
- - uid: 14029
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-25.5
- parent: 2
- - uid: 14030
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-27.5
- parent: 2
- - uid: 14031
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,61.5
- parent: 2
- - uid: 14032
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,64.5
- parent: 2
- - uid: 14033
- components:
- - type: Transform
- pos: 60.5,-15.5
- parent: 2
- - uid: 14034
- components:
- - type: Transform
- pos: 59.5,-11.5
- parent: 2
- - uid: 14035
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-27.5
- parent: 2
- - uid: 14036
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-27.5
- parent: 2
- - uid: 14037
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-25.5
- parent: 2
- - uid: 14038
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-25.5
- parent: 2
- - uid: 14039
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-25.5
- parent: 2
- - uid: 14040
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-25.5
- parent: 2
- - uid: 14041
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-24.5
- parent: 2
- - uid: 14042
- components:
- - type: Transform
- pos: 58.5,-15.5
- parent: 2
- - uid: 14043
- components:
- - type: Transform
- pos: 59.5,-12.5
- parent: 2
- - uid: 14044
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-25.5
- parent: 2
- - uid: 14045
- components:
- - type: Transform
- pos: 59.5,-12.5
- parent: 2
- - uid: 14046
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-26.5
- parent: 2
- - uid: 14047
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-26.5
- parent: 2
- - uid: 14048
- components:
- - type: Transform
- pos: 58.5,-12.5
- parent: 2
- - uid: 14049
- components:
- - type: Transform
- pos: 61.5,-14.5
- parent: 2
- - uid: 14050
- components:
- - type: Transform
- pos: 60.5,-13.5
- parent: 2
- - uid: 14051
- components:
- - type: Transform
- pos: 61.5,-14.5
- parent: 2
- - uid: 14052
- components:
- - type: Transform
- pos: 57.5,-13.5
- parent: 2
- - uid: 14053
- components:
- - type: Transform
- pos: 59.5,-12.5
- parent: 2
- - uid: 14054
- components:
- - type: Transform
- pos: 61.5,-13.5
- parent: 2
- - uid: 14055
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-26.5
- parent: 2
- - uid: 14056
- components:
- - type: Transform
- pos: 58.5,-13.5
- parent: 2
- - uid: 14057
- components:
- - type: Transform
- pos: 59.5,-13.5
- parent: 2
- - uid: 14058
- components:
- - type: Transform
- pos: 60.5,-12.5
- parent: 2
- - uid: 14059
- components:
- - type: Transform
- pos: 59.5,-12.5
- parent: 2
- - uid: 14060
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,63.5
- parent: 2
- - uid: 14061
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-26.5
- parent: 2
- - uid: 14062
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,64.5
- parent: 2
- - uid: 14063
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,62.5
- parent: 2
- - uid: 14064
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,62.5
- parent: 2
- - uid: 14065
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-34.5
- parent: 2
- - uid: 14066
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,26.5
- parent: 2
- - uid: 14067
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,26.5
- parent: 2
- - uid: 14068
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,26.5
- parent: 2
- - uid: 14069
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,24.5
- parent: 2
- - uid: 14070
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,26.5
- parent: 2
- - uid: 14071
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,27.5
- parent: 2
-- proto: ChairBrass
- entities:
- - uid: 14072
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-76.5
- parent: 2
-- proto: ChairCarp
- entities:
- - uid: 14073
- components:
- - type: Transform
- pos: 20.5,63.5
- parent: 2
- - uid: 14074
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-31.5
- parent: 2
-- proto: ChairFolding
- entities:
- - uid: 14075
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,-1.5
- parent: 2
- - uid: 14076
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,28.5
- parent: 2
- - uid: 14077
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,1.5
- parent: 2
- - uid: 14078
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-25.5
- parent: 2
- - uid: 14079
- components:
- - type: Transform
- pos: -65.5,-23.5
- parent: 2
- - uid: 14080
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,-17.5
- parent: 2
- - uid: 14081
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-50.5
- parent: 2
- - uid: 14082
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-16.5
- parent: 2
- - uid: 14083
- components:
- - type: Transform
- pos: 87.5,-16.5
- parent: 2
- - uid: 14084
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,-17.5
- parent: 2
- - uid: 14085
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,58.5
- parent: 2
- - uid: 14086
- components:
- - type: Transform
- pos: -29.5,-46.5
- parent: 2
- - uid: 14087
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-0.5
- parent: 2
- - uid: 14088
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-1.5
- parent: 2
- - uid: 14089
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,57.5
- parent: 2
- - uid: 14090
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-10.5
- parent: 2
- - uid: 14091
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: 96.3055,2.6715565
- parent: 2
- - uid: 14092
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 94.61799,3.390307
- parent: 2
- - uid: 14093
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 95.43049,3.312182
- parent: 2
- - uid: 14094
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: 93.64925,2.640307
- parent: 2
- - uid: 14095
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 94.64925,1.7809321
- parent: 2
- - uid: 14096
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 95.46175,1.9371818
- parent: 2
- - uid: 14097
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: -43.48623,-65.371765
- parent: 2
- - uid: 14098
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.123295,26.821814
- parent: 2
- - uid: 14099
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.10767,25.946814
- parent: 2
- - uid: 14100
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.168484,27.644085
- parent: 2
- - uid: 38844
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,43.5
- parent: 38344
-- proto: ChairFoldingSpawnFolded
- entities:
- - uid: 14101
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -42.516994,-6.432411
- parent: 2
- - uid: 14102
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -42.548244,-6.276161
- parent: 2
- - uid: 14103
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -42.53262,-6.041786
- parent: 2
-- proto: ChairGreyscale
- entities:
- - uid: 14104
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,26.5
- parent: 2
- - uid: 14105
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,24.5
- parent: 2
- - uid: 14106
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,26.5
- parent: 2
- - uid: 14107
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,37.5
- parent: 2
- - uid: 14108
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,34.5
- parent: 2
- - uid: 14109
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,32.5
- parent: 2
- - uid: 14110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,34.5
- parent: 2
- - uid: 14111
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,37.5
- parent: 2
- - uid: 14112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,35.5
- parent: 2
- - uid: 14113
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,31.5
- parent: 2
- - uid: 14114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,38.5
- parent: 2
- - uid: 14115
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,32.5
- parent: 2
- - uid: 14116
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,38.5
- parent: 2
- - uid: 14117
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,35.5
- parent: 2
- - uid: 14118
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,31.5
- parent: 2
- - uid: 14119
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-10.5
- parent: 2
- - uid: 14120
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,24.5
- parent: 2
- - uid: 14121
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,26.5
- parent: 2
- - uid: 14122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,26.5
- parent: 2
- - uid: 14123
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,24.5
- parent: 2
- - uid: 14124
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,24.5
- parent: 2
-- proto: ChairOfficeDark
- entities:
- - uid: 14125
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 88.42397,6.7841988
- parent: 2
- - uid: 14126
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.399817,0.6220567
- parent: 2
- - uid: 14127
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-1.5
- parent: 2
- - uid: 14128
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,9.5
- parent: 2
- - uid: 14129
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-4.5
- parent: 2
- - uid: 14130
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-2.5
- parent: 2
- - uid: 14131
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,22.5
- parent: 2
- - uid: 14132
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-12.5
- parent: 2
- - uid: 14133
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-13.5
- parent: 2
- - uid: 14134
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,15.5
- parent: 2
- - uid: 14135
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,8.5
- parent: 2
- - uid: 14136
- components:
- - type: Transform
- pos: -31.5,-11.5
- parent: 2
- - uid: 14137
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-41.5
- parent: 2
- - uid: 14138
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-3.5
- parent: 2
- - uid: 14139
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,27.5
- parent: 2
- - uid: 14140
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-9.5
- parent: 2
- - uid: 14141
- components:
- - type: Transform
- pos: -46.5,9.5
- parent: 2
- - uid: 14142
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-14.5
- parent: 2
- - uid: 14143
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,2.5
- parent: 2
- - uid: 14144
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-12.5
- parent: 2
- - uid: 14145
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,19.5
- parent: 2
- - uid: 14146
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-13.5
- parent: 2
- - uid: 14147
- components:
- - type: Transform
- pos: -32.5,-11.5
- parent: 2
- - uid: 14148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-14.5
- parent: 2
- - uid: 14149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,9.5
- parent: 2
- - uid: 14150
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-2.5
- parent: 2
- - uid: 14151
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,4.5
- parent: 2
- - uid: 14152
- components:
- - type: Transform
- pos: 51.5,-2.5
- parent: 2
- - uid: 14153
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,-4.5
- parent: 2
- - uid: 14154
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,86.5
- parent: 2
- - uid: 14155
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-4.5
- parent: 2
- - uid: 14156
- components:
- - type: Transform
- pos: 6.5,63.5
- parent: 2
- - uid: 14157
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- pos: -48.5,-5.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:
- - 14844
- - 14843
- - 14842
- - 14841
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateFilledSpawner
- entities:
- - uid: 14845
- components:
- - type: Transform
- pos: 25.5,40.5
- parent: 2
- - uid: 14846
- components:
- - type: Transform
- pos: 33.5,35.5
- parent: 2
- - uid: 14847
- components:
- - type: Transform
- pos: 25.5,40.5
- parent: 2
- - uid: 14848
- components:
- - type: Transform
- pos: 10.5,50.5
- parent: 2
- - uid: 14849
- components:
- - type: Transform
- pos: 40.5,-2.5
- parent: 2
- - uid: 14850
- components:
- - type: Transform
- pos: 16.5,41.5
- parent: 2
- - uid: 14851
- components:
- - type: Transform
- pos: 10.5,51.5
- parent: 2
- - uid: 14852
- components:
- - type: Transform
- pos: 9.5,59.5
- parent: 2
- - uid: 14853
- components:
- - type: Transform
- pos: 12.5,50.5
- parent: 2
-- proto: CrateFreezer
- entities:
- - uid: 14538
- components:
- - type: Transform
- pos: 25.5,67.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9279782
- - 7.252871
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14539
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14854
- components:
- - type: Transform
- pos: 54.5,-34.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:
- - 14855
- - 14857
- - 14856
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14858
- components:
- - type: Transform
- pos: 32.5,-65.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14859
- components:
- - type: Transform
- pos: 44.5,-37.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14861
- - 14860
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateFunBoardGames
- entities:
- - uid: 14862
- components:
- - type: Transform
- pos: 81.5,-0.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
- - uid: 14863
- components:
- - type: Transform
- pos: 3.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateFunParty
- entities:
- - uid: 14864
- components:
- - type: Transform
- pos: -1.5,39.5
- parent: 2
- - uid: 14865
- components:
- - type: Transform
- pos: -65.5,-47.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14866
- components:
- - type: Transform
- pos: -1.5,38.5
- parent: 2
-- proto: CrateFunToyBox
- entities:
- - uid: 14867
- components:
- - type: Transform
- pos: 89.5,5.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14868
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateGenericSteel
- entities:
- - uid: 14869
- components:
- - type: Transform
- pos: -24.5,-21.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 14870
- components:
- - type: Transform
- pos: -67.5,-19.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 14871
- components:
- - type: Transform
- pos: 13.5,-54.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 14872
- components:
- - type: Transform
- pos: -56.5,-17.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 14873
- components:
- - type: Transform
- pos: -26.5,-75.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14874
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 14875
- components:
- - type: Transform
- pos: 52.5,3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8968438
- - 7.1357465
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14876
- - 14878
- - 14877
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14879
- components:
- - type: Transform
- pos: -58.5,-20.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 14880
- components:
- - type: Transform
- pos: 24.5,54.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 14881
- components:
- - type: Transform
- pos: 25.5,54.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 14882
- components:
- - type: Transform
- pos: -49.5,36.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14883
- components:
- - type: Transform
- pos: -48.5,36.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14884
- components:
- - type: Transform
- pos: -47.5,36.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateHydroponics
- entities:
- - uid: 14885
- components:
- - type: Transform
- pos: -24.5,53.5
- parent: 2
-- proto: CrateHydroponicsSeeds
- entities:
- - uid: 14886
- components:
- - type: Transform
- pos: -36.5,45.5
- parent: 2
- - uid: 14887
- components:
- - type: Transform
- pos: -59.5,-44.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateHydroSecure
- entities:
- - uid: 14888
- components:
- - type: Transform
- pos: -26.5,55.5
- parent: 2
- - uid: 14889
- components:
- - type: Transform
- pos: -36.5,46.5
- parent: 2
-- proto: CrateInternals
- entities:
- - uid: 14890
- components:
- - type: Transform
- pos: 6.5,-14.5
- parent: 2
-- proto: CrateMedical
- entities:
- - uid: 880
- components:
- - type: Transform
- pos: 60.5,-3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8968438
- - 7.1357465
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 881
- - 885
- - 882
- - 887
- - 886
- - 883
- - 884
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateMedicalScrubs
- entities:
- - uid: 14891
- components:
- - type: Transform
- pos: 11.5,-40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14892
- components:
- - type: Transform
- pos: 20.5,-37.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateMedicalSecure
- entities:
- - uid: 1499
- components:
- - type: Transform
- pos: -50.5,-40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1506
- - 1502
- - 1503
- - 1505
- - 1501
- - 1504
- - 1500
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateMedicalSurgery
- entities:
- - uid: 14893
- components:
- - type: Transform
- pos: 31.5,-46.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateNPCCow
- entities:
- - uid: 14894
- components:
- - type: Transform
- pos: -33.5,43.5
- parent: 2
-- proto: CrateNPCHamlet
- entities:
- - uid: 14895
- components:
- - type: Transform
- pos: 3.5,12.5
- parent: 2
-- proto: CratePlastic
- entities:
- - uid: 14896
- components:
- - type: Transform
- pos: 27.5,59.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14897
- components:
- - type: Transform
- pos: 27.5,60.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateServiceBureaucracy
- entities:
- - uid: 14898
- components:
- - type: Transform
- pos: -37.5,63.5
- parent: 2
-- proto: CrateServiceJanitorialSupplies
- entities:
- - uid: 14899
- components:
- - type: Transform
- pos: 21.5,49.5
- parent: 2
- - uid: 14900
- components:
- - type: Transform
- pos: -59.5,-40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateServiceReplacementLights
- entities:
- - uid: 14901
- components:
- - type: Transform
- pos: 16.5,45.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateToyBox
- entities:
- - uid: 14902
- components:
- - type: Transform
- pos: 11.5,66.5
- parent: 2
-- proto: CrateTrashCart
- entities:
- - uid: 14903
- components:
- - type: Transform
- pos: -45.5,-46.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14904
- components:
- - type: Transform
- pos: -59.5,-33.5
- parent: 2
- - uid: 14905
- components:
- - type: Transform
- pos: -27.5,39.5
- parent: 2
- - uid: 14906
- components:
- - type: Transform
- pos: 31.5,56.5
- parent: 2
- - uid: 14907
- components:
- - type: Transform
- pos: 31.5,57.5
- parent: 2
-- proto: CrateTrashCartFilled
- entities:
- - uid: 14908
- components:
- - type: Transform
- pos: -37.5,-54.5
- parent: 2
- - uid: 14909
- components:
- - type: Transform
- pos: 0.5,56.5
- parent: 2
-- proto: CrateTrashCartJani
- entities:
- - uid: 14910
- components:
- - type: Transform
- pos: 4.5,50.5
- parent: 2
- - uid: 14911
- components:
- - type: Transform
- pos: -1.5,56.5
- parent: 2
- - uid: 14912
- components:
- - type: Transform
- pos: 4.5,51.5
- parent: 2
-- proto: CrayonBox
- entities:
- - uid: 14913
- components:
- - type: Transform
- pos: -4.504109,26.61277
- parent: 2
- - uid: 14914
- components:
- - type: Transform
- pos: 36.502167,-10.380364
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14915
- components:
- - type: Transform
- pos: -12.505997,-81.42869
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14916
- components:
- - type: Transform
- pos: -34.169643,-10.397047
- parent: 2
-- proto: CrayonMime
- entities:
- - uid: 14917
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.591542,46.22136
- parent: 2
-- proto: CrayonRed
- entities:
- - uid: 14918
- components:
- - type: Transform
- pos: 73.56891,-45.23019
- parent: 2
- - uid: 14919
- components:
- - type: Transform
- pos: 73.64703,-45.245815
- parent: 2
- - uid: 14920
- components:
- - type: Transform
- pos: 73.78766,-45.38644
- parent: 2
- - uid: 14921
- components:
- - type: Transform
- pos: 73.72516,-45.339565
- parent: 2
-- proto: Crematorium
- entities:
- - uid: 14922
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-71.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrewMonitoringComputerCircuitboard
- entities:
- - uid: 14923
- components:
- - type: Transform
- pos: -34.459133,19.569752
- parent: 2
-- proto: CrewMonitoringServer
- entities:
- - uid: 14924
- components:
- - type: Transform
- pos: -124.5,36.5
- parent: 2
- - type: SingletonDeviceNetServer
- active: False
- available: False
-- proto: Crowbar
- entities:
- - uid: 14925
- components:
- - type: Transform
- pos: -33.5,8.5
- parent: 2
- - uid: 14926
- components:
- - type: Transform
- pos: -22.5,-45.5
- parent: 2
- - uid: 14927
- components:
- - type: Transform
- pos: -35.52931,-35.24693
- parent: 2
- - uid: 14928
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.506043,-48.954784
- parent: 2
- - uid: 14929
- components:
- - type: Transform
- pos: -44.506374,-30.442978
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14930
- components:
- - type: Transform
- pos: -69.46426,12.496543
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14931
- components:
- - type: Transform
- pos: -45.5,-11.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14932
- components:
- - type: Transform
- pos: -7.3657737,-61.45761
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14933
- components:
- - type: Transform
- pos: 2.544464,65.46228
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14934
- components:
- - type: Transform
- pos: 78.44689,8.815404
- parent: 2
- - uid: 14936
-=======
- rot: 1.5707963267948966 rad
- pos: -53.5,34.5
- parent: 2
- - uid: 14158
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-46.5
- parent: 2
- - uid: 14159
- components:
- - type: Transform
- pos: 11.5,-51.5
- parent: 2
- - uid: 14160
- components:
- - type: Transform
- pos: 50.5,-2.5
- parent: 2
- - uid: 14161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,1.5
- parent: 2
- - uid: 14162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-75.5
- parent: 2
- - uid: 14163
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-29.5
- parent: 2
- - uid: 14164
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,15.5
- parent: 2
- - uid: 14165
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,17.5
- parent: 2
- - uid: 14166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,17.5
- parent: 2
- - uid: 14167
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-5.5
- parent: 2
- - uid: 14168
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,38.5
- parent: 2
- - uid: 14169
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,17.5
- parent: 2
- - uid: 14170
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,17.5
- parent: 2
- - uid: 14171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-59.5
- parent: 2
- - uid: 14172
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,43.5
- parent: 2
- - uid: 14173
- components:
- - type: Transform
- pos: -45.5,5.5
- parent: 2
- - uid: 14174
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,18.5
- parent: 2
- - uid: 14175
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,18.5
- parent: 2
- - uid: 14176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,17.5
- parent: 2
- - uid: 14177
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,-54.5
- parent: 2
- - uid: 14178
- components:
- - type: Transform
- pos: 51.5,-52.5
- parent: 2
- - uid: 14179
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,10.5
- parent: 2
- - uid: 14180
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,15.5
- parent: 2
- - uid: 14181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,36.5
- parent: 2
- - uid: 14182
- components:
- - type: Transform
- pos: 9.5,33.5
- parent: 2
- - uid: 14183
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-80.5
- parent: 2
- - uid: 14184
- components:
- - type: Transform
- pos: -14.5,-78.5
- parent: 2
- - uid: 14185
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,1.5
- parent: 2
- - uid: 14186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-5.5
- parent: 2
- - uid: 14187
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-0.5
- parent: 2
- - uid: 14188
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,21.5
- parent: 2
- - uid: 14189
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-15.5
- parent: 2
- - uid: 14190
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,17.5
- parent: 2
- - uid: 14191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,9.5
- parent: 2
- - uid: 14192
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,20.5
- parent: 2
- - uid: 14193
- components:
- - type: Transform
- pos: 50.5,-52.5
- parent: 2
- - uid: 14194
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-52.5
- parent: 2
- - uid: 14195
- components:
- - type: Transform
- pos: -13.5,-78.5
- parent: 2
- - uid: 14196
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,62.5
- parent: 2
- - uid: 14197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-50.5
- parent: 2
- - uid: 14198
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,37.5
- parent: 2
- - uid: 14199
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-26.5
- parent: 2
- - uid: 14200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-23.5
- parent: 2
- - uid: 14201
- components:
- - type: Transform
- pos: 12.5,-31.5
- parent: 2
- - uid: 14202
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-0.5
- parent: 2
- - uid: 14203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-0.5
- parent: 2
- - uid: 14204
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-2.5
- parent: 2
- - uid: 14205
- components:
- - type: Transform
- pos: 36.5,8.5
- parent: 2
- - uid: 14206
- components:
- - type: Transform
- pos: 44.5,-24.5
- parent: 2
- - uid: 14207
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,20.5
- parent: 2
- - uid: 14208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,15.5
- parent: 2
- - uid: 14209
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,15.5
- parent: 2
- - uid: 14210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,37.5
- parent: 2
- - uid: 14211
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,19.5
- parent: 2
- - uid: 14212
- components:
- - type: Transform
- pos: 48.5,-24.5
- parent: 2
- - uid: 14213
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,35.5
- parent: 2
- - uid: 14214
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,38.5
- parent: 2
- - uid: 14215
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,62.5
- parent: 2
- - uid: 14216
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,27.5
- parent: 2
- - uid: 14217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,60.5
- parent: 2
- - uid: 14218
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-25.5
- parent: 2
- - uid: 14219
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-49.5
- parent: 2
- - uid: 14220
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-37.5
- parent: 2
- - uid: 14221
- components:
- - type: Transform
- pos: -11.47343,-0.62564135
- parent: 2
- - uid: 14222
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.399817,0.6220567
- parent: 2
- - uid: 14223
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.524817,0.6220567
- parent: 2
- - uid: 14224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.53509253,61.69526
- parent: 2
- - uid: 14225
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.496967,-39.310917
- parent: 2
- - uid: 14226
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: 88.51772,5.1279488
- parent: 2
- - uid: 14227
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: -50.978703,-35.88624
- parent: 2
- - uid: 14228
- components:
- - type: Transform
- pos: -46.51411,0.54027236
- parent: 2
- - uid: 38845
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,33.5
- parent: 38344
- - uid: 38846
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-3.5
- parent: 38344
- - uid: 38847
- components:
- - type: Transform
- pos: 3.495472,1.5606384
- parent: 38344
-- proto: ChairOfficeLight
- entities:
- - uid: 14229
- components:
- - type: Transform
- pos: 20.5,-27.5
- parent: 2
- - uid: 14230
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,0.5
- parent: 2
- - uid: 14231
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,29.5
- parent: 2
- - uid: 14232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-3.5
- parent: 2
- - uid: 14233
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-59.5
- parent: 2
- - uid: 14234
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-30.5
- parent: 2
- - uid: 14235
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-30.5
- parent: 2
- - uid: 14236
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-26.5
- parent: 2
- - uid: 14237
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-56.5
- parent: 2
- - uid: 14238
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-47.5
- parent: 2
- - uid: 14239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,7.5
- parent: 2
- - uid: 14240
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-66.5
- parent: 2
- - uid: 14241
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- parent: 14935
- - type: Physics
- canCollide: False
- - uid: 14937
- components:
- - type: Transform
- pos: -39.486397,-50.506275
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14938
- components:
- - type: Transform
- pos: -57.502308,-13.465677
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14939
- components:
- - type: Transform
- pos: -24.473108,-66.50455
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14940
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.367867,-68.083046
- parent: 2
- - uid: 14941
- components:
- - type: Transform
- pos: -58.47548,22.521378
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14942
- components:
- - type: Transform
- pos: -21.5,14.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14943
- components:
- - type: Transform
- pos: -56.635643,-1.4630084
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14944
- components:
- - type: Transform
- pos: -18.545227,-32.384617
- parent: 2
-- proto: CrowbarRed
- entities:
- - uid: 14945
- components:
- - type: Transform
- pos: 74.5,-4.5
- parent: 2
- - uid: 14946
- components:
- - type: Transform
- pos: 9.521271,64.44338
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14947
- components:
- - type: Transform
- pos: 43.5,-38.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14948
- components:
- - type: Transform
- pos: 15.5,-54.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14949
- components:
- - type: Transform
- pos: 9.598661,84.47283
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14950
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.250557,57.466568
- parent: 2
- - uid: 14951
- components:
- - type: Transform
- pos: -36.496216,-78.649216
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14952
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.54941,-31.15223
- parent: 2
-- proto: CryogenicSleepUnit
- entities:
- - uid: 14953
- components:
- - type: Transform
- pos: 49.5,-13.5
- parent: 2
- - uid: 14954
- components:
- - type: Transform
- pos: 38.5,-44.5
- parent: 2
- - uid: 14955
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-15.5
- parent: 2
- - uid: 14956
- components:
- - type: Transform
- pos: 38.5,-43.5
- parent: 2
-- proto: CryogenicSleepUnitSpawner
- entities:
- - uid: 14957
- components:
- - type: Transform
- pos: 49.5,-15.5
- parent: 2
-- proto: CryogenicSleepUnitSpawnerLateJoin
- entities:
- - uid: 14958
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-13.5
- parent: 2
-- proto: CryoPod
- entities:
- - uid: 14959
- components:
- - type: Transform
- pos: 21.5,-37.5
- parent: 2
- - uid: 14960
- components:
- - type: Transform
- pos: 23.5,-37.5
- parent: 2
-- proto: CurtainsBlackOpen
- entities:
- - uid: 14961
- components:
- - type: Transform
- pos: -1.5,42.5
- parent: 2
-- proto: CurtainsOrangeOpen
- entities:
- - uid: 14962
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,52.5
- parent: 2
-- proto: CurtainsPinkOpen
- entities:
- - uid: 14963
- components:
- - type: Transform
- pos: -58.5,-50.5
- parent: 2
- - uid: 14964
- components:
- - type: Transform
- pos: -57.5,-50.5
- parent: 2
- - uid: 14965
- components:
- - type: Transform
- pos: -59.5,-50.5
- parent: 2
-- proto: CurtainsPurple
- entities:
- - uid: 14966
- components:
- - type: Transform
- pos: -10.5,29.5
- parent: 2
- - uid: 14967
- components:
- - type: Transform
- pos: -10.5,28.5
- parent: 2
- - uid: 14968
- components:
- - type: Transform
- pos: -10.5,32.5
- parent: 2
- - uid: 14969
- components:
- - type: Transform
- pos: -10.5,33.5
- parent: 2
- - uid: 14970
- components:
- - type: Transform
- pos: -10.5,31.5
- parent: 2
- - uid: 14971
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,27.5
- parent: 2
- - uid: 14972
- components:
- - type: Transform
- pos: -10.5,30.5
- parent: 2
-- proto: CurtainsPurpleOpen
- entities:
- - uid: 14973
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,54.5
- parent: 2
-- proto: Cutlass
- entities:
- - uid: 13985
- components:
- - type: Transform
- parent: 13984
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: d20Dice
- entities:
- - uid: 14974
- components:
- - type: Transform
- pos: -34.49025,-59.369396
- parent: 2
- - type: Physics
- canCollide: False
-- proto: DawInstrument
- entities:
- - uid: 14975
- components:
- - type: Transform
- pos: -5.5,54.5
- parent: 2
-- proto: DefaultStationBeaconAISatellite
- entities:
- - uid: 14976
- components:
- - type: Transform
- pos: -118.5,33.5
- parent: 2
- - type: NavMapBeacon
- text: Спутник ИИ
- - type: WarpPoint
- location: Спутник ИИ
-- proto: DefaultStationBeaconAME
- entities:
- - uid: 14977
- components:
- - type: Transform
- pos: -69.5,-0.5
- parent: 2
- - type: NavMapBeacon
- text: Генераторная
- - type: WarpPoint
- location: Инженерный - Генераторная
-- proto: DefaultStationBeaconAnomalyGenerator
- entities:
- - uid: 14978
- components:
- - type: Transform
- pos: -17.5,-57.5
- parent: 2
- - type: NavMapBeacon
- text: Аномалистика
- - type: WarpPoint
- location: РнД - Аномалии
-- proto: DefaultStationBeaconArmory
- entities:
- - uid: 14979
- components:
- - type: Transform
- pos: 62.5,6.5
- parent: 2
- - type: NavMapBeacon
- text: Оружейная
- - type: WarpPoint
- location: Сб - оружиейная
-- proto: DefaultStationBeaconArrivals
- entities:
- - uid: 14980
- components:
- - type: Transform
- pos: -11.5,69.5
- parent: 2
- - type: NavMapBeacon
- text: Прибытие
- - type: WarpPoint
- location: Прибытие
-- proto: DefaultStationBeaconArtifactLab
- entities:
- - uid: 14981
- components:
- - type: Transform
- pos: -28.5,-41.5
- parent: 2
- - type: NavMapBeacon
- text: Артефакты
- - type: WarpPoint
- location: Научный - Артефакты
-- proto: DefaultStationBeaconAtmospherics
- entities:
- - uid: 14982
- components:
- - type: Transform
- pos: -59.5,28.5
- parent: 2
- - type: NavMapBeacon
- text: Атмосферный отсек
- - type: WarpPoint
- location: Атмос - Юг
-- proto: DefaultStationBeaconBar
- entities:
- - uid: 14983
- components:
- - type: Transform
- pos: -10.5,41.5
- parent: 2
- - type: NavMapBeacon
- text: Бар
- - type: WarpPoint
- location: Сервис - Бар
-- proto: DefaultStationBeaconBotany
- entities:
- - uid: 14984
- components:
- - type: Transform
- pos: -29.5,50.5
- parent: 2
- - type: NavMapBeacon
- text: Гидропоника
- - type: WarpPoint
- location: Сервис - Гидропоника
-- proto: DefaultStationBeaconBridge
- entities:
- - uid: 14985
- components:
- - type: Transform
- pos: -0.5,16.5
- parent: 2
- - type: NavMapBeacon
- text: Мостик
- - type: WarpPoint
- location: Мостик
-- proto: DefaultStationBeaconBrig
- entities:
- - uid: 14986
- components:
- - type: Transform
- pos: 47.5,7.5
- parent: 2
- - type: NavMapBeacon
- text: Бриг
- - type: WarpPoint
- location: Бриг
-- proto: DefaultStationBeaconCaptainsQuarters
- entities:
- - uid: 14987
- components:
- - type: Transform
- pos: 9.5,3.5
- parent: 2
- - type: NavMapBeacon
- text: Каюта капитана
- - type: WarpPoint
- location: Мостик - Комната капитана
-- proto: DefaultStationBeaconCargoBay
- entities:
- - uid: 14988
- components:
- - type: Transform
- pos: 37.5,50.5
- parent: 2
- - type: NavMapBeacon
- text: Карго док
- - type: WarpPoint
- location: Карго - доки
-- proto: DefaultStationBeaconCERoom
- entities:
- - uid: 14989
- components:
- - type: Transform
- pos: -63.5,7.5
- parent: 2
- - type: NavMapBeacon
- text: СИ
- - type: WarpPoint
- location: Инженерный - Офис старшего инженера
-- proto: DefaultStationBeaconChapel
- entities:
- - uid: 14990
- components:
- - type: Transform
- pos: -16.5,-70.5
- parent: 2
- - type: NavMapBeacon
- text: Церковь
- - type: WarpPoint
- location: Сервис - Церковь
-- proto: DefaultStationBeaconChemistry
- entities:
- - uid: 14991
- components:
- - type: Transform
- pos: 5.5,-32.5
- parent: 2
- - type: NavMapBeacon
- text: Химия
- - type: WarpPoint
- location: Медотсек - Химия
-- proto: DefaultStationBeaconCMORoom
- entities:
- - uid: 14992
- components:
- - type: Transform
- pos: 22.5,-45.5
- parent: 2
- - type: NavMapBeacon
- text: ГВ
- - type: WarpPoint
- location: Медотсек - Кабинет главрача
-- proto: DefaultStationBeaconCourtroom
- entities:
- - uid: 14993
- components:
- - type: Transform
- pos: 26.5,-1.5
- parent: 2
- - type: NavMapBeacon
- text: Суд
- - type: WarpPoint
- location: Зал суда
-- proto: DefaultStationBeaconCryonics
- entities:
- - uid: 14994
- components:
- - type: Transform
- pos: 22.5,-39.5
- parent: 2
- - type: NavMapBeacon
- text: Крио
- - type: WarpPoint
- location: Медотсек - криогеника
-- proto: DefaultStationBeaconDetectiveRoom
- entities:
- - uid: 14995
- components:
- - type: Transform
- pos: 30.5,10.5
- parent: 2
- - type: NavMapBeacon
- text: Детектив
- - type: WarpPoint
- location: СБ - Офис детектива
-- proto: DefaultStationBeaconDisposals
- entities:
- - uid: 14996
- components:
- - type: Transform
- pos: 28.5,59.5
- parent: 2
- - type: NavMapBeacon
- text: Мусорка
- - type: WarpPoint
- location: Мусоросброс
-- proto: DefaultStationBeaconDorms
- entities:
- - uid: 14997
- components:
- - type: Transform
- pos: 48.5,-19.5
- parent: 2
- - type: NavMapBeacon
- text: Дормы
- - type: WarpPoint
- location: Дормы - Дормы
-- proto: DefaultStationBeaconEngineering
- entities:
- - uid: 14998
- components:
- - type: Transform
- pos: -53.5,11.5
- parent: 2
- - type: NavMapBeacon
- text: Инженерный отдел
- - type: WarpPoint
- location: Инженерный отдел
-- proto: DefaultStationBeaconEvac
- entities:
- - uid: 14999
- components:
- - type: Transform
- pos: -4.5,-72.5
- parent: 2
- - type: NavMapBeacon
- text: Отбытие
- - type: WarpPoint
- location: Отбытие
-- proto: DefaultStationBeaconEVAStorage
- entities:
- - uid: 15000
- components:
- - type: Transform
- pos: -11.5,-13.5
- parent: 2
- - type: NavMapBeacon
- text: Хранилище EVA
- - type: WarpPoint
- location: Командование - Хранение EVA
-- proto: DefaultStationBeaconGravGen
- entities:
- - uid: 15001
- components:
- - type: Transform
- pos: -71.5,7.5
- parent: 2
- - type: NavMapBeacon
- text: Генератор гравитации
- - type: WarpPoint
- location: Инженерный - Гравитационный генератор
-- proto: DefaultStationBeaconHOPOffice
- entities:
- - uid: 15002
- components:
- - type: Transform
- pos: -10.5,1.5
- parent: 2
- - type: NavMapBeacon
- text: ГП
- - type: WarpPoint
- location: Мостик - Глава персонала
-- proto: DefaultStationBeaconHOSRoom
- entities:
- - uid: 15003
- components:
- - type: Transform
- pos: 40.5,20.5
- parent: 2
- - type: NavMapBeacon
- text: ГСБ
- - type: WarpPoint
- location: Сб - кабинет ГСБ
-- proto: DefaultStationBeaconJanitorsCloset
- entities:
- - uid: 15004
- components:
- - type: Transform
- pos: 1.5,52.5
- parent: 2
-- proto: DefaultStationBeaconKitchen
- entities:
- - uid: 15005
- components:
- - type: Transform
- pos: -30.5,35.5
- parent: 2
- - type: NavMapBeacon
- text: Кухня
- - type: WarpPoint
- location: Сервис - Кухня
-- proto: DefaultStationBeaconLawOffice
- entities:
- - uid: 15006
- components:
- - type: Transform
- pos: 35.5,0.5
- parent: 2
- - type: NavMapBeacon
- text: АВД
- - type: WarpPoint
- location: Офис агента внутренних дел
-- proto: DefaultStationBeaconLibrary
- entities:
- - uid: 15007
- components:
- - type: Transform
- pos: -28.5,-3.5
- parent: 2
- - type: NavMapBeacon
- text: Библиотека
- - type: WarpPoint
- location: Библиотека - Центральный зал
-- proto: DefaultStationBeaconMedbay
- entities:
- - uid: 15008
- components:
- - type: Transform
- pos: 8.5,-25.5
- parent: 2
- - type: NavMapBeacon
- text: Медбей
- - type: WarpPoint
- location: Медотсек - Лобби
-- proto: DefaultStationBeaconMorgue
- entities:
- - uid: 15009
- components:
- - type: Transform
- pos: 7.5,-50.5
- parent: 2
- - type: NavMapBeacon
- text: Морг
- - type: WarpPoint
- location: Медотсек - Морг
-- proto: DefaultStationBeaconPermaBrig
- entities:
- - uid: 15010
- components:
- - type: Transform
- pos: 82.5,0.5
- parent: 2
- - type: NavMapBeacon
- text: Пермабриг
- - type: WarpPoint
- location: СБ - перманентная тюрьма
-- proto: DefaultStationBeaconQMRoom
- entities:
- - uid: 15011
- components:
- - type: Transform
- pos: 26.5,36.5
- parent: 2
- - type: NavMapBeacon
- text: КМ
- - type: WarpPoint
- location: Снабжение - Офис квартирмейстер
-- proto: DefaultStationBeaconRDRoom
- entities:
- - uid: 15012
- components:
- - type: Transform
- pos: -18.5,-40.5
- parent: 2
- - type: NavMapBeacon
- text: НР
- - type: WarpPoint
- location: Научный - Офис научного руководителя
-- proto: DefaultStationBeaconSalvage
- entities:
- - uid: 15013
- components:
- - type: Transform
- pos: 23.5,29.5
- parent: 2
- - type: NavMapBeacon
- text: Утилизаторная
- - type: WarpPoint
- location: Карго - утилизаторная
-- proto: DefaultStationBeaconScience
- entities:
- - uid: 15014
- components:
- - type: Transform
- pos: -6.5,-32.5
- parent: 2
- - type: NavMapBeacon
- text: Научный
- - type: WarpPoint
- location: Научный - РНД
-- proto: DefaultStationBeaconSecurityCheckpoint
- entities:
- - uid: 15015
- components:
- - type: Transform
- pos: 6.5,-59.5
- parent: 2
- - type: NavMapBeacon
- text: КПП
- - type: WarpPoint
- location: Отбытие - КПП
- - uid: 15016
- components:
- - type: Transform
- pos: 2.5,63.5
- parent: 2
- - type: NavMapBeacon
- text: КПП
- - type: WarpPoint
- location: Прибытие - Контрольно-пропускной пункт
-- proto: DefaultStationBeaconServerRoom
- entities:
- - uid: 15017
- components:
- - type: Transform
- pos: -19.5,-52.5
- parent: 2
- - type: NavMapBeacon
- text: Серверная
- - type: WarpPoint
- location: Научный - серверная
-- proto: DefaultStationBeaconSolars
- entities:
- - uid: 15018
- components:
- - type: Transform
- pos: 28.5,95.5
- parent: 2
- - type: NavMapBeacon
- text: Соляры
- - type: WarpPoint
- location: Соляры - Северо-восток
- - uid: 15019
- components:
- - type: Transform
- pos: -75.5,73.5
- parent: 2
- - type: NavMapBeacon
- text: Соляры
- - type: WarpPoint
- location: Соляры - Северо-Запад
- - uid: 15020
- components:
- - type: Transform
- pos: -51.5,-85.5
- parent: 2
- - type: NavMapBeacon
- text: Соляры
- - type: WarpPoint
- location: Соляры - Юго-западные
-- proto: DefaultStationBeaconSupply
- entities:
- - uid: 15021
- components:
- - type: Transform
- pos: 6.5,30.5
- parent: 2
- - type: NavMapBeacon
- text: Снабжение
- - type: WarpPoint
- location: Снабжение - Холл
-- proto: DefaultStationBeaconSurgery
- entities:
- - uid: 15022
- components:
- - type: Transform
- pos: 32.5,-48.5
- parent: 2
- - type: NavMapBeacon
- text: Хирургия
- - type: WarpPoint
- location: Медбей - операционная
-- proto: DefaultStationBeaconTEG
- entities:
- - uid: 15023
- components:
- - type: Transform
- pos: -51.5,50.5
- parent: 2
- - type: NavMapBeacon
- text: ТЭГ
- - type: WarpPoint
- location: Атмос ТЭГ
-- proto: DefaultStationBeaconTheater
- entities:
- - uid: 15024
- components:
- - type: Transform
- pos: -12.5,30.5
- parent: 2
-- proto: DefaultStationBeaconToolRoom
- entities:
- - uid: 15025
- components:
- - type: Transform
- pos: -26.5,12.5
- parent: 2
- - type: NavMapBeacon
- text: Инструменты
- - type: WarpPoint
- location: Инженерный - Основное хранилище инструментов
-- proto: DefaultStationBeaconWardensOffice
- entities:
- - uid: 15026
- components:
- - type: Transform
- pos: 53.5,6.5
- parent: 2
- - type: NavMapBeacon
- text: Смотритель
- - type: WarpPoint
- location: СБ - смотритель
-- proto: DefibrillatorCabinetFilled
- entities:
- - uid: 15027
- components:
- - type: Transform
- pos: 27.5,-27.5
- parent: 2
- - uid: 15028
- components:
- - type: Transform
- pos: 62.5,-1.5
- parent: 2
- - uid: 15029
- components:
- - type: Transform
- pos: 37.5,-36.5
- parent: 2
- - uid: 15030
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-63.5
- parent: 2
- - uid: 15031
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-53.5
- parent: 2
- - uid: 15032
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,64.5
- parent: 2
- - uid: 15033
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-15.5
- parent: 2
- - uid: 15034
- components:
- - type: Transform
- pos: -4.5,-56.5
- parent: 2
- - uid: 15035
- components:
- - type: Transform
- pos: 13.5,-41.5
- parent: 2
-- proto: DeployableBarrier
- entities:
- - uid: 15036
- components:
- - type: Transform
- pos: 67.5,6.5
- parent: 2
- - uid: 15037
- components:
- - type: Transform
- pos: 68.5,7.5
- parent: 2
- - uid: 15038
- components:
- - type: Transform
- pos: 70.5,7.5
- parent: 2
- - uid: 15039
- components:
- - type: Transform
- pos: 8.5,-65.5
- parent: 2
- - uid: 15040
- components:
- - type: Transform
- pos: 9.5,-65.5
- parent: 2
- - uid: 15041
- components:
- - type: Transform
- pos: 65.5,6.5
- parent: 2
- - uid: 15042
- components:
- - type: Transform
- pos: 9.5,-64.5
- parent: 2
- - uid: 15043
- components:
- - type: Transform
- pos: 8.5,-63.5
- parent: 2
- - uid: 15044
- components:
- - type: Transform
- pos: 9.5,-63.5
- parent: 2
-- proto: DeskBell
- entities:
- - uid: 15045
- components:
- - type: Transform
- pos: -14.452139,4.661233
- parent: 2
- - uid: 15046
- components:
- - type: Transform
- pos: -27.526104,38.624985
- parent: 2
- - uid: 15047
- components:
- - type: Transform
- pos: -23.478344,51.650402
- parent: 2
- - uid: 15048
- components:
- - type: Transform
- pos: -5.5,-28.5
- parent: 2
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 15049
- components:
- - type: Transform
- pos: 9.476555,32.663494
- parent: 2
-- proto: DiceBag
- entities:
- - uid: 15050
- components:
- - type: Transform
- pos: -67.522575,-35.303078
- parent: 2
- - uid: 15051
- components:
- - type: Transform
- pos: 34.408886,-31.340927
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15052
- components:
- - type: Transform
- pos: -31.629272,-60.51786
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15053
- components:
- - type: Transform
- pos: 84.805466,-0.436963
- parent: 2
-- proto: DiseaseDiagnoser
- entities:
- - uid: 15054
- components:
- - type: Transform
- pos: 29.5,-65.5
- parent: 2
-- proto: DisposalBend
- entities:
- - uid: 15055
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,12.5
- parent: 2
- - uid: 15056
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,14.5
- parent: 2
- - uid: 15057
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,22.5
- parent: 2
- - uid: 15058
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,20.5
- parent: 2
- - uid: 15059
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,22.5
- parent: 2
- - uid: 15060
- components:
- - type: Transform
- pos: 50.5,4.5
- parent: 2
- - uid: 15061
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,20.5
- parent: 2
- - uid: 15062
- components:
- - type: Transform
- pos: -8.5,14.5
- parent: 2
- - uid: 15063
- components:
- - type: Transform
- pos: 61.5,25.5
- parent: 2
- - uid: 15064
- components:
- - type: Transform
- pos: -17.5,-20.5
- parent: 2
- - uid: 15065
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-46.5
- parent: 2
- - uid: 15066
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,25.5
- parent: 2
- - uid: 15067
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-3.5
- parent: 2
- - uid: 15068
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,42.5
- parent: 2
- - uid: 15069
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,47.5
- parent: 2
- - uid: 15070
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-36.5
- parent: 2
- - uid: 15071
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,23.5
- parent: 2
- - uid: 15072
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,27.5
- parent: 2
- - uid: 15073
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-47.5
- parent: 2
- - uid: 15074
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,55.5
- parent: 2
- - uid: 15075
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,38.5
- parent: 2
- - uid: 15076
- components:
- - type: Transform
- pos: -2.5,30.5
- parent: 2
- - uid: 15077
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,30.5
- parent: 2
- - uid: 15078
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-20.5
- parent: 2
- - uid: 15079
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,26.5
- parent: 2
- - uid: 15080
- components:
- - type: Transform
- pos: -24.5,33.5
- parent: 2
- - uid: 15081
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,42.5
- parent: 2
- - uid: 15082
- components:
- - type: Transform
- pos: 1.5,-58.5
- parent: 2
- - uid: 15083
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-80.5
- parent: 2
- - uid: 15084
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,42.5
- parent: 2
- - uid: 15085
- components:
- - type: Transform
- pos: 0.5,48.5
- parent: 2
- - uid: 15086
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-31.5
- parent: 2
- - uid: 15087
- components:
- - type: Transform
- pos: 0.5,26.5
- parent: 2
- - uid: 15088
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-27.5
- parent: 2
- - uid: 15089
- components:
- - type: Transform
- pos: 17.5,-25.5
- parent: 2
- - uid: 15090
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-3.5
- parent: 2
- - uid: 15091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,34.5
- parent: 2
- - uid: 15092
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,47.5
- parent: 2
- - uid: 15093
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-26.5
- parent: 2
- - uid: 15094
- components:
- - type: Transform
- pos: 25.5,61.5
- parent: 2
- - uid: 15095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,57.5
- parent: 2
- - uid: 15096
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,41.5
- parent: 2
- - uid: 15097
- components:
- - type: Transform
- pos: -6.5,-26.5
- parent: 2
- - uid: 15098
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,57.5
- parent: 2
- - uid: 15099
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,52.5
- parent: 2
- - uid: 15100
- components:
- - type: Transform
- pos: -23.5,57.5
- parent: 2
- - uid: 15101
- components:
- - type: Transform
- pos: -53.5,26.5
- parent: 2
- - uid: 15102
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,26.5
- parent: 2
- - uid: 15103
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-19.5
- parent: 2
- - uid: 15104
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-39.5
- parent: 2
- - uid: 15105
- components:
- - type: Transform
- pos: -25.5,17.5
- parent: 2
- - uid: 15106
- components:
- - type: Transform
- pos: 36.5,-73.5
- parent: 2
- - uid: 15107
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,29.5
- parent: 2
- - uid: 15108
- components:
- - type: Transform
- pos: 35.5,-19.5
- parent: 2
- - uid: 15109
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-68.5
- parent: 2
- - uid: 15110
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,5.5
- parent: 2
- - uid: 15111
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-11.5
- parent: 2
- - uid: 15112
- components:
- - type: Transform
- pos: -22.5,-68.5
- parent: 2
- - uid: 15113
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-68.5
- parent: 2
- - uid: 15114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,45.5
- parent: 2
- - uid: 15115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,18.5
- parent: 2
- - uid: 15116
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-13.5
- parent: 2
- - uid: 15117
- components:
- - type: Transform
- pos: -57.5,18.5
- parent: 2
- - uid: 15118
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-13.5
- parent: 2
- - uid: 15119
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,37.5
- parent: 2
- - uid: 15120
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-10.5
- parent: 2
- - uid: 15121
- components:
- - type: Transform
- pos: -18.5,-1.5
- parent: 2
- - uid: 15122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-33.5
- parent: 2
- - uid: 15123
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,-23.5
- parent: 2
- - uid: 15124
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,39.5
- parent: 2
- - uid: 15125
- components:
- - type: Transform
- pos: -29.5,42.5
- parent: 2
- - uid: 15126
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,14.5
- parent: 2
- - uid: 15127
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-61.5
- parent: 2
- - uid: 15128
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,17.5
- parent: 2
- - uid: 15129
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-40.5
- parent: 2
- - uid: 15130
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,38.5
- parent: 2
- - uid: 15131
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-7.5
- parent: 2
- - uid: 15132
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,61.5
- parent: 2
- - uid: 15133
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-23.5
- parent: 2
- - uid: 15134
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-31.5
- parent: 2
- - uid: 15135
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-28.5
- parent: 2
- - uid: 15136
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-73.5
- parent: 2
- - uid: 15137
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-40.5
- parent: 2
- - uid: 15138
- components:
- - type: Transform
- pos: -30.5,23.5
- parent: 2
- - uid: 15139
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,27.5
- parent: 2
- - uid: 15140
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,10.5
- parent: 2
- - uid: 15141
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,57.5
- parent: 2
- - uid: 15142
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,41.5
- parent: 2
- - uid: 15143
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,30.5
- parent: 2
- - uid: 15144
- components:
- - type: Transform
- pos: 43.5,30.5
- parent: 2
- - uid: 15145
- components:
- - type: Transform
- pos: 40.5,-22.5
- parent: 2
- - uid: 15146
- components:
- - type: Transform
- pos: 35.5,-68.5
- parent: 2
- - uid: 15147
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-11.5
- parent: 2
- - uid: 15148
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-19.5
- parent: 2
- - uid: 15149
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,5.5
- parent: 2
- - uid: 15150
- components:
- - type: Transform
- pos: -29.5,-10.5
- parent: 2
- - uid: 15151
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-1.5
- parent: 2
- - uid: 15152
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,36.5
- parent: 2
- - uid: 15153
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,23.5
- parent: 2
- - uid: 15154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-61.5
- parent: 2
- - uid: 15155
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-17.5
- parent: 2
- - uid: 15156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,57.5
- parent: 2
- - uid: 15157
- components:
- - type: Transform
- pos: -35.5,42.5
- parent: 2
- - uid: 15158
- components:
- - type: Transform
- pos: 55.5,-28.5
- parent: 2
- - uid: 15159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-80.5
- parent: 2
- - uid: 15160
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-55.5
- parent: 2
- - uid: 15161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-1.5
- parent: 2
- - uid: 15162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-14.5
- parent: 2
- - uid: 15163
- components:
- - type: Transform
- pos: -22.5,-19.5
- parent: 2
- - uid: 15164
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-17.5
- parent: 2
- - uid: 15165
- components:
- - type: Transform
- pos: -27.5,-14.5
- parent: 2
- - uid: 15166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,55.5
- parent: 2
- - uid: 15167
- components:
- - type: Transform
- pos: -18.5,22.5
- parent: 2
- - uid: 15168
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-81.5
- parent: 2
- - uid: 15169
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-80.5
- parent: 2
- - uid: 15170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-80.5
- parent: 2
- - uid: 15171
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,39.5
- parent: 2
- - uid: 15172
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,45.5
- parent: 2
- - uid: 15173
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,14.5
- parent: 2
- - uid: 15174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,2.5
- parent: 2
- - uid: 15175
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,2.5
- parent: 2
- - uid: 15176
- components:
- - type: Transform
- pos: 17.5,23.5
- parent: 2
- - uid: 15177
- components:
- - type: Transform
- pos: 0.5,-63.5
- parent: 2
- - uid: 15178
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-57.5
- parent: 2
- - uid: 15179
- components:
- - type: Transform
- pos: 2.5,-50.5
- parent: 2
- - uid: 15180
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-50.5
- parent: 2
- - uid: 15181
- components:
- - type: Transform
- pos: -31.5,53.5
- parent: 2
- - uid: 15182
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-64.5
- parent: 2
- - uid: 15183
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-63.5
- parent: 2
- - uid: 15184
- components:
- - type: Transform
- pos: -52.5,10.5
- parent: 2
-- proto: DisposalJunction
- entities:
- - uid: 15185
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-7.5
- parent: 2
- - uid: 15186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,37.5
- parent: 2
- - uid: 15187
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-19.5
- parent: 2
- - uid: 15188
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,20.5
- parent: 2
- - uid: 15189
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-3.5
- parent: 2
- - uid: 15190
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,20.5
- parent: 2
- - uid: 15191
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,61.5
- parent: 2
- - uid: 15192
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-25.5
- parent: 2
- - uid: 15193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-33.5
- parent: 2
- - uid: 15194
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-49.5
- parent: 2
- - uid: 15195
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,57.5
- parent: 2
- - uid: 15196
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-58.5
- parent: 2
- - uid: 15197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,14.5
- parent: 2
- - uid: 15198
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-53.5
- parent: 2
- - uid: 15199
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,57.5
- parent: 2
- - uid: 15200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-22.5
- parent: 2
- - uid: 15201
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,47.5
- parent: 2
- - uid: 15202
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,17.5
- parent: 2
- - uid: 15203
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,5.5
- parent: 2
- - uid: 15204
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,33.5
- parent: 2
- - uid: 15205
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,36.5
- parent: 2
- - uid: 15206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-1.5
- parent: 2
- - uid: 15207
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,57.5
- parent: 2
- - uid: 15208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-10.5
- parent: 2
- - uid: 15209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-10.5
- parent: 2
- - uid: 15210
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,10.5
- parent: 2
- - uid: 15211
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-3.5
- parent: 2
- - uid: 15212
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-10.5
- parent: 2
- - uid: 15213
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,5.5
- parent: 2
- - uid: 15214
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,57.5
- parent: 2
- - uid: 15215
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-33.5
- parent: 2
-- proto: DisposalJunctionFlipped
- entities:
- - uid: 15216
- components:
- - type: Transform
- pos: 47.5,12.5
- parent: 2
- - uid: 15217
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-36.5
- parent: 2
- - uid: 15218
- components:
- - type: Transform
- pos: 47.5,4.5
- parent: 2
- - uid: 15219
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,36.5
- parent: 2
- - uid: 15220
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,42.5
- parent: 2
- - uid: 15221
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-44.5
- parent: 2
- - uid: 15222
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,14.5
- parent: 2
- - uid: 15223
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-33.5
- parent: 2
- - uid: 15224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,36.5
- parent: 2
- - uid: 15225
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-25.5
- parent: 2
- - uid: 15226
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-39.5
- parent: 2
- - uid: 15227
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,57.5
- parent: 2
- - uid: 15228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,34.5
- parent: 2
- - uid: 15229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,30.5
- parent: 2
- - uid: 15230
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,17.5
- parent: 2
- - uid: 15231
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,14.5
- parent: 2
- - uid: 15232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-22.5
- parent: 2
- - uid: 15233
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,37.5
- parent: 2
- - uid: 15234
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-64.5
- parent: 2
-- proto: DisposalPipe
- entities:
- - uid: 15235
- components:
- - type: Transform
- pos: 47.5,14.5
- parent: 2
- - uid: 15236
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-10.5
- parent: 2
- - uid: 15237
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-11.5
- parent: 2
- - uid: 15238
- components:
- - type: Transform
- pos: 47.5,1.5
- parent: 2
- - uid: 15239
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,14.5
- parent: 2
- - uid: 15240
- components:
- - type: Transform
- pos: 47.5,7.5
- parent: 2
- - uid: 15241
- components:
- - type: Transform
- pos: 43.5,19.5
- parent: 2
- - uid: 15242
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,22.5
- parent: 2
- - uid: 15243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-14.5
- parent: 2
- - uid: 15244
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-9.5
- parent: 2
- - uid: 15245
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,42.5
- parent: 2
- - uid: 15246
- components:
- - type: Transform
- pos: 47.5,8.5
- parent: 2
- - uid: 15247
- components:
- - type: Transform
- pos: 47.5,11.5
- parent: 2
- - uid: 15248
- components:
- - type: Transform
- pos: 47.5,13.5
- parent: 2
- - uid: 15249
- components:
- - type: Transform
- pos: 47.5,5.5
- parent: 2
- - uid: 15250
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,43.5
- parent: 2
- - uid: 15251
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,44.5
- parent: 2
- - uid: 15252
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,37.5
- parent: 2
- - uid: 15253
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-8.5
- parent: 2
- - uid: 15254
- components:
- - type: Transform
- pos: 47.5,9.5
- parent: 2
- - uid: 15255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,12.5
- parent: 2
- - uid: 15256
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,37.5
- parent: 2
- - uid: 15257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,22.5
- parent: 2
- - uid: 15258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,22.5
- parent: 2
- - uid: 15259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,22.5
- parent: 2
- - uid: 15260
- components:
- - type: Transform
- pos: -9.5,29.5
- parent: 2
- - uid: 15261
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,22.5
- parent: 2
- - uid: 15262
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,40.5
- parent: 2
- - uid: 15263
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,37.5
- parent: 2
- - uid: 15264
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,5.5
- parent: 2
- - uid: 15265
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-49.5
- parent: 2
- - uid: 15266
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,5.5
- parent: 2
- - uid: 15267
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,36.5
- parent: 2
- - uid: 15268
- components:
- - type: Transform
- pos: -31.5,46.5
- parent: 2
- - uid: 15269
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,37.5
- parent: 2
- - uid: 15270
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,5.5
- parent: 2
- - uid: 15271
- components:
- - type: Transform
- pos: 47.5,10.5
- parent: 2
- - uid: 15272
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,37.5
- parent: 2
- - uid: 15273
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-49.5
- parent: 2
- - uid: 15274
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-49.5
- parent: 2
- - uid: 15275
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,5.5
- parent: 2
- - uid: 15276
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,5.5
- parent: 2
- - uid: 15277
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,5.5
- parent: 2
- - uid: 15278
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,5.5
- parent: 2
- - uid: 15279
- components:
- - type: Transform
- pos: 47.5,17.5
- parent: 2
- - uid: 15280
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-17.5
- parent: 2
- - uid: 15281
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,20.5
- parent: 2
- - uid: 15282
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-19.5
- parent: 2
- - uid: 15283
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-18.5
- parent: 2
- - uid: 15284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,12.5
- parent: 2
- - uid: 15285
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,20.5
- parent: 2
- - uid: 15286
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,37.5
- parent: 2
- - uid: 15287
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,43.5
- parent: 2
- - uid: 15288
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,17.5
- parent: 2
- - uid: 15289
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,16.5
- parent: 2
- - uid: 15290
- components:
- - type: Transform
- pos: 47.5,18.5
- parent: 2
- - uid: 15291
- components:
- - type: Transform
- pos: 47.5,0.5
- parent: 2
- - uid: 15292
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-15.5
- parent: 2
- - uid: 15293
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-0.5
- parent: 2
- - uid: 15294
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-12.5
- parent: 2
- - uid: 15295
- components:
- - type: Transform
- pos: 47.5,19.5
- parent: 2
- - uid: 15296
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,5.5
- parent: 2
- - uid: 15297
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-20.5
- parent: 2
- - uid: 15298
- components:
- - type: Transform
- pos: 47.5,15.5
- parent: 2
- - uid: 15299
- components:
- - type: Transform
- pos: 47.5,6.5
- parent: 2
- - uid: 15300
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-49.5
- parent: 2
- - uid: 15301
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,19.5
- parent: 2
- - uid: 15302
- components:
- - type: Transform
- pos: -31.5,44.5
- parent: 2
- - uid: 15303
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,41.5
- parent: 2
- - uid: 15304
- components:
- - type: Transform
- pos: -31.5,45.5
- parent: 2
- - uid: 15305
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,4.5
- parent: 2
- - uid: 15306
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,14.5
- parent: 2
- - uid: 15307
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-49.5
- parent: 2
- - uid: 15308
- components:
- - type: Transform
- pos: 47.5,3.5
- parent: 2
- - uid: 15309
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-13.5
- parent: 2
- - uid: 15310
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-16.5
- parent: 2
- - uid: 15311
- components:
- - type: Transform
- pos: -31.5,47.5
- parent: 2
- - uid: 15312
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,14.5
- parent: 2
- - uid: 15313
- components:
- - type: Transform
- pos: -24.5,-43.5
- parent: 2
- - uid: 15314
- components:
- - type: Transform
- pos: 59.5,24.5
- parent: 2
- - uid: 15315
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,41.5
- parent: 2
- - uid: 15316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-1.5
- parent: 2
- - uid: 15317
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-2.5
- parent: 2
- - uid: 15318
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,4.5
- parent: 2
- - uid: 15319
- components:
- - type: Transform
- pos: 47.5,16.5
- parent: 2
- - uid: 15320
- components:
- - type: Transform
- pos: 43.5,18.5
- parent: 2
- - uid: 15321
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,30.5
- parent: 2
- - uid: 15322
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,18.5
- parent: 2
- - uid: 15323
- components:
- - type: Transform
- pos: 47.5,2.5
- parent: 2
- - uid: 15324
- components:
- - type: Transform
- pos: -31.5,48.5
- parent: 2
- - uid: 15325
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-34.5
- parent: 2
- - uid: 15326
- components:
- - type: Transform
- pos: 59.5,23.5
- parent: 2
- - uid: 15327
- components:
- - type: Transform
- pos: -41.5,45.5
- parent: 2
- - uid: 15328
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-22.5
- parent: 2
- - uid: 15329
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,23.5
- parent: 2
- - uid: 15330
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-55.5
- parent: 2
- - uid: 15331
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-28.5
- parent: 2
- - uid: 15332
- components:
- - type: Transform
- pos: -30.5,16.5
- parent: 2
- - uid: 15333
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,53.5
- parent: 2
- - uid: 15334
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,54.5
- parent: 2
- - uid: 15335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,1.5
- parent: 2
- - uid: 15336
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-3.5
- parent: 2
- - uid: 15337
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,38.5
- parent: 2
- - uid: 15338
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,48.5
- parent: 2
- - uid: 15339
- components:
- - type: Transform
- pos: 9.5,58.5
- parent: 2
- - uid: 15340
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-69.5
- parent: 2
- - uid: 15341
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,61.5
- parent: 2
- - uid: 15342
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-51.5
- parent: 2
- - uid: 15343
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-51.5
- parent: 2
- - uid: 15344
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-35.5
- parent: 2
- - uid: 15345
- components:
- - type: Transform
- pos: -27.5,60.5
- parent: 2
- - uid: 15346
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,10.5
- parent: 2
- - uid: 15347
- components:
- - type: Transform
- pos: -8.5,-30.5
- parent: 2
- - uid: 15348
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,22.5
- parent: 2
- - uid: 15349
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,23.5
- parent: 2
- - uid: 15350
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,14.5
- parent: 2
- - uid: 15351
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-68.5
- parent: 2
- - uid: 15352
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,14.5
- parent: 2
- - uid: 15353
- components:
- - type: Transform
- pos: -8.5,-29.5
- parent: 2
- - uid: 15354
- components:
- - type: Transform
- pos: -45.5,22.5
- parent: 2
- - uid: 15355
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,42.5
- parent: 2
- - uid: 15356
- components:
- - type: Transform
- pos: -30.5,13.5
- parent: 2
- - uid: 15357
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-28.5
- parent: 2
- - uid: 15358
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-10.5
- parent: 2
- - uid: 15359
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,40.5
- parent: 2
- - uid: 15360
- components:
- - type: Transform
- pos: -41.5,47.5
- parent: 2
- - uid: 15361
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,22.5
- parent: 2
- - uid: 15362
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,57.5
- parent: 2
- - uid: 15363
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,35.5
- parent: 2
- - uid: 15364
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,23.5
- parent: 2
- - uid: 15365
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-40.5
- parent: 2
- - uid: 15366
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-60.5
- parent: 2
- - uid: 15367
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-59.5
- parent: 2
- - uid: 15368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-39.5
- parent: 2
- - uid: 15369
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,23.5
- parent: 2
- - uid: 15370
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,56.5
- parent: 2
- - uid: 15371
- components:
- - type: Transform
- pos: -9.5,-31.5
- parent: 2
- - uid: 15372
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,42.5
- parent: 2
- - uid: 15373
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,55.5
- parent: 2
- - uid: 15374
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-55.5
- parent: 2
- - uid: 15375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-7.5
- parent: 2
- - uid: 15376
- components:
- - type: Transform
- pos: -9.5,28.5
- parent: 2
- - uid: 15377
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,14.5
- parent: 2
- - uid: 15378
- components:
- - type: Transform
- pos: -9.5,27.5
- parent: 2
- - uid: 15379
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,57.5
- parent: 2
- - uid: 15380
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,30.5
- parent: 2
- - uid: 15381
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,30.5
- parent: 2
- - uid: 15382
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,30.5
- parent: 2
- - uid: 15383
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,14.5
- parent: 2
- - uid: 15384
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,56.5
- parent: 2
- - uid: 15385
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-55.5
- parent: 2
- - uid: 15386
- components:
- - type: Transform
- pos: 50.5,21.5
- parent: 2
- - uid: 15387
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-36.5
- parent: 2
- - uid: 15388
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,5.5
- parent: 2
- - uid: 15389
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-48.5
- parent: 2
- - uid: 15390
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-49.5
- parent: 2
- - uid: 15391
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-49.5
- parent: 2
- - uid: 15392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-28.5
- parent: 2
- - uid: 15393
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-50.5
- parent: 2
- - uid: 15394
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,33.5
- parent: 2
- - uid: 15395
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-1.5
- parent: 2
- - uid: 15396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-55.5
- parent: 2
- - uid: 15397
- components:
- - type: Transform
- pos: 37.5,-0.5
- parent: 2
- - uid: 15398
- components:
- - type: Transform
- pos: -30.5,12.5
- parent: 2
- - uid: 15399
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-28.5
- parent: 2
- - uid: 15400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,23.5
- parent: 2
- - uid: 15401
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,23.5
- parent: 2
- - uid: 15402
- components:
- - type: Transform
- pos: -11.5,-6.5
- parent: 2
- - uid: 15403
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,49.5
- parent: 2
- - uid: 15404
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-1.5
- parent: 2
- - uid: 15405
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,29.5
- parent: 2
- - uid: 15406
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,23.5
- parent: 2
- - uid: 15407
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,41.5
- parent: 2
- - uid: 15408
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,31.5
- parent: 2
- - uid: 15409
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,33.5
- parent: 2
- - uid: 15410
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,33.5
- parent: 2
- - uid: 15411
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-49.5
- parent: 2
- - uid: 15412
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,23.5
- parent: 2
- - uid: 15413
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,41.5
- parent: 2
- - uid: 15414
- components:
- - type: Transform
- pos: -30.5,10.5
- parent: 2
- - uid: 15415
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-28.5
- parent: 2
- - uid: 15416
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-30.5
- parent: 2
- - uid: 15417
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-8.5
- parent: 2
- - uid: 15418
- components:
- - type: Transform
- pos: -24.5,-46.5
- parent: 2
- - uid: 15419
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,41.5
- parent: 2
- - uid: 15420
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-33.5
- parent: 2
- - uid: 15421
- components:
- - type: Transform
- pos: -24.5,-45.5
- parent: 2
- - uid: 15422
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-49.5
- parent: 2
- - uid: 15423
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,36.5
- parent: 2
- - uid: 15424
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,54.5
- parent: 2
- - uid: 15425
- components:
- - type: Transform
- pos: -42.5,-30.5
- parent: 2
- - uid: 15426
- components:
- - type: Transform
- pos: -38.5,-30.5
- parent: 2
- - uid: 15427
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,32.5
- parent: 2
- - uid: 15428
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,30.5
- parent: 2
- - uid: 15429
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,20.5
- parent: 2
- - uid: 15430
- components:
- - type: Transform
- pos: -27.5,-16.5
- parent: 2
- - uid: 15431
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-0.5
- parent: 2
- - uid: 15432
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,14.5
- parent: 2
- - uid: 15433
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,22.5
- parent: 2
- - uid: 15434
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,22.5
- parent: 2
- - uid: 15435
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,50.5
- parent: 2
- - uid: 15436
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-28.5
- parent: 2
- - uid: 15437
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-44.5
- parent: 2
- - uid: 15438
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-1.5
- parent: 2
- - uid: 15439
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,23.5
- parent: 2
- - uid: 15440
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,42.5
- parent: 2
- - uid: 15441
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,57.5
- parent: 2
- - uid: 15442
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,36.5
- parent: 2
- - uid: 15443
- components:
- - type: Transform
- pos: 21.5,8.5
- parent: 2
- - uid: 15444
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,4.5
- parent: 2
- - uid: 15445
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-3.5
- parent: 2
- - uid: 15446
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,14.5
- parent: 2
- - uid: 15447
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,48.5
- parent: 2
- - uid: 15448
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,61.5
- parent: 2
- - uid: 15449
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-27.5
- parent: 2
- - uid: 15450
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-43.5
- parent: 2
- - uid: 15451
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,23.5
- parent: 2
- - uid: 15452
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,57.5
- parent: 2
- - uid: 15453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,36.5
- parent: 2
- - uid: 15454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,23.5
- parent: 2
- - uid: 15455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-19.5
- parent: 2
- - uid: 15456
- components:
- - type: Transform
- pos: -9.5,-60.5
- parent: 2
- - uid: 15457
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-1.5
- parent: 2
- - uid: 15458
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-1.5
- parent: 2
- - uid: 15459
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,5.5
- parent: 2
- - uid: 15460
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-26.5
- parent: 2
- - uid: 15461
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,16.5
- parent: 2
- - uid: 15462
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,57.5
- parent: 2
- - uid: 15463
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,58.5
- parent: 2
- - uid: 15464
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-25.5
- parent: 2
- - uid: 15465
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-22.5
- parent: 2
- - uid: 15466
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,26.5
- parent: 2
- - uid: 15467
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-19.5
- parent: 2
- - uid: 15468
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-55.5
- parent: 2
- - uid: 15469
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-55.5
- parent: 2
- - uid: 15470
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-1.5
- parent: 2
- - uid: 15471
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-19.5
- parent: 2
- - uid: 15472
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-25.5
- parent: 2
- - uid: 15473
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,5.5
- parent: 2
- - uid: 15474
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-15.5
- parent: 2
- - uid: 15475
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,5.5
- parent: 2
- - uid: 15476
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-61.5
- parent: 2
- - uid: 15477
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-23.5
- parent: 2
- - uid: 15478
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,5.5
- parent: 2
- - uid: 15479
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-10.5
- parent: 2
- - uid: 15480
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-36.5
- parent: 2
- - uid: 15481
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,-22.5
- parent: 2
- - uid: 15482
- components:
- - type: Transform
- pos: -9.5,-59.5
- parent: 2
- - uid: 15483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-19.5
- parent: 2
- - uid: 15484
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-7.5
- parent: 2
- - uid: 15485
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-10.5
- parent: 2
- - uid: 15486
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-55.5
- parent: 2
- - uid: 15487
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-13.5
- parent: 2
- - uid: 15488
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-34.5
- parent: 2
- - uid: 15489
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-57.5
- parent: 2
- - uid: 15490
- components:
- - type: Transform
- pos: -27.5,-15.5
- parent: 2
- - uid: 15491
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,36.5
- parent: 2
- - uid: 15492
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,10.5
- parent: 2
- - uid: 15493
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-56.5
- parent: 2
- - uid: 15494
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-26.5
- parent: 2
- - uid: 15495
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-19.5
- parent: 2
- - uid: 15496
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,57.5
- parent: 2
- - uid: 15497
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,5.5
- parent: 2
- - uid: 15498
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-17.5
- parent: 2
- - uid: 15499
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,35.5
- parent: 2
- - uid: 15500
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,16.5
- parent: 2
- - uid: 15501
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-74.5
- parent: 2
- - uid: 15502
- components:
- - type: Transform
- pos: -45.5,21.5
- parent: 2
- - uid: 15503
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,55.5
- parent: 2
- - uid: 15504
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-12.5
- parent: 2
- - uid: 15505
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-19.5
- parent: 2
- - uid: 15506
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,6.5
- parent: 2
- - uid: 15507
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-19.5
- parent: 2
- - uid: 15508
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-5.5
- parent: 2
- - uid: 15509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-61.5
- parent: 2
- - uid: 15510
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-25.5
- parent: 2
- - uid: 15511
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,26.5
- parent: 2
- - uid: 15512
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-10.5
- parent: 2
- - uid: 15513
- components:
- - type: Transform
- pos: -41.5,50.5
- parent: 2
- - uid: 15514
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,34.5
- parent: 2
- - uid: 15515
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-28.5
- parent: 2
- - uid: 15516
- components:
- - type: Transform
- pos: -30.5,22.5
- parent: 2
- - uid: 15517
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-32.5
- parent: 2
- - uid: 15518
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,42.5
- parent: 2
- - uid: 15519
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,58.5
- parent: 2
- - uid: 15520
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,11.5
- parent: 2
- - uid: 15521
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-1.5
- parent: 2
- - uid: 15522
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-31.5
- parent: 2
- - uid: 15523
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,57.5
- parent: 2
- - uid: 15524
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-34.5
- parent: 2
- - uid: 15525
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,36.5
- parent: 2
- - uid: 15526
-=======
- pos: 22.5,-45.5
- parent: 2
- - uid: 14242
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-68.5
- parent: 2
- - uid: 14243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-42.5
- parent: 2
- - uid: 14244
- components:
- - type: Transform
- pos: -17.5,-40.5
- parent: 2
- - uid: 14245
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-29.5
- parent: 2
- - uid: 14246
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-47.5
- parent: 2
- - uid: 14247
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,31.5
- parent: 2
- - uid: 14248
- components:
- - type: Transform
- pos: 3.5,-15.5
- parent: 2
- - uid: 14249
- components:
- - type: Transform
- pos: -18.5,-40.5
- parent: 2
- - uid: 14250
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,8.5
- parent: 2
- - uid: 14251
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 80.5,-19.5
- parent: 2
- - uid: 14252
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-60.5
- parent: 2
- - uid: 14253
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,8.5
- parent: 2
- - uid: 14254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-29.5
- parent: 2
- - uid: 14255
- components:
- - type: Transform
- pos: -24.5,50.5
- parent: 2
- - uid: 14256
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,52.5
- parent: 2
- - uid: 14257
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-49.5
- parent: 2
- - uid: 14258
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-34.5
- parent: 2
- - uid: 14259
- components:
- - type: Transform
- pos: 23.5,-45.5
- parent: 2
- - uid: 14260
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-34.5
- parent: 2
- - uid: 14261
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-44.5
- parent: 2
- - uid: 14262
- components:
- - type: Transform
- pos: 41.5,-73.5
- parent: 2
- - uid: 14263
- components:
- - type: Transform
- pos: 35.5,-40.5
- parent: 2
- - uid: 14264
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-40.5
- parent: 2
- - uid: 14265
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-38.5
- parent: 2
- - uid: 14266
- components:
- - type: Transform
- pos: 39.5,-73.5
- parent: 2
- - uid: 14267
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-44.5
- parent: 2
- - uid: 14268
- components:
- - type: Transform
- pos: -28.5,46.5
- parent: 2
- - uid: 14269
- components:
- - type: Transform
- pos: -26.5,46.5
- parent: 2
- - uid: 14270
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 96.438934,13.171649
- parent: 2
- - uid: 14271
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 80.04495,-1.9447366
- parent: 2
- - uid: 14272
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 84.0137,-1.9447374
- parent: 2
- - uid: 14273
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 87.99808,-1.8978634
- parent: 2
- - uid: 14274
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: -58.24252,-44.004616
- parent: 2
- - uid: 14275
- components:
- - type: Transform
- pos: 57.26572,30.393097
- parent: 2
- - uid: 14276
- components:
- - type: Transform
- pos: 51.961086,30.41755
- parent: 2
-- proto: ChairPilotSeat
- entities:
- - uid: 38279
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,3.5
- parent: 38244
- - uid: 38280
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 38244
- - uid: 38281
- components:
- - type: Transform
- pos: 2.5,1.5
- parent: 38244
- - uid: 38282
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 38244
- - uid: 38283
- components:
- - type: Transform
- pos: -0.5,1.5
- parent: 38244
- - uid: 38848
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,19.5
- parent: 38344
-- proto: ChairRitual
- entities:
- - uid: 14277
- components:
- - type: Transform
- pos: -34.286114,-74.28132
- parent: 2
- - uid: 14278
- components:
- - type: Transform
- pos: -30.66586,-73.92663
- parent: 2
- - uid: 14279
- components:
- - type: Transform
- pos: -33.063053,-73.93886
- parent: 2
- - uid: 14280
- components:
- - type: Transform
- pos: -33.686817,-73.278404
- parent: 2
- - uid: 14281
- components:
- - type: Transform
- pos: -31.791075,-74.41585
- parent: 2
- - uid: 14282
- components:
- - type: Transform
- pos: -31.411924,-73.327324
- parent: 2
-- proto: ChairWood
- entities:
- - uid: 14283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.8492327,53.653503
- parent: 2
- - uid: 14284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.8965049,45.78206
- parent: 2
- - uid: 14285
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,44.5
- parent: 2
- - uid: 14286
- components:
- - type: Transform
- pos: -18.5,-70.5
- parent: 2
- - uid: 14287
- components:
- - type: Transform
- pos: -15.5,-68.5
- parent: 2
- - uid: 14288
- components:
- - type: Transform
- pos: -17.5,-68.5
- parent: 2
- - uid: 14289
- components:
- - type: Transform
- pos: -18.5,-68.5
- parent: 2
- - uid: 14290
- components:
- - type: Transform
- pos: -20.5,-69.5
- parent: 2
- - uid: 14291
- components:
- - type: Transform
- pos: -19.5,-69.5
- parent: 2
- - uid: 14292
- components:
- - type: Transform
- pos: -19.5,-68.5
- parent: 2
- - uid: 14293
- components:
- - type: Transform
- pos: -20.5,-68.5
- parent: 2
- - uid: 14294
- components:
- - type: Transform
- pos: -18.5,-69.5
- parent: 2
- - uid: 14295
- components:
- - type: Transform
- pos: -17.5,-69.5
- parent: 2
- - uid: 14296
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-52.5
- parent: 2
- - uid: 14297
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-53.5
- parent: 2
- - uid: 14298
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,44.5
- parent: 2
- - uid: 14299
- components:
- - type: Transform
- pos: -12.5,-68.5
- parent: 2
- - uid: 14300
- components:
- - type: Transform
- pos: -13.5,-70.5
- parent: 2
- - uid: 14301
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.563258,46.649433
- parent: 2
- - uid: 14302
- components:
- - type: Transform
- pos: -19.5,-70.5
- parent: 2
- - uid: 14303
- components:
- - type: Transform
- pos: -13.5,-68.5
- parent: 2
- - uid: 14304
- components:
- - type: Transform
- pos: -14.5,-69.5
- parent: 2
- - uid: 14305
- components:
- - type: Transform
- pos: -3.4907331,42.184048
- parent: 2
- - uid: 14306
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.563247,36.74413
- parent: 2
- - uid: 14307
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-7.5
- parent: 2
- - uid: 14308
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-8.5
- parent: 2
- - uid: 14309
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.485122,38.76386
- parent: 2
- - uid: 14310
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.500747,36.759758
- parent: 2
- - uid: 14311
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.500759,46.665062
- parent: 2
- - uid: 14312
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.453872,38.748238
- parent: 2
- - uid: 14313
- components:
- - type: Transform
- pos: -15.5,-69.5
- parent: 2
- - uid: 14314
- components:
- - type: Transform
- pos: -12.5,-69.5
- parent: 2
- - uid: 14315
- components:
- - type: Transform
- pos: -14.5,-70.5
- parent: 2
- - uid: 14316
- components:
- - type: Transform
- pos: -12.5,-70.5
- parent: 2
- - uid: 14317
- components:
- - type: Transform
- pos: -14.5,-68.5
- parent: 2
- - uid: 14318
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-51.5
- parent: 2
- - uid: 14319
- components:
- - type: Transform
- pos: -13.5,-69.5
- parent: 2
- - uid: 14320
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-7.5
- parent: 2
- - uid: 14321
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-8.5
- parent: 2
- - uid: 14322
- components:
- - type: Transform
- pos: -28.5,-7.5
- parent: 2
- - uid: 14323
- components:
- - type: Transform
- pos: -122.5,33.5
- parent: 2
- - uid: 14324
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -122.5,31.5
- parent: 2
- - uid: 14325
- components:
- - type: Transform
- pos: -20.5,-70.5
- parent: 2
- - uid: 14326
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,27.5
- parent: 2
- - uid: 14327
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,28.5
- parent: 2
- - uid: 38849
- components:
- - type: Transform
- pos: -14.365667,-4.690674
- parent: 38344
- - uid: 38850
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.350042,-5.300049
- parent: 38344
- - uid: 38851
- components:
- - type: Transform
- pos: -13.709417,-4.721924
- parent: 38344
- - uid: 38852
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.740667,-5.331299
- parent: 38344
- - uid: 38853
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.662542,-5.909424
- parent: 38344
- - uid: 38854
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.396917,-5.971924
- parent: 38344
-- proto: CheapLighter
- entities:
- - uid: 14328
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -74.0946,-35.44862
- parent: 2
- - uid: 38855
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.610121,5.726898
- parent: 38344
- - uid: 38856
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.531996,5.492523
- parent: 38344
-- proto: CheapRollerBed
- entities:
- - uid: 14329
- components:
- - type: Transform
- pos: 2.5292196,-49.44199
- parent: 2
- - uid: 14330
- components:
- - type: Transform
- pos: 45.5,-30.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14331
- components:
- - type: Transform
- pos: 33.5,-41.5
- parent: 2
- - uid: 14332
- components:
- - type: Transform
- pos: 47.5,-30.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14333
- components:
- - type: Transform
- pos: 18.524715,-23.354324
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14334
- components:
- - type: Transform
- pos: 17.493465,-23.354118
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14335
- components:
- - type: Transform
- pos: 2.5268502,-40.29957
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14336
- components:
- - type: Transform
- pos: 6.5348835,-13.351544
- parent: 2
-- proto: CheapRollerBedSpawnFolded
- entities:
- - uid: 14337
- components:
- - type: Transform
- pos: 24.247139,-26.420021
- parent: 2
- - uid: 14338
- components:
- - type: Transform
- pos: 24.262762,-27.091896
- parent: 2
-- proto: ChemDispenser
- entities:
- - uid: 14339
- components:
- - type: Transform
- pos: 3.5,-33.5
- parent: 2
- - type: ContainerContainer
- containers:
- ReagentDispenser-beaker: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- beakerSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14340
- components:
- - type: Transform
- pos: 6.5,-29.5
- parent: 2
- - type: ContainerContainer
- containers:
- ReagentDispenser-beaker: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- beakerSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: ChemicalPayload
- entities:
- - uid: 14341
- components:
- - type: Transform
- pos: -6.654764,-46.34208
- parent: 2
- - uid: 14342
- components:
- - type: Transform
- pos: 2.7165446,-30.750381
- parent: 2
- - uid: 14343
- components:
- - type: Transform
- pos: 2.7165446,-30.750381
- parent: 2
- - uid: 14344
- components:
- - type: Transform
- pos: 2.7165446,-30.750381
- parent: 2
-- proto: ChemistryHotplate
- entities:
- - uid: 14345
- components:
- - type: Transform
- pos: -22.5,-14.5
- parent: 2
- - uid: 14346
- components:
- - type: Transform
- pos: 4.5,-33.5
- parent: 2
-- proto: ChemMaster
- entities:
- - uid: 14347
- components:
- - type: Transform
- pos: 4.5,-29.5
- parent: 2
- - type: ContainerContainer
- containers:
- ChemMaster-beaker: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- beakerSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- outputSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14348
- components:
- - type: Transform
- pos: 3.5,-35.5
- parent: 2
- - type: ContainerContainer
- containers:
- ChemMaster-beaker: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- beakerSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- outputSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14349
- components:
- - type: Transform
- pos: -32.5,45.5
- parent: 2
-- proto: ChessBoard
- entities:
- - uid: 14350
- components:
- - type: Transform
- pos: -31.521072,68.62613
- parent: 2
- - uid: 14351
- components:
- - type: Transform
- pos: -31.999136,-13.284749
- parent: 2
- - uid: 14352
- components:
- - type: Transform
- pos: 40.47708,-0.39684796
- parent: 2
- - uid: 14353
- components:
- - type: Transform
- pos: 40.47705,13.567584
- parent: 2
- - uid: 14354
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.540379,-77.35887
- parent: 2
- - uid: 14355
- components:
- - type: Transform
- pos: 63.66099,-25.833206
- parent: 2
-- proto: CigarCase
- entities:
- - uid: 14356
- components:
- - type: Transform
- pos: 36.502167,-9.505364
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14357
- components:
- - type: Transform
- pos: -76.360794,-0.4243784
- parent: 2
-- proto: CigaretteSpent
- entities:
- - uid: 14358
- components:
- - type: Transform
- pos: -18.792145,56.784576
- parent: 2
- - uid: 14359
- components:
- - type: Transform
- pos: -4.220675,56.874905
- parent: 2
- - uid: 14360
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.749214,14.934522
- parent: 2
- - uid: 14361
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.606853,-28.286798
- parent: 2
- - uid: 14362
- components:
- - type: Transform
- pos: 25.112226,-16.579811
- parent: 2
- - uid: 14363
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.874308,-30.625107
- parent: 2
- - uid: 14364
- components:
- - type: Transform
- pos: 24.793365,17.311203
- parent: 2
- - uid: 14365
- components:
- - type: Transform
- pos: 9.577554,-11.391624
- parent: 2
- - uid: 14366
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.25211835,-45.352993
- parent: 2
- - uid: 14367
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.0373211,-57.28495
- parent: 2
- - uid: 14368
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.953518,0.0045550466
- parent: 2
- - uid: 14369
- components:
- - type: Transform
- pos: -46.327656,-33.127026
- parent: 2
- - uid: 14370
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.800909,10.6530485
- parent: 2
- - uid: 14371
- components:
- - type: Transform
- pos: 52.32608,23.745909
- parent: 2
-- proto: CigaretteSyndicate
- entities:
- - uid: 18
- components:
- - type: Transform
- parent: 14
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 19
- components:
- - type: Transform
- parent: 14
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 20
- components:
- - type: Transform
- parent: 14
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CigarGold
- entities:
- - uid: 14372
- components:
- - type: Transform
- pos: -15.43277,10.848992
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14373
- components:
- - type: Transform
- pos: -15.55777,10.942742
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14374
- components:
- - type: Transform
- pos: 41.683758,19.570614
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14375
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.51288,-0.6245712
- parent: 2
- - uid: 14376
- components:
- - type: Transform
- pos: 12.463764,9.66757
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14377
- components:
- - type: Transform
- pos: -63.249516,6.58782
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14378
- components:
- - type: Transform
- pos: 12.588764,9.57382
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14379
- components:
- - type: Transform
- pos: 41.558758,19.633179
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14380
- components:
- - type: Transform
- pos: 31.391697,10.8042965
- parent: 2
- - uid: 14381
- components:
- - type: Transform
- pos: -63.374516,6.65032
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14382
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.501812,31.041586
- parent: 2
- - uid: 14383
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.329937,31.291584
- parent: 2
-- proto: CigarGoldCase
- entities:
- - uid: 14384
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.459763,16.514328
- parent: 2
- - uid: 14385
- components:
- - type: Transform
- pos: -2.4250343,12.791277
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14386
- components:
- - type: Transform
- pos: 23.554373,16.669165
- parent: 2
- - uid: 14388
- components:
- - type: Transform
- parent: 14387
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CigarSpent
- entities:
- - uid: 14393
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.358705,15.421036
- parent: 2
-- proto: CigCartonBlack
- entities:
- - uid: 14394
- components:
- - type: Transform
- pos: -46.55135,-32.313488
- parent: 2
-- proto: CigCartonMixed
- entities:
- - uid: 14395
- components:
- - type: Transform
- pos: -0.5251062,-10.303878
- parent: 2
- - uid: 38857
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.375746,6.398773
- parent: 38344
-- proto: CigPackBlack
- entities:
- - uid: 14396
- components:
- - type: Transform
- pos: -46.379475,-32.516613
- parent: 2
- - uid: 14397
- components:
- - type: Transform
- pos: -46.660725,-32.532238
- parent: 2
- - uid: 38858
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.547621,6.133148
- parent: 38344
-- proto: CigPackBlue
- entities:
- - uid: 38859
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.703871,6.398773
- parent: 38344
-- proto: CigPackSyndicate
- entities:
- - uid: 14398
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -46.197323,-32.47747
- parent: 2
- - uid: 38861
- components:
- - type: Transform
- parent: 38860
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CircuitImprinter
- entities:
- - uid: 14399
- components:
- - type: Transform
- pos: -3.5,-31.5
- parent: 2
-- proto: Claymore
- entities:
- - uid: 14400
- components:
- - type: Transform
- pos: -77.5,-3.5
- parent: 2
-- proto: CleanerDispenser
- entities:
- - uid: 14401
- components:
- - type: Transform
- pos: 0.5,55.5
- parent: 2
- - uid: 38867
- components:
- - type: Transform
- pos: -12.5,14.5
- parent: 38344
-- proto: ClockworkGrilleBroken
- entities:
- - uid: 14402
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,6.5
- parent: 2
- - uid: 14403
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,4.5
- parent: 2
- - uid: 14404
- components:
- - type: Transform
- pos: -92.5,-20.5
- parent: 2
- - uid: 14405
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,3.5
- parent: 2
- - uid: 14406
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,5.5
- parent: 2
- - uid: 14407
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -85.5,4.5
- parent: 2
- - uid: 14408
- components:
- - type: Transform
- pos: -105.5,-12.5
- parent: 2
- - uid: 14409
- components:
- - type: Transform
- pos: -103.5,-11.5
- parent: 2
- - uid: 14410
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,-11.5
- parent: 2
- - uid: 14411
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-19.5
- parent: 2
- - uid: 14412
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-21.5
- parent: 2
- - uid: 14413
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -104.5,-12.5
- parent: 2
- - uid: 14414
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,-11.5
- parent: 2
- - uid: 14415
- components:
- - type: Transform
- pos: 78.5,-7.5
- parent: 2
- - uid: 14416
- components:
- - type: Transform
- pos: 93.5,-7.5
- parent: 2
- - uid: 14417
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 92.5,-8.5
- parent: 2
- - uid: 14418
- components:
- - type: Transform
- pos: 92.5,-8.5
- parent: 2
- - uid: 14419
- components:
- - type: Transform
- pos: 91.5,-8.5
- parent: 2
- - uid: 14420
- components:
- - type: Transform
- pos: 89.5,-8.5
- parent: 2
- - uid: 14421
- components:
- - type: Transform
- pos: 93.5,-7.5
- parent: 2
- - uid: 14422
- components:
- - type: Transform
- pos: 80.5,-7.5
- parent: 2
- - uid: 14423
- components:
- - type: Transform
- pos: 77.5,-7.5
- parent: 2
- - uid: 14424
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-8.5
- parent: 2
- - uid: 14425
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-6.5
- parent: 2
- - uid: 14426
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 102.5,2.5
- parent: 2
- - uid: 14427
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 101.5,3.5
- parent: 2
- - uid: 14428
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 101.5,4.5
- parent: 2
- - uid: 14429
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 101.5,5.5
- parent: 2
- - uid: 14430
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 99.5,6.5
- parent: 2
- - uid: 14431
- components:
- - type: Transform
- pos: 79.5,-7.5
- parent: 2
- - uid: 14432
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 100.5,6.5
- parent: 2
- - uid: 14433
- components:
- - type: Transform
- pos: 81.5,-7.5
- parent: 2
- - uid: 14434
- components:
- - type: Transform
- pos: 82.5,-7.5
- parent: 2
- - uid: 14435
- components:
- - type: Transform
- pos: 83.5,-7.5
- parent: 2
- - uid: 14436
- components:
- - type: Transform
- pos: 84.5,-7.5
- parent: 2
- - uid: 14437
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 85.5,-8.5
- parent: 2
- - uid: 14438
- components:
- - type: Transform
- pos: 85.5,-8.5
- parent: 2
- - uid: 14439
- components:
- - type: Transform
- pos: 86.5,-8.5
- parent: 2
- - uid: 14440
- components:
- - type: Transform
- pos: 87.5,-8.5
- parent: 2
- - uid: 14441
- components:
- - type: Transform
- pos: 88.5,-8.5
- parent: 2
- - uid: 14442
- components:
- - type: Transform
- pos: 90.5,-8.5
- parent: 2
- - uid: 14443
- components:
- - type: Transform
- pos: 94.5,-7.5
- parent: 2
- - uid: 14444
- components:
- - type: Transform
- pos: 95.5,-7.5
- parent: 2
- - uid: 14445
- components:
- - type: Transform
- pos: 96.5,-7.5
- parent: 2
- - uid: 14446
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 97.5,-7.5
- parent: 2
- - uid: 14447
- components:
- - type: Transform
- pos: 97.5,-7.5
- parent: 2
- - uid: 14448
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,-7.5
- parent: 2
- - uid: 14449
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,-6.5
- parent: 2
- - uid: 14450
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,-5.5
- parent: 2
- - uid: 14451
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,-4.5
- parent: 2
- - uid: 14452
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,-3.5
- parent: 2
- - uid: 14453
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,-2.5
- parent: 2
- - uid: 14454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,-1.5
- parent: 2
- - uid: 14455
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,-0.5
- parent: 2
- - uid: 14456
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,0.5
- parent: 2
- - uid: 14457
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,1.5
- parent: 2
- - uid: 14458
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 103.5,2.5
- parent: 2
- - uid: 14459
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 103.5,2.5
- parent: 2
- - uid: 14460
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 101.5,6.5
- parent: 2
- - uid: 14461
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 101.5,6.5
- parent: 2
- - uid: 14462
- components:
- - type: Transform
- pos: 98.5,-6.5
- parent: 2
- - uid: 14463
- components:
- - type: Transform
- pos: 99.5,-6.5
- parent: 2
- - uid: 14464
- components:
- - type: Transform
- pos: 100.5,-6.5
- parent: 2
- - uid: 14465
- components:
- - type: Transform
- pos: 101.5,-6.5
- parent: 2
- - uid: 14466
- components:
- - type: Transform
- pos: 102.5,-6.5
- parent: 2
- - uid: 14467
- components:
- - type: Transform
- pos: 103.5,-7.5
- parent: 2
- - uid: 14468
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 103.5,-7.5
- parent: 2
-- proto: CloningPod
- entities:
- - uid: 14469
- components:
- - type: Transform
- pos: 8.5,-37.5
- parent: 2
-- proto: ClosetBluespace
- entities:
- - uid: 14470
- components:
- - type: Transform
- pos: -38.500004,-13.5
- parent: 2
-- proto: ClosetBomb
- entities:
- - uid: 14471
- components:
- - type: Transform
- pos: 51.5,-6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14472
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: ClosetBombFilled
- entities:
- - uid: 14473
- components:
- - type: Transform
- pos: 61.5,6.5
- parent: 2
- - uid: 14474
- components:
- - type: Transform
- pos: 63.5,6.5
- parent: 2
- - uid: 14475
- components:
- - type: Transform
- pos: -29.5,-43.5
- parent: 2
- - uid: 14476
- components:
- - type: Transform
- pos: -7.5,-48.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14477
- components:
- - type: Transform
- pos: -29.5,-41.5
- parent: 2
- - uid: 14478
- components:
- - type: Transform
- pos: 59.5,6.5
- parent: 2
-- proto: ClosetChefFilled
- entities:
- - uid: 14479
- components:
- - type: Transform
- pos: -32.5,25.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 234.99968
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetCursed
- entities:
- - uid: 14480
- components:
- - type: Transform
- pos: -35.5,-79.5
- parent: 2
-- proto: ClosetEmergency
- entities:
- - uid: 14481
- components:
- - type: Transform
- pos: -31.5,82.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 6.7046022
- - 25.222076
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14482
- components:
- - type: Transform
- pos: -27.5,82.5
- parent: 2
-- proto: ClosetEmergencyFilledRandom
- entities:
- - uid: 14483
- components:
- - type: Transform
- pos: 4.5,81.5
- parent: 2
- - uid: 14484
- components:
- - type: Transform
- pos: -9.5,82.5
- parent: 2
- - uid: 14485
- components:
- - type: Transform
- pos: -9.5,88.5
- parent: 2
- - uid: 14486
- components:
- - type: Transform
- pos: 4.5,80.5
- parent: 2
- - uid: 14487
- components:
- - type: Transform
- pos: -51.5,20.5
- parent: 2
- - uid: 14488
- components:
- - type: Transform
- pos: -57.5,64.5
- parent: 2
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14489
- - 14490
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14491
- components:
- - type: Transform
- pos: -12.5,98.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1498
- moles:
- - 3.3523011
- - 12.611038
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14492
- components:
- - type: Transform
- pos: -31.5,88.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 6.7046022
- - 25.222076
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14493
- components:
- - type: Transform
- pos: -18.5,-21.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14494
- components:
- - type: Transform
- pos: 4.5,-67.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14495
- components:
- - type: Transform
- pos: 4.5,-73.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14496
- components:
- - type: Transform
- pos: 15.5,19.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14497
- components:
- - type: Transform
- pos: -10.5,-71.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14498
- components:
- - type: Transform
- pos: -76.5,-25.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14499
- components:
- - type: Transform
- pos: 29.5,32.5
- parent: 2
- - uid: 14500
- components:
- - type: Transform
- pos: -43.5,8.5
- parent: 2
- - uid: 14501
- components:
- - type: Transform
- pos: -43.5,41.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14502
- components:
- - type: Transform
- pos: -42.5,-0.5
- parent: 2
- - uid: 14503
- components:
- - type: Transform
- pos: 28.5,-61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14504
- components:
- - type: Transform
- pos: -16.5,19.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14505
- components:
- - type: Transform
- pos: -1.5,27.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14506
- components:
- - type: Transform
- pos: -2.5,-60.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14507
- components:
- - type: Transform
- pos: -15.5,-29.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14508
- components:
- - type: Transform
- pos: -30.5,98.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1498
- moles:
- - 3.3523011
- - 12.611038
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14509
- components:
- - type: Transform
- pos: 33.5,-18.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14510
- components:
- - type: Transform
- pos: -60.5,-17.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14511
- components:
- - type: Transform
- pos: -16.5,18.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14512
- components:
- - type: Transform
- pos: -15.5,-31.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14513
- components:
- - type: Transform
- pos: -34.5,-51.5
- parent: 2
- - uid: 14514
- components:
- - type: Transform
- pos: -79.5,15.499999
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14515
- components:
- - type: Transform
- pos: 9.5,90.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14516
- components:
- - type: Transform
- pos: 15.5,20.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14517
- components:
- - type: Transform
- pos: -46.5,-39.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14518
- components:
- - type: Transform
- pos: -67.5,-31.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14519
- components:
- - type: Transform
- pos: -32.5,-49.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14520
- components:
- - type: Transform
- pos: 70.5,-40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 2.101486
- - 7.9055915
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14521
- components:
- - type: Transform
- pos: -21.5,58.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14522
- components:
- - type: Transform
- pos: 8.5,-58.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14523
- components:
- - type: Transform
- pos: -115.5,26.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14524
- components:
- - type: Transform
- pos: -57.5,-38.5
- parent: 2
- - uid: 14525
- components:
- - type: Transform
- pos: -27.5,88.5
- parent: 2
- - uid: 14526
- components:
- - type: Transform
- pos: -13.5,88.5
- parent: 2
- - uid: 14527
- components:
- - type: Transform
- pos: -38.5,-69.5
- parent: 2
- - uid: 14528
- components:
- - type: Transform
- pos: -13.5,82.5
- parent: 2
-- proto: ClosetEmergencyN2FilledRandom
- entities:
- - uid: 14529
- components:
- - type: Transform
- pos: -37.5,-69.5
- parent: 2
- - uid: 14530
- components:
- - type: Transform
- pos: -51.5,25.5
- parent: 2
-- proto: ClosetFireFilled
- entities:
- - uid: 14531
- components:
- - type: Transform
- pos: -54.5,25.5
- parent: 2
- - uid: 14532
- components:
- - type: Transform
- pos: 0.5,27.5
- parent: 2
- - uid: 14533
- components:
- - type: Transform
- pos: -9.5,92.5
- parent: 2
- - uid: 14534
- components:
- - type: Transform
- pos: -13.5,79.5
- parent: 2
- - uid: 14535
- components:
- - type: Transform
- pos: -9.5,79.5
- parent: 2
- - uid: 14536
- components:
- - type: Transform
- pos: 4.5,79.5
- parent: 2
- - uid: 14537
- components:
- - type: Transform
- pos: -31.5,92.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 6.7046022
- - 25.222076
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14538
- components:
- - type: Transform
- pos: -43.5,40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14539
- components:
- - type: Transform
- pos: 4.5,-68.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14540
- components:
- - type: Transform
- pos: -44.5,44.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14541
- components:
- - type: Transform
- pos: -50.5,44.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14542
- components:
- - type: Transform
- pos: 2.5,42.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14543
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14544
- components:
- - type: Transform
- pos: 22.5,-22.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14545
- components:
- - type: Transform
- pos: -21.5,57.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14546
- components:
- - type: Transform
- pos: -43.5,50.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14547
- components:
- - type: Transform
- pos: 4.5,82.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14548
- components:
- - type: Transform
- pos: -42.5,-1.5
- parent: 2
- - uid: 14549
- components:
- - type: Transform
- pos: 53.5,-30.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14550
- components:
- - type: Transform
- pos: 15.5,18.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14551
- components:
- - type: Transform
- pos: -11.5,-30.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14552
- components:
- - type: Transform
- pos: -31.5,61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14553
- components:
- - type: Transform
- pos: -11.5,-29.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14554
- components:
- - type: Transform
- pos: -16.5,20.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14555
- components:
- - type: Transform
- pos: -31.5,79.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 6.7046022
- - 25.222076
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14556
- components:
- - type: Transform
- pos: -3.5,-50.5
- parent: 2
- - uid: 14557
- components:
- - type: Transform
- pos: -2.5,-61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14558
- components:
- - type: Transform
- pos: -42.5,3.5
- parent: 2
- - uid: 14559
- components:
- - type: Transform
- pos: -10.5,-74.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14560
- components:
- - type: Transform
- pos: 47.5,-41.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14561
- components:
- - type: Transform
- pos: -34.5,-49.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14562
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14563
- components:
- - type: Transform
- pos: 1.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14564
- components:
- - type: Transform
- pos: -19.5,-21.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14565
- components:
- - type: Transform
- pos: -57.5,-37.5
- parent: 2
- - uid: 14566
- components:
- - type: Transform
- pos: -27.5,92.5
- parent: 2
- - uid: 14567
- components:
- - type: Transform
- pos: 0.5,27.5
- parent: 2
- - uid: 14568
- components:
- - type: Transform
- pos: -13.5,92.5
- parent: 2
- - uid: 14569
- components:
- - type: Transform
- pos: -27.5,79.5
- parent: 2
- - uid: 14570
- components:
- - type: Transform
- pos: -68.5,-31.5
- parent: 2
-- proto: ClosetJanitor
- entities:
- - uid: 14571
- components:
- - type: Transform
- pos: 65.5,-10.5
- parent: 2
- - uid: 14572
- components:
- - type: Transform
- pos: 65.5,-29.5
- parent: 2
-- proto: ClosetJanitorFilled
- entities:
- - uid: 1832
- components:
- - type: Transform
- pos: 4.5,53.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:
- - 1835
- - 1836
- - 1834
- - 1837
- - 1842
- - 1833
- - 1839
- - 1840
- - 1838
- - 1841
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: ClosetL3JanitorFilled
- entities:
- - uid: 14573
- components:
- - type: Transform
- pos: 4.5,54.5
- parent: 2
-- proto: ClosetL3ScienceFilled
- entities:
- - uid: 14574
- components:
- - type: Transform
- pos: -27.5,-37.5
- parent: 2
- - uid: 14575
- components:
- - type: Transform
- pos: -27.5,-38.5
- parent: 2
- - uid: 14576
- components:
- - type: Transform
- pos: -11.5,-31.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetL3SecurityFilled
- entities:
- - uid: 14577
- components:
- - type: Transform
- pos: 70.5,-2.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14578
- components:
- - type: Transform
- pos: 70.5,-4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14579
- components:
- - type: Transform
- pos: 69.5,-4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetL3VirologyFilled
- entities:
- - uid: 14580
- components:
- - type: Transform
- pos: 26.5,-61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14581
- components:
- - type: Transform
- pos: 32.5,-68.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14582
- components:
- - type: Transform
- pos: 27.5,-61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetLegal
- entities:
- - uid: 14583
- components:
- - type: Transform
- pos: 65.5,-28.5
- parent: 2
- - uid: 14584
- components:
- - type: Transform
- pos: 65.5,-11.5
- parent: 2
-- proto: ClosetMaintenanceFilledRandom
- entities:
- - uid: 14585
- components:
- - type: Transform
- pos: 43.5,-6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14586
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14587
- components:
- - type: Transform
- pos: -26.5,-76.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14588
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14589
- components:
- - type: Transform
- pos: -31.5,58.5
- parent: 2
- - uid: 14590
- components:
- - type: Transform
- pos: -21.5,-21.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14591
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14592
- components:
- - type: Transform
- pos: 5.5,56.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8856695
- - 7.0937095
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14593
- components:
- - type: Transform
- pos: 21.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14594
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14595
- components:
- - type: Transform
- pos: -24.5,27.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14596
- components:
- - type: Transform
- pos: -40.5,50.5
- parent: 2
- - uid: 14597
- components:
- - type: Transform
- pos: 4.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14598
- components:
- - type: Transform
- pos: -73.5,-22.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14599
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14600
- components:
- - type: Transform
- pos: 41.5,-25.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14601
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14602
- components:
- - type: Transform
- pos: 34.5,-4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14603
- components:
- - type: Transform
- pos: -77.5,-20.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14604
- components:
- - type: Transform
- pos: -18.5,-62.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14605
- components:
- - type: Transform
- pos: 25.5,61.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14606
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14607
- components:
- - type: Transform
- pos: 25.5,59.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14608
- components:
- - type: Transform
- pos: 40.5,-47.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14609
- components:
- - type: Transform
- pos: -38.5,2.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14610
- components:
- - type: Transform
- pos: -32.5,-53.5
- parent: 2
- - uid: 14611
- components:
- - type: Transform
- pos: -52.5,-22.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14612
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14613
- components:
- - type: Transform
- pos: -45.5,-37.5
- parent: 2
- - uid: 14614
- components:
- - type: Transform
- pos: -43.5,-46.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14615
- components:
- - type: Transform
- pos: 68.5,22.5
- parent: 2
- - uid: 14616
- components:
- - type: Transform
- pos: -39.5,-75.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14617
- components:
- - type: Transform
- pos: 35.5,-23.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14618
- components:
- - type: Transform
- pos: 40.5,-37.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14619
- components:
- - type: Transform
- pos: 48.5,-47.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14620
- components:
- - type: Transform
- pos: 48.5,-27.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14621
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14622
- components:
- - type: Transform
- pos: 43.5,-27.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14623
- components:
- - type: Transform
- pos: 36.5,-46.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14624
- components:
- - type: Transform
- pos: 18.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14625
- components:
- - type: Transform
- pos: -57.5,-33.5
- parent: 2
- - uid: 14626
- components:
- - type: Transform
- pos: -34.5,-69.5
- parent: 2
- - uid: 14627
- components:
- - type: Transform
- pos: -35.5,-69.5
- parent: 2
- - uid: 14628
- components:
- - type: Transform
- pos: -28.5,-58.5
- parent: 2
- - uid: 14629
- components:
- - type: Transform
- pos: -7.5,-54.5
- parent: 2
- - uid: 14630
- components:
- - type: Transform
- pos: -35.500004,-17.5
- parent: 2
- - uid: 14631
- components:
- - type: Transform
- pos: -48.5,-21.5
- parent: 2
- - uid: 14632
- components:
- - type: Transform
- pos: -55.500004,-24.5
- parent: 2
- - uid: 14633
- components:
- - type: Transform
- pos: -60.5,-31.5
- parent: 2
- - uid: 14634
- components:
- - type: Transform
- pos: -71.5,-31.5
- parent: 2
- - uid: 14635
- components:
- - type: Transform
- pos: -61.5,-20.5
- parent: 2
- - uid: 14636
- components:
- - type: Transform
- pos: -40.500004,1.4999999
- parent: 2
- - uid: 14637
- components:
- - type: Transform
- pos: 34.499996,-54.5
- parent: 2
-- proto: ClosetRadiationSuitFilled
- entities:
- - uid: 14638
- components:
- - type: Transform
- pos: -62.5,2.5
- parent: 2
- - uid: 14639
- components:
- - type: Transform
- pos: -63.5,2.5
- parent: 2
- - uid: 14640
- components:
- - type: Transform
- pos: -57.5,44.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14641
- components:
- - type: Transform
- pos: -43.5,52.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14642
- components:
- - type: Transform
- pos: -55.5,-3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14643
- components:
- - type: Transform
- pos: -56.5,-3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14644
- components:
- - type: Transform
- pos: -50.5,6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14645
- components:
- - type: Transform
- pos: -58.5,44.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14646
- components:
- - type: Transform
- pos: -51.5,40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14647
- components:
- - type: Transform
- pos: -29.5,-39.5
- parent: 2
- - uid: 14648
- components:
- - type: Transform
- pos: -14.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14649
- components:
- - type: Transform
- pos: 75.5,-45.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 8.182408
- - 30.781443
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14650
- components:
- - type: Transform
- pos: -52.5,40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14651
- components:
- - type: Transform
- pos: -31.5,-46.5
- parent: 2
- - uid: 14652
- components:
- - type: Transform
- pos: -53.5,4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14653
- components:
- - type: Transform
- pos: -69.5,10.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14654
- components:
- - type: Transform
- pos: -77.5,1.5
- parent: 2
-- proto: ClosetSteelBase
- entities:
- - uid: 14655
- components:
- - type: Transform
- pos: 8.5,-40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14656
- components:
- - type: Transform
- pos: 76.5,23.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14657
- components:
- - type: Transform
- pos: 35.5,-6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14658
- components:
- - type: Transform
- pos: 36.5,-6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14659
- components:
- - type: Transform
- pos: 38.5,-66.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14660
- - 14661
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14662
- components:
- - type: Transform
- pos: 42.5,-66.5
- parent: 2
- - 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: 293.1496
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- open: True
- removedMasks: 20
- - type: PlaceableSurface
- isPlaceable: True
- - uid: 14663
- components:
- - type: Transform
- pos: 13.5,-57.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14664
- components:
- - type: Transform
- pos: 12.5,-57.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14665
- components:
- - type: Transform
- pos: 11.5,-57.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14666
- components:
- - type: Transform
- pos: 34.5,-49.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14667
- components:
- - type: Transform
- pos: 34.5,-6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14668
- components:
- - type: Transform
- pos: 43.5,-35.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14669
- components:
- - type: Transform
- pos: -55.5,-43.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:
- - 14672
- - 14673
- - 14670
- - 14671
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14674
- components:
- - type: Transform
- pos: 65.5,-9.5
- parent: 2
- - uid: 14675
- components:
- - type: Transform
- pos: 65.5,-30.5
- parent: 2
- - uid: 14676
- components:
- - type: Transform
- pos: 6.5,-11.5
- parent: 2
-- proto: ClosetToolFilled
- entities:
- - uid: 14677
- components:
- - type: Transform
- pos: -77.5,-25.5
- parent: 2
- - uid: 14678
- components:
- - type: Transform
- pos: -56.5,17.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14680
- - 14679
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14681
- components:
- - type: Transform
- pos: -55.5,-11.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14682
- components:
- - type: Transform
- pos: 11.5,85.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14683
- components:
- - type: Transform
- pos: 24.5,10.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14684
- components:
- - type: Transform
- pos: 11.5,84.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14685
- components:
- - type: Transform
- pos: -56.5,-11.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14686
- components:
- - type: Transform
- pos: -53.5,6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14687
- components:
- - type: Transform
- pos: 23.5,10.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 14688
- components:
- - type: Transform
- pos: -22.5,-47.5
- parent: 2
- - uid: 14689
- components:
- - type: Transform
- pos: -50.5,4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClosetWallEmergencyFilledRandom
- entities:
- - uid: 14690
- components:
- - type: Transform
- pos: 11.5,-2.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: ClothingBackpackBrigmedic
- entities:
- - uid: 14692
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBackpackDuffelBrigmedic
- entities:
- - uid: 14693
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBackpackDuffelMilitary
- entities:
- - uid: 14705
- components:
- - type: Transform
- pos: -39.5,56.5
- parent: 2
-- proto: ClothingBackpackDuffelSurgeryFilled
- entities:
- - uid: 14706
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 46.345066,-27.287228
- parent: 2
-- proto: ClothingBackpackDuffelSyndicateCarpSuit
- entities:
- - uid: 14707
- components:
- - type: Transform
- pos: -74.452286,-31.415848
- parent: 2
- - type: GroupExamine
- group:
- - hoverMessage: ""
- contextText: verb-examine-group-other
- icon: /Textures/Interface/examine-star.png
- components:
- - Armor
- - ClothingSpeedModifier
- entries:
- - message: >-
- Обеспечивает следующую защиту:
-
- - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color].
- priority: 0
- component: Armor
- - message: Понижает вашу скорость бега на [color=yellow]10%[/color].
- priority: 0
- component: ClothingSpeedModifier
- title: null
-- proto: ClothingBackpackDuffelSyndicatePyjamaBundle
- entities:
- - uid: 14709
- components:
- - type: Transform
- pos: 99.50743,-1.3897237
- parent: 2
- - type: GroupExamine
- group:
- - hoverMessage: ""
- contextText: verb-examine-group-other
- icon: /Textures/Interface/examine-star.png
- components:
- - Armor
- - ClothingSpeedModifier
- entries:
- - message: >-
- Обеспечивает следующую защиту:
-
- - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color].
- priority: 0
- component: Armor
- - message: Понижает вашу скорость бега на [color=yellow]10%[/color].
- priority: 0
- component: ClothingSpeedModifier
- title: null
-- proto: ClothingBackpackDuffelVirology
- entities:
- - uid: 14710
- components:
- - type: Transform
- pos: 39.371994,-59.285408
- parent: 2
-- proto: ClothingBackpackIan
- entities:
- - uid: 14711
- components:
- - type: Transform
- pos: -40.652157,-59.44616
- parent: 2
-- proto: ClothingBackpackSatchelBrigmedic
- entities:
- - uid: 14694
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBackpackSatchelClown
- entities:
- - uid: 14712
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -45.48593,-66.582596
- parent: 2
-- proto: ClothingBackpackSatchelLeather
- entities:
- - uid: 14713
- components:
- - type: Transform
- pos: 38.42007,-13.187743
- parent: 2
-- proto: ClothingBackpackSyndicate
- entities:
- - uid: 38862
- components:
- - type: Transform
- parent: 38860
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBeltChampion
- entities:
- - uid: 14714
- components:
- - type: Transform
- pos: 26.5,16.5
- parent: 2
- - uid: 14715
- components:
- - type: Transform
- pos: 63.481087,-20.497055
- parent: 2
- - uid: 14716
- components:
- - type: Transform
- pos: 63.65296,-20.13768
- parent: 2
-- proto: ClothingBeltJanitorFilled
- entities:
- - uid: 1834
- components:
- - type: Transform
- parent: 1832
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1835
- components:
- - type: Transform
- parent: 1832
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBeltMedical
- entities:
- - uid: 14695
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBeltPlantFilled
- entities:
- - uid: 14717
- components:
- - type: Transform
- pos: -34.420864,52.3301
- parent: 2
- - uid: 14718
- components:
- - type: Transform
- pos: -34.610645,52.66603
- parent: 2
- - uid: 38868
- components:
- - type: Transform
- pos: -21.581953,-2.861847
- parent: 38344
-- proto: ClothingBeltSecurityFilled
- entities:
- - uid: 21
- components:
- - type: Transform
- parent: 14
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingBeltStorageWaistbag
- entities:
- - uid: 14719
- components:
- - type: Transform
- pos: 38.466946,-9.531493
- parent: 2
-- proto: ClothingBeltUtility
- entities:
- - uid: 14720
- components:
- - type: Transform
- pos: 9.527449,86.09863
- parent: 2
- - uid: 14721
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -15.524071,-15.453931
- parent: 2
-- proto: ClothingBeltUtilityEngineering
- entities:
- - uid: 14722
- components:
- - type: Transform
- pos: -47.542614,28.682962
- parent: 2
-- proto: ClothingBeltUtilityFilled
- entities:
- - uid: 14679
- components:
- - type: Transform
- parent: 14678
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14723
- components:
- - type: Transform
- pos: 15.5,39.5
- parent: 2
- - uid: 14724
- components:
- - type: Transform
- pos: -33.5,60.5
- parent: 2
- - uid: 14725
- components:
- - type: Transform
- pos: -49.5,-16.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14726
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 10.5036335,-13.335919
- parent: 2
-- proto: ClothingEyesBinoclardLenses
- entities:
- - uid: 14727
- components:
- - type: Transform
- pos: -21.485056,-7.1794715
- parent: 2
-- proto: ClothingEyesBlindfold
- entities:
- - uid: 14728
- components:
- - type: Transform
- pos: 73.36917,23.696793
- parent: 2
-- proto: ClothingEyesGlasses
- entities:
- - uid: 14729
- components:
- - type: Transform
- pos: -36.412228,63.676514
- parent: 2
- - uid: 14730
- components:
- - type: Transform
- pos: 28.440517,-26.436743
- parent: 2
- - uid: 14731
- components:
- - type: Transform
- pos: 28.378017,-26.327368
- parent: 2
- - uid: 14732
- components:
- - type: Transform
- pos: 29.542643,-1.1786702
- parent: 2
-- proto: ClothingEyesGlassesCheapSunglasses
- entities:
- - uid: 14733
- components:
- - type: Transform
- pos: 20.8171,62.763203
- parent: 2
-- proto: ClothingEyesGlassesMercenary
- entities:
- - uid: 14489
- components:
- - type: Transform
- parent: 14488
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14734
- components:
- - type: Transform
- pos: -36.385307,-54.463394
- parent: 2
-- proto: ClothingEyesGlassesMeson
- entities:
- - uid: 14735
- components:
- - type: Transform
- pos: -49.5,-12.5
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingEyesGlassesSunglasses
- entities:
- - uid: 22
- components:
- - type: Transform
- parent: 14
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14736
- components:
- - type: Transform
- pos: -78.5,1.5
- parent: 2
- - uid: 14737
- components:
- - type: Transform
- pos: 34.431522,0.096880555
- parent: 2
- - uid: 14739
- components:
- - type: Transform
- parent: 14738
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingEyesHudDiagnostic
- entities:
- - uid: 14752
- components:
- - type: Transform
- pos: -75.5,9.5
- parent: 2
- - uid: 14753
- components:
- - type: Transform
- pos: 15.542948,77.507545
- parent: 2
- - uid: 14754
- components:
- - type: Transform
- pos: -54.45722,-9.789352
- parent: 2
- - uid: 14755
- components:
- - type: Transform
- pos: -54.45722,-9.789352
- parent: 2
- - uid: 14756
- components:
- - type: Transform
- pos: -54.45722,-9.789352
- parent: 2
- - uid: 14757
- components:
- - type: Transform
- pos: -54.45722,-9.789352
- parent: 2
-- proto: ClothingEyesHudMedical
- entities:
- - uid: 14758
- components:
- - type: Transform
- pos: 30.585972,-26.50681
- parent: 2
- - uid: 14759
- components:
- - type: Transform
- pos: 22.578123,-46.395374
- parent: 2
- - uid: 14760
- components:
- - type: Transform
- pos: 30.710972,-26.428684
- parent: 2
- - uid: 14761
- components:
- - type: Transform
- pos: 30.804722,-26.334932
- parent: 2
-- proto: ClothingEyesSalesman
- entities:
- - uid: 14762
- components:
- - type: Transform
- pos: 34.52355,-29.358326
- parent: 2
-- proto: ClothingHandsGlovesAerostatic
- entities:
- - uid: 14764
- components:
- - type: Transform
- parent: 14763
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHandsGlovesBoxingBlue
- entities:
- - uid: 14770
- components:
- - type: Transform
- pos: 55.321033,-16.213081
- parent: 2
- - uid: 14771
- components:
- - type: Transform
- pos: 55.696033,-16.134956
- parent: 2
-- proto: ClothingHandsGlovesBoxingGreen
- entities:
- - uid: 14772
- components:
- - type: Transform
- pos: 55.33666,-15.541207
- parent: 2
- - uid: 14773
- components:
- - type: Transform
- pos: 55.727283,-15.384956
- parent: 2
-- proto: ClothingHandsGlovesBoxingRed
- entities:
- - uid: 14774
- components:
- - type: Transform
- pos: 55.27416,-16.588081
- parent: 2
- - uid: 14775
- components:
- - type: Transform
- pos: 55.64916,-16.509956
- parent: 2
-- proto: ClothingHandsGlovesBoxingYellow
- entities:
- - uid: 14776
- components:
- - type: Transform
- pos: 55.30541,-15.884956
- parent: 2
- - uid: 14777
- components:
- - type: Transform
- pos: 55.77416,-15.759956
- parent: 2
-- proto: ClothingHandsGlovesColorBlack
- entities:
- - uid: 14778
- components:
- - type: Transform
- pos: 14.491442,39.55459
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14779
- components:
- - type: Transform
- pos: 31.5,32.5
- parent: 2
- - uid: 14780
- components:
- - type: Transform
- pos: 33.5,32.5
- parent: 2
- - uid: 14781
- components:
- - type: Transform
- pos: 32.5,32.5
- parent: 2
- - uid: 14782
- components:
- - type: Transform
- pos: 53.542866,-53.372818
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14783
- components:
- - type: Transform
- pos: 49.5,-37.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14784
- components:
- - type: Transform
- pos: 14.491442,39.71084
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14785
- components:
- - type: Transform
- pos: -49.94571,-48.294197
- parent: 2
- - uid: 14786
- components:
- - type: Transform
- pos: -22.50142,-44.5684
- parent: 2
- - uid: 14787
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 51.476326,-16.181143
- parent: 2
-- proto: ClothingHandsGlovesColorBrown
- entities:
- - uid: 14788
- components:
- - type: Transform
- pos: 27.46601,36.112278
- parent: 2
- - uid: 14789
- components:
- - type: Transform
- pos: -35.445805,-62.467285
- parent: 2
-- proto: ClothingHandsGlovesColorOrange
- entities:
- - uid: 14790
- components:
- - type: Transform
- pos: 0.6084916,50.72592
- parent: 2
- - uid: 14791
- components:
- - type: Transform
- pos: -77.531624,-30.35354
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHandsGlovesColorPurple
- entities:
- - uid: 14792
- components:
- - type: Transform
- pos: 0.55345386,50.3957
- parent: 2
-- proto: ClothingHandsGlovesColorWhite
- entities:
- - uid: 14793
- components:
- - type: Transform
- pos: -33.5,-35.5
- parent: 2
- - uid: 14795
- components:
- - type: Transform
- parent: 14794
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHandsGlovesColorYellow
- entities:
- - uid: 14680
- components:
- - type: Transform
- parent: 14678
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14799
- components:
- - type: Transform
- pos: 11.5,40.5
- parent: 2
- - uid: 14800
- components:
- - type: Transform
- pos: -55.5,-1.5
- parent: 2
- - uid: 14801
- components:
- - type: Transform
- pos: -45.44088,-13.045986
- parent: 2
- - uid: 14802
- components:
- - type: Transform
- pos: -35.5,21.5
- parent: 2
- - uid: 14803
- components:
- - type: Transform
- pos: -28.5,8.5
- parent: 2
- - uid: 14804
- components:
- - type: Transform
- pos: -49.5,-12.5
- parent: 2
- - uid: 14806
- components:
- - type: Transform
- parent: 14805
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14810
- components:
- - type: Transform
- parent: 14809
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14814
- components:
- - type: Transform
- parent: 14813
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14817
- components:
- - type: Transform
- pos: 54.5,-42.5
- parent: 2
-- proto: ClothingHandsGlovesColorYellowBudget
- entities:
- - uid: 14818
- components:
- - type: Transform
- pos: -41.49198,-55.389194
- parent: 2
- - uid: 14819
- components:
- - type: Transform
- pos: 20.524391,10.520571
- parent: 2
-- proto: ClothingHandsGlovesCombat
- entities:
- - uid: 23
- components:
- - type: Transform
- parent: 14
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14820
- components:
- - type: Transform
- pos: 70.5,8.5
- parent: 2
- - uid: 14821
- components:
- - type: Transform
- pos: -67.44785,-22.699738
- parent: 2
- - uid: 14822
- components:
- - type: Transform
- pos: 100.565186,-1.6605401
- parent: 2
- - uid: 38869
- components:
- - type: Transform
- pos: 13.998112,19.283295
- parent: 38344
-- proto: ClothingHandsGlovesFingerlessInsulated
- entities:
- - uid: 14823
- components:
- - type: Transform
- pos: 29.53348,59.58545
- parent: 2
-- proto: ClothingHandsGlovesHop
- entities:
- - uid: 14824
- components:
- - type: Transform
- pos: -41.5,61.5
- parent: 2
- - uid: 14825
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 44.490234,-66.47185
- parent: 2
-- proto: ClothingHandsGlovesLatex
- entities:
- - uid: 14826
- components:
- - type: Transform
- pos: 3.3556955,-52.53906
- parent: 2
- - uid: 14827
- components:
- - type: Transform
- pos: 33.512875,-52.369106
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14828
- components:
- - type: Transform
- pos: 26.501759,9.535522
- parent: 2
- - uid: 14829
- components:
- - type: Transform
- pos: -25.48231,-31.481985
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14830
- components:
- - type: Transform
- pos: 6.5106626,-42.76824
- parent: 2
- - uid: 14831
- components:
- - type: Transform
- pos: 45.5,-35.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14832
- components:
- - type: Transform
- pos: 27.495026,67.60358
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14833
- components:
- - type: Transform
- pos: -3.4906864,-22.43212
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14834
- components:
- - type: Transform
- pos: 3.8132644,-52.53906
- parent: 2
- - uid: 14835
- components:
- - type: Transform
- pos: 3.666549,-13.525673
- parent: 2
-- proto: ClothingHandsGlovesLeather
- entities:
- - uid: 14836
- components:
- - type: Transform
- pos: -25.485296,54.53175
- parent: 2
-- proto: ClothingHandsGlovesNitrile
- entities:
- - uid: 14837
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.60349,-72.92771
- parent: 2
-- proto: ClothingHandsMercGlovesCombat
- entities:
- - uid: 14490
- components:
- - type: Transform
- parent: 14488
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14839
- components:
- - type: Transform
- parent: 14838
- - type: Physics
- canCollide: False
-- proto: ClothingHeadBandBlack
- entities:
- - uid: 14840
- components:
- - type: Transform
- pos: -50.609512,-48.24995
- parent: 2
-- proto: ClothingHeadBandMerc
- entities:
- - uid: 14562
- components:
- - type: Transform
- parent: 14561
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatAnimalCat
- entities:
- - uid: 14841
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -62.49944,-40.314327
- parent: 2
-- proto: ClothingHeadHatAnimalCatBlack
- entities:
- - uid: 14842
- components:
- - type: Transform
- pos: 39.473694,-49.477642
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHeadHatAnimalHeadslime
- entities:
- - uid: 14843
- components:
- - type: Transform
- pos: -51.484074,-22.45441
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHeadHatBeaverHat
- entities:
- - uid: 14844
- components:
- - type: Transform
- pos: 11.610336,68.17239
- parent: 2
-- proto: ClothingHeadHatBeret
- entities:
- - uid: 24
->>>>>>> master
- components:
- - type: MetaData
- desc: 'Этот берет принадлежал когда-то первому пилоту Стервятника. Леонарду Уварову. '
- name: Берет Первого Пилота
- - type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -15.5,57.5
- parent: 2
- - uid: 15527
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-1.5
- parent: 2
- - uid: 15528
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-30.5
- parent: 2
- - uid: 15529
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,39.5
- parent: 2
- - uid: 15530
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-10.5
- parent: 2
- - uid: 15531
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,36.5
- parent: 2
- - uid: 15532
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-17.5
- parent: 2
- - uid: 15533
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,57.5
- parent: 2
- - uid: 15534
- components:
- - type: Transform
- pos: -30.5,20.5
- parent: 2
- - uid: 15535
- components:
- - type: Transform
- pos: -30.5,7.5
- parent: 2
- - uid: 15536
- components:
- - type: Transform
- pos: -8.5,-27.5
- parent: 2
- - uid: 15537
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,9.5
- parent: 2
- - uid: 15538
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-28.5
- parent: 2
- - uid: 15539
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,8.5
- parent: 2
- - uid: 15540
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,38.5
- parent: 2
- - uid: 15541
- components:
- - type: Transform
- pos: -30.5,18.5
- parent: 2
- - uid: 15542
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,18.5
- parent: 2
- - uid: 15543
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-37.5
- parent: 2
- - uid: 15544
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-25.5
- parent: 2
- - uid: 15545
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,53.5
- parent: 2
- - uid: 15546
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,10.5
- parent: 2
- - uid: 15547
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,36.5
- parent: 2
- - uid: 15548
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,59.5
- parent: 2
- - uid: 15549
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,57.5
- parent: 2
- - uid: 15550
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,12.5
- parent: 2
- - uid: 15551
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,57.5
- parent: 2
- - uid: 15552
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,57.5
- parent: 2
- - uid: 15553
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,45.5
- parent: 2
- - uid: 15554
- components:
- - type: Transform
- pos: -27.5,58.5
- parent: 2
- - uid: 15555
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,48.5
- parent: 2
- - uid: 15556
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,48.5
- parent: 2
- - uid: 15557
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-19.5
- parent: 2
- - uid: 15558
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,61.5
- parent: 2
- - uid: 15559
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,57.5
- parent: 2
- - uid: 15560
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-23.5
- parent: 2
- - uid: 15561
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-71.5
- parent: 2
- - uid: 15562
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,57.5
- parent: 2
- - uid: 15563
- components:
- - type: Transform
- pos: -41.5,43.5
- parent: 2
- - uid: 15564
- components:
- - type: Transform
- pos: -30.5,15.5
- parent: 2
- - uid: 15565
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,19.5
- parent: 2
- - uid: 15566
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,57.5
- parent: 2
- - uid: 15567
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-26.5
- parent: 2
- - uid: 15568
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,60.5
- parent: 2
- - uid: 15569
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-21.5
- parent: 2
- - uid: 15570
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,61.5
- parent: 2
- - uid: 15571
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-31.5
- parent: 2
- - uid: 15572
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-25.5
- parent: 2
- - uid: 15573
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,10.5
- parent: 2
- - uid: 15574
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,10.5
- parent: 2
- - uid: 15575
- components:
- - type: Transform
- pos: -35.5,41.5
- parent: 2
- - uid: 15576
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,15.5
- parent: 2
- - uid: 15577
- components:
- - type: Transform
- pos: -8.5,-32.5
- parent: 2
- - uid: 15578
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,38.5
- parent: 2
- - uid: 15579
- components:
- - type: Transform
- pos: 10.5,32.5
- parent: 2
- - uid: 15580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,34.5
- parent: 2
- - uid: 15581
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,47.5
- parent: 2
- - uid: 15582
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,47.5
- parent: 2
- - uid: 15583
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,36.5
- parent: 2
- - uid: 15584
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-73.5
- parent: 2
- - uid: 15585
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-61.5
- parent: 2
- - uid: 15586
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,48.5
- parent: 2
- - uid: 15587
- components:
- - type: Transform
- pos: 10.5,29.5
- parent: 2
- - uid: 15588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,41.5
- parent: 2
- - uid: 15589
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,57.5
- parent: 2
- - uid: 15590
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,15.5
- parent: 2
- - uid: 15591
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,57.5
- parent: 2
- - uid: 15592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,34.5
- parent: 2
- - uid: 15593
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,57.5
- parent: 2
- - uid: 15594
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,16.5
- parent: 2
- - uid: 15595
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-27.5
- parent: 2
- - uid: 15596
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-63.5
- parent: 2
- - uid: 15597
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,57.5
- parent: 2
- - uid: 15598
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,18.5
- parent: 2
- - uid: 15599
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,57.5
- parent: 2
- - uid: 15600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,38.5
- parent: 2
- - uid: 15601
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,57.5
- parent: 2
- - uid: 15602
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-22.5
- parent: 2
- - uid: 15603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-29.5
- parent: 2
- - uid: 15604
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,23.5
- parent: 2
- - uid: 15605
- components:
- - type: Transform
- pos: 21.5,7.5
- parent: 2
- - uid: 15606
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-3.5
- parent: 2
- - uid: 15607
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,14.5
- parent: 2
- - uid: 15608
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,61.5
- parent: 2
- - uid: 15609
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-7.5
- parent: 2
- - uid: 15610
-=======
- parent: 14
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14845
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 94.64342,2.6752148
- parent: 2
-- proto: ClothingHeadHatBeretBrigmedic
- entities:
- - uid: 14847
- components:
- - type: Transform
- parent: 14846
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14848
- components:
- - type: Transform
- parent: 14846
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14850
- components:
- - type: Transform
- parent: 14849
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14851
- components:
- - type: Transform
- pos: 26.16902,-24.54952
- parent: 2
- - uid: 14852
- components:
- - type: Transform
- pos: 25.512768,-24.26827
- parent: 2
-- proto: ClothingHeadHatBeretEngineering
- entities:
- - uid: 14853
- components:
- - type: Transform
- pos: -54.4179,-9.596214
- parent: 2
- - uid: 14854
- components:
- - type: Transform
- pos: -56.24604,-13.244306
- parent: 2
-- proto: ClothingHeadHatBeretMedic
- entities:
- - uid: 14855
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 40.69093,-31.573404
- parent: 2
-- proto: ClothingHeadHatBeretRND
- entities:
- - uid: 14856
- components:
- - type: Transform
- pos: -20.530878,-38.289
- parent: 2
-- proto: ClothingHeadHatBeretSecurityMedic
- entities:
- - uid: 14696
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14857
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 40.487804,-31.37028
- parent: 2
-- proto: ClothingHeadHatBeretWarden
- entities:
- - uid: 14859
- components:
- - type: Transform
- parent: 14858
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatBlacksoft
- entities:
- - uid: 14866
- components:
- - type: Transform
- pos: 17.44001,28.793232
- parent: 2
-- proto: ClothingHeadHatBowlerHat
- entities:
- - uid: 14868
- components:
- - type: Transform
- parent: 14867
- - type: Physics
- canCollide: False
- - uid: 14874
- components:
- - type: Transform
- pos: -23.507126,23.627884
- parent: 2
- - uid: 14875
- components:
- - type: Transform
- pos: 43.480366,-50.404068
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14876
- components:
- - type: Transform
- pos: 20.17384,62.727947
- parent: 2
-- proto: ClothingHeadHatBunny
- entities:
- - uid: 14877
- components:
- - type: Transform
- pos: 43.54777,15.417131
- parent: 2
- - uid: 38870
- components:
- - type: Transform
- pos: 7.506109,-1.439148
- parent: 38344
-- proto: ClothingHeadHatCapWardenAlt
- entities:
- - uid: 14860
- components:
- - type: Transform
- parent: 14858
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatCardborg
- entities:
- - uid: 14543
- components:
- - type: Transform
- parent: 14542
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14878
- components:
- - type: Transform
- pos: 47.511616,-54.529068
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHeadHatCargosoft
- entities:
- - uid: 14879
- components:
- - type: Transform
- pos: 17.440012,28.027607
- parent: 2
-- proto: ClothingHeadHatCasa
- entities:
- - uid: 14880
- components:
- - type: Transform
- pos: -50.54699,-44.048893
- parent: 2
- - uid: 14881
- components:
- - type: Transform
- pos: -52.47938,-45.096096
- parent: 2
-- proto: ClothingHeadHatCatEars
- entities:
- - uid: 14796
- components:
- - type: Transform
- parent: 14794
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatChef
- entities:
- - uid: 14882
- components:
- - type: Transform
- pos: 22.545242,65.61058
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14883
- components:
- - type: Transform
- pos: -28.69005,32.65273
- parent: 2
- - uid: 38871
- components:
- - type: Transform
- pos: -15.459048,-1.2791443
- parent: 38344
-- proto: ClothingHeadHatCone
- entities:
- - uid: 14884
- components:
- - type: Transform
- pos: -59.5,-27.5
- parent: 2
- - uid: 14885
- components:
- - type: Transform
- pos: -63.5,-23.5
- parent: 2
- - uid: 14886
- components:
- - type: Transform
- pos: -59.5,-26.5
- parent: 2
- - uid: 14887
- components:
- - type: Transform
- pos: -56.52692,-17.587082
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHeadHatCowboyBrown
- entities:
- - uid: 14888
- components:
- - type: Transform
- pos: 51.58269,29.669313
- parent: 2
-- proto: ClothingHeadHatFedoraBrown
- entities:
- - uid: 1805
- components:
- - type: Transform
- parent: 1803
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatFedoraGrey
- entities:
- - uid: 14869
- components:
- - type: Transform
- parent: 14867
- - type: Physics
- canCollide: False
- - uid: 14889
- components:
- - type: Transform
- pos: -21.532356,19.607018
- parent: 2
-- proto: ClothingHeadHatFlowerWreath
- entities:
- - uid: 14890
- components:
- - type: Transform
- pos: 71.87246,-17.56805
- parent: 2
- - uid: 14891
- components:
- - type: Transform
- pos: 71.65119,-17.641798
- parent: 2
-- proto: ClothingHeadHatHardhatBlue
- entities:
- - uid: 14892
- components:
- - type: Transform
- pos: -67.37956,-23.102869
- parent: 2
-- proto: ClothingHeadHatHardhatRed
- entities:
- - uid: 14893
- components:
- - type: Transform
- pos: -64.42626,-28.486387
- parent: 2
-- proto: ClothingHeadHatHardhatYellow
- entities:
- - uid: 14894
- components:
- - type: Transform
- pos: -64.64753,-28.294647
- parent: 2
-- proto: ClothingHeadHatOrangesoft
- entities:
- - uid: 14895
- components:
- - type: Transform
- pos: 17.486885,28.418232
- parent: 2
-- proto: ClothingHeadHatPaper
- entities:
- - uid: 14896
- components:
- - type: Transform
- pos: -52.608284,-42.366573
- parent: 2
- - uid: 14897
- components:
- - type: Transform
- pos: -52.40177,-42.51407
- parent: 2
-- proto: ClothingHeadHatPartyBlue
- entities:
- - uid: 38872
- components:
- - type: Transform
- pos: -15.318423,-5.3572693
- parent: 38344
-- proto: ClothingHeadHatPartyGreen
- entities:
- - uid: 38873
- components:
- - type: Transform
- pos: -12.724673,-5.3885193
- parent: 38344
-- proto: ClothingHeadHatPartyRed
- entities:
- - uid: 38874
- components:
- - type: Transform
- pos: -13.724673,-4.6697693
- parent: 38344
-- proto: ClothingHeadHatPartyWaterCup
- entities:
- - uid: 14898
- components:
- - type: Transform
- pos: -26.689962,43.860317
- parent: 2
- - uid: 14899
- components:
- - type: Transform
- pos: -26.314962,43.797817
- parent: 2
- - uid: 14900
- components:
- - type: Transform
- pos: -26.846212,43.641567
- parent: 2
- - uid: 14901
- components:
- - type: Transform
- pos: -26.518087,43.547817
- parent: 2
-- proto: ClothingHeadHatPartyYellow
- entities:
- - uid: 38875
- components:
- - type: Transform
- pos: -14.412173,-5.9822693
- parent: 38344
-- proto: ClothingHeadHatPurplesoft
- entities:
- - uid: 1836
- components:
- - type: Transform
- parent: 1832
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatPurplesoftFlipped
- entities:
- - uid: 1837
- components:
- - type: Transform
- parent: 1832
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatRichard
- entities:
- - uid: 1233
- components:
- - type: Transform
- parent: 1231
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatSecsoft
- entities:
- - uid: 14902
- components:
- - type: Transform
- pos: 55.594383,-3.0635004
- parent: 2
-- proto: ClothingHeadHatSurgcapBlue
- entities:
- - uid: 14903
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 46.64194,-27.677853
- parent: 2
- - uid: 14904
- components:
- - type: Transform
- pos: 4.0855947,-52.240982
- parent: 2
-- proto: ClothingHeadHatSyndie
- entities:
- - uid: 14905
- components:
- - type: Transform
- pos: 100.429306,-1.9990987
- parent: 2
- - uid: 38863
- components:
- - type: Transform
- parent: 38860
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatUshanka
- entities:
- - uid: 14906
- components:
- - type: Transform
- pos: 70.485535,-41.48498
- parent: 2
-- proto: ClothingHeadHatWarden
- entities:
- - uid: 14861
- components:
- - type: Transform
- parent: 14858
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHatWelding
- entities:
- - uid: 14907
- components:
- - type: Transform
- pos: -10.523207,-43.260536
- parent: 2
- - uid: 14908
- components:
- - type: Transform
- pos: -49.5,-16.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14909
- components:
- - type: Transform
- pos: -22.5,15.499999
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingHeadHatWeldingMaskFlame
- entities:
- - uid: 14910
- components:
- - type: Transform
- pos: -10.742213,-43.474052
- parent: 2
-- proto: ClothingHeadHatWeldingMaskFlameBlue
- entities:
- - uid: 14911
- components:
- - type: Transform
- pos: -59.520313,42.482796
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14912
- components:
- - type: Transform
- pos: 55.630886,-47.44692
- parent: 2
-- proto: ClothingHeadHatWeldingMaskPainted
- entities:
- - uid: 14913
- components:
- - type: Transform
- pos: -79.500916,13.625097
- parent: 2
- - uid: 14914
- components:
- - type: Transform
- pos: 11.554202,-3.2498593
- parent: 2
-- proto: ClothingHeadHatYellowsoft
- entities:
- - uid: 14915
- components:
- - type: Transform
- pos: 17.533762,27.715107
- parent: 2
-- proto: ClothingHeadHelmetCult
- entities:
- - uid: 14916
- components:
- - type: Transform
- pos: -30.480253,-72.3255
- parent: 2
-- proto: ClothingHeadHelmetERTJanitor
- entities:
- - uid: 1838
- components:
- - type: Transform
- parent: 1832
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHelmetEVA
- entities:
- - uid: 38876
- components:
- - type: Transform
- pos: -14.5,36.5
- parent: 38344
- - uid: 38877
- components:
- - type: Transform
- pos: 12.87703,19.666779
- parent: 38344
-- proto: ClothingHeadHelmetEVALarge
- entities:
- - uid: 14917
- components:
- - type: Transform
- pos: 70.5,-49.5
- parent: 2
-- proto: ClothingHeadHelmetFire
- entities:
- - uid: 14918
- components:
- - type: Transform
- pos: -29.5,-44.5
- parent: 2
-- proto: ClothingHeadHelmetPodWars
- entities:
- - uid: 14919
- components:
- - type: Transform
- pos: -21.007933,-81.30595
- parent: 2
-- proto: ClothingHeadHelmetRiot
- entities:
- - uid: 14920
- components:
- - type: Transform
- pos: 63.387447,7.506543
- parent: 2
- - uid: 14921
- components:
- - type: Transform
- pos: 63.387447,7.506543
- parent: 2
- - uid: 14922
- components:
- - type: Transform
- pos: 63.387447,7.506543
- parent: 2
-- proto: ClothingHeadHelmetSecurityMedic
- entities:
- - uid: 14697
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadHelmetSwat
- entities:
- - uid: 14923
- components:
- - type: Transform
- pos: 70.5,10.5
- parent: 2
-- proto: ClothingHeadNurseHat
- entities:
- - uid: 14924
->>>>>>> master
- components:
- - type: MetaData
- name: шапочка горничной
- - type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 17.5,51.5
- parent: 2
- - uid: 15611
-=======
- pos: 0.027392589,50.83607
- parent: 2
- - uid: 14925
->>>>>>> master
- components:
- - type: MetaData
- desc: Для настоящих мужчин
- name: шапочка горничной
- - type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 11.5,-25.5
- parent: 2
- - uid: 15612
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-27.5
- parent: 2
- - uid: 15613
-=======
- pos: -0.3395255,50.83607
- parent: 2
-- proto: ClothingHeadPyjamaSyndicatePink
- entities:
- - uid: 14926
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -65.24789,-40.09518
- parent: 2
-- proto: ClothingHeadPyjamaSyndicateRed
- entities:
- - uid: 14927
->>>>>>> master
- components:
- - type: MetaData
- desc: Чтобы держать твою милую голову в тепле.
- name: красная пижамная шапочка
- - type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -24.5,-19.5
- parent: 2
- - uid: 15614
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,24.5
- parent: 2
- - uid: 15615
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,57.5
- parent: 2
- - uid: 15616
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,57.5
- parent: 2
- - uid: 15617
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,28.5
- parent: 2
- - uid: 15618
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,53.5
- parent: 2
- - uid: 15619
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-19.5
- parent: 2
- - uid: 15620
- components:
- - type: Transform
- pos: 6.5,49.5
- parent: 2
- - uid: 15621
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,14.5
- parent: 2
- - uid: 15622
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-80.5
- parent: 2
- - uid: 15623
- components:
- - type: Transform
- pos: 33.5,-5.5
- parent: 2
- - uid: 15624
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,6.5
- parent: 2
- - uid: 15625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-10.5
- parent: 2
- - uid: 15626
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,53.5
- parent: 2
- - uid: 15627
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,1.5
- parent: 2
- - uid: 15628
- components:
- - type: Transform
- pos: 35.5,-72.5
- parent: 2
- - uid: 15629
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-19.5
- parent: 2
- - uid: 15630
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-19.5
- parent: 2
- - uid: 15631
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,31.5
- parent: 2
- - uid: 15632
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,10.5
- parent: 2
- - uid: 15633
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,61.5
- parent: 2
- - uid: 15634
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,44.5
- parent: 2
- - uid: 15635
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,32.5
- parent: 2
- - uid: 15636
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,10.5
- parent: 2
- - uid: 15637
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,55.5
- parent: 2
- - uid: 15638
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-19.5
- parent: 2
- - uid: 15639
- components:
- - type: Transform
- pos: -13.5,-41.5
- parent: 2
- - uid: 15640
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,14.5
- parent: 2
- - uid: 15641
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,35.5
- parent: 2
- - uid: 15642
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,17.5
- parent: 2
- - uid: 15643
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-0.5
- parent: 2
- - uid: 15644
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-4.5
- parent: 2
- - uid: 15645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-19.5
- parent: 2
- - uid: 15646
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,33.5
- parent: 2
- - uid: 15647
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-10.5
- parent: 2
- - uid: 15648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,5.5
- parent: 2
- - uid: 15649
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-10.5
- parent: 2
- - uid: 15650
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-24.5
- parent: 2
- - uid: 15651
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-40.5
- parent: 2
- - uid: 15652
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-19.5
- parent: 2
- - uid: 15653
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-8.5
- parent: 2
- - uid: 15654
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,17.5
- parent: 2
- - uid: 15655
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,27.5
- parent: 2
- - uid: 15656
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-61.5
- parent: 2
- - uid: 15657
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-6.5
- parent: 2
- - uid: 15658
- components:
- - type: Transform
- pos: 6.5,51.5
- parent: 2
- - uid: 15659
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,57.5
- parent: 2
- - uid: 15660
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,61.5
- parent: 2
- - uid: 15661
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,61.5
- parent: 2
- - uid: 15662
- components:
- - type: Transform
- pos: 6.5,56.5
- parent: 2
- - uid: 15663
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,57.5
- parent: 2
- - uid: 15664
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-10.5
- parent: 2
- - uid: 15665
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-28.5
- parent: 2
- - uid: 15666
- components:
- - type: Transform
- pos: -13.5,-42.5
- parent: 2
- - uid: 15667
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-28.5
- parent: 2
- - uid: 15668
- components:
- - type: Transform
- pos: -13.5,-43.5
- parent: 2
- - uid: 15669
- components:
- - type: Transform
- pos: -13.5,-44.5
- parent: 2
- - uid: 15670
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,15.5
- parent: 2
- - uid: 15671
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-61.5
- parent: 2
- - uid: 15672
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-28.5
- parent: 2
- - uid: 15673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,23.5
- parent: 2
- - uid: 15674
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-39.5
- parent: 2
- - uid: 15675
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,17.5
- parent: 2
- - uid: 15676
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-10.5
- parent: 2
- - uid: 15677
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,48.5
- parent: 2
- - uid: 15678
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-19.5
- parent: 2
- - uid: 15679
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,39.5
- parent: 2
- - uid: 15680
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-10.5
- parent: 2
- - uid: 15681
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-68.5
- parent: 2
- - uid: 15682
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-61.5
- parent: 2
- - uid: 15683
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-68.5
- parent: 2
- - uid: 15684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-19.5
- parent: 2
- - uid: 15685
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,17.5
- parent: 2
- - uid: 15686
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-19.5
- parent: 2
- - uid: 15687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-28.5
- parent: 2
- - uid: 15688
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,10.5
- parent: 2
- - uid: 15689
- components:
- - type: Transform
- pos: -23.5,56.5
- parent: 2
- - uid: 15690
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,50.5
- parent: 2
- - uid: 15691
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,52.5
- parent: 2
- - uid: 15692
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,57.5
- parent: 2
- - uid: 15693
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,46.5
- parent: 2
- - uid: 15694
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-7.5
- parent: 2
- - uid: 15695
- components:
- - type: Transform
- pos: 21.5,6.5
- parent: 2
- - uid: 15696
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-25.5
- parent: 2
- - uid: 15697
- components:
- - type: Transform
- pos: 35.5,-69.5
- parent: 2
- - uid: 15698
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-40.5
- parent: 2
- - uid: 15699
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-65.5
- parent: 2
- - uid: 15700
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-19.5
- parent: 2
- - uid: 15701
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,5.5
- parent: 2
- - uid: 15702
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-19.5
- parent: 2
- - uid: 15703
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-38.5
- parent: 2
- - uid: 15704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-2.5
- parent: 2
- - uid: 15705
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-27.5
- parent: 2
- - uid: 15706
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-10.5
- parent: 2
- - uid: 15707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-80.5
- parent: 2
- - uid: 15708
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,27.5
- parent: 2
- - uid: 15709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,27.5
- parent: 2
- - uid: 15710
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-80.5
- parent: 2
- - uid: 15711
- components:
- - type: Transform
- pos: -16.5,56.5
- parent: 2
- - uid: 15712
- components:
- - type: Transform
- pos: -13.5,-47.5
- parent: 2
- - uid: 15713
- components:
- - type: Transform
- pos: 33.5,-6.5
- parent: 2
- - uid: 15714
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,27.5
- parent: 2
- - uid: 15715
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,42.5
- parent: 2
- - uid: 15716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,36.5
- parent: 2
- - uid: 15717
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,21.5
- parent: 2
- - uid: 15718
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-10.5
- parent: 2
- - uid: 15719
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,10.5
- parent: 2
- - uid: 15720
- components:
- - type: Transform
- pos: -13.5,-52.5
- parent: 2
- - uid: 15721
- components:
- - type: Transform
- pos: 33.5,-7.5
- parent: 2
- - uid: 15722
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,14.5
- parent: 2
- - uid: 15723
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-24.5
- parent: 2
- - uid: 15724
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-79.5
- parent: 2
- - uid: 15725
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,52.5
- parent: 2
- - uid: 15726
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-10.5
- parent: 2
- - uid: 15727
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-76.5
- parent: 2
- - uid: 15728
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-23.5
- parent: 2
- - uid: 15729
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-78.5
- parent: 2
- - uid: 15730
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,39.5
- parent: 2
- - uid: 15731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-28.5
- parent: 2
- - uid: 15732
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,51.5
- parent: 2
- - uid: 15733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,53.5
- parent: 2
- - uid: 15734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-19.5
- parent: 2
- - uid: 15735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-55.5
- parent: 2
- - uid: 15736
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,14.5
- parent: 2
- - uid: 15737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-61.5
- parent: 2
- - uid: 15738
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-25.5
- parent: 2
- - uid: 15739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,5.5
- parent: 2
- - uid: 15740
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-58.5
- parent: 2
- - uid: 15741
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-1.5
- parent: 2
- - uid: 15742
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,34.5
- parent: 2
- - uid: 15743
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,36.5
- parent: 2
- - uid: 15744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,42.5
- parent: 2
- - uid: 15745
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,42.5
- parent: 2
- - uid: 15746
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-80.5
- parent: 2
- - uid: 15747
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,42.5
- parent: 2
- - uid: 15748
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,40.5
- parent: 2
- - uid: 15749
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,36.5
- parent: 2
- - uid: 15750
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-44.5
- parent: 2
- - uid: 15751
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,22.5
- parent: 2
- - uid: 15752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,5.5
- parent: 2
- - uid: 15753
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,14.5
- parent: 2
- - uid: 15754
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-19.5
- parent: 2
- - uid: 15755
- components:
- - type: Transform
- pos: 25.5,37.5
- parent: 2
- - uid: 15756
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,57.5
- parent: 2
- - uid: 15757
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,23.5
- parent: 2
- - uid: 15758
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-42.5
- parent: 2
- - uid: 15759
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-26.5
- parent: 2
- - uid: 15760
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-5.5
- parent: 2
- - uid: 15761
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-6.5
- parent: 2
- - uid: 15762
- components:
- - type: Transform
- pos: -9.5,-57.5
- parent: 2
- - uid: 15763
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-23.5
- parent: 2
- - uid: 15764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-7.5
- parent: 2
- - uid: 15765
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-35.5
- parent: 2
- - uid: 15766
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-16.5
- parent: 2
- - uid: 15767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-3.5
- parent: 2
- - uid: 15768
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,45.5
- parent: 2
- - uid: 15769
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-51.5
- parent: 2
- - uid: 15770
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-13.5
- parent: 2
- - uid: 15771
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,34.5
- parent: 2
- - uid: 15772
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,59.5
- parent: 2
- - uid: 15773
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,57.5
- parent: 2
- - uid: 15774
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,42.5
- parent: 2
- - uid: 15775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,23.5
- parent: 2
- - uid: 15776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,23.5
- parent: 2
- - uid: 15777
- components:
- - type: Transform
- pos: -30.5,21.5
- parent: 2
- - uid: 15778
- components:
- - type: Transform
- pos: -41.5,51.5
- parent: 2
- - uid: 15779
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,40.5
- parent: 2
- - uid: 15780
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-7.5
- parent: 2
- - uid: 15781
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,5.5
- parent: 2
- - uid: 15782
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-10.5
- parent: 2
- - uid: 15783
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-23.5
- parent: 2
- - uid: 15784
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-67.5
- parent: 2
- - uid: 15785
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,45.5
- parent: 2
- - uid: 15786
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,28.5
- parent: 2
- - uid: 15787
- components:
- - type: Transform
- pos: 9.5,59.5
- parent: 2
- - uid: 15788
-=======
- pos: 45.5,-13.5
- parent: 2
-- proto: ClothingHeadsetBrigmedic
- entities:
- - uid: 14698
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingHeadsetMining
- entities:
- - uid: 14928
- components:
- - type: Transform
- pos: 33.407036,38.515415
- parent: 2
- - uid: 14929
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.94246,38.563385
- parent: 2
- - uid: 38878
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.640516,16.618439
- parent: 38344
-- proto: ClothingMaskBandBlack
- entities:
- - uid: 14930
- components:
- - type: Transform
- pos: -50.521004,-48.42694
- parent: 2
-- proto: ClothingMaskBat
- entities:
- - uid: 14931
- components:
- - type: Transform
- pos: 10.709117,67.608955
- parent: 2
-- proto: ClothingMaskBear
- entities:
- - uid: 14932
- components:
- - type: Transform
- pos: -3.1418045,0.1992526
- parent: 2
-- proto: ClothingMaskBee
- entities:
- - uid: 14933
- components:
- - type: Transform
- pos: 48.406803,-25.420956
- parent: 2
-- proto: ClothingMaskBreath
- entities:
- - uid: 14934
- components:
- - type: Transform
- pos: -40.586826,-13.385798
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14935
- components:
- - type: Transform
- pos: 29.476248,60.442265
- parent: 2
- - uid: 14936
- components:
- - type: Transform
- pos: -49.53151,20.5579
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingMaskClown
- entities:
- - uid: 14937
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.179256,2.4163718
- parent: 2
-- proto: ClothingMaskClownBanana
- entities:
- - uid: 14938
- components:
- - type: Transform
- pos: -40.53833,-69.601776
- parent: 2
-- proto: ClothingMaskFox
- entities:
- - uid: 14939
- components:
- - type: Transform
- pos: 10.886129,67.41721
- parent: 2
- - uid: 14940
- components:
- - type: Transform
- pos: -4.823427,1.9396657
- parent: 2
-- proto: ClothingMaskGas
- entities:
- - uid: 14941
- components:
- - type: Transform
- pos: -29.5,-44.5
- parent: 2
- - uid: 14942
- components:
- - type: Transform
- pos: -18.498352,-32.40024
- parent: 2
- - uid: 14943
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -30.528467,-31.360748
- parent: 2
- - uid: 14944
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -29.768051,-31.44414
- parent: 2
- - uid: 14945
- components:
- - type: Transform
- pos: -44.506374,-30.442978
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14946
- components:
- - type: Transform
- pos: 49.5,-37.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14947
- components:
- - type: Transform
- pos: -40.5,3.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14948
- components:
- - type: Transform
- pos: -39.517647,-50.443714
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14949
- components:
- - type: Transform
- pos: -35.451183,-35.34068
- parent: 2
-- proto: ClothingMaskGasAtmos
- entities:
- - uid: 14950
- components:
- - type: Transform
- pos: -60.561146,22.612343
- parent: 2
- - uid: 14951
- components:
- - type: Transform
- pos: -67.59537,-22.390003
- parent: 2
- - uid: 14952
- components:
- - type: Transform
- pos: -62.433693,8.033986
- parent: 2
-- proto: ClothingMaskGasMerc
- entities:
- - uid: 14953
- components:
- - type: Transform
- pos: -34.478718,-2.3417118
- parent: 2
-- proto: ClothingMaskGasSwat
- entities:
- - uid: 14954
- components:
- - type: Transform
- pos: 68.5,10.5
- parent: 2
-- proto: ClothingMaskGasVoiceChameleon
- entities:
- - uid: 14955
- components:
- - type: Transform
- pos: -24.500002,15.5
- parent: 2
-- proto: ClothingMaskJackal
- entities:
- - uid: 14956
- components:
- - type: Transform
- pos: 11.299159,67.653206
- parent: 2
-- proto: ClothingMaskMuzzle
- entities:
- - uid: 14660
- components:
- - type: Transform
- parent: 14659
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14957
- components:
- - type: Transform
- pos: 42.5,-66.5
- parent: 2
- - uid: 14958
- components:
- - type: Transform
- pos: 73.37959,23.53001
- parent: 2
- - uid: 14959
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.8122,19.013836
- parent: 2
- - uid: 38879
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.4404716,34.765015
- parent: 38344
-- proto: ClothingMaskSexyClown
- entities:
- - uid: 1480
- components:
- - type: Transform
- parent: 1478
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14960
- components:
- - type: Transform
- pos: 47.621845,-53.26381
- parent: 2
-- proto: ClothingMaskSexyMime
- entities:
- - uid: 14962
- components:
- - type: Transform
- parent: 14961
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14965
- components:
- - type: Transform
- pos: -5.5252013,26.629133
- parent: 2
- - uid: 38880
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5029716,34.733765
- parent: 38344
-- proto: ClothingMaskSterile
- entities:
- - uid: 14966
- components:
- - type: Transform
- pos: 6.4998994,-42.29039
- parent: 2
- - uid: 14967
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.401516,-44.661903
- parent: 2
- - uid: 14968
- components:
- - type: Transform
- pos: 45.5,-35.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 14969
- components:
- - type: Transform
- pos: 4.0884237,-13.635049
- parent: 2
- - uid: 14970
- components:
- - type: Transform
- pos: 3.5965211,-52.177906
- parent: 2
- - uid: 14971
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 6.4255085,-14.398419
- parent: 2
-- proto: ClothingNeckBling
- entities:
- - uid: 14389
- components:
- - type: Transform
- parent: 14387
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14972
- components:
- - type: Transform
- pos: 25.452574,16.509296
- parent: 2
- - uid: 14973
- components:
- - type: Transform
- pos: 25.667227,16.59669
- parent: 2
- - uid: 14974
- components:
- - type: Transform
- pos: 25.311596,16.614462
- parent: 2
-- proto: ClothingNeckCloakAce
- entities:
- - uid: 14975
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 81.52312,-4.4664974
- parent: 2
-- proto: ClothingNeckCloakBi
- entities:
- - uid: 14976
- components:
- - type: Transform
- pos: -55.703693,-37.289703
- parent: 2
- - uid: 14977
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 89.51352,-4.435248
- parent: 2
- - uid: 14978
- components:
- - type: Transform
- pos: 51.496376,-25.427755
- parent: 2
-- proto: ClothingNeckCloakEnby
- entities:
- - uid: 14979
- components:
- - type: Transform
- pos: 51.558907,-13.44254
- parent: 2
-- proto: ClothingNeckCloakGay
- entities:
- - uid: 14980
- components:
- - type: Transform
- pos: -55.33888,-37.444935
- parent: 2
-- proto: ClothingNeckCloakGoliathCloak
- entities:
- - uid: 14981
- components:
- - type: Transform
- pos: 43.456936,-24.711899
- parent: 2
-- proto: ClothingNeckCloakHerald
- entities:
- - uid: 14982
- components:
- - type: Transform
- pos: 43.496037,-54.385834
- parent: 2
-- proto: ClothingNeckCloakIntersex
- entities:
- - uid: 14983
- components:
- - type: Transform
- pos: -55.58888,-37.632435
- parent: 2
-- proto: ClothingNeckCloakLesbian
- entities:
- - uid: 14984
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 85.52049,-4.450873
- parent: 2
-- proto: ClothingNeckCloakMiner
- entities:
- - uid: 14985
- components:
- - type: Transform
- pos: -55.51422,-50.568737
- parent: 2
- - uid: 14986
- components:
- - type: Transform
- pos: -102.4832,-18.476238
- parent: 2
- - uid: 38881
- components:
- - type: Transform
- pos: -11.5,19.5
- parent: 38344
-- proto: ClothingNeckCloakTrans
- entities:
- - uid: 14987
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.501427,-71.51004
- parent: 2
- - uid: 14988
- components:
- - type: Transform
- pos: 49.497066,-22.42234
- parent: 2
-- proto: ClothingNeckCloakVoid
- entities:
- - uid: 14989
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 55.4853,-49.404865
- parent: 2
-- proto: ClothingNeckClownmedal
- entities:
- - uid: 14990
- components:
- - type: Transform
- pos: 40.95823,23.521482
- parent: 2
-- proto: ClothingNeckHeadphones
- entities:
- - uid: 14991
- components:
- - type: Transform
- pos: 56.742912,15.760529
- parent: 2
- - uid: 14992
- components:
- - type: Transform
- pos: 56.733246,15.393333
- parent: 2
- - uid: 14993
- components:
- - type: Transform
- pos: 56.733246,15.393333
- parent: 2
- - uid: 14994
- components:
- - type: Transform
- pos: 56.733246,15.393333
- parent: 2
- - uid: 14995
- components:
- - type: Transform
- pos: 56.727287,15.588654
- parent: 2
- - uid: 14996
- components:
- - type: Transform
- pos: 56.733246,15.393333
- parent: 2
- - uid: 14997
- components:
- - type: Transform
- pos: 56.733246,15.377708
- parent: 2
- - uid: 14998
- components:
- - type: Transform
- pos: -58.5,-49.5
- parent: 2
-- proto: ClothingNeckHorrific
- entities:
- - uid: 14870
- components:
- - type: Transform
- parent: 14867
- - type: Physics
- canCollide: False
-- proto: ClothingNeckMantleCap
- entities:
- - uid: 14999
- components:
- - type: Transform
- pos: 13.52143,0.6648903
- parent: 2
-- proto: ClothingNeckMantleCE
- entities:
- - uid: 15000
- components:
- - type: Transform
- pos: -58.490314,5.5715113
- parent: 2
-- proto: ClothingNeckMantleCMO
- entities:
- - uid: 15001
- components:
- - type: Transform
- pos: 24.487383,-50.378414
- parent: 2
-- proto: ClothingNeckMantleHOP
- entities:
- - uid: 15002
- components:
- - type: Transform
- pos: -15.52096,-3.4409883
- parent: 2
-- proto: ClothingNeckMantleHOS
- entities:
- - uid: 15003
- components:
- - type: Transform
- pos: 36.564354,22.725296
- parent: 2
-- proto: ClothingNeckMantleRD
- entities:
- - uid: 15004
- components:
- - type: Transform
- pos: -16.468708,-45.430428
- parent: 2
-- proto: ClothingNeckNanoTrasenPin
- entities:
- - uid: 15005
- components:
- - type: Transform
- pos: 71.252914,-17.538551
- parent: 2
-- proto: ClothingNeckScarfStripedBlack
- entities:
- - uid: 15006
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 51.309025,11.422389
- parent: 2
-- proto: ClothingNeckScarfStripedSyndieGreen
- entities:
- - uid: 14740
- components:
- - type: Transform
- parent: 14738
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingNeckScarfStripedSyndieRed
- entities:
- - uid: 14741
- components:
- - type: Transform
- parent: 14738
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingNeckScarfStripedZebra
- entities:
- - uid: 14963
- components:
- - type: Transform
- parent: 14961
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingNeckStethoscope
- entities:
- - uid: 15007
- components:
- - type: Transform
- pos: 14.568494,-58.43179
- parent: 2
- - uid: 15008
- components:
- - type: Transform
- pos: 32.043938,-26.529804
- parent: 2
- - uid: 15009
- components:
- - type: Transform
- pos: 31.84081,-26.48293
- parent: 2
- - uid: 15010
- components:
- - type: Transform
- pos: 21.703972,-42.332386
- parent: 2
- - uid: 15011
- components:
- - type: Transform
- pos: 47.5,-35.5
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingNeckStoleChaplain
- entities:
- - uid: 15012
- components:
- - type: Transform
- pos: -21.513214,-79.44685
- parent: 2
-- proto: ClothingNeckSyndicakePin
- entities:
- - uid: 14742
- components:
- - type: Transform
- parent: 14738
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 38864
- components:
- - type: Transform
- parent: 38860
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingNeckTieDet
- entities:
- - uid: 14871
- components:
- - type: Transform
- parent: 14867
- - type: Physics
- canCollide: False
- - uid: 15013
- components:
- - type: Transform
- pos: 36.449116,-50.524494
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingNeckTieRed
- entities:
- - uid: 14872
- components:
- - type: Transform
- parent: 14867
- - type: Physics
- canCollide: False
-- proto: ClothingNeckTieSci
- entities:
- - uid: 14873
- components:
- - type: Transform
- parent: 14867
- - type: Physics
- canCollide: False
-- proto: ClothingOuterAerostaticBomberJacket
- entities:
- - uid: 14765
- components:
- - type: Transform
- parent: 14763
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15014
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 98.532684,13.593523
- parent: 2
-- proto: ClothingOuterApronChef
- entities:
- - uid: 15015
- components:
- - type: Transform
- pos: 22.545242,65.64183
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15016
- components:
- - type: Transform
- pos: -28.37068,32.64315
- parent: 2
-- proto: ClothingOuterArmorBulletproof
- entities:
- - uid: 15017
- components:
- - type: Transform
- pos: 61.5,7.5
- parent: 2
- - uid: 15018
- components:
- - type: Transform
- pos: 61.5,7.5
- parent: 2
- - uid: 15019
- components:
- - type: Transform
- pos: 61.5,7.5
- parent: 2
- - uid: 15020
- components:
- - type: Transform
- pos: 61.5,7.5
- parent: 2
-- proto: ClothingOuterArmorHeavy
- entities:
- - uid: 15021
- components:
- - type: Transform
- pos: 69.5,10.5
- parent: 2
- - type: GroupExamine
- group:
- - hoverMessage: ""
- contextText: verb-examine-group-other
- icon: /Textures/Interface/examine-star.png
- components:
- - Armor
- - ClothingSpeedModifier
- entries:
- - message: Понижает вашу скорость на [color=yellow]10%[/color].
- priority: 0
- component: ClothingSpeedModifier
- - message: >-
- Обеспечивает следующую защиту:
-
- - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]80%[/color].
-
- - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]80%[/color].
-
- - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]80%[/color].
-
- - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color].
-
- - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]100%[/color].
-
- - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]25%[/color].
- priority: 0
- component: Armor
- title: null
-- proto: ClothingOuterArmorReflective
- entities:
- - uid: 15022
- components:
- - type: Transform
- pos: 61.5,8.5
- parent: 2
- - uid: 15023
- components:
- - type: Transform
- pos: 61.5,8.5
- parent: 2
- - uid: 15024
- components:
- - type: Transform
- pos: 61.5,8.5
- parent: 2
-- proto: ClothingOuterArmorRiot
- entities:
- - uid: 15025
- components:
- - type: Transform
- pos: 63.512447,7.569043
- parent: 2
- - uid: 15026
- components:
- - type: Transform
- pos: 63.512447,7.569043
- parent: 2
- - uid: 15027
- components:
- - type: Transform
- pos: 63.512447,7.569043
- parent: 2
-- proto: ClothingOuterCardborg
- entities:
- - uid: 15028
- components:
- - type: Transform
- pos: 47.511616,-54.497818
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingOuterCoatAMG
- entities:
- - uid: 15029
- components:
- - type: Transform
- pos: 38.485973,-72.53411
- parent: 2
-- proto: ClothingOuterCoatBomber
- entities:
- - uid: 25
- components:
- - type: Transform
- parent: 14
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15030
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 98.532684,13.327898
- parent: 2
-- proto: ClothingOuterCoatExpensive
- entities:
- - uid: 15031
- components:
- - type: Transform
- pos: 20.5,63.5
- parent: 2
-- proto: ClothingOuterCoatJensen
- entities:
- - uid: 15032
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.450886,-10.224105
- parent: 2
-- proto: ClothingOuterCoatLabSecurityMedic
- entities:
- - uid: 14699
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterCoatWardenAlt
- entities:
- - uid: 14862
- components:
- - type: Transform
- parent: 14858
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterDogi
- entities:
- - uid: 15033
- components:
- - type: Transform
- pos: -55.5,-44.5
- parent: 2
-- proto: ClothingOuterHardsuitBrigmedic
- entities:
- - uid: 14700
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterHardsuitSalvage
- entities:
- - uid: 38882
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,16.5
- parent: 38344
-- proto: ClothingOuterHardsuitSyndicate
- entities:
- - uid: 38883
- components:
- - type: Transform
- pos: -14.5,36.5
- parent: 38344
-- proto: ClothingOuterHoodieBlack
- entities:
- - uid: 15034
- components:
- - type: Transform
- pos: -50.255486,-48.44169
- parent: 2
-- proto: ClothingOuterRobesCult
- entities:
- - uid: 15035
- components:
- - type: Transform
- pos: -30.609613,-76.48932
- parent: 2
-- proto: ClothingOuterStraightjacket
- entities:
- - uid: 14661
- components:
- - type: Transform
- parent: 14659
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15036
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.45677,-66.6926
- parent: 2
- - uid: 15037
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.470066,2.4219537
- parent: 2
- - uid: 15038
- components:
- - type: Transform
- pos: 70.371666,18.826336
- parent: 2
-- proto: ClothingOuterSuitCarp
- entities:
- - uid: 15040
- components:
- - type: Transform
- parent: 15039
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterSuitEmergency
- entities:
- - uid: 15043
- components:
- - type: Transform
- pos: 69.5,-49.5
- parent: 2
-- proto: ClothingOuterSuitFire
- entities:
- - uid: 15044
- components:
- - type: Transform
- pos: -29.5,-44.5
- parent: 2
-- proto: ClothingOuterSuitIan
- entities:
- - uid: 15045
- components:
- - type: Transform
- pos: -40.26674,-59.435745
- parent: 2
-- proto: ClothingOuterVestArmorMedSec
- entities:
- - uid: 14701
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterVestHazard
- entities:
- - uid: 15046
- components:
- - type: Transform
- pos: 20.535162,10.5619135
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15047
- components:
- - type: Transform
- pos: 49.5,-37.5
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ClothingOuterVestSecurityMedic
- entities:
- - uid: 14702
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterWinterCoat
- entities:
- - uid: 15048
- components:
- - type: Transform
- pos: -30.328856,28.425974
- parent: 2
-- proto: ClothingOuterWinterSyndie
- entities:
- - uid: 14743
- components:
- - type: Transform
- parent: 14738
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingRandomSpawner
- entities:
- - uid: 15049
- components:
- - type: Transform
- pos: 11.345603,70.69221
- parent: 2
- - uid: 15050
- components:
- - type: Transform
- pos: 11.6524935,70.487724
- parent: 2
- - uid: 15051
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -57.70558,-20.529505
- parent: 2
- - uid: 15052
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -57.314957,-20.404505
- parent: 2
-- proto: ClothingShoesAerostatic
- entities:
- - uid: 14766
- components:
- - type: Transform
- parent: 14763
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesBootsCombatFilled
- entities:
- - uid: 15053
- components:
- - type: Transform
- pos: 36.193935,21.963104
- parent: 2
-- proto: ClothingShoesBootsJack
- entities:
- - uid: 26
- components:
- - type: Transform
- parent: 14
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesBootsLaceup
- entities:
- - uid: 15054
- components:
- - type: Transform
- pos: -49.50318,-48.500687
- parent: 2
-- proto: ClothingShoesBootsMag
- entities:
- - uid: 14807
- components:
- - type: Transform
- parent: 14805
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14811
- components:
- - type: Transform
- parent: 14809
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14815
- components:
- - type: Transform
- parent: 14813
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15055
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -15.64907,-14.485182
- parent: 2
- - uid: 15056
- components:
- - type: Transform
- pos: -45.534843,-13.538627
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15057
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -15.367821,-14.532057
- parent: 2
-- proto: ClothingShoesBootsPerformer
- entities:
- - uid: 15058
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -6.253917,54.752438
- parent: 2
-- proto: ClothingShoesBootsWinterSyndicate
- entities:
- - uid: 14744
- components:
- - type: Transform
- parent: 14738
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 38865
- components:
- - type: Transform
- parent: 38860
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesChef
- entities:
- - uid: 15059
- components:
- - type: Transform
- pos: -32.67555,29.368694
- parent: 2
-- proto: ClothingShoesClownBanana
- entities:
- - uid: 15060
- components:
- - type: Transform
- pos: -40.55056,-69.51617
- parent: 2
-- proto: ClothingShoesColorGreen
- entities:
- - uid: 15061
- components:
- - type: Transform
- pos: 56.42251,-3.969751
- parent: 2
-- proto: ClothingShoesCult
- entities:
- - uid: 15062
- components:
- - type: Transform
- pos: -35.632423,-77.37206
- parent: 2
-- proto: ClothingShoesGaloshes
- entities:
- - uid: 1839
- components:
- - type: Transform
- parent: 1832
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1840
- components:
- - type: Transform
- parent: 1832
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesGreenLizardskin
- entities:
- - uid: 15063
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -113.07703,31.604595
- parent: 2
-- proto: ClothingShoesSchoolBlack
- entities:
- - uid: 14670
- components:
- - type: Transform
- parent: 14669
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesSchoolWhite
- entities:
- - uid: 14671
- components:
- - type: Transform
- parent: 14669
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesSlippers
- entities:
- - uid: 14745
- components:
- - type: Transform
- parent: 14738
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15064
- components:
- - type: Transform
- pos: 49.5,-16.5
- parent: 2
-- proto: ClothingShoesSwat
- entities:
- - uid: 15065
- components:
- - type: Transform
- pos: 68.5,8.5
- parent: 2
-- proto: ClothingShoesTourist
- entities:
- - uid: 14797
- components:
- - type: Transform
- parent: 14794
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesWizard
- entities:
- - uid: 15066
->>>>>>> master
- components:
- - type: MetaData
- desc: Японские деревянные сандалии.
- name: гэта
- - type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: 11.5,45.5
- parent: 2
- - uid: 15789
-=======
- pos: -45.41999,-48.686264
- parent: 2
- - uid: 15067
->>>>>>> master
- components:
- - type: MetaData
- desc: Японские деревянные сандалии.
- name: гэта
- - type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -13.5,14.5
- parent: 2
- - uid: 15790
-=======
- pos: -46.688583,-48.627266
- parent: 2
- - uid: 15069
->>>>>>> master
- components:
- - type: MetaData
- desc: Пара удобных летних тапочек.
- name: сланцы
- - type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 21.5,36.5
- parent: 2
- - uid: 15791
-=======
- parent: 15068
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15074
->>>>>>> master
- components:
- - type: MetaData
- desc: Пара удобных летних тапочек.
- name: сланцы
- - type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -12.5,14.5
- parent: 2
- - uid: 15792
-=======
- parent: 15073
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15079
->>>>>>> master
- components:
- - type: MetaData
- desc: Пара удобных летних тапочек.
- name: сланцы
- - type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 17.5,-45.5
- parent: 2
- - uid: 15793
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-1.5
- parent: 2
- - uid: 15794
- components:
- - type: Transform
- pos: 21.5,9.5
- parent: 2
- - uid: 15795
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,2.5
- parent: 2
- - uid: 15796
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-25.5
- parent: 2
- - uid: 15797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-3.5
- parent: 2
- - uid: 15798
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,39.5
- parent: 2
- - uid: 15799
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,48.5
- parent: 2
- - uid: 15800
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,61.5
- parent: 2
- - uid: 15801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,23.5
- parent: 2
- - uid: 15802
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-10.5
- parent: 2
- - uid: 15803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,5.5
- parent: 2
- - uid: 15804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,5.5
- parent: 2
- - uid: 15805
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-10.5
- parent: 2
- - uid: 15806
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-26.5
- parent: 2
- - uid: 15807
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-9.5
- parent: 2
- - uid: 15808
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,29.5
- parent: 2
- - uid: 15809
- components:
- - type: Transform
- pos: 6.5,54.5
- parent: 2
- - uid: 15810
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,12.5
- parent: 2
- - uid: 15811
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-9.5
- parent: 2
- - uid: 15812
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-68.5
- parent: 2
- - uid: 15813
- components:
- - type: Transform
- pos: -8.5,-28.5
- parent: 2
- - uid: 15814
- components:
- - type: Transform
- pos: -41.5,49.5
- parent: 2
- - uid: 15815
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,20.5
- parent: 2
- - uid: 15816
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-20.5
- parent: 2
- - uid: 15817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-62.5
- parent: 2
- - uid: 15818
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-28.5
- parent: 2
- - uid: 15819
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-56.5
- parent: 2
- - uid: 15820
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-51.5
- parent: 2
- - uid: 15821
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,34.5
- parent: 2
- - uid: 15822
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,60.5
- parent: 2
- - uid: 15823
- components:
- - type: Transform
- pos: -41.5,44.5
- parent: 2
- - uid: 15824
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,57.5
- parent: 2
- - uid: 15825
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,55.5
- parent: 2
- - uid: 15826
- components:
- - type: Transform
- pos: -30.5,14.5
- parent: 2
- - uid: 15827
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,61.5
- parent: 2
- - uid: 15828
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,48.5
- parent: 2
- - uid: 15829
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,42.5
- parent: 2
- - uid: 15830
- components:
- - type: Transform
- pos: -9.5,-30.5
- parent: 2
- - uid: 15831
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,21.5
- parent: 2
- - uid: 15832
- components:
- - type: Transform
- pos: -41.5,48.5
- parent: 2
- - uid: 15833
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,39.5
- parent: 2
- - uid: 15834
- components:
- - type: Transform
- pos: -24.5,-38.5
- parent: 2
- - uid: 15835
- components:
- - type: Transform
- pos: -18.5,15.5
- parent: 2
- - uid: 15836
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-7.5
- parent: 2
- - uid: 15837
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-26.5
- parent: 2
- - uid: 15838
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-3.5
- parent: 2
- - uid: 15839
- components:
- - type: Transform
- pos: -27.5,59.5
- parent: 2
- - uid: 15840
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,45.5
- parent: 2
- - uid: 15841
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-3.5
- parent: 2
- - uid: 15842
- components:
- - type: Transform
- pos: -8.5,-31.5
- parent: 2
- - uid: 15843
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,3.5
- parent: 2
- - uid: 15844
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,61.5
- parent: 2
- - uid: 15845
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-1.5
- parent: 2
- - uid: 15846
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-46.5
- parent: 2
- - uid: 15847
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-35.5
- parent: 2
- - uid: 15848
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-18.5
- parent: 2
- - uid: 15849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,38.5
- parent: 2
- - uid: 15850
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,36.5
- parent: 2
- - uid: 15851
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-9.5
- parent: 2
- - uid: 15852
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-68.5
- parent: 2
- - uid: 15853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-39.5
- parent: 2
- - uid: 15854
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-19.5
- parent: 2
- - uid: 15855
- components:
- - type: Transform
- pos: 35.5,-71.5
- parent: 2
- - uid: 15856
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,0.5
- parent: 2
- - uid: 15857
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,56.5
- parent: 2
- - uid: 15858
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,30.5
- parent: 2
- - uid: 15859
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,43.5
- parent: 2
- - uid: 15860
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,29.5
- parent: 2
- - uid: 15861
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,57.5
- parent: 2
- - uid: 15862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,17.5
- parent: 2
- - uid: 15863
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,17.5
- parent: 2
- - uid: 15864
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,13.5
- parent: 2
- - uid: 15865
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,27.5
- parent: 2
- - uid: 15866
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,37.5
- parent: 2
- - uid: 15867
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,42.5
- parent: 2
- - uid: 15868
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,17.5
- parent: 2
- - uid: 15869
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,41.5
- parent: 2
- - uid: 15870
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-2.5
- parent: 2
- - uid: 15871
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,27.5
- parent: 2
- - uid: 15872
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,34.5
- parent: 2
- - uid: 15873
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-12.5
- parent: 2
- - uid: 15874
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,57.5
- parent: 2
- - uid: 15875
- components:
- - type: Transform
- pos: 6.5,55.5
- parent: 2
- - uid: 15876
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,61.5
- parent: 2
- - uid: 15877
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-75.5
- parent: 2
- - uid: 15878
- components:
- - type: Transform
- pos: -30.5,8.5
- parent: 2
- - uid: 15879
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,35.5
- parent: 2
- - uid: 15880
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,29.5
- parent: 2
- - uid: 15881
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,30.5
- parent: 2
- - uid: 15882
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,30.5
- parent: 2
- - uid: 15883
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,30.5
- parent: 2
- - uid: 15884
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,30.5
- parent: 2
- - uid: 15885
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,30.5
- parent: 2
- - uid: 15886
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,30.5
- parent: 2
- - uid: 15887
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,30.5
- parent: 2
- - uid: 15888
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,30.5
- parent: 2
- - uid: 15889
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,30.5
- parent: 2
- - uid: 15890
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,30.5
- parent: 2
- - uid: 15891
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,30.5
- parent: 2
- - uid: 15892
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,30.5
- parent: 2
- - uid: 15893
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,30.5
- parent: 2
- - uid: 15894
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,30.5
- parent: 2
- - uid: 15895
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,30.5
- parent: 2
- - uid: 15896
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,30.5
- parent: 2
- - uid: 15897
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,30.5
- parent: 2
- - uid: 15898
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,23.5
- parent: 2
- - uid: 15899
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,30.5
- parent: 2
- - uid: 15900
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,30.5
- parent: 2
- - uid: 15901
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,30.5
- parent: 2
- - uid: 15902
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,30.5
- parent: 2
- - uid: 15903
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,30.5
- parent: 2
- - uid: 15904
- components:
- - type: Transform
- pos: 20.5,31.5
- parent: 2
- - uid: 15905
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,23.5
- parent: 2
- - uid: 15906
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-41.5
- parent: 2
- - uid: 15907
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,23.5
- parent: 2
- - uid: 15908
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-25.5
- parent: 2
- - uid: 15909
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-1.5
- parent: 2
- - uid: 15910
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-3.5
- parent: 2
- - uid: 15911
- components:
- - type: Transform
- pos: -29.5,41.5
- parent: 2
- - uid: 15912
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,14.5
- parent: 2
- - uid: 15913
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,61.5
- parent: 2
- - uid: 15914
- components:
- - type: Transform
- pos: 20.5,32.5
- parent: 2
- - uid: 15915
- components:
- - type: Transform
- pos: 20.5,33.5
- parent: 2
- - uid: 15916
- components:
- - type: Transform
- pos: 20.5,34.5
- parent: 2
- - uid: 15917
- components:
- - type: Transform
- pos: 20.5,35.5
- parent: 2
- - uid: 15918
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,14.5
- parent: 2
- - uid: 15919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,57.5
- parent: 2
- - uid: 15920
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,34.5
- parent: 2
- - uid: 15921
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-61.5
- parent: 2
- - uid: 15922
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-19.5
- parent: 2
- - uid: 15923
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,29.5
- parent: 2
- - uid: 15924
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,28.5
- parent: 2
- - uid: 15925
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,27.5
- parent: 2
- - uid: 15926
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-18.5
- parent: 2
- - uid: 15927
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,5.5
- parent: 2
- - uid: 15928
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-64.5
- parent: 2
- - uid: 15929
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,57.5
- parent: 2
- - uid: 15930
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-28.5
- parent: 2
- - uid: 15931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,40.5
- parent: 2
- - uid: 15932
- components:
- - type: Transform
- pos: 10.5,30.5
- parent: 2
- - uid: 15933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-2.5
- parent: 2
- - uid: 15934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-24.5
- parent: 2
- - uid: 15935
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-37.5
- parent: 2
- - uid: 15936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,5.5
- parent: 2
- - uid: 15937
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-10.5
- parent: 2
- - uid: 15938
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-66.5
- parent: 2
- - uid: 15939
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,45.5
- parent: 2
- - uid: 15940
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-10.5
- parent: 2
- - uid: 15941
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-68.5
- parent: 2
- - uid: 15942
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-61.5
- parent: 2
- - uid: 15943
- components:
- - type: Transform
- pos: -13.5,-54.5
- parent: 2
- - uid: 15944
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,49.5
- parent: 2
- - uid: 15945
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,41.5
- parent: 2
- - uid: 15946
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-61.5
- parent: 2
- - uid: 15947
- components:
- - type: Transform
- pos: 35.5,-20.5
- parent: 2
- - uid: 15948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-10.5
- parent: 2
- - uid: 15949
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,5.5
- parent: 2
- - uid: 15950
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-10.5
- parent: 2
- - uid: 15951
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-25.5
- parent: 2
- - uid: 15952
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-38.5
- parent: 2
- - uid: 15953
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-61.5
- parent: 2
- - uid: 15954
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,4.5
- parent: 2
- - uid: 15955
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,57.5
- parent: 2
- - uid: 15956
- components:
- - type: Transform
- pos: 6.5,53.5
- parent: 2
- - uid: 15957
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-29.5
- parent: 2
- - uid: 15958
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,42.5
- parent: 2
- - uid: 15959
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,27.5
- parent: 2
- - uid: 15960
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,28.5
- parent: 2
- - uid: 15961
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-7.5
- parent: 2
- - uid: 15962
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,57.5
- parent: 2
- - uid: 15963
- components:
- - type: Transform
- pos: 6.5,52.5
- parent: 2
- - uid: 15964
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-3.5
- parent: 2
- - uid: 15965
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,27.5
- parent: 2
- - uid: 15966
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,33.5
- parent: 2
- - uid: 15967
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,23.5
- parent: 2
- - uid: 15968
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,11.5
- parent: 2
- - uid: 15969
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-28.5
- parent: 2
- - uid: 15970
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,40.5
- parent: 2
- - uid: 15971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,31.5
- parent: 2
- - uid: 15972
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-33.5
- parent: 2
- - uid: 15973
- components:
- - type: Transform
- pos: -13.5,-50.5
- parent: 2
- - uid: 15974
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,24.5
- parent: 2
- - uid: 15975
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-4.5
- parent: 2
- - uid: 15976
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-19.5
- parent: 2
- - uid: 15977
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,30.5
- parent: 2
- - uid: 15978
- components:
- - type: Transform
- pos: -24.5,-37.5
- parent: 2
- - uid: 15979
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-25.5
- parent: 2
- - uid: 15980
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,23.5
- parent: 2
- - uid: 15981
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-70.5
- parent: 2
- - uid: 15982
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,27.5
- parent: 2
- - uid: 15983
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-26.5
- parent: 2
- - uid: 15984
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,56.5
- parent: 2
- - uid: 15985
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-10.5
- parent: 2
- - uid: 15986
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-14.5
- parent: 2
- - uid: 15987
- components:
- - type: Transform
- pos: 35.5,-21.5
- parent: 2
- - uid: 15988
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-25.5
- parent: 2
- - uid: 15989
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-4.5
- parent: 2
- - uid: 15990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-25.5
- parent: 2
- - uid: 15991
- components:
- - type: Transform
- pos: -18.5,16.5
- parent: 2
- - uid: 15992
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-3.5
- parent: 2
- - uid: 15993
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,30.5
- parent: 2
- - uid: 15994
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-44.5
- parent: 2
- - uid: 15995
- components:
- - type: Transform
- pos: -18.5,17.5
- parent: 2
- - uid: 15996
- components:
- - type: Transform
- pos: -32.5,-24.5
- parent: 2
- - uid: 15997
- components:
- - type: Transform
- pos: -18.5,18.5
- parent: 2
- - uid: 15998
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,8.5
- parent: 2
- - uid: 15999
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,7.5
- parent: 2
- - uid: 16000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-11.5
- parent: 2
- - uid: 16001
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,24.5
- parent: 2
- - uid: 16002
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-28.5
- parent: 2
- - uid: 16003
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-32.5
- parent: 2
- - uid: 16004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-19.5
- parent: 2
- - uid: 16005
- components:
- - type: Transform
- pos: -13.5,-51.5
- parent: 2
- - uid: 16006
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,26.5
- parent: 2
- - uid: 16007
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,2.5
- parent: 2
- - uid: 16008
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-10.5
- parent: 2
- - uid: 16009
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,38.5
- parent: 2
- - uid: 16010
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,57.5
- parent: 2
- - uid: 16011
- components:
- - type: Transform
- pos: 6.5,50.5
- parent: 2
- - uid: 16012
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,35.5
- parent: 2
- - uid: 16013
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,41.5
- parent: 2
- - uid: 16014
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-77.5
- parent: 2
- - uid: 16015
- components:
- - type: Transform
- pos: -18.5,19.5
- parent: 2
- - uid: 16016
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-11.5
- parent: 2
- - uid: 16017
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-19.5
- parent: 2
- - uid: 16018
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,25.5
- parent: 2
- - uid: 16019
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,37.5
- parent: 2
- - uid: 16020
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-22.5
- parent: 2
- - uid: 16021
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,9.5
- parent: 2
- - uid: 16022
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-10.5
- parent: 2
- - uid: 16023
- components:
- - type: Transform
- pos: -30.5,9.5
- parent: 2
- - uid: 16024
- components:
- - type: Transform
- pos: 33.5,-8.5
- parent: 2
- - uid: 16025
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-19.5
- parent: 2
- - uid: 16026
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-44.5
- parent: 2
- - uid: 16027
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-44.5
- parent: 2
- - uid: 16028
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-33.5
- parent: 2
- - uid: 16029
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-12.5
- parent: 2
- - uid: 16030
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,25.5
- parent: 2
- - uid: 16031
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-33.5
- parent: 2
- - uid: 16032
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,30.5
- parent: 2
- - uid: 16033
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,35.5
- parent: 2
- - uid: 16034
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-10.5
- parent: 2
- - uid: 16035
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-29.5
- parent: 2
- - uid: 16036
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-5.5
- parent: 2
- - uid: 16037
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,32.5
- parent: 2
- - uid: 16038
- components:
- - type: Transform
- pos: -34.5,-30.5
- parent: 2
- - uid: 16039
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,19.5
- parent: 2
- - uid: 16040
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-19.5
- parent: 2
- - uid: 16041
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,34.5
- parent: 2
- - uid: 16042
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,41.5
- parent: 2
- - uid: 16043
- components:
- - type: Transform
- pos: -41.5,46.5
- parent: 2
- - uid: 16044
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,23.5
- parent: 2
- - uid: 16045
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,57.5
- parent: 2
- - uid: 16046
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,57.5
- parent: 2
- - uid: 16047
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,25.5
- parent: 2
- - uid: 16048
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-19.5
- parent: 2
- - uid: 16049
- components:
- - type: Transform
- pos: 10.5,31.5
- parent: 2
- - uid: 16050
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-33.5
- parent: 2
- - uid: 16051
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-3.5
- parent: 2
- - uid: 16052
- components:
- - type: Transform
- pos: -24.5,-42.5
- parent: 2
- - uid: 16053
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,43.5
- parent: 2
- - uid: 16054
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,44.5
- parent: 2
- - uid: 16055
- components:
- - type: Transform
- pos: -18.5,20.5
- parent: 2
- - uid: 16056
- components:
- - type: Transform
- pos: -40.5,-24.5
- parent: 2
- - uid: 16057
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,11.5
- parent: 2
- - uid: 16058
- components:
- - type: Transform
- pos: -36.5,-24.5
- parent: 2
- - uid: 16059
- components:
- - type: Transform
- pos: -24.5,-39.5
- parent: 2
- - uid: 16060
- components:
- - type: Transform
- pos: -24.5,-40.5
- parent: 2
- - uid: 16061
- components:
- - type: Transform
- pos: -18.5,21.5
- parent: 2
- - uid: 16062
- components:
- - type: Transform
- pos: -24.5,-41.5
- parent: 2
- - uid: 16063
- components:
- - type: Transform
- pos: -13.5,-45.5
- parent: 2
- - uid: 16064
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-19.5
- parent: 2
- - uid: 16065
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,23.5
- parent: 2
- - uid: 16066
- components:
- - type: Transform
- pos: 4.5,-21.5
- parent: 2
- - uid: 16067
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,31.5
- parent: 2
- - uid: 16068
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,45.5
- parent: 2
- - uid: 16069
- components:
- - type: Transform
- pos: 4.5,-20.5
- parent: 2
- - uid: 16070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,23.5
- parent: 2
- - uid: 16071
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-19.5
- parent: 2
- - uid: 16072
- components:
- - type: Transform
- pos: -13.5,-46.5
- parent: 2
- - uid: 16073
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,32.5
- parent: 2
- - uid: 16074
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,46.5
- parent: 2
- - uid: 16075
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-1.5
- parent: 2
- - uid: 16076
- components:
- - type: Transform
- pos: -9.5,-58.5
- parent: 2
- - uid: 16077
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-23.5
- parent: 2
- - uid: 16078
- components:
- - type: Transform
- pos: -9.5,-56.5
- parent: 2
- - uid: 16079
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,23.5
- parent: 2
- - uid: 16080
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-28.5
- parent: 2
- - uid: 16081
- components:
- - type: Transform
- pos: -30.5,11.5
- parent: 2
- - uid: 16082
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-33.5
- parent: 2
- - uid: 16083
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,41.5
- parent: 2
- - uid: 16084
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-9.5
- parent: 2
- - uid: 16085
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,28.5
- parent: 2
- - uid: 16086
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-31.5
- parent: 2
- - uid: 16087
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,23.5
- parent: 2
- - uid: 16088
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-44.5
- parent: 2
- - uid: 16089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,55.5
- parent: 2
- - uid: 16090
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-1.5
- parent: 2
- - uid: 16091
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-33.5
- parent: 2
- - uid: 16092
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,23.5
- parent: 2
- - uid: 16093
- components:
- - type: Transform
- pos: -9.5,-32.5
- parent: 2
- - uid: 16094
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-44.5
- parent: 2
- - uid: 16095
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,52.5
- parent: 2
- - uid: 16096
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,14.5
- parent: 2
- - uid: 16097
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,33.5
- parent: 2
- - uid: 16098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,33.5
- parent: 2
- - uid: 16099
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,33.5
- parent: 2
- - uid: 16100
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,22.5
- parent: 2
- - uid: 16101
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-55.5
- parent: 2
- - uid: 16102
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,23.5
- parent: 2
- - uid: 16103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,41.5
- parent: 2
- - uid: 16104
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,0.5
- parent: 2
- - uid: 16105
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-80.5
- parent: 2
- - uid: 16106
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-14.5
- parent: 2
- - uid: 16107
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,40.5
- parent: 2
- - uid: 16108
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-17.5
- parent: 2
- - uid: 16109
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-46.5
- parent: 2
- - uid: 16110
- components:
- - type: Transform
- pos: 33.5,-4.5
- parent: 2
- - uid: 16111
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,57.5
- parent: 2
- - uid: 16112
- components:
- - type: Transform
- pos: -30.5,19.5
- parent: 2
- - uid: 16113
- components:
- - type: Transform
- pos: -30.5,6.5
- parent: 2
- - uid: 16114
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,57.5
- parent: 2
- - uid: 16115
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,42.5
- parent: 2
- - uid: 16116
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,7.5
- parent: 2
- - uid: 16117
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,39.5
- parent: 2
- - uid: 16118
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-36.5
- parent: 2
- - uid: 16119
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,13.5
- parent: 2
- - uid: 16120
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,57.5
- parent: 2
- - uid: 16121
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-80.5
- parent: 2
- - uid: 16122
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-30.5
- parent: 2
- - uid: 16123
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,61.5
- parent: 2
- - uid: 16124
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-24.5
- parent: 2
- - uid: 16125
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,17.5
- parent: 2
- - uid: 16126
- components:
- - type: Transform
- pos: 10.5,33.5
- parent: 2
- - uid: 16127
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,34.5
- parent: 2
- - uid: 16128
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,47.5
- parent: 2
- - uid: 16129
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,47.5
- parent: 2
- - uid: 16130
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,36.5
- parent: 2
- - uid: 16131
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,10.5
- parent: 2
- - uid: 16132
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-72.5
- parent: 2
- - uid: 16133
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-80.5
- parent: 2
- - uid: 16134
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,57.5
- parent: 2
- - uid: 16135
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,29.5
- parent: 2
- - uid: 16136
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,27.5
- parent: 2
- - uid: 16137
- components:
- - type: Transform
- pos: 6.5,48.5
- parent: 2
- - uid: 16138
- components:
- - type: Transform
- pos: 9.5,60.5
- parent: 2
- - uid: 16139
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,54.5
- parent: 2
- - uid: 16140
- components:
- - type: Transform
- pos: -13.5,-40.5
- parent: 2
- - uid: 16141
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-19.5
- parent: 2
- - uid: 16142
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-3.5
- parent: 2
- - uid: 16143
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-19.5
- parent: 2
- - uid: 16144
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,47.5
- parent: 2
- - uid: 16145
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,23.5
- parent: 2
- - uid: 16146
- components:
- - type: Transform
- pos: 35.5,-70.5
- parent: 2
- - uid: 16147
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-40.5
- parent: 2
- - uid: 16148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,9.5
- parent: 2
- - uid: 16149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,8.5
- parent: 2
- - uid: 16150
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,7.5
- parent: 2
- - uid: 16151
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,6.5
- parent: 2
- - uid: 16152
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,5.5
- parent: 2
- - uid: 16153
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,4.5
- parent: 2
- - uid: 16154
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,3.5
- parent: 2
- - uid: 16155
- components:
- - type: Transform
- pos: 0.5,-66.5
- parent: 2
- - uid: 16156
- components:
- - type: Transform
- pos: 0.5,-65.5
- parent: 2
- - uid: 16157
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,61.5
- parent: 2
- - uid: 16158
-=======
- parent: 15078
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUnderSocksCoder
- entities:
- - uid: 15083
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -57.679985,7.456685
- parent: 2
- - uid: 15084
- components:
- - type: Transform
- pos: -58.5,-49.5
- parent: 2
- - uid: 15085
- components:
- - type: Transform
- pos: -29.321905,-69.36804
- parent: 2
-- proto: ClothingUniformJumpskirtBrigmedic
- entities:
- - uid: 14703
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtDetectiveGrey
- entities:
- - uid: 15086
- components:
- - type: Transform
- pos: -36.5,59.5
- parent: 2
-- proto: ClothingUniformJumpskirtElegantMaid
- entities:
- - uid: 14798
- components:
- - type: Transform
- parent: 14794
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15087
- components:
- - type: Transform
- pos: 0.036769398,50.45079
- parent: 2
- - uid: 15088
- components:
- - type: Transform
- pos: -0.33014846,50.450794
- parent: 2
-- proto: ClothingUniformJumpskirtHoSParadeMale
- entities:
- - uid: 15090
- components:
- - type: Transform
- parent: 15089
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtJanimaidmini
- entities:
- - uid: 15092
- components:
- - type: Transform
- pos: 53.54969,-25.345713
- parent: 2
- - uid: 15093
- components:
- - type: Transform
- pos: -0.29345667,50.450794
- parent: 2
-- proto: ClothingUniformJumpskirtJanitor
- entities:
- - uid: 1841
- components:
- - type: Transform
- parent: 1832
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1842
- components:
- - type: Transform
- parent: 1832
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtPerformer
- entities:
- - uid: 15094
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -6.6330657,54.752438
- parent: 2
-- proto: ClothingUniformJumpskirtPrisoner
- entities:
- - uid: 15096
- components:
- - type: Transform
- parent: 15095
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15097
- components:
- - type: Transform
- parent: 15095
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15101
- components:
- - type: Transform
- parent: 15100
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15102
- components:
- - type: Transform
- parent: 15100
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtSchool
- entities:
- - uid: 14672
- components:
- - type: Transform
- parent: 14669
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14673
- components:
- - type: Transform
- parent: 14669
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitAerostatic
- entities:
- - uid: 14767
- components:
- - type: Transform
- parent: 14763
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitBrigmedic
- entities:
- - uid: 14704
- components:
- - type: Transform
- parent: 14691
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitClownBanana
- entities:
- - uid: 15105
- components:
- - type: Transform
- pos: -40.58059,-69.534195
- parent: 2
-- proto: ClothingUniformJumpsuitColorBlack
- entities:
- - uid: 15106
- components:
- - type: Transform
- pos: -49.827705,-48.589184
- parent: 2
-- proto: ClothingUniformJumpsuitDetective
- entities:
- - uid: 1806
- components:
- - type: Transform
- parent: 1803
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitDetectiveGrey
- entities:
- - uid: 15107
- components:
- - type: Transform
- pos: -36.5,59.5
- parent: 2
-- proto: ClothingUniformJumpsuitHoSParadeMale
- entities:
- - uid: 15091
- components:
- - type: Transform
- parent: 15089
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitKimono
- entities:
- - uid: 15108
- components:
- - type: Transform
- pos: -46.6148,-48.380947
- parent: 2
- - uid: 15109
- components:
- - type: Transform
- pos: -45.355076,-48.42951
- parent: 2
-- proto: ClothingUniformJumpsuitLoungewear
- entities:
- - uid: 15110
- components:
- - type: Transform
- pos: -55.444347,-45.36158
- parent: 2
-- proto: ClothingUniformJumpsuitNanotrasen
- entities:
- - uid: 15111
- components:
- - type: Transform
- pos: 6.542385,-83.541824
- parent: 2
-- proto: ClothingUniformJumpsuitPrisoner
- entities:
- - uid: 15098
- components:
- - type: Transform
- parent: 15095
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15099
- components:
- - type: Transform
- parent: 15095
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15103
- components:
- - type: Transform
- parent: 15100
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15104
- components:
- - type: Transform
- parent: 15100
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitRepairmanNT
- entities:
- - uid: 15112
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: 65.47924,-41.4147
- parent: 2
-- proto: ClothingUniformJumpsuitRepairmanSyndie
- entities:
- - uid: 15113
- components:
- - type: Transform
- pos: -34.717594,-33.68413
- parent: 2
-- proto: ClothingUniformJumpsuitSecBlue
- entities:
- - uid: 27
- components:
- - type: Transform
- parent: 14
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitSyndieFormal
- entities:
- - uid: 38866
- components:
- - type: Transform
- parent: 38860
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClownRecorder
- entities:
- - uid: 15114
- components:
- - type: Transform
- pos: -8.497296,31.748924
- parent: 2
- - uid: 15115
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -45.467587,-68.5456
- parent: 2
-- proto: Cobweb1
- entities:
- - uid: 15116
- components:
- - type: Transform
- pos: -41.5,-16.5
- parent: 2
- - uid: 15117
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-14.5
- parent: 2
- - uid: 15118
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-16.5
- parent: 2
- - uid: 15119
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-17.5
- parent: 2
- - uid: 15120
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-17.5
- parent: 2
- - uid: 15121
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-17.5
- parent: 2
- - uid: 15122
- components:
- - type: Transform
- pos: -41.5,-13.5
- parent: 2
- - uid: 15123
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-17.5
- parent: 2
- - uid: 15124
- components:
- - type: Transform
- pos: -36.5,-72.5
- parent: 2
- - uid: 15125
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-62.5
- parent: 2
- - uid: 15126
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-16.5
- parent: 2
- - uid: 15127
- components:
- - type: Transform
- pos: -39.5,-17.5
- parent: 2
- - uid: 15128
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-16.5
- parent: 2
- - uid: 15129
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-16.5
- parent: 2
- - uid: 15130
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-36.5
- parent: 2
- - uid: 15131
- components:
- - type: Transform
- pos: 97.5,-1.5
- parent: 2
- - uid: 15132
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 97.5,5.5
- parent: 2
- - uid: 15133
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 79.5,6.5
- parent: 2
- - uid: 15134
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-33.5
- parent: 2
- - uid: 15135
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,-36.5
- parent: 2
- - uid: 15136
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-36.5
- parent: 2
- - uid: 15137
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-35.5
- parent: 2
- - uid: 15138
- components:
- - type: Transform
- pos: -70.5,-35.5
- parent: 2
- - uid: 15139
- components:
- - type: Transform
- pos: -69.5,-34.5
- parent: 2
- - uid: 15140
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-34.5
- parent: 2
- - uid: 15141
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-34.5
- parent: 2
- - uid: 15142
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-34.5
- parent: 2
- - uid: 15144
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-34.5
- parent: 2
- - uid: 15145
- components:
- - type: Transform
- pos: -71.5,-39.5
- parent: 2
- - uid: 15146
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,-47.5
- parent: 2
-- proto: Cobweb2
- entities:
- - uid: 15147
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-14.5
- parent: 2
- - uid: 15148
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-16.5
- parent: 2
- - uid: 15149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-14.5
- parent: 2
- - uid: 15150
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-15.5
- parent: 2
- - uid: 15151
- components:
- - type: Transform
- pos: -38.5,-13.5
- parent: 2
- - uid: 15152
- components:
- - type: Transform
- pos: -30.5,-59.5
- parent: 2
- - uid: 15153
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-64.5
- parent: 2
- - uid: 15154
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-78.5
- parent: 2
- - uid: 15155
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-61.5
- parent: 2
- - uid: 15156
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-15.5
- parent: 2
- - uid: 15157
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-79.5
- parent: 2
- - uid: 15158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-16.5
- parent: 2
- - uid: 15159
- components:
- - type: Transform
- pos: -41.5,-17.5
- parent: 2
- - uid: 15160
- components:
- - type: Transform
- pos: -35.5,-64.5
- parent: 2
- - uid: 15161
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-62.5
- parent: 2
- - uid: 15162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-78.5
- parent: 2
- - uid: 15163
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-34.5
- parent: 2
- - uid: 15164
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-34.5
- parent: 2
- - uid: 15165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-36.5
- parent: 2
- - uid: 15166
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-34.5
- parent: 2
- - uid: 15167
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-36.5
- parent: 2
- - uid: 15168
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-33.5
- parent: 2
- - uid: 15169
- components:
- - type: Transform
- pos: 100.5,-1.5
- parent: 2
- - uid: 15170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 89.5,10.5
- parent: 2
- - uid: 15171
- components:
- - type: Transform
- pos: 77.5,-1.5
- parent: 2
- - uid: 15172
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 81.5,4.5
- parent: 2
- - uid: 15173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-34.5
- parent: 2
- - uid: 15174
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,-36.5
- parent: 2
- - uid: 15175
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-35.5
- parent: 2
- - uid: 15176
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-36.5
- parent: 2
- - uid: 15177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-35.5
- parent: 2
- - uid: 15178
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-35.5
- parent: 2
- - uid: 15179
- components:
- - type: Transform
- pos: -70.5,-35.5
- parent: 2
- - uid: 15180
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-34.5
- parent: 2
- - uid: 15181
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,-34.5
- parent: 2
- - uid: 15182
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-34.5
- parent: 2
- - uid: 15183
- components:
- - type: Transform
- pos: -61.5,-39.5
- parent: 2
- - uid: 15184
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-42.5
- parent: 2
- - uid: 15185
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,-43.5
- parent: 2
-- proto: CombatKnife
- entities:
- - uid: 15186
- components:
- - type: Transform
- pos: -20.695433,-81.44657
- parent: 2
-- proto: ComfyChair
- entities:
- - uid: 15187
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,29.5
- parent: 2
- - uid: 15188
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-9.5
- parent: 2
- - uid: 15189
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,16.5
- parent: 2
- - uid: 15190
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,16.5
- parent: 2
- - uid: 15191
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-8.5
- parent: 2
- - uid: 15192
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,16.5
- parent: 2
- - uid: 15193
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-52.5
- parent: 2
- - uid: 15194
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,6.5
- parent: 2
- - uid: 15195
- components:
- - type: Transform
- pos: 8.5,8.5
- parent: 2
- - uid: 15196
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,9.5
- parent: 2
- - uid: 15197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,10.5
- parent: 2
- - uid: 15198
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,9.5
- parent: 2
- - uid: 15199
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,10.5
- parent: 2
- - uid: 15200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,8.5
- parent: 2
- - uid: 15201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,8.5
- parent: 2
- - uid: 15202
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,8.5
- parent: 2
- - uid: 15203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,9.5
- parent: 2
- - uid: 15204
- components:
- - type: Transform
- pos: -12.5,10.5
- parent: 2
- - uid: 15205
- components:
- - type: Transform
- pos: -11.5,10.5
- parent: 2
- - uid: 15206
- components:
- - type: Transform
- pos: -10.5,10.5
- parent: 2
- - uid: 15207
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,16.5
- parent: 2
- - uid: 15208
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,61.5
- parent: 2
- - uid: 15209
- components:
- - type: Transform
- pos: -23.5,-11.5
- parent: 2
- - uid: 15210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,47.5
- parent: 2
- - uid: 15211
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,-38.5
- parent: 2
- - uid: 15212
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-77.5
- parent: 2
- - uid: 15213
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,13.5
- parent: 2
- - uid: 15214
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,46.5
- parent: 2
- - uid: 15215
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,20.5
- parent: 2
- - uid: 15216
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-77.5
- parent: 2
- - uid: 15217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,1.5
- parent: 2
- - uid: 15218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,-44.5
- parent: 2
- - uid: 15219
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-10.5
- parent: 2
- - uid: 15220
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-10.5
- parent: 2
- - uid: 15221
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-30.5
- parent: 2
- - uid: 15222
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-9.5
- parent: 2
- - uid: 15223
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-30.5
- parent: 2
- - uid: 15224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-66.5
- parent: 2
- - uid: 15225
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-67.5
- parent: 2
- - uid: 15226
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-66.5
- parent: 2
- - uid: 15227
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-67.5
- parent: 2
- - uid: 15228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-41.5
- parent: 2
- - uid: 15229
- components:
- - type: Transform
- pos: -70.5,-39.5
- parent: 2
- - uid: 15230
- components:
- - type: Transform
- pos: -66.5,-39.5
- parent: 2
- - uid: 15231
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-41.5
- parent: 2
- - uid: 15232
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-44.5
- parent: 2
- - uid: 15233
- components:
- - type: Transform
- pos: -32.5,-17.5
- parent: 2
- - uid: 15234
- components:
- - type: Transform
- pos: 54.5,31.5
- parent: 2
- - uid: 15235
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,29.5
- parent: 2
- - uid: 15236
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,28.5
- parent: 2
-- proto: CommsComputerCircuitboard
- entities:
- - uid: 15237
- components:
- - type: Transform
- pos: -35.485302,19.5736
- parent: 2
- - type: Physics
- canCollide: False
-- proto: ComputerAlert
- entities:
- - uid: 15238
- components:
- - type: Transform
- pos: -8.5,16.5
- parent: 2
- - uid: 15239
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,18.5
- parent: 2
- - uid: 15240
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,6.5
- parent: 2
- - uid: 15241
- components:
- - type: Transform
- pos: -59.5,20.5
- parent: 2
- - uid: 15242
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,34.5
- parent: 2
-- proto: ComputerAnalysisConsole
- entities:
- - uid: 15243
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-46.5
- parent: 2
- - uid: 15244
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-41.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 25076:
- - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
-- proto: computerBodyScanner
- entities:
- - uid: 15245
- components:
- - type: Transform
- pos: -1.5,-13.5
- parent: 2
- - uid: 15246
- components:
- - type: Transform
- pos: 47.5,-13.5
- parent: 2
- - uid: 15247
- components:
- - type: Transform
- pos: 36.5,-43.5
- parent: 2
- - uid: 15248
- components:
- - type: Transform
- pos: 45.5,-37.5
- parent: 2
-- proto: ComputerBroken
- entities:
- - uid: 15249
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-76.5
- parent: 2
- - uid: 15250
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-29.5
- parent: 2
- - uid: 15251
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,62.5
- parent: 2
- - uid: 15252
- components:
- - type: Transform
- pos: -40.5,-35.5
- parent: 2
- - uid: 15253
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-38.5
- parent: 2
- - uid: 15254
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 81.5,-19.5
- parent: 2
- - uid: 15255
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-19.5
- parent: 2
- - uid: 15256
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-37.5
- parent: 2
- - uid: 15257
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-44.5
- parent: 2
- - uid: 15258
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-29.5
- parent: 2
- - uid: 15259
- components:
- - type: Transform
- pos: -37.5,-59.5
- parent: 2
- - uid: 15260
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,-39.5
- parent: 2
- - uid: 15261
- components:
- - type: Transform
- pos: -67.5,-34.5
- parent: 2
- - uid: 15262
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-31.5
- parent: 2
- - uid: 15263
- components:
- - type: Transform
- pos: 47.5,-27.5
- parent: 2
- - uid: 38884
- components:
- - type: Transform
- pos: -21.5,34.5
- parent: 38344
- - uid: 38885
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,19.5
- parent: 38344
- - uid: 38886
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,3.5
- parent: 38344
-- proto: ComputerCargoBounty
- entities:
- - uid: 15264
- components:
- - type: Transform
- pos: 16.5,39.5
- parent: 2
-- proto: ComputerCargoOrders
- entities:
- - uid: 15265
- components:
- - type: Transform
- pos: -3.5,18.5
- parent: 2
- - uid: 15266
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,50.5
- parent: 2
- - uid: 15267
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,31.5
- parent: 2
- - uid: 15268
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,33.5
- parent: 2
- - uid: 15269
- components:
- - type: Transform
- pos: 18.5,39.5
- parent: 2
- - uid: 15270
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,35.5
- parent: 2
- - uid: 15271
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,42.5
- parent: 2
-- proto: ComputerCargoShuttle
- entities:
- - uid: 15272
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,37.5
- parent: 2
-- proto: ComputerComms
- entities:
- - uid: 15273
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,5.5
- parent: 2
- - uid: 15274
- components:
- - type: Transform
- pos: -0.5,14.5
- parent: 2
-- proto: ComputerCrewMonitoring
- entities:
- - uid: 15275
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-28.5
- parent: 2
- - uid: 15276
- components:
- - type: Transform
- pos: 50.5,9.5
- parent: 2
- - uid: 15277
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,20.5
- parent: 2
- - uid: 15278
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-31.5
- parent: 2
- - uid: 15279
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-48.5
- parent: 2
- - uid: 15280
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,62.5
- parent: 2
- - uid: 15281
- components:
- - type: Transform
- pos: -4.5,18.5
- parent: 2
- - uid: 15282
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-60.5
- parent: 2
-- proto: ComputerCriminalRecords
- entities:
- - uid: 15283
- components:
- - type: Transform
- pos: 51.5,9.5
- parent: 2
- - uid: 15284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,1.5
- parent: 2
- - uid: 15285
- components:
- - type: Transform
- pos: -1.5,18.5
- parent: 2
- - uid: 15286
- components:
- - type: Transform
- pos: 6.5,-57.5
- parent: 2
- - uid: 15287
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-55.5
- parent: 2
- - uid: 15288
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,21.5
- parent: 2
- - uid: 15289
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-29.5
- parent: 2
- - uid: 15290
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-4.5
- parent: 2
- - uid: 15291
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,9.5
- parent: 2
- - uid: 15292
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,9.5
- parent: 2
- - uid: 15293
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-24.5
- parent: 2
- - uid: 15294
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,60.5
- parent: 2
-- proto: ComputerFrame
- entities:
- - uid: 15295
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -122.5,45.5
- parent: 2
- - uid: 15296
- components:
- - type: Transform
- pos: 47.5,-33.5
- parent: 2
- - uid: 15297
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -114.5,45.5
- parent: 2
-- proto: ComputerId
- entities:
- - uid: 15298
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,6.5
- parent: 2
- - uid: 15299
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,3.5
- parent: 2
-- proto: ComputerMassMedia
- entities:
- - uid: 15300
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,21.5
- parent: 2
-- proto: ComputerMedicalRecords
- entities:
- - uid: 15301
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-47.5
- parent: 2
- - uid: 15302
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-58.5
- parent: 2
- - uid: 15303
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,62.5
- parent: 2
-- proto: ComputerPowerMonitoring
- entities:
- - uid: 15304
- components:
- - type: Transform
- pos: -19.5,-29.5
- parent: 2
- - uid: 15305
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-0.5
- parent: 2
- - uid: 15306
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,63.5
- parent: 2
- - uid: 15307
- components:
- - type: Transform
- pos: 3.5,18.5
- parent: 2
- - uid: 15308
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-5.5
- parent: 2
- - uid: 15309
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-40.5
- parent: 2
- - uid: 15310
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-9.5
- parent: 2
- - uid: 15311
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,88.5
- parent: 2
- - uid: 15312
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,8.5
- parent: 2
- - uid: 15313
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,38.5
- parent: 2
-- proto: ComputerRadar
- entities:
- - uid: 15314
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,89.5
- parent: 2
- - uid: 15315
- components:
- - type: Transform
- pos: 0.5,18.5
- parent: 2
- - uid: 15316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-81.5
- parent: 2
- - uid: 15317
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,40.5
- parent: 2
- - uid: 38887
- components:
- - type: Transform
- pos: 3.5,2.5
- parent: 38344
-- proto: ComputerResearchAndDevelopment
- entities:
- - uid: 15318
- components:
- - type: Transform
- pos: 7.5,16.5
- parent: 2
- - uid: 15319
- components:
- - type: Transform
- pos: -7.5,-29.5
- parent: 2
- - uid: 15320
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-37.5
- parent: 2
- - uid: 15321
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-42.5
- parent: 2
- - uid: 15322
- components:
- - type: Transform
- pos: -20.5,-49.5
- parent: 2
- - uid: 15323
- components:
- - type: Transform
- pos: -13.5,-55.5
- parent: 2
- - uid: 15324
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-52.5
- parent: 2
-- proto: ComputerRoboticsControl
- entities:
- - uid: 15325
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-42.5
- parent: 2
-- proto: ComputerSalvageExpedition
- entities:
- - uid: 15326
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,35.5
- parent: 2
-- proto: ComputerShuttle
- entities:
- - uid: 38284
- components:
- - type: Transform
- pos: 1.5,4.5
- parent: 38244
-- proto: ComputerShuttleCargo
- entities:
- - uid: 15327
- components:
- - type: Transform
- pos: 17.5,39.5
- parent: 2
-- proto: ComputerShuttleSalvage
- entities:
- - uid: 15328
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,36.5
- parent: 2
-- proto: ComputerSolarControl
- entities:
- - uid: 15329
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,63.5
- parent: 2
- - uid: 15330
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-75.5
- parent: 2
- - uid: 15331
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,86.5
- parent: 2
- - uid: 15332
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 78.5,-46.5
- parent: 2
-- proto: ComputerStationRecords
- entities:
- - uid: 15333
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,2.5
- parent: 2
- - uid: 15334
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,7.5
- parent: 2
- - uid: 15335
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-4.5
- parent: 2
- - uid: 15336
- components:
- - type: Transform
- pos: 2.5,18.5
- parent: 2
- - uid: 15337
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-25.5
- parent: 2
- - uid: 15338
- components:
- - type: Transform
- pos: 5.5,-57.5
- parent: 2
- - uid: 15339
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-54.5
- parent: 2
- - uid: 15340
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-29.5
- parent: 2
- - uid: 15341
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,10.5
- parent: 2
-- proto: ComputerSurveillanceCameraMonitor
- entities:
- - uid: 15342
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,62.5
- parent: 2
- - uid: 15343
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,8.5
- parent: 2
- - uid: 15344
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-59.5
- parent: 2
- - uid: 15345
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,19.5
- parent: 2
- - uid: 15346
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,31.5
- parent: 2
- - uid: 15347
- components:
- - type: Transform
- pos: 11.5,44.5
- parent: 2
- - uid: 15348
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,8.5
- parent: 2
- - uid: 15349
- components:
- - type: Transform
- pos: 4.5,-57.5
- parent: 2
- - uid: 15350
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-30.5
- parent: 2
- - uid: 15351
- components:
- - type: Transform
- pos: -0.5,18.5
- parent: 2
- - uid: 15352
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,8.5
- parent: 2
- - uid: 15353
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-26.5
- parent: 2
-- proto: ComputerSurveillanceWirelessCameraMonitor
- entities:
- - uid: 15354
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,22.5
- parent: 2
-- proto: ComputerTelevision
- entities:
- - uid: 15355
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 87.5,7.5
- parent: 2
- - uid: 15356
- components:
- - type: Transform
- pos: 33.5,8.5
- parent: 2
- - uid: 15357
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,6.5
- parent: 2
-- proto: ContainmentFieldGenerator
- entities:
- - uid: 15358
- components:
- - type: Transform
- pos: 12.5,-5.5
- parent: 2
- - uid: 15359
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-9.5
- parent: 2
- - uid: 15360
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-10.5
- parent: 2
- - uid: 15361
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-9.5
- parent: 2
- - uid: 15362
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-10.5
- parent: 2
-- proto: ConvertAltarSpawner
- entities:
- - uid: 15363
- components:
- - type: Transform
- pos: -16.5,-73.5
- parent: 2
-- proto: ConveyorBelt
- entities:
- - uid: 15364
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15365
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15366
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15368
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15369
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15370
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,57.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15371
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15372
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15373
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15374
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,47.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15376
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15377
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15378
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15379
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15380
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15381
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15382
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15383
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15384
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15385
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15386
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,42.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15387
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15388
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,59.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15389
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15390
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15391
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,46.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,58.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15393
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,57.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15394
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15395
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15396
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,53.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15397
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15398
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,58.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15399
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,42.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15400
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,43.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,58.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15402
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,60.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15403
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,45.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15404
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15405
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,52.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31726
- - uid: 15406
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15407
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,44.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15408
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15409
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15410
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15411
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,48.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31727
- - uid: 15412
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,57.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15413
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,57.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15414
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,57.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15415
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15416
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,58.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15417
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15418
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,61.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 15419
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,58.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 31730
- - uid: 38888
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 38344
- - uid: 38889
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 38344
-- proto: CounterWoodFrame
- entities:
- - uid: 15420
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-35.5
- parent: 2
-- proto: CowToolboxFilled
- entities:
- - uid: 15421
- components:
- - type: Transform
- pos: -45.2872,-42.39937
- parent: 2
- - uid: 15422
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.51572,-31.41529
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15423
- components:
- - type: Transform
- pos: -29.567314,-69.63001
- parent: 2
-- proto: CrateArtifactContainer
- entities:
- - uid: 15424
- components:
- - type: Transform
- pos: -32.5,-46.5
- parent: 2
-- proto: CrateChemistrySupplies
- entities:
- - uid: 15425
- components:
- - type: Transform
- pos: 22.5,-30.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateEmergencyAdvancedKit
- entities:
- - uid: 15426
- components:
- - type: Transform
- pos: -29.5,-17.5
- parent: 2
-- proto: CrateEmergencyInternals
- entities:
- - uid: 15427
- components:
- - type: Transform
- pos: -24.5,15.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: Fixtures
- fixtures:
- fix1:
- shape: !type:PolygonShape
- radius: 0.01
- vertices:
- - -0.4,-0.4
- - 0.4,-0.4
- - 0.4,0.29
- - -0.4,0.29
- mask:
- - Impassable
- - HighImpassable
- - LowImpassable
- layer:
- - BulletImpassable
- - Opaque
- density: 50
- hard: True
- restitution: 0
- friction: 0.4
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- open: True
- removedMasks: 20
- - type: PlaceableSurface
- isPlaceable: True
- - uid: 15428
- components:
- - type: Transform
- pos: 21.5,-30.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15429
- components:
- - type: Transform
- pos: 12.5,80.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateEmptySpawner
- entities:
- - uid: 15430
- components:
- - type: Transform
- pos: 48.5,-8.5
- parent: 2
- - uid: 15431
- components:
- - type: Transform
- pos: 22.5,41.5
- parent: 2
- - uid: 15432
- components:
- - type: Transform
- pos: 26.5,-20.5
- parent: 2
- - uid: 15433
- components:
- - type: Transform
- pos: 9.5,58.5
- parent: 2
- - uid: 15434
- components:
- - type: Transform
- pos: 36.5,-52.5
- parent: 2
-- proto: CrateEngineeringSecure
- entities:
- - uid: 1062
- components:
- - type: Transform
- pos: 16.5,77.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 1.885598
- - 7.0934405
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15435
->>>>>>> master
- components:
- - type: MetaData
- name: ящик топлива для генераторов
- - type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 17.5,-17.5
- parent: 2
- - uid: 16159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,5.5
- parent: 2
- - uid: 16160
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-3.5
- parent: 2
- - uid: 16161
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,20.5
- parent: 2
- - uid: 16162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-19.5
- parent: 2
- - uid: 16163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-61.5
- parent: 2
- - uid: 16164
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,36.5
- parent: 2
- - uid: 16165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-19.5
- parent: 2
- - uid: 16166
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-33.5
- parent: 2
- - uid: 16167
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-33.5
- parent: 2
- - uid: 16168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-33.5
- parent: 2
- - uid: 16169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-33.5
- parent: 2
- - uid: 16170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-33.5
- parent: 2
- - uid: 16171
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-6.5
- parent: 2
- - uid: 16172
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-28.5
- parent: 2
- - uid: 16173
- components:
- - type: Transform
- pos: -42.5,-31.5
- parent: 2
- - uid: 16174
- components:
- - type: Transform
- pos: -38.5,-31.5
- parent: 2
- - uid: 16175
- components:
- - type: Transform
- pos: -34.5,-31.5
- parent: 2
- - uid: 16176
- components:
- - type: Transform
- pos: -32.5,-23.5
- parent: 2
- - uid: 16177
- components:
- - type: Transform
- pos: -36.5,-23.5
- parent: 2
- - uid: 16178
- components:
- - type: Transform
- pos: -40.5,-23.5
- parent: 2
- - uid: 16179
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,41.5
- parent: 2
- - uid: 16180
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-3.5
- parent: 2
- - uid: 16181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,10.5
- parent: 2
- - uid: 16182
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-50.5
- parent: 2
- - uid: 16183
- components:
- - type: Transform
- pos: -32.5,3.5
- parent: 2
- - uid: 16184
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,14.5
- parent: 2
- - uid: 16185
- components:
- - type: Transform
- pos: 0.5,-79.5
- parent: 2
- - uid: 16186
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,14.5
- parent: 2
- - uid: 16187
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,14.5
- parent: 2
- - uid: 16188
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,14.5
- parent: 2
- - uid: 16189
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,14.5
- parent: 2
- - uid: 16190
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,14.5
- parent: 2
- - uid: 16191
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,14.5
- parent: 2
- - uid: 16192
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,14.5
- parent: 2
- - uid: 16193
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,14.5
- parent: 2
- - uid: 16194
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,14.5
- parent: 2
- - uid: 16195
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,14.5
- parent: 2
- - uid: 16196
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,14.5
- parent: 2
- - uid: 16197
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,14.5
- parent: 2
- - uid: 16198
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,14.5
- parent: 2
- - uid: 16199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,25.5
- parent: 2
- - uid: 16200
- components:
- - type: Transform
- pos: 36.5,-2.5
- parent: 2
- - uid: 16201
- components:
- - type: Transform
- pos: 2.5,-51.5
- parent: 2
- - uid: 16202
- components:
- - type: Transform
- pos: -0.5,-51.5
- parent: 2
- - uid: 16203
- components:
- - type: Transform
- pos: -0.5,-52.5
- parent: 2
- - uid: 16204
- components:
- - type: Transform
- pos: -0.5,-53.5
- parent: 2
- - uid: 16205
- components:
- - type: Transform
- pos: -0.5,-54.5
- parent: 2
- - uid: 16206
- components:
- - type: Transform
- pos: -15.5,-60.5
- parent: 2
- - uid: 16207
- components:
- - type: Transform
- pos: -15.5,-59.5
- parent: 2
- - uid: 16208
- components:
- - type: Transform
- pos: -15.5,-58.5
- parent: 2
- - uid: 16209
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-57.5
- parent: 2
- - uid: 16210
- components:
- - type: Transform
- pos: 0.5,-78.5
- parent: 2
- - uid: 16211
- components:
- - type: Transform
- pos: -29.5,56.5
- parent: 2
- - uid: 16212
- components:
- - type: Transform
- pos: 0.5,-77.5
- parent: 2
- - uid: 16213
- components:
- - type: Transform
- pos: 0.5,-76.5
- parent: 2
- - uid: 16214
- components:
- - type: Transform
- pos: 0.5,-75.5
- parent: 2
- - uid: 16215
- components:
- - type: Transform
- pos: 0.5,-74.5
- parent: 2
- - uid: 16216
- components:
- - type: Transform
- pos: 0.5,-73.5
- parent: 2
- - uid: 16217
- components:
- - type: Transform
- pos: 0.5,-72.5
- parent: 2
- - uid: 16218
- components:
- - type: Transform
- pos: 0.5,-71.5
- parent: 2
- - uid: 16219
- components:
- - type: Transform
- pos: 0.5,-70.5
- parent: 2
- - uid: 16220
- components:
- - type: Transform
- pos: 0.5,-69.5
- parent: 2
- - uid: 16221
- components:
- - type: Transform
- pos: 0.5,-68.5
- parent: 2
- - uid: 16222
- components:
- - type: Transform
- pos: 0.5,-67.5
- parent: 2
- - uid: 16223
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-64.5
- parent: 2
- - uid: 16224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-64.5
- parent: 2
- - uid: 16225
- components:
- - type: Transform
- pos: -0.5,-59.5
- parent: 2
- - uid: 16226
- components:
- - type: Transform
- pos: -0.5,-60.5
- parent: 2
- - uid: 16227
- components:
- - type: Transform
- pos: -0.5,-61.5
- parent: 2
- - uid: 16228
- components:
- - type: Transform
- pos: -0.5,-62.5
- parent: 2
- - uid: 16229
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-16.5
- parent: 2
- - uid: 16230
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-15.5
- parent: 2
- - uid: 16231
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-14.5
- parent: 2
- - uid: 16232
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-13.5
- parent: 2
- - uid: 16233
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-12.5
- parent: 2
- - uid: 16234
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-11.5
- parent: 2
- - uid: 16235
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-10.5
- parent: 2
- - uid: 16236
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-9.5
- parent: 2
- - uid: 16237
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-8.5
- parent: 2
- - uid: 16238
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-7.5
- parent: 2
- - uid: 16239
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-6.5
- parent: 2
- - uid: 16240
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-5.5
- parent: 2
- - uid: 16241
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-4.5
- parent: 2
- - uid: 16242
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-3.5
- parent: 2
- - uid: 16243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-2.5
- parent: 2
- - uid: 16244
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-1.5
- parent: 2
- - uid: 16245
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-0.5
- parent: 2
- - uid: 16246
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,0.5
- parent: 2
- - uid: 16247
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,1.5
- parent: 2
- - uid: 16248
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,2.5
- parent: 2
- - uid: 16249
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,3.5
- parent: 2
- - uid: 16250
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,4.5
- parent: 2
- - uid: 16251
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,5.5
- parent: 2
- - uid: 16252
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,6.5
- parent: 2
- - uid: 16253
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,7.5
- parent: 2
- - uid: 16254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,8.5
- parent: 2
- - uid: 16255
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,9.5
- parent: 2
-- proto: DisposalTrunk
- entities:
- - uid: 16256
- components:
- - type: Transform
- pos: -27.5,61.5
- parent: 2
- - uid: 16257
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-21.5
- parent: 2
- - uid: 16258
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-52.5
- parent: 2
- - uid: 16259
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,36.5
- parent: 2
- - uid: 16260
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-49.5
- parent: 2
- - uid: 16261
- components:
- - type: Transform
- pos: 46.5,-2.5
- parent: 2
- - uid: 16262
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-21.5
- parent: 2
- - uid: 16263
- components:
- - type: Transform
- pos: 50.5,13.5
- parent: 2
- - uid: 16264
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,15.5
- parent: 2
- - uid: 16265
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,3.5
- parent: 2
- - uid: 16266
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,13.5
- parent: 2
- - uid: 16267
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,48.5
- parent: 2
- - uid: 16268
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-47.5
- parent: 2
- - uid: 16269
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,17.5
- parent: 2
- - uid: 16270
- components:
- - type: Transform
- pos: 21.5,10.5
- parent: 2
- - uid: 16271
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,34.5
- parent: 2
- - uid: 16272
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,13.5
- parent: 2
- - uid: 16273
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,5.5
- parent: 2
- - uid: 16274
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-37.5
- parent: 2
- - uid: 16275
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,24.5
- parent: 2
- - uid: 16276
- components:
- - type: Transform
- pos: -30.5,45.5
- parent: 2
- - uid: 16277
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-57.5
- parent: 2
- - uid: 16278
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,29.5
- parent: 2
- - uid: 16279
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-53.5
- parent: 2
- - uid: 16280
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,-51.5
- parent: 2
- - uid: 16281
- components:
- - type: Transform
- pos: -34.5,-29.5
- parent: 2
- - uid: 16282
- components:
- - type: Transform
- pos: -38.5,-29.5
- parent: 2
- - uid: 16283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-27.5
- parent: 2
- - uid: 16284
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,33.5
- parent: 2
- - uid: 16285
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,-28.5
- parent: 2
- - uid: 16286
-=======
- pos: -48.5,-5.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:
- - 15439
- - 15438
- - 15437
- - 15436
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateFilledSpawner
- entities:
- - uid: 15440
- components:
- - type: Transform
- pos: 25.5,40.5
- parent: 2
- - uid: 15441
- components:
- - type: Transform
- pos: 33.5,35.5
- parent: 2
- - uid: 15442
- components:
- - type: Transform
- pos: 25.5,40.5
- parent: 2
- - uid: 15443
- components:
- - type: Transform
- pos: 10.5,50.5
- parent: 2
- - uid: 15444
- components:
- - type: Transform
- pos: 16.5,41.5
- parent: 2
- - uid: 15445
- components:
- - type: Transform
- pos: 10.5,51.5
- parent: 2
- - uid: 15446
- components:
- - type: Transform
- pos: 9.5,59.5
- parent: 2
- - uid: 15447
- components:
- - type: Transform
- pos: 12.5,50.5
- parent: 2
-- proto: CrateFoodPizzaLarge
- entities:
- - uid: 15448
- components:
- - type: Transform
- pos: -55.500004,-28.5
- parent: 2
-- proto: CrateFoodSoftdrinksLarge
- entities:
- - uid: 15449
- components:
- - type: Transform
- pos: 17.5,29.5
- parent: 2
-- proto: CrateFreezer
- entities:
- - uid: 15039
- components:
- - type: Transform
- pos: 25.5,67.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9002285
- - 7.148479
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 15042
- - 15040
- - 15041
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 15450
- components:
- - type: Transform
- pos: 97.5,-3.5
- parent: 2
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 15459
- - 15458
- - 15457
- - 15456
- - 15455
- - 15454
- - 15453
- - 15452
- - 15451
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 15460
- components:
- - type: Transform
- pos: 32.5,-65.5
- parent: 2
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15461
- components:
- - type: Transform
- pos: 44.5,-37.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 15463
- - 15462
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 15464
- components:
- - type: Transform
- pos: -67.5,56.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:
- - 15467
- - 15473
- - 15472
- - 15466
- - 15471
- - 15470
- - 15469
- - 15468
- - 15465
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 38890
- components:
- - type: Transform
- pos: -18.5,43.5
- parent: 38344
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14755
- 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:
- - 38896
- - 38895
- - 38894
- - 38893
- - 38892
- - 38891
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateFunBoardGames
- entities:
- - uid: 15474
- components:
- - type: Transform
- pos: 3.5,-55.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15475
- components:
- - type: Transform
- pos: -31.5,-69.5
- parent: 2
-- proto: CrateFunDartsSet
- entities:
- - uid: 15476
- components:
- - type: Transform
- pos: -42.500004,-9.5
- parent: 2
-- proto: CrateFunInstrumentsSpecial
- entities:
- - uid: 15477
- components:
- - type: Transform
- pos: -37.5,-62.5
- parent: 2
-- proto: CrateFunInstrumentsVariety
- entities:
- - uid: 38897
- components:
- - type: Transform
- pos: -10.5,-4.5
- parent: 38344
-- proto: CrateFunInstrumentsWoodwind
- entities:
- - uid: 15478
- components:
- - type: Transform
- pos: -42.5,-8.500001
- parent: 2
-- proto: CrateFunLizardPlushieBulk
- entities:
- - uid: 15479
- components:
- - type: Transform
- pos: -33.5,-17.5
- parent: 2
- - uid: 15480
- components:
- - type: Transform
- pos: -113.50001,33.5
- parent: 2
- - uid: 15481
- components:
- - type: Transform
- pos: -112.50001,33.5
- parent: 2
- - uid: 15482
- components:
- - type: Transform
- pos: 17.5,30.5
- parent: 2
-- proto: CrateFunParty
- entities:
- - uid: 15483
- components:
- - type: Transform
- pos: -1.5,39.5
- parent: 2
- - uid: 15484
- components:
- - type: Transform
- pos: -65.5,-47.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15485
- components:
- - type: Transform
- pos: -1.5,38.5
- parent: 2
- - uid: 15486
- components:
- - type: Transform
- pos: -33.5,-60.5
- parent: 2
-- proto: CrateFunPlushie
- entities:
- - uid: 15487
- components:
- - type: Transform
- pos: -44.5,-32.5
- parent: 2
-- proto: CrateFunToyBox
- entities:
- - uid: 15488
- components:
- - type: Transform
- pos: 86.50001,7.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15489
- components:
- - type: Transform
- pos: -52.5,-32.5
- parent: 2
- - uid: 38898
- components:
- - type: Transform
- pos: -9.5,-5.5
- parent: 38344
-- proto: CrateGenericSteel
- entities:
- - uid: 15490
- components:
- - type: Transform
- pos: -24.5,-21.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15491
- components:
- - type: Transform
- pos: 13.5,-54.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15492
- components:
- - type: Transform
- pos: -56.5,-17.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15493
- components:
- - type: Transform
- pos: -26.5,-75.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 15494
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15495
- components:
- - type: Transform
- pos: 52.5,3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8968438
- - 7.1357465
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 15496
- - 15498
- - 15497
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 15499
- components:
- - type: Transform
- pos: -58.5,-20.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15500
- components:
- - type: Transform
- pos: 24.5,54.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15501
- components:
- - type: Transform
- pos: 25.5,54.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15502
- components:
- - type: Transform
- pos: 30.5,-54.5
- parent: 2
-- proto: CrateHydroponics
- entities:
- - uid: 15503
- components:
- - type: Transform
- pos: -24.5,53.5
- parent: 2
-- proto: CrateHydroponicsSeeds
- entities:
- - uid: 15504
- components:
- - type: Transform
- pos: -36.5,45.5
- parent: 2
-- proto: CrateHydroSecure
- entities:
- - uid: 15505
- components:
- - type: Transform
- pos: -26.5,55.5
- parent: 2
- - uid: 15506
- components:
- - type: Transform
- pos: -36.5,46.5
- parent: 2
-- proto: CrateInternals
- entities:
- - uid: 15507
- components:
- - type: Transform
- pos: 6.5,-15.5
- parent: 2
-- proto: CrateMaterialCardboard
- entities:
- - uid: 15508
- components:
- - type: Transform
- pos: 52.5,-27.5
- parent: 2
-- proto: CrateMaterialPaper
- entities:
- - uid: 15509
- components:
- - type: Transform
- pos: 43.499996,-47.5
- parent: 2
- - uid: 38899
- components:
- - type: Transform
- pos: 1.5,-5.5
- parent: 38344
-- proto: CrateMedical
- entities:
- - uid: 871
- components:
- - type: Transform
- pos: 60.5,-3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8968438
- - 7.1357465
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 872
- - 876
- - 873
- - 878
- - 877
- - 874
- - 875
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateMedicalScrubs
- entities:
- - uid: 15510
- components:
- - type: Transform
- pos: 11.5,-40.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15511
- components:
- - type: Transform
- pos: 20.5,-37.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateMedicalSecure
- entities:
- - uid: 15512
- components:
- - type: Transform
- pos: 40.5,-44.5
- parent: 2
- - uid: 15513
- components:
- - type: Transform
- pos: -47.5,-39.5
- parent: 2
-- proto: CrateMedicalSupplies
- entities:
- - uid: 38900
- components:
- - type: Transform
- pos: -8.5,-1.5
- parent: 38344
-- proto: CrateMedicalSurgery
- entities:
- - uid: 15514
- components:
- - type: Transform
- pos: 45.5,-27.5
- parent: 2
- - uid: 15515
- components:
- - type: Transform
- pos: 31.5,-46.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateNPCCow
- entities:
- - uid: 15516
- components:
- - type: Transform
- pos: -33.5,43.5
- parent: 2
-- proto: CrateNPCHamlet
- entities:
- - uid: 15517
- components:
- - type: Transform
- pos: 3.5,12.5
- parent: 2
-- proto: CratePlastic
- entities:
- - uid: 15518
- components:
- - type: Transform
- pos: 27.5,59.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15519
- components:
- - type: Transform
- pos: 27.5,60.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateRodentCage
- entities:
- - uid: 15520
- components:
- - type: Transform
- pos: -50.5,-39.5
- parent: 2
-- proto: CrateSecurityBiosuit
- entities:
- - uid: 38901
- components:
- - type: Transform
- pos: 11.5,-7.5
- parent: 38344
-- proto: CrateServiceBooks
- entities:
- - uid: 15521
- components:
- - type: Transform
- pos: 53.5,-27.5
- parent: 2
-- proto: CrateServiceBureaucracy
- entities:
- - uid: 15522
- components:
- - type: Transform
- pos: -37.5,63.5
- parent: 2
- - uid: 15523
- components:
- - type: Transform
- pos: 44.499996,-47.5
- parent: 2
-- proto: CrateServiceGuidebooks
- entities:
- - uid: 15524
- components:
- - type: Transform
- pos: 81.50001,4.5
- parent: 2
-- proto: CrateServiceJanitorialSupplies
- entities:
- - uid: 15525
- components:
- - type: Transform
- pos: 21.5,49.5
- parent: 2
-- proto: CrateServiceReplacementLights
- entities:
- - uid: 15526
- components:
- - type: Transform
- pos: 16.5,45.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateStoneGrave
- entities:
- - uid: 15527
- components:
- - type: Transform
- pos: -109.5,46.5
- parent: 2
-- proto: CrateSyndicate
- entities:
- - uid: 14738
- components:
- - type: Transform
- pos: 41.499996,-2.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14748
- - 14741
- - 14747
- - 14744
- - 14740
- - 14745
- - 14749
- - 14742
- - 14746
- - 14743
- - 14750
- - 14751
- - 14739
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateToyBox
- entities:
- - uid: 15528
- components:
- - type: Transform
- pos: 11.5,66.5
- parent: 2
- - uid: 15529
- components:
- - type: Transform
- pos: -33.5,-69.5
- parent: 2
- - uid: 15530
- components:
- - type: Transform
- pos: 49.499996,-47.5
- parent: 2
-- proto: CrateTrashCart
- entities:
- - uid: 15531
- components:
- - type: Transform
- pos: -45.5,-46.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15532
- components:
- - type: Transform
- pos: -59.5,-33.5
- parent: 2
- - uid: 15533
- components:
- - type: Transform
- pos: -27.5,39.5
- parent: 2
- - uid: 15534
- components:
- - type: Transform
- pos: 31.5,56.5
- parent: 2
- - uid: 15535
- components:
- - type: Transform
- pos: 31.5,57.5
- parent: 2
-- proto: CrateTrashCartFilled
- entities:
- - uid: 15536
- components:
- - type: Transform
- pos: -37.5,-54.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15537
- components:
- - type: Transform
- pos: 0.5,56.5
- parent: 2
- - uid: 38902
- components:
- - type: Transform
- pos: -16.5,32.5
- parent: 38344
- - 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: CrateTrashCartJani
- entities:
- - uid: 15538
- components:
- - type: Transform
- pos: 4.5,50.5
- parent: 2
- - uid: 15539
- components:
- - type: Transform
- pos: -1.5,56.5
- parent: 2
- - uid: 15540
- components:
- - type: Transform
- pos: 4.5,51.5
- parent: 2
-- proto: CrateVendingMachineRestockAutoDrobeFilled
- entities:
- - uid: 15541
- components:
- - type: Transform
- pos: -50.5,-22.5
- parent: 2
-- proto: CrateVendingMachineRestockHappyHonkFilled
- entities:
- - uid: 15542
- components:
- - type: Transform
- pos: -37.5,-3.5
- parent: 2
-- proto: CrayonBlack
- entities:
- - uid: 15543
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.76814,-35.113388
- parent: 2
-- proto: CrayonBox
- entities:
- - uid: 15544
- components:
- - type: Transform
- pos: -4.504109,26.61277
- parent: 2
- - uid: 15545
- components:
- - type: Transform
- pos: 36.502167,-10.380364
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15546
- components:
- - type: Transform
- pos: -12.505997,-81.42869
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15547
- components:
- - type: Transform
- pos: -34.169643,-10.397047
- parent: 2
- - uid: 15549
- components:
- - type: Transform
- parent: 15548
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15557
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: 79.29495,-1.4134865
- parent: 2
- - uid: 15558
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: 83.29495,-1.4134874
- parent: 2
- - uid: 15559
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: 87.27933,-1.4291134
- parent: 2
-- proto: CrayonMime
- entities:
- - uid: 15560
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.591542,46.22136
- parent: 2
-- proto: CrayonPurple
- entities:
- - uid: 15561
- components:
- - type: Transform
- pos: 53.63272,-37.217556
- parent: 2
-- proto: CrayonRainbow
- entities:
- - uid: 15562
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.19522,-38.696724
- parent: 2
- - uid: 15563
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: 94.31529,2.4877143
- parent: 2
-- proto: CrayonRed
- entities:
- - uid: 15564
- components:
- - type: Transform
- pos: 73.56891,-45.23019
- parent: 2
- - uid: 15565
- components:
- - type: Transform
- pos: 73.64703,-45.245815
- parent: 2
- - uid: 15566
- components:
- - type: Transform
- pos: 73.78766,-45.38644
- parent: 2
- - uid: 15567
- components:
- - type: Transform
- pos: 73.72516,-45.339565
- parent: 2
- - uid: 15568
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.14314,-34.498806
- parent: 2
- - uid: 15569
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.278557,-37.47797
- parent: 2
-- proto: Crematorium
- entities:
- - uid: 15570
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-71.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrewMonitoringComputerCircuitboard
- entities:
- - uid: 15571
- components:
- - type: Transform
- pos: -34.459133,19.569752
- parent: 2
-- proto: CrewMonitoringServer
- entities:
- - uid: 15572
- components:
- - type: Transform
- pos: -124.5,36.5
- parent: 2
- - type: SingletonDeviceNetServer
- active: False
- available: False
-- proto: Crowbar
- entities:
- - uid: 15573
- components:
- - type: Transform
- pos: -33.5,8.5
- parent: 2
- - uid: 15574
- components:
- - type: Transform
- pos: -22.5,-45.5
- parent: 2
- - uid: 15575
- components:
- - type: Transform
- pos: -35.52931,-35.24693
- parent: 2
- - uid: 15576
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.506043,-48.954784
- parent: 2
- - uid: 15577
- components:
- - type: Transform
- pos: -44.506374,-30.442978
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15578
- components:
- - type: Transform
- pos: -69.46426,12.496543
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15579
- components:
- - type: Transform
- pos: -45.5,-11.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15580
- components:
- - type: Transform
- pos: -7.3657737,-61.45761
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15581
- components:
- - type: Transform
- pos: 2.544464,65.46228
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15582
- components:
- - type: Transform
- pos: 78.44689,8.815404
- parent: 2
- - uid: 15584
->>>>>>> master
- components:
- - type: MetaData
- desc: Многофункциональный инструмент для открывания дверей и борьбы с межпространственными захватчиками. Посыпаный алмазной струшкой.
- name: лом с алмазным напылением
- - type: Transform
-<<<<<<< HEAD
- pos: 37.5,0.5
- parent: 2
- - uid: 16287
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-27.5
- parent: 2
- - uid: 16288
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-41.5
- parent: 2
- - uid: 16289
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-46.5
- parent: 2
- - uid: 16290
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-32.5
- parent: 2
- - uid: 16291
- components:
- - type: Transform
- pos: -32.5,-22.5
- parent: 2
- - uid: 16292
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-51.5
- parent: 2
- - uid: 16293
- components:
- - type: Transform
- pos: 6.5,-30.5
- parent: 2
- - uid: 16294
- components:
- - type: Transform
- pos: -17.5,-79.5
- parent: 2
- - uid: 16295
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-74.5
- parent: 2
- - uid: 16296
- components:
- - type: Transform
- pos: -26.5,15.5
- parent: 2
- - uid: 16297
- components:
- - type: Transform
- pos: 42.5,-9.5
- parent: 2
- - uid: 16298
- components:
- - type: Transform
- pos: -36.5,-22.5
- parent: 2
- - uid: 16299
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-32.5
- parent: 2
- - uid: 16300
- components:
- - type: Transform
- pos: -64.5,11.5
- parent: 2
- - uid: 16301
- components:
- - type: Transform
- pos: -42.5,-29.5
- parent: 2
- - uid: 16302
- components:
- - type: Transform
- pos: 49.5,21.5
- parent: 2
- - uid: 16303
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,20.5
- parent: 2
- - uid: 16304
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,26.5
- parent: 2
- - uid: 16305
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,13.5
- parent: 2
- - uid: 16306
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,52.5
- parent: 2
- - uid: 16307
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,22.5
- parent: 2
- - uid: 16308
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,26.5
- parent: 2
- - uid: 16309
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,28.5
- parent: 2
- - uid: 16310
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-61.5
- parent: 2
- - uid: 16311
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,38.5
- parent: 2
- - uid: 16312
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-27.5
- parent: 2
- - uid: 16313
- components:
- - type: Transform
- pos: 2.5,28.5
- parent: 2
- - uid: 16314
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-69.5
- parent: 2
- - uid: 16315
- components:
- - type: Transform
- pos: 25.5,38.5
- parent: 2
- - uid: 16316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,17.5
- parent: 2
- - uid: 16317
- components:
- - type: Transform
- pos: -34.5,-12.5
- parent: 2
- - uid: 16318
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,-29.5
- parent: 2
- - uid: 16319
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,55.5
- parent: 2
- - uid: 16320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,32.5
- parent: 2
- - uid: 16321
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,55.5
- parent: 2
- - uid: 16322
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-44.5
- parent: 2
- - uid: 16323
- components:
- - type: Transform
- pos: -9.5,-29.5
- parent: 2
- - uid: 16324
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-25.5
- parent: 2
- - uid: 16325
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-25.5
- parent: 2
- - uid: 16326
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-25.5
- parent: 2
- - uid: 16327
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-81.5
- parent: 2
- - uid: 16328
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-32.5
- parent: 2
- - uid: 16329
- components:
- - type: Transform
- pos: 33.5,12.5
- parent: 2
- - uid: 16330
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,57.5
- parent: 2
- - uid: 16331
- components:
- - type: Transform
- pos: -11.5,-5.5
- parent: 2
- - uid: 16332
- components:
- - type: Transform
- pos: -57.5,3.5
- parent: 2
- - uid: 16333
- components:
- - type: Transform
- pos: -40.5,-22.5
- parent: 2
- - uid: 16334
- components:
- - type: Transform
- pos: -55.5,38.5
- parent: 2
- - uid: 16335
- components:
- - type: Transform
- pos: 32.5,-21.5
- parent: 2
- - uid: 16336
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-28.5
- parent: 2
- - uid: 16337
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,53.5
- parent: 2
- - uid: 16338
- components:
- - type: Transform
- pos: -2.5,-63.5
- parent: 2
- - uid: 16339
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-17.5
- parent: 2
-- proto: DisposalUnit
- entities:
- - uid: 16340
- components:
- - type: Transform
- pos: -7.5,48.5
- parent: 2
- - uid: 16341
- components:
- - type: Transform
- pos: 24.5,26.5
- parent: 2
- - uid: 16342
- components:
- - type: Transform
- pos: -25.5,-47.5
- parent: 2
- - uid: 16343
- components:
- - type: Transform
- pos: 61.5,24.5
- parent: 2
- - uid: 16344
- components:
- - type: Transform
- pos: -5.5,36.5
- parent: 2
- - uid: 16345
- components:
- - type: Transform
- pos: -29.5,55.5
- parent: 2
- - uid: 16346
- components:
- - type: Transform
- pos: 45.5,15.5
- parent: 2
- - uid: 16347
- components:
- - type: Transform
- pos: 46.5,-2.5
- parent: 2
- - uid: 16348
- components:
- - type: Transform
- pos: -12.5,-57.5
- parent: 2
- - uid: 16349
- components:
- - type: Transform
- pos: 50.5,13.5
- parent: 2
- - uid: 16350
- components:
- - type: Transform
- pos: -11.5,-5.5
- parent: 2
- - uid: 16351
- components:
- - type: Transform
- pos: 67.5,-51.5
- parent: 2
- - uid: 16352
- components:
- - type: Transform
- pos: -0.5,52.5
- parent: 2
- - uid: 16353
- components:
- - type: Transform
- pos: -20.5,-41.5
- parent: 2
- - uid: 16354
- components:
- - type: Transform
- pos: 4.5,-27.5
- parent: 2
- - uid: 16355
- components:
- - type: Transform
- pos: -22.5,-37.5
- parent: 2
- - uid: 16356
- components:
- - type: Transform
- pos: -40.5,-25.5
- parent: 2
- - uid: 16357
- components:
- - type: Transform
- pos: 32.5,-21.5
- parent: 2
- - uid: 16358
- components:
- - type: Transform
- pos: -3.5,-49.5
- parent: 2
- - uid: 16359
- components:
- - type: Transform
- pos: -34.5,-12.5
- parent: 2
- - uid: 16360
- components:
- - type: Transform
- pos: 20.5,-46.5
- parent: 2
- - uid: 16361
- components:
- - type: Transform
- pos: 6.5,-30.5
- parent: 2
- - uid: 16362
- components:
- - type: Transform
- pos: -20.5,22.5
- parent: 2
- - uid: 16363
- components:
- - type: Transform
- pos: -12.5,-53.5
- parent: 2
- - uid: 16364
- components:
- - type: Transform
- pos: 1.5,-61.5
- parent: 2
- - uid: 16365
- components:
- - type: Transform
- pos: -9.5,26.5
- parent: 2
- - uid: 16366
- components:
- - type: Transform
- pos: -64.5,13.5
- parent: 2
- - uid: 16367
- components:
- - type: Transform
- pos: -55.5,38.5
- parent: 2
- - uid: 16368
- components:
- - type: Transform
- pos: 72.5,-51.5
- parent: 2
- - uid: 16369
- components:
- - type: Transform
- pos: 43.5,28.5
- parent: 2
- - uid: 16370
- components:
- - type: Transform
- pos: 42.5,-9.5
- parent: 2
- - uid: 16371
- components:
- - type: Transform
- pos: -17.5,-79.5
- parent: 2
- - uid: 16372
- components:
- - type: Transform
- pos: -58.5,17.5
- parent: 2
- - uid: 16373
- components:
- - type: Transform
- pos: -24.5,29.5
- parent: 2
- - uid: 16374
- components:
- - type: Transform
- pos: 38.5,-27.5
- parent: 2
- - uid: 16375
- components:
- - type: Transform
- pos: -30.5,45.5
- parent: 2
- - uid: 16376
- components:
- - type: Transform
- pos: 2.5,-52.5
- parent: 2
- - uid: 16377
- components:
- - type: Transform
- pos: -8.5,13.5
- parent: 2
- - uid: 16378
- components:
- - type: Transform
- pos: 7.5,13.5
- parent: 2
- - uid: 16379
- components:
- - type: Transform
- pos: 37.5,0.5
- parent: 2
- - uid: 16380
- components:
- - type: Transform
- pos: 55.5,-29.5
- parent: 2
- - uid: 16381
- components:
- - type: Transform
- pos: -6.5,-27.5
- parent: 2
- - uid: 16382
- components:
- - type: Transform
- pos: -9.5,-29.5
- parent: 2
- - uid: 16383
- components:
- - type: Transform
- pos: 14.5,34.5
- parent: 2
- - uid: 16384
- components:
- - type: Transform
- pos: 43.5,5.5
- parent: 2
- - uid: 16385
- components:
- - type: Transform
- pos: 3.5,33.5
- parent: 2
- - uid: 16386
- components:
- - type: Transform
- pos: -57.5,3.5
- parent: 2
- - uid: 16387
- components:
- - type: Transform
- pos: -45.5,20.5
- parent: 2
- - uid: 16388
- components:
- - type: Transform
- pos: 28.5,-69.5
- parent: 2
- - uid: 16389
- components:
- - type: Transform
- pos: -64.5,11.5
- parent: 2
- - uid: 16390
- components:
- - type: Transform
- pos: 2.5,28.5
- parent: 2
- - uid: 16391
- components:
- - type: Transform
- pos: 33.5,12.5
- parent: 2
- - uid: 16392
- components:
- - type: Transform
- pos: 21.5,10.5
- parent: 2
- - uid: 16393
- components:
- - type: Transform
- pos: -17.5,-21.5
- parent: 2
- - uid: 16394
- components:
- - type: Transform
- pos: -31.5,-44.5
- parent: 2
- - uid: 16395
- components:
- - type: Transform
- pos: -29.5,32.5
- parent: 2
- - uid: 16396
- components:
- - type: Transform
- pos: -42.5,-29.5
- parent: 2
- - uid: 16397
- components:
- - type: Transform
- pos: -38.5,-29.5
- parent: 2
- - uid: 16398
- components:
- - type: Transform
- pos: -34.5,-29.5
- parent: 2
- - uid: 16399
- components:
- - type: Transform
- pos: -32.5,-25.5
- parent: 2
- - uid: 16400
- components:
- - type: Transform
- pos: -47.5,-28.5
- parent: 2
- - uid: 16401
- components:
- - type: Transform
- pos: 16.5,-21.5
- parent: 2
- - uid: 16402
- components:
- - type: Transform
- pos: 25.5,38.5
- parent: 2
- - uid: 16403
- components:
- - type: Transform
- pos: 43.5,17.5
- parent: 2
- - uid: 16404
- components:
- - type: Transform
- pos: 50.5,3.5
- parent: 2
- - uid: 16405
- components:
- - type: Transform
- pos: -16.5,55.5
- parent: 2
- - uid: 16406
- components:
- - type: Transform
- pos: -26.5,15.5
- parent: 2
- - uid: 16407
- components:
- - type: Transform
- pos: -2.5,-81.5
- parent: 2
- - uid: 16408
- components:
- - type: Transform
- pos: -2.5,-63.5
- parent: 2
- - uid: 16409
- components:
- - type: Transform
- pos: -34.5,53.5
- parent: 2
- - uid: 16410
- components:
- - type: Transform
- pos: 49.5,21.5
- parent: 2
- - uid: 16411
- components:
- - type: Transform
- pos: -52.5,-17.5
- parent: 2
- - uid: 16412
- components:
- - type: Transform
- pos: -27.5,61.5
- parent: 2
-- proto: DisposalYJunction
- entities:
- - uid: 16413
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-57.5
- parent: 2
- - uid: 16414
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-55.5
- parent: 2
- - uid: 16415
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,37.5
- parent: 2
- - uid: 16416
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,10.5
- parent: 2
- - uid: 16417
- components:
- - type: Transform
- pos: 47.5,20.5
- parent: 2
- - uid: 16418
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,29.5
- parent: 2
- - uid: 16419
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,14.5
- parent: 2
- - uid: 16420
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,23.5
- parent: 2
- - uid: 16421
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-61.5
- parent: 2
- - uid: 16422
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-19.5
- parent: 2
- - uid: 16423
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,42.5
- parent: 2
-- proto: DogBed
- entities:
- - uid: 16424
- components:
- - type: Transform
- pos: -20.5,-39.5
- parent: 2
- - uid: 16425
- components:
- - type: Transform
- pos: 1.5,50.5
- parent: 2
- - uid: 16426
- components:
- - type: Transform
- pos: 52.5,9.5
- parent: 2
- - uid: 16427
- components:
- - type: Transform
- pos: -34.5,48.5
- parent: 2
- - uid: 16428
- components:
- - type: Transform
- pos: 11.5,5.5
- parent: 2
- - uid: 16429
- components:
- - type: Transform
- pos: 20.5,-45.5
- parent: 2
- - uid: 16430
- components:
- - type: Transform
- pos: 7.5,-29.5
- parent: 2
- - uid: 16431
- components:
- - type: Transform
- pos: 27.5,41.5
- parent: 2
- - uid: 16432
- components:
- - type: Transform
- pos: -21.5,-5.5
- parent: 2
- - uid: 16433
- components:
- - type: Transform
- pos: 39.5,23.5
- parent: 2
- - uid: 16434
-=======
- parent: 15583
- - type: Physics
- canCollide: False
- - uid: 15585
- components:
- - type: Transform
- pos: -39.486397,-50.506275
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15586
- components:
- - type: Transform
- pos: -57.502308,-13.465677
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15587
- components:
- - type: Transform
- pos: -24.473108,-66.50455
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.367867,-68.083046
- parent: 2
- - uid: 15589
- components:
- - type: Transform
- pos: -21.5,14.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15590
- components:
- - type: Transform
- pos: -56.635643,-1.4630084
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15591
- components:
- - type: Transform
- pos: -18.545227,-32.384617
- parent: 2
-- proto: CrowbarRed
- entities:
- - uid: 15592
- components:
- - type: Transform
- pos: 74.5,-4.5
- parent: 2
- - uid: 15593
- components:
- - type: Transform
- pos: 9.521271,64.44338
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15594
- components:
- - type: Transform
- pos: 15.5,-54.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15595
- components:
- - type: Transform
- pos: 9.598661,84.47283
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 15596
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.250557,57.466568
- parent: 2
- - uid: 15597
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.54941,-31.15223
- parent: 2
- - uid: 15598
- components:
- - type: Transform
- pos: -22.533308,-60.389385
- parent: 2
-- proto: CryogenicSleepUnit
- entities:
- - uid: 15599
- components:
- - type: Transform
- pos: 49.5,-13.5
- parent: 2
- - uid: 15600
- components:
- - type: Transform
- pos: 38.5,-44.5
- parent: 2
- - uid: 15601
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-15.5
- parent: 2
- - uid: 15602
- components:
- - type: Transform
- pos: 38.5,-43.5
- parent: 2
-- proto: CryogenicSleepUnitSpawner
- entities:
- - uid: 15603
- components:
- - type: Transform
- pos: 49.5,-15.5
- parent: 2
-- proto: CryogenicSleepUnitSpawnerLateJoin
- entities:
- - uid: 15604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-13.5
- parent: 2
-- proto: CryoPod
- entities:
- - uid: 15605
- components:
- - type: Transform
- pos: 21.5,-37.5
- parent: 2
- - uid: 15606
- components:
- - type: Transform
- pos: 23.5,-37.5
- parent: 2
-- proto: CultAltarSpawner
- entities:
- - uid: 15607
- components:
- - type: Transform
- pos: -32.5,-77.5
- parent: 2
-- proto: CurtainsBlackOpen
- entities:
- - uid: 15608
- components:
- - type: Transform
- pos: -1.5,42.5
- parent: 2
- - uid: 15609
- components:
- - type: Transform
- pos: 98.5,12.5
- parent: 2
-- proto: CurtainsGreenOpen
- entities:
- - uid: 15610
- components:
- - type: Transform
- pos: -113.5,33.5
- parent: 2
- - uid: 15611
- components:
- - type: Transform
- pos: -112.5,33.5
- parent: 2
-- proto: CurtainsOrangeOpen
- entities:
- - uid: 15612
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,52.5
- parent: 2
-- proto: CurtainSpawner
- entities:
- - uid: 15613
- components:
- - type: Transform
- pos: -74.5,-21.5
- parent: 2
-- proto: CurtainsPinkOpen
- entities:
- - uid: 15614
- components:
- - type: Transform
- pos: -58.5,-50.5
- parent: 2
- - uid: 15615
- components:
- - type: Transform
- pos: -57.5,-50.5
- parent: 2
- - uid: 15616
- components:
- - type: Transform
- pos: -59.5,-50.5
- parent: 2
- - uid: 15617
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-48.5
- parent: 2
-- proto: CurtainsPurple
- entities:
- - uid: 15618
- components:
- - type: Transform
- pos: -10.5,27.5
- parent: 2
- - uid: 15619
- components:
- - type: Transform
- pos: -10.5,30.5
- parent: 2
- - uid: 15620
- components:
- - type: Transform
- pos: -10.5,31.5
- parent: 2
- - uid: 15621
- components:
- - type: Transform
- pos: -10.5,33.5
- parent: 2
- - uid: 15622
- components:
- - type: Transform
- pos: -10.5,29.5
- parent: 2
- - uid: 15623
- components:
- - type: Transform
- pos: -10.5,32.5
- parent: 2
- - uid: 15624
- components:
- - type: Transform
- pos: -10.5,28.5
- parent: 2
-- proto: CurtainsPurpleOpen
- entities:
- - uid: 15625
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,54.5
- parent: 2
-- proto: CurtainsRedOpen
- entities:
- - uid: 15626
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-37.5
- parent: 2
-- proto: CurtainsWhite
- entities:
- - uid: 38903
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,7.5
- parent: 38344
-- proto: CurtainsWhiteOpen
- entities:
- - uid: 15627
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,6.5
- parent: 2
- - uid: 15628
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,4.5
- parent: 2
- - uid: 38904
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,7.5
- parent: 38344
- - uid: 38905
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,7.5
- parent: 38344
- - uid: 38906
- components:
- - type: Transform
- pos: 3.5,-9.5
- parent: 38344
-- proto: Cutlass
- entities:
- - uid: 14472
- components:
- - type: Transform
- parent: 14471
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CyberPen
- entities:
- - uid: 15629
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: -36.596897,63.51953
- parent: 2
- - uid: 38907
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.754562,33.469177
- parent: 38344
-- proto: DawInstrument
- entities:
- - uid: 15630
- components:
- - type: Transform
- pos: -5.5,54.5
- parent: 2
-- proto: DefaultStationBeaconAISatellite
- entities:
- - uid: 15631
- components:
- - type: Transform
- pos: -118.5,33.5
- parent: 2
- - type: NavMapBeacon
- text: Спутник ИИ
- - type: WarpPoint
- location: Спутник ИИ
-- proto: DefaultStationBeaconAME
- entities:
- - uid: 15632
- components:
- - type: Transform
- pos: -69.5,-0.5
- parent: 2
- - type: NavMapBeacon
- text: Генераторная
- - type: WarpPoint
- location: Инженерный - Генераторная
-- proto: DefaultStationBeaconAnomalyGenerator
- entities:
- - uid: 15633
- components:
- - type: Transform
- pos: -17.5,-57.5
- parent: 2
- - type: NavMapBeacon
- text: Аномалистика
- - type: WarpPoint
- location: РнД - Аномалии
-- proto: DefaultStationBeaconArmory
- entities:
- - uid: 15634
- components:
- - type: Transform
- pos: 62.5,6.5
- parent: 2
- - type: NavMapBeacon
- text: Оружейная
- - type: WarpPoint
- location: Сб - оружиейная
-- proto: DefaultStationBeaconArrivals
- entities:
- - uid: 15635
- components:
- - type: Transform
- pos: -11.5,69.5
- parent: 2
- - type: NavMapBeacon
- text: Прибытие
- - type: WarpPoint
- location: Прибытие
-- proto: DefaultStationBeaconArtifactLab
- entities:
- - uid: 15636
- components:
- - type: Transform
- pos: -28.5,-41.5
- parent: 2
- - type: NavMapBeacon
- text: Артефакты
- - type: WarpPoint
- location: Научный - Артефакты
-- proto: DefaultStationBeaconBar
- entities:
- - uid: 15637
- components:
- - type: Transform
- pos: -10.5,41.5
- parent: 2
- - type: NavMapBeacon
- text: Бар
- - type: WarpPoint
- location: Сервис - Бар
-- proto: DefaultStationBeaconBotany
- entities:
- - uid: 15638
- components:
- - type: Transform
- pos: -29.5,50.5
- parent: 2
- - type: NavMapBeacon
- text: Гидропоника
- - type: WarpPoint
- location: Сервис - Гидропоника
-- proto: DefaultStationBeaconBridge
- entities:
- - uid: 15639
- components:
- - type: Transform
- pos: -0.5,16.5
- parent: 2
- - type: NavMapBeacon
- text: Мостик
- - type: WarpPoint
- location: Мостик
-- proto: DefaultStationBeaconBrig
- entities:
- - uid: 15640
- components:
- - type: Transform
- pos: 47.5,7.5
- parent: 2
- - type: NavMapBeacon
- text: Бриг
- - type: WarpPoint
- location: Бриг
-- proto: DefaultStationBeaconCaptainsQuarters
- entities:
- - uid: 15641
- components:
- - type: Transform
- pos: 9.5,3.5
- parent: 2
- - type: NavMapBeacon
- text: Каюта капитана
- - type: WarpPoint
- location: Мостик - Комната капитана
-- proto: DefaultStationBeaconCargoBay
- entities:
- - uid: 15642
- components:
- - type: Transform
- pos: 37.5,50.5
- parent: 2
- - type: NavMapBeacon
- text: Карго док
- - type: WarpPoint
- location: Карго - доки
-- proto: DefaultStationBeaconCERoom
- entities:
- - uid: 15643
- components:
- - type: Transform
- pos: -63.5,7.5
- parent: 2
- - type: NavMapBeacon
- text: СИ
- - type: WarpPoint
- location: Инженерный - Офис старшего инженера
-- proto: DefaultStationBeaconChapel
- entities:
- - uid: 15644
- components:
- - type: Transform
- pos: -16.5,-70.5
- parent: 2
- - type: NavMapBeacon
- text: Церковь
- - type: WarpPoint
- location: Сервис - Церковь
-- proto: DefaultStationBeaconChemistry
- entities:
- - uid: 15645
- components:
- - type: Transform
- pos: 5.5,-32.5
- parent: 2
- - type: NavMapBeacon
- text: Химия
- - type: WarpPoint
- location: Медотсек - Химия
-- proto: DefaultStationBeaconCMORoom
- entities:
- - uid: 15646
- components:
- - type: Transform
- pos: 22.5,-45.5
- parent: 2
- - type: NavMapBeacon
- text: ГВ
- - type: WarpPoint
- location: Медотсек - Кабинет главрача
-- proto: DefaultStationBeaconCourtroom
- entities:
- - uid: 15647
- components:
- - type: Transform
- pos: 26.5,-1.5
- parent: 2
- - type: NavMapBeacon
- text: Суд
- - type: WarpPoint
- location: Зал суда
-- proto: DefaultStationBeaconCryonics
- entities:
- - uid: 15648
- components:
- - type: Transform
- pos: 22.5,-39.5
- parent: 2
- - type: NavMapBeacon
- text: Крио
- - type: WarpPoint
- location: Медотсек - криогеника
-- proto: DefaultStationBeaconDetectiveRoom
- entities:
- - uid: 15649
- components:
- - type: Transform
- pos: 30.5,10.5
- parent: 2
- - type: NavMapBeacon
- text: Детектив
- - type: WarpPoint
- location: СБ - Офис детектива
-- proto: DefaultStationBeaconDisposals
- entities:
- - uid: 15650
- components:
- - type: Transform
- pos: 28.5,59.5
- parent: 2
- - type: NavMapBeacon
- text: Мусорка
- - type: WarpPoint
- location: Мусоросброс
-- proto: DefaultStationBeaconDorms
- entities:
- - uid: 15651
- components:
- - type: Transform
- pos: 48.5,-19.5
- parent: 2
- - type: NavMapBeacon
- text: Дормы
- - type: WarpPoint
- location: Дормы - Дормы
-- proto: DefaultStationBeaconEngineering
- entities:
- - uid: 15652
- components:
- - type: Transform
- pos: -53.5,11.5
- parent: 2
- - type: NavMapBeacon
- text: Инженерный отдел
- - type: WarpPoint
- location: Инженерный отдел
-- proto: DefaultStationBeaconEvac
- entities:
- - uid: 15653
- components:
- - type: Transform
- pos: -4.5,-72.5
- parent: 2
- - type: NavMapBeacon
- text: Отбытие
- - type: WarpPoint
- location: Отбытие
-- proto: DefaultStationBeaconEVAStorage
- entities:
- - uid: 15654
- components:
- - type: Transform
- pos: -11.5,-13.5
- parent: 2
- - type: NavMapBeacon
- text: Хранилище EVA
- - type: WarpPoint
- location: Командование - Хранение EVA
-- proto: DefaultStationBeaconGravGen
- entities:
- - uid: 15655
- components:
- - type: Transform
- pos: -71.5,7.5
- parent: 2
- - type: NavMapBeacon
- text: Генератор гравитации
- - type: WarpPoint
- location: Инженерный - Гравитационный генератор
-- proto: DefaultStationBeaconHOPOffice
- entities:
- - uid: 15656
- components:
- - type: Transform
- pos: -10.5,1.5
- parent: 2
- - type: NavMapBeacon
- text: ГП
- - type: WarpPoint
- location: Мостик - Глава персонала
-- proto: DefaultStationBeaconHOSRoom
- entities:
- - uid: 15657
- components:
- - type: Transform
- pos: 40.5,20.5
- parent: 2
- - type: NavMapBeacon
- text: ГСБ
- - type: WarpPoint
- location: Сб - кабинет ГСБ
-- proto: DefaultStationBeaconJanitorsCloset
- entities:
- - uid: 15658
- components:
- - type: Transform
- pos: 1.5,52.5
- parent: 2
-- proto: DefaultStationBeaconKitchen
- entities:
- - uid: 15659
- components:
- - type: Transform
- pos: -30.5,35.5
- parent: 2
- - type: NavMapBeacon
- text: Кухня
- - type: WarpPoint
- location: Сервис - Кухня
-- proto: DefaultStationBeaconLawOffice
- entities:
- - uid: 15660
- components:
- - type: Transform
- pos: 35.5,0.5
- parent: 2
- - type: NavMapBeacon
- text: АВД
- - type: WarpPoint
- location: Офис агента внутренних дел
-- proto: DefaultStationBeaconLibrary
- entities:
- - uid: 15661
- components:
- - type: Transform
- pos: -28.5,-3.5
- parent: 2
- - type: NavMapBeacon
- text: Библиотека
- - type: WarpPoint
- location: Библиотека - Центральный зал
-- proto: DefaultStationBeaconMedbay
- entities:
- - uid: 15662
- components:
- - type: Transform
- pos: 8.5,-25.5
- parent: 2
- - type: NavMapBeacon
- text: Медбей
- - type: WarpPoint
- location: Медотсек - Лобби
-- proto: DefaultStationBeaconMorgue
- entities:
- - uid: 15663
- components:
- - type: Transform
- pos: 7.5,-50.5
- parent: 2
- - type: NavMapBeacon
- text: Морг
- - type: WarpPoint
- location: Медотсек - Морг
-- proto: DefaultStationBeaconPermaBrig
- entities:
- - uid: 15664
- components:
- - type: Transform
- pos: 91.5,1.5
- parent: 2
-- proto: DefaultStationBeaconQMRoom
- entities:
- - uid: 15665
- components:
- - type: Transform
- pos: 26.5,36.5
- parent: 2
- - type: NavMapBeacon
- text: КМ
- - type: WarpPoint
- location: Снабжение - Офис квартирмейстер
-- proto: DefaultStationBeaconRDRoom
- entities:
- - uid: 15666
- components:
- - type: Transform
- pos: -18.5,-40.5
- parent: 2
- - type: NavMapBeacon
- text: НР
- - type: WarpPoint
- location: Научный - Офис научного руководителя
-- proto: DefaultStationBeaconSalvage
- entities:
- - uid: 15667
- components:
- - type: Transform
- pos: 23.5,29.5
- parent: 2
- - type: NavMapBeacon
- text: Утилизаторная
- - type: WarpPoint
- location: Карго - утилизаторная
-- proto: DefaultStationBeaconScience
- entities:
- - uid: 15668
- components:
- - type: Transform
- pos: -6.5,-32.5
- parent: 2
- - type: NavMapBeacon
- text: Научный
- - type: WarpPoint
- location: Научный - РНД
-- proto: DefaultStationBeaconSecurityCheckpoint
- entities:
- - uid: 15669
- components:
- - type: Transform
- pos: 6.5,-59.5
- parent: 2
- - type: NavMapBeacon
- text: КПП
- - type: WarpPoint
- location: Отбытие - КПП
- - uid: 15670
- components:
- - type: Transform
- pos: 2.5,63.5
- parent: 2
- - type: NavMapBeacon
- text: КПП
- - type: WarpPoint
- location: Прибытие - Контрольно-пропускной пункт
-- proto: DefaultStationBeaconServerRoom
- entities:
- - uid: 15671
- components:
- - type: Transform
- pos: -19.5,-52.5
- parent: 2
- - type: NavMapBeacon
- text: Серверная
- - type: WarpPoint
- location: Научный - серверная
-- proto: DefaultStationBeaconSolars
- entities:
- - uid: 15672
- components:
- - type: Transform
- pos: 28.5,95.5
- parent: 2
- - type: NavMapBeacon
- text: Соляры
- - type: WarpPoint
- location: Соляры - Северо-восток
- - uid: 15673
- components:
- - type: Transform
- pos: -75.5,73.5
- parent: 2
- - type: NavMapBeacon
- text: Соляры
- - type: WarpPoint
- location: Соляры - Северо-Запад
- - uid: 15674
- components:
- - type: Transform
- pos: -51.5,-85.5
- parent: 2
- - type: NavMapBeacon
- text: Соляры
- - type: WarpPoint
- location: Соляры - Юго-западные
-- proto: DefaultStationBeaconSupply
- entities:
- - uid: 15675
- components:
- - type: Transform
- pos: 6.5,30.5
- parent: 2
- - type: NavMapBeacon
- text: Снабжение
- - type: WarpPoint
- location: Снабжение - Холл
-- proto: DefaultStationBeaconSurgery
- entities:
- - uid: 15676
- components:
- - type: Transform
- pos: 32.5,-48.5
- parent: 2
- - type: NavMapBeacon
- text: Хирургия
- - type: WarpPoint
- location: Медбей - операционная
-- proto: DefaultStationBeaconTEG
- entities:
- - uid: 15677
- components:
- - type: Transform
- pos: -51.5,50.5
- parent: 2
- - type: NavMapBeacon
- text: ТЭГ
- - type: WarpPoint
- location: Атмос ТЭГ
-- proto: DefaultStationBeaconTheater
- entities:
- - uid: 15678
- components:
- - type: Transform
- pos: -12.5,30.5
- parent: 2
-- proto: DefaultStationBeaconToolRoom
- entities:
- - uid: 15679
- components:
- - type: Transform
- pos: -26.5,12.5
- parent: 2
- - type: NavMapBeacon
- text: Инструменты
- - type: WarpPoint
- location: Инженерный - Основное хранилище инструментов
-- proto: DefaultStationBeaconWardensOffice
- entities:
- - uid: 15680
- components:
- - type: Transform
- pos: 53.5,6.5
- parent: 2
- - type: NavMapBeacon
- text: Смотритель
- - type: WarpPoint
- location: СБ - смотритель
-- proto: DefibrillatorCabinetFilled
- entities:
- - uid: 15681
- components:
- - type: Transform
- pos: 27.5,-27.5
- parent: 2
- - uid: 15682
- components:
- - type: Transform
- pos: 62.5,-1.5
- parent: 2
- - uid: 15683
- components:
- - type: Transform
- pos: 37.5,-36.5
- parent: 2
- - uid: 15684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-63.5
- parent: 2
- - uid: 15685
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-53.5
- parent: 2
- - uid: 15686
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,64.5
- parent: 2
- - uid: 15687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-15.5
- parent: 2
- - uid: 15688
- components:
- - type: Transform
- pos: -4.5,-56.5
- parent: 2
- - uid: 15689
- components:
- - type: Transform
- pos: 13.5,-41.5
- parent: 2
-- proto: DeployableBarrier
- entities:
- - uid: 15690
- components:
- - type: Transform
- pos: 67.5,6.5
- parent: 2
- - uid: 15691
- components:
- - type: Transform
- pos: 68.5,7.5
- parent: 2
- - uid: 15692
- components:
- - type: Transform
- pos: 70.5,7.5
- parent: 2
- - uid: 15693
- components:
- - type: Transform
- pos: 8.5,-65.5
- parent: 2
- - uid: 15694
- components:
- - type: Transform
- pos: 9.5,-65.5
- parent: 2
- - uid: 15695
- components:
- - type: Transform
- pos: 65.5,6.5
- parent: 2
- - uid: 15696
- components:
- - type: Transform
- pos: 9.5,-64.5
- parent: 2
- - uid: 15697
- components:
- - type: Transform
- pos: 8.5,-63.5
- parent: 2
- - uid: 15698
- components:
- - type: Transform
- pos: 9.5,-63.5
- parent: 2
-- proto: DeskBell
- entities:
- - uid: 15699
- components:
- - type: Transform
- pos: -14.452139,4.661233
- parent: 2
- - uid: 15700
- components:
- - type: Transform
- pos: -27.526104,38.624985
- parent: 2
- - uid: 15701
- components:
- - type: Transform
- pos: -23.478344,51.650402
- parent: 2
- - uid: 15702
- components:
- - type: Transform
- pos: -5.5,-28.5
- parent: 2
- - type: Physics
- canCollide: False
- bodyType: Static
- - uid: 15703
- components:
- - type: Transform
- pos: 9.476555,32.663494
- parent: 2
-- proto: DiceBag
- entities:
- - uid: 15704
- components:
- - type: Transform
- pos: 34.408886,-31.340927
- parent: 2
- - type: Physics
- canCollide: False
-- proto: DiseaseDiagnoser
- entities:
- - uid: 15705
- components:
- - type: Transform
- pos: 29.5,-65.5
- parent: 2
-- proto: DisposalBend
- entities:
- - uid: 15706
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,25.5
- parent: 2
- - uid: 15707
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,12.5
- parent: 2
- - uid: 15708
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,20.5
- parent: 2
- - uid: 15709
- components:
- - type: Transform
- pos: -24.5,30.5
- parent: 2
- - uid: 15710
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,48.5
- parent: 2
- - uid: 15711
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,30.5
- parent: 2
- - uid: 15712
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,33.5
- parent: 2
- - uid: 15713
- components:
- - type: Transform
- pos: -29.5,33.5
- parent: 2
- - uid: 15714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,36.5
- parent: 2
- - uid: 15715
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,28.5
- parent: 2
- - uid: 15716
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,28.5
- parent: 2
- - uid: 15717
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,57.5
- parent: 2
- - uid: 15718
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,56.5
- parent: 2
- - uid: 15719
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-19.5
- parent: 2
- - uid: 15720
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,14.5
- parent: 2
- - uid: 15721
- components:
- - type: Transform
- pos: -8.5,14.5
- parent: 2
- - uid: 15722
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,47.5
- parent: 2
- - uid: 15723
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- pos: -52.5,33.5
- parent: 2
- - uid: 16435
- components:
- - type: Transform
- pos: -13.5,0.5
- parent: 2
-- proto: DonkpocketBoxSpawner
- entities:
- - uid: 16436
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,30.5
- parent: 2
- - uid: 16437
- components:
- - type: Transform
- pos: -28.5,32.5
- parent: 2
- - uid: 16438
- components:
- - type: Transform
- pos: 27.5,32.5
- parent: 2
- - uid: 16439
- components:
- - type: Transform
- pos: 20.5,0.5
- parent: 2
- - uid: 16440
- components:
- - type: Transform
- pos: -3.5,-63.5
- parent: 2
- - uid: 16441
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,37.5
- parent: 2
-- proto: DoorElectronics
- entities:
- - uid: 16442
- components:
- - type: Transform
- pos: -38.5,12.5
- parent: 2
- - uid: 16443
- components:
- - type: Transform
- pos: -32.5,9.5
- parent: 2
-- proto: DoubleEmergencyOxygenTankFilled
- entities:
- - uid: 1523
- components:
- - type: Transform
- parent: 1511
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16444
- components:
- - type: Transform
- pos: 69.5,-48.5
- parent: 2
- - uid: 16445
- components:
- - type: Transform
- pos: -49.56276,20.6829
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16446
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.512732,59.45561
- parent: 2
- - uid: 16447
- components:
- - type: Transform
- pos: -59.57536,52.708168
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16448
- components:
- - type: Transform
- pos: -49.37526,20.52665
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16449
- components:
- - type: Transform
- pos: -57.510643,-1.4317584
- parent: 2
- - type: Physics
- canCollide: False
-- proto: Dresser
- entities:
- - uid: 14341
- components:
- - type: Transform
- pos: -30.5,-15.5
- parent: 2
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14342
- - uid: 14367
- components:
- - type: Transform
- pos: 14.5,-52.5
- parent: 2
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14372
- - 14370
- - 14371
- - 14373
- - 14369
- - 14368
- - uid: 16450
- components:
- - type: Transform
- pos: -30.5,-69.5
- parent: 2
- - uid: 16451
- components:
- - type: Transform
- pos: 51.5,-13.5
- parent: 2
- - uid: 16452
- components:
- - type: Transform
- pos: -3.5,44.5
- parent: 2
- - uid: 16453
- components:
- - type: Transform
- pos: 45.5,-22.5
- parent: 2
- - uid: 16454
- components:
- - type: Transform
- pos: 51.5,-25.5
- parent: 2
- - uid: 16455
- components:
- - type: Transform
- pos: -2.5,53.5
- parent: 2
- - uid: 16456
- components:
- - type: Transform
- pos: -9.5,54.5
- parent: 2
- - uid: 16457
- components:
- - type: Transform
- pos: 49.5,-22.5
- parent: 2
- - uid: 16458
- components:
- - type: Transform
- pos: 10.5,11.5
- parent: 2
-- proto: DresserCaptainFilled
- entities:
- - uid: 16459
- components:
- - type: Transform
- pos: 13.5,0.5
- parent: 2
-- proto: DresserChiefEngineerFilled
- entities:
- - uid: 16460
- components:
- - type: Transform
- pos: -58.5,5.5
- parent: 2
-- proto: DresserChiefMedicalOfficerFilled
- entities:
- - uid: 16461
- components:
- - type: Transform
- pos: 24.5,-50.5
- parent: 2
-- proto: DresserFilled
- entities:
- - uid: 16462
- components:
- - type: Transform
- pos: -24.5,-10.5
- parent: 2
-- proto: DresserHeadOfPersonnelFilled
- entities:
- - uid: 16463
- components:
- - type: Transform
- pos: -15.5,-3.5
- parent: 2
-- proto: DresserHeadOfSecurityFilled
- entities:
- - uid: 16464
- components:
- - type: Transform
- pos: 36.5,22.5
- parent: 2
-- proto: DresserQuarterMasterFilled
- entities:
- - uid: 16465
- components:
- - type: Transform
- pos: 27.5,44.5
- parent: 2
-- proto: DresserResearchDirectorFilled
- entities:
- - uid: 16466
- components:
- - type: Transform
- pos: -16.5,-45.5
- parent: 2
-- proto: DrinkBeerBottleFull
- entities:
- - uid: 16467
- components:
- - type: Transform
- pos: 41.357204,28.897608
- parent: 2
- - uid: 16468
- components:
- - type: Transform
- pos: -76.798294,-0.080628335
- parent: 2
-- proto: DrinkBeerglass
- entities:
- - uid: 16469
- components:
- - type: Transform
- pos: 55.687534,-45.35493
- parent: 2
- - uid: 16470
- components:
- - type: Transform
- pos: 55.202816,-45.359303
- parent: 2
-- proto: DrinkBottleBeer
- entities:
- - uid: 16471
- components:
- - type: Transform
- pos: -70.47365,-40.035416
- parent: 2
- - uid: 16472
- components:
- - type: Transform
- pos: -62.988712,-41.005077
- parent: 2
- - uid: 16473
- components:
- - type: Transform
- pos: -62.73794,-41.211567
- parent: 2
-- proto: DrinkBottleGildlager
- entities:
- - uid: 13975
- components:
- - type: Transform
- parent: 13972
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: DrinkBottleOfNothingFull
- entities:
- - uid: 14469
- components:
- - type: Transform
- parent: 14466
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: DrinkBottleVodka
- entities:
- - uid: 16474
- components:
- - type: Transform
- pos: -64.88222,-24.802635
- parent: 2
-- proto: DrinkBottleWhiskey
- entities:
- - uid: 16475
- components:
- - type: Transform
- pos: -40.49082,-9.030222
- parent: 2
-- proto: DrinkCanPack
- entities:
- - uid: 16476
- components:
- - type: Transform
- pos: -69.5,-44.5
- parent: 2
-- proto: DrinkChampagneBottleFull
- entities:
- - uid: 16477
- components:
- - type: Transform
- pos: 23.099499,16.62038
- parent: 2
-- proto: DrinkColaBottleFull
- entities:
- - uid: 16478
- components:
- - type: Transform
- pos: -76.81392,-0.4087534
- parent: 2
-- proto: DrinkFlask
- entities:
- - uid: 16479
- components:
- - type: Transform
- pos: 8.751882,0.49553835
- parent: 2
-- proto: DrinkGildlagerBottleFull
- entities:
- - uid: 16480
- components:
- - type: Transform
- pos: 26.358824,19.103046
- parent: 2
-- proto: DrinkGlass
- entities:
- - uid: 16481
- components:
- - type: Transform
- pos: 84.31722,5.0792255
- parent: 2
- - uid: 16482
- components:
- - type: Transform
- pos: 84.59847,5.079226
- parent: 2
- - uid: 16483
- components:
- - type: Transform
- pos: 84.81722,5.0948505
- parent: 2
- - uid: 16484
- components:
- - type: Transform
- pos: -11.653931,36.61787
- parent: 2
-- proto: DrinkGlassCoupeShaped
- entities:
- - uid: 14855
- components:
- - type: Transform
- parent: 14854
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14856
- components:
- - type: Transform
- parent: 14854
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: DrinkGoldenCup
- entities:
- - uid: 16485
- components:
- - type: Transform
- pos: 23.515074,20.774921
- parent: 2
-- proto: DrinkGrapeSodaGlass
- entities:
- - uid: 16486
- components:
- - type: Transform
- pos: -8.52768,39.647503
- parent: 2
-- proto: DrinkGreenTea
- entities:
- - uid: 16487
- components:
- - type: Transform
- pos: -52.36495,-44.64987
- parent: 2
- - uid: 16488
- components:
- - type: Transform
- pos: -50.639072,-45.357834
- parent: 2
- - uid: 16489
- components:
- - type: Transform
- pos: -8.362577,-3.5833626
- parent: 2
- - uid: 16490
- components:
- - type: Transform
- pos: -8.675077,-3.3021126
- parent: 2
-- proto: DrinkHosFlask
- entities:
- - uid: 16491
- components:
- - type: Transform
- pos: 41.521767,20.175655
- parent: 2
-- proto: DrinkHotCoffee
- entities:
- - uid: 16492
- components:
- - type: Transform
- pos: -56.503292,12.64807
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16493
- components:
- - type: Transform
- pos: -46.475765,37.90942
- parent: 2
- - uid: 16494
- components:
- - type: Transform
- pos: 51.090782,7.7054863
- parent: 2
- - uid: 16495
- components:
- - type: Transform
- pos: 20.753819,38.703323
- parent: 2
-- proto: DrinkJarWhat
- entities:
- - uid: 16496
-=======
- rot: 3.141592653589793 rad
- pos: -6.5,37.5
- parent: 2
- - uid: 15724
- components:
- - type: Transform
- pos: 36.5,-73.5
- parent: 2
- - uid: 15725
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-68.5
- parent: 2
- - uid: 15726
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-73.5
- parent: 2
- - uid: 15727
- components:
- - type: Transform
- pos: 35.5,-68.5
- parent: 2
- - uid: 15728
- components:
- - type: Transform
- pos: -5.5,37.5
- parent: 2
- - uid: 15729
- components:
- - type: Transform
- pos: 42.5,30.5
- parent: 2
- - uid: 15730
- components:
- - type: Transform
- pos: -46.5,21.5
- parent: 2
- - uid: 15731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,36.5
- parent: 2
- - uid: 15732
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-79.5
- parent: 2
- - uid: 15733
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,45.5
- parent: 2
- - uid: 15734
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,4.5
- parent: 2
- - uid: 15735
- components:
- - type: Transform
- pos: 32.5,5.5
- parent: 2
- - uid: 15736
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,18.5
- parent: 2
- - uid: 15737
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,31.5
- parent: 2
- - uid: 15738
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,57.5
- parent: 2
- - uid: 15739
- components:
- - type: Transform
- pos: -54.5,42.5
- parent: 2
- - uid: 15740
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,42.5
- parent: 2
- - uid: 15741
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,27.5
- parent: 2
- - uid: 15742
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,34.5
- parent: 2
- - uid: 15743
- components:
- - type: Transform
- pos: -55.5,45.5
- parent: 2
- - uid: 15744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,55.5
- parent: 2
- - uid: 15745
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,30.5
- parent: 2
- - uid: 15746
- components:
- - type: Transform
- pos: 33.5,31.5
- parent: 2
- - uid: 15747
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,55.5
- parent: 2
- - uid: 15748
- components:
- - type: Transform
- pos: -53.5,24.5
- parent: 2
- - uid: 15749
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,45.5
- parent: 2
- - uid: 15750
- components:
- - type: Transform
- pos: -6.5,45.5
- parent: 2
- - uid: 15751
- components:
- - type: Transform
- pos: -57.5,18.5
- parent: 2
- - uid: 15752
- components:
- - type: Transform
- pos: -58.5,57.5
- parent: 2
- - uid: 15753
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,24.5
- parent: 2
- - uid: 15754
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,14.5
- parent: 2
- - uid: 15755
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,28.5
- parent: 2
- - uid: 15756
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,10.5
- parent: 2
- - uid: 15757
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,56.5
- parent: 2
- - uid: 15758
- components:
- - type: Transform
- pos: 10.5,57.5
- parent: 2
- - uid: 15759
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,82.5
- parent: 2
- - uid: 15760
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,68.5
- parent: 2
- - uid: 15761
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,68.5
- parent: 2
- - uid: 15762
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,68.5
- parent: 2
- - uid: 15763
- components:
- - type: Transform
- pos: -18.5,68.5
- parent: 2
- - uid: 15764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,65.5
- parent: 2
- - uid: 15765
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,65.5
- parent: 2
- - uid: 15766
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,61.5
- parent: 2
- - uid: 15767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,46.5
- parent: 2
- - uid: 15768
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,36.5
- parent: 2
- - uid: 15769
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,33.5
- parent: 2
- - uid: 15770
- components:
- - type: Transform
- pos: -18.5,36.5
- parent: 2
- - uid: 15771
- components:
- - type: Transform
- pos: -9.5,-5.5
- parent: 2
- - uid: 15772
- components:
- - type: Transform
- pos: 17.5,23.5
- parent: 2
- - uid: 15773
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,12.5
- parent: 2
- - uid: 15774
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-64.5
- parent: 2
- - uid: 15775
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.49999997,-79.5
- parent: 2
- - uid: 15776
- components:
- - type: Transform
- pos: 0.49999997,-64.5
- parent: 2
- - uid: 15777
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-79.5
- parent: 2
- - uid: 15778
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-77.5
- parent: 2
- - uid: 15779
- components:
- - type: Transform
- pos: -4.5,-77.5
- parent: 2
- - uid: 15780
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-27.5
- parent: 2
- - uid: 15781
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-34.5
- parent: 2
- - uid: 15782
- components:
- - type: Transform
- pos: 17.5,-25.5
- parent: 2
- - uid: 15783
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-25.5
- parent: 2
- - uid: 15784
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-25.5
- parent: 2
- - uid: 15785
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-34.5
- parent: 2
- - uid: 15786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-46.5
- parent: 2
- - uid: 15787
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-43.5
- parent: 2
- - uid: 15788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-43.5
- parent: 2
- - uid: 15789
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-39.5
- parent: 2
- - uid: 15790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-45.5
- parent: 2
- - uid: 15791
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-45.5
- parent: 2
- - uid: 15792
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-51.5
- parent: 2
- - uid: 15793
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-51.5
- parent: 2
- - uid: 15794
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-52.5
- parent: 2
- - uid: 15795
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-53.5
- parent: 2
- - uid: 15796
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- pos: -15.453269,-27.25954
- parent: 2
-- proto: DrinkManlyDorfGlass
- entities:
- - uid: 16497
- components:
- - type: Transform
- pos: -48.583096,47.629047
- parent: 2
-- proto: DrinkMug
- entities:
- - uid: 16498
- components:
- - type: Transform
- pos: 4.6912384,43.501335
- parent: 2
- - type: Physics
- canCollide: False
-- proto: DrinkMugBlack
- entities:
- - uid: 16499
- components:
- - type: Transform
- pos: -22.333149,-39.62949
- parent: 2
-- proto: DrinkMugDog
- entities:
- - uid: 16500
- components:
- - type: Transform
- pos: 18.368465,-50.232624
- parent: 2
- - uid: 16501
- components:
- - type: Transform
- pos: -22.661274,-39.25449
- parent: 2
-- proto: DrinkMugMetal
- entities:
- - uid: 16502
- components:
- - type: Transform
- pos: 11.355303,-28.496075
- parent: 2
-- proto: DrinkMugMoebius
- entities:
- - uid: 16503
- components:
- - type: Transform
- pos: 18.671715,-50.510868
- parent: 2
- - uid: 16504
- components:
- - type: Transform
- pos: -34.338005,63.49301
- parent: 2
-- proto: DrinkMugOne
- entities:
- - uid: 16505
- components:
- - type: Transform
- pos: -40.29744,61.61986
- parent: 2
- - uid: 16506
- components:
- - type: Transform
- pos: -77.735794,-0.17437816
- parent: 2
-- proto: DrinkMugRainbow
- entities:
- - uid: 16507
- components:
- - type: Transform
- pos: -77.22017,-0.19000322
- parent: 2
-- proto: DrinkMugRed
- entities:
- - uid: 16508
- components:
- - type: Transform
- pos: -28.544523,-10.337871
- parent: 2
-- proto: DrinkNukieCan
- entities:
- - uid: 16509
- components:
- - type: Transform
- pos: -74.64876,-35.243942
- parent: 2
- - uid: 16510
- components:
- - type: Transform
- pos: -74.45699,-35.406185
- parent: 2
-- proto: DrinkShaker
- entities:
- - uid: 16511
- components:
- - type: Transform
- pos: -5.5394945,40.926525
- parent: 2
-- proto: DrinkShotGlass
- entities:
- - uid: 16512
- components:
- - type: Transform
- pos: -65.354256,-24.463402
- parent: 2
- - uid: 16513
- components:
- - type: Transform
- pos: -65.64928,-24.197916
- parent: 2
- - uid: 16514
- components:
- - type: Transform
- pos: 63.46561,22.271175
- parent: 2
-- proto: DrinkSpaceGlue
- entities:
- - uid: 16515
- components:
- - type: Transform
- pos: 38.48052,-19.283209
- parent: 2
- - uid: 16516
- components:
- - type: Transform
- pos: 70.258064,23.686186
- parent: 2
- - uid: 16517
- components:
- - type: Transform
- pos: 20.197306,-18.429718
- parent: 2
- - uid: 16518
- components:
- - type: Transform
- pos: 47.504456,-51.095913
- parent: 2
- - uid: 16519
- components:
- - type: Transform
- pos: 86.46696,3.4983258
- parent: 2
-- proto: DrinkSpaceLube
- entities:
- - uid: 16521
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: DrinkTeacup
- entities:
- - uid: 16540
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.797064,-39.72211
- parent: 2
- - uid: 16541
- components:
- - type: Transform
- pos: -4.564571,1.4259852
- parent: 2
- - uid: 16542
- components:
- - type: Transform
- pos: -3.5614977,0.61477566
- parent: 2
- - uid: 16543
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.445503,-39.229927
- parent: 2
-- proto: DrinkTeapot
- entities:
- - uid: 16544
- components:
- - type: Transform
- pos: -51.479885,-44.930107
- parent: 2
- - uid: 16545
- components:
- - type: Transform
- pos: -4.0040307,1.057254
- parent: 2
- - uid: 16546
- components:
- - type: Transform
- pos: -8.518827,-4.0677376
- parent: 2
-- proto: DrinkVodkaBottleFull
- entities:
- - uid: 16547
- components:
- - type: Transform
- pos: 77.490364,-46.540504
- parent: 2
- - uid: 16548
- components:
- - type: Transform
- pos: 77.72074,-46.363407
- parent: 2
- - uid: 16549
- components:
- - type: Transform
- pos: 77.50809,-46.398827
- parent: 2
- - uid: 16550
- components:
- - type: Transform
- pos: 77.4372,-46.575924
- parent: 2
- - uid: 16551
- components:
- - type: Transform
- pos: 77.45492,-46.575924
- parent: 2
- - uid: 16552
- components:
- - type: Transform
- pos: -43.519814,54.566936
- parent: 2
- - uid: 16553
- components:
- - type: Transform
- pos: 77.30893,-46.454647
- parent: 2
- - uid: 16554
- components:
- - type: Transform
- pos: 63.817173,21.568048
- parent: 2
-- proto: DrinkWaterBottleFull
- entities:
- - uid: 16555
- components:
- - type: Transform
- pos: 48.286457,17.641747
- parent: 2
- - uid: 16556
- components:
- - type: Transform
- pos: 48.692707,17.672997
- parent: 2
- - uid: 16557
- components:
- - type: Transform
- pos: 48.489582,17.657372
- parent: 2
- - uid: 16558
- components:
- - type: Transform
- pos: 35.395584,38.672756
- parent: 2
- - uid: 16559
- components:
- - type: Transform
- pos: 55.321003,-22.407534
- parent: 2
- - uid: 16560
- components:
- - type: Transform
- pos: 55.508503,-22.813784
- parent: 2
- - uid: 16561
- components:
- - type: Transform
- pos: 55.727253,-22.407534
- parent: 2
-- proto: DrinkWineBottleFull
- entities:
- - uid: 14857
- components:
- - type: Transform
- parent: 14854
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16562
- components:
- - type: Transform
- pos: -11.51872,46.860718
- parent: 2
-- proto: DrinkWineGlass
- entities:
- - uid: 16563
- components:
- - type: Transform
- pos: 71.24721,28.940805
- parent: 2
- - uid: 16564
- components:
- - type: Transform
- pos: 71.73158,28.690804
- parent: 2
- - uid: 16565
- components:
- - type: Transform
- pos: -11.298665,46.57078
- parent: 2
- - uid: 16566
- components:
- - type: Transform
- pos: -11.75179,46.60203
- parent: 2
-- proto: Dropper
- entities:
- - uid: 16567
- components:
- - type: Transform
- pos: 38.436283,-74.467354
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16568
- components:
- - type: Transform
- pos: 6.46435,-38.51832
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16569
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -25.52646,-25.611034
- parent: 2
- - uid: 16570
- components:
- - type: Transform
- pos: 2.5200934,-29.55756
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16571
- components:
- - type: Transform
- pos: 8.500152,-30.578497
- parent: 2
- - uid: 16572
- components:
- - type: Transform
- pos: 20.453255,-40.408833
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16573
- components:
- - type: Transform
- pos: 41.969006,-73.53427
- parent: 2
- - uid: 16574
- components:
- - type: Transform
- pos: 26.487522,-68.55446
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16575
- components:
- - type: Transform
- pos: -8.757672,-52.582615
- parent: 2
- - uid: 16576
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.822828,45.589245
- parent: 2
- - uid: 16577
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.666578,45.60487
- parent: 2
-- proto: ElectricGuitarInstrument
- entities:
- - uid: 16578
- components:
- - type: Transform
- pos: -8.546601,28.76847
- parent: 2
-- proto: EmergencyLight
- entities:
- - uid: 16579
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,80.5
- parent: 2
- - uid: 16580
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,36.5
- parent: 2
- - uid: 16581
- components:
- - type: Transform
- pos: -1.5,65.5
- parent: 2
- - uid: 16582
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,80.5
- parent: 2
- - uid: 16583
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,35.5
- parent: 2
- - uid: 16584
- components:
- - type: Transform
- pos: 36.5,-27.5
- parent: 2
- - uid: 16585
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-21.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16586
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-67.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16587
- components:
- - type: Transform
- pos: -8.5,-63.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16588
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,6.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16589
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-4.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16590
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16591
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16592
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-17.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16593
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16594
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,20.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16595
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-75.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16596
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,56.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16597
- components:
- - type: Transform
- pos: -64.5,52.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16598
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-40.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16599
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16600
- components:
- - type: Transform
- pos: -12.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16601
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-46.5
- parent: 2
- - uid: 16602
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,67.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16604
- components:
- - type: Transform
- pos: 12.5,54.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16605
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-30.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16606
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-30.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16607
- components:
- - type: Transform
- pos: 5.5,45.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16608
- components:
- - type: Transform
- pos: 46.5,24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16609
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-59.5
- parent: 2
- - uid: 16610
- components:
- - type: Transform
- pos: 10.5,16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16611
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-46.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16612
- components:
- - type: Transform
- pos: 26.5,38.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16613
- components:
- - type: Transform
- pos: 51.5,9.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16614
- components:
- - type: Transform
- pos: 12.5,2.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16615
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,26.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16616
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,6.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16617
- components:
- - type: Transform
- pos: 51.5,1.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16618
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,9.5
- parent: 2
- - uid: 16619
- components:
- - type: Transform
- pos: -11.5,16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16620
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-40.5
- parent: 2
- - uid: 16621
- components:
- - type: Transform
- pos: 7.5,-48.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16622
- components:
- - type: Transform
- pos: 39.5,23.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16623
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,63.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16624
- components:
- - type: Transform
- pos: 6.5,31.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16625
- components:
- - type: Transform
- pos: 69.5,-15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16626
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-41.5
- parent: 2
- - uid: 16627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-6.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16628
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,14.5
- parent: 2
- - uid: 16629
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-72.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16630
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16631
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,1.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16632
- components:
- - type: Transform
- pos: -33.5,43.5
- parent: 2
- - uid: 16633
- components:
- - type: Transform
- pos: 37.5,12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16634
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,41.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16635
- components:
- - type: Transform
- pos: 15.5,54.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16636
- components:
- - type: Transform
- pos: -2.5,18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16637
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,39.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16638
- components:
- - type: Transform
- pos: -11.5,-10.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16639
- components:
- - type: Transform
- pos: -49.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16640
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,14.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16641
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16642
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,22.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16643
- components:
- - type: Transform
- pos: -56.5,38.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-14.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16646
- components:
- - type: Transform
- pos: 80.5,-18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16647
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-68.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16649
- components:
- - type: Transform
- pos: 35.5,-6.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16650
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,-0.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16651
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-13.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16652
- components:
- - type: Transform
- pos: 53.5,29.5
- parent: 2
- - uid: 16653
- components:
- - type: Transform
- pos: -5.5,-57.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16654
- components:
- - type: Transform
- pos: 63.5,1.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16655
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,10.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16656
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,93.5
- parent: 2
- - uid: 16657
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,24.5
- parent: 2
- - uid: 16658
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-52.5
- parent: 2
- - uid: 16659
- components:
- - type: Transform
- pos: -2.5,-57.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16660
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,77.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 81.5,14.5
- parent: 2
- - uid: 16662
- components:
- - type: Transform
- pos: -5.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16663
- components:
- - type: Transform
- pos: -49.5,2.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16664
- components:
- - type: Transform
- pos: 14.5,46.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16665
- components:
- - type: Transform
- pos: 7.5,-10.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16666
- components:
- - type: Transform
- pos: 21.5,10.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16668
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,79.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16669
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-52.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16670
- components:
- - type: Transform
- pos: -12.5,11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16671
- components:
- - type: Transform
- pos: -12.5,-7.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16672
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-27.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16673
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 75.5,21.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16674
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-52.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16675
- components:
- - type: Transform
- pos: 6.5,90.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16676
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-45.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16677
- components:
- - type: Transform
- pos: -16.5,24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16678
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-41.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16679
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,38.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16680
- components:
- - type: Transform
- pos: 3.5,-42.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16681
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-43.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16682
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,53.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16683
- components:
- - type: Transform
- pos: 23.5,32.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16684
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,36.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-5.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16686
- components:
- - type: Transform
- pos: -72.5,16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,40.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16688
- components:
- - type: Transform
- pos: -22.5,-49.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16689
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,4.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16690
- components:
- - type: Transform
- pos: -65.5,60.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16691
- components:
- - type: Transform
- pos: 9.5,88.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16692
- components:
- - type: Transform
- pos: 23.5,54.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16693
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,52.5
- parent: 2
- - uid: 16694
- components:
- - type: Transform
- pos: -55.5,3.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16695
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16696
- components:
- - type: Transform
- pos: 13.5,-11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16697
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16698
- components:
- - type: Transform
- pos: -25.5,2.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16699
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,25.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16700
- components:
- - type: Transform
- pos: -28.5,21.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16701
- components:
- - type: Transform
- pos: -22.5,23.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16702
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,22.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16703
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16704
- components:
- - type: Transform
- pos: 11.5,46.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16705
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-14.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16706
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-22.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16707
- components:
- - type: Transform
- pos: 30.5,-21.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16708
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,15.5
- parent: 2
- - uid: 16709
- components:
- - type: Transform
- pos: 73.5,-15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16710
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,0.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16711
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16712
- components:
- - type: Transform
- pos: 31.5,12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16713
- components:
- - type: Transform
- pos: 1.5,18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16714
- components:
- - type: Transform
- pos: -59.5,58.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16715
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-51.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16716
- components:
- - type: Transform
- pos: -34.5,63.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16717
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16718
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,25.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16720
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16721
- components:
- - type: Transform
- pos: -0.5,-13.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16722
- components:
- - type: Transform
- pos: 6.5,-18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16723
- components:
- - type: Transform
- pos: -72.5,12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16724
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,13.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16725
- components:
- - type: Transform
- pos: -63.5,18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16726
- components:
- - type: Transform
- pos: -63.5,37.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16727
- components:
- - type: Transform
- pos: -57.5,20.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16728
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,36.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16729
- components:
- - type: Transform
- pos: -46.5,15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16730
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,4.5
- parent: 2
- - uid: 16731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,0.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-2.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16733
- components:
- - type: Transform
- pos: -46.5,-5.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16734
- components:
- - type: Transform
- pos: 27.5,61.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16735
- components:
- - type: Transform
- pos: -30.5,-25.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16736
- components:
- - type: Transform
- pos: -39.5,-26.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16737
- components:
- - type: Transform
- pos: -47.5,-24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16738
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-51.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16739
- components:
- - type: Transform
- pos: -4.5,46.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16740
- components:
- - type: Transform
- pos: 7.5,-29.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16741
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,80.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16742
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,7.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16743
- components:
- - type: Transform
- pos: -5.5,28.5
- parent: 2
- - uid: 16744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-47.5
- parent: 2
- - uid: 16745
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-32.5
- parent: 2
- - uid: 16746
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,-8.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16747
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-68.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16748
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-71.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16749
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,0.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16750
- components:
- - type: Transform
- pos: -30.5,55.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16751
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,49.5
- parent: 2
- - uid: 16752
- components:
- - type: Transform
- pos: -66.5,-5.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16753
- components:
- - type: Transform
- pos: -7.5,-18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16754
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-22.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16755
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,45.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16756
- components:
- - type: Transform
- pos: -1.5,-7.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16757
- components:
- - type: Transform
- pos: 9.5,-7.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16758
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-4.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16759
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,67.5
- parent: 2
- - uid: 16760
- components:
- - type: Transform
- pos: -8.5,69.5
- parent: 2
- - uid: 16761
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,7.5
- parent: 2
- - uid: 16762
- components:
- - type: Transform
- pos: 27.5,2.5
- parent: 2
- - uid: 16763
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,80.5
- parent: 2
- - uid: 16764
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,67.5
- parent: 2
- - uid: 16765
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 87.5,-24.5
- parent: 2
- - uid: 16766
- components:
- - type: Transform
- pos: 25.5,-24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-27.5
- parent: 2
- - uid: 16768
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,53.5
- parent: 2
- - uid: 16769
- components:
- - type: Transform
- pos: -12.5,46.5
- parent: 2
- - uid: 16770
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,9.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16771
- components:
- - type: Transform
- pos: -57.5,54.5
- parent: 2
- - uid: 16772
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-3.5
- parent: 2
- - uid: 16773
- components:
- - type: Transform
- pos: 12.5,24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16774
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-37.5
- parent: 2
- - uid: 16775
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-40.5
- parent: 2
- - uid: 16776
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-8.5
- parent: 2
- - uid: 16777
- components:
- - type: Transform
- pos: 7.5,-22.5
- parent: 2
- - uid: 16778
- components:
- - type: Transform
- pos: -53.5,51.5
- parent: 2
- - uid: 16779
- components:
- - type: Transform
- pos: -17.5,-55.5
- parent: 2
- - uid: 16780
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-5.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16781
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16782
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,0.5
- parent: 2
- - uid: 16783
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,27.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16784
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,17.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16785
- components:
- - type: Transform
- pos: -25.5,39.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-79.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16787
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-79.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16788
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16789
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-40.5
- parent: 2
- - uid: 16790
- components:
- - type: Transform
- pos: -1.5,9.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16791
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,3.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16792
- components:
- - type: Transform
- pos: -31.5,6.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16793
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-26.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16794
- components:
- - type: Transform
- pos: 31.5,-33.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16795
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-35.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16796
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-27.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16797
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-41.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16798
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-48.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16799
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-45.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16800
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-48.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16801
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-60.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16802
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-56.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16803
- components:
- - type: Transform
- pos: 30.5,-60.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16804
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-64.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-62.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16806
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-62.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16807
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-70.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16808
- components:
- - type: Transform
- pos: 27.5,-65.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16809
- components:
- - type: Transform
- pos: -27.5,-49.5
- parent: 2
- - uid: 16810
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,8.5
- parent: 2
- - uid: 16811
- components:
- - type: Transform
- pos: -67.5,-9.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-3.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16813
- components:
- - type: Transform
- pos: -68.5,2.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16814
- components:
- - type: Transform
- pos: -77.5,-5.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16815
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,-9.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16816
- components:
- - type: Transform
- pos: 91.5,-15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 16817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,21.5
- parent: 2
- - uid: 16818
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,90.5
- parent: 2
- - uid: 16819
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,90.5
- parent: 2
- - uid: 38752
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-0.5
- parent: 38714
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
-- proto: EmergencyMedipen
- entities:
- - uid: 16820
- components:
- - type: Transform
- pos: 20.768291,-24.31956
- parent: 2
- - uid: 16821
- components:
- - type: Transform
- pos: 26.060457,-24.311409
- parent: 2
-- proto: EmergencyRollerBed
- entities:
- - uid: 16822
- components:
- - type: Transform
- pos: 26.738546,-30.810993
- parent: 2
- - uid: 16823
- components:
- - type: Transform
- pos: 1.5,-13.5
- parent: 2
- - uid: 16824
- components:
- - type: Transform
- pos: 26.738546,-31.498493
- parent: 2
- - uid: 16825
- components:
- - type: Transform
- pos: 30.484577,-51.35612
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16826
- components:
- - type: Transform
- pos: 30.484577,-50.41862
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16827
- components:
- - type: Transform
- pos: 7.4926,-27.337849
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16828
- components:
- - type: Transform
- pos: 8.52385,-27.337849
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16829
- components:
- - type: Transform
- pos: 26.738546,-30.185993
- parent: 2
- - uid: 16830
- components:
- - type: Transform
- pos: 9.5551,-27.337849
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 16831
- components:
- - type: Transform
- pos: 21.514267,-50.394043
- parent: 2
-- proto: EmergencyRollerBedSpawnFolded
- entities:
- - uid: 16832
- components:
- - type: Transform
- pos: 7.5,64.5
- parent: 2
-- proto: Emitter
- entities:
- - uid: 16833
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-12.5
- parent: 2
- - uid: 16834
- components:
- - type: Transform
- pos: -94.5,-2.5
- parent: 2
- - uid: 16835
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-11.5
- parent: 2
- - uid: 16836
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-11.5
- parent: 2
-- proto: EncryptionKeyCargo
- entities:
- - uid: 16838
- components:
- - type: Transform
- parent: 16837
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyCommand
- entities:
- - uid: 16840
- components:
- - type: Transform
- parent: 16839
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyCommon
- entities:
- - uid: 16842
-=======
- rot: 3.141592653589793 rad
- pos: -15.5,-57.5
- parent: 2
- - uid: 15797
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-45.5
- parent: 2
- - uid: 15798
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-34.5
- parent: 2
- - uid: 15799
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-45.5
- parent: 2
- - uid: 15800
- components:
- - type: Transform
- pos: -8.5,-29.5
- parent: 2
- - uid: 15801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-34.5
- parent: 2
- - uid: 15802
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-19.5
- parent: 2
- - uid: 15803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-12.5
- parent: 2
- - uid: 15804
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-11.5
- parent: 2
- - uid: 15805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-11.5
- parent: 2
- - uid: 15806
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-2.5
- parent: 2
- - uid: 15807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-8.5
- parent: 2
- - uid: 15808
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,9.5
- parent: 2
- - uid: 15809
- components:
- - type: Transform
- pos: 22.5,9.5
- parent: 2
- - uid: 15810
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,4.5
- parent: 2
- - uid: 15811
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-2.5
- parent: 2
- - uid: 15812
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,4.5
- parent: 2
- - uid: 15813
- components:
- - type: Transform
- pos: 52.5,8.5
- parent: 2
- - uid: 15814
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,25.5
- parent: 2
- - uid: 15815
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,22.5
- parent: 2
- - uid: 15816
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,22.5
- parent: 2
- - uid: 15817
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,20.5
- parent: 2
- - uid: 15818
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,12.5
- parent: 2
- - uid: 15819
- components:
- - type: Transform
- pos: -9.5,30.5
- parent: 2
- - uid: 15820
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,5.5
- parent: 2
- - uid: 15821
- components:
- - type: Transform
- pos: -41.5,12.5
- parent: 2
- - uid: 15822
- components:
- - type: Transform
- pos: -7.5,50.5
- parent: 2
- - uid: 15823
- components:
- - type: Transform
- pos: 56.5,-9.5
- parent: 2
- - uid: 15824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-29.5
- parent: 2
- - uid: 15825
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-20.5
- parent: 2
- - uid: 15826
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-18.5
- parent: 2
- - uid: 15827
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-18.5
- parent: 2
- - uid: 15828
- components:
- - type: Transform
- pos: 56.5,-20.5
- parent: 2
- - uid: 15829
- components:
- - type: Transform
- pos: 41.5,-15.5
- parent: 2
- - uid: 15830
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-15.5
- parent: 2
- - uid: 15831
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-11.5
- parent: 2
- - uid: 15832
- components:
- - type: Transform
- pos: 31.5,-10.5
- parent: 2
- - uid: 15833
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-9.5
- parent: 2
-- proto: DisposalJunction
- entities:
- - uid: 15834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,23.5
- parent: 2
- - uid: 15835
- components:
- - type: Transform
- pos: 4.5,34.5
- parent: 2
- - uid: 15836
- components:
- - type: Transform
- pos: 4.5,27.5
- parent: 2
- - uid: 15837
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,47.5
- parent: 2
- - uid: 15838
- components:
- - type: Transform
- pos: -57.5,14.5
- parent: 2
- - uid: 15839
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,12.5
- parent: 2
- - uid: 15840
- components:
- - type: Transform
- pos: -29.5,53.5
- parent: 2
- - uid: 15841
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-10.5
- parent: 2
- - uid: 15842
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,5.5
- parent: 2
- - uid: 15843
- components:
- - type: Transform
- pos: -54.5,38.5
- parent: 2
- - uid: 15844
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-19.5
- parent: 2
- - uid: 15845
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,57.5
- parent: 2
- - uid: 15846
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,57.5
- parent: 2
- - uid: 15847
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,50.5
- parent: 2
- - uid: 15848
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,30.5
- parent: 2
- - uid: 15849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,23.5
- parent: 2
- - uid: 15850
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,14.5
- parent: 2
- - uid: 15851
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-19.5
- parent: 2
- - uid: 15852
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-19.5
- parent: 2
- - uid: 15853
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-61.5
- parent: 2
- - uid: 15854
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-79.5
- parent: 2
- - uid: 15855
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-25.5
- parent: 2
- - uid: 15856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-25.5
- parent: 2
- - uid: 15857
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-49.5
- parent: 2
- - uid: 15858
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-34.5
- parent: 2
- - uid: 15859
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-37.5
- parent: 2
- - uid: 15860
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-45.5
- parent: 2
- - uid: 15861
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-8.5
- parent: 2
- - uid: 15862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,5.5
- parent: 2
- - uid: 15863
- components:
- - type: Transform
- pos: 47.5,15.5
- parent: 2
- - uid: 15864
- components:
- - type: Transform
- pos: 47.5,20.5
- parent: 2
- - uid: 15865
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,4.5
- parent: 2
-- proto: DisposalJunctionFlipped
- entities:
- - uid: 15866
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,36.5
- parent: 2
- - uid: 15867
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,46.5
- parent: 2
- - uid: 15868
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,36.5
- parent: 2
- - uid: 15869
- components:
- - type: Transform
- pos: -53.5,21.5
- parent: 2
- - uid: 15870
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,33.5
- parent: 2
- - uid: 15871
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,12.5
- parent: 2
- - uid: 15872
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,57.5
- parent: 2
- - uid: 15873
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,48.5
- parent: 2
- - uid: 15874
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,22.5
- parent: 2
- - uid: 15875
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,5.5
- parent: 2
- - uid: 15876
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-2.5
- parent: 2
- - uid: 15877
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-19.5
- parent: 2
- - uid: 15878
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-19.5
- parent: 2
- - uid: 15879
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,14.5
- parent: 2
- - uid: 15880
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,12.5
- parent: 2
- - uid: 15881
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-63.5
- parent: 2
- - uid: 15882
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-34.5
- parent: 2
- - uid: 15883
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-39.5
- parent: 2
- - uid: 15884
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-52.5
- parent: 2
- - uid: 15885
- components:
- - type: Transform
- pos: 47.5,8.5
- parent: 2
- - uid: 15886
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,22.5
- parent: 2
- - uid: 15887
- components:
- - type: Transform
- pos: 47.5,12.5
- parent: 2
- - uid: 15888
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,10.5
- parent: 2
- - uid: 15889
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,12.5
- parent: 2
-- proto: DisposalPipe
- entities:
- - uid: 15890
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,12.5
- parent: 2
- - uid: 15891
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,12.5
- parent: 2
- - uid: 15892
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,31.5
- parent: 2
- - uid: 15893
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-41.5
- parent: 2
- - uid: 15894
- components:
- - type: Transform
- pos: -26.5,31.5
- parent: 2
- - uid: 15895
- components:
- - type: Transform
- pos: -30.5,31.5
- parent: 2
- - uid: 15896
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,25.5
- parent: 2
- - uid: 15897
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,33.5
- parent: 2
- - uid: 15898
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,30.5
- parent: 2
- - uid: 15899
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,35.5
- parent: 2
- - uid: 15900
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,29.5
- parent: 2
- - uid: 15901
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,26.5
- parent: 2
- - uid: 15902
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,36.5
- parent: 2
- - uid: 15903
- components:
- - type: Transform
- pos: -16.5,56.5
- parent: 2
- - uid: 15904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,33.5
- parent: 2
- - uid: 15905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,36.5
- parent: 2
- - uid: 15906
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,36.5
- parent: 2
- - uid: 15907
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,32.5
- parent: 2
- - uid: 15908
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,33.5
- parent: 2
- - uid: 15909
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,36.5
- parent: 2
- - uid: 15910
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,56.5
- parent: 2
- - uid: 15911
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,27.5
- parent: 2
- - uid: 15912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,36.5
- parent: 2
- - uid: 15913
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,36.5
- parent: 2
- - uid: 15914
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,36.5
- parent: 2
- - uid: 15915
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,36.5
- parent: 2
- - uid: 15916
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,36.5
- parent: 2
- - uid: 15917
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,36.5
- parent: 2
- - uid: 15918
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-31.5
- parent: 2
- - uid: 15919
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.49999997,-23.5
- parent: 2
- - uid: 15920
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-33.5
- parent: 2
- - uid: 15921
- components:
- - type: Transform
- pos: -56.5,27.5
- parent: 2
- - uid: 15922
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,28.5
- parent: 2
- - uid: 15923
- components:
- - type: Transform
- pos: -56.5,26.5
- parent: 2
- - uid: 15924
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-20.5
- parent: 2
- - uid: 15925
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,14.5
- parent: 2
- - uid: 15926
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-28.5
- parent: 2
- - uid: 15927
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,42.5
- parent: 2
- - uid: 15928
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-27.5
- parent: 2
- - uid: 15929
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-24.5
- parent: 2
- - uid: 15930
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-21.5
- parent: 2
- - uid: 15931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-30.5
- parent: 2
- - uid: 15932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,43.5
- parent: 2
- - uid: 15933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,44.5
- parent: 2
- - uid: 15934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-26.5
- parent: 2
- - uid: 15935
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-20.5
- parent: 2
- - uid: 15936
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-38.5
- parent: 2
- - uid: 15937
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-40.5
- parent: 2
- - uid: 15938
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-25.5
- parent: 2
- - uid: 15939
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-36.5
- parent: 2
- - uid: 15940
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-39.5
- parent: 2
- - uid: 15941
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-42.5
- parent: 2
- - uid: 15942
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-22.5
- parent: 2
- - uid: 15943
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-37.5
- parent: 2
- - uid: 15944
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-29.5
- parent: 2
- - uid: 15945
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,41.5
- parent: 2
- - uid: 15946
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-32.5
- parent: 2
- - uid: 15947
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,14.5
- parent: 2
- - uid: 15948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,14.5
- parent: 2
- - uid: 15949
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-51.5
- parent: 2
- - uid: 15950
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-51.5
- parent: 2
- - uid: 15951
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-68.5
- parent: 2
- - uid: 15952
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,14.5
- parent: 2
- - uid: 15953
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,14.5
- parent: 2
- - uid: 15954
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-43.5
- parent: 2
- - uid: 15955
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-28.5
- parent: 2
- - uid: 15956
- components:
- - type: Transform
- pos: -42.5,-30.5
- parent: 2
- - uid: 15957
- components:
- - type: Transform
- pos: -38.5,-30.5
- parent: 2
- - uid: 15958
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,14.5
- parent: 2
- - uid: 15959
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-26.5
- parent: 2
- - uid: 15960
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,10.5
- parent: 2
- - uid: 15961
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-56.5
- parent: 2
- - uid: 15962
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,6.5
- parent: 2
- - uid: 15963
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,11.5
- parent: 2
- - uid: 15964
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,9.5
- parent: 2
- - uid: 15965
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,8.5
- parent: 2
- - uid: 15966
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,47.5
- parent: 2
- - uid: 15967
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,47.5
- parent: 2
- - uid: 15968
- components:
- - type: Transform
- pos: 6.5,49.5
- parent: 2
- - uid: 15969
- components:
- - type: Transform
- pos: 35.5,-72.5
- parent: 2
- - uid: 15970
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,39.5
- parent: 2
- - uid: 15971
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-68.5
- parent: 2
- - uid: 15972
- components:
- - type: Transform
- pos: 35.5,-69.5
- parent: 2
- - uid: 15973
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,5.5
- parent: 2
- - uid: 15974
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.49999997,-35.5
- parent: 2
- - uid: 15975
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,14.5
- parent: 2
- - uid: 15976
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-51.5
- parent: 2
- - uid: 15977
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,14.5
- parent: 2
- - uid: 15978
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,14.5
- parent: 2
- - uid: 15979
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-45.5
- parent: 2
- - uid: 15980
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-44.5
- parent: 2
- - uid: 15981
- components:
- - type: Transform
- pos: 6.5,54.5
- parent: 2
- - uid: 15982
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-68.5
- parent: 2
- - uid: 15983
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-51.5
- parent: 2
- - uid: 15984
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-68.5
- parent: 2
- - uid: 15985
- components:
- - type: Transform
- pos: 35.5,-71.5
- parent: 2
- - uid: 15986
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-68.5
- parent: 2
- - uid: 15987
- components:
- - type: Transform
- pos: 6.5,53.5
- parent: 2
- - uid: 15988
- components:
- - type: Transform
- pos: 6.5,52.5
- parent: 2
- - uid: 15989
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,40.5
- parent: 2
- - uid: 15990
- components:
- - type: Transform
- pos: -32.5,-24.5
- parent: 2
- - uid: 15991
- components:
- - type: Transform
- pos: 6.5,50.5
- parent: 2
- - uid: 15992
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,30.5
- parent: 2
- - uid: 15993
- components:
- - type: Transform
- pos: -34.5,-30.5
- parent: 2
- - uid: 15994
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,43.5
- parent: 2
- - uid: 15995
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,44.5
- parent: 2
- - uid: 15996
- components:
- - type: Transform
- pos: -40.5,-24.5
- parent: 2
- - uid: 15997
- components:
- - type: Transform
- pos: -36.5,-24.5
- parent: 2
- - uid: 15998
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,45.5
- parent: 2
- - uid: 15999
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,46.5
- parent: 2
- - uid: 16000
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,14.5
- parent: 2
- - uid: 16001
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,7.5
- parent: 2
- - uid: 16002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,47.5
- parent: 2
- - uid: 16003
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,29.5
- parent: 2
- - uid: 16004
- components:
- - type: Transform
- pos: 6.5,48.5
- parent: 2
- - uid: 16005
- components:
- - type: Transform
- pos: 35.5,-70.5
- parent: 2
- - uid: 16006
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-28.5
- parent: 2
- - uid: 16007
- components:
- - type: Transform
- pos: -42.5,-31.5
- parent: 2
- - uid: 16008
- components:
- - type: Transform
- pos: -38.5,-31.5
- parent: 2
- - uid: 16009
- components:
- - type: Transform
- pos: -34.5,-31.5
- parent: 2
- - uid: 16010
- components:
- - type: Transform
- pos: -32.5,-23.5
- parent: 2
- - uid: 16011
- components:
- - type: Transform
- pos: -36.5,-23.5
- parent: 2
- - uid: 16012
- components:
- - type: Transform
- pos: -40.5,-23.5
- parent: 2
- - uid: 16013
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,14.5
- parent: 2
- - uid: 16014
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,14.5
- parent: 2
- - uid: 16015
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,14.5
- parent: 2
- - uid: 16016
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,14.5
- parent: 2
- - uid: 16017
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,14.5
- parent: 2
- - uid: 16018
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,14.5
- parent: 2
- - uid: 16019
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,14.5
- parent: 2
- - uid: 16020
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,14.5
- parent: 2
- - uid: 16021
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-34.5
- parent: 2
- - uid: 16022
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,17.5
- parent: 2
- - uid: 16023
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,18.5
- parent: 2
- - uid: 16024
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,25.5
- parent: 2
- - uid: 16025
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,31.5
- parent: 2
- - uid: 16026
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,10.5
- parent: 2
- - uid: 16027
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,42.5
- parent: 2
- - uid: 16028
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,21.5
- parent: 2
- - uid: 16029
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,31.5
- parent: 2
- - uid: 16030
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,32.5
- parent: 2
- - uid: 16031
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,31.5
- parent: 2
- - uid: 16032
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,10.5
- parent: 2
- - uid: 16033
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,45.5
- parent: 2
- - uid: 16034
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,36.5
- parent: 2
- - uid: 16035
- components:
- - type: Transform
- pos: -57.5,15.5
- parent: 2
- - uid: 16036
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,14.5
- parent: 2
- - uid: 16037
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,40.5
- parent: 2
- - uid: 16038
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,39.5
- parent: 2
- - uid: 16039
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,44.5
- parent: 2
- - uid: 16040
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,43.5
- parent: 2
- - uid: 16041
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,41.5
- parent: 2
- - uid: 16042
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,14.5
- parent: 2
- - uid: 16043
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,48.5
- parent: 2
- - uid: 16044
- components:
- - type: Transform
- pos: -30.5,32.5
- parent: 2
- - uid: 16045
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,33.5
- parent: 2
- - uid: 16046
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,30.5
- parent: 2
- - uid: 16047
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,30.5
- parent: 2
- - uid: 16048
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,30.5
- parent: 2
- - uid: 16049
- components:
- - type: Transform
- pos: -57.5,13.5
- parent: 2
- - uid: 16050
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,14.5
- parent: 2
- - uid: 16051
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,48.5
- parent: 2
- - uid: 16052
- components:
- - type: Transform
- pos: -54.5,34.5
- parent: 2
- - uid: 16053
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,48.5
- parent: 2
- - uid: 16054
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,34.5
- parent: 2
- - uid: 16055
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,45.5
- parent: 2
- - uid: 16056
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,31.5
- parent: 2
- - uid: 16057
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,35.5
- parent: 2
- - uid: 16058
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,10.5
- parent: 2
- - uid: 16059
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,31.5
- parent: 2
- - uid: 16060
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,14.5
- parent: 2
- - uid: 16061
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,45.5
- parent: 2
- - uid: 16062
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,24.5
- parent: 2
- - uid: 16063
- components:
- - type: Transform
- pos: -57.5,16.5
- parent: 2
- - uid: 16064
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,48.5
- parent: 2
- - uid: 16065
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,14.5
- parent: 2
- - uid: 16066
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,28.5
- parent: 2
- - uid: 16067
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,45.5
- parent: 2
- - uid: 16068
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,48.5
- parent: 2
- - uid: 16069
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,10.5
- parent: 2
- - uid: 16070
- components:
- - type: Transform
- pos: -53.5,13.5
- parent: 2
- - uid: 16071
- components:
- - type: Transform
- pos: -57.5,17.5
- parent: 2
- - uid: 16072
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,45.5
- parent: 2
- - uid: 16073
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,14.5
- parent: 2
- - uid: 16074
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,45.5
- parent: 2
- - uid: 16075
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,48.5
- parent: 2
- - uid: 16076
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,31.5
- parent: 2
- - uid: 16077
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,45.5
- parent: 2
- - uid: 16078
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,45.5
- parent: 2
- - uid: 16079
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,48.5
- parent: 2
- - uid: 16080
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,48.5
- parent: 2
- - uid: 16081
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,45.5
- parent: 2
- - uid: 16082
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-25.5
- parent: 2
- - uid: 16083
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,56.5
- parent: 2
- - uid: 16084
- components:
- - type: Transform
- pos: -29.5,54.5
- parent: 2
- - uid: 16085
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,48.5
- parent: 2
- - uid: 16086
- components:
- - type: Transform
- pos: -29.5,49.5
- parent: 2
- - uid: 16087
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,53.5
- parent: 2
- - uid: 16088
- components:
- - type: Transform
- pos: -29.5,51.5
- parent: 2
- - uid: 16089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,38.5
- parent: 2
- - uid: 16090
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,53.5
- parent: 2
- - uid: 16091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,53.5
- parent: 2
- - uid: 16092
- components:
- - type: Transform
- pos: -29.5,50.5
- parent: 2
- - uid: 16093
- components:
- - type: Transform
- pos: -29.5,52.5
- parent: 2
- - uid: 16094
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,53.5
- parent: 2
- - uid: 16095
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,48.5
- parent: 2
- - uid: 16096
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,30.5
- parent: 2
- - uid: 16097
- components:
- - type: Transform
- pos: -54.5,40.5
- parent: 2
- - uid: 16098
- components:
- - type: Transform
- pos: -54.5,39.5
- parent: 2
- - uid: 16099
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,55.5
- parent: 2
- - uid: 16100
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,45.5
- parent: 2
- - uid: 16101
- components:
- - type: Transform
- pos: -55.5,43.5
- parent: 2
- - uid: 16102
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,46.5
- parent: 2
- - uid: 16103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,24.5
- parent: 2
- - uid: 16104
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,14.5
- parent: 2
- - uid: 16105
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,55.5
- parent: 2
- - uid: 16106
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,54.5
- parent: 2
- - uid: 16107
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,10.5
- parent: 2
- - uid: 16108
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,20.5
- parent: 2
- - uid: 16109
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,23.5
- parent: 2
- - uid: 16110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,31.5
- parent: 2
- - uid: 16111
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,52.5
- parent: 2
- - uid: 16112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,45.5
- parent: 2
- - uid: 16113
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,49.5
- parent: 2
- - uid: 16114
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,57.5
- parent: 2
- - uid: 16115
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,55.5
- parent: 2
- - uid: 16116
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,24.5
- parent: 2
- - uid: 16117
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,50.5
- parent: 2
- - uid: 16118
- components:
- - type: Transform
- pos: -54.5,35.5
- parent: 2
- - uid: 16119
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,10.5
- parent: 2
- - uid: 16120
- components:
- - type: Transform
- pos: -26.5,32.5
- parent: 2
- - uid: 16121
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,30.5
- parent: 2
- - uid: 16122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,10.5
- parent: 2
- - uid: 16123
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,57.5
- parent: 2
- - uid: 16124
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,55.5
- parent: 2
- - uid: 16125
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,56.5
- parent: 2
- - uid: 16126
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,22.5
- parent: 2
- - uid: 16127
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,53.5
- parent: 2
- - uid: 16128
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,19.5
- parent: 2
- - uid: 16129
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,55.5
- parent: 2
- - uid: 16130
- components:
- - type: Transform
- pos: -54.5,41.5
- parent: 2
- - uid: 16131
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,12.5
- parent: 2
- - uid: 16132
- components:
- - type: Transform
- pos: -55.5,44.5
- parent: 2
- - uid: 16133
- components:
- - type: Transform
- pos: -54.5,33.5
- parent: 2
- - uid: 16134
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,47.5
- parent: 2
- - uid: 16135
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- parent: 16841
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyEngineering
- entities:
- - uid: 16844
- components:
- - type: Transform
- parent: 16843
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyMedical
- entities:
- - uid: 16846
- components:
- - type: Transform
- parent: 16845
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyScience
- entities:
- - uid: 16848
- components:
- - type: Transform
- parent: 16847
- - type: Physics
- canCollide: False
-- proto: EncryptionKeySecurity
- entities:
- - uid: 16850
- components:
- - type: Transform
- parent: 16849
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyService
- entities:
- - uid: 16852
- components:
- - type: Transform
- parent: 16851
- - type: Physics
- canCollide: False
-- proto: EpinephrineChemistryBottle
- entities:
- - uid: 16853
- components:
- - type: Transform
- pos: 66.31248,-2.3783243
- parent: 2
- - uid: 16854
- components:
- - type: Transform
- pos: 70.10729,12.77659
- parent: 2
- - uid: 16855
- components:
- - type: Transform
- pos: 25.701082,-24.420784
- parent: 2
- - uid: 16856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.634602,-43.325718
- parent: 2
- - uid: 16857
- components:
- - type: Transform
- pos: 20.674541,-24.47581
- parent: 2
-- proto: ExtinguisherCabinetFilled
- entities:
- - uid: 16858
- components:
- - type: Transform
- pos: 51.5,10.5
- parent: 2
- - uid: 16859
- components:
- - type: Transform
- pos: 56.5,14.5
- parent: 2
- - uid: 16860
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,25.5
- parent: 2
- - uid: 16861
- components:
- - type: Transform
- pos: -7.5,26.5
- parent: 2
- - uid: 16862
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-59.5
- parent: 2
- - uid: 16863
- components:
- - type: Transform
- pos: -35.5,-7.5
- parent: 2
- - uid: 16864
- components:
- - type: Transform
- pos: 51.5,-1.5
- parent: 2
- - uid: 16865
- components:
- - type: Transform
- pos: 38.5,17.5
- parent: 2
- - uid: 16866
- components:
- - type: Transform
- pos: 59.5,-1.5
- parent: 2
- - uid: 16867
- components:
- - type: Transform
- pos: -10.5,12.5
- parent: 2
- - uid: 16868
- components:
- - type: Transform
- pos: -13.5,-3.5
- parent: 2
- - uid: 16869
- components:
- - type: Transform
- pos: -20.5,-31.5
- parent: 2
- - uid: 16870
- components:
- - type: Transform
- pos: -11.5,-36.5
- parent: 2
- - uid: 16871
- components:
- - type: Transform
- pos: -24.5,-81.5
- parent: 2
- - uid: 16872
- components:
- - type: Transform
- pos: -27.5,-78.5
- parent: 2
- - uid: 16873
- components:
- - type: Transform
- pos: -35.5,-13.5
- parent: 2
- - uid: 16874
- components:
- - type: Transform
- pos: 18.5,27.5
- parent: 2
- - uid: 16875
- components:
- - type: Transform
- pos: -43.5,49.5
- parent: 2
- - uid: 16876
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-41.5
- parent: 2
- - uid: 16877
- components:
- - type: Transform
- pos: -43.5,1.5
- parent: 2
- - uid: 16878
- components:
- - type: Transform
- pos: -18.5,-48.5
- parent: 2
- - uid: 16879
- components:
- - type: Transform
- pos: 15.5,-32.5
- parent: 2
- - uid: 16880
- components:
- - type: Transform
- pos: -66.5,-22.5
- parent: 2
- - uid: 16881
- components:
- - type: Transform
- pos: -16.5,-15.5
- parent: 2
- - uid: 16882
- components:
- - type: Transform
- pos: -11.5,-45.5
- parent: 2
- - uid: 16883
- components:
- - type: Transform
- pos: 33.5,-63.5
- parent: 2
- - uid: 16884
- components:
- - type: Transform
- pos: 22.5,73.5
- parent: 2
- - uid: 16885
- components:
- - type: Transform
- pos: 21.5,64.5
- parent: 2
- - uid: 16886
- components:
- - type: Transform
- pos: -24.5,60.5
- parent: 2
- - uid: 16887
- components:
- - type: Transform
- pos: -43.5,-30.5
- parent: 2
- - uid: 16888
- components:
- - type: Transform
- pos: 12.5,37.5
- parent: 2
- - uid: 16889
- components:
- - type: Transform
- pos: -67.5,17.5
- parent: 2
- - uid: 16890
- components:
- - type: Transform
- pos: 19.5,-13.5
- parent: 2
- - uid: 16891
- components:
- - type: Transform
- pos: -29.5,12.5
- parent: 2
- - uid: 16892
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,24.5
- parent: 2
- - uid: 16893
- components:
- - type: Transform
- pos: -35.5,-24.5
- parent: 2
- - uid: 16894
- components:
- - type: Transform
- pos: 11.5,-10.5
- parent: 2
- - uid: 16895
- components:
- - type: Transform
- pos: -55.5,-9.5
- parent: 2
- - uid: 16896
- components:
- - type: Transform
- pos: 77.5,-20.5
- parent: 2
- - uid: 16897
- components:
- - type: Transform
- pos: -14.5,53.5
- parent: 2
- - uid: 16898
- components:
- - type: Transform
- pos: -47.5,16.5
- parent: 2
- - uid: 16899
- components:
- - type: Transform
- pos: -22.5,53.5
- parent: 2
- - uid: 16900
- components:
- - type: Transform
- pos: -42.5,-15.5
- parent: 2
- - uid: 16901
- components:
- - type: Transform
- pos: 32.5,-70.5
- parent: 2
- - uid: 16902
- components:
- - type: Transform
- pos: 44.5,16.5
- parent: 2
- - uid: 16903
- components:
- - type: Transform
- pos: -7.5,-47.5
- parent: 2
- - uid: 16904
- components:
- - type: Transform
- pos: 8.5,86.5
- parent: 2
- - uid: 16905
- components:
- - type: Transform
- pos: -64.5,12.5
- parent: 2
- - uid: 16906
- components:
- - type: Transform
- pos: 9.5,-2.5
- parent: 2
- - uid: 16907
- components:
- - type: Transform
- pos: 29.5,-38.5
- parent: 2
- - uid: 16908
- components:
- - type: Transform
- pos: -30.5,-37.5
- parent: 2
- - uid: 16909
- components:
- - type: Transform
- pos: -26.5,-17.5
- parent: 2
- - uid: 16910
- components:
- - type: Transform
- pos: 39.5,-30.5
- parent: 2
- - uid: 16911
- components:
- - type: Transform
- pos: 65.5,-19.5
- parent: 2
- - uid: 16912
- components:
- - type: Transform
- pos: -32.5,17.5
- parent: 2
- - uid: 16913
- components:
- - type: Transform
- pos: -21.5,-74.5
- parent: 2
- - uid: 16914
- components:
- - type: Transform
- pos: -23.5,66.5
- parent: 2
- - uid: 16915
- components:
- - type: Transform
- pos: -27.5,23.5
- parent: 2
- - uid: 16916
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-51.5
- parent: 2
- - uid: 16917
- components:
- - type: Transform
- pos: 1.5,-28.5
- parent: 2
- - uid: 16918
- components:
- - type: Transform
- pos: 3.5,43.5
- parent: 2
- - uid: 16919
- components:
- - type: Transform
- pos: 10.5,-47.5
- parent: 2
- - uid: 16920
- components:
- - type: Transform
- pos: 1.5,-48.5
- parent: 2
- - uid: 16921
- components:
- - type: Transform
- pos: 8.5,50.5
- parent: 2
- - uid: 16922
- components:
- - type: Transform
- pos: -11.5,-43.5
- parent: 2
- - uid: 16923
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-24.5
- parent: 2
- - uid: 16924
- components:
- - type: Transform
- pos: 3.5,66.5
- parent: 2
- - uid: 16925
- components:
- - type: Transform
- pos: -1.5,50.5
- parent: 2
- - uid: 16926
- components:
- - type: Transform
- pos: -39.5,9.5
- parent: 2
- - uid: 16927
- components:
- - type: Transform
- pos: -20.5,18.5
- parent: 2
- - uid: 16928
- components:
- - type: Transform
- pos: 33.5,-29.5
- parent: 2
- - uid: 16929
- components:
- - type: Transform
- pos: 32.5,2.5
- parent: 2
- - uid: 16930
- components:
- - type: Transform
- pos: 32.5,3.5
- parent: 2
- - uid: 16931
- components:
- - type: Transform
- pos: 42.5,-59.5
- parent: 2
- - uid: 16932
- components:
- - type: Transform
- pos: -44.5,-12.5
- parent: 2
- - uid: 16933
- components:
- - type: Transform
- pos: -20.5,-22.5
- parent: 2
- - uid: 16934
- components:
- - type: Transform
- pos: -66.5,-28.5
- parent: 2
- - uid: 16935
- components:
- - type: Transform
- pos: 5.5,-17.5
- parent: 2
- - uid: 16936
- components:
- - type: Transform
- pos: -5.5,-36.5
- parent: 2
- - uid: 16937
- components:
- - type: Transform
- pos: 41.5,-1.5
- parent: 2
- - uid: 16938
- components:
- - type: Transform
- pos: -32.5,31.5
- parent: 2
- - uid: 16939
- components:
- - type: Transform
- pos: -63.5,61.5
- parent: 2
- - uid: 16940
- components:
- - type: Transform
- pos: -30.5,-46.5
- parent: 2
- - uid: 16941
- components:
- - type: Transform
- pos: 32.5,-7.5
- parent: 2
- - uid: 16942
- components:
- - type: Transform
- pos: 27.5,12.5
- parent: 2
- - uid: 16943
- components:
- - type: Transform
- pos: -6.5,-17.5
- parent: 2
- - uid: 16944
- components:
- - type: Transform
- pos: 19.5,2.5
- parent: 2
- - uid: 16945
- components:
- - type: Transform
- pos: 54.5,-23.5
- parent: 2
- - uid: 16946
- components:
- - type: Transform
- pos: -35.5,3.5
- parent: 2
- - uid: 16947
- components:
- - type: Transform
- pos: -30.5,56.5
- parent: 2
- - uid: 16948
- components:
- - type: Transform
- pos: 15.5,9.5
- parent: 2
- - uid: 16949
- components:
- - type: Transform
- pos: 3.5,-36.5
- parent: 2
- - uid: 16950
- components:
- - type: Transform
- pos: -28.5,40.5
- parent: 2
-- proto: FaxMachineBase
- entities:
- - uid: 16951
- components:
- - type: Transform
- pos: 0.5,14.5
- parent: 2
- - type: FaxMachine
- name: Мостик
- - uid: 16952
- components:
- - type: Transform
- pos: 51.5,7.5
- parent: 2
- - type: FaxMachine
- name: Офис вардена
- - uid: 16953
- components:
- - type: Transform
- pos: 38.5,18.5
- parent: 2
- - type: FaxMachine
- name: Офис ГСБ
- - uid: 16954
- components:
- - type: Transform
- pos: -21.5,-6.5
- parent: 2
- - type: FaxMachine
- name: Библиотека
- - uid: 16955
- components:
- - type: Transform
- pos: -63.5,9.5
- parent: 2
- - type: FaxMachine
- name: Офис СИ
- - uid: 16956
- components:
- - type: Transform
- pos: 32.5,8.5
- parent: 2
- - type: FaxMachine
- name: Офис детектива
- - uid: 16957
- components:
- - type: Transform
- pos: 24.5,-46.5
- parent: 2
- - type: FaxMachine
- name: Офис ГВ
- - uid: 16958
- components:
- - type: Transform
- pos: -16.5,-41.5
- parent: 2
- - type: FaxMachine
- name: Офис НР
- - uid: 16959
- components:
- - type: Transform
- pos: 34.5,-1.5
- parent: 2
- - type: FaxMachine
- name: Офис АВД
- - uid: 16960
- components:
- - type: Transform
- pos: 27.5,35.5
- parent: 2
- - type: FaxMachine
- name: Офис КМ
- - uid: 16961
- components:
- - type: Transform
- pos: -8.5,0.5
- parent: 2
-- proto: FaxMachineCaptain
- entities:
- - uid: 16962
- components:
- - type: Transform
- pos: 9.5,6.5
- parent: 2
- - type: FaxMachine
- name: Офис Капитана
-- proto: FenceMetalBroken
- entities:
- - uid: 16963
- components:
- - type: Transform
- pos: -45.5,-3.5
- parent: 2
- - uid: 16964
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-50.5
- parent: 2
-- proto: FenceMetalGate
- entities:
- - uid: 16965
- components:
- - type: Transform
- pos: 50.5,-50.5
- parent: 2
-- proto: FenceMetalStraight
- entities:
- - uid: 16966
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-50.5
- parent: 2
- - uid: 16967
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-50.5
- parent: 2
- - uid: 16968
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-50.5
- parent: 2
-- proto: filingCabinet
- entities:
- - uid: 16969
- components:
- - type: Transform
- pos: 18.5,34.5
- parent: 2
- - uid: 16970
- components:
- - type: Transform
- pos: -25.5,-12.5
- parent: 2
- - uid: 16971
- components:
- - type: Transform
- pos: 32.5,12.5
- parent: 2
- - uid: 16972
- components:
- - type: Transform
- pos: -14.5,-3.5
- parent: 2
- - uid: 16973
- components:
- - type: Transform
- pos: 14.5,0.5
- parent: 2
- - uid: 16974
- components:
- - type: Transform
- pos: 17.5,34.5
- parent: 2
- - uid: 16975
- components:
- - type: Transform
- pos: 3.5,-61.5
- parent: 2
- - uid: 16976
- components:
- - type: Transform
- pos: 3.5,61.5
- parent: 2
- - uid: 16977
- components:
- - type: Transform
- pos: 58.5,-2.5
- parent: 2
-- proto: filingCabinetDrawer
- entities:
- - uid: 16978
- components:
- - type: Transform
- pos: 2.5,37.5
- parent: 2
- - uid: 16979
- components:
- - type: Transform
- pos: -26.5,23.5
- parent: 2
- - uid: 16980
- components:
- - type: Transform
- pos: 31.5,-69.5
- parent: 2
- - uid: 16981
- components:
- - type: Transform
- pos: 14.5,-40.5
- parent: 2
- - uid: 16982
- components:
- - type: Transform
- pos: -16.5,-38.5
- parent: 2
- - uid: 16983
- components:
- - type: Transform
- pos: 37.5,12.5
- parent: 2
- - uid: 16984
- components:
- - type: Transform
- pos: 25.5,26.5
- parent: 2
- - uid: 16985
- components:
- - type: Transform
- pos: 20.5,-42.5
- parent: 2
- - uid: 16986
- components:
- - type: Transform
- pos: 40.5,-59.5
- parent: 2
- - uid: 16987
- components:
- - type: Transform
- pos: 3.5,-46.5
- parent: 2
- - uid: 16988
- components:
- - type: Transform
- pos: -65.5,11.5
- parent: 2
- - uid: 16989
- components:
- - type: Transform
- pos: 29.5,34.5
- parent: 2
- - uid: 16990
- components:
- - type: Transform
- pos: -26.5,-31.5
- parent: 2
- - uid: 16991
- components:
- - type: Transform
- pos: 27.5,40.5
- parent: 2
- - uid: 16992
- components:
- - type: Transform
- pos: -33.5,-37.5
- parent: 2
-- proto: filingCabinetDrawerRandom
- entities:
- - uid: 16993
- components:
- - type: Transform
- pos: 0.5,-16.5
- parent: 2
- - uid: 16994
- components:
- - type: Transform
- pos: 53.5,19.5
- parent: 2
- - uid: 16995
- components:
- - type: Transform
- pos: -21.5,-8.5
- parent: 2
- - uid: 16996
- components:
- - type: Transform
- pos: 25.5,2.5
- parent: 2
- - uid: 16997
- components:
- - type: Transform
- pos: 25.5,-5.5
- parent: 2
- - uid: 16998
- components:
- - type: Transform
- pos: -40.5,60.5
- parent: 2
- - uid: 16999
- components:
- - type: Transform
- pos: 58.5,29.5
- parent: 2
- - uid: 17000
- components:
- - type: Transform
- pos: 59.5,29.5
- parent: 2
-- proto: filingCabinetRandom
- entities:
- - uid: 17001
- components:
- - type: Transform
- pos: 54.5,19.5
- parent: 2
- - uid: 17002
- components:
- - type: Transform
- pos: 31.5,-5.5
- parent: 2
- - uid: 17003
- components:
- - type: Transform
- pos: -35.5,63.5
- parent: 2
- - uid: 17004
- components:
- - type: Transform
- pos: -33.5,59.5
- parent: 2
- - uid: 17005
- components:
- - type: Transform
- pos: 32.5,-41.5
- parent: 2
- - uid: 17006
- components:
- - type: Transform
- pos: -33.5,63.5
- parent: 2
-- proto: filingCabinetTall
- entities:
- - uid: 17007
- components:
- - type: Transform
- pos: 9.5,37.5
- parent: 2
- - uid: 17008
- components:
- - type: Transform
- pos: -13.5,-0.5
- parent: 2
-- proto: FireAlarm
- entities:
- - uid: 17009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,71.5
- parent: 2
- - type: DeviceList
- devices:
- - 17079
- - 17081
- - 17088
- - 803
- - 786
- - uid: 17010
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,66.5
- parent: 2
- - type: DeviceList
- devices:
- - 862
- - 17176
- - 17435
- - 17286
- - 17424
- - 17407
- - 17367
- - 17444
- - 17384
- - 17313
- - 17308
- - uid: 17011
- components:
- - type: Transform
- pos: -13.5,35.5
- parent: 2
- - type: DeviceList
- devices:
- - 863
- - 17133
- - 17134
- - 17160
- - 17137
- - 17136
- - 17150
- - 17147
- - 17153
- - 17142
- - 17144
- - 17143
- - uid: 17012
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,71.5
- parent: 2
- - type: DeviceList
- devices:
- - 17318
- - 17307
- - 17309
- - 792
- - 864
- - uid: 17013
- components:
- - type: Transform
- pos: -12.5,51.5
- parent: 2
- - type: DeviceList
- devices:
- - 867
- - 17358
- - 17357
- - uid: 17014
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,11.5
- parent: 2
- - type: DeviceList
- devices:
- - 851
- - 17178
- - 857
- - 17478
- - uid: 17015
- components:
- - type: Transform
- pos: 6.5,-17.5
- parent: 2
- - type: DeviceList
- devices:
- - 17227
- - 17203
- - 17188
- - 17237
- - 17257
- - 17398
- - 17238
- - 17354
- - 17388
- - 17446
- - 17317
- - 17401
- - 17310
- - 827
- - uid: 17016
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-0.5
- parent: 2
- - type: DeviceList
- devices:
- - 17421
- - 17418
- - 17415
- - 17232
- - 17327
- - 17417
- - 17439
- - 17330
- - 17382
- - uid: 17017
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-67.5
- parent: 2
- - type: DeviceList
- devices:
- - 17458
- - 17452
- - 17451
- - 835
- - 17449
- - uid: 17018
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-14.5
- parent: 2
- - type: DeviceList
- devices:
- - 17446
- - 17388
- - 17354
- - 17351
- - 17390
- - 17363
- - 17244
- - 17374
- - 17421
- - 17418
- - 17415
- - 828
- - uid: 17019
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,8.5
- parent: 2
- - type: DeviceList
- devices:
- - 17235
- - 810
- - 17442
- - 17393
- - 17395
- - 17316
- - 17303
- - 17360
- - uid: 17020
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-57.5
- parent: 2
- - type: DeviceList
- devices:
- - 17371
- - 17234
- - 17392
- - 17342
- - 17340
- - 17337
- - 825
- - uid: 17021
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,71.5
- parent: 2
- - type: DeviceList
- devices:
- - 17364
- - 17253
- - 17245
- - 17115
- - 17114
- - 17075
- - 17116
- - 787
- - uid: 17022
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-46.5
- parent: 2
- - type: DeviceList
- devices:
- - 17325
- - 17320
- - 17242
- - 833
- - uid: 17023
- components:
- - type: Transform
- pos: 24.5,-32.5
- parent: 2
- - type: DeviceList
- devices:
- - 17376
- - 17394
- - 17262
- - 17296
- - 17297
- - 17295
- - 829
- - uid: 17024
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,47.5
- parent: 2
- - uid: 17025
- components:
- - type: Transform
- pos: -8.5,-62.5
- parent: 2
- - type: DeviceList
- devices:
- - 17199
- - 17218
- - 17342
- - 17340
- - 17337
- - 811
- - 17451
- - 17452
- - 17454
- - 17453
- - uid: 17026
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,0.5
- parent: 2
- - type: DeviceList
- devices:
- - 17408
- - 17423
- - 17304
- - 17391
- - 17369
- - 17437
- - 17312
- - 17368
- - 17315
- - 794
- - uid: 17027
- components:
- - type: Transform
- pos: -16.5,25.5
- parent: 2
- - type: DeviceList
- devices:
- - 17248
- - 17410
- - 17306
- - 796
- - 17397
- - 17267
- - 17324
- - 17433
- - 17268
- - 17432
- - uid: 17028
- components:
- - type: Transform
- pos: 11.5,25.5
- parent: 2
- - type: DeviceList
- devices:
- - 17420
- - 17416
- - 17231
- - 17243
- - 17230
- - 17249
- - 17419
- - 17336
- - 17236
- - 17335
- - uid: 17029
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-75.5
- parent: 2
- - type: DeviceList
- devices:
- - 17455
- - 831
- - 17453
- - 17454
- - 17458
- - uid: 17030
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,3.5
- parent: 2
- - type: DeviceList
- devices:
- - 17312
- - 17368
- - 17315
- - 17290
- - 17289
- - 17365
- - 821
- - uid: 17031
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-38.5
- parent: 2
- - type: DeviceList
- devices:
- - 17183
- - 17191
- - 17223
- - 17182
- - uid: 17032
- components:
- - type: Transform
- pos: -24.5,-32.5
- parent: 2
- - type: DeviceList
- devices:
- - 17217
- - 17184
- - 17185
- - 17298
- - 17389
- - 17445
- - 834
- - uid: 17033
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-29.5
- parent: 2
- - type: DeviceList
- devices:
- - 17240
- - 17350
- - 17399
- - 17272
- - 17428
- - 17273
- - 826
- - 17262
- - 17394
- - 17376
- - 17366
- - 17264
- - 17426
- - uid: 17034
- components:
- - type: Transform
- pos: 8.5,-21.5
- parent: 2
- - type: DeviceList
- devices:
- - 17237
- - 17257
- - 17398
- - 17238
- - 17258
- - 17350
- - 17240
- - 17322
- - 17321
- - 17317
- - 17401
- - 17310
- - 818
- - uid: 17035
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-30.5
- parent: 2
- - type: DeviceList
- devices:
- - 17239
- - 17378
- - 17263
- - 17261
- - 17265
- - 17349
- - 788
- - uid: 17036
- components:
- - type: Transform
- pos: -9.5,-21.5
- parent: 2
- - type: DeviceList
- devices:
- - 17281
- - 17270
- - 17409
- - 17402
- - 17353
- - 17299
- - 17317
- - 17401
- - 17310
- - uid: 17037
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,13.5
- parent: 2
- - type: DeviceList
- devices:
- - 17232
- - 17327
- - 17417
- - 17243
- - 17230
- - 17249
- - 808
- - uid: 17038
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-12.5
- parent: 2
- - type: DeviceList
- devices:
- - 17122
- - 17121
- - 790
- - 17120
- - 17117
- - uid: 17039
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,15.5
- parent: 2
- - type: DeviceList
- devices:
- - 795
- - 17397
- - 17267
- - 17324
- - 17391
- - 17369
- - 17437
- - uid: 17040
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,63.5
- parent: 2
- - type: DeviceList
- devices:
- - 17313
- - 17308
- - 17384
- - 17444
- - 17367
- - 17291
- - 17292
- - 17356
- - 17385
- - 17314
- - uid: 17041
- components:
- - type: Transform
- pos: -14.5,-17.5
- parent: 2
- - type: DeviceList
- devices:
- - 17260
- - 17282
- - 17319
- - 17281
- - 17270
- - 17409
- - 17402
- - 17228
- - 17222
- - 17212
- - 17317
- - 17401
- - 17310
- - 805
- - uid: 17042
- components:
- - type: Transform
- pos: -34.5,7.5
- parent: 2
- - type: DeviceList
- devices:
- - 17290
- - 17289
- - 17365
- - 17360
- - 17303
- - 17316
- - 802
- - uid: 17043
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,2.5
- parent: 2
- - uid: 17044
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-43.5
- parent: 2
- - type: DeviceList
- devices:
- - 17325
- - 17320
- - 17242
- - 800
- - uid: 17045
- components:
- - type: Transform
- pos: -8.5,-6.5
- parent: 2
- - type: DeviceList
- devices:
- - 17117
- - 17120
- - 17279
- - 17247
- - 830
- - uid: 17046
- components:
- - type: Transform
- pos: 7.5,-6.5
- parent: 2
- - type: DeviceList
- devices:
- - 17122
- - 17121
- - 17244
- - 17374
- - 812
- - uid: 17047
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,6.5
- parent: 2
- - type: DeviceList
- devices:
- - 17189
- - 17225
- - 17180
- - 17186
- - 17194
- - 17198
- - uid: 17048
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,43.5
- parent: 2
- - type: DeviceList
- devices:
- - 17338
- - 17339
- - 17341
- - 17358
- - 17357
- - 17433
- - 17268
- - 17432
- - uid: 17049
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,39.5
- parent: 2
- - type: DeviceList
- devices:
- - 17125
- - 17164
- - 17163
- - 17161
- - 17158
- - 17130
- - 17132
- - 17129
- - 17166
- - 17159
- - 17131
- - uid: 17050
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,37.5
- parent: 2
- - type: DeviceList
- devices:
- - 17140
- - 17167
- - 17124
- - 17127
- - 17149
- - 17157
- - 17152
- - 17168
- - 17155
- - 17162
- - 17343
- - 17250
- - 17380
- - 17269
- - 17406
- - uid: 17051
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-12.5
- parent: 2
- - type: DeviceList
- devices:
- - 17363
- - 17390
- - 17351
- - 17447
- - 17425
- - 17300
- - 814
- - uid: 17052
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,7.5
- parent: 2
- - type: DeviceList
- devices:
- - 17169
- - 17118
- - 17119
- - uid: 17053
- components:
- - type: Transform
- pos: -4.5,25.5
- parent: 2
- - type: DeviceList
- devices:
- - 797
- - 17306
- - 17410
- - 17248
- - 17231
- - 17416
- - 17420
- - 17335
- - 17236
- - uid: 17054
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-40.5
- parent: 2
- - type: DeviceList
- devices:
- - 17280
- - 17277
- - 17429
- - 17400
- - 806
- - uid: 17055
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-10.5
- parent: 2
- - type: DeviceList
- devices:
- - 17260
- - 17282
- - 17319
- - 17279
- - 17247
- - 17408
- - 17423
- - 17304
- - 815
- - uid: 17056
- components:
- - type: Transform
- pos: -22.5,16.5
- parent: 2
- - type: DeviceList
- devices:
- - 23731
- - 23501
- - 816
- - 17274
- - 17283
- - 17352
- - 17302
- - uid: 17057
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-29.5
- parent: 2
- - type: DeviceList
- devices:
- - 798
- - 17344
- - 17254
- - 17276
- - 17373
- - 17251
- - 17252
- - uid: 17058
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,30.5
- parent: 2
- - type: DeviceList
- devices:
- - 17336
- - 17419
- - 17335
- - 23688
- - 23317
- - 832
- - 17236
- - uid: 17059
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,42.5
- parent: 2
- - type: DeviceList
- devices:
- - 23476
- - 23593
- - 23495
- - 23721
- - 23453
- - 17329
- - 17207
- - 799
- - 17346
- - 17347
- - 17331
- - uid: 17060
- components:
- - type: Transform
- pos: 27.5,7.5
- parent: 2
- - type: DeviceList
- devices:
- - 17348
- - 17440
- - 17233
- - 17169
- - 17118
- - 17119
- - uid: 17061
- components:
- - type: Transform
- pos: 90.5,15.5
- parent: 2
- - type: DeviceList
- devices:
- - 858
- - 17241
- - 17256
- - 17477
- - 17478
- - uid: 17062
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,7.5
- parent: 2
- - type: DeviceList
- devices:
- - 17110
- - 17111
- - 17109
- - 855
- - uid: 17063
- components:
- - type: Transform
- pos: -16.5,54.5
- parent: 2
- - type: DeviceList
- devices:
- - 866
- - 17341
- - 17339
- - 17338
- - uid: 17064
- components:
- - type: Transform
- pos: -16.5,54.5
- parent: 2
- - uid: 17065
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,77.5
- parent: 2
- - type: DeviceList
- devices:
- - 865
- - 17114
- - 17115
- - 17075
- - 17116
- - uid: 17066
- components:
- - type: Transform
- pos: -15.5,59.5
- parent: 2
- - type: DeviceList
- devices:
- - 868
- - 17314
- - 17385
- - 17356
- - 17292
- - 17291
- - 17177
- - 17293
- - 17294
- - 17288
- - 17355
- - 17341
- - 17339
- - 17338
- - uid: 17067
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,65.5
- parent: 2
- - type: DeviceList
- devices:
- - 17407
- - 17424
- - 17286
- - 17435
- - 17176
- - 17177
- - 17293
- - 17294
- - 17288
- - 17355
-- proto: FireAxeCabinetFilled
- entities:
- - uid: 17068
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,12.5
- parent: 2
- - uid: 17069
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,37.5
- parent: 2
- - uid: 17070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,56.5
- parent: 2
-- proto: FireAxeCabinetOpen
- entities:
- - uid: 17071
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-26.5
- parent: 2
-- proto: FireExtinguisher
- entities:
- - uid: 17072
- components:
- - type: Transform
- pos: -44.574673,-22.51657
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17073
- components:
- - type: Transform
- pos: -34.773117,-55.435936
- parent: 2
- - uid: 17074
- components:
- - type: Transform
- pos: -34.319992,-55.435936
- parent: 2
-- proto: Firelock
- entities:
- - uid: 17075
- components:
- - type: Transform
- pos: 9.5,80.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 162
- - 17065
- - 17021
- - 161
- - uid: 17076
- components:
- - type: Transform
- pos: -42.5,36.5
- parent: 2
- - uid: 17077
- components:
- - type: Transform
- pos: -41.5,53.5
- parent: 2
- - uid: 17078
- components:
- - type: Transform
- pos: -42.5,26.5
- parent: 2
- - uid: 17079
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17009
- - 158
- - uid: 17080
- components:
- - type: Transform
- pos: -40.5,57.5
- parent: 2
- - uid: 17081
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17009
- - 158
- - uid: 17082
- components:
- - type: Transform
- pos: -37.5,-2.5
- parent: 2
- - uid: 17083
- components:
- - type: Transform
- pos: -53.5,-33.5
- parent: 2
- - uid: 17084
- components:
- - type: Transform
- pos: -55.5,-23.5
- parent: 2
- - uid: 17085
- components:
- - type: Transform
- pos: -53.5,-32.5
- parent: 2
- - uid: 17086
- components:
- - type: Transform
- pos: -41.5,-7.5
- parent: 2
- - uid: 17087
- components:
- - type: Transform
- pos: -42.5,-7.5
- parent: 2
- - uid: 17088
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17009
- - 158
- - uid: 17089
- components:
- - type: Transform
- pos: -73.5,-29.5
- parent: 2
- - uid: 17090
- components:
- - type: Transform
- pos: -74.5,-29.5
- parent: 2
- - uid: 17091
- components:
- - type: Transform
- pos: -29.5,39.5
- parent: 2
- - uid: 17092
- components:
- - type: Transform
- pos: -63.5,-31.5
- parent: 2
- - uid: 17093
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - uid: 17094
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-0.5
- parent: 2
- - uid: 17095
- components:
- - type: Transform
- pos: -72.5,-19.5
- parent: 2
- - uid: 17096
- components:
- - type: Transform
- pos: -63.5,-30.5
- parent: 2
- - uid: 17097
- components:
- - type: Transform
- pos: -56.5,-19.5
- parent: 2
- - uid: 17098
- components:
- - type: Transform
- pos: -72.5,-20.5
- parent: 2
- - uid: 17099
- components:
- - type: Transform
- pos: -47.5,-19.5
- parent: 2
- - uid: 17100
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-3.5
- parent: 2
- - uid: 17101
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-2.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - uid: 17102
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - uid: 17103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - uid: 17104
- components:
- - type: Transform
- pos: -54.5,-23.5
- parent: 2
- - uid: 17105
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 116
- - 101
- - uid: 17106
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 116
- - 101
- - uid: 17107
- components:
- - type: Transform
- pos: -36.5,-2.5
- parent: 2
- - uid: 17108
- components:
- - type: Transform
- pos: -56.5,-20.5
- parent: 2
- - uid: 17109
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,6.5
- parent: 2
- - uid: 17110
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,5.5
- parent: 2
- - uid: 17111
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,4.5
- parent: 2
- - uid: 17112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,-40.5
- parent: 2
- - uid: 17113
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,-40.5
- parent: 2
- - uid: 17114
- components:
- - type: Transform
- pos: 9.5,76.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 162
- - 17065
- - 17021
- - 161
- - uid: 17115
- components:
- - type: Transform
- pos: 9.5,75.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 162
- - 17065
- - 17021
- - 161
- - uid: 17116
- components:
- - type: Transform
- pos: 9.5,81.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 162
- - 17065
- - 17021
- - 161
-- proto: FirelockEdge
- entities:
- - uid: 17117
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-8.5
- parent: 2
- - uid: 17118
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,5.5
- parent: 2
- - uid: 17119
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,4.5
- parent: 2
- - uid: 17120
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-7.5
- parent: 2
- - uid: 17121
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-7.5
- parent: 2
- - uid: 17122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-8.5
- parent: 2
- - uid: 17123
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,37.5
- parent: 2
- - uid: 17124
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,39.5
- parent: 2
- - uid: 17125
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,39.5
- parent: 2
- - uid: 17126
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,31.5
- parent: 2
- - uid: 17127
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,40.5
- parent: 2
- - uid: 17128
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,32.5
- parent: 2
- - uid: 17129
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,33.5
- parent: 2
- - uid: 17130
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,35.5
- parent: 2
- - uid: 17131
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,30.5
- parent: 2
- - uid: 17132
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,34.5
- parent: 2
- - uid: 17133
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17134
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,30.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17135
- components:
- - type: Transform
- pos: -14.5,29.5
- parent: 2
- - uid: 17136
- components:
- - type: Transform
- pos: -14.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17137
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17138
- components:
- - type: Transform
- pos: -15.5,35.5
- parent: 2
- - uid: 17139
- components:
- - type: Transform
- pos: -14.5,35.5
- parent: 2
- - uid: 17140
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,36.5
- parent: 2
- - uid: 17141
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,34.5
- parent: 2
- - uid: 17142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17143
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17144
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17145
- components:
- - type: Transform
- pos: -16.5,35.5
- parent: 2
- - uid: 17146
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,30.5
- parent: 2
- - uid: 17147
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,27.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17148
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,29.5
- parent: 2
- - uid: 17149
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,41.5
- parent: 2
- - uid: 17150
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17151
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,26.5
- parent: 2
- - uid: 17152
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,43.5
- parent: 2
- - uid: 17153
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,26.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17154
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,33.5
- parent: 2
- - uid: 17155
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,45.5
- parent: 2
- - uid: 17156
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,28.5
- parent: 2
- - uid: 17157
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,42.5
- parent: 2
- - uid: 17158
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,36.5
- parent: 2
- - uid: 17159
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,31.5
- parent: 2
- - uid: 17160
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17011
- - 164
- - uid: 17161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,37.5
- parent: 2
- - uid: 17162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,46.5
- parent: 2
- - uid: 17163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,38.5
- parent: 2
- - uid: 17164
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,39.5
- parent: 2
- - uid: 17165
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,27.5
- parent: 2
- - uid: 17166
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,32.5
- parent: 2
- - uid: 17167
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,38.5
- parent: 2
- - uid: 17168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,44.5
- parent: 2
- - uid: 17169
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,6.5
- parent: 2
- - uid: 17170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,48.5
- parent: 2
- - uid: 17171
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -117.5,48.5
- parent: 2
- - uid: 17172
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-40.5
- parent: 2
- - uid: 17173
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-40.5
- parent: 2
-- proto: FirelockElectronics
- entities:
- - uid: 17174
- components:
- - type: Transform
- pos: -38.5,11.5
- parent: 2
- - type: Physics
- canCollide: False
-- proto: FirelockGlass
- entities:
- - uid: 17175
- components:
- - type: Transform
- pos: -12.5,-36.5
- parent: 2
- - uid: 17176
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,66.5
- parent: 2
- - uid: 17177
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,59.5
- parent: 2
- - uid: 17178
- components:
- - type: Transform
- pos: 87.5,10.5
- parent: 2
- - uid: 17179
- components:
- - type: Transform
- pos: 37.5,-48.5
- parent: 2
- - uid: 17180
- components:
- - type: Transform
- pos: 48.5,10.5
- parent: 2
- - uid: 17181
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - 52
- - uid: 17182
- components:
- - type: Transform
- pos: 52.5,-45.5
- parent: 2
- - uid: 17183
- components:
- - type: Transform
- pos: 51.5,-33.5
- parent: 2
- - uid: 17184
- components:
- - type: Transform
- pos: -22.5,-32.5
- parent: 2
- - uid: 17185
- components:
- - type: Transform
- pos: -21.5,-32.5
- parent: 2
- - uid: 17186
- components:
- - type: Transform
- pos: 49.5,1.5
- parent: 2
- - uid: 17187
- components:
- - type: Transform
- pos: -62.5,53.5
- parent: 2
- - uid: 17188
- components:
- - type: Transform
- pos: 1.5,-20.5
- parent: 2
- - uid: 17189
- components:
- - type: Transform
- pos: 46.5,10.5
- parent: 2
- - uid: 17190
- components:
- - type: Transform
- pos: 49.5,8.5
- parent: 2
- - uid: 17191
- components:
- - type: Transform
- pos: 52.5,-33.5
- parent: 2
- - uid: 17192
- components:
- - type: Transform
- pos: 13.5,-28.5
- parent: 2
- - uid: 17193
- components:
- - type: Transform
- pos: 10.5,41.5
- parent: 2
- - uid: 17194
- components:
- - type: Transform
- pos: 49.5,0.5
- parent: 2
- - uid: 17195
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - 52
- - uid: 17196
- components:
- - type: Transform
- pos: 12.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - uid: 17197
- components:
- - type: Transform
- pos: 5.5,38.5
- parent: 2
- - uid: 17198
- components:
- - type: Transform
- pos: 49.5,-0.5
- parent: 2
- - uid: 17199
- components:
- - type: Transform
- pos: -11.5,-65.5
- parent: 2
- - uid: 17200
- components:
- - type: Transform
- pos: -3.5,-34.5
- parent: 2
- - uid: 17201
- components:
- - type: Transform
- pos: -16.5,-23.5
- parent: 2
- - uid: 17202
- components:
- - type: Transform
- pos: 40.5,-29.5
- parent: 2
- - uid: 17203
- components:
- - type: Transform
- pos: 1.5,-19.5
- parent: 2
- - uid: 17204
- components:
- - type: Transform
- pos: -38.5,-73.5
- parent: 2
- - uid: 17205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 86
- - uid: 17206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-36.5
- parent: 2
- - uid: 17207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,51.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - 17059
- - uid: 17208
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 12
- - uid: 17209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 86
- - 12
- - uid: 17210
- components:
- - type: Transform
- pos: 41.5,-29.5
- parent: 2
- - uid: 17211
- components:
- - type: Transform
- pos: 11.5,28.5
- parent: 2
- - uid: 17212
- components:
- - type: Transform
- pos: -2.5,-18.5
- parent: 2
- - uid: 17213
- components:
- - type: Transform
- pos: 41.5,-45.5
- parent: 2
- - uid: 17214
- components:
- - type: Transform
- pos: -39.5,-73.5
- parent: 2
- - uid: 17215
- components:
- - type: Transform
- pos: 40.5,-45.5
- parent: 2
- - uid: 17216
- components:
- - type: Transform
- pos: 53.5,10.5
- parent: 2
- - uid: 17217
- components:
- - type: Transform
- pos: -23.5,-32.5
- parent: 2
- - uid: 17218
- components:
- - type: Transform
- pos: -11.5,-66.5
- parent: 2
- - uid: 17219
- components:
- - type: Transform
- pos: -60.5,57.5
- parent: 2
- - uid: 17220
- components:
- - type: Transform
- pos: -58.5,55.5
- parent: 2
- - uid: 17221
- components:
- - type: Transform
- pos: 4.5,32.5
- parent: 2
- - uid: 17222
- components:
- - type: Transform
- pos: -2.5,-19.5
- parent: 2
- - uid: 17223
- components:
- - type: Transform
- pos: 51.5,-45.5
- parent: 2
- - uid: 17224
- components:
- - type: Transform
- pos: -58.5,59.5
- parent: 2
- - uid: 17225
- components:
- - type: Transform
- pos: 47.5,10.5
- parent: 2
- - uid: 17226
- components:
- - type: Transform
- pos: 36.5,-48.5
- parent: 2
- - uid: 17227
- components:
- - type: Transform
- pos: 1.5,-18.5
- parent: 2
- - uid: 17228
- components:
- - type: Transform
- pos: -2.5,-20.5
- parent: 2
- - uid: 17229
- components:
- - type: Transform
- pos: -14.5,-28.5
- parent: 2
- - uid: 17230
- components:
- - type: Transform
- pos: 17.5,21.5
- parent: 2
- - uid: 17231
- components:
- - type: Transform
- pos: 6.5,22.5
- parent: 2
- - uid: 17232
- components:
- - type: Transform
- pos: 16.5,7.5
- parent: 2
- - uid: 17233
- components:
- - type: Transform
- pos: 26.5,4.5
- parent: 2
- - uid: 17234
- components:
- - type: Transform
- pos: -0.5,-56.5
- parent: 2
- - uid: 17235
- components:
- - type: Transform
- pos: -44.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17019
- - uid: 17236
- components:
- - type: Transform
- pos: 4.5,25.5
- parent: 2
- - uid: 17237
- components:
- - type: Transform
- pos: 4.5,-21.5
- parent: 2
- - uid: 17238
- components:
- - type: Transform
- pos: 12.5,-21.5
- parent: 2
- - uid: 17239
- components:
- - type: Transform
- pos: -1.5,-36.5
- parent: 2
- - uid: 17240
- components:
- - type: Transform
- pos: 15.5,-25.5
- parent: 2
- - uid: 17241
- components:
- - type: Transform
- pos: 91.5,15.5
- parent: 2
- - uid: 17242
- components:
- - type: Transform
- pos: -12.5,-44.5
- parent: 2
- - uid: 17243
- components:
- - type: Transform
- pos: 16.5,21.5
- parent: 2
- - uid: 17244
- components:
- - type: Transform
- pos: 15.5,-8.5
- parent: 2
- - uid: 17245
- components:
- - type: Transform
- pos: 7.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 161
- - uid: 17246
- components:
- - type: Transform
- pos: 11.5,30.5
- parent: 2
- - uid: 17247
- components:
- - type: Transform
- pos: -16.5,-8.5
- parent: 2
- - uid: 17248
- components:
- - type: Transform
- pos: -7.5,24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - uid: 17249
- components:
- - type: Transform
- pos: 18.5,21.5
- parent: 2
- - uid: 17250
- components:
- - type: Transform
- pos: -8.5,43.5
- parent: 2
- - uid: 17251
- components:
- - type: Transform
- pos: -43.5,-27.5
- parent: 2
- - uid: 17252
- components:
- - type: Transform
- pos: -43.5,-26.5
- parent: 2
- - uid: 17253
- components:
- - type: Transform
- pos: 6.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 161
- - uid: 17254
- components:
- - type: Transform
- pos: -31.5,-27.5
- parent: 2
- - uid: 17255
- components:
- - type: Transform
- pos: 15.5,-39.5
- parent: 2
- - uid: 17256
- components:
- - type: Transform
- pos: 92.5,15.5
- parent: 2
- - uid: 17257
- components:
- - type: Transform
- pos: 5.5,-21.5
- parent: 2
- - uid: 17258
- components:
- - type: Transform
- pos: 5.5,-28.5
- parent: 2
- - uid: 17259
- components:
- - type: Transform
- pos: 15.5,-38.5
- parent: 2
- - uid: 17260
- components:
- - type: Transform
- pos: -16.5,-20.5
- parent: 2
- - uid: 17261
- components:
- - type: Transform
- pos: -1.5,-28.5
- parent: 2
- - uid: 17262
- components:
- - type: Transform
- pos: 19.5,-35.5
- parent: 2
- - uid: 17263
- components:
- - type: Transform
- pos: 0.5,-36.5
- parent: 2
- - uid: 17264
- components:
- - type: Transform
- pos: 9.5,-33.5
- parent: 2
- - uid: 17265
- components:
- - type: Transform
- pos: -0.5,-28.5
- parent: 2
- - uid: 17266
- components:
- - type: Transform
- pos: -59.5,14.5
- parent: 2
- - uid: 17267
- components:
- - type: Transform
- pos: -18.5,21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - uid: 17268
- components:
- - type: Transform
- pos: -18.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - uid: 17269
- components:
- - type: Transform
- pos: -8.5,40.5
- parent: 2
- - uid: 17270
- components:
- - type: Transform
- pos: -12.5,-21.5
- parent: 2
- - uid: 17271
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-48.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 86
- - uid: 17272
- components:
- - type: Transform
- pos: 17.5,-36.5
- parent: 2
- - uid: 17273
- components:
- - type: Transform
- pos: 15.5,-30.5
- parent: 2
- - uid: 17274
- components:
- - type: Transform
- pos: -20.5,11.5
- parent: 2
- - uid: 17275
- components:
- - type: Transform
- pos: -48.5,14.5
- parent: 2
- - uid: 17276
- components:
- - type: Transform
- pos: -31.5,-26.5
- parent: 2
- - uid: 17277
- components:
- - type: Transform
- pos: 19.5,-38.5
- parent: 2
- - uid: 17278
- components:
- - type: Transform
- pos: -48.5,9.5
- parent: 2
- - uid: 17279
- components:
- - type: Transform
- pos: -16.5,-7.5
- parent: 2
- - uid: 17280
- components:
- - type: Transform
- pos: 19.5,-39.5
- parent: 2
- - uid: 17281
- components:
- - type: Transform
- pos: -13.5,-21.5
- parent: 2
- - uid: 17282
- components:
- - type: Transform
- pos: -16.5,-19.5
- parent: 2
- - uid: 17283
- components:
- - type: Transform
- pos: -20.5,12.5
- parent: 2
- - uid: 17284
- components:
- - type: Transform
- pos: 54.5,-10.5
- parent: 2
- - uid: 17285
- components:
- - type: Transform
- pos: 44.5,-5.5
- parent: 2
- - uid: 17286
- components:
- - type: Transform
- pos: -4.5,66.5
- parent: 2
- - uid: 17287
- components:
- - type: Transform
- pos: -20.5,12.5
- parent: 2
- - uid: 17288
- components:
- - type: Transform
- pos: -3.5,59.5
- parent: 2
- - uid: 17289
- components:
- - type: Transform
- pos: -28.5,5.5
- parent: 2
- - uid: 17290
- components:
- - type: Transform
- pos: -28.5,6.5
- parent: 2
- - uid: 17291
- components:
- - type: Transform
- pos: -20.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 163
- - 17066
- - uid: 17292
- components:
- - type: Transform
- pos: -19.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 163
- - 17066
- - uid: 17293
- components:
- - type: Transform
- pos: -5.5,59.5
- parent: 2
- - uid: 17294
- components:
- - type: Transform
- pos: -4.5,59.5
- parent: 2
- - uid: 17295
- components:
- - type: Transform
- pos: 28.5,-36.5
- parent: 2
- - uid: 17296
- components:
- - type: Transform
- pos: 26.5,-36.5
- parent: 2
- - uid: 17297
- components:
- - type: Transform
- pos: 27.5,-36.5
- parent: 2
- - uid: 17298
- components:
- - type: Transform
- pos: -20.5,-33.5
- parent: 2
- - uid: 17299
- components:
- - type: Transform
- pos: -2.5,-25.5
- parent: 2
- - uid: 17300
- components:
- - type: Transform
- pos: 26.5,-11.5
- parent: 2
- - uid: 17301
- components:
- - type: Transform
- pos: -20.5,-25.5
- parent: 2
- - uid: 17302
- components:
- - type: Transform
- pos: -25.5,7.5
- parent: 2
- - uid: 17303
- components:
- - type: Transform
- pos: -39.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17019
- - uid: 17304
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 2
- - uid: 17305
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-18.5
- parent: 2
- - uid: 17306
- components:
- - type: Transform
- pos: -7.5,22.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - uid: 17307
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17012
- - 160
- - uid: 17308
- components:
- - type: Transform
- pos: -19.5,66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17010
- - uid: 17309
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17012
- - 160
- - uid: 17310
- components:
- - type: Transform
- pos: 0.5,-21.5
- parent: 2
- - uid: 17311
- components:
- - type: Transform
- pos: -12.5,-32.5
- parent: 2
- - uid: 17312
- components:
- - type: Transform
- pos: -20.5,6.5
- parent: 2
- - uid: 17313
- components:
- - type: Transform
- pos: -20.5,66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17010
- - uid: 17314
- components:
- - type: Transform
- pos: -16.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 163
- - 17066
- - uid: 17315
- components:
- - type: Transform
- pos: -20.5,4.5
- parent: 2
- - uid: 17316
- components:
- - type: Transform
- pos: -39.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17019
- - uid: 17317
- components:
- - type: Transform
- pos: -1.5,-21.5
- parent: 2
- - uid: 17318
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17012
- - 160
- - uid: 17319
- components:
- - type: Transform
- pos: -16.5,-18.5
- parent: 2
- - uid: 17320
- components:
- - type: Transform
- pos: -13.5,-44.5
- parent: 2
- - uid: 17321
- components:
- - type: Transform
- pos: 1.5,-25.5
- parent: 2
- - uid: 17322
- components:
- - type: Transform
- pos: 1.5,-24.5
- parent: 2
- - uid: 17323
- components:
- - type: Transform
- pos: -23.5,51.5
- parent: 2
- - uid: 17324
- components:
- - type: Transform
- pos: -19.5,21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - uid: 17325
- components:
- - type: Transform
- pos: -14.5,-44.5
- parent: 2
- - uid: 17326
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,32.5
- parent: 2
- - uid: 17327
- components:
- - type: Transform
- pos: 17.5,7.5
- parent: 2
- - uid: 17328
- components:
- - type: Transform
- pos: 49.5,12.5
- parent: 2
- - uid: 17329
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,52.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - 17059
- - uid: 17330
- components:
- - type: Transform
- pos: 19.5,5.5
- parent: 2
- - uid: 17331
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,48.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - 17059
- - uid: 17332
- components:
- - type: Transform
- pos: -12.5,-28.5
- parent: 2
- - uid: 17333
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 12
- - 88
- - uid: 17334
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-21.5
- parent: 2
- - uid: 17335
- components:
- - type: Transform
- pos: 5.5,25.5
- parent: 2
- - uid: 17336
- components:
- - type: Transform
- pos: 7.5,25.5
- parent: 2
- - uid: 17337
- components:
- - type: Transform
- pos: 0.5,-62.5
- parent: 2
- - uid: 17338
- components:
- - type: Transform
- pos: -19.5,54.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 163
- - 17066
- - 17063
- - uid: 17339
- components:
- - type: Transform
- pos: -18.5,54.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 163
- - 17066
- - 17063
- - uid: 17340
- components:
- - type: Transform
- pos: -0.5,-62.5
- parent: 2
- - uid: 17341
- components:
- - type: Transform
- pos: -17.5,54.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 163
- - 17066
- - 17063
- - uid: 17342
- components:
- - type: Transform
- pos: -1.5,-62.5
- parent: 2
- - uid: 17343
- components:
- - type: Transform
- pos: -8.5,42.5
- parent: 2
- - uid: 17344
- components:
- - type: Transform
- pos: -31.5,-28.5
- parent: 2
- - uid: 17345
- components:
- - type: Transform
- pos: 48.5,23.5
- parent: 2
- - uid: 17346
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - 17059
- - uid: 17347
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - 17059
- - uid: 17348
- components:
- - type: Transform
- pos: 26.5,6.5
- parent: 2
- - uid: 17349
- components:
- - type: Transform
- pos: 0.5,-28.5
- parent: 2
- - uid: 17350
- components:
- - type: Transform
- pos: 15.5,-24.5
- parent: 2
- - uid: 17351
- components:
- - type: Transform
- pos: 19.5,-11.5
- parent: 2
- - uid: 17352
- components:
- - type: Transform
- pos: -24.5,7.5
- parent: 2
- - uid: 17353
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 2
- - uid: 17354
- components:
- - type: Transform
- pos: 15.5,-20.5
- parent: 2
- - uid: 17355
- components:
- - type: Transform
- pos: -2.5,59.5
- parent: 2
- - uid: 17356
- components:
- - type: Transform
- pos: -18.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 163
- - 17066
- - uid: 17357
- components:
- - type: Transform
- pos: -13.5,48.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17013
- - 159
- - uid: 17358
- components:
- - type: Transform
- pos: -13.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17013
- - 159
- - uid: 17359
- components:
- - type: Transform
- pos: -48.5,12.5
- parent: 2
- - uid: 17360
- components:
- - type: Transform
- pos: -39.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17019
- - uid: 17361
- components:
- - type: Transform
- pos: 2.5,-34.5
- parent: 2
- - uid: 17362
- components:
- - type: Transform
- pos: -50.5,21.5
- parent: 2
- - uid: 17363
- components:
- - type: Transform
- pos: 19.5,-9.5
- parent: 2
- - uid: 17364
- components:
- - type: Transform
- pos: 5.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 161
- - uid: 17365
- components:
- - type: Transform
- pos: -28.5,4.5
- parent: 2
- - uid: 17366
- components:
- - type: Transform
- pos: 12.5,-32.5
- parent: 2
- - uid: 17367
- components:
- - type: Transform
- pos: -16.5,66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17010
- - uid: 17368
- components:
- - type: Transform
- pos: -20.5,5.5
- parent: 2
- - uid: 17369
- components:
- - type: Transform
- pos: -18.5,7.5
- parent: 2
- - uid: 17370
- components:
- - type: Transform
- pos: 9.5,63.5
- parent: 2
- - uid: 17371
- components:
- - type: Transform
- pos: -1.5,-56.5
- parent: 2
- - uid: 17372
- components:
- - type: Transform
- pos: 12.5,43.5
- parent: 2
- - uid: 17373
- components:
- - type: Transform
- pos: -43.5,-28.5
- parent: 2
- - uid: 17374
- components:
- - type: Transform
- pos: 15.5,-7.5
- parent: 2
- - uid: 17375
- components:
- - type: Transform
- pos: 10.5,38.5
- parent: 2
- - uid: 17376
- components:
- - type: Transform
- pos: 19.5,-33.5
- parent: 2
- - uid: 17377
- components:
- - type: Transform
- pos: -14.5,-32.5
- parent: 2
- - uid: 17378
- components:
- - type: Transform
- pos: -0.5,-36.5
- parent: 2
- - uid: 17379
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - uid: 17380
- components:
- - type: Transform
- pos: -8.5,41.5
- parent: 2
- - uid: 17381
- components:
- - type: Transform
- pos: 12.5,36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - uid: 17382
- components:
- - type: Transform
- pos: 19.5,4.5
- parent: 2
- - uid: 17383
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-21.5
- parent: 2
- - uid: 17384
- components:
- - type: Transform
- pos: -18.5,66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17010
- - uid: 17385
- components:
- - type: Transform
- pos: -17.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 163
- - 17066
- - uid: 17386
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - uid: 17387
- components:
- - type: Transform
- pos: 52.5,20.5
- parent: 2
- - uid: 17388
- components:
- - type: Transform
- pos: 15.5,-19.5
- parent: 2
- - uid: 17389
- components:
- - type: Transform
- pos: -20.5,-34.5
- parent: 2
- - uid: 17390
- components:
- - type: Transform
- pos: 19.5,-10.5
- parent: 2
- - uid: 17391
- components:
- - type: Transform
- pos: -17.5,7.5
- parent: 2
- - uid: 17392
- components:
- - type: Transform
- pos: 0.5,-56.5
- parent: 2
- - uid: 17393
- components:
- - type: Transform
- pos: -43.5,12.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17019
- - uid: 17394
- components:
- - type: Transform
- pos: 19.5,-34.5
- parent: 2
- - uid: 17395
- components:
- - type: Transform
- pos: -43.5,11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17019
- - uid: 17396
- components:
- - type: Transform
- pos: -44.5,18.5
- parent: 2
- - uid: 17397
- components:
- - type: Transform
- pos: -17.5,21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - uid: 17398
- components:
- - type: Transform
- pos: 11.5,-21.5
- parent: 2
- - uid: 17399
- components:
- - type: Transform
- pos: 16.5,-36.5
- parent: 2
- - uid: 17400
- components:
- - type: Transform
- pos: 25.5,-39.5
- parent: 2
- - uid: 17401
- components:
- - type: Transform
- pos: -0.5,-21.5
- parent: 2
- - uid: 17402
- components:
- - type: Transform
- pos: -5.5,-21.5
- parent: 2
- - uid: 17403
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-18.5
- parent: 2
- - uid: 17404
- components:
- - type: Transform
- pos: 11.5,-28.5
- parent: 2
- - uid: 17405
- components:
- - type: Transform
- pos: -23.5,50.5
- parent: 2
- - uid: 17406
- components:
- - type: Transform
- pos: -8.5,39.5
- parent: 2
- - uid: 17407
- components:
- - type: Transform
- pos: -2.5,66.5
- parent: 2
- - uid: 17408
- components:
- - type: Transform
- pos: -17.5,-6.5
- parent: 2
- - uid: 17409
- components:
- - type: Transform
- pos: -6.5,-21.5
- parent: 2
- - uid: 17410
- components:
- - type: Transform
- pos: -7.5,23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - uid: 17411
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 86
- - 88
- - uid: 17412
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,-18.5
- parent: 2
- - uid: 17413
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-18.5
- parent: 2
- - uid: 17414
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-21.5
- parent: 2
- - uid: 17415
- components:
- - type: Transform
- pos: 18.5,-6.5
- parent: 2
- - uid: 17416
- components:
- - type: Transform
- pos: 6.5,23.5
- parent: 2
- - uid: 17417
- components:
- - type: Transform
- pos: 18.5,7.5
- parent: 2
- - uid: 17418
- components:
- - type: Transform
- pos: 17.5,-6.5
- parent: 2
- - uid: 17419
- components:
- - type: Transform
- pos: 8.5,25.5
- parent: 2
- - uid: 17420
- components:
- - type: Transform
- pos: 6.5,24.5
- parent: 2
- - uid: 17421
- components:
- - type: Transform
- pos: 16.5,-6.5
- parent: 2
- - uid: 17422
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,-21.5
- parent: 2
- - uid: 17423
- components:
- - type: Transform
- pos: -18.5,-6.5
- parent: 2
- - uid: 17424
- components:
- - type: Transform
- pos: -3.5,66.5
- parent: 2
- - uid: 17425
- components:
- - type: Transform
- pos: 26.5,-10.5
- parent: 2
- - uid: 17426
- components:
- - type: Transform
- pos: 9.5,-35.5
- parent: 2
- - uid: 17427
- components:
- - type: Transform
- pos: -57.5,16.5
- parent: 2
- - uid: 17428
- components:
- - type: Transform
- pos: 18.5,-36.5
- parent: 2
- - uid: 17429
- components:
- - type: Transform
- pos: 25.5,-38.5
- parent: 2
- - uid: 17430
- components:
- - type: Transform
- pos: 38.5,4.5
- parent: 2
- - uid: 17431
- components:
- - type: Transform
- pos: 38.5,6.5
- parent: 2
- - uid: 17432
- components:
- - type: Transform
- pos: -17.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - uid: 17433
- components:
- - type: Transform
- pos: -19.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - uid: 17434
- components:
- - type: Transform
- pos: -20.5,11.5
- parent: 2
- - uid: 17435
- components:
- - type: Transform
- pos: -5.5,66.5
- parent: 2
- - uid: 17436
- components:
- - type: Transform
- pos: 10.5,63.5
- parent: 2
- - uid: 17437
- components:
- - type: Transform
- pos: -19.5,7.5
- parent: 2
- - uid: 17438
- components:
- - type: Transform
- pos: 12.5,45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - uid: 17439
- components:
- - type: Transform
- pos: 19.5,6.5
- parent: 2
- - uid: 17440
- components:
- - type: Transform
- pos: 26.5,5.5
- parent: 2
- - uid: 17441
- components:
- - type: Transform
- pos: 15.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - uid: 17442
- components:
- - type: Transform
- pos: -43.5,13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17019
- - uid: 17443
- components:
- - type: Transform
- pos: 49.5,16.5
- parent: 2
- - uid: 17444
- components:
- - type: Transform
- pos: -17.5,66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17010
- - uid: 17445
- components:
- - type: Transform
- pos: -20.5,-35.5
- parent: 2
- - uid: 17446
- components:
- - type: Transform
- pos: 15.5,-18.5
- parent: 2
- - uid: 17447
- components:
- - type: Transform
- pos: 26.5,-9.5
- parent: 2
- - uid: 17448
- components:
- - type: Transform
- pos: 2.5,-59.5
- parent: 2
- - uid: 17449
- components:
- - type: Transform
- pos: 5.5,-62.5
- parent: 2
- - uid: 17450
- components:
- - type: Transform
- pos: 7.5,-56.5
- parent: 2
- - uid: 17451
- components:
- - type: Transform
- pos: 3.5,-65.5
- parent: 2
- - uid: 17452
- components:
- - type: Transform
- pos: 3.5,-66.5
- parent: 2
- - uid: 17453
- components:
- - type: Transform
- pos: 3.5,-74.5
- parent: 2
- - uid: 17454
- components:
- - type: Transform
- pos: 3.5,-75.5
- parent: 2
- - uid: 17455
- components:
- - type: Transform
- pos: 5.5,-78.5
- parent: 2
- - uid: 17456
- components:
- - type: Transform
- pos: 7.5,-76.5
- parent: 2
- - uid: 17457
- components:
- - type: Transform
- pos: 7.5,-74.5
- parent: 2
- - uid: 17458
- components:
- - type: Transform
- pos: 5.5,-72.5
- parent: 2
- - uid: 17459
- components:
- - type: Transform
- pos: 60.5,25.5
- parent: 2
- - uid: 17460
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-34.5
- parent: 2
- - uid: 17461
- components:
- - type: Transform
- pos: 48.5,22.5
- parent: 2
- - uid: 17462
- components:
- - type: Transform
- pos: 68.5,25.5
- parent: 2
- - uid: 17463
- components:
- - type: Transform
- pos: -117.5,20.5
- parent: 2
- - uid: 17464
- components:
- - type: Transform
- pos: -119.5,20.5
- parent: 2
- - uid: 17465
- components:
- - type: Transform
- pos: -120.5,23.5
- parent: 2
- - uid: 17466
- components:
- - type: Transform
- pos: -116.5,23.5
- parent: 2
- - uid: 17467
- components:
- - type: Transform
- pos: -117.5,27.5
- parent: 2
- - uid: 17468
- components:
- - type: Transform
- pos: -119.5,27.5
- parent: 2
- - uid: 17469
- components:
- - type: Transform
- pos: -120.5,40.5
- parent: 2
- - uid: 17470
- components:
- - type: Transform
- pos: -120.5,39.5
- parent: 2
- - uid: 17471
- components:
- - type: Transform
- pos: -116.5,40.5
- parent: 2
- - uid: 17472
- components:
- - type: Transform
- pos: -116.5,39.5
- parent: 2
- - uid: 17473
- components:
- - type: Transform
- pos: -119.5,44.5
- parent: 2
- - uid: 17474
- components:
- - type: Transform
- pos: -117.5,44.5
- parent: 2
- - uid: 17475
- components:
- - type: Transform
- pos: 79.5,9.5
- parent: 2
- - uid: 17476
- components:
- - type: Transform
- pos: 75.5,9.5
- parent: 2
- - uid: 17477
- components:
- - type: Transform
- pos: 93.5,15.5
- parent: 2
- - uid: 17478
- components:
- - type: Transform
- pos: 83.5,11.5
- parent: 2
- - uid: 17479
- components:
- - type: Transform
- pos: 57.5,20.5
- parent: 2
- - uid: 17480
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 156
- - 155
- - uid: 17481
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 156
- - uid: 17482
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-46.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 155
- - 157
- - uid: 17483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 155
- - uid: 17484
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 153
- - 156
- - uid: 17485
- components:
- - type: Transform
- pos: -13.5,-36.5
- parent: 2
- - uid: 17486
- components:
- - type: Transform
- pos: -14.5,-36.5
- parent: 2
- - uid: 17487
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,61.5
- parent: 2
-- proto: Fireplace
- entities:
- - uid: 17488
- components:
- - type: Transform
- pos: 12.5,11.5
- parent: 2
- - uid: 17489
- components:
- - type: Transform
- pos: -68.5,-33.5
- parent: 2
- - uid: 17490
- components:
- - type: Transform
- pos: 74.5,-36.5
- parent: 2
-- proto: Flash
- entities:
- - uid: 17491
- components:
- - type: Transform
- pos: -2.5,14.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17492
- components:
- - type: Transform
- pos: -2.4961772,18.561342
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17493
- components:
- - type: Transform
- pos: 51.51625,-8.400485
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17494
- components:
- - type: Transform
- pos: 51.51625,-8.400485
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17495
- components:
- - type: Transform
- pos: 51.51625,-8.400485
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17496
- components:
- - type: Transform
- pos: 6.5070233,-63.406696
- parent: 2
-- proto: FlashlightLantern
- entities:
- - uid: 17497
- components:
- - type: Transform
- pos: -21.577547,-20.497307
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17498
- components:
- - type: Transform
- pos: -41.430576,-13.417048
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17499
- components:
- - type: Transform
- pos: -67.49304,-19.581848
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17500
- components:
- - type: Transform
- pos: -32.45189,8.994322
- parent: 2
- - uid: 17501
- components:
- - type: Transform
- pos: 43.5,-37.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17502
- components:
- - type: Transform
- pos: -54.540287,-4.510069
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17503
- components:
- - type: Transform
- pos: -31.482824,-41.00041
- parent: 2
- - uid: 17504
- components:
- - type: Transform
- pos: -24.546297,-21.591057
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17505
- components:
- - type: Transform
- pos: 10.481936,-10.526767
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17506
- components:
- - type: Transform
- pos: -58.47635,28.505901
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17507
- components:
- - type: Transform
- pos: -28.496216,-78.524216
- parent: 2
- - type: Physics
- canCollide: False
-- proto: FlippoLighter
- entities:
- - uid: 13976
- components:
- - type: Transform
- parent: 13972
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FloodlightBroken
- entities:
- - uid: 17508
- components:
- - type: Transform
- pos: -43.375755,-37.271347
- parent: 2
- - uid: 17509
- components:
- - type: Transform
- pos: 45.04216,-33.29468
- parent: 2
-- proto: FloorDrain
- entities:
- - uid: 17510
- components:
- - type: Transform
- pos: 21.5,-14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17511
- components:
- - type: Transform
- pos: 6.5,-49.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17512
- components:
- - type: Transform
- pos: -6.5,46.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17513
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 83.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17514
- components:
- - type: Transform
- pos: 5.5,-30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17515
- components:
- - type: Transform
- pos: -33.5,27.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17516
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,-30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17517
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 83.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17518
- components:
- - type: Transform
- pos: 3.5,51.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17519
- components:
- - type: Transform
- pos: 9.5,-50.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17520
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17521
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17522
- components:
- - type: Transform
- pos: 5.5,-33.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17523
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,65.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 17524
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
-- proto: FloorWaterEntity
- entities:
- - uid: 17525
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,40.5
- parent: 2
- - uid: 17526
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,41.5
- parent: 2
- - uid: 17527
- components:
- - type: Transform
- pos: -52.5,-42.5
- parent: 2
- - uid: 17528
- components:
- - type: Transform
- pos: 93.5,-22.5
- parent: 2
- - uid: 17529
- components:
- - type: Transform
- pos: 92.5,-21.5
- parent: 2
- - uid: 17530
- components:
- - type: Transform
- pos: 92.5,-19.5
- parent: 2
- - uid: 17531
- components:
- - type: Transform
- pos: 92.5,-23.5
- parent: 2
- - uid: 17532
- components:
- - type: Transform
- pos: 92.5,-22.5
- parent: 2
- - uid: 17533
- components:
- - type: Transform
- pos: 93.5,-24.5
- parent: 2
- - uid: 17534
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,41.5
- parent: 2
- - uid: 17535
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,42.5
- parent: 2
- - uid: 17536
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,41.5
- parent: 2
- - uid: 17537
- components:
- - type: Transform
- pos: 93.5,-21.5
- parent: 2
- - uid: 17538
- components:
- - type: Transform
- pos: 93.5,-15.5
- parent: 2
- - uid: 17539
- components:
- - type: Transform
- pos: 93.5,-24.5
- parent: 2
- - uid: 17540
- components:
- - type: Transform
- pos: 92.5,-15.5
- parent: 2
- - uid: 17541
- components:
- - type: Transform
- pos: 92.5,-24.5
- parent: 2
- - uid: 17542
- components:
- - type: Transform
- pos: 90.5,-22.5
- parent: 2
- - uid: 17543
- components:
- - type: Transform
- pos: 91.5,-19.5
- parent: 2
- - uid: 17544
- components:
- - type: Transform
- pos: 91.5,-21.5
- parent: 2
- - uid: 17545
- components:
- - type: Transform
- pos: 91.5,-22.5
- parent: 2
- - uid: 17546
- components:
- - type: Transform
- pos: 90.5,-23.5
- parent: 2
- - uid: 17547
- components:
- - type: Transform
- pos: 93.5,-23.5
- parent: 2
- - uid: 17548
- components:
- - type: Transform
- pos: 92.5,-22.5
- parent: 2
- - uid: 17549
- components:
- - type: Transform
- pos: 93.5,-20.5
- parent: 2
- - uid: 17550
- components:
- - type: Transform
- pos: 93.5,-16.5
- parent: 2
- - uid: 17551
- components:
- - type: Transform
- pos: 92.5,-23.5
- parent: 2
- - uid: 17552
- components:
- - type: Transform
- pos: 93.5,-21.5
- parent: 2
- - uid: 17553
- components:
- - type: Transform
- pos: 91.5,-17.5
- parent: 2
- - uid: 17554
- components:
- - type: Transform
- pos: 92.5,-17.5
- parent: 2
- - uid: 17555
- components:
- - type: Transform
- pos: 91.5,-23.5
- parent: 2
- - uid: 17556
- components:
- - type: Transform
- pos: 93.5,-17.5
- parent: 2
- - uid: 17557
- components:
- - type: Transform
- pos: 92.5,-15.5
- parent: 2
- - uid: 17558
- components:
- - type: Transform
- pos: 92.5,-16.5
- parent: 2
- - uid: 17559
- components:
- - type: Transform
- pos: 92.5,-19.5
- parent: 2
- - uid: 17560
- components:
- - type: Transform
- pos: 92.5,-20.5
- parent: 2
- - uid: 17561
- components:
- - type: Transform
- pos: 92.5,-21.5
- parent: 2
- - uid: 17562
- components:
- - type: Transform
- pos: 93.5,-15.5
- parent: 2
- - uid: 17563
- components:
- - type: Transform
- pos: 92.5,-18.5
- parent: 2
- - uid: 17564
- components:
- - type: Transform
- pos: 91.5,-18.5
- parent: 2
- - uid: 17565
- components:
- - type: Transform
- pos: 90.5,-19.5
- parent: 2
- - uid: 17566
- components:
- - type: Transform
- pos: 93.5,-22.5
- parent: 2
- - uid: 17567
- components:
- - type: Transform
- pos: 93.5,-19.5
- parent: 2
- - uid: 17568
- components:
- - type: Transform
- pos: 91.5,-15.5
- parent: 2
- - uid: 17569
- components:
- - type: Transform
- pos: 91.5,-24.5
- parent: 2
- - uid: 17570
- components:
- - type: Transform
- pos: 93.5,-18.5
- parent: 2
- - uid: 17571
- components:
- - type: Transform
- pos: 93.5,-19.5
- parent: 2
- - uid: 17572
- components:
- - type: Transform
- pos: 91.5,-22.5
- parent: 2
- - uid: 17573
- components:
- - type: Transform
- pos: 93.5,-18.5
- parent: 2
- - uid: 17574
- components:
- - type: Transform
- pos: 92.5,-18.5
- parent: 2
- - uid: 17575
- components:
- - type: Transform
- pos: -51.5,-42.5
- parent: 2
- - uid: 17576
- components:
- - type: Transform
- pos: 93.5,-23.5
- parent: 2
- - uid: 17577
- components:
- - type: Transform
- pos: 93.5,-17.5
- parent: 2
- - uid: 17578
- components:
- - type: Transform
- pos: 93.5,-20.5
- parent: 2
- - uid: 17579
- components:
- - type: Transform
- pos: 90.5,-20.5
- parent: 2
- - uid: 17580
- components:
- - type: Transform
- pos: 90.5,-21.5
- parent: 2
- - uid: 17581
- components:
- - type: Transform
- pos: 91.5,-20.5
- parent: 2
- - uid: 17582
- components:
- - type: Transform
- pos: 93.5,-16.5
- parent: 2
-- proto: FloraRockSolid01
- entities:
- - uid: 17583
- components:
- - type: Transform
- pos: -1.4489589,0.646965
- parent: 2
-- proto: FloraRockSolid02
- entities:
- - uid: 17584
- components:
- - type: Transform
- pos: 0.39479113,-1.821785
- parent: 2
- - uid: 17585
- components:
- - type: Transform
- pos: 0.47903633,5.6187086
- parent: 2
-- proto: FloraTree02
- entities:
- - uid: 17586
- components:
- - type: Transform
- pos: 86.08874,-20.470678
- parent: 2
- - uid: 17587
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.738884,-20.49512
- parent: 2
- - uid: 17588
- components:
- - type: Transform
- pos: 4.0811877,-2.14328
- parent: 2
-- proto: FloraTree03
- entities:
- - uid: 17589
- components:
- - type: Transform
- pos: 89.24547,-16.82761
- parent: 2
- - uid: 17590
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.794815,-17.294529
- parent: 2
- - uid: 17591
- components:
- - type: Transform
- pos: -3.0119271,7.6560354
- parent: 2
-- proto: FloraTree04
- entities:
- - uid: 17592
- components:
- - type: Transform
- pos: 86.19199,-16.193392
- parent: 2
- - uid: 17593
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.34982,-17.176535
- parent: 2
-- proto: FloraTree05
- entities:
- - uid: 17594
- components:
- - type: Transform
- pos: 85.98547,-24.423481
- parent: 2
- - uid: 17595
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.88979,-23.562963
- parent: 2
-- proto: FloraTree06
- entities:
- - uid: 17596
- components:
- - type: Transform
- pos: 88.153885,-22.786312
- parent: 2
- - uid: 17597
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.26779,-22.751753
- parent: 2
- - uid: 17598
- components:
- - type: Transform
- pos: 2.3427134,5.0341353
- parent: 2
-- proto: FloraTreeLarge01
- entities:
- - uid: 17599
- components:
- - type: Transform
- pos: 4.112849,2.8949628
- parent: 2
-- proto: FloraTreeLarge02
- entities:
- - uid: 17600
- components:
- - type: Transform
- pos: 2.2234614,7.1702766
- parent: 2
-- proto: FloraTreeLarge03
- entities:
- - uid: 17601
- components:
- - type: Transform
- pos: -4.147752,-4.6437526
- parent: 2
-- proto: FloraTreeLarge04
- entities:
- - uid: 17602
- components:
- - type: Transform
- pos: 3.3740466,-5.392638
- parent: 2
-- proto: FloraTreeLarge05
- entities:
- - uid: 17603
- components:
- - type: Transform
- pos: -4.3138037,2.4245863
- parent: 2
-- proto: FloraTreeLarge06
- entities:
- - uid: 17604
- components:
- - type: Transform
- pos: 2.6967456,-1.0283407
- parent: 2
-- proto: FoamCutlass
- entities:
- - uid: 17605
- components:
- - type: Transform
- pos: -29.457518,-69.490234
- parent: 2
- - uid: 17606
- components:
- - type: Transform
- pos: 86.6353,-1.5523567
- parent: 2
- - uid: 17607
- components:
- - type: Transform
- pos: 63.532574,-25.28283
- parent: 2
-- proto: FolderSpawner
- entities:
- - uid: 17608
- components:
- - type: Transform
- pos: -21.40159,-7.2613006
- parent: 2
- - uid: 17609
- components:
- - type: Transform
- pos: -34.63679,-11.336835
- parent: 2
-- proto: FoodApple
- entities:
- - uid: 17610
- components:
- - type: Transform
- pos: 41.638454,28.788233
- parent: 2
- - uid: 17611
- components:
- - type: Transform
- pos: 41.46658,28.678858
- parent: 2
-- proto: FoodBakedBunHoney
- entities:
- - uid: 17612
- components:
- - type: Transform
- pos: -4.476065,0.6295253
- parent: 2
- - uid: 17613
- components:
- - type: Transform
- pos: -4.3433046,0.43778455
- parent: 2
-- proto: FoodBakedWaffleRoffle
- entities:
- - uid: 17614
- components:
- - type: Transform
- pos: 63.497284,32.678196
- parent: 2
-- proto: FoodBowlBig
- entities:
- - uid: 17615
- components:
- - type: Transform
- pos: -33.467182,33.860477
- parent: 2
-- proto: FoodBowlBigTrash
- entities:
- - uid: 17616
- components:
- - type: Transform
- pos: -49.54448,-27.797909
- parent: 2
-- proto: FoodBoxDonkpocket
- entities:
- - uid: 17617
- components:
- - type: Transform
- pos: -25.508055,-41.314716
- parent: 2
- - uid: 17618
- components:
- - type: Transform
- pos: 22.522692,35.55459
- parent: 2
- - type: Physics
- canCollide: False
-- proto: FoodBoxDonkpocketBerry
- entities:
- - uid: 16522
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FoodBoxDonkpocketPizza
- entities:
- - uid: 16523
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 17619
- components:
- - type: Transform
- pos: 20.50782,65.64438
- parent: 2
- - uid: 17620
- components:
- - type: Transform
- pos: -65.51054,17.856667
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17621
- components:
- - type: Transform
- pos: 40.52972,-63.32987
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17622
- components:
- - type: Transform
- pos: 35.400856,-27.347382
- parent: 2
- - type: Physics
- canCollide: False
-- proto: FoodBoxDonkpocketSpicy
- entities:
- - uid: 17623
- components:
- - type: Transform
- pos: 74.33829,-50.777576
- parent: 2
-- proto: FoodBoxDonkpocketStonk
- entities:
- - uid: 17624
- components:
- - type: Transform
- pos: -41.5,63.5
- parent: 2
-- proto: FoodBoxDonut
- entities:
- - uid: 17625
- components:
- - type: Transform
- pos: -27.471212,43.719692
- parent: 2
- - uid: 17626
- components:
- - type: Transform
- pos: 12.540921,10.530598
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17627
- components:
- - type: Transform
- pos: -25.321716,-4.558418
- parent: 2
- - uid: 17628
- components:
- - type: Transform
- pos: 25.549309,-3.348259
- parent: 2
- - uid: 17629
- components:
- - type: Transform
- pos: 6.5070233,-67.36797
- parent: 2
-- proto: FoodBoxPizzaFilled
- entities:
- - uid: 17630
- components:
- - type: Transform
- pos: -23.501062,-14.235786
- parent: 2
- - uid: 17631
- components:
- - type: Transform
- pos: -77.423294,-0.34625316
- parent: 2
-- proto: FoodBreadBaguette
- entities:
- - uid: 17632
- components:
- - type: Transform
- pos: -24.528683,35.149998
- parent: 2
-- proto: FoodBreadMimana
- entities:
- - uid: 17633
- components:
- - type: Transform
- pos: -4.516571,46.1589
- parent: 2
-- proto: FoodBreadMoldySlice
- entities:
- - uid: 17634
- components:
- - type: Transform
- pos: -44.358402,-2.5705767
- parent: 2
-- proto: FoodBurgerClown
- entities:
- - uid: 17635
- components:
- - type: Transform
- pos: 48.450497,18.110199
- parent: 2
- - uid: 17636
- components:
- - type: Transform
- pos: 55.51901,-49.51477
- parent: 2
- - uid: 17637
- components:
- - type: Transform
- pos: 11.430935,-63.542744
- parent: 2
-- proto: FoodCakeSuppermatter
- entities:
- - uid: 17638
- components:
- - type: Transform
- pos: -55.518852,48.499203
- parent: 2
-- proto: FoodCakeSuppermatterSlice
- entities:
- - uid: 17639
- components:
- - type: Transform
- pos: -50.24872,47.597103
- parent: 2
- - uid: 17640
- components:
- - type: Transform
- pos: -50.497658,47.810375
- parent: 2
- - uid: 17641
- components:
- - type: Transform
- pos: -50.675472,47.52601
- parent: 2
-- proto: FoodCartCold
- entities:
- - uid: 17642
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,25.5
- parent: 2
-- proto: FoodCartHot
- entities:
- - uid: 17643
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,27.5
- parent: 2
-- proto: FoodCondimentBottleEnzyme
- entities:
- - uid: 17644
- components:
- - type: Transform
- pos: 84.08723,7.6205072
- parent: 2
- - uid: 17645
- components:
- - type: Transform
- pos: 84.1966,7.5580072
- parent: 2
- - uid: 17646
- components:
- - type: Transform
- pos: -31.541601,34.63286
- parent: 2
- - type: Physics
- canCollide: False
-- proto: FoodCondimentPacketBbq
- entities:
- - uid: 17647
- components:
- - type: Transform
- pos: -33.605064,38.70658
- parent: 2
-- proto: FoodCondimentPacketCornoil
- entities:
- - uid: 17648
- components:
- - type: Transform
- pos: -33.32463,38.692204
- parent: 2
-- proto: FoodCondimentPacketPepper
- entities:
- - uid: 17649
- components:
- - type: Transform
- pos: -33.498432,33.155624
- parent: 2
-- proto: FoodContainerEgg
- entities:
- - uid: 17650
- components:
- - type: Transform
- pos: -33.451557,32.773823
- parent: 2
- - uid: 17651
- components:
- - type: Transform
- pos: -29.51509,36.765392
- parent: 2
-- proto: FoodDonutCaramel
- entities:
- - uid: 17652
- components:
- - type: Transform
- pos: 29.620113,-2.432455
- parent: 2
-- proto: FoodDonutChaos
- entities:
- - uid: 17653
- components:
- - type: Transform
- pos: 20.602425,15.498077
- parent: 2
-- proto: FoodDonutSpaceman
- entities:
- - uid: 17654
- components:
- - type: Transform
- pos: -2.7197988,72.480545
- parent: 2
-- proto: FoodDough
- entities:
- - uid: 17655
- components:
- - type: Transform
- pos: -29.375431,34.56414
- parent: 2
-- proto: FoodEggChickenFertilized
- entities:
- - uid: 17656
- components:
- - type: Transform
- pos: -32.667824,43.245087
- parent: 2
-- proto: FoodFrozenPopsicleBerry
- entities:
- - uid: 17657
- components:
- - type: Transform
- pos: 64.564674,25.44189
- parent: 2
-- proto: FoodFrozenPopsicleOrange
- entities:
- - uid: 17658
- components:
- - type: Transform
- pos: 64.44645,32.604736
- parent: 2
-- proto: FoodMealFries
- entities:
- - uid: 17659
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: 63.531837,-14.149153
- parent: 2
-- proto: FoodMealFriesCarrot
- entities:
- - uid: 17660
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: 63.568527,-14.8218355
- parent: 2
-- proto: FoodMealFriesCheesy
- entities:
- - uid: 17661
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: 63.458614,-14.463232
- parent: 2
-- proto: FoodMeat
- entities:
- - uid: 16524
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16525
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16526
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16527
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16528
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16529
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 17662
- components:
- - type: Transform
- pos: -31.725548,26.72904
- parent: 2
-- proto: FoodMeatClown
- entities:
- - uid: 17664
- components:
- - type: Transform
- parent: 17663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FoodMeatCooked
- entities:
- - uid: 17665
- components:
- - type: Transform
- pos: -30.539783,36.68206
- parent: 2
- - type: CollisionWake
- enabled: False
- - type: Physics
- sleepingAllowed: False
-- proto: FoodMeatFiestaKebab
- entities:
- - uid: 17666
- components:
- - type: Transform
- pos: 87.56384,-17.550323
- parent: 2
- - uid: 17667
- components:
- - type: Transform
- pos: 87.44583,-17.373331
- parent: 2
-- proto: FoodMeatRat
- entities:
- - uid: 16530
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16531
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16532
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16533
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16534
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16535
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16536
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16537
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16538
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 16539
- components:
- - type: Transform
- parent: 16520
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FoodMeatRotten
- entities:
- - uid: 17668
- components:
- - type: Transform
- pos: 21.585947,68.61313
- parent: 2
-- proto: FoodMeatSalamiSlice
- entities:
- - uid: 17669
- components:
- - type: Transform
- pos: -65.73778,-24.478151
- parent: 2
- - uid: 17670
- components:
- - type: Transform
- pos: -65.69353,-24.551897
- parent: 2
-- proto: FoodMeatXeno
- entities:
- - uid: 17671
- components:
- - type: Transform
- pos: -50.752796,-26.099058
- parent: 2
- - uid: 17672
- components:
- - type: Transform
- pos: -49.815296,-26.74534
- parent: 2
-- proto: FoodNoodlesSpesslaw
- entities:
- - uid: 17673
- components:
- - type: Transform
- pos: -4.413063,-63.23705
- parent: 2
-- proto: FoodPieApple
- entities:
- - uid: 17674
- components:
- - type: Transform
- pos: -30.604101,34.60161
- parent: 2
- - type: Physics
- canCollide: False
-- proto: FoodPieBananaCream
- entities:
- - uid: 17675
- components:
- - type: Transform
- pos: -11.880426,54.523956
- parent: 2
- - uid: 17676
- components:
- - type: Transform
- pos: -11.311705,54.652374
- parent: 2
- - uid: 17677
- components:
- - type: Transform
- pos: -6.3456492,32.831375
- parent: 2
- - uid: 17678
- components:
- - type: Transform
- pos: -11.183283,54.45057
- parent: 2
- - uid: 17679
- components:
- - type: Transform
- pos: -11.586893,54.523956
- parent: 2
- - uid: 17680
- components:
- - type: Transform
- pos: -6.2831492,32.675125
- parent: 2
- - uid: 17681
- components:
- - type: Transform
- pos: -11.715314,54.76245
- parent: 2
- - uid: 17682
- components:
- - type: Transform
- pos: -6.439399,32.597
- parent: 2
- - uid: 17683
- components:
- - type: Transform
- pos: -6.4862742,32.737625
- parent: 2
- - uid: 17684
- components:
- - type: Transform
- pos: -6.5175242,32.643875
- parent: 2
- - uid: 17685
- components:
- - type: Transform
- pos: -6.517524,32.581375
- parent: 2
-- proto: FoodPieFrosty
- entities:
- - uid: 17686
- components:
- - type: Transform
- pos: -5.4706492,32.64388
- parent: 2
- - uid: 17687
- components:
- - type: Transform
- pos: -5.5487742,32.753254
- parent: 2
- - uid: 17688
- components:
- - type: Transform
- pos: -5.4706492,32.659504
- parent: 2
-- proto: FoodPizzaMoldySlice
- entities:
- - uid: 17689
- components:
- - type: Transform
- pos: -44.749027,-2.3830764
- parent: 2
-- proto: FoodPlateSmall
- entities:
- - uid: 17690
- components:
- - type: Transform
- pos: -24.540524,32.14744
- parent: 2
-- proto: FoodPlateSmallPlastic
- entities:
- - uid: 17691
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3527045
- parent: 2
- - uid: 17692
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3527045
- parent: 2
- - uid: 17693
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3370795
- parent: 2
- - uid: 17694
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3370795
- parent: 2
- - uid: 17695
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.56588,5.3683295
- parent: 2
- - uid: 17696
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3370795
- parent: 2
- - uid: 17697
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3527045
- parent: 2
- - uid: 17698
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3527045
- parent: 2
- - uid: 17699
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3370795
- parent: 2
- - uid: 17700
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3370795
- parent: 2
- - uid: 17701
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3527045
- parent: 2
- - uid: 17702
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.53463,5.3527045
- parent: 2
- - uid: 17703
- components:
- - type: Transform
- pos: -24.555004,37.95691
- parent: 2
-- proto: FoodPlateTrash
- entities:
- - uid: 17704
- components:
- - type: Transform
- pos: -37.521866,-35.583843
- parent: 2
- - uid: 17705
- components:
- - type: Transform
- pos: 19.468113,68.79927
- parent: 2
-- proto: FoodPoppy
- entities:
- - uid: 17706
- components:
- - type: Transform
- pos: 26.749449,18.649921
- parent: 2
- - uid: 17707
- components:
- - type: Transform
- pos: 71.45033,28.503304
- parent: 2
-- proto: FoodSnackChips
- entities:
- - uid: 17708
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.67987,32.75194
- parent: 2
- - uid: 17709
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.706806,18.531712
- parent: 2
- - uid: 17710
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.97243,18.437962
- parent: 2
- - uid: 17711
- components:
- - type: Transform
- pos: -63.479282,18.606667
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17712
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.650375,32.42746
- parent: 2
- - uid: 17713
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: 63.321533,-13.739408
- parent: 2
- - uid: 17714
- components:
- - type: Transform
- pos: 63.731422,-13.6798315
- parent: 2
- - uid: 17715
- components:
- - type: Transform
- pos: 63.731422,-13.3618355
- parent: 2
- - uid: 17716
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: 63.333763,-13.3113365
- parent: 2
-- proto: FoodSnackChocolate
- entities:
- - uid: 17717
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.522848,-43.45425
- parent: 2
- - uid: 17718
- components:
- - type: Transform
- pos: 14.422254,-52.26433
- parent: 2
- - uid: 17719
- components:
- - type: Transform
- pos: 9.564638,7.080452
- parent: 2
- - uid: 17720
- components:
- - type: Transform
- pos: -41.541843,-50.54525
- parent: 2
-- proto: FoodSnackSyndi
- entities:
- - uid: 17721
- components:
- - type: Transform
- pos: -48.627895,14.392678
- parent: 2
-- proto: FoodSoupClown
- entities:
- - uid: 17722
- components:
- - type: Transform
- pos: 11.5,68.5
- parent: 2
-- proto: FoodTartMime
- entities:
- - uid: 17723
- components:
- - type: Transform
- pos: -6.3533263,26.629135
- parent: 2
-- proto: FoodTinBeans
- entities:
- - uid: 17724
- components:
- - type: Transform
- pos: 33.65059,38.73095
- parent: 2
-- proto: FoodTinPeachesMaint
- entities:
- - uid: 17725
- components:
- - type: Transform
- pos: -22.458153,54.69275
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17726
- components:
- - type: Transform
- pos: 24.954596,57.524624
- parent: 2
-- proto: Football
- entities:
- - uid: 17727
- components:
- - type: Transform
- pos: 87.5,-23.5
- parent: 2
-- proto: Fork
- entities:
- - uid: 17728
- components:
- - type: Transform
- pos: -33.404682,37.962914
- parent: 2
-- proto: ForkPlastic
- entities:
- - uid: 17729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.425255,3.618329
- parent: 2
- - uid: 17730
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.44088,3.4464545
- parent: 2
- - uid: 17731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.425255,3.602704
- parent: 2
- - uid: 17732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.37838,3.540204
- parent: 2
- - uid: 17733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.394005,3.524579
- parent: 2
- - uid: 17734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.44088,3.5714545
- parent: 2
-- proto: FuelDispenser
- entities:
- - uid: 17735
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-36.5
- parent: 2
-- proto: GasAnalyzer
- entities:
- - uid: 17736
- components:
- - type: Transform
- pos: -54.587723,-4.552858
- parent: 2
-- proto: GasCanisterBrokenBase
- entities:
- - uid: 17737
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.500008,-50.500046
- parent: 2
- - uid: 17738
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-25.5
- parent: 2
- - uid: 17739
- components:
- - type: Transform
- pos: -46.5,-30.5
- parent: 2
- - uid: 17740
- components:
- - type: Transform
- pos: -44.5,-21.5
- parent: 2
- - uid: 17741
- components:
- - type: Transform
- pos: 39.5,-63.5
- parent: 2
-- proto: GasFilter
- entities:
- - uid: 17742
- components:
- - type: Transform
- pos: -65.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17743
- components:
- - type: Transform
- pos: -68.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-51.5
- parent: 2
- - uid: 17745
- components:
- - type: Transform
- pos: -65.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17746
- components:
- - type: Transform
- pos: -65.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17747
- components:
- - type: Transform
- pos: -65.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17748
- components:
- - type: Transform
- pos: -65.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasMinerCarbonDioxide
- entities:
- - uid: 17749
- components:
- - type: Transform
- pos: -71.5,31.5
- parent: 2
-- proto: GasMinerNitrogenStationLarge
- entities:
- - uid: 17750
- components:
- - type: Transform
- pos: -71.5,45.5
- parent: 2
-- proto: GasMinerOxygenStationLarge
- entities:
- - uid: 17751
- components:
- - type: Transform
- pos: -71.5,49.5
- parent: 2
-- proto: GasMixer
- entities:
- - uid: 17752
- components:
- - type: Transform
- pos: 78.5,22.5
- parent: 2
- - type: GasMixer
- targetPressure: 4500
- - uid: 17753
- components:
- - type: Transform
- pos: -64.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 17754
- components:
- - type: Transform
- pos: -64.5,28.5
- parent: 2
- - uid: 17755
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-45.5
- parent: 2
- - uid: 17756
-=======
- rot: 3.141592653589793 rad
- pos: 14.5,35.5
- parent: 2
- - uid: 16136
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,55.5
- parent: 2
- - uid: 16137
- components:
- - type: Transform
- pos: -54.5,31.5
- parent: 2
- - uid: 16138
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,31.5
- parent: 2
- - uid: 16139
- components:
- - type: Transform
- pos: -54.5,32.5
- parent: 2
- - uid: 16140
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,48.5
- parent: 2
- - uid: 16141
- components:
- - type: Transform
- pos: -54.5,37.5
- parent: 2
- - uid: 16142
- components:
- - type: Transform
- pos: -49.5,13.5
- parent: 2
- - uid: 16143
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,33.5
- parent: 2
- - uid: 16144
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,30.5
- parent: 2
- - uid: 16145
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,30.5
- parent: 2
- - uid: 16146
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,36.5
- parent: 2
- - uid: 16147
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,31.5
- parent: 2
- - uid: 16148
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,30.5
- parent: 2
- - uid: 16149
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,31.5
- parent: 2
- - uid: 16150
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,21.5
- parent: 2
- - uid: 16151
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,33.5
- parent: 2
- - uid: 16152
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,30.5
- parent: 2
- - uid: 16153
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,31.5
- parent: 2
- - uid: 16154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,10.5
- parent: 2
- - uid: 16155
- components:
- - type: Transform
- pos: 25.5,37.5
- parent: 2
- - uid: 16156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,36.5
- parent: 2
- - uid: 16157
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,36.5
- parent: 2
- - uid: 16158
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,21.5
- parent: 2
- - uid: 16159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,21.5
- parent: 2
- - uid: 16160
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,33.5
- parent: 2
- - uid: 16161
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,33.5
- parent: 2
- - uid: 16162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,16.5
- parent: 2
- - uid: 16163
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,51.5
- parent: 2
- - uid: 16164
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,45.5
- parent: 2
- - uid: 16165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,10.5
- parent: 2
- - uid: 16166
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,21.5
- parent: 2
- - uid: 16167
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,31.5
- parent: 2
- - uid: 16168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,21.5
- parent: 2
- - uid: 16169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,36.5
- parent: 2
- - uid: 16170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,36.5
- parent: 2
- - uid: 16171
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,30.5
- parent: 2
- - uid: 16172
- components:
- - type: Transform
- pos: 42.5,29.5
- parent: 2
- - uid: 16173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,10.5
- parent: 2
- - uid: 16174
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,15.5
- parent: 2
- - uid: 16175
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,30.5
- parent: 2
- - uid: 16176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,33.5
- parent: 2
- - uid: 16177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,36.5
- parent: 2
- - uid: 16178
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,36.5
- parent: 2
- - uid: 16179
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,30.5
- parent: 2
- - uid: 16180
- components:
- - type: Transform
- pos: -54.5,36.5
- parent: 2
- - uid: 16181
- components:
- - type: Transform
- pos: -61.5,56.5
- parent: 2
- - uid: 16182
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,10.5
- parent: 2
- - uid: 16183
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,56.5
- parent: 2
- - uid: 16184
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,56.5
- parent: 2
- - uid: 16185
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,56.5
- parent: 2
- - uid: 16186
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,56.5
- parent: 2
- - uid: 16187
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,56.5
- parent: 2
- - uid: 16188
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,56.5
- parent: 2
- - uid: 16189
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,56.5
- parent: 2
- - uid: 16190
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,56.5
- parent: 2
- - uid: 16191
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,56.5
- parent: 2
- - uid: 16192
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,56.5
- parent: 2
- - uid: 16193
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,56.5
- parent: 2
- - uid: 16194
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,56.5
- parent: 2
- - uid: 16195
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,57.5
- parent: 2
- - uid: 16196
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,57.5
- parent: 2
- - uid: 16197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,57.5
- parent: 2
- - uid: 16198
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,57.5
- parent: 2
- - uid: 16199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,57.5
- parent: 2
- - uid: 16200
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,57.5
- parent: 2
- - uid: 16201
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,57.5
- parent: 2
- - uid: 16202
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,57.5
- parent: 2
- - uid: 16203
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,57.5
- parent: 2
- - uid: 16204
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.49999997,57.5
- parent: 2
- - uid: 16205
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,53.5
- parent: 2
- - uid: 16206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,54.5
- parent: 2
- - uid: 16207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,55.5
- parent: 2
- - uid: 16208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,56.5
- parent: 2
- - uid: 16209
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,81.5
- parent: 2
- - uid: 16210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,80.5
- parent: 2
- - uid: 16211
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,79.5
- parent: 2
- - uid: 16212
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,78.5
- parent: 2
- - uid: 16213
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,77.5
- parent: 2
- - uid: 16214
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,76.5
- parent: 2
- - uid: 16215
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,75.5
- parent: 2
- - uid: 16216
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,74.5
- parent: 2
- - uid: 16217
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,73.5
- parent: 2
- - uid: 16218
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,72.5
- parent: 2
- - uid: 16219
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,71.5
- parent: 2
- - uid: 16220
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,70.5
- parent: 2
- - uid: 16221
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,69.5
- parent: 2
- - uid: 16222
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,82.5
- parent: 2
- - uid: 16223
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,68.5
- parent: 2
- - uid: 16224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,68.5
- parent: 2
- - uid: 16225
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,68.5
- parent: 2
- - uid: 16226
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,68.5
- parent: 2
- - uid: 16227
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,68.5
- parent: 2
- - uid: 16228
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.49999997,68.5
- parent: 2
- - uid: 16229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,68.5
- parent: 2
- - uid: 16230
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,68.5
- parent: 2
- - uid: 16231
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,68.5
- parent: 2
- - uid: 16232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,68.5
- parent: 2
- - uid: 16233
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,67.5
- parent: 2
- - uid: 16234
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,66.5
- parent: 2
- - uid: 16235
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,65.5
- parent: 2
- - uid: 16236
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,64.5
- parent: 2
- - uid: 16237
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,63.5
- parent: 2
- - uid: 16238
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,62.5
- parent: 2
- - uid: 16239
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,61.5
- parent: 2
- - uid: 16240
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,60.5
- parent: 2
- - uid: 16241
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,59.5
- parent: 2
- - uid: 16242
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,58.5
- parent: 2
- - uid: 16243
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,57.5
- parent: 2
- - uid: 16244
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,57.5
- parent: 2
- - uid: 16245
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,57.5
- parent: 2
- - uid: 16246
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,57.5
- parent: 2
- - uid: 16247
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,57.5
- parent: 2
- - uid: 16248
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,57.5
- parent: 2
- - uid: 16249
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,57.5
- parent: 2
- - uid: 16250
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,57.5
- parent: 2
- - uid: 16251
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,57.5
- parent: 2
- - uid: 16252
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,57.5
- parent: 2
- - uid: 16253
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,57.5
- parent: 2
- - uid: 16254
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,57.5
- parent: 2
- - uid: 16255
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,57.5
- parent: 2
- - uid: 16256
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,57.5
- parent: 2
- - uid: 16257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,57.5
- parent: 2
- - uid: 16258
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,58.5
- parent: 2
- - uid: 16259
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,59.5
- parent: 2
- - uid: 16260
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,60.5
- parent: 2
- - uid: 16261
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,61.5
- parent: 2
- - uid: 16262
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,62.5
- parent: 2
- - uid: 16263
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,63.5
- parent: 2
- - uid: 16264
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,64.5
- parent: 2
- - uid: 16265
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,65.5
- parent: 2
- - uid: 16266
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,66.5
- parent: 2
- - uid: 16267
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,67.5
- parent: 2
- - uid: 16268
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,68.5
- parent: 2
- - uid: 16269
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,68.5
- parent: 2
- - uid: 16270
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,68.5
- parent: 2
- - uid: 16271
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,68.5
- parent: 2
- - uid: 16272
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,68.5
- parent: 2
- - uid: 16273
- components:
- - type: Transform
- pos: -24.5,67.5
- parent: 2
- - uid: 16274
- components:
- - type: Transform
- pos: -24.5,66.5
- parent: 2
- - uid: 16275
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,62.5
- parent: 2
- - uid: 16276
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,63.5
- parent: 2
- - uid: 16277
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,64.5
- parent: 2
- - uid: 16278
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,65.5
- parent: 2
- - uid: 16279
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,56.5
- parent: 2
- - uid: 16280
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,55.5
- parent: 2
- - uid: 16281
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,54.5
- parent: 2
- - uid: 16282
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,53.5
- parent: 2
- - uid: 16283
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,52.5
- parent: 2
- - uid: 16284
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,51.5
- parent: 2
- - uid: 16285
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,49.5
- parent: 2
- - uid: 16286
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,47.5
- parent: 2
- - uid: 16287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,45.5
- parent: 2
- - uid: 16288
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,46.5
- parent: 2
- - uid: 16289
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,46.5
- parent: 2
- - uid: 16290
- components:
- - type: Transform
- pos: -21.5,45.5
- parent: 2
- - uid: 16291
- components:
- - type: Transform
- pos: -21.5,44.5
- parent: 2
- - uid: 16292
- components:
- - type: Transform
- pos: -21.5,43.5
- parent: 2
- - uid: 16293
- components:
- - type: Transform
- pos: -21.5,42.5
- parent: 2
- - uid: 16294
- components:
- - type: Transform
- pos: -21.5,41.5
- parent: 2
- - uid: 16295
- components:
- - type: Transform
- pos: -21.5,40.5
- parent: 2
- - uid: 16296
- components:
- - type: Transform
- pos: -21.5,39.5
- parent: 2
- - uid: 16297
- components:
- - type: Transform
- pos: -21.5,38.5
- parent: 2
- - uid: 16298
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,37.5
- parent: 2
- - uid: 16299
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,35.5
- parent: 2
- - uid: 16300
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,34.5
- parent: 2
- - uid: 16301
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,32.5
- parent: 2
- - uid: 16302
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,31.5
- parent: 2
- - uid: 16303
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,29.5
- parent: 2
- - uid: 16304
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,28.5
- parent: 2
- - uid: 16305
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,27.5
- parent: 2
- - uid: 16306
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,26.5
- parent: 2
- - uid: 16307
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,25.5
- parent: 2
- - uid: 16308
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,24.5
- parent: 2
- - uid: 16309
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,36.5
- parent: 2
- - uid: 16310
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,36.5
- parent: 2
- - uid: 16311
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,21.5
- parent: 2
- - uid: 16312
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,20.5
- parent: 2
- - uid: 16313
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,19.5
- parent: 2
- - uid: 16314
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,18.5
- parent: 2
- - uid: 16315
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,17.5
- parent: 2
- - uid: 16316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,16.5
- parent: 2
- - uid: 16317
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,15.5
- parent: 2
- - uid: 16318
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,13.5
- parent: 2
- - uid: 16319
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,12.5
- parent: 2
- - uid: 16320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,11.5
- parent: 2
- - uid: 16321
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,10.5
- parent: 2
- - uid: 16322
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,9.5
- parent: 2
- - uid: 16323
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,8.5
- parent: 2
- - uid: 16324
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,7.5
- parent: 2
- - uid: 16325
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,6.5
- parent: 2
- - uid: 16326
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,4.5
- parent: 2
- - uid: 16327
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,3.5
- parent: 2
- - uid: 16328
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,2.5
- parent: 2
- - uid: 16329
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,1.5
- parent: 2
- - uid: 16330
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,0.5
- parent: 2
- - uid: 16331
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-0.5
- parent: 2
- - uid: 16332
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-1.5
- parent: 2
- - uid: 16333
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-3.5
- parent: 2
- - uid: 16334
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-4.5
- parent: 2
- - uid: 16335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-5.5
- parent: 2
- - uid: 16336
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-6.5
- parent: 2
- - uid: 16337
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-7.5
- parent: 2
- - uid: 16338
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-9.5
- parent: 2
- - uid: 16339
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-10.5
- parent: 2
- - uid: 16340
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-11.5
- parent: 2
- - uid: 16341
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-12.5
- parent: 2
- - uid: 16342
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-13.5
- parent: 2
- - uid: 16343
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-14.5
- parent: 2
- - uid: 16344
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-15.5
- parent: 2
- - uid: 16345
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-16.5
- parent: 2
- - uid: 16346
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-17.5
- parent: 2
- - uid: 16347
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-18.5
- parent: 2
- - uid: 16348
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-19.5
- parent: 2
- - uid: 16349
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-19.5
- parent: 2
- - uid: 16350
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-19.5
- parent: 2
- - uid: 16351
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-19.5
- parent: 2
- - uid: 16352
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-19.5
- parent: 2
- - uid: 16353
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-19.5
- parent: 2
- - uid: 16354
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-19.5
- parent: 2
- - uid: 16355
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-19.5
- parent: 2
- - uid: 16356
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-19.5
- parent: 2
- - uid: 16357
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-19.5
- parent: 2
- - uid: 16358
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-19.5
- parent: 2
- - uid: 16359
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-19.5
- parent: 2
- - uid: 16360
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-19.5
- parent: 2
- - uid: 16361
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-19.5
- parent: 2
- - uid: 16362
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-19.5
- parent: 2
- - uid: 16363
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.49999997,-19.5
- parent: 2
- - uid: 16364
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-19.5
- parent: 2
- - uid: 16365
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-19.5
- parent: 2
- - uid: 16366
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-19.5
- parent: 2
- - uid: 16367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-19.5
- parent: 2
- - uid: 16368
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-19.5
- parent: 2
- - uid: 16369
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-19.5
- parent: 2
- - uid: 16370
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-19.5
- parent: 2
- - uid: 16371
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-19.5
- parent: 2
- - uid: 16372
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-19.5
- parent: 2
- - uid: 16373
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-19.5
- parent: 2
- - uid: 16374
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-19.5
- parent: 2
- - uid: 16375
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-19.5
- parent: 2
- - uid: 16376
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-19.5
- parent: 2
- - uid: 16377
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-19.5
- parent: 2
- - uid: 16378
- components:
- - type: Transform
- pos: 17.5,-18.5
- parent: 2
- - uid: 16379
- components:
- - type: Transform
- pos: 17.5,-17.5
- parent: 2
- - uid: 16380
- components:
- - type: Transform
- pos: 17.5,-16.5
- parent: 2
- - uid: 16381
- components:
- - type: Transform
- pos: 17.5,-15.5
- parent: 2
- - uid: 16382
- components:
- - type: Transform
- pos: 17.5,-14.5
- parent: 2
- - uid: 16383
- components:
- - type: Transform
- pos: 17.5,-13.5
- parent: 2
- - uid: 16384
- components:
- - type: Transform
- pos: 17.5,-12.5
- parent: 2
- - uid: 16385
- components:
- - type: Transform
- pos: 17.5,-11.5
- parent: 2
- - uid: 16386
- components:
- - type: Transform
- pos: 17.5,-9.5
- parent: 2
- - uid: 16387
- components:
- - type: Transform
- pos: 17.5,-8.5
- parent: 2
- - uid: 16388
- components:
- - type: Transform
- pos: 17.5,-7.5
- parent: 2
- - uid: 16389
- components:
- - type: Transform
- pos: 17.5,-6.5
- parent: 2
- - uid: 16390
- components:
- - type: Transform
- pos: 17.5,-5.5
- parent: 2
- - uid: 16391
- components:
- - type: Transform
- pos: 17.5,-4.5
- parent: 2
- - uid: 16392
- components:
- - type: Transform
- pos: 17.5,-3.5
- parent: 2
- - uid: 16393
- components:
- - type: Transform
- pos: 17.5,-2.5
- parent: 2
- - uid: 16394
- components:
- - type: Transform
- pos: 17.5,-1.5
- parent: 2
- - uid: 16395
- components:
- - type: Transform
- pos: 17.5,-0.5
- parent: 2
- - uid: 16396
- components:
- - type: Transform
- pos: 17.5,0.5
- parent: 2
- - uid: 16397
- components:
- - type: Transform
- pos: 17.5,1.5
- parent: 2
- - uid: 16398
- components:
- - type: Transform
- pos: 17.5,2.5
- parent: 2
- - uid: 16399
- components:
- - type: Transform
- pos: 17.5,3.5
- parent: 2
- - uid: 16400
- components:
- - type: Transform
- pos: 17.5,4.5
- parent: 2
- - uid: 16401
- components:
- - type: Transform
- pos: 17.5,6.5
- parent: 2
- - uid: 16402
- components:
- - type: Transform
- pos: 17.5,7.5
- parent: 2
- - uid: 16403
- components:
- - type: Transform
- pos: 17.5,8.5
- parent: 2
- - uid: 16404
- components:
- - type: Transform
- pos: 17.5,9.5
- parent: 2
- - uid: 16405
- components:
- - type: Transform
- pos: 17.5,10.5
- parent: 2
- - uid: 16406
- components:
- - type: Transform
- pos: 17.5,11.5
- parent: 2
- - uid: 16407
- components:
- - type: Transform
- pos: 17.5,12.5
- parent: 2
- - uid: 16408
- components:
- - type: Transform
- pos: 17.5,13.5
- parent: 2
- - uid: 16409
- components:
- - type: Transform
- pos: 17.5,15.5
- parent: 2
- - uid: 16410
- components:
- - type: Transform
- pos: 17.5,16.5
- parent: 2
- - uid: 16411
- components:
- - type: Transform
- pos: 17.5,17.5
- parent: 2
- - uid: 16412
- components:
- - type: Transform
- pos: 17.5,18.5
- parent: 2
- - uid: 16413
- components:
- - type: Transform
- pos: 17.5,19.5
- parent: 2
- - uid: 16414
- components:
- - type: Transform
- pos: 17.5,20.5
- parent: 2
- - uid: 16415
- components:
- - type: Transform
- pos: 17.5,21.5
- parent: 2
- - uid: 16416
- components:
- - type: Transform
- pos: 17.5,22.5
- parent: 2
- - uid: 16417
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,23.5
- parent: 2
- - uid: 16418
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,23.5
- parent: 2
- - uid: 16419
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,23.5
- parent: 2
- - uid: 16420
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,23.5
- parent: 2
- - uid: 16421
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,23.5
- parent: 2
- - uid: 16422
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,23.5
- parent: 2
- - uid: 16423
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,23.5
- parent: 2
- - uid: 16424
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,23.5
- parent: 2
- - uid: 16425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,23.5
- parent: 2
- - uid: 16426
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,23.5
- parent: 2
- - uid: 16427
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,23.5
- parent: 2
- - uid: 16428
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,23.5
- parent: 2
- - uid: 16429
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,23.5
- parent: 2
- - uid: 16430
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,23.5
- parent: 2
- - uid: 16431
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,23.5
- parent: 2
- - uid: 16432
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.49999997,23.5
- parent: 2
- - uid: 16433
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,23.5
- parent: 2
- - uid: 16434
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,23.5
- parent: 2
- - uid: 16435
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,23.5
- parent: 2
- - uid: 16436
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,23.5
- parent: 2
- - uid: 16437
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,23.5
- parent: 2
- - uid: 16438
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,23.5
- parent: 2
- - uid: 16439
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,23.5
- parent: 2
- - uid: 16440
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,23.5
- parent: 2
- - uid: 16441
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,23.5
- parent: 2
- - uid: 16442
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,23.5
- parent: 2
- - uid: 16443
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,23.5
- parent: 2
- - uid: 16444
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,23.5
- parent: 2
- - uid: 16445
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,23.5
- parent: 2
- - uid: 16446
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,23.5
- parent: 2
- - uid: 16447
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,23.5
- parent: 2
- - uid: 16448
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,23.5
- parent: 2
- - uid: 16449
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,23.5
- parent: 2
- - uid: 16450
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,23.5
- parent: 2
- - uid: 16451
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,12.5
- parent: 2
- - uid: 16452
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,12.5
- parent: 2
- - uid: 16453
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,12.5
- parent: 2
- - uid: 16454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,12.5
- parent: 2
- - uid: 16455
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,12.5
- parent: 2
- - uid: 16456
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,12.5
- parent: 2
- - uid: 16457
- components:
- - type: Transform
- pos: -26.5,13.5
- parent: 2
- - uid: 16458
- components:
- - type: Transform
- pos: -26.5,14.5
- parent: 2
- - uid: 16459
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-46.5
- parent: 2
- - uid: 16460
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.49999997,-47.5
- parent: 2
- - uid: 16461
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-48.5
- parent: 2
- - uid: 16462
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-49.5
- parent: 2
- - uid: 16463
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-50.5
- parent: 2
- - uid: 16464
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-51.5
- parent: 2
- - uid: 16465
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-52.5
- parent: 2
- - uid: 16466
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-53.5
- parent: 2
- - uid: 16467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-54.5
- parent: 2
- - uid: 16468
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-55.5
- parent: 2
- - uid: 16469
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-56.5
- parent: 2
- - uid: 16470
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-57.5
- parent: 2
- - uid: 16471
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-58.5
- parent: 2
- - uid: 16472
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.49999997,-59.5
- parent: 2
- - uid: 16473
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-60.5
- parent: 2
- - uid: 16474
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-62.5
- parent: 2
- - uid: 16475
- components:
- - type: Transform
- pos: 0.49999997,-65.5
- parent: 2
- - uid: 16476
- components:
- - type: Transform
- pos: 0.49999997,-66.5
- parent: 2
- - uid: 16477
- components:
- - type: Transform
- pos: 0.49999997,-67.5
- parent: 2
- - uid: 16478
- components:
- - type: Transform
- pos: 0.50000006,-68.5
- parent: 2
- - uid: 16479
- components:
- - type: Transform
- pos: 0.49999997,-69.5
- parent: 2
- - uid: 16480
- components:
- - type: Transform
- pos: 0.50000006,-70.5
- parent: 2
- - uid: 16481
- components:
- - type: Transform
- pos: 0.49999997,-71.5
- parent: 2
- - uid: 16482
- components:
- - type: Transform
- pos: 0.50000006,-72.5
- parent: 2
- - uid: 16483
- components:
- - type: Transform
- pos: 0.49999997,-73.5
- parent: 2
- - uid: 16484
- components:
- - type: Transform
- pos: 0.50000006,-74.5
- parent: 2
- - uid: 16485
- components:
- - type: Transform
- pos: 0.49999997,-75.5
- parent: 2
- - uid: 16486
- components:
- - type: Transform
- pos: 0.49999997,-76.5
- parent: 2
- - uid: 16487
- components:
- - type: Transform
- pos: 0.49999997,-77.5
- parent: 2
- - uid: 16488
- components:
- - type: Transform
- pos: 0.49999997,-78.5
- parent: 2
- - uid: 16489
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-79.5
- parent: 2
- - uid: 16490
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-79.5
- parent: 2
- - uid: 16491
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-80.5
- parent: 2
- - uid: 16492
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-63.5
- parent: 2
- - uid: 16493
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.50000006,-61.5
- parent: 2
- - uid: 16494
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-79.5
- parent: 2
- - uid: 16495
- components:
- - type: Transform
- pos: -4.5,-78.5
- parent: 2
- - uid: 16496
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-77.5
- parent: 2
- - uid: 16497
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-77.5
- parent: 2
- - uid: 16498
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-77.5
- parent: 2
- - uid: 16499
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-77.5
- parent: 2
- - uid: 16500
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-77.5
- parent: 2
- - uid: 16501
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-77.5
- parent: 2
- - uid: 16502
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-77.5
- parent: 2
- - uid: 16503
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-77.5
- parent: 2
- - uid: 16504
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-77.5
- parent: 2
- - uid: 16505
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-77.5
- parent: 2
- - uid: 16506
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-77.5
- parent: 2
- - uid: 16507
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-78.5
- parent: 2
- - uid: 16508
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-27.5
- parent: 2
- - uid: 16509
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-28.5
- parent: 2
- - uid: 16510
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-29.5
- parent: 2
- - uid: 16511
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-30.5
- parent: 2
- - uid: 16512
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-31.5
- parent: 2
- - uid: 16513
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-32.5
- parent: 2
- - uid: 16514
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-33.5
- parent: 2
- - uid: 16515
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-34.5
- parent: 2
- - uid: 16516
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-34.5
- parent: 2
- - uid: 16517
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-34.5
- parent: 2
- - uid: 16518
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-34.5
- parent: 2
- - uid: 16519
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-34.5
- parent: 2
- - uid: 16520
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-34.5
- parent: 2
- - uid: 16521
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-34.5
- parent: 2
- - uid: 16522
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-34.5
- parent: 2
- - uid: 16523
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-34.5
- parent: 2
- - uid: 16524
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-34.5
- parent: 2
- - uid: 16525
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-34.5
- parent: 2
- - uid: 16526
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-34.5
- parent: 2
- - uid: 16527
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-34.5
- parent: 2
- - uid: 16528
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-34.5
- parent: 2
- - uid: 16529
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-34.5
- parent: 2
- - uid: 16530
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-34.5
- parent: 2
- - uid: 16531
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-34.5
- parent: 2
- - uid: 16532
- components:
- - type: Transform
- pos: 17.5,-33.5
- parent: 2
- - uid: 16533
- components:
- - type: Transform
- pos: 17.5,-32.5
- parent: 2
- - uid: 16534
- components:
- - type: Transform
- pos: 17.5,-31.5
- parent: 2
- - uid: 16535
- components:
- - type: Transform
- pos: 17.5,-30.5
- parent: 2
- - uid: 16536
- components:
- - type: Transform
- pos: 17.5,-29.5
- parent: 2
- - uid: 16537
- components:
- - type: Transform
- pos: 17.5,-28.5
- parent: 2
- - uid: 16538
- components:
- - type: Transform
- pos: 17.5,-27.5
- parent: 2
- - uid: 16539
- components:
- - type: Transform
- pos: 17.5,-26.5
- parent: 2
- - uid: 16540
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-20.5
- parent: 2
- - uid: 16541
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-21.5
- parent: 2
- - uid: 16542
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-22.5
- parent: 2
- - uid: 16543
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-23.5
- parent: 2
- - uid: 16544
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-24.5
- parent: 2
- - uid: 16545
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-25.5
- parent: 2
- - uid: 16546
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-25.5
- parent: 2
- - uid: 16547
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-25.5
- parent: 2
- - uid: 16548
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-25.5
- parent: 2
- - uid: 16549
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-25.5
- parent: 2
- - uid: 16550
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-25.5
- parent: 2
- - uid: 16551
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-25.5
- parent: 2
- - uid: 16552
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-25.5
- parent: 2
- - uid: 16553
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-25.5
- parent: 2
- - uid: 16554
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-25.5
- parent: 2
- - uid: 16555
- components:
- - type: Transform
- pos: -5.5,-22.5
- parent: 2
- - uid: 16556
- components:
- - type: Transform
- pos: -5.5,-23.5
- parent: 2
- - uid: 16557
- components:
- - type: Transform
- pos: -5.5,-24.5
- parent: 2
- - uid: 16558
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-25.5
- parent: 2
- - uid: 16559
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-25.5
- parent: 2
- - uid: 16560
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-25.5
- parent: 2
- - uid: 16561
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-25.5
- parent: 2
- - uid: 16562
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-25.5
- parent: 2
- - uid: 16563
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-25.5
- parent: 2
- - uid: 16564
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-26.5
- parent: 2
- - uid: 16565
- components:
- - type: Transform
- pos: -6.5,-26.5
- parent: 2
- - uid: 16566
- components:
- - type: Transform
- pos: 6.5,-31.5
- parent: 2
- - uid: 16567
- components:
- - type: Transform
- pos: 6.5,-32.5
- parent: 2
- - uid: 16568
- components:
- - type: Transform
- pos: 6.5,-33.5
- parent: 2
- - uid: 16569
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-34.5
- parent: 2
- - uid: 16570
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-34.5
- parent: 2
- - uid: 16571
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-34.5
- parent: 2
- - uid: 16572
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-34.5
- parent: 2
- - uid: 16573
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-34.5
- parent: 2
- - uid: 16574
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-34.5
- parent: 2
- - uid: 16575
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-34.5
- parent: 2
- - uid: 16576
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-34.5
- parent: 2
- - uid: 16577
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-34.5
- parent: 2
- - uid: 16578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-34.5
- parent: 2
- - uid: 16579
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-44.5
- parent: 2
- - uid: 16580
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-45.5
- parent: 2
- - uid: 16581
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-43.5
- parent: 2
- - uid: 16582
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-43.5
- parent: 2
- - uid: 16583
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-43.5
- parent: 2
- - uid: 16584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-43.5
- parent: 2
- - uid: 16585
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-43.5
- parent: 2
- - uid: 16586
- components:
- - type: Transform
- pos: 27.5,-42.5
- parent: 2
- - uid: 16587
- components:
- - type: Transform
- pos: 27.5,-41.5
- parent: 2
- - uid: 16588
- components:
- - type: Transform
- pos: 27.5,-40.5
- parent: 2
- - uid: 16589
- components:
- - type: Transform
- pos: 27.5,-38.5
- parent: 2
- - uid: 16590
- components:
- - type: Transform
- pos: 27.5,-37.5
- parent: 2
- - uid: 16591
- components:
- - type: Transform
- pos: 27.5,-36.5
- parent: 2
- - uid: 16592
- components:
- - type: Transform
- pos: 27.5,-35.5
- parent: 2
- - uid: 16593
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-51.5
- parent: 2
- - uid: 16594
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-50.5
- parent: 2
- - uid: 16595
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-49.5
- parent: 2
- - uid: 16596
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-48.5
- parent: 2
- - uid: 16597
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-47.5
- parent: 2
- - uid: 16598
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-46.5
- parent: 2
- - uid: 16599
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-45.5
- parent: 2
- - uid: 16600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-45.5
- parent: 2
- - uid: 16601
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-45.5
- parent: 2
- - uid: 16602
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-45.5
- parent: 2
- - uid: 16603
- components:
- - type: Transform
- pos: 9.5,-44.5
- parent: 2
- - uid: 16604
- components:
- - type: Transform
- pos: 9.5,-43.5
- parent: 2
- - uid: 16605
- components:
- - type: Transform
- pos: 9.5,-42.5
- parent: 2
- - uid: 16606
- components:
- - type: Transform
- pos: 9.5,-41.5
- parent: 2
- - uid: 16607
- components:
- - type: Transform
- pos: 9.5,-40.5
- parent: 2
- - uid: 16608
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-39.5
- parent: 2
- - uid: 16609
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-39.5
- parent: 2
- - uid: 16610
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-39.5
- parent: 2
- - uid: 16611
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-39.5
- parent: 2
- - uid: 16612
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-39.5
- parent: 2
- - uid: 16613
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-39.5
- parent: 2
- - uid: 16614
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-39.5
- parent: 2
- - uid: 16615
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-39.5
- parent: 2
- - uid: 16616
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-39.5
- parent: 2
- - uid: 16617
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-39.5
- parent: 2
- - uid: 16618
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-39.5
- parent: 2
- - uid: 16619
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-39.5
- parent: 2
- - uid: 16620
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-39.5
- parent: 2
- - uid: 16621
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-39.5
- parent: 2
- - uid: 16622
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-39.5
- parent: 2
- - uid: 16623
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-39.5
- parent: 2
- - uid: 16624
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-39.5
- parent: 2
- - uid: 16625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-57.5
- parent: 2
- - uid: 16626
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-57.5
- parent: 2
- - uid: 16627
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-56.5
- parent: 2
- - uid: 16628
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-55.5
- parent: 2
- - uid: 16629
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-54.5
- parent: 2
- - uid: 16630
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-53.5
- parent: 2
- - uid: 16631
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-51.5
- parent: 2
- - uid: 16632
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-50.5
- parent: 2
- - uid: 16633
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-48.5
- parent: 2
- - uid: 16634
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-47.5
- parent: 2
- - uid: 16635
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-46.5
- parent: 2
- - uid: 16636
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-45.5
- parent: 2
- - uid: 16637
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-44.5
- parent: 2
- - uid: 16638
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-43.5
- parent: 2
- - uid: 16639
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-42.5
- parent: 2
- - uid: 16640
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-41.5
- parent: 2
- - uid: 16641
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-40.5
- parent: 2
- - uid: 16642
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-39.5
- parent: 2
- - uid: 16643
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-38.5
- parent: 2
- - uid: 16644
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-37.5
- parent: 2
- - uid: 16645
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-36.5
- parent: 2
- - uid: 16646
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-35.5
- parent: 2
- - uid: 16647
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-33.5
- parent: 2
- - uid: 16648
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-32.5
- parent: 2
- - uid: 16649
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-31.5
- parent: 2
- - uid: 16650
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-30.5
- parent: 2
- - uid: 16651
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-29.5
- parent: 2
- - uid: 16652
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-28.5
- parent: 2
- - uid: 16653
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-27.5
- parent: 2
- - uid: 16654
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-26.5
- parent: 2
- - uid: 16655
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-21.5
- parent: 2
- - uid: 16656
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-20.5
- parent: 2
- - uid: 16657
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-52.5
- parent: 2
- - uid: 16658
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-45.5
- parent: 2
- - uid: 16659
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-45.5
- parent: 2
- - uid: 16660
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-45.5
- parent: 2
- - uid: 16661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-45.5
- parent: 2
- - uid: 16662
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-45.5
- parent: 2
- - uid: 16663
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-45.5
- parent: 2
- - uid: 16664
- components:
- - type: Transform
- pos: -23.5,-44.5
- parent: 2
- - uid: 16665
- components:
- - type: Transform
- pos: -23.5,-43.5
- parent: 2
- - uid: 16666
- components:
- - type: Transform
- pos: -23.5,-42.5
- parent: 2
- - uid: 16667
- components:
- - type: Transform
- pos: -23.5,-41.5
- parent: 2
- - uid: 16668
- components:
- - type: Transform
- pos: -23.5,-40.5
- parent: 2
- - uid: 16669
- components:
- - type: Transform
- pos: -23.5,-39.5
- parent: 2
- - uid: 16670
- components:
- - type: Transform
- pos: -23.5,-38.5
- parent: 2
- - uid: 16671
- components:
- - type: Transform
- pos: -23.5,-36.5
- parent: 2
- - uid: 16672
- components:
- - type: Transform
- pos: -23.5,-35.5
- parent: 2
- - uid: 16673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-34.5
- parent: 2
- - uid: 16674
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-34.5
- parent: 2
- - uid: 16675
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-34.5
- parent: 2
- - uid: 16676
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-34.5
- parent: 2
- - uid: 16677
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-34.5
- parent: 2
- - uid: 16678
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-34.5
- parent: 2
- - uid: 16679
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-34.5
- parent: 2
- - uid: 16680
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-34.5
- parent: 2
- - uid: 16681
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-34.5
- parent: 2
- - uid: 16682
- components:
- - type: Transform
- pos: -25.5,-46.5
- parent: 2
- - uid: 16683
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-34.5
- parent: 2
- - uid: 16684
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-34.5
- parent: 2
- - uid: 16685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-34.5
- parent: 2
- - uid: 16686
- components:
- - type: Transform
- pos: -8.5,-33.5
- parent: 2
- - uid: 16687
- components:
- - type: Transform
- pos: -8.5,-32.5
- parent: 2
- - uid: 16688
- components:
- - type: Transform
- pos: -8.5,-31.5
- parent: 2
- - uid: 16689
- components:
- - type: Transform
- pos: -8.5,-30.5
- parent: 2
- - uid: 16690
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-49.5
- parent: 2
- - uid: 16691
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-49.5
- parent: 2
- - uid: 16692
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-49.5
- parent: 2
- - uid: 16693
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-49.5
- parent: 2
- - uid: 16694
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-49.5
- parent: 2
- - uid: 16695
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-49.5
- parent: 2
- - uid: 16696
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-49.5
- parent: 2
- - uid: 16697
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-49.5
- parent: 2
- - uid: 16698
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-49.5
- parent: 2
- - uid: 16699
- components:
- - type: Transform
- pos: 16.5,-20.5
- parent: 2
- - uid: 16700
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-10.5
- parent: 2
- - uid: 16701
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-9.5
- parent: 2
- - uid: 16702
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-8.5
- parent: 2
- - uid: 16703
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-7.5
- parent: 2
- - uid: 16704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-6.5
- parent: 2
- - uid: 16705
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-5.5
- parent: 2
- - uid: 16706
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-4.5
- parent: 2
- - uid: 16707
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-3.5
- parent: 2
- - uid: 16708
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-2.5
- parent: 2
- - uid: 16709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-2.5
- parent: 2
- - uid: 16710
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-2.5
- parent: 2
- - uid: 16711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-2.5
- parent: 2
- - uid: 16712
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-2.5
- parent: 2
- - uid: 16713
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-2.5
- parent: 2
- - uid: 16714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-2.5
- parent: 2
- - uid: 16715
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-2.5
- parent: 2
- - uid: 16716
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-2.5
- parent: 2
- - uid: 16717
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-2.5
- parent: 2
- - uid: 16718
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-2.5
- parent: 2
- - uid: 16719
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-2.5
- parent: 2
- - uid: 16720
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-2.5
- parent: 2
- - uid: 16721
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-8.5
- parent: 2
- - uid: 16722
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-8.5
- parent: 2
- - uid: 16723
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-8.5
- parent: 2
- - uid: 16724
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-8.5
- parent: 2
- - uid: 16725
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-8.5
- parent: 2
- - uid: 16726
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-8.5
- parent: 2
- - uid: 16727
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-8.5
- parent: 2
- - uid: 16728
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-8.5
- parent: 2
- - uid: 16729
- components:
- - type: Transform
- pos: -9.5,-7.5
- parent: 2
- - uid: 16730
- components:
- - type: Transform
- pos: -9.5,-6.5
- parent: 2
- - uid: 16731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-5.5
- parent: 2
- - uid: 16732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,5.5
- parent: 2
- - uid: 16733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,5.5
- parent: 2
- - uid: 16734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,5.5
- parent: 2
- - uid: 16735
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,5.5
- parent: 2
- - uid: 16736
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,6.5
- parent: 2
- - uid: 16737
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,7.5
- parent: 2
- - uid: 16738
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,8.5
- parent: 2
- - uid: 16739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,5.5
- parent: 2
- - uid: 16740
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,5.5
- parent: 2
- - uid: 16741
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,5.5
- parent: 2
- - uid: 16742
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,5.5
- parent: 2
- - uid: 16743
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,5.5
- parent: 2
- - uid: 16744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,5.5
- parent: 2
- - uid: 16745
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,5.5
- parent: 2
- - uid: 16746
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,5.5
- parent: 2
- - uid: 16747
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,5.5
- parent: 2
- - uid: 16748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,4.5
- parent: 2
- - uid: 16749
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,4.5
- parent: 2
- - uid: 16750
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,4.5
- parent: 2
- - uid: 16751
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,4.5
- parent: 2
- - uid: 16752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,4.5
- parent: 2
- - uid: 16753
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,4.5
- parent: 2
- - uid: 16754
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,4.5
- parent: 2
- - uid: 16755
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,4.5
- parent: 2
- - uid: 16756
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,4.5
- parent: 2
- - uid: 16757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,4.5
- parent: 2
- - uid: 16758
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,4.5
- parent: 2
- - uid: 16759
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,4.5
- parent: 2
- - uid: 16760
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,4.5
- parent: 2
- - uid: 16761
- components:
- - type: Transform
- pos: 47.5,-1.5
- parent: 2
- - uid: 16762
- components:
- - type: Transform
- pos: 47.5,-0.5
- parent: 2
- - uid: 16763
- components:
- - type: Transform
- pos: 47.5,0.5
- parent: 2
- - uid: 16764
- components:
- - type: Transform
- pos: 47.5,1.5
- parent: 2
- - uid: 16765
- components:
- - type: Transform
- pos: 47.5,2.5
- parent: 2
- - uid: 16766
- components:
- - type: Transform
- pos: 47.5,3.5
- parent: 2
- - uid: 16767
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,5.5
- parent: 2
- - uid: 16768
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,6.5
- parent: 2
- - uid: 16769
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,7.5
- parent: 2
- - uid: 16770
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,9.5
- parent: 2
- - uid: 16771
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,10.5
- parent: 2
- - uid: 16772
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,11.5
- parent: 2
- - uid: 16773
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,13.5
- parent: 2
- - uid: 16774
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,14.5
- parent: 2
- - uid: 16775
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,17.5
- parent: 2
- - uid: 16776
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,18.5
- parent: 2
- - uid: 16777
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,19.5
- parent: 2
- - uid: 16778
- components:
- - type: Transform
- pos: 43.5,18.5
- parent: 2
- - uid: 16779
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,21.5
- parent: 2
- - uid: 16780
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,25.5
- parent: 2
- - uid: 16781
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,25.5
- parent: 2
- - uid: 16782
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,25.5
- parent: 2
- - uid: 16783
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,25.5
- parent: 2
- - uid: 16784
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,25.5
- parent: 2
- - uid: 16785
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,25.5
- parent: 2
- - uid: 16786
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,25.5
- parent: 2
- - uid: 16787
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,25.5
- parent: 2
- - uid: 16788
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,25.5
- parent: 2
- - uid: 16789
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,25.5
- parent: 2
- - uid: 16790
- components:
- - type: Transform
- pos: 50.5,23.5
- parent: 2
- - uid: 16791
- components:
- - type: Transform
- pos: 50.5,24.5
- parent: 2
- - uid: 16792
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,22.5
- parent: 2
- - uid: 16793
- components:
- - type: Transform
- pos: 43.5,19.5
- parent: 2
- - uid: 16794
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,20.5
- parent: 2
- - uid: 16795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,20.5
- parent: 2
- - uid: 16796
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,20.5
- parent: 2
- - uid: 16797
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,16.5
- parent: 2
- - uid: 16798
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,15.5
- parent: 2
- - uid: 16799
- components:
- - type: Transform
- pos: 52.5,5.5
- parent: 2
- - uid: 16800
- components:
- - type: Transform
- pos: 52.5,6.5
- parent: 2
- - uid: 16801
- components:
- - type: Transform
- pos: 52.5,7.5
- parent: 2
- - uid: 16802
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,8.5
- parent: 2
- - uid: 16803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,8.5
- parent: 2
- - uid: 16804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,8.5
- parent: 2
- - uid: 16805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,8.5
- parent: 2
- - uid: 16806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,4.5
- parent: 2
- - uid: 16807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,12.5
- parent: 2
- - uid: 16808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,12.5
- parent: 2
- - uid: 16809
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,30.5
- parent: 2
- - uid: 16810
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,30.5
- parent: 2
- - uid: 16811
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,30.5
- parent: 2
- - uid: 16812
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,30.5
- parent: 2
- - uid: 16813
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,30.5
- parent: 2
- - uid: 16814
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,30.5
- parent: 2
- - uid: 16815
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,30.5
- parent: 2
- - uid: 16816
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,29.5
- parent: 2
- - uid: 16817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,28.5
- parent: 2
- - uid: 16818
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,27.5
- parent: 2
- - uid: 16819
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,30.5
- parent: 2
- - uid: 16820
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,22.5
- parent: 2
- - uid: 16821
- components:
- - type: Transform
- pos: -52.5,-16.5
- parent: 2
- - uid: 16822
- components:
- - type: Transform
- pos: -52.5,-15.5
- parent: 2
- - uid: 16823
- components:
- - type: Transform
- pos: -52.5,-14.5
- parent: 2
- - uid: 16824
- components:
- - type: Transform
- pos: -52.5,-13.5
- parent: 2
- - uid: 16825
- components:
- - type: Transform
- pos: -52.5,-12.5
- parent: 2
- - uid: 16826
- components:
- - type: Transform
- pos: -52.5,-11.5
- parent: 2
- - uid: 16827
- components:
- - type: Transform
- pos: -52.5,-10.5
- parent: 2
- - uid: 16828
- components:
- - type: Transform
- pos: -52.5,-9.5
- parent: 2
- - uid: 16829
- components:
- - type: Transform
- pos: -52.5,-8.5
- parent: 2
- - uid: 16830
- components:
- - type: Transform
- pos: -52.5,-7.5
- parent: 2
- - uid: 16831
- components:
- - type: Transform
- pos: -52.5,-6.5
- parent: 2
- - uid: 16832
- components:
- - type: Transform
- pos: -52.5,-5.5
- parent: 2
- - uid: 16833
- components:
- - type: Transform
- pos: -52.5,-4.5
- parent: 2
- - uid: 16834
- components:
- - type: Transform
- pos: -52.5,-3.5
- parent: 2
- - uid: 16835
- components:
- - type: Transform
- pos: -52.5,-2.5
- parent: 2
- - uid: 16836
- components:
- - type: Transform
- pos: -52.5,-1.5
- parent: 2
- - uid: 16837
- components:
- - type: Transform
- pos: -52.5,-0.5
- parent: 2
- - uid: 16838
- components:
- - type: Transform
- pos: -52.5,0.5
- parent: 2
- - uid: 16839
- components:
- - type: Transform
- pos: -52.5,1.5
- parent: 2
- - uid: 16840
- components:
- - type: Transform
- pos: -52.5,2.5
- parent: 2
- - uid: 16841
- components:
- - type: Transform
- pos: -52.5,3.5
- parent: 2
- - uid: 16842
- components:
- - type: Transform
- pos: -52.5,4.5
- parent: 2
- - uid: 16843
- components:
- - type: Transform
- pos: -52.5,5.5
- parent: 2
- - uid: 16844
- components:
- - type: Transform
- pos: -52.5,6.5
- parent: 2
- - uid: 16845
- components:
- - type: Transform
- pos: -52.5,7.5
- parent: 2
- - uid: 16846
- components:
- - type: Transform
- pos: -52.5,8.5
- parent: 2
- - uid: 16847
- components:
- - type: Transform
- pos: -52.5,9.5
- parent: 2
- - uid: 16848
- components:
- - type: Transform
- pos: -52.5,11.5
- parent: 2
- - uid: 16849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,12.5
- parent: 2
- - uid: 16850
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,12.5
- parent: 2
- - uid: 16851
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,12.5
- parent: 2
- - uid: 16852
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,12.5
- parent: 2
- - uid: 16853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,12.5
- parent: 2
- - uid: 16854
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,12.5
- parent: 2
- - uid: 16855
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,12.5
- parent: 2
- - uid: 16856
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,12.5
- parent: 2
- - uid: 16857
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,12.5
- parent: 2
- - uid: 16858
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,11.5
- parent: 2
- - uid: 16859
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,9.5
- parent: 2
- - uid: 16860
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,8.5
- parent: 2
- - uid: 16861
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,7.5
- parent: 2
- - uid: 16862
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,6.5
- parent: 2
- - uid: 16863
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,5.5
- parent: 2
- - uid: 16864
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,5.5
- parent: 2
- - uid: 16865
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,5.5
- parent: 2
- - uid: 16866
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,5.5
- parent: 2
- - uid: 16867
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,5.5
- parent: 2
- - uid: 16868
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,5.5
- parent: 2
- - uid: 16869
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,5.5
- parent: 2
- - uid: 16870
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,5.5
- parent: 2
- - uid: 16871
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,5.5
- parent: 2
- - uid: 16872
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,5.5
- parent: 2
- - uid: 16873
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,5.5
- parent: 2
- - uid: 16874
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,5.5
- parent: 2
- - uid: 16875
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,5.5
- parent: 2
- - uid: 16876
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,5.5
- parent: 2
- - uid: 16877
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,5.5
- parent: 2
- - uid: 16878
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,5.5
- parent: 2
- - uid: 16879
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,5.5
- parent: 2
- - uid: 16880
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,5.5
- parent: 2
- - uid: 16881
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,5.5
- parent: 2
- - uid: 16882
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,5.5
- parent: 2
- - uid: 16883
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,5.5
- parent: 2
- - uid: 16884
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,5.5
- parent: 2
- - uid: 16885
- components:
- - type: Transform
- pos: -49.5,14.5
- parent: 2
- - uid: 16886
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,50.5
- parent: 2
- - uid: 16887
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,50.5
- parent: 2
- - uid: 16888
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,50.5
- parent: 2
- - uid: 16889
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,50.5
- parent: 2
- - uid: 16890
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,50.5
- parent: 2
- - uid: 16891
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,50.5
- parent: 2
- - uid: 16892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,50.5
- parent: 2
- - uid: 16893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,50.5
- parent: 2
- - uid: 16894
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,50.5
- parent: 2
- - uid: 16895
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,50.5
- parent: 2
- - uid: 16896
- components:
- - type: Transform
- pos: -7.5,49.5
- parent: 2
- - uid: 16897
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,10.5
- parent: 2
- - uid: 16898
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-10.5
- parent: 2
- - uid: 16899
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-11.5
- parent: 2
- - uid: 16900
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-12.5
- parent: 2
- - uid: 16901
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-13.5
- parent: 2
- - uid: 16902
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-14.5
- parent: 2
- - uid: 16903
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-15.5
- parent: 2
- - uid: 16904
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-16.5
- parent: 2
- - uid: 16905
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-17.5
- parent: 2
- - uid: 16906
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-21.5
- parent: 2
- - uid: 16907
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-22.5
- parent: 2
- - uid: 16908
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-23.5
- parent: 2
- - uid: 16909
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-24.5
- parent: 2
- - uid: 16910
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-25.5
- parent: 2
- - uid: 16911
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-26.5
- parent: 2
- - uid: 16912
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-27.5
- parent: 2
- - uid: 16913
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-28.5
- parent: 2
- - uid: 16914
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-20.5
- parent: 2
- - uid: 16915
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-20.5
- parent: 2
- - uid: 16916
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-20.5
- parent: 2
- - uid: 16917
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-20.5
- parent: 2
- - uid: 16918
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-20.5
- parent: 2
- - uid: 16919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-20.5
- parent: 2
- - uid: 16920
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-20.5
- parent: 2
- - uid: 16921
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-20.5
- parent: 2
- - uid: 16922
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-20.5
- parent: 2
- - uid: 16923
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-20.5
- parent: 2
- - uid: 16924
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-20.5
- parent: 2
- - uid: 16925
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-20.5
- parent: 2
- - uid: 16926
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-20.5
- parent: 2
- - uid: 16927
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,-20.5
- parent: 2
- - uid: 16928
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-20.5
- parent: 2
- - uid: 16929
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-20.5
- parent: 2
- - uid: 16930
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-18.5
- parent: 2
- - uid: 16931
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-18.5
- parent: 2
- - uid: 16932
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-18.5
- parent: 2
- - uid: 16933
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-18.5
- parent: 2
- - uid: 16934
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-18.5
- parent: 2
- - uid: 16935
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-18.5
- parent: 2
- - uid: 16936
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-18.5
- parent: 2
- - uid: 16937
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-18.5
- parent: 2
- - uid: 16938
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-18.5
- parent: 2
- - uid: 16939
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-18.5
- parent: 2
- - uid: 16940
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-18.5
- parent: 2
- - uid: 16941
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-18.5
- parent: 2
- - uid: 16942
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-18.5
- parent: 2
- - uid: 16943
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,-18.5
- parent: 2
- - uid: 16944
- components:
- - type: Transform
- pos: 41.5,-17.5
- parent: 2
- - uid: 16945
- components:
- - type: Transform
- pos: 41.5,-16.5
- parent: 2
- - uid: 16946
- components:
- - type: Transform
- pos: 39.5,-17.5
- parent: 2
- - uid: 16947
- components:
- - type: Transform
- pos: 39.5,-16.5
- parent: 2
- - uid: 16948
- components:
- - type: Transform
- pos: 39.5,-19.5
- parent: 2
- - uid: 16949
- components:
- - type: Transform
- pos: 39.5,-18.5
- parent: 2
- - uid: 16950
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-14.5
- parent: 2
- - uid: 16951
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-13.5
- parent: 2
- - uid: 16952
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-12.5
- parent: 2
- - uid: 16953
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-11.5
- parent: 2
- - uid: 16954
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-11.5
- parent: 2
- - uid: 16955
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,-11.5
- parent: 2
- - uid: 16956
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-11.5
- parent: 2
- - uid: 16957
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-11.5
- parent: 2
- - uid: 16958
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-11.5
- parent: 2
- - uid: 16959
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-11.5
- parent: 2
- - uid: 16960
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-11.5
- parent: 2
- - uid: 16961
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-10.5
- parent: 2
- - uid: 16962
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-10.5
- parent: 2
- - uid: 16963
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-10.5
- parent: 2
- - uid: 16964
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-10.5
- parent: 2
- - uid: 16965
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-10.5
- parent: 2
- - uid: 16966
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-10.5
- parent: 2
- - uid: 16967
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-10.5
- parent: 2
- - uid: 16968
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-10.5
- parent: 2
- - uid: 16969
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-10.5
- parent: 2
- - uid: 16970
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-10.5
- parent: 2
- - uid: 16971
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-10.5
- parent: 2
- - uid: 16972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-10.5
- parent: 2
- - uid: 16973
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-10.5
- parent: 2
- - uid: 16974
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-9.5
- parent: 2
- - uid: 16975
- components:
- - type: Transform
- pos: 40.5,-10.5
- parent: 2
- - uid: 16976
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,27.5
- parent: 2
- - uid: 16977
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,29.5
- parent: 2
- - uid: 16978
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,28.5
- parent: 2
- - uid: 16979
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,26.5
- parent: 2
- - uid: 16980
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,25.5
- parent: 2
- - uid: 16981
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,25.5
- parent: 2
- - uid: 16982
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,25.5
- parent: 2
-- proto: DisposalTrunk
- entities:
- - uid: 16983
- components:
- - type: Transform
- pos: 64.5,30.5
- parent: 2
- - uid: 16984
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-21.5
- parent: 2
- - uid: 16985
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-52.5
- parent: 2
- - uid: 16986
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,36.5
- parent: 2
- - uid: 16987
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-49.5
- parent: 2
- - uid: 16988
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-2.5
- parent: 2
- - uid: 16989
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-21.5
- parent: 2
- - uid: 16990
- components:
- - type: Transform
- pos: 50.5,13.5
- parent: 2
- - uid: 16991
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,15.5
- parent: 2
- - uid: 16992
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,3.5
- parent: 2
- - uid: 16993
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,13.5
- parent: 2
- - uid: 16994
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,17.5
- parent: 2
- - uid: 16995
- components:
- - type: Transform
- pos: 21.5,10.5
- parent: 2
- - uid: 16996
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,34.5
- parent: 2
- - uid: 16997
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,13.5
- parent: 2
- - uid: 16998
- components:
- - type: Transform
- pos: -30.5,45.5
- parent: 2
- - uid: 16999
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-57.5
- parent: 2
- - uid: 17000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,29.5
- parent: 2
- - uid: 17001
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-53.5
- parent: 2
- - uid: 17002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,-51.5
- parent: 2
- - uid: 17003
- components:
- - type: Transform
- pos: -34.5,-29.5
- parent: 2
- - uid: 17004
- components:
- - type: Transform
- pos: -38.5,-29.5
- parent: 2
- - uid: 17005
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-27.5
- parent: 2
- - uid: 17006
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,33.5
- parent: 2
- - uid: 17007
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,-28.5
- parent: 2
- - uid: 17008
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-27.5
- parent: 2
- - uid: 17009
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-41.5
- parent: 2
- - uid: 17010
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-32.5
- parent: 2
- - uid: 17011
- components:
- - type: Transform
- pos: -32.5,-22.5
- parent: 2
- - uid: 17012
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-51.5
- parent: 2
- - uid: 17013
- components:
- - type: Transform
- pos: 6.5,-30.5
- parent: 2
- - uid: 17014
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-74.5
- parent: 2
- - uid: 17015
- components:
- - type: Transform
- pos: -26.5,15.5
- parent: 2
- - uid: 17016
- components:
- - type: Transform
- pos: -36.5,-22.5
- parent: 2
- - uid: 17017
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-32.5
- parent: 2
- - uid: 17018
- components:
- - type: Transform
- pos: -64.5,11.5
- parent: 2
- - uid: 17019
- components:
- - type: Transform
- pos: -42.5,-29.5
- parent: 2
- - uid: 17020
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,20.5
- parent: 2
- - uid: 17021
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,26.5
- parent: 2
- - uid: 17022
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,13.5
- parent: 2
- - uid: 17023
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,52.5
- parent: 2
- - uid: 17024
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,22.5
- parent: 2
- - uid: 17025
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,38.5
- parent: 2
- - uid: 17026
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-27.5
- parent: 2
- - uid: 17027
- components:
- - type: Transform
- pos: 2.5,28.5
- parent: 2
- - uid: 17028
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-69.5
- parent: 2
- - uid: 17029
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,17.5
- parent: 2
- - uid: 17030
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,55.5
- parent: 2
- - uid: 17031
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,32.5
- parent: 2
- - uid: 17032
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-25.5
- parent: 2
- - uid: 17033
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-25.5
- parent: 2
- - uid: 17034
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-25.5
- parent: 2
- - uid: 17035
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-32.5
- parent: 2
- - uid: 17036
- components:
- - type: Transform
- pos: 33.5,12.5
- parent: 2
- - uid: 17037
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,57.5
- parent: 2
- - uid: 17038
- components:
- - type: Transform
- pos: -57.5,3.5
- parent: 2
- - uid: 17039
- components:
- - type: Transform
- pos: -40.5,-22.5
- parent: 2
- - uid: 17040
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,38.5
- parent: 2
- - uid: 17041
- components:
- - type: Transform
- pos: 32.5,-21.5
- parent: 2
- - uid: 17042
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-28.5
- parent: 2
- - uid: 17043
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,53.5
- parent: 2
- - uid: 17044
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-17.5
- parent: 2
- - uid: 17045
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-9.5
- parent: 2
- - uid: 17046
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,28.5
- parent: 2
- - uid: 17047
- components:
- - type: Transform
- pos: 25.5,38.5
- parent: 2
- - uid: 17048
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-29.5
- parent: 2
- - uid: 17049
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,54.5
- parent: 2
- - uid: 17050
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,82.5
- parent: 2
- - uid: 17051
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,61.5
- parent: 2
- - uid: 17052
- components:
- - type: Transform
- pos: -29.5,55.5
- parent: 2
- - uid: 17053
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,48.5
- parent: 2
- - uid: 17054
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-81.5
- parent: 2
- - uid: 17055
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-63.5
- parent: 2
- - uid: 17056
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-61.5
- parent: 2
- - uid: 17057
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-79.5
- parent: 2
- - uid: 17058
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-46.5
- parent: 2
- - uid: 17059
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-37.5
- parent: 2
- - uid: 17060
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-47.5
- parent: 2
- - uid: 17061
- components:
- - type: Transform
- pos: -31.5,-44.5
- parent: 2
- - uid: 17062
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-29.5
- parent: 2
- - uid: 17063
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-12.5
- parent: 2
- - uid: 17064
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-5.5
- parent: 2
- - uid: 17065
- components:
- - type: Transform
- pos: 43.5,5.5
- parent: 2
- - uid: 17066
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,21.5
- parent: 2
- - uid: 17067
- components:
- - type: Transform
- pos: -49.5,15.5
- parent: 2
- - uid: 17068
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-9.5
- parent: 2
-- proto: DisposalUnit
- entities:
- - uid: 17069
- components:
- - type: Transform
- pos: -67.5,54.5
- parent: 2
- - uid: 17070
- components:
- - type: Transform
- pos: 8.5,82.5
- parent: 2
- - uid: 17071
- components:
- - type: Transform
- pos: -7.5,48.5
- parent: 2
- - uid: 17072
- components:
- - type: Transform
- pos: 24.5,26.5
- parent: 2
- - uid: 17073
- components:
- - type: Transform
- pos: -25.5,-47.5
- parent: 2
- - uid: 17074
- components:
- - type: Transform
- pos: -5.5,36.5
- parent: 2
- - uid: 17075
- components:
- - type: Transform
- pos: -29.5,55.5
- parent: 2
- - uid: 17076
- components:
- - type: Transform
- pos: 45.5,15.5
- parent: 2
- - uid: 17077
- components:
- - type: Transform
- pos: 46.5,-2.5
- parent: 2
- - uid: 17078
- components:
- - type: Transform
- pos: -12.5,-57.5
- parent: 2
- - uid: 17079
- components:
- - type: Transform
- pos: 50.5,13.5
- parent: 2
- - uid: 17080
- components:
- - type: Transform
- pos: -11.5,-5.5
- parent: 2
- - uid: 17081
- components:
- - type: Transform
- pos: 67.5,-51.5
- parent: 2
- - uid: 17082
- components:
- - type: Transform
- pos: -0.5,52.5
- parent: 2
- - uid: 17083
- components:
- - type: Transform
- pos: -20.5,-41.5
- parent: 2
- - uid: 17084
- components:
- - type: Transform
- pos: 4.5,-27.5
- parent: 2
- - uid: 17085
- components:
- - type: Transform
- pos: -22.5,-37.5
- parent: 2
- - uid: 17086
- components:
- - type: Transform
- pos: -40.5,-25.5
- parent: 2
- - uid: 17087
- components:
- - type: Transform
- pos: 32.5,-21.5
- parent: 2
- - uid: 17088
- components:
- - type: Transform
- pos: -3.5,-49.5
- parent: 2
- - uid: 17089
- components:
- - type: Transform
- pos: -34.5,-12.5
- parent: 2
- - uid: 17090
- components:
- - type: Transform
- pos: 20.5,-46.5
- parent: 2
- - uid: 17091
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- pos: -63.5,45.5
- parent: 2
- - type: GasMixer
- targetPressure: 4500
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 17757
- components:
- - type: Transform
- pos: -64.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 17758
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-53.5
- parent: 2
- - uid: 17759
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17760
- components:
- - type: Transform
- pos: -64.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 17761
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,18.5
- parent: 2
- - type: GasMixer
- inletTwoConcentration: 0.78
- inletOneConcentration: 0.22
-- proto: GasMixerFlipped
- entities:
- - uid: 17762
- components:
- - type: Transform
- pos: -22.5,-52.5
- parent: 2
-- proto: GasOutletInjector
- entities:
- - uid: 17763
- components:
- - type: Transform
- pos: 75.5,27.5
- parent: 2
- - uid: 17764
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,30.5
- parent: 2
- - uid: 17765
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,44.5
- parent: 2
- - uid: 17766
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,34.5
- parent: 2
- - uid: 17767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,48.5
- parent: 2
- - uid: 17768
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,26.5
- parent: 2
- - uid: 17769
- components:
- - type: Transform
- pos: -55.5,53.5
- parent: 2
-- proto: GasPassiveVent
- entities:
- - uid: 17770
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,18.5
- parent: 2
- - uid: 17771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 17772
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17773
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 17774
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 17775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,22.5
- parent: 2
- - uid: 17776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17777
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17778
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17779
- components:
- - type: Transform
- pos: -70.5,24.5
- parent: 2
- - uid: 17780
- components:
- - type: Transform
- pos: -68.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17781
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 17782
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 17783
- components:
- - type: Transform
- pos: -76.5,22.5
- parent: 2
- - uid: 17784
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,32.5
- parent: 2
- - uid: 17785
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,36.5
- parent: 2
- - uid: 17786
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 17787
- components:
- - type: Transform
- pos: -54.5,53.5
- parent: 2
- - uid: 17788
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-40.5
- parent: 2
- - uid: 17789
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,15.5
- parent: 2
-- proto: GasPipeBend
- entities:
- - uid: 12251
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17791
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17792
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17793
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17794
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17795
- components:
- - type: Transform
- pos: 7.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17796
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17797
- components:
- - type: Transform
- pos: -12.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17798
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17799
- components:
- - type: Transform
- pos: -14.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17800
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17801
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17803
- components:
- - type: Transform
- pos: 8.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17804
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17805
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17807
- components:
- - type: Transform
- pos: -47.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17808
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 17809
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17810
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17811
- components:
- - type: Transform
- pos: -30.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17812
- components:
- - type: Transform
- pos: -37.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17813
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17814
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17815
- components:
- - type: Transform
- pos: 73.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17816
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17817
- components:
- - type: Transform
- pos: -49.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17818
- components:
- - type: Transform
- pos: 48.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0313FF00'
- - uid: 17819
- components:
- - type: Transform
- pos: 33.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17820
- components:
- - type: Transform
- pos: 51.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17821
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17822
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17823
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17825
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17826
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17827
- components:
- - type: Transform
- pos: 74.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17828
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17829
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17830
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17831
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17833
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17834
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17835
- components:
- - type: Transform
- pos: 44.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17836
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17837
-=======
- pos: 6.5,-30.5
- parent: 2
- - uid: 17092
- components:
- - type: Transform
- pos: -20.5,22.5
- parent: 2
- - uid: 17093
- components:
- - type: Transform
- pos: -12.5,-53.5
- parent: 2
- - uid: 17094
- components:
- - type: Transform
- pos: 1.5,-61.5
- parent: 2
- - uid: 17095
- components:
- - type: Transform
- pos: -9.5,26.5
- parent: 2
- - uid: 17096
- components:
- - type: Transform
- pos: -64.5,13.5
- parent: 2
- - uid: 17097
- components:
- - type: Transform
- pos: -55.5,38.5
- parent: 2
- - uid: 17098
- components:
- - type: Transform
- pos: 72.5,-51.5
- parent: 2
- - uid: 17099
- components:
- - type: Transform
- pos: 43.5,28.5
- parent: 2
- - uid: 17100
- components:
- - type: Transform
- pos: 42.5,-9.5
- parent: 2
- - uid: 17101
- components:
- - type: Transform
- pos: -17.5,-79.5
- parent: 2
- - uid: 17102
- components:
- - type: Transform
- pos: -58.5,17.5
- parent: 2
- - uid: 17103
- components:
- - type: Transform
- pos: -24.5,29.5
- parent: 2
- - uid: 17104
- components:
- - type: Transform
- pos: 38.5,-27.5
- parent: 2
- - uid: 17105
- components:
- - type: Transform
- pos: -30.5,45.5
- parent: 2
- - uid: 17106
- components:
- - type: Transform
- pos: 2.5,-52.5
- parent: 2
- - uid: 17107
- components:
- - type: Transform
- pos: -8.5,13.5
- parent: 2
- - uid: 17108
- components:
- - type: Transform
- pos: 7.5,13.5
- parent: 2
- - uid: 17109
- components:
- - type: Transform
- pos: 37.5,0.5
- parent: 2
- - uid: 17110
- components:
- - type: Transform
- pos: 55.5,-29.5
- parent: 2
- - uid: 17111
- components:
- - type: Transform
- pos: -6.5,-27.5
- parent: 2
- - uid: 17112
- components:
- - type: Transform
- pos: -9.5,-29.5
- parent: 2
- - uid: 17113
- components:
- - type: Transform
- pos: 14.5,34.5
- parent: 2
- - uid: 17114
- components:
- - type: Transform
- pos: 43.5,5.5
- parent: 2
- - uid: 17115
- components:
- - type: Transform
- pos: 3.5,33.5
- parent: 2
- - uid: 17116
- components:
- - type: Transform
- pos: -57.5,3.5
- parent: 2
- - uid: 17117
- components:
- - type: Transform
- pos: -45.5,20.5
- parent: 2
- - uid: 17118
- components:
- - type: Transform
- pos: 28.5,-69.5
- parent: 2
- - uid: 17119
- components:
- - type: Transform
- pos: -64.5,11.5
- parent: 2
- - uid: 17120
- components:
- - type: Transform
- pos: 2.5,28.5
- parent: 2
- - uid: 17121
- components:
- - type: Transform
- pos: 33.5,12.5
- parent: 2
- - uid: 17122
- components:
- - type: Transform
- pos: 21.5,10.5
- parent: 2
- - uid: 17123
- components:
- - type: Transform
- pos: -17.5,-21.5
- parent: 2
- - uid: 17124
- components:
- - type: Transform
- pos: -31.5,-44.5
- parent: 2
- - uid: 17125
- components:
- - type: Transform
- pos: -29.5,32.5
- parent: 2
- - uid: 17126
- components:
- - type: Transform
- pos: -42.5,-29.5
- parent: 2
- - uid: 17127
- components:
- - type: Transform
- pos: -38.5,-29.5
- parent: 2
- - uid: 17128
- components:
- - type: Transform
- pos: -34.5,-29.5
- parent: 2
- - uid: 17129
- components:
- - type: Transform
- pos: -32.5,-25.5
- parent: 2
- - uid: 17130
- components:
- - type: Transform
- pos: -47.5,-28.5
- parent: 2
- - uid: 17131
- components:
- - type: Transform
- pos: 16.5,-21.5
- parent: 2
- - uid: 17132
- components:
- - type: Transform
- pos: 25.5,38.5
- parent: 2
- - uid: 17133
- components:
- - type: Transform
- pos: 43.5,17.5
- parent: 2
- - uid: 17134
- components:
- - type: Transform
- pos: 50.5,3.5
- parent: 2
- - uid: 17135
- components:
- - type: Transform
- pos: -16.5,55.5
- parent: 2
- - uid: 17136
- components:
- - type: Transform
- pos: -26.5,15.5
- parent: 2
- - uid: 17137
- components:
- - type: Transform
- pos: -2.5,-81.5
- parent: 2
- - uid: 17138
- components:
- - type: Transform
- pos: -2.5,-63.5
- parent: 2
- - uid: 17139
- components:
- - type: Transform
- pos: -34.5,53.5
- parent: 2
- - uid: 17140
- components:
- - type: Transform
- pos: 49.5,21.5
- parent: 2
- - uid: 17141
- components:
- - type: Transform
- pos: -52.5,-17.5
- parent: 2
- - uid: 17142
- components:
- - type: Transform
- pos: -27.5,61.5
- parent: 2
- - uid: 17143
- components:
- - type: Transform
- pos: -49.5,15.5
- parent: 2
- - uid: 17144
- components:
- - type: Transform
- pos: 55.5,-9.5
- parent: 2
- - uid: 17145
- components:
- - type: Transform
- pos: 64.5,30.5
- parent: 2
-- proto: DisposalYJunction
- entities:
- - uid: 17146
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,30.5
- parent: 2
- - uid: 17147
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,57.5
- parent: 2
- - uid: 17148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-34.5
- parent: 2
- - uid: 17149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-34.5
- parent: 2
- - uid: 17150
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,4.5
- parent: 2
- - uid: 17151
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-15.5
- parent: 2
- - uid: 17152
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-11.5
- parent: 2
-- proto: DogBed
- entities:
- - uid: 17153
- components:
- - type: Transform
- pos: -39.5,-59.5
- parent: 2
- - uid: 17154
- components:
- - type: Transform
- pos: -20.5,-39.5
- parent: 2
- - uid: 17155
- components:
- - type: Transform
- pos: 1.5,50.5
- parent: 2
- - uid: 17156
- components:
- - type: Transform
- pos: 52.5,9.5
- parent: 2
- - uid: 17157
- components:
- - type: Transform
- pos: 11.5,5.5
- parent: 2
- - uid: 17158
- components:
- - type: Transform
- pos: 20.5,-45.5
- parent: 2
- - uid: 17159
- components:
- - type: Transform
- pos: 7.5,-29.5
- parent: 2
- - uid: 17160
- components:
- - type: Transform
- pos: 27.5,41.5
- parent: 2
- - uid: 17161
- components:
- - type: Transform
- pos: -21.5,-5.5
- parent: 2
- - uid: 17162
- components:
- - type: Transform
- pos: 39.5,23.5
- parent: 2
- - uid: 17163
->>>>>>> master
- components:
- - type: MetaData
- desc: Удобная лежанка для крабов. Да, такие существуют. А что вы хотели?
- name: крабья лежанка
- - type: Transform
-<<<<<<< HEAD
- pos: 26.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17838
- components:
- - type: Transform
- pos: -47.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17839
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17840
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17841
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17842
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17843
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17844
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17845
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17846
- components:
- - type: Transform
- pos: 21.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17847
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17848
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17849
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17850
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17851
- components:
- - type: Transform
- pos: -46.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17852
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17854
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17855
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17856
- components:
- - type: Transform
- pos: 40.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17857
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17858
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17859
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17860
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17861
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17863
- components:
- - type: Transform
- pos: 61.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17864
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17865
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17866
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17867
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17868
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17869
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 17870
- components:
- - type: Transform
- pos: -69.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17871
- components:
- - type: Transform
- pos: -11.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17872
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17873
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17874
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17875
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17876
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17877
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 17878
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17879
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17880
- components:
- - type: Transform
- pos: 24.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17881
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17882
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17883
- components:
- - type: Transform
- pos: 61.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17884
- components:
- - type: Transform
- pos: 41.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17885
- components:
- - type: Transform
- pos: -29.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17886
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17887
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17888
- components:
- - type: Transform
- pos: -7.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17889
- components:
- - type: Transform
- pos: 35.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 17890
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17891
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17893
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17894
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17895
- components:
- - type: Transform
- pos: 49.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17896
- components:
- - type: Transform
- pos: 72.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17897
- components:
- - type: Transform
- pos: -46.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17898
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 17899
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17900
- components:
- - type: Transform
- pos: 20.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17901
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17902
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17903
- components:
- - type: Transform
- pos: -48.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17904
- components:
- - type: Transform
- pos: 20.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17905
- components:
- - type: Transform
- pos: -42.5,20.5
- parent: 2
- - uid: 17906
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17907
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17908
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17909
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17910
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0313FF00'
- - uid: 17911
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17913
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17914
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 17915
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17916
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17917
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17918
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17920
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17921
- components:
- - type: Transform
- pos: 43.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17922
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17923
- components:
- - type: Transform
- pos: 36.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17924
- components:
- - type: Transform
- pos: -44.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17925
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17926
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 17927
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 87.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17928
- components:
- - type: Transform
- pos: 27.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17929
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17930
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17932
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17934
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17935
- components:
- - type: Transform
- pos: -3.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17936
-=======
- pos: -52.5,33.5
- parent: 2
- - uid: 17164
- components:
- - type: Transform
- pos: -13.5,0.5
- parent: 2
- - uid: 17165
- components:
- - type: Transform
- pos: -30.5,-64.5
- parent: 2
- - uid: 17166
- components:
- - type: Transform
- pos: -33.5,46.5
- parent: 2
- - uid: 38908
- components:
- - type: Transform
- pos: -16.5,30.5
- parent: 38344
-- proto: DonkpocketBoxSpawner
- entities:
- - uid: 17167
- components:
- - type: Transform
- pos: -28.5,32.5
- parent: 2
- - uid: 17168
- components:
- - type: Transform
- pos: 27.5,32.5
- parent: 2
- - uid: 17169
- components:
- - type: Transform
- pos: 20.5,0.5
- parent: 2
- - uid: 17170
- components:
- - type: Transform
- pos: -3.5,-63.5
- parent: 2
- - uid: 17171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,37.5
- parent: 2
-- proto: DoorElectronics
- entities:
- - uid: 17172
- components:
- - type: Transform
- pos: -38.5,12.5
- parent: 2
- - uid: 17173
- components:
- - type: Transform
- pos: -32.5,9.5
- parent: 2
-- proto: DoubleEmergencyOxygenTankFilled
- entities:
- - uid: 15
- components:
- - type: Transform
- parent: 14
- - type: GasTank
- toggleActionEntity: 16
- - type: Physics
- canCollide: False
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 16
- - type: InsideEntityStorage
- - uid: 17174
- components:
- - type: Transform
- pos: 69.5,-48.5
- parent: 2
- - uid: 17175
- components:
- - type: Transform
- pos: -49.56276,20.6829
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17176
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.512732,59.45561
- parent: 2
- - uid: 17177
- components:
- - type: Transform
- pos: -59.57536,52.708168
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17178
- components:
- - type: Transform
- pos: -49.37526,20.52665
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17179
- components:
- - type: Transform
- pos: -57.510643,-1.4317584
- parent: 2
- - type: Physics
- canCollide: False
-- proto: Dresser
- entities:
- - uid: 14838
- components:
- - type: Transform
- pos: -30.5,-15.5
- parent: 2
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14839
- - uid: 14867
- components:
- - type: Transform
- pos: 14.5,-52.5
- parent: 2
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14872
- - 14870
- - 14871
- - 14873
- - 14869
- - 14868
- - uid: 17180
- components:
- - type: Transform
- pos: -3.5,44.5
- parent: 2
- - uid: 17181
- components:
- - type: Transform
- pos: -2.5,53.5
- parent: 2
- - uid: 17182
- components:
- - type: Transform
- pos: -9.5,54.5
- parent: 2
- - uid: 17183
- components:
- - type: Transform
- pos: 10.5,11.5
- parent: 2
- - uid: 17184
- components:
- - type: Transform
- pos: 98.5,13.5
- parent: 2
- - uid: 17185
- components:
- - type: Transform
- pos: 81.5,-4.5
- parent: 2
- - uid: 17186
- components:
- - type: Transform
- pos: 85.5,-4.5
- parent: 2
- - uid: 17187
- components:
- - type: Transform
- pos: 89.5,-4.5
- parent: 2
-- proto: DresserCaptainFilled
- entities:
- - uid: 17188
- components:
- - type: Transform
- pos: 13.5,0.5
- parent: 2
-- proto: DresserChiefEngineerFilled
- entities:
- - uid: 17189
- components:
- - type: Transform
- pos: -58.5,5.5
- parent: 2
-- proto: DresserChiefMedicalOfficerFilled
- entities:
- - uid: 17190
- components:
- - type: Transform
- pos: 24.5,-50.5
- parent: 2
-- proto: DresserFilled
- entities:
- - uid: 17191
- components:
- - type: Transform
- pos: 51.5,-13.5
- parent: 2
- - uid: 17192
- components:
- - type: Transform
- pos: 51.5,-25.5
- parent: 2
- - uid: 17193
- components:
- - type: Transform
- pos: 45.5,-22.5
- parent: 2
- - uid: 17194
- components:
- - type: Transform
- pos: 49.5,-22.5
- parent: 2
- - uid: 17195
- components:
- - type: Transform
- pos: -24.5,-10.5
- parent: 2
- - uid: 17196
- components:
- - type: Transform
- pos: -29.5,-64.5
- parent: 2
- - uid: 38909
- components:
- - type: Transform
- pos: -22.5,10.5
- parent: 38344
- - uid: 38910
- components:
- - type: Transform
- pos: -19.5,0.5
- parent: 38344
- - uid: 38911
- components:
- - type: Transform
- pos: -16.5,0.5
- parent: 38344
- - uid: 38912
- components:
- - type: Transform
- pos: -22.5,0.5
- parent: 38344
- - uid: 38913
- components:
- - type: Transform
- pos: -20.5,28.5
- parent: 38344
- - uid: 38914
- components:
- - type: Transform
- pos: -16.5,10.5
- parent: 38344
- - uid: 38915
- components:
- - type: Transform
- pos: -19.5,10.5
- parent: 38344
-- proto: DresserHeadOfPersonnelFilled
- entities:
- - uid: 17197
- components:
- - type: Transform
- pos: -15.5,-3.5
- parent: 2
-- proto: DresserHeadOfSecurityFilled
- entities:
- - uid: 17198
- components:
- - type: Transform
- pos: 36.5,22.5
- parent: 2
-- proto: DresserQuarterMasterFilled
- entities:
- - uid: 17199
- components:
- - type: Transform
- pos: 27.5,44.5
- parent: 2
-- proto: DresserResearchDirectorFilled
- entities:
- - uid: 17200
- components:
- - type: Transform
- pos: -16.5,-45.5
- parent: 2
-- proto: DrinkAbsintheBottleFull
- entities:
- - uid: 17201
- components:
- - type: Transform
- pos: -48.514404,32.65227
- parent: 2
-- proto: DrinkBeerBottleFull
- entities:
- - uid: 15465
- components:
- - type: Transform
- parent: 15464
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15466
- components:
- - type: Transform
- parent: 15464
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15467
- components:
- - type: Transform
- parent: 15464
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 17202
- components:
- - type: Transform
- pos: 41.357204,28.897608
- parent: 2
- - uid: 17203
- components:
- - type: Transform
- pos: -76.798294,-0.080628335
- parent: 2
-- proto: DrinkBeerCan
- entities:
- - uid: 15468
- components:
- - type: Transform
- parent: 15464
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15469
- components:
- - type: Transform
- parent: 15464
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15470
- components:
- - type: Transform
- parent: 15464
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15471
- components:
- - type: Transform
- parent: 15464
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15472
- components:
- - type: Transform
- parent: 15464
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15473
- components:
- - type: Transform
- parent: 15464
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 38891
- components:
- - type: Transform
- parent: 38890
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 38892
- components:
- - type: Transform
- parent: 38890
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 38893
- components:
- - type: Transform
- parent: 38890
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 38894
- components:
- - type: Transform
- parent: 38890
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 38895
- components:
- - type: Transform
- parent: 38890
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 38896
- components:
- - type: Transform
- parent: 38890
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 38916
- components:
- - type: Transform
- pos: -20.250412,43.45819
- parent: 38344
-- proto: DrinkBeerglass
- entities:
- - uid: 17204
- components:
- - type: Transform
- pos: 55.687534,-45.35493
- parent: 2
- - uid: 17205
- components:
- - type: Transform
- pos: 55.202816,-45.359303
- parent: 2
-- proto: DrinkBloodGlass
- entities:
- - uid: 17206
- components:
- - type: Transform
- pos: -34.087208,-79.51882
- parent: 2
- - uid: 17207
- components:
- - type: Transform
- pos: -33.390064,-79.445435
- parent: 2
- - uid: 17208
- components:
- - type: Transform
- pos: -33.74475,-79.33536
- parent: 2
-- proto: DrinkBottleGildlager
- entities:
- - uid: 14390
- components:
- - type: Transform
- parent: 14387
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: DrinkBottleOfNothingFull
- entities:
- - uid: 14964
- components:
- - type: Transform
- parent: 14961
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: DrinkBottleVodka
- entities:
- - uid: 17209
- components:
- - type: Transform
- pos: -64.88222,-24.802635
- parent: 2
-- proto: DrinkBottleWhiskey
- entities:
- - uid: 17210
- components:
- - type: Transform
- pos: -40.49082,-9.030222
- parent: 2
-- proto: DrinkChampagneBottleFull
- entities:
- - uid: 17211
- components:
- - type: Transform
- pos: 23.099499,16.62038
- parent: 2
-- proto: DrinkColaBottleFull
- entities:
- - uid: 17212
- components:
- - type: Transform
- pos: -76.81392,-0.4087534
- parent: 2
-- proto: DrinkCreamCarton
- entities:
- - uid: 17213
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 12.5,10.5
- parent: 2
-- proto: DrinkEnergyDrinkCan
- entities:
- - uid: 17214
- components:
- - type: Transform
- pos: -64.59291,-44.41243
- parent: 2
-- proto: DrinkFlask
- entities:
- - uid: 17215
- components:
- - type: Transform
- pos: 8.751882,0.49553835
- parent: 2
-- proto: DrinkGildlagerBottleFull
- entities:
- - uid: 17216
- components:
- - type: Transform
- pos: 26.358824,19.103046
- parent: 2
-- proto: DrinkGlass
- entities:
- - uid: 17217
- components:
- - type: Transform
- pos: 93.862076,-4.490161
- parent: 2
- - uid: 17218
- components:
- - type: Transform
- pos: -11.653931,36.61787
- parent: 2
- - uid: 17219
- components:
- - type: Transform
- pos: 93.8152,-4.208911
- parent: 2
- - uid: 17220
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 93.299576,-4.3026605
- parent: 2
- - uid: 17221
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 93.5652,-4.287036
- parent: 2
- - uid: 17222
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 93.28395,-4.4589105
- parent: 2
- - uid: 17223
- components:
- - type: Transform
- pos: 93.612076,-4.427661
- parent: 2
- - uid: 17224
- components:
- - type: Transform
- pos: 63.11612,30.53678
- parent: 2
- - uid: 17225
- components:
- - type: Transform
- pos: 63.36612,30.614904
- parent: 2
- - uid: 17226
- components:
- - type: Transform
- pos: 63.569244,30.568027
- parent: 2
-- proto: DrinkGlassWhite
- entities:
- - uid: 17227
- components:
- - type: Transform
- pos: -33.482204,-66.63239
- parent: 2
- - uid: 17228
- components:
- - type: Transform
- pos: -33.751278,-66.717995
- parent: 2
-- proto: DrinkGoldenCup
- entities:
- - uid: 17229
- components:
- - type: Transform
- pos: 23.515074,20.774921
- parent: 2
-- proto: DrinkGrapeSodaGlass
- entities:
- - uid: 17230
- components:
- - type: Transform
- pos: -8.52768,39.647503
- parent: 2
-- proto: DrinkGreenTea
- entities:
- - uid: 17231
- components:
- - type: Transform
- pos: -52.36495,-44.64987
- parent: 2
- - uid: 17232
- components:
- - type: Transform
- pos: -50.639072,-45.357834
- parent: 2
- - uid: 17233
- components:
- - type: Transform
- pos: -8.362577,-3.5833626
- parent: 2
- - uid: 17234
- components:
- - type: Transform
- pos: -8.675077,-3.3021126
- parent: 2
-- proto: DrinkHosFlask
- entities:
- - uid: 17235
- components:
- - type: Transform
- pos: 41.521767,20.175655
- parent: 2
-- proto: DrinkHotCoffee
- entities:
- - uid: 17236
- components:
- - type: Transform
- pos: -56.503292,12.64807
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17237
- components:
- - type: Transform
- pos: -46.475765,37.90942
- parent: 2
- - uid: 17238
- components:
- - type: Transform
- pos: 51.090782,7.7054863
- parent: 2
- - uid: 17239
- components:
- - type: Transform
- pos: 20.753819,38.703323
- parent: 2
-- proto: DrinkJarWhat
- entities:
- - uid: 17240
->>>>>>> master
- components:
- - type: MetaData
- name: Кротовуха
- - type: Transform
-<<<<<<< HEAD
- pos: 15.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17937
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17938
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17939
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17940
- components:
- - type: Transform
- pos: 25.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17941
- components:
- - type: Transform
- pos: 16.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17942
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17943
- components:
- - type: Transform
- pos: 7.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17944
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17945
- components:
- - type: Transform
- pos: 43.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17946
- components:
- - type: Transform
- pos: -29.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17947
- components:
- - type: Transform
- pos: 2.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17948
- components:
- - type: Transform
- pos: -0.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17949
- components:
- - type: Transform
- pos: -23.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17950
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17951
- components:
- - type: Transform
- pos: -20.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17952
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17953
- components:
- - type: Transform
- pos: 36.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17954
- components:
- - type: Transform
- pos: 59.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17955
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17956
- components:
- - type: Transform
- pos: -39.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17957
- components:
- - type: Transform
- pos: -44.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17958
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17959
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17960
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17961
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17962
- components:
- - type: Transform
- pos: 17.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17963
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17964
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17965
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17966
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17967
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17968
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17969
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17970
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17971
- components:
- - type: Transform
- pos: 0.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17973
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17974
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17975
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17976
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17977
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,20.5
- parent: 2
- - uid: 17978
- components:
- - type: Transform
- pos: -45.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17979
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17980
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17981
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17982
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17983
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17984
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17985
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17986
- components:
- - type: Transform
- pos: -9.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17987
- components:
- - type: Transform
- pos: 53.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17988
- components:
- - type: Transform
- pos: 27.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17989
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17991
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17992
- components:
- - type: Transform
- pos: -36.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17993
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17994
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17995
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17996
-=======
- pos: -15.453269,-27.25954
- parent: 2
-- proto: DrinkJuiceOrangeCarton
- entities:
- - uid: 17241
- components:
- - type: Transform
- pos: 56.79927,-35.55457
- parent: 2
-- proto: DrinkManlyDorfGlass
- entities:
- - uid: 17242
- components:
- - type: Transform
- pos: -48.583096,47.629047
- parent: 2
-- proto: DrinkMilkCarton
- entities:
- - uid: 17243
- components:
- - type: Transform
- pos: -33.714592,-66.2777
- parent: 2
-- proto: DrinkMug
- entities:
- - uid: 17244
- components:
- - type: Transform
- pos: 4.6912384,43.501335
- parent: 2
- - type: Physics
- canCollide: False
-- proto: DrinkMugBlack
- entities:
- - uid: 17245
- components:
- - type: Transform
- pos: -22.333149,-39.62949
- parent: 2
-- proto: DrinkMugDog
- entities:
- - uid: 17246
- components:
- - type: Transform
- pos: -39.48549,-59.612827
- parent: 2
- - uid: 17247
- components:
- - type: Transform
- pos: 18.368465,-50.232624
- parent: 2
- - uid: 17248
- components:
- - type: Transform
- pos: -22.661274,-39.25449
- parent: 2
-- proto: DrinkMugMetal
- entities:
- - uid: 17249
- components:
- - type: Transform
- pos: 11.355303,-28.496075
- parent: 2
-- proto: DrinkMugMoebius
- entities:
- - uid: 17250
- components:
- - type: Transform
- pos: 18.671715,-50.510868
- parent: 2
- - uid: 17251
- components:
- - type: Transform
- pos: -34.338005,63.49301
- parent: 2
-- proto: DrinkMugOne
- entities:
- - uid: 17252
- components:
- - type: Transform
- pos: -40.29744,61.61986
- parent: 2
- - uid: 17253
- components:
- - type: Transform
- pos: -77.735794,-0.17437816
- parent: 2
-- proto: DrinkMugRainbow
- entities:
- - uid: 17254
- components:
- - type: Transform
- pos: -77.22017,-0.19000322
- parent: 2
-- proto: DrinkMugRed
- entities:
- - uid: 17255
- components:
- - type: Transform
- pos: -28.544523,-10.337871
- parent: 2
-- proto: DrinkNukieCan
- entities:
- - uid: 17256
- components:
- - type: Transform
- pos: -74.64876,-35.243942
- parent: 2
- - uid: 17257
- components:
- - type: Transform
- pos: -74.45699,-35.406185
- parent: 2
- - uid: 17258
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 100.256714,-1.2082787
- parent: 2
-- proto: DrinkShaker
- entities:
- - uid: 17259
- components:
- - type: Transform
- pos: -5.5394945,40.926525
- parent: 2
-- proto: DrinkShotGlass
- entities:
- - uid: 17260
- components:
- - type: Transform
- pos: -48.014404,32.467087
- parent: 2
- - uid: 17261
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.736626,32.309677
- parent: 2
- - uid: 17262
- components:
- - type: Transform
- pos: -65.354256,-24.463402
- parent: 2
- - uid: 17263
- components:
- - type: Transform
- pos: -65.64928,-24.197916
- parent: 2
- - uid: 17264
- components:
- - type: Transform
- pos: 63.46561,22.271175
- parent: 2
-- proto: DrinkSpaceGlue
- entities:
- - uid: 17265
- components:
- - type: Transform
- pos: 38.48052,-19.283209
- parent: 2
- - uid: 17266
- components:
- - type: Transform
- pos: 70.258064,23.686186
- parent: 2
- - uid: 17267
- components:
- - type: Transform
- pos: 20.197306,-18.429718
- parent: 2
- - uid: 17268
- components:
- - type: Transform
- pos: 47.504456,-51.095913
- parent: 2
-- proto: DrinkSpaceLube
- entities:
- - uid: 38917
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.515173,35.579437
- parent: 38344
-- proto: DrinkTeacup
- entities:
- - uid: 17269
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.797064,-39.72211
- parent: 2
- - uid: 17270
- components:
- - type: Transform
- pos: -4.564571,1.4259852
- parent: 2
- - uid: 17271
- components:
- - type: Transform
- pos: -3.5614977,0.61477566
- parent: 2
- - uid: 17272
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.445503,-39.229927
- parent: 2
-- proto: DrinkTeapot
- entities:
- - uid: 17273
- components:
- - type: Transform
- pos: -51.479885,-44.930107
- parent: 2
- - uid: 17274
- components:
- - type: Transform
- pos: -4.0040307,1.057254
- parent: 2
- - uid: 17275
- components:
- - type: Transform
- pos: -8.518827,-4.0677376
- parent: 2
-- proto: DrinkVodkaBottleFull
- entities:
- - uid: 17276
- components:
- - type: Transform
- pos: 77.490364,-46.540504
- parent: 2
- - uid: 17277
- components:
- - type: Transform
- pos: 77.72074,-46.363407
- parent: 2
- - uid: 17278
- components:
- - type: Transform
- pos: 77.50809,-46.398827
- parent: 2
- - uid: 17279
- components:
- - type: Transform
- pos: 77.4372,-46.575924
- parent: 2
- - uid: 17280
- components:
- - type: Transform
- pos: 77.45492,-46.575924
- parent: 2
- - uid: 17281
- components:
- - type: Transform
- pos: -43.519814,54.566936
- parent: 2
- - uid: 17282
- components:
- - type: Transform
- pos: 77.30893,-46.454647
- parent: 2
- - uid: 17283
- components:
- - type: Transform
- pos: 63.817173,21.568048
- parent: 2
-- proto: DrinkWaterBottleFull
- entities:
- - uid: 17284
- components:
- - type: Transform
- pos: 48.286457,17.641747
- parent: 2
- - uid: 17285
- components:
- - type: Transform
- pos: 48.692707,17.672997
- parent: 2
- - uid: 17286
- components:
- - type: Transform
- pos: 48.489582,17.657372
- parent: 2
- - uid: 17287
- components:
- - type: Transform
- pos: 35.395584,38.672756
- parent: 2
- - uid: 17288
- components:
- - type: Transform
- pos: 55.321003,-22.407534
- parent: 2
- - uid: 17289
- components:
- - type: Transform
- pos: 55.508503,-22.813784
- parent: 2
- - uid: 17290
- components:
- - type: Transform
- pos: 55.727253,-22.407534
- parent: 2
-- proto: DrinkWineBottleFull
- entities:
- - uid: 17291
- components:
- - type: Transform
- pos: -11.51872,46.860718
- parent: 2
-- proto: DrinkWineGlass
- entities:
- - uid: 17292
- components:
- - type: Transform
- pos: -11.298665,46.57078
- parent: 2
- - uid: 17293
- components:
- - type: Transform
- pos: -11.75179,46.60203
- parent: 2
-- proto: Dropper
- entities:
- - uid: 17294
- components:
- - type: Transform
- pos: 38.436283,-74.467354
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17295
- components:
- - type: Transform
- pos: 6.46435,-38.51832
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17296
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -25.52646,-25.611034
- parent: 2
- - uid: 17297
- components:
- - type: Transform
- pos: 2.5200934,-29.55756
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17298
- components:
- - type: Transform
- pos: 8.500152,-30.578497
- parent: 2
- - uid: 17299
- components:
- - type: Transform
- pos: 20.453255,-40.408833
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17300
- components:
- - type: Transform
- pos: 41.969006,-73.53427
- parent: 2
- - uid: 17301
- components:
- - type: Transform
- pos: 26.487522,-68.55446
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17302
- components:
- - type: Transform
- pos: -8.757672,-52.582615
- parent: 2
- - uid: 17303
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.822828,45.589245
- parent: 2
- - uid: 17304
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.666578,45.60487
- parent: 2
-- proto: Eggshells
- entities:
- - uid: 17305
->>>>>>> master
- components:
- - type: MetaData
- desc: Крашенная скорлупа.
- - type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 48.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17997
-=======
- pos: 56.727657,-38.74004
- parent: 2
- - uid: 17306
->>>>>>> master
- components:
- - type: MetaData
- desc: Крашенная скорлупа.
- - type: Transform
- rot: 1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -21.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 17998
- components:
- - type: Transform
- pos: -23.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17999
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18001
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18002
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18003
- components:
- - type: Transform
- pos: 52.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18004
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18005
- components:
- - type: Transform
- pos: 39.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18006
- components:
- - type: Transform
- pos: -51.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18007
- components:
- - type: Transform
- pos: -49.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18008
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18009
- components:
- - type: Transform
- pos: -23.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18011
- components:
- - type: Transform
- pos: -45.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18012
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18013
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18015
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18016
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18017
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18018
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,60.5
- parent: 2
- - uid: 18019
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18020
- components:
- - type: Transform
- pos: 17.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18021
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18022
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18023
- components:
- - type: Transform
- pos: -27.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18024
- components:
- - type: Transform
- pos: 0.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18025
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18026
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18027
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18028
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18029
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18030
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18031
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18032
- components:
- - type: Transform
- pos: -56.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18033
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18034
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18035
- components:
- - type: Transform
- pos: -40.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18036
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18037
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18038
- components:
- - type: Transform
- pos: 28.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18039
- components:
- - type: Transform
- pos: -9.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18040
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18041
- components:
- - type: Transform
- pos: 18.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18042
- components:
- - type: Transform
- pos: -26.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18043
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18044
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18045
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18046
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18047
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18048
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18049
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18050
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18051
- components:
- - type: Transform
- pos: 44.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18052
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18053
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18054
- components:
- - type: Transform
- pos: 1.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18055
- components:
- - type: Transform
- pos: 42.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18056
- components:
- - type: Transform
- pos: 35.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18057
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18058
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18059
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18060
- components:
- - type: Transform
- pos: 18.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18061
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18062
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18063
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18064
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18065
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18066
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18067
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18068
- components:
- - type: Transform
- pos: -13.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18069
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18070
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18071
- components:
- - type: Transform
- pos: 18.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18072
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18073
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18074
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18075
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18076
- components:
- - type: Transform
- pos: -46.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18077
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18078
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18079
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18080
- components:
- - type: Transform
- pos: 17.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18081
- components:
- - type: Transform
- pos: -65.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18082
- components:
- - type: Transform
- pos: 28.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18083
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18084
- components:
- - type: Transform
- pos: -7.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18085
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18086
- components:
- - type: Transform
- pos: 43.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18087
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18088
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18091
- components:
- - type: Transform
- pos: -42.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18092
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18093
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18094
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18096
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18097
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18098
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18099
- components:
- - type: Transform
- pos: 5.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18100
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18101
- components:
- - type: Transform
- pos: -48.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18102
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18103
- components:
- - type: Transform
- pos: -25.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18104
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18105
- components:
- - type: Transform
- pos: -0.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18106
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18107
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18108
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18109
- components:
- - type: Transform
- pos: 33.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18110
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18111
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18113
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18115
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18116
- components:
- - type: Transform
- pos: 36.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18117
- components:
- - type: Transform
- pos: 12.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18118
- components:
- - type: Transform
- pos: 28.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18119
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18120
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18121
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18123
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18124
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18125
- components:
- - type: Transform
- pos: 12.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18126
- components:
- - type: Transform
- pos: 3.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18127
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18128
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18129
- components:
- - type: Transform
- pos: -28.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18130
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18131
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,15.5
- parent: 2
- - uid: 18132
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18133
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18134
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18135
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18136
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18137
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18138
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18139
- components:
- - type: Transform
- pos: 13.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18140
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18141
- components:
- - type: Transform
- pos: 34.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18143
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18144
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18145
- components:
- - type: Transform
- pos: -13.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18146
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18147
- components:
- - type: Transform
- pos: 30.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18148
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18149
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -122.5,18.5
- parent: 2
- - uid: 18150
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18151
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18152
- components:
- - type: Transform
- pos: -8.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18153
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18154
- components:
- - type: Transform
- pos: 29.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18155
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18156
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18157
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18160
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18163
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18164
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18165
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18166
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18167
- components:
- - type: Transform
- pos: 44.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18168
- components:
- - type: Transform
- pos: 23.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18171
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18172
- components:
- - type: Transform
- pos: 1.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18173
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18175
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18176
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18177
- components:
- - type: Transform
- pos: 42.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18178
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18179
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18180
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18182
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18183
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18184
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18185
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18186
- components:
- - type: Transform
- pos: -47.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18187
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18189
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18190
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18191
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18192
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18194
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18195
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18196
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18197
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18198
- components:
- - type: Transform
- pos: 1.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18200
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18202
- components:
- - type: Transform
- pos: 41.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18204
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18207
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18209
- components:
- - type: Transform
- pos: 26.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18210
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18211
- components:
- - type: Transform
- pos: -69.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18212
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18213
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18214
- components:
- - type: Transform
- pos: -58.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18215
- components:
- - type: Transform
- pos: -66.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18216
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18218
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18219
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18220
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18221
- components:
- - type: Transform
- pos: -18.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18222
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18223
- components:
- - type: Transform
- pos: 16.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18224
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18225
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18226
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18227
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18228
- components:
- - type: Transform
- pos: 36.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18230
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18231
- components:
- - type: Transform
- pos: -8.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18233
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18234
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18235
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 75.5,21.5
- parent: 2
- - uid: 18236
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 78.5,21.5
- parent: 2
- - uid: 18237
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 77.5,22.5
- parent: 2
- - uid: 18238
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18240
- components:
- - type: Transform
- pos: 67.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18241
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18242
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18244
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18245
- components:
- - type: Transform
- pos: -30.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18246
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18247
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18248
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18249
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18250
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 18251
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18252
- components:
- - type: Transform
- pos: -29.5,-51.5
- parent: 2
- - uid: 18253
- components:
- - type: Transform
- pos: -31.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18255
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18256
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18258
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18259
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18260
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18261
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18262
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18263
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18264
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18265
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18266
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18267
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18268
- components:
- - type: Transform
- pos: -59.5,23.5
- parent: 2
- - uid: 18269
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18270
- components:
- - type: Transform
- pos: -36.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18271
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18272
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18273
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18274
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,20.5
- parent: 2
- - uid: 18275
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18276
- components:
- - type: Transform
- pos: -28.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18277
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18278
-=======
- pos: 56.227657,-38.281704
- parent: 2
-- proto: EggSpider
- entities:
- - uid: 17307
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -69.45483,-35.626926
- parent: 2
- - uid: 17308
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -69.26733,-35.845673
- parent: 2
- - uid: 17309
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -69.61108,-35.783176
- parent: 2
- - uid: 17310
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -65.37671,-34.533176
- parent: 2
- - uid: 17311
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -65.4392,-36.7988
- parent: 2
- - uid: 17312
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -65.59546,-34.361298
- parent: 2
- - uid: 17313
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -65.298584,-34.2363
- parent: 2
-- proto: ElectricGuitarInstrument
- entities:
- - uid: 17314
- components:
- - type: Transform
- pos: -8.546601,28.76847
- parent: 2
-- proto: EmergencyLight
- entities:
- - uid: 17315
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-3.5
- parent: 2
- - uid: 17316
- components:
- - type: Transform
- pos: 13.5,-12.5
- parent: 2
- - uid: 17317
- components:
- - type: Transform
- pos: 7.5,-11.5
- parent: 2
- - uid: 17318
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-44.5
- parent: 2
- - uid: 17319
- components:
- - type: Transform
- pos: -32.5,-57.5
- parent: 2
- - uid: 17320
- components:
- - type: Transform
- pos: -38.5,-69.5
- parent: 2
- - uid: 17321
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,80.5
- parent: 2
- - uid: 17322
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,36.5
- parent: 2
- - uid: 17323
- components:
- - type: Transform
- pos: -1.5,65.5
- parent: 2
- - uid: 17324
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,80.5
- parent: 2
- - uid: 17325
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-40.5
- parent: 2
- - uid: 17326
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,35.5
- parent: 2
- - uid: 17327
- components:
- - type: Transform
- pos: 36.5,-27.5
- parent: 2
- - uid: 17328
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-21.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17329
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-67.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17330
- components:
- - type: Transform
- pos: -8.5,-63.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17331
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,6.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17332
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-4.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17333
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17334
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-17.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17336
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17337
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,20.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17338
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-75.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17339
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,56.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17340
- components:
- - type: Transform
- pos: -64.5,52.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17341
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-40.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17342
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17343
- components:
- - type: Transform
- pos: -12.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17344
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-46.5
- parent: 2
- - uid: 17345
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17346
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,67.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17347
- components:
- - type: Transform
- pos: 12.5,54.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17348
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-30.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17349
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-30.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17350
- components:
- - type: Transform
- pos: 5.5,45.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17351
- components:
- - type: Transform
- pos: 46.5,24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17352
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-59.5
- parent: 2
- - uid: 17353
- components:
- - type: Transform
- pos: 10.5,16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17354
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-46.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17355
- components:
- - type: Transform
- pos: 26.5,38.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17356
- components:
- - type: Transform
- pos: 51.5,9.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17357
- components:
- - type: Transform
- pos: 12.5,2.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17358
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,26.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17359
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,6.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17360
- components:
- - type: Transform
- pos: 51.5,1.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17361
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,9.5
- parent: 2
- - uid: 17362
- components:
- - type: Transform
- pos: -11.5,16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17363
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-40.5
- parent: 2
- - uid: 17364
- components:
- - type: Transform
- pos: 7.5,-48.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17365
- components:
- - type: Transform
- pos: 39.5,23.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17366
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,63.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17367
- components:
- - type: Transform
- pos: 6.5,31.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17368
- components:
- - type: Transform
- pos: 69.5,-15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17369
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-41.5
- parent: 2
- - uid: 17370
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-6.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17371
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,14.5
- parent: 2
- - uid: 17372
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-72.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17373
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17374
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,1.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17375
- components:
- - type: Transform
- pos: -33.5,43.5
- parent: 2
- - uid: 17376
- components:
- - type: Transform
- pos: 37.5,12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17377
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,41.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17378
- components:
- - type: Transform
- pos: 15.5,54.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17379
- components:
- - type: Transform
- pos: -2.5,18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17380
- components:
- - type: Transform
- pos: -49.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17381
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,14.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17382
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17383
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,22.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17384
- components:
- - type: Transform
- pos: -56.5,38.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17385
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17386
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-14.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17387
- components:
- - type: Transform
- pos: 80.5,-18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17388
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17389
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-68.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17390
- components:
- - type: Transform
- pos: 35.5,-6.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17391
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,-0.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-13.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17393
- components:
- - type: Transform
- pos: -5.5,-57.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17394
- components:
- - type: Transform
- pos: 63.5,1.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17395
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,10.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,93.5
- parent: 2
- - uid: 17397
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,24.5
- parent: 2
- - uid: 17398
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-52.5
- parent: 2
- - uid: 17399
- components:
- - type: Transform
- pos: -2.5,-57.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,77.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17401
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 81.5,14.5
- parent: 2
- - uid: 17402
- components:
- - type: Transform
- pos: -5.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17403
- components:
- - type: Transform
- pos: -49.5,2.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17404
- components:
- - type: Transform
- pos: 14.5,46.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17405
- components:
- - type: Transform
- pos: 21.5,10.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17406
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17407
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,79.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17408
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-52.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17409
- components:
- - type: Transform
- pos: -12.5,11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17410
- components:
- - type: Transform
- pos: -12.5,-7.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17411
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-27.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17412
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 75.5,21.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17413
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-52.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17414
- components:
- - type: Transform
- pos: 6.5,90.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17415
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-45.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17416
- components:
- - type: Transform
- pos: -16.5,24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17417
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-41.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17418
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,38.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17419
- components:
- - type: Transform
- pos: 3.5,-42.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17420
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-43.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17421
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,53.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17422
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,36.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17423
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-5.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17424
- components:
- - type: Transform
- pos: -72.5,16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,40.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17426
- components:
- - type: Transform
- pos: -22.5,-49.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17427
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,4.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17428
- components:
- - type: Transform
- pos: 23.5,54.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17429
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,52.5
- parent: 2
- - uid: 17430
- components:
- - type: Transform
- pos: -55.5,3.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17431
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17432
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17433
- components:
- - type: Transform
- pos: -25.5,2.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17434
- components:
- - type: Transform
- pos: -28.5,21.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17435
- components:
- - type: Transform
- pos: -22.5,23.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17436
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,22.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17437
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17438
- components:
- - type: Transform
- pos: 11.5,46.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17439
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-14.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17440
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-22.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17441
- components:
- - type: Transform
- pos: 30.5,-21.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17442
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,15.5
- parent: 2
- - uid: 17443
- components:
- - type: Transform
- pos: 73.5,-15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17444
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,0.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17445
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17446
- components:
- - type: Transform
- pos: 31.5,12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17447
- components:
- - type: Transform
- pos: 1.5,18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17448
- components:
- - type: Transform
- pos: -59.5,58.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17449
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-51.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17450
- components:
- - type: Transform
- pos: -34.5,63.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17451
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17452
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,25.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17455
- components:
- - type: Transform
- pos: -0.5,-13.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17456
- components:
- - type: Transform
- pos: 6.5,-18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17457
- components:
- - type: Transform
- pos: -72.5,12.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17458
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,13.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17459
- components:
- - type: Transform
- pos: -63.5,18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17460
- components:
- - type: Transform
- pos: -57.5,20.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17461
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,36.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17462
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,4.5
- parent: 2
- - uid: 17463
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,0.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17464
- components:
- - type: Transform
- pos: -46.5,-5.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17465
- components:
- - type: Transform
- pos: -30.5,-25.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17466
- components:
- - type: Transform
- pos: -39.5,-26.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17467
- components:
- - type: Transform
- pos: -47.5,-24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17468
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-51.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17469
- components:
- - type: Transform
- pos: -4.5,46.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17470
- components:
- - type: Transform
- pos: 7.5,-29.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17471
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,80.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17472
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,7.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17473
- components:
- - type: Transform
- pos: -5.5,28.5
- parent: 2
- - uid: 17474
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-47.5
- parent: 2
- - uid: 17475
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-32.5
- parent: 2
- - uid: 17476
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,-8.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17477
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-68.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17478
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-71.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17479
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,0.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17480
- components:
- - type: Transform
- pos: -30.5,55.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17481
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,49.5
- parent: 2
- - uid: 17482
- components:
- - type: Transform
- pos: -66.5,-5.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17483
- components:
- - type: Transform
- pos: -7.5,-18.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17484
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-22.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17485
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,45.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17486
- components:
- - type: Transform
- pos: -1.5,-7.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17487
- components:
- - type: Transform
- pos: 9.5,-7.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17488
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-4.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17489
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,67.5
- parent: 2
- - uid: 17490
- components:
- - type: Transform
- pos: -8.5,69.5
- parent: 2
- - uid: 17491
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,7.5
- parent: 2
- - uid: 17492
- components:
- - type: Transform
- pos: 27.5,2.5
- parent: 2
- - uid: 17493
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,80.5
- parent: 2
- - uid: 17494
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,67.5
- parent: 2
- - uid: 17495
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 87.5,-24.5
- parent: 2
- - uid: 17496
- components:
- - type: Transform
- pos: 25.5,-24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17497
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-27.5
- parent: 2
- - uid: 17498
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,53.5
- parent: 2
- - uid: 17499
- components:
- - type: Transform
- pos: -12.5,46.5
- parent: 2
- - uid: 17500
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,9.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17501
- components:
- - type: Transform
- pos: -57.5,54.5
- parent: 2
- - uid: 17502
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-3.5
- parent: 2
- - uid: 17503
- components:
- - type: Transform
- pos: 12.5,24.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17504
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-37.5
- parent: 2
- - uid: 17505
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-40.5
- parent: 2
- - uid: 17506
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-8.5
- parent: 2
- - uid: 17507
- components:
- - type: Transform
- pos: 7.5,-22.5
- parent: 2
- - uid: 17508
- components:
- - type: Transform
- pos: -53.5,51.5
- parent: 2
- - uid: 17509
- components:
- - type: Transform
- pos: -17.5,-55.5
- parent: 2
- - uid: 17510
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-5.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17511
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,34.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17512
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,0.5
- parent: 2
- - uid: 17513
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,27.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17514
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,17.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17515
- components:
- - type: Transform
- pos: -25.5,39.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17516
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-79.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17517
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-79.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17518
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,11.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17519
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-40.5
- parent: 2
- - uid: 17520
- components:
- - type: Transform
- pos: -1.5,9.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17521
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,3.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17522
- components:
- - type: Transform
- pos: -31.5,6.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17523
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-26.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17524
- components:
- - type: Transform
- pos: 31.5,-33.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17525
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-35.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17526
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-27.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17527
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-41.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17528
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-48.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17529
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-45.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17530
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-48.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17531
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-60.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17532
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-56.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17533
- components:
- - type: Transform
- pos: 30.5,-60.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17534
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-64.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17535
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-62.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17536
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-62.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17537
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-70.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17538
- components:
- - type: Transform
- pos: 27.5,-65.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17539
- components:
- - type: Transform
- pos: -27.5,-49.5
- parent: 2
- - uid: 17540
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,8.5
- parent: 2
- - uid: 17541
- components:
- - type: Transform
- pos: -67.5,-9.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17542
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-3.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17543
- components:
- - type: Transform
- pos: -68.5,2.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17544
- components:
- - type: Transform
- pos: -77.5,-5.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17545
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,-9.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17546
- components:
- - type: Transform
- pos: 91.5,-15.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 17547
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,21.5
- parent: 2
- - uid: 17548
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,90.5
- parent: 2
- - uid: 17549
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,90.5
- parent: 2
- - uid: 17550
- components:
- - type: Transform
- pos: -47.5,15.5
- parent: 2
- - uid: 17551
- components:
- - type: Transform
- pos: 22.5,32.5
- parent: 2
- - uid: 17552
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,59.5
- parent: 2
- - uid: 17553
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,22.5
- parent: 2
- - uid: 17554
- components:
- - type: Transform
- pos: -63.5,38.5
- parent: 2
- - uid: 17555
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,40.5
- parent: 2
- - uid: 17556
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,27.5
- parent: 2
- - uid: 17557
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,22.5
- parent: 2
- - uid: 17558
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-41.5
- parent: 2
- - uid: 17559
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-48.5
- parent: 2
- - uid: 17560
- components:
- - type: Transform
- pos: -61.5,-22.5
- parent: 2
- - uid: 17561
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-27.5
- parent: 2
- - uid: 17562
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-25.5
- parent: 2
- - uid: 17563
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-34.5
- parent: 2
- - uid: 17564
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-15.5
- parent: 2
- - uid: 17565
- components:
- - type: Transform
- pos: -12.5,-11.5
- parent: 2
- - uid: 17566
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-64.5
- parent: 2
- - uid: 17567
- components:
- - type: Transform
- pos: 53.5,32.5
- parent: 2
- - uid: 38285
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-0.5
- parent: 38244
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 38918
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-3.5
- parent: 38344
- - uid: 38919
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-2.5
- parent: 38344
- - uid: 38920
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,2.5
- parent: 38344
- - uid: 38921
- components:
- - type: Transform
- pos: -2.5,4.5
- parent: 38344
- - uid: 38922
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,7.5
- parent: 38344
- - uid: 38923
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,6.5
- parent: 38344
- - uid: 38924
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,2.5
- parent: 38344
- - uid: 38925
- components:
- - type: Transform
- pos: 6.5,-3.5
- parent: 38344
- - uid: 38926
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-5.5
- parent: 38344
- - uid: 38927
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-2.5
- parent: 38344
- - uid: 38928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-5.5
- parent: 38344
- - uid: 38929
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-10.5
- parent: 38344
- - uid: 38930
- components:
- - type: Transform
- pos: 1.5,-7.5
- parent: 38344
- - uid: 38931
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-1.5
- parent: 38344
- - uid: 38932
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-3.5
- parent: 38344
- - uid: 38933
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,1.5
- parent: 38344
- - uid: 38934
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,1.5
- parent: 38344
- - uid: 38935
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,1.5
- parent: 38344
- - uid: 38936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,9.5
- parent: 38344
- - uid: 38937
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,9.5
- parent: 38344
- - uid: 38938
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,9.5
- parent: 38344
- - uid: 38939
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,12.5
- parent: 38344
- - uid: 38940
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,8.5
- parent: 38344
- - uid: 38941
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,8.5
- parent: 38344
-- proto: EmergencyMedipen
- entities:
- - uid: 17568
- components:
- - type: Transform
- pos: 20.768291,-24.31956
- parent: 2
- - uid: 17569
- components:
- - type: Transform
- pos: 26.060457,-24.311409
- parent: 2
-- proto: EmergencyRollerBed
- entities:
- - uid: 17570
- components:
- - type: Transform
- pos: 26.738546,-30.810993
- parent: 2
- - uid: 17571
- components:
- - type: Transform
- pos: 1.5,-13.5
- parent: 2
- - uid: 17572
- components:
- - type: Transform
- pos: 26.738546,-31.498493
- parent: 2
- - uid: 17573
- components:
- - type: Transform
- pos: 30.484577,-51.35612
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17574
- components:
- - type: Transform
- pos: 30.484577,-50.41862
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17575
- components:
- - type: Transform
- pos: 7.4926,-27.337849
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17576
- components:
- - type: Transform
- pos: 8.52385,-27.337849
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17577
- components:
- - type: Transform
- pos: 26.738546,-30.185993
- parent: 2
- - uid: 17578
- components:
- - type: Transform
- pos: 9.5551,-27.337849
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17579
- components:
- - type: Transform
- pos: 21.514267,-50.394043
- parent: 2
-- proto: EmergencyRollerBedSpawnFolded
- entities:
- - uid: 17580
- components:
- - type: Transform
- pos: 7.5,64.5
- parent: 2
-- proto: Emitter
- entities:
- - uid: 17581
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-12.5
- parent: 2
- - uid: 17582
- components:
- - type: Transform
- pos: -94.5,-2.5
- parent: 2
- - uid: 17583
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-11.5
- parent: 2
- - uid: 17584
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-11.5
- parent: 2
-- proto: EncryptionKeyCargo
- entities:
- - uid: 17586
- components:
- - type: Transform
- parent: 17585
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyCommand
- entities:
- - uid: 17588
- components:
- - type: Transform
- parent: 17587
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyCommon
- entities:
- - uid: 17590
->>>>>>> master
- components:
- - type: MetaData
- name: ключ шифрования общей частоты
- - type: Transform
-<<<<<<< HEAD
- pos: -64.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 18279
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18280
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18281
- components:
- - type: Transform
- pos: 50.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18282
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18284
- components:
- - type: Transform
- pos: -34.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18285
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18286
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-51.5
- parent: 2
- - uid: 18287
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-51.5
- parent: 2
- - uid: 18288
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18289
- components:
- - type: Transform
- pos: 9.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18290
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18291
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18292
- components:
- - type: Transform
- pos: 12.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18293
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18294
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18295
- components:
- - type: Transform
- pos: 24.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18296
- components:
- - type: Transform
- pos: 12.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18297
- components:
- - type: Transform
- pos: -55.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18298
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18299
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18300
- components:
- - type: Transform
- pos: 22.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18301
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18302
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18304
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18305
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18306
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18307
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18308
- components:
- - type: Transform
- pos: -39.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18309
- components:
- - type: Transform
- pos: -37.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18310
- components:
- - type: Transform
- pos: -31.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18311
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18312
- components:
- - type: Transform
- pos: -49.5,60.5
- parent: 2
- - uid: 18313
- components:
- - type: Transform
- pos: -37.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18314
- components:
- - type: Transform
- pos: -26.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18315
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18316
- components:
- - type: Transform
- pos: -60.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18317
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18318
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18319
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 18320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18321
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18322
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18323
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18324
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18325
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18326
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18327
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18328
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18329
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18330
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18331
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18332
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18333
- components:
- - type: Transform
- pos: 32.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18334
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18335
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18336
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18337
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18338
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18339
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18340
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18341
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18342
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18343
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18344
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18345
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-38.5
- parent: 2
- - uid: 18346
- components:
- - type: Transform
- pos: 22.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18347
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18348
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18349
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18350
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18351
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-46.5
- parent: 2
- - uid: 18352
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18353
- components:
- - type: Transform
- pos: 14.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18354
- components:
- - type: Transform
- pos: -57.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18355
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18356
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18357
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18358
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18359
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18360
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18361
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18362
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18363
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18364
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18365
- components:
- - type: Transform
- pos: -2.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18366
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18367
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18369
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18370
- components:
- - type: Transform
- pos: -26.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18371
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,23.5
- parent: 2
- - uid: 18372
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18373
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18374
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18375
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18376
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18377
- components:
- - type: Transform
- pos: -33.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18378
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18379
- components:
- - type: Transform
- pos: -30.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18380
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18381
- components:
- - type: Transform
- pos: -62.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18382
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#00000000'
- - uid: 18383
- components:
- - type: Transform
- pos: -31.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18384
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18385
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18386
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18387
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18388
- components:
- - type: Transform
- pos: 40.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18389
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18390
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18391
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18393
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18394
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18395
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18397
- components:
- - type: Transform
- pos: -42.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18398
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18399
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18401
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18402
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18403
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18404
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18405
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18406
- components:
- - type: Transform
- pos: 7.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18407
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18408
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18409
- components:
- - type: Transform
- pos: 5.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18410
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18411
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18412
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18413
- components:
- - type: Transform
- pos: -60.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18414
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18415
- components:
- - type: Transform
- pos: -69.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18416
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18417
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18418
- components:
- - type: Transform
- pos: 57.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18419
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18420
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18421
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,18.5
- parent: 2
- - uid: 18422
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18423
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 91.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18424
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18425
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18426
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18427
- components:
- - type: Transform
- pos: 13.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18428
- components:
- - type: Transform
- pos: 3.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18429
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18430
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18431
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18432
- components:
- - type: Transform
- pos: -17.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18433
- components:
- - type: Transform
- pos: -28.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18434
- components:
- - type: Transform
- pos: -7.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18435
- components:
- - type: Transform
- pos: -18.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18436
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18437
- components:
- - type: Transform
- pos: -28.5,90.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18438
- components:
- - type: Transform
- anchored: False
- pos: -7.5,46.5
- parent: 2
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 18439
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18440
- components:
- - type: Transform
- pos: -10.5,90.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasPipeFourway
- entities:
- - uid: 18441
- components:
- - type: Transform
- pos: 46.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18442
- components:
- - type: Transform
- pos: 40.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18443
- components:
- - type: Transform
- pos: 39.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18444
- components:
- - type: Transform
- pos: 52.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18445
- components:
- - type: Transform
- pos: -0.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18446
- components:
- - type: Transform
- pos: 23.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18447
- components:
- - type: Transform
- pos: -13.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18448
- components:
- - type: Transform
- pos: 17.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18449
- components:
- - type: Transform
- pos: 18.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18450
- components:
- - type: Transform
- pos: 46.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18451
- components:
- - type: Transform
- pos: 36.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18452
- components:
- - type: Transform
- pos: 51.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18453
- components:
- - type: Transform
- pos: 81.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18454
- components:
- - type: Transform
- pos: 40.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18455
- components:
- - type: Transform
- pos: -52.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18456
- components:
- - type: Transform
- pos: 39.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18457
- components:
- - type: Transform
- pos: -24.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18458
- components:
- - type: Transform
- pos: -51.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18459
- components:
- - type: Transform
- pos: -59.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18460
- components:
- - type: Transform
- pos: -26.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18461
- components:
- - type: Transform
- pos: -29.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18462
- components:
- - type: Transform
- pos: 8.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18463
- components:
- - type: Transform
- pos: -11.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18464
- components:
- - type: Transform
- pos: -59.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18465
- components:
- - type: Transform
- pos: -19.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18466
- components:
- - type: Transform
- pos: -32.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18467
- components:
- - type: Transform
- pos: -42.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18468
- components:
- - type: Transform
- pos: -0.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18469
- components:
- - type: Transform
- pos: -5.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18470
- components:
- - type: Transform
- pos: -53.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18471
- components:
- - type: Transform
- pos: 5.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18472
- components:
- - type: Transform
- pos: 4.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18473
- components:
- - type: Transform
- pos: -68.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18474
- components:
- - type: Transform
- pos: -69.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18475
- components:
- - type: Transform
- pos: -117.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18476
- components:
- - type: Transform
- pos: -119.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18477
- components:
- - type: Transform
- pos: -117.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18478
- components:
- - type: Transform
- pos: -119.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasPipeHalf
- entities:
- - uid: 18479
- components:
- - type: Transform
- pos: -63.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
-- proto: GasPipeStraight
- entities:
- - uid: 18480
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18481
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18482
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18484
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18485
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18486
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18487
- components:
- - type: Transform
- pos: -10.5,87.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18488
- components:
- - type: Transform
- pos: -10.5,86.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18489
- components:
- - type: Transform
- pos: -10.5,85.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18490
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18491
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18492
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18493
- components:
- - type: Transform
- pos: -2.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18494
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18495
- components:
- - type: Transform
- pos: -18.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18496
- components:
- - type: Transform
- pos: -28.5,78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18497
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18498
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18499
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18500
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18501
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18502
- components:
- - type: Transform
- pos: -22.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18503
- components:
- - type: Transform
- pos: -22.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18504
- components:
- - type: Transform
- pos: -22.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18505
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18506
- components:
- - type: Transform
- pos: -22.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18507
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18508
- components:
- - type: Transform
- pos: -22.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18509
- components:
- - type: Transform
- pos: -22.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18510
- components:
- - type: Transform
- pos: -22.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18511
- components:
- - type: Transform
- pos: -28.5,86.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18512
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18513
- components:
- - type: Transform
- pos: -22.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18514
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18515
- components:
- - type: Transform
- pos: -28.5,85.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18516
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18517
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18518
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18519
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18520
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18521
- components:
- - type: Transform
- pos: -28.5,89.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18522
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18523
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18524
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18525
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18526
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18527
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18528
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18529
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18530
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18531
- components:
- - type: Transform
- pos: 5.5,80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18532
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18533
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18534
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18535
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18536
- components:
- - type: Transform
- pos: -22.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18538
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18539
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18540
- components:
- - type: Transform
- pos: -28.5,88.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18541
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18542
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18543
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18544
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18545
- components:
- - type: Transform
- pos: -18.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18547
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18548
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18549
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18550
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18551
- components:
- - type: Transform
- pos: -7.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18552
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18553
-=======
- parent: 17589
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyEngineering
- entities:
- - uid: 17592
- components:
- - type: Transform
- parent: 17591
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyMedical
- entities:
- - uid: 17594
- components:
- - type: Transform
- parent: 17593
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyScience
- entities:
- - uid: 17596
- components:
- - type: Transform
- parent: 17595
- - type: Physics
- canCollide: False
-- proto: EncryptionKeySecurity
- entities:
- - uid: 17598
- components:
- - type: Transform
- parent: 17597
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyService
- entities:
- - uid: 17600
- components:
- - type: Transform
- parent: 17599
- - type: Physics
- canCollide: False
-- proto: EncryptionKeySyndie
- entities:
- - uid: 17601
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -111.46251,45.595146
- parent: 2
-- proto: EnergyDagger
- entities:
- - uid: 17602
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 84.35019,-1.4949656
- parent: 2
-- proto: EnergySword
- entities:
- - uid: 38942
- components:
- - type: Transform
- pos: 7.6209354,-1.4473572
- parent: 38344
-- proto: EpinephrineChemistryBottle
- entities:
- - uid: 17603
- components:
- - type: Transform
- pos: 66.31248,-2.3783243
- parent: 2
- - uid: 17604
- components:
- - type: Transform
- pos: 70.10729,12.77659
- parent: 2
- - uid: 17605
- components:
- - type: Transform
- pos: 25.701082,-24.420784
- parent: 2
- - uid: 17606
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.634602,-43.325718
- parent: 2
- - uid: 17607
- components:
- - type: Transform
- pos: 20.674541,-24.47581
- parent: 2
-- proto: ExtinguisherCabinetFilled
- entities:
- - uid: 17608
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,16.5
- parent: 2
- - uid: 17609
- components:
- - type: Transform
- pos: 51.5,10.5
- parent: 2
- - uid: 17610
- components:
- - type: Transform
- pos: 56.5,14.5
- parent: 2
- - uid: 17611
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,25.5
- parent: 2
- - uid: 17612
- components:
- - type: Transform
- pos: -7.5,26.5
- parent: 2
- - uid: 17613
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-59.5
- parent: 2
- - uid: 17614
- components:
- - type: Transform
- pos: -35.5,-7.5
- parent: 2
- - uid: 17615
- components:
- - type: Transform
- pos: 51.5,-1.5
- parent: 2
- - uid: 17616
- components:
- - type: Transform
- pos: 38.5,17.5
- parent: 2
- - uid: 17617
- components:
- - type: Transform
- pos: 59.5,-1.5
- parent: 2
- - uid: 17618
- components:
- - type: Transform
- pos: -10.5,12.5
- parent: 2
- - uid: 17619
- components:
- - type: Transform
- pos: -13.5,-3.5
- parent: 2
- - uid: 17620
- components:
- - type: Transform
- pos: -20.5,-31.5
- parent: 2
- - uid: 17621
- components:
- - type: Transform
- pos: -11.5,-36.5
- parent: 2
- - uid: 17622
- components:
- - type: Transform
- pos: -24.5,-81.5
- parent: 2
- - uid: 17623
- components:
- - type: Transform
- pos: -27.5,-78.5
- parent: 2
- - uid: 17624
- components:
- - type: Transform
- pos: -35.5,-13.5
- parent: 2
- - uid: 17625
- components:
- - type: Transform
- pos: 18.5,27.5
- parent: 2
- - uid: 17626
- components:
- - type: Transform
- pos: -43.5,49.5
- parent: 2
- - uid: 17627
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-41.5
- parent: 2
- - uid: 17628
- components:
- - type: Transform
- pos: -43.5,1.5
- parent: 2
- - uid: 17629
- components:
- - type: Transform
- pos: -18.5,-48.5
- parent: 2
- - uid: 17630
- components:
- - type: Transform
- pos: 15.5,-32.5
- parent: 2
- - uid: 17631
- components:
- - type: Transform
- pos: -66.5,-22.5
- parent: 2
- - uid: 17632
- components:
- - type: Transform
- pos: -16.5,-15.5
- parent: 2
- - uid: 17633
- components:
- - type: Transform
- pos: -11.5,-45.5
- parent: 2
- - uid: 17634
- components:
- - type: Transform
- pos: 33.5,-63.5
- parent: 2
- - uid: 17635
- components:
- - type: Transform
- pos: 22.5,73.5
- parent: 2
- - uid: 17636
- components:
- - type: Transform
- pos: 21.5,64.5
- parent: 2
- - uid: 17637
- components:
- - type: Transform
- pos: -43.5,-30.5
- parent: 2
- - uid: 17638
- components:
- - type: Transform
- pos: 12.5,37.5
- parent: 2
- - uid: 17639
- components:
- - type: Transform
- pos: -67.5,17.5
- parent: 2
- - uid: 17640
- components:
- - type: Transform
- pos: 19.5,-13.5
- parent: 2
- - uid: 17641
- components:
- - type: Transform
- pos: -29.5,12.5
- parent: 2
- - uid: 17642
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,24.5
- parent: 2
- - uid: 17643
- components:
- - type: Transform
- pos: -35.5,-24.5
- parent: 2
- - uid: 17644
- components:
- - type: Transform
- pos: 11.5,-10.5
- parent: 2
- - uid: 17645
- components:
- - type: Transform
- pos: -55.5,-9.5
- parent: 2
- - uid: 17646
- components:
- - type: Transform
- pos: 77.5,-20.5
- parent: 2
- - uid: 17647
- components:
- - type: Transform
- pos: -14.5,53.5
- parent: 2
- - uid: 17648
- components:
- - type: Transform
- pos: -22.5,53.5
- parent: 2
- - uid: 17649
- components:
- - type: Transform
- pos: -42.5,-15.5
- parent: 2
- - uid: 17650
- components:
- - type: Transform
- pos: 32.5,-70.5
- parent: 2
- - uid: 17651
- components:
- - type: Transform
- pos: 44.5,16.5
- parent: 2
- - uid: 17652
- components:
- - type: Transform
- pos: -7.5,-47.5
- parent: 2
- - uid: 17653
- components:
- - type: Transform
- pos: 8.5,86.5
- parent: 2
- - uid: 17654
- components:
- - type: Transform
- pos: -64.5,12.5
- parent: 2
- - uid: 17655
- components:
- - type: Transform
- pos: 29.5,-38.5
- parent: 2
- - uid: 17656
- components:
- - type: Transform
- pos: -30.5,-37.5
- parent: 2
- - uid: 17657
- components:
- - type: Transform
- pos: -26.5,-17.5
- parent: 2
- - uid: 17658
- components:
- - type: Transform
- pos: 39.5,-30.5
- parent: 2
- - uid: 17659
- components:
- - type: Transform
- pos: 65.5,-19.5
- parent: 2
- - uid: 17660
- components:
- - type: Transform
- pos: -32.5,17.5
- parent: 2
- - uid: 17661
- components:
- - type: Transform
- pos: -21.5,-74.5
- parent: 2
- - uid: 17662
- components:
- - type: Transform
- pos: -23.5,66.5
- parent: 2
- - uid: 17663
- components:
- - type: Transform
- pos: -27.5,23.5
- parent: 2
- - uid: 17664
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-51.5
- parent: 2
- - uid: 17665
- components:
- - type: Transform
- pos: 1.5,-28.5
- parent: 2
- - uid: 17666
- components:
- - type: Transform
- pos: 3.5,43.5
- parent: 2
- - uid: 17667
- components:
- - type: Transform
- pos: 10.5,-47.5
- parent: 2
- - uid: 17668
- components:
- - type: Transform
- pos: 1.5,-48.5
- parent: 2
- - uid: 17669
- components:
- - type: Transform
- pos: 8.5,50.5
- parent: 2
- - uid: 17670
- components:
- - type: Transform
- pos: -11.5,-43.5
- parent: 2
- - uid: 17671
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-24.5
- parent: 2
- - uid: 17672
- components:
- - type: Transform
- pos: 3.5,66.5
- parent: 2
- - uid: 17673
- components:
- - type: Transform
- pos: -1.5,50.5
- parent: 2
- - uid: 17674
- components:
- - type: Transform
- pos: -39.5,9.5
- parent: 2
- - uid: 17675
- components:
- - type: Transform
- pos: -20.5,18.5
- parent: 2
- - uid: 17676
- components:
- - type: Transform
- pos: 33.5,-29.5
- parent: 2
- - uid: 17677
- components:
- - type: Transform
- pos: 32.5,2.5
- parent: 2
- - uid: 17678
- components:
- - type: Transform
- pos: 32.5,3.5
- parent: 2
- - uid: 17679
- components:
- - type: Transform
- pos: 42.5,-59.5
- parent: 2
- - uid: 17680
- components:
- - type: Transform
- pos: -44.5,-12.5
- parent: 2
- - uid: 17681
- components:
- - type: Transform
- pos: -20.5,-22.5
- parent: 2
- - uid: 17682
- components:
- - type: Transform
- pos: -66.5,-28.5
- parent: 2
- - uid: 17683
- components:
- - type: Transform
- pos: 5.5,-17.5
- parent: 2
- - uid: 17684
- components:
- - type: Transform
- pos: -5.5,-36.5
- parent: 2
- - uid: 17685
- components:
- - type: Transform
- pos: -32.5,31.5
- parent: 2
- - uid: 17686
- components:
- - type: Transform
- pos: -30.5,-46.5
- parent: 2
- - uid: 17687
- components:
- - type: Transform
- pos: 32.5,-7.5
- parent: 2
- - uid: 17688
- components:
- - type: Transform
- pos: 27.5,12.5
- parent: 2
- - uid: 17689
- components:
- - type: Transform
- pos: -6.5,-17.5
- parent: 2
- - uid: 17690
- components:
- - type: Transform
- pos: 19.5,2.5
- parent: 2
- - uid: 17691
- components:
- - type: Transform
- pos: 54.5,-23.5
- parent: 2
- - uid: 17692
- components:
- - type: Transform
- pos: -35.5,3.5
- parent: 2
- - uid: 17693
- components:
- - type: Transform
- pos: -30.5,56.5
- parent: 2
- - uid: 17694
- components:
- - type: Transform
- pos: 15.5,9.5
- parent: 2
- - uid: 17695
- components:
- - type: Transform
- pos: 3.5,-36.5
- parent: 2
- - uid: 17696
- components:
- - type: Transform
- pos: -28.5,40.5
- parent: 2
- - uid: 17697
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 77.5,3.5
- parent: 2
- - uid: 38943
- components:
- - type: Transform
- pos: -20.5,-0.5
- parent: 38344
- - uid: 38944
- components:
- - type: Transform
- pos: 1.5,5.5
- parent: 38344
- - uid: 38945
- components:
- - type: Transform
- pos: -11.5,11.5
- parent: 38344
- - uid: 38946
- components:
- - type: Transform
- pos: 3.5,-0.5
- parent: 38344
-- proto: FaxMachineBase
- entities:
- - uid: 17698
- components:
- - type: Transform
- pos: 0.5,14.5
- parent: 2
- - type: FaxMachine
- name: Мостик
- - uid: 17699
- components:
- - type: Transform
- pos: 51.5,7.5
- parent: 2
- - type: FaxMachine
- name: Офис вардена
- - uid: 17700
- components:
- - type: Transform
- pos: 38.5,18.5
- parent: 2
- - type: FaxMachine
- name: Офис ГСБ
- - uid: 17701
- components:
- - type: Transform
- pos: -21.5,-6.5
- parent: 2
- - type: FaxMachine
- name: Библиотека
- - uid: 17702
- components:
- - type: Transform
- pos: -63.5,9.5
- parent: 2
- - type: FaxMachine
- name: Офис СИ
- - uid: 17703
- components:
- - type: Transform
- pos: 32.5,8.5
- parent: 2
- - type: FaxMachine
- name: Офис детектива
- - uid: 17704
- components:
- - type: Transform
- pos: 24.5,-46.5
- parent: 2
- - type: FaxMachine
- name: Офис ГВ
- - uid: 17705
- components:
- - type: Transform
- pos: -16.5,-41.5
- parent: 2
- - type: FaxMachine
- name: Офис НР
- - uid: 17706
- components:
- - type: Transform
- pos: 34.5,-1.5
- parent: 2
- - type: FaxMachine
- name: Офис АВД
- - uid: 17707
- components:
- - type: Transform
- pos: 27.5,35.5
- parent: 2
- - type: FaxMachine
- name: Офис КМ
- - uid: 17708
- components:
- - type: Transform
- pos: -8.5,0.5
- parent: 2
- - uid: 17709
- components:
- - type: Transform
- pos: 83.5,5.5
- parent: 2
- - type: FaxMachine
- name: Пермабриг
-- proto: FaxMachineCaptain
- entities:
- - uid: 17710
- components:
- - type: Transform
- pos: 9.5,6.5
- parent: 2
- - type: FaxMachine
- name: Офис Капитана
-- proto: FenceMetalBroken
- entities:
- - uid: 17711
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-50.5
- parent: 2
- - uid: 17712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-17.5
- parent: 2
- - uid: 38947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,15.5
- parent: 38344
-- proto: FenceMetalGate
- entities:
- - uid: 17713
- components:
- - type: Transform
- pos: 50.5,-50.5
- parent: 2
-- proto: FenceMetalStraight
- entities:
- - uid: 17714
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-50.5
- parent: 2
- - uid: 17715
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-50.5
- parent: 2
- - uid: 17716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-50.5
- parent: 2
- - uid: 38948
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,15.5
- parent: 38344
- - uid: 38949
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,15.5
- parent: 38344
- - uid: 38950
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,15.5
- parent: 38344
- - uid: 38951
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,15.5
- parent: 38344
- - uid: 38952
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,15.5
- parent: 38344
-- proto: filingCabinet
- entities:
- - uid: 17717
- components:
- - type: Transform
- pos: 18.5,34.5
- parent: 2
- - uid: 17718
- components:
- - type: Transform
- pos: -25.5,-12.5
- parent: 2
- - uid: 17719
- components:
- - type: Transform
- pos: 32.5,12.5
- parent: 2
- - uid: 17720
- components:
- - type: Transform
- pos: -14.5,-3.5
- parent: 2
- - uid: 17721
- components:
- - type: Transform
- pos: 14.5,0.5
- parent: 2
- - uid: 17722
- components:
- - type: Transform
- pos: 17.5,34.5
- parent: 2
- - uid: 17723
- components:
- - type: Transform
- pos: 3.5,-61.5
- parent: 2
- - uid: 17724
- components:
- - type: Transform
- pos: 3.5,61.5
- parent: 2
- - uid: 17725
- components:
- - type: Transform
- pos: 58.5,-2.5
- parent: 2
-- proto: filingCabinetDrawer
- entities:
- - uid: 17726
- components:
- - type: Transform
- pos: 2.5,37.5
- parent: 2
- - uid: 17727
- components:
- - type: Transform
- pos: -26.5,23.5
- parent: 2
- - uid: 17728
- components:
- - type: Transform
- pos: 31.5,-69.5
- parent: 2
- - uid: 17729
- components:
- - type: Transform
- pos: 14.5,-40.5
- parent: 2
- - uid: 17730
- components:
- - type: Transform
- pos: -16.5,-38.5
- parent: 2
- - uid: 17731
- components:
- - type: Transform
- pos: 37.5,12.5
- parent: 2
- - uid: 17732
- components:
- - type: Transform
- pos: 25.5,26.5
- parent: 2
- - uid: 17733
- components:
- - type: Transform
- pos: 20.5,-42.5
- parent: 2
- - uid: 17734
- components:
- - type: Transform
- pos: 40.5,-59.5
- parent: 2
- - uid: 17735
- components:
- - type: Transform
- pos: 3.5,-46.5
- parent: 2
- - uid: 17736
- components:
- - type: Transform
- pos: -65.5,11.5
- parent: 2
- - uid: 17737
- components:
- - type: Transform
- pos: 29.5,34.5
- parent: 2
- - uid: 17738
- components:
- - type: Transform
- pos: -26.5,-31.5
- parent: 2
- - uid: 17739
- components:
- - type: Transform
- pos: 27.5,40.5
- parent: 2
- - uid: 17740
- components:
- - type: Transform
- pos: -33.5,-37.5
- parent: 2
-- proto: filingCabinetDrawerRandom
- entities:
- - uid: 17741
- components:
- - type: Transform
- pos: 59.5,30.5
- parent: 2
- - uid: 17742
- components:
- - type: Transform
- pos: 59.5,31.5
- parent: 2
- - uid: 17743
- components:
- - type: Transform
- pos: 0.5,-16.5
- parent: 2
- - uid: 17744
- components:
- - type: Transform
- pos: 53.5,19.5
- parent: 2
- - uid: 17745
- components:
- - type: Transform
- pos: -21.5,-8.5
- parent: 2
- - uid: 17746
- components:
- - type: Transform
- pos: 25.5,2.5
- parent: 2
- - uid: 17747
- components:
- - type: Transform
- pos: 25.5,-5.5
- parent: 2
- - uid: 17748
- components:
- - type: Transform
- pos: -40.5,60.5
- parent: 2
- - uid: 17749
- components:
- - type: Transform
- pos: -40.5,-8.5
- parent: 2
-- proto: filingCabinetRandom
- entities:
- - uid: 17750
- components:
- - type: Transform
- pos: 54.5,19.5
- parent: 2
- - uid: 17751
- components:
- - type: Transform
- pos: 31.5,-5.5
- parent: 2
- - uid: 17752
- components:
- - type: Transform
- pos: -35.5,63.5
- parent: 2
- - uid: 17753
- components:
- - type: Transform
- pos: -33.5,59.5
- parent: 2
- - uid: 17754
- components:
- - type: Transform
- pos: 32.5,-41.5
- parent: 2
- - uid: 17755
- components:
- - type: Transform
- pos: -33.5,63.5
- parent: 2
- - uid: 38953
- components:
- - type: Transform
- pos: -22.5,30.5
- parent: 38344
- - uid: 38954
- components:
- - type: Transform
- pos: -22.5,31.5
- parent: 38344
-- proto: filingCabinetTall
- entities:
- - uid: 17756
- components:
- - type: Transform
- pos: 9.5,37.5
- parent: 2
- - uid: 17757
- components:
- - type: Transform
- pos: -13.5,-0.5
- parent: 2
-- proto: FireAlarm
- entities:
- - uid: 17758
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-28.5
- parent: 2
- - type: DeviceList
- devices:
- - 18010
- - 18030
- - 18087
- - 18086
- - 18011
- - 18157
- - 18031
- - 18013
- - 18114
- - 17967
- - 18163
- - 810
- - uid: 17759
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-0.5
- parent: 2
- - type: DeviceList
- devices:
- - 18005
- - 18092
- - 18174
- - 18194
- - 18095
- - 18144
- - 18178
- - 18175
- - 18172
- - uid: 17760
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,2.5
- parent: 2
- - uid: 17761
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,6.5
- parent: 2
- - type: DeviceList
- devices:
- - 17965
- - 17998
- - 17958
- - 17962
- - 17969
- - 17973
- - uid: 17762
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-12.5
- parent: 2
- - type: DeviceList
- devices:
- - 18125
- - 18151
- - 18115
- - 18201
- - 18181
- - 18066
- - uid: 17763
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-40.5
- parent: 2
- - type: DeviceList
- devices:
- - 18051
- - 18048
- - 18185
- - 18159
- - 745
- - uid: 17764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,7.5
- parent: 2
- - type: DeviceList
- devices:
- - 17884
- - 17885
- - 17883
- - 763
- - uid: 17765
- components:
- - type: Transform
- pos: -29.5,-0.5
- parent: 2
- - type: DeviceList
- devices:
- - 17869
- - 17876
- - 17877
- - 17878
- - 17870
- - 17880
- - 746
- - uid: 17766
- components:
- - type: Transform
- pos: -24.5,16.5
- parent: 2
- - type: DeviceList
- devices:
- - 18116
- - 18068
- - 18190
- - 18056
- - 747
- - uid: 17767
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,14.5
- parent: 2
- - uid: 17768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-41.5
- parent: 2
- - type: DeviceList
- devices:
- - 18061
- - 18063
- - 18062
- - 18185
- - 18159
- - 837
- - uid: 17769
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-42.5
- parent: 2
- - type: DeviceList
- devices:
- - 18032
- - 18028
- - 18051
- - 18048
- - 838
- - uid: 17770
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 80.5,-22.5
- parent: 2
- - type: DeviceList
- devices:
- - 781
- - 780
- - 18179
- - 18170
- - 18162
- - 18171
- - uid: 17771
- components:
- - type: Transform
- pos: 89.5,15.5
- parent: 2
- - uid: 17772
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,71.5
- parent: 2
- - type: DeviceList
- devices:
- - 18074
- - 18072
- - 18083
- - 803
- - 769
- - uid: 17773
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,26.5
- parent: 2
- - type: DeviceList
- devices:
- - 17992
- - 18253
- - 18254
- - 18255
- - 806
- - 18124
- - 18257
- - 18256
- - 814
- - uid: 17774
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,36.5
- parent: 2
- - type: DeviceList
- devices:
- - 18241
- - 17963
- - 813
- - uid: 17775
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,21.5
- parent: 2
- - uid: 17776
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,46.5
- parent: 2
- - type: DeviceList
- devices:
- - 18247
- - 18248
- - 18242
- - 18241
- - 18253
- - 17992
- - 18246
- - 18249
- - 18251
- - 807
- - uid: 17777
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,54.5
- parent: 2
- - type: DeviceList
- devices:
- - 18245
- - 18244
- - 808
- - 18249
- - 18246
- - 17993
- - 18247
- - 18248
- - 18243
- - uid: 17778
- components:
- - type: Transform
- pos: -57.5,59.5
- parent: 2
- - type: DeviceList
- devices:
- - 17997
- - 18252
- - 17993
- - uid: 17779
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,57.5
- parent: 2
- - type: DeviceList
- devices:
- - 18251
- - 18252
- - 742
- - uid: 17780
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,10.5
- parent: 2
- - type: DeviceList
- devices:
- - 805
- - 18081
- - 18069
- - 18122
- - 17954
- - 18258
- - uid: 17781
- components:
- - type: Transform
- pos: -32.5,7.5
- parent: 2
- - type: DeviceList
- devices:
- - 18122
- - 18069
- - 18081
- - 18127
- - 18057
- - 18058
- - 815
- - uid: 17782
- components:
- - type: Transform
- pos: -21.5,7.5
- parent: 2
- - type: DeviceList
- devices:
- - 18130
- - 18080
- - 18077
- - 18058
- - 18057
- - 18127
- - 18116
- - 772
- - 18068
- - uid: 17783
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,15.5
- parent: 2
- - type: DeviceList
- devices:
- - 18192
- - 18131
- - 18152
- - 18190
- - 18056
- - 18089
- - 18040
- - 18156
- - 773
- - uid: 17784
- components:
- - type: Transform
- pos: -15.5,25.5
- parent: 2
- - type: DeviceList
- devices:
- - 18089
- - 18040
- - 18156
- - 18188
- - 18041
- - 18189
- - 18021
- - 18168
- - 18071
- - 818
- - uid: 17785
- components:
- - type: Transform
- pos: -1.5,25.5
- parent: 2
- - type: DeviceList
- devices:
- - 18021
- - 18168
- - 18071
- - 819
- - 18177
- - 18173
- - 18004
- - 18099
- - 18009
- - uid: 17786
- components:
- - type: Transform
- pos: 13.5,25.5
- parent: 2
- - type: DeviceList
- devices:
- - 18177
- - 18173
- - 18004
- - 820
- - 18176
- - 18100
- - 18016
- - 18003
- - 18022
- - uid: 17787
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,13.5
- parent: 2
- - type: DeviceList
- devices:
- - 18022
- - 18003
- - 18016
- - 821
- - 18005
- - 18092
- - 18174
- - uid: 17788
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-13.5
- parent: 2
- - type: DeviceList
- devices:
- - 18136
- - 18017
- - 18178
- - 18175
- - 18172
- - 18125
- - 18151
- - 18115
- - 18200
- - 18149
- - 18118
- - 826
- - uid: 17789
- components:
- - type: Transform
- pos: 10.5,-17.5
- parent: 2
- - type: DeviceList
- devices:
- - 18011
- - 18157
- - 18030
- - 18010
- - 17964
- - 17978
- - 18000
- - 18200
- - 18149
- - 18118
- - 827
- - uid: 17790
- components:
- - type: Transform
- pos: -15.5,-32.5
- parent: 2
- - type: DeviceList
- devices:
- - 18076
- - 18139
- - 17956
- - 18237
- - 18238
- - 18199
- - 18150
- - 18064
- - 839
- - uid: 17791
- components:
- - type: Transform
- pos: -9.5,-17.5
- parent: 2
- - type: DeviceList
- devices:
- - 18001
- - 17995
- - 17987
- - 18161
- - 18167
- - 18043
- - 18052
- - 18033
- - 18053
- - 18084
- - 740
- - uid: 17792
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-14.5
- parent: 2
- - type: DeviceList
- devices:
- - 18033
- - 18053
- - 18084
- - 18070
- - 18180
- - 18166
- - 18050
- - 18020
- - 829
- - uid: 17793
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-0.5
- parent: 2
- - type: DeviceList
- devices:
- - 18152
- - 18131
- - 18192
- - 18070
- - 18180
- - 18166
- - 817
- - 17869
- - 17876
- - 18080
- - 18130
- - 18077
- - uid: 17794
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-13.5
- parent: 2
- - type: DeviceList
- devices:
- - 816
- - 17881
- - 17880
- - uid: 17795
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,42.5
- parent: 2
- - type: DeviceList
- devices:
- - 17914
- - 17913
- - 17920
- - 17916
- - 17929
- - 17903
- - 17901
- - 17921
- - 17923
- - 17931
- - 17940
- - 17926
- - 18188
- - 18041
- - 18189
- - 17906
- - 17934
- - 17941
- - 17904
- - 17907
- - 17905
- - 17933
- - 17936
- - 17938
- - 17939
- - 17900
- - 853
- - 851
- - uid: 17796
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,28.5
- parent: 2
- - type: DeviceList
- devices:
- - 17900
- - 17939
- - 17938
- - 17936
- - 17933
- - 17905
- - 17907
- - 17904
- - 17941
- - 17934
- - 17906
- - 849
- - uid: 17797
- components:
- - type: Transform
- pos: -13.5,35.5
- parent: 2
- - type: DeviceList
- devices:
- - 17928
- - 17922
- - 17925
- - 17911
- - 17908
- - 17909
- - 17935
- - 17912
- - 17917
- - 17919
- - 17918
- - 768
- - uid: 17798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,37.5
- parent: 2
- - type: DeviceList
- devices:
- - 17915
- - 17898
- - 17942
- - 17899
- - 17902
- - 17924
- - 17932
- - 17927
- - 17943
- - 17930
- - 17937
- - 18023
- - 18107
- - 18142
- - 18042
- - 18165
- - 793
- - uid: 17799
- components:
- - type: Transform
- pos: -8.5,51.5
- parent: 2
- - type: DeviceList
- devices:
- - 18120
- - 18121
- - 804
- - uid: 17800
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,55.5
- parent: 2
- - type: DeviceList
- devices:
- - 18059
- - 18060
- - 18119
- - 18146
- - 18079
- - 18102
- - 18103
- - 18105
- - 795
- - 794
- - uid: 17801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,65.5
- parent: 2
- - type: DeviceList
- devices:
- - 854
- - uid: 17802
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,65.5
- parent: 2
- - type: DeviceList
- devices:
- - 18078
- - 18073
- - 18145
- - 18198
- - 18129
- - 18079
- - 18146
- - 18119
- - 18060
- - 18059
- - 855
- - uid: 17803
- components:
- - type: Transform
- pos: -16.5,70.5
- parent: 2
- - uid: 17804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,45.5
- parent: 2
- - type: DeviceList
- devices:
- - 18165
- - 18042
- - 18142
- - 18023
- - 18107
- - 850
- - uid: 17805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,29.5
- parent: 2
- - type: DeviceList
- devices:
- - 17994
- - 18091
- - 17986
- - 18176
- - 18100
- - 18099
- - 18009
- - 750
- - uid: 17806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,32.5
- parent: 2
- - type: DeviceList
- devices:
- - 18196
- - 17986
- - 789
- - uid: 17807
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,36.5
- parent: 2
- - type: DeviceList
- devices:
- - 17972
- - 18137
- - 17994
- - 17971
- - 18143
- - 790
- - uid: 17808
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,44.5
- parent: 2
- - type: DeviceList
- devices:
- - 17972
- - 847
- - uid: 17809
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,39.5
- parent: 2
- - type: DeviceList
- devices:
- - 18143
- - 17971
- - 18196
- - 17959
- - 17970
- - 18096
- - 18111
- - 18110
- - 17982
- - 18094
- - 743
- - 791
- - uid: 17810
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,3.5
- parent: 2
- - type: DeviceList
- devices:
- - 18022
- - 18003
- - 18016
- - 821
- - 18005
- - 18092
- - 18174
- - 18194
- - 18095
- - 18144
- - 18112
- - 18195
- - 18006
- - 822
- - uid: 17811
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,3.5
- parent: 2
- - type: DeviceList
- devices:
- - 18022
- - 18003
- - 18016
- - 821
- - 18005
- - 18092
- - 18174
- - 18194
- - 18095
- - 18144
- - 18112
- - 18195
- - 18006
- - 822
- - 17944
- - 17893
- - 17894
- - 823
- - uid: 17812
- components:
- - type: Transform
- pos: 34.5,7.5
- parent: 2
- - type: DeviceList
- devices:
- - 17944
- - 17893
- - 17894
- - 18186
- - 18187
- - 824
- - uid: 17813
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,15.5
- parent: 2
- - uid: 17814
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,23.5
- parent: 2
- - uid: 17815
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,23.5
- parent: 2
- - uid: 17816
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,2.5
- parent: 2
- - uid: 17817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,-1.5
- parent: 2
- - uid: 17818
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,11.5
- parent: 2
- - uid: 17819
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 81.5,8.5
- parent: 2
- - uid: 17820
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-17.5
- parent: 2
- - uid: 17821
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-29.5
- parent: 2
- - type: DeviceList
- devices:
- - 18114
- - 18013
- - 18158
- - 18045
- - 18184
- - 18035
- - 18154
- - 18138
- - 18214
- - 834
- - uid: 17822
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-36.5
- parent: 2
- - uid: 17823
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-36.5
- parent: 2
- - type: DeviceList
- devices:
- - 18031
- - 18123
- - 18037
- - 18182
- - 835
- - uid: 17824
- components:
- - type: Transform
- pos: 24.5,-32.5
- parent: 2
- - type: DeviceList
- devices:
- - 18138
- - 18154
- - 18035
- - 18062
- - 18063
- - 18061
- - 836
- - uid: 17825
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-36.5
- parent: 2
- - type: DeviceList
- devices:
- - 18034
- - 18038
- - 18113
- - 17975
- - 18123
- - 18036
- - 18140
- - 18012
- - uid: 17826
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-42.5
- parent: 2
- - type: DeviceList
- devices:
- - 18036
- - 18140
- - 18012
- - 18133
- - 18153
- - 812
- - uid: 17827
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-61.5
- parent: 2
- - type: DeviceList
- devices:
- - 18153
- - 18007
- - 18133
- - 809
- - 18106
- - 18104
- - 18101
- - uid: 17828
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-77.5
- parent: 2
- - type: DeviceList
- devices:
- - 18206
- - 18205
- - 18101
- - 18104
- - 18106
- - 18208
- - 18207
- - 17991
- - 17974
- - 833
- - 832
- - 811
- - uid: 17829
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-28.5
- parent: 2
- - type: DeviceList
- devices:
- - 18161
- - 18167
- - 18052
- - 18043
- - 17976
- - 18002
- - 18097
- - 18065
- - 18117
- - 748
- - uid: 17830
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-27.5
- parent: 2
- - type: DeviceList
- devices:
- - 17990
- - 17960
- - 17961
- - 841
- - uid: 17831
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-36.5
- parent: 2
- - type: DeviceList
- devices:
- - 17990
- - 17960
- - 17961
- - 18064
- - 18150
- - 18199
- - 17981
- - 17983
- - 840
- - uid: 17832
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-41.5
- parent: 2
- - uid: 17833
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-47.5
- parent: 2
- - uid: 17834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-38.5
- parent: 2
- - type: DeviceList
- devices:
- - 17981
- - 17980
- - 842
- - uid: 17835
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-41.5
- parent: 2
- - type: DeviceList
- devices:
- - 17983
- - 17984
- - 18098
- - 843
- - uid: 17836
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-48.5
- parent: 2
- - type: DeviceList
- devices:
- - 17980
- - 17984
- - 18169
- - 18044
- - 845
- - uid: 17837
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-50.5
- parent: 2
- - type: DeviceList
- devices:
- - 18044
- - 846
- - uid: 17838
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-47.5
- parent: 2
- - type: DeviceList
- devices:
- - 18147
- - 18141
- - 18169
- - 18098
- - 844
- - uid: 17839
- components:
- - type: Transform
- pos: -0.5,-17.5
- parent: 2
- - type: DeviceList
- devices:
- - 18011
- - 18157
- - 18030
- - 18010
- - 17964
- - 17978
- - 18000
- - 18200
- - 18149
- - 18118
- - 827
- - 17987
- - 17995
- - 18001
- - 18082
- - 18160
- - 18075
- - 828
- - uid: 17840
- components:
- - type: Transform
- pos: -13.5,-6.5
- parent: 2
- - type: DeviceList
- devices:
- - 18020
- - 18050
- - 17895
- - 17892
- - 774
- - 17953
- - uid: 17841
- components:
- - type: Transform
- pos: 0.49999997,-6.5
- parent: 2
- - type: DeviceList
- devices:
- - 17896
- - 17897
- - 17892
- - 17895
- - 775
- - 17950
- - 17949
- - uid: 17842
- components:
- - type: Transform
- pos: 12.5,-6.5
- parent: 2
- - type: DeviceList
- devices:
- - 18017
- - 18136
- - 17896
- - 17897
- - 741
- - 18264
- - 17949
- - uid: 17843
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-16.5
- parent: 2
- - type: DeviceList
- devices:
- - 18201
- - 18181
- - 18066
- - 831
- - 18170
- - 18179
- - 779
- - 778
- - uid: 17844
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,25.5
- parent: 2
- - type: DeviceList
- devices:
- - 17926
- - 17940
- - 17931
- - 17923
- - 17921
- - 17901
- - 17903
- - 17929
- - 17916
- - 17920
- - 17913
- - 17914
- - 17928
- - 17922
- - 17925
- - 17911
- - 17908
- - 17909
- - 17935
- - 17912
- - 17917
- - 17919
- - 17918
- - uid: 17845
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,44.5
- parent: 2
- - type: DeviceList
- devices:
- - 17915
- - 17898
- - 17942
- - 17899
- - 17902
- - 17924
- - 17932
- - 17927
- - 17943
- - 17930
- - 17937
- - 18120
- - 18121
- - 18105
- - 18103
- - 18102
- - 852
- - uid: 17846
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,71.5
- parent: 2
- - type: DeviceList
- devices:
- - 17867
- - 17862
- - 17864
- - 801
- - 802
- - uid: 17847
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,71.5
- parent: 2
- - type: DeviceList
- devices:
- - 799
- - 17888
- - 17889
- - 18126
- - 18026
- - 18018
- - uid: 17848
- components:
- - type: Transform
- pos: 87.5,3.5
- parent: 2
- - type: DeviceList
- devices:
- - 857
- - 856
- - 18240
- - 18262
- - 18263
- - uid: 38955
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,0.5
- parent: 38344
- - type: DeviceList
- devices:
- - 38959
- - 38962
- - 38961
- - 38372
- - uid: 38956
- components:
- - type: Transform
- pos: -0.5,5.5
- parent: 38344
- - type: DeviceList
- devices:
- - 38960
- - 38963
- - 38371
- - uid: 38957
- components:
- - type: Transform
- pos: -0.5,-0.5
- parent: 38344
- - type: DeviceList
- devices:
- - 38964
- - 38965
- - uid: 38958
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,0.5
- parent: 38344
- - type: DeviceList
- devices:
- - 38967
- - 38966
-- proto: FireAxeCabinetFilled
- entities:
- - uid: 17849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,12.5
- parent: 2
- - uid: 17850
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,37.5
- parent: 2
- - uid: 17851
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: -50.5,26.5
- parent: 2
-- proto: FireAxeCabinetOpen
- entities:
- - uid: 17852
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-26.5
- parent: 2
-- proto: FireExtinguisher
- entities:
- - uid: 17853
- components:
- - type: Transform
- pos: -44.574673,-22.51657
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 17854
- components:
- - type: Transform
- pos: -34.773117,-55.435936
- parent: 2
- - uid: 17855
- components:
- - type: Transform
- pos: -34.319992,-55.435936
- parent: 2
-- proto: Firelock
- entities:
- - uid: 17856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-7.5
- parent: 2
- - uid: 17857
- components:
- - type: Transform
- pos: -54.5,-39.5
- parent: 2
- - uid: 17858
- components:
- - type: Transform
- pos: 9.5,80.5
- parent: 2
- - uid: 17859
- components:
- - type: Transform
- pos: -42.5,36.5
- parent: 2
- - uid: 17860
- components:
- - type: Transform
- pos: -41.5,53.5
- parent: 2
- - uid: 17861
- components:
- - type: Transform
- pos: -42.5,26.5
- parent: 2
- - uid: 17862
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17846
- - 125
- - uid: 17863
- components:
- - type: Transform
- pos: -40.5,57.5
- parent: 2
- - uid: 17864
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17846
- - 125
- - uid: 17865
- components:
- - type: Transform
- pos: -53.5,-33.5
- parent: 2
- - uid: 17866
- components:
- - type: Transform
- pos: -41.5,-7.5
- parent: 2
- - uid: 17867
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17846
- - 125
- - uid: 17868
- components:
- - type: Transform
- pos: -29.5,39.5
- parent: 2
- - uid: 17869
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17765
- - 17793
- - 63
- - uid: 17870
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17765
- - uid: 17871
- components:
- - type: Transform
- pos: -72.5,-19.5
- parent: 2
- - uid: 17872
- components:
- - type: Transform
- pos: -63.5,-30.5
- parent: 2
- - uid: 17873
- components:
- - type: Transform
- pos: -56.5,-19.5
- parent: 2
- - uid: 17874
- components:
- - type: Transform
- pos: -47.5,-19.5
- parent: 2
- - uid: 17875
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-3.5
- parent: 2
- - uid: 17876
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-2.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17765
- - 17793
- - 63
- - uid: 17877
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17765
- - 63
- - uid: 17878
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17765
- - 63
- - uid: 17879
- components:
- - type: Transform
- pos: -54.5,-23.5
- parent: 2
- - uid: 17880
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17765
- - 17794
- - 63
- - uid: 17881
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17794
- - 63
- - uid: 17882
- components:
- - type: Transform
- pos: -36.5,-2.5
- parent: 2
- - uid: 17883
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,6.5
- parent: 2
- - uid: 17884
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 87
- - uid: 17885
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 87
- - uid: 17886
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,-40.5
- parent: 2
- - uid: 17887
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,-40.5
- parent: 2
- - uid: 17888
- components:
- - type: Transform
- pos: 9.5,76.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17847
- - 77
- - uid: 17889
- components:
- - type: Transform
- pos: 9.5,75.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17847
- - 77
- - uid: 17890
- components:
- - type: Transform
- pos: 9.5,81.5
- parent: 2
- - uid: 17891
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,48.5
- parent: 2
-- proto: FirelockEdge
- entities:
- - uid: 17892
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17840
- - 17841
- - 64
- - uid: 17893
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17811
- - 17812
- - 84
- - uid: 17894
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17811
- - 17812
- - 84
- - uid: 17895
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17840
- - 17841
- - 64
- - uid: 17896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17841
- - 17842
- - 64
- - uid: 17897
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17841
- - 17842
- - 64
- - uid: 17898
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17899
->>>>>>> master
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -0.5,39.5
- parent: 2
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 18554
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18555
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18556
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18557
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18558
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18559
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18560
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18561
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18562
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18563
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18564
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18565
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18566
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18567
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18568
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18569
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18570
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18571
- components:
- - type: Transform
- pos: -16.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18572
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18573
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18574
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18575
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18576
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18577
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18578
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18579
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18581
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18582
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18583
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18585
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18586
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18587
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18588
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18589
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18590
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18591
- components:
- - type: Transform
- pos: -24.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18592
- components:
- - type: Transform
- pos: 5.5,79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18593
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18594
- components:
- - type: Transform
- pos: -12.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18595
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18596
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18597
- components:
- - type: Transform
- pos: 2.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18598
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18599
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18601
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18602
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18604
- components:
- - type: Transform
- pos: -28.5,84.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18605
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18606
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18607
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18608
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18609
- components:
- - type: Transform
- pos: -17.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18610
- components:
- - type: Transform
- pos: -28.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18611
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18612
- components:
- - type: Transform
- pos: -22.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18613
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18614
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18615
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18616
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18617
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18618
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18619
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18620
- components:
- - type: Transform
- anchored: False
- pos: -18.5,25.5
- parent: 2
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 18621
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18622
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18623
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18624
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18625
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18626
- components:
- - type: Transform
- pos: -14.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18627
- components:
- - type: Transform
- pos: -10.5,84.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18628
- components:
- - type: Transform
- pos: -14.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18629
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18630
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18631
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18632
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18633
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18634
- components:
- - type: Transform
- pos: -14.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18635
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18636
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18637
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18638
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18639
- components:
- - type: Transform
- pos: 2.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18640
- components:
- - type: Transform
- pos: -52.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18641
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18642
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18643
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18644
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18645
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18646
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 81.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18647
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18649
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18650
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18651
- components:
- - type: Transform
- pos: 28.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18652
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18653
- components:
- - type: Transform
- pos: 72.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18654
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18655
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18656
- components:
- - type: Transform
- pos: -60.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18657
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18658
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18659
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18660
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18662
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18663
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18664
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18665
- components:
- - type: Transform
- pos: -53.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18666
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18667
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18668
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18669
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18670
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18671
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18672
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18673
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18674
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18675
- components:
- - type: Transform
- pos: -64.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18676
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18677
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18678
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18679
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18680
- components:
- - type: Transform
- pos: -62.5,60.5
- parent: 2
- - uid: 18681
- components:
- - type: Transform
- pos: -6.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18682
- components:
- - type: Transform
- pos: 46.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18683
- components:
- - type: Transform
- pos: -42.5,18.5
- parent: 2
- - uid: 18684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18685
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18686
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18688
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18689
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18690
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18691
- components:
- - type: Transform
- pos: -17.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18692
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18693
- components:
- - type: Transform
- pos: 56.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18694
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18695
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18696
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18697
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18698
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18699
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18700
- components:
- - type: Transform
- pos: -52.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18701
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18702
- components:
- - type: Transform
- pos: -9.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18703
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18704
- components:
- - type: Transform
- pos: -21.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18705
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18706
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18707
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18708
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18710
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18711
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18713
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18714
- components:
- - type: Transform
- pos: 73.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18715
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18716
- components:
- - type: Transform
- pos: -20.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18717
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18718
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18719
- components:
- - type: Transform
- pos: 44.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18720
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18721
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18722
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18723
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18724
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18725
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18726
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18727
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18728
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18730
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18731
- components:
- - type: Transform
- pos: -42.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18732
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18733
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18734
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18736
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18737
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18738
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18739
- components:
- - type: Transform
- pos: -0.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18740
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18741
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18742
- components:
- - type: Transform
- pos: 16.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18743
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18745
- components:
- - type: Transform
- pos: -1.5,-79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18746
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18747
- components:
- - type: Transform
- pos: -73.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18749
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18751
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18752
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18753
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18754
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18755
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 81.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18756
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18758
- components:
- - type: Transform
- pos: 61.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18759
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18760
- components:
- - type: Transform
- pos: -10.5,83.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18761
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18762
- components:
- - type: Transform
- pos: -20.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18763
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18764
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18765
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18766
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18769
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18770
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18771
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18772
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18773
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18774
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18775
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18776
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18777
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18778
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18779
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18780
- components:
- - type: Transform
- pos: -62.5,62.5
- parent: 2
- - uid: 18781
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18782
- components:
- - type: Transform
- pos: 74.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18783
- components:
- - type: Transform
- pos: -66.5,62.5
- parent: 2
- - uid: 18784
- components:
- - type: Transform
- pos: 0.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18785
- components:
- - type: Transform
- pos: -17.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18786
- components:
- - type: Transform
- pos: 14.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18787
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18789
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18790
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18791
- components:
- - type: Transform
- pos: 73.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18792
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18793
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18794
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18796
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18798
- components:
- - type: Transform
- pos: 14.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18799
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18800
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18801
- components:
- - type: Transform
- pos: -58.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18802
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18803
- components:
- - type: Transform
- pos: 73.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18804
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18805
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18806
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18807
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18808
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18809
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18810
- components:
- - type: Transform
- pos: -51.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18811
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18813
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18814
- components:
- - type: Transform
- pos: 0.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18815
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18816
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18817
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18818
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18819
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18820
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18821
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18822
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18823
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18824
- components:
- - type: Transform
- pos: -29.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18825
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18827
- components:
- - type: Transform
- pos: -27.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18828
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18829
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18830
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18831
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18832
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18833
- components:
- - type: Transform
- pos: 0.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18834
- components:
- - type: Transform
- pos: -3.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18835
- components:
- - type: Transform
- pos: 0.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18836
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18837
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18838
- components:
- - type: Transform
- pos: -73.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18839
- components:
- - type: Transform
- pos: -26.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18840
- components:
- - type: Transform
- pos: -5.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18841
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18842
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18843
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18844
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18845
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18846
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18847
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18848
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18850
- components:
- - type: Transform
- pos: 40.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18851
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18852
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18853
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18854
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18855
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18856
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18857
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18858
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18859
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18860
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18861
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18863
- components:
- - type: Transform
- pos: -31.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18864
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18865
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18866
- components:
- - type: Transform
- pos: 53.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18867
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18868
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18869
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18870
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18871
- components:
- - type: Transform
- pos: -52.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18872
- components:
- - type: Transform
- pos: -52.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18873
- components:
- - type: Transform
- pos: 0.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18874
- components:
- - type: Transform
- pos: 2.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18875
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18876
- components:
- - type: Transform
- pos: 81.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18877
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18878
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18879
- components:
- - type: Transform
- pos: 0.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18880
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18881
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18882
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18883
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18884
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18885
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18886
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18887
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18888
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18889
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18890
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18891
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 18894
- components:
- - type: Transform
- pos: 23.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18895
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,20.5
- parent: 2
- - uid: 18897
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18898
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18899
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18900
- components:
- - type: Transform
- pos: 53.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18901
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18902
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18903
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18905
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18906
- components:
- - type: Transform
- pos: -46.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18907
- components:
- - type: Transform
- pos: -69.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18908
- components:
- - type: Transform
- pos: 34.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18909
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18910
- components:
- - type: Transform
- pos: -52.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18911
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-50.5
- parent: 2
- - uid: 18912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18913
- components:
- - type: Transform
- pos: -76.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18914
- components:
- - type: Transform
- pos: 81.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18915
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18916
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18917
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18918
- components:
- - type: Transform
- pos: 35.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18919
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18920
- components:
- - type: Transform
- pos: -46.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18921
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18922
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18923
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18924
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18925
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18926
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18927
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18929
- components:
- - type: Transform
- pos: -22.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18930
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18931
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18933
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18934
- components:
- - type: Transform
- pos: 87.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18935
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18937
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18938
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18939
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18940
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18941
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18942
- components:
- - type: Transform
- pos: 22.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18943
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18944
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18945
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18946
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18949
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18950
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18951
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18952
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18953
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18954
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18955
- components:
- - type: Transform
- pos: 46.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18956
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18957
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18958
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18959
- components:
- - type: Transform
- pos: 10.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18960
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18961
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 18962
- components:
- - type: Transform
- pos: 0.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18963
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18964
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18965
- components:
- - type: Transform
- pos: -69.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18966
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18967
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18968
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18969
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18970
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18971
- components:
- - type: Transform
- pos: -66.5,60.5
- parent: 2
- - uid: 18972
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18973
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18974
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18975
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18976
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18977
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18978
- components:
- - type: Transform
- pos: -57.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18979
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18980
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18981
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18982
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18983
- components:
- - type: Transform
- pos: 26.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18984
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18985
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18986
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18987
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18988
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,20.5
- parent: 2
- - uid: 18989
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,20.5
- parent: 2
- - uid: 18990
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18991
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18992
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18993
- components:
- - type: Transform
- pos: 40.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18994
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18995
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18996
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18997
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18998
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18999
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19000
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19001
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19003
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19004
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19005
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19006
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19007
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19008
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19009
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19010
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19011
- components:
- - type: Transform
- pos: 26.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19012
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19013
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19015
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19016
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19017
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19018
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19019
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19020
- components:
- - type: Transform
- pos: 26.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19021
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19022
- components:
- - type: Transform
- pos: 53.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19023
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19024
- components:
- - type: Transform
- pos: -46.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19025
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 19026
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,20.5
- parent: 2
- - uid: 19027
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-51.5
- parent: 2
- - uid: 19028
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19029
- components:
- - type: Transform
- pos: -48.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19030
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19031
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,20.5
- parent: 2
- - uid: 19032
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19033
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19034
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19035
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19036
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19037
- components:
- - type: Transform
- pos: 41.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19038
- components:
- - type: Transform
- pos: -10.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19039
- components:
- - type: Transform
- pos: -62.5,21.5
- parent: 2
- - uid: 19040
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19041
- components:
- - type: Transform
- pos: 18.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19042
- components:
- - type: Transform
- pos: 17.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19043
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19044
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19045
- components:
- - type: Transform
- pos: 23.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19046
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19047
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19048
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19049
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19050
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19051
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19052
- components:
- - type: Transform
- pos: 41.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19053
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19054
- components:
- - type: Transform
- pos: -22.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19055
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19056
- components:
- - type: Transform
- pos: 74.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19057
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19058
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19059
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19060
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19061
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19062
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19063
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19064
- components:
- - type: Transform
- pos: -9.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19065
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19066
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 80.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19067
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19068
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,22.5
- parent: 2
- - uid: 19069
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19071
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19072
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19073
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19074
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19075
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19076
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19077
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19078
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19079
- components:
- - type: Transform
- pos: -8.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19080
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19081
- components:
- - type: Transform
- pos: -17.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19082
- components:
- - type: Transform
- pos: 40.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19083
- components:
- - type: Transform
- pos: -20.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19084
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19085
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19086
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19087
- components:
- - type: Transform
- pos: -30.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19088
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19089
- components:
- - type: Transform
- pos: 41.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19090
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19092
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19093
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,20.5
- parent: 2
- - uid: 19094
- components:
- - type: Transform
- pos: 33.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19095
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19096
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19097
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19099
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19100
- components:
- - type: Transform
- pos: -30.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19101
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19102
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19103
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19104
- components:
- - type: Transform
- pos: -69.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19105
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19106
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19107
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19108
- components:
- - type: Transform
- pos: -53.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19109
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19111
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19113
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19115
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19116
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19117
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19118
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19119
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19120
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19121
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19123
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19124
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19125
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19126
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19127
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19128
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19129
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19130
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19131
- components:
- - type: Transform
- pos: 62.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19132
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19133
- components:
- - type: Transform
- pos: -52.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19134
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19135
- components:
- - type: Transform
- pos: 23.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19136
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19137
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19138
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19139
- components:
- - type: Transform
- pos: 25.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19140
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19141
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19142
-=======
- pos: -13.5,39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17900
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17901
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17902
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,40.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17903
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17904
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17905
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17906
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,30.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17907
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17908
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17909
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,30.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17910
- components:
- - type: Transform
- pos: -14.5,29.5
- parent: 2
- - uid: 17911
- components:
- - type: Transform
- pos: -14.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17912
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17913
- components:
- - type: Transform
- pos: -15.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17914
- components:
- - type: Transform
- pos: -14.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17915
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17916
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17917
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17918
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17919
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17920
- components:
- - type: Transform
- pos: -16.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17921
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,30.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17922
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,27.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17923
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17924
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,41.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17925
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17926
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,26.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17927
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,26.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17929
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17930
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17931
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17932
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17933
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17934
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17935
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17797
- - 70
- - uid: 17936
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17937
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,46.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17938
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17939
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17940
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,27.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17844
- - 17795
- - 70
- - uid: 17941
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17796
- - 17795
- - 71
- - uid: 17942
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17943
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17845
- - 53
- - uid: 17944
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17811
- - 17812
- - 84
- - uid: 17945
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,48.5
- parent: 2
- - uid: 17946
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -117.5,48.5
- parent: 2
- - uid: 17947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-40.5
- parent: 2
- - uid: 17948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-40.5
- parent: 2
- - uid: 17949
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17841
- - 17842
- - 64
- - uid: 17950
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17841
- - 64
-- proto: FirelockElectronics
- entities:
- - uid: 17951
- components:
- - type: Transform
- pos: -38.5,11.5
- parent: 2
- - type: Physics
- canCollide: False
-- proto: FirelockFrame
- entities:
- - uid: 17952
- components:
- - type: Transform
- pos: -73.5,-28.5
- parent: 2
-- proto: FirelockGlass
- entities:
- - uid: 17953
- components:
- - type: Transform
- pos: -16.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17840
- - 123
- - 64
- - uid: 17954
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,14.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17780
- - uid: 17955
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-33.5
- parent: 2
- - uid: 17956
- components:
- - type: Transform
- pos: -12.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17790
- - 107
- - uid: 17957
- components:
- - type: Transform
- pos: 37.5,-48.5
- parent: 2
- - uid: 17958
- components:
- - type: Transform
- pos: 48.5,10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - uid: 17959
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17809
- - uid: 17960
- components:
- - type: Transform
- pos: -22.5,-32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17831
- - 17830
- - 106
- - uid: 17961
- components:
- - type: Transform
- pos: -21.5,-32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17831
- - 17830
- - 106
- - uid: 17962
- components:
- - type: Transform
- pos: 49.5,1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - 69
- - uid: 17963
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17774
- - 58
- - uid: 17964
- components:
- - type: Transform
- pos: 1.5,-20.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17789
- - 17839
- - 121
- - uid: 17965
- components:
- - type: Transform
- pos: 46.5,10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - uid: 17966
- components:
- - type: Transform
- pos: 49.5,8.5
- parent: 2
- - uid: 17967
- components:
- - type: Transform
- pos: 13.5,-28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17758
- - uid: 17968
- components:
- - type: Transform
- pos: 10.5,41.5
- parent: 2
- - uid: 17969
- components:
- - type: Transform
- pos: 49.5,0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - 69
- - uid: 17970
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17809
- - uid: 17971
- components:
- - type: Transform
- pos: 12.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17807
- - 17809
- - 78
- - uid: 17972
- components:
- - type: Transform
- pos: 5.5,38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17807
- - 17808
- - 78
- - uid: 17973
- components:
- - type: Transform
- pos: 49.5,-0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - 69
- - uid: 17974
- components:
- - type: Transform
- pos: -11.5,-65.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17828
- - 113
- - 114
- - uid: 17975
- components:
- - type: Transform
- pos: -3.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17825
- - uid: 17976
- components:
- - type: Transform
- pos: -16.5,-23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17829
- - 106
- - uid: 17977
- components:
- - type: Transform
- pos: 40.5,-29.5
- parent: 2
- - uid: 17978
- components:
- - type: Transform
- pos: 1.5,-19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17789
- - 17839
- - 121
- - uid: 17979
- components:
- - type: Transform
- pos: -38.5,-73.5
- parent: 2
- - uid: 17980
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17834
- - 17836
- - uid: 17981
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17831
- - 17834
- - uid: 17982
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,51.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17809
- - 91
- - uid: 17983
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17831
- - 17835
- - uid: 17984
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17835
- - 17836
- - uid: 17985
- components:
- - type: Transform
- pos: 41.5,-29.5
- parent: 2
- - uid: 17986
- components:
- - type: Transform
- pos: 11.5,28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17805
- - 17806
- - 78
- - uid: 17987
- components:
- - type: Transform
- pos: -2.5,-18.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17839
- - 17791
- - 122
- - uid: 17988
- components:
- - type: Transform
- pos: 41.5,-45.5
- parent: 2
- - uid: 17989
- components:
- - type: Transform
- pos: 53.5,10.5
- parent: 2
- - uid: 17990
- components:
- - type: Transform
- pos: -23.5,-32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17831
- - 17830
- - 106
- - uid: 17991
- components:
- - type: Transform
- pos: -11.5,-66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17828
- - 113
- - 114
- - uid: 17992
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17776
- - 17773
- - 58
- - uid: 17993
- components:
- - type: Transform
- pos: -58.5,55.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17778
- - 17777
- - 55
- - uid: 17994
- components:
- - type: Transform
- pos: 4.5,32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17805
- - 17807
- - 78
- - uid: 17995
- components:
- - type: Transform
- pos: -2.5,-19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17839
- - 17791
- - 122
- - uid: 17996
- components:
- - type: Transform
- pos: 51.5,-45.5
- parent: 2
- - uid: 17997
- components:
- - type: Transform
- pos: -58.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17778
- - 55
- - uid: 17998
- components:
- - type: Transform
- pos: 47.5,10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - uid: 17999
- components:
- - type: Transform
- pos: 36.5,-48.5
- parent: 2
- - uid: 18000
- components:
- - type: Transform
- pos: 1.5,-18.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17789
- - 17839
- - 121
- - uid: 18001
- components:
- - type: Transform
- pos: -2.5,-20.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17839
- - 17791
- - 122
- - uid: 18002
- components:
- - type: Transform
- pos: -14.5,-28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17829
- - uid: 18003
- components:
- - type: Transform
- pos: 17.5,21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17786
- - 17787
- - 17810
- - 17811
- - 111
- - uid: 18004
- components:
- - type: Transform
- pos: 6.5,22.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17785
- - 17786
- - 94
- - uid: 18005
- components:
- - type: Transform
- pos: 16.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17787
- - 17810
- - 17811
- - 17759
- - 111
- - uid: 18006
- components:
- - type: Transform
- pos: 26.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17810
- - 17811
- - 84
- - uid: 18007
- components:
- - type: Transform
- pos: -0.5,-56.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17827
- - 112
- - uid: 18008
- components:
- - type: Transform
- pos: -44.5,9.5
- parent: 2
- - uid: 18009
- components:
- - type: Transform
- pos: 4.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17785
- - 17805
- - 94
- - 78
- - uid: 18010
- components:
- - type: Transform
- pos: 4.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17789
- - 17839
- - 17758
- - 121
- - 116
- - uid: 18011
- components:
- - type: Transform
- pos: 12.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17789
- - 17839
- - 17758
- - 121
- - 116
- - uid: 18012
- components:
- - type: Transform
- pos: -1.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17825
- - 17826
- - 86
- - 112
- - uid: 18013
- components:
- - type: Transform
- pos: 15.5,-25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17758
- - 17821
- - 116
- - uid: 18014
- components:
- - type: Transform
- pos: 91.5,15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 96
- - uid: 18015
- components:
- - type: Transform
- pos: -12.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 107
- - 109
- - uid: 18016
- components:
- - type: Transform
- pos: 16.5,21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17786
- - 17787
- - 17810
- - 17811
- - 111
- - uid: 18017
- components:
- - type: Transform
- pos: 15.5,-8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17788
- - 17842
- - 64
- - 117
- - uid: 18018
- components:
- - type: Transform
- pos: 7.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17847
- - 75
- - uid: 18019
- components:
- - type: Transform
- pos: 11.5,30.5
- parent: 2
- - uid: 18020
- components:
- - type: Transform
- pos: -16.5,-8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17792
- - 17840
- - 123
- - 64
- - uid: 18021
- components:
- - type: Transform
- pos: -7.5,24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17784
- - 17785
- - 94
- - uid: 18022
- components:
- - type: Transform
- pos: 18.5,21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17786
- - 17787
- - 17810
- - 17811
- - 111
- - uid: 18023
- components:
- - type: Transform
- pos: -8.5,43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17804
- - 53
- - uid: 18024
- components:
- - type: Transform
- pos: -43.5,-27.5
- parent: 2
- - uid: 18025
- components:
- - type: Transform
- pos: -43.5,-26.5
- parent: 2
- - uid: 18026
- components:
- - type: Transform
- pos: 6.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17847
- - 75
- - uid: 18027
- components:
- - type: Transform
- pos: -31.5,-27.5
- parent: 2
- - uid: 18028
- components:
- - type: Transform
- pos: 15.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17769
- - uid: 18029
- components:
- - type: Transform
- pos: 92.5,15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 96
- - uid: 18030
- components:
- - type: Transform
- pos: 5.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17789
- - 17839
- - 17758
- - 121
- - 116
- - uid: 18031
- components:
- - type: Transform
- pos: 5.5,-28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17758
- - 17823
- - 116
- - uid: 18032
- components:
- - type: Transform
- pos: 15.5,-38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17769
- - uid: 18033
- components:
- - type: Transform
- pos: -16.5,-20.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17791
- - 17792
- - 123
- - 122
- - uid: 18034
- components:
- - type: Transform
- pos: -1.5,-28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17825
- - 86
- - uid: 18035
- components:
- - type: Transform
- pos: 19.5,-35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17821
- - 17824
- - 37
- - uid: 18036
- components:
- - type: Transform
- pos: 0.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17825
- - 17826
- - 86
- - 112
- - uid: 18037
- components:
- - type: Transform
- pos: 9.5,-33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17823
- - 116
- - uid: 18038
- components:
- - type: Transform
- pos: -0.5,-28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17825
- - 86
- - uid: 18039
- components:
- - type: Transform
- pos: -59.5,14.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - uid: 18040
- components:
- - type: Transform
- pos: -18.5,21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17783
- - 17784
- - 36
- - 94
- - uid: 18041
- components:
- - type: Transform
- pos: -18.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17784
- - 17795
- - 94
- - 74
- - uid: 18042
- components:
- - type: Transform
- pos: -8.5,40.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17804
- - 53
- - uid: 18043
- components:
- - type: Transform
- pos: -12.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17791
- - 17829
- - 122
- - 101
- - uid: 18044
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-48.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17836
- - 17837
- - uid: 18045
- components:
- - type: Transform
- pos: 17.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17821
- - 39
- - uid: 18046
- components:
- - type: Transform
- pos: 15.5,-30.5
- parent: 2
- - uid: 18047
- components:
- - type: Transform
- pos: -31.5,-26.5
- parent: 2
- - uid: 18048
- components:
- - type: Transform
- pos: 19.5,-38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17769
- - 39
- - uid: 18049
- components:
- - type: Transform
- pos: -48.5,9.5
- parent: 2
- - uid: 18050
- components:
- - type: Transform
- pos: -16.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17792
- - 17840
- - 123
- - 64
- - uid: 18051
- components:
- - type: Transform
- pos: 19.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17769
- - 39
- - uid: 18052
- components:
- - type: Transform
- pos: -13.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17791
- - 17829
- - 122
- - 101
- - uid: 18053
- components:
- - type: Transform
- pos: -16.5,-19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17791
- - 17792
- - 123
- - 122
- - uid: 18054
- components:
- - type: Transform
- pos: 54.5,-10.5
- parent: 2
- - uid: 18055
- components:
- - type: Transform
- pos: 44.5,-5.5
- parent: 2
- - uid: 18056
- components:
- - type: Transform
- pos: -20.5,12.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17766
- - 17783
- - 52
- - uid: 18057
- components:
- - type: Transform
- pos: -28.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17781
- - 17782
- - 52
- - uid: 18058
- components:
- - type: Transform
- pos: -28.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17781
- - 17782
- - 52
- - uid: 18059
- components:
- - type: Transform
- pos: -20.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17800
- - 17802
- - 124
- - 73
- - uid: 18060
- components:
- - type: Transform
- pos: -19.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17800
- - 17802
- - 124
- - 73
- - uid: 18061
- components:
- - type: Transform
- pos: 28.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17824
- - 17768
- - 37
- - 38
- - uid: 18062
- components:
- - type: Transform
- pos: 26.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17824
- - 17768
- - 37
- - 38
- - uid: 18063
- components:
- - type: Transform
- pos: 27.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17824
- - 17768
- - 37
- - 38
- - uid: 18064
- components:
- - type: Transform
- pos: -20.5,-33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17790
- - 17831
- - 107
- - uid: 18065
- components:
- - type: Transform
- pos: -2.5,-25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17829
- - 101
- - 86
- - uid: 18066
- components:
- - type: Transform
- pos: 26.5,-11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17843
- - 97
- - uid: 18067
- components:
- - type: Transform
- pos: -20.5,-25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 106
- - uid: 18068
- components:
- - type: Transform
- pos: -25.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17766
- - 17782
- - 52
- - uid: 18069
- components:
- - type: Transform
- pos: -39.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17780
- - 17781
- - 52
- - uid: 18070
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17793
- - 17792
- - 123
- - uid: 18071
- components:
- - type: Transform
- pos: -7.5,22.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17784
- - 17785
- - 94
- - uid: 18072
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17772
- - 73
- - uid: 18073
- components:
- - type: Transform
- pos: -19.5,66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17802
- - 73
- - uid: 18074
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17772
- - 73
- - uid: 18075
- components:
- - type: Transform
- pos: 0.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17839
- - 86
- - uid: 18076
- components:
- - type: Transform
- pos: -12.5,-32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17790
- - uid: 18077
- components:
- - type: Transform
- pos: -20.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17782
- - 17793
- - 52
- - uid: 18078
- components:
- - type: Transform
- pos: -20.5,66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17802
- - 73
- - uid: 18079
- components:
- - type: Transform
- pos: -16.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17800
- - 17802
- - 124
- - 73
- - uid: 18080
- components:
- - type: Transform
- pos: -20.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17782
- - 17793
- - 52
- - uid: 18081
- components:
- - type: Transform
- pos: -39.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17780
- - 17781
- - 52
- - uid: 18082
- components:
- - type: Transform
- pos: -1.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17839
- - 86
- - uid: 18083
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17772
- - 73
- - uid: 18084
- components:
- - type: Transform
- pos: -16.5,-18.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17791
- - 17792
- - 123
- - 122
- - uid: 18085
- components:
- - type: Transform
- pos: -13.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 107
- - 109
- - uid: 18086
- components:
- - type: Transform
- pos: 1.5,-25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17758
- - 86
- - 116
- - uid: 18087
- components:
- - type: Transform
- pos: 1.5,-24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17758
- - 86
- - 116
- - uid: 18088
- components:
- - type: Transform
- pos: -23.5,51.5
- parent: 2
- - uid: 18089
- components:
- - type: Transform
- pos: -19.5,21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17783
- - 17784
- - 36
- - 94
- - uid: 18090
- components:
- - type: Transform
- pos: -14.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 107
- - 109
- - uid: 18091
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17805
- - uid: 18092
- components:
- - type: Transform
- pos: 17.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17787
- - 17810
- - 17811
- - 17759
- - 111
- - uid: 18093
- components:
- - type: Transform
- pos: 49.5,12.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - uid: 18094
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,52.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17809
- - 91
- - uid: 18095
- components:
- - type: Transform
- pos: 19.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17810
- - 17811
- - 17759
- - 111
- - 84
- - uid: 18096
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,48.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17809
- - 91
- - uid: 18097
- components:
- - type: Transform
- pos: -12.5,-28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17829
- - uid: 18098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17835
- - 17838
- - 105
- - uid: 18099
- components:
- - type: Transform
- pos: 5.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17785
- - 17805
- - 94
- - 78
- - uid: 18100
- components:
- - type: Transform
- pos: 7.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17786
- - 17805
- - 94
- - 78
- - uid: 18101
- components:
- - type: Transform
- pos: 0.5,-62.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17827
- - 17828
- - 113
- - uid: 18102
- components:
- - type: Transform
- pos: -19.5,54.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17845
- - 17800
- - 74
- - uid: 18103
- components:
- - type: Transform
- pos: -18.5,54.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17845
- - 17800
- - 74
- - uid: 18104
- components:
- - type: Transform
- pos: -0.5,-62.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17827
- - 17828
- - 113
- - uid: 18105
- components:
- - type: Transform
- pos: -17.5,54.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17845
- - 17800
- - 74
- - uid: 18106
- components:
- - type: Transform
- pos: -1.5,-62.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17827
- - 17828
- - 113
- - uid: 18107
- components:
- - type: Transform
- pos: -8.5,42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17804
- - 53
- - uid: 18108
- components:
- - type: Transform
- pos: -31.5,-28.5
- parent: 2
- - uid: 18109
- components:
- - type: Transform
- pos: 48.5,23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 89
- - 90
- - uid: 18110
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17809
- - 91
- - uid: 18111
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17809
- - 91
- - uid: 18112
- components:
- - type: Transform
- pos: 26.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17810
- - 17811
- - 84
- - uid: 18113
- components:
- - type: Transform
- pos: 0.5,-28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17825
- - 86
- - uid: 18114
- components:
- - type: Transform
- pos: 15.5,-24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17758
- - 17821
- - 116
- - uid: 18115
- components:
- - type: Transform
- pos: 19.5,-11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17788
- - 117
- - 97
- - uid: 18116
- components:
- - type: Transform
- pos: -24.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17782
- - 17766
- - 52
- - uid: 18117
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17829
- - 101
- - 86
- - uid: 18118
- components:
- - type: Transform
- pos: 15.5,-20.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17788
- - 17789
- - 17839
- - 121
- - 117
- - uid: 18119
- components:
- - type: Transform
- pos: -18.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17800
- - 17802
- - 124
- - 73
- - uid: 18120
- components:
- - type: Transform
- pos: -13.5,48.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17799
- - 17845
- - 76
- - uid: 18121
- components:
- - type: Transform
- pos: -13.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17799
- - 17845
- - 76
- - uid: 18122
- components:
- - type: Transform
- pos: -39.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17780
- - 17781
- - 52
- - uid: 18123
- components:
- - type: Transform
- pos: 2.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17825
- - 17823
- - 116
- - uid: 18124
- components:
- - type: Transform
- pos: -50.5,21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17773
- - 58
- - uid: 18125
- components:
- - type: Transform
- pos: 19.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17788
- - 117
- - 97
- - uid: 18126
- components:
- - type: Transform
- pos: 5.5,70.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17847
- - 75
- - uid: 18127
- components:
- - type: Transform
- pos: -28.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17781
- - 17782
- - 52
- - uid: 18128
- components:
- - type: Transform
- pos: 12.5,-32.5
- parent: 2
- - uid: 18129
- components:
- - type: Transform
- pos: -16.5,66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17802
- - 73
- - uid: 18130
- components:
- - type: Transform
- pos: -20.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17782
- - 17793
- - 52
- - uid: 18131
- components:
- - type: Transform
- pos: -18.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17793
- - 17783
- - uid: 18132
- components:
- - type: Transform
- pos: 9.5,63.5
- parent: 2
- - uid: 18133
- components:
- - type: Transform
- pos: -1.5,-56.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17826
- - 17827
- - 112
- - uid: 18134
- components:
- - type: Transform
- pos: 12.5,43.5
- parent: 2
- - uid: 18135
- components:
- - type: Transform
- pos: -43.5,-28.5
- parent: 2
- - uid: 18136
- components:
- - type: Transform
- pos: 15.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17788
- - 17842
- - 64
- - 117
- - uid: 18137
- components:
- - type: Transform
- pos: 10.5,38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17807
- - 78
- - uid: 18138
- components:
- - type: Transform
- pos: 19.5,-33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17821
- - 17824
- - 37
- - uid: 18139
- components:
- - type: Transform
- pos: -14.5,-32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17790
- - uid: 18140
- components:
- - type: Transform
- pos: -0.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17825
- - 17826
- - 86
- - 112
- - uid: 18141
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17838
- - 105
- - uid: 18142
- components:
- - type: Transform
- pos: -8.5,41.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17804
- - 53
- - uid: 18143
- components:
- - type: Transform
- pos: 12.5,36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17807
- - 17809
- - 78
- - uid: 18144
- components:
- - type: Transform
- pos: 19.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17810
- - 17811
- - 17759
- - 111
- - 84
- - uid: 18145
- components:
- - type: Transform
- pos: -18.5,66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17802
- - 73
- - uid: 18146
- components:
- - type: Transform
- pos: -17.5,59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17800
- - 17802
- - 124
- - 73
- - uid: 18147
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17838
- - 105
- - uid: 18148
- components:
- - type: Transform
- pos: 52.5,20.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - 90
- - uid: 18149
- components:
- - type: Transform
- pos: 15.5,-19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17788
- - 17789
- - 17839
- - 121
- - 117
- - uid: 18150
- components:
- - type: Transform
- pos: -20.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17790
- - 17831
- - 107
- - uid: 18151
- components:
- - type: Transform
- pos: 19.5,-10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17788
- - 117
- - 97
- - uid: 18152
- components:
- - type: Transform
- pos: -17.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17793
- - 17783
- - uid: 18153
- components:
- - type: Transform
- pos: 0.5,-56.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17826
- - 17827
- - 112
- - uid: 18154
- components:
- - type: Transform
- pos: 19.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17821
- - 17824
- - 37
- - uid: 18155
- components:
- - type: Transform
- pos: -44.5,18.5
- parent: 2
- - uid: 18156
- components:
- - type: Transform
- pos: -17.5,21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17783
- - 17784
- - 36
- - 94
- - uid: 18157
- components:
- - type: Transform
- pos: 11.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17789
- - 17839
- - 17758
- - 121
- - 116
- - uid: 18158
- components:
- - type: Transform
- pos: 16.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17821
- - 39
- - uid: 18159
- components:
- - type: Transform
- pos: 25.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17768
- - 38
- - uid: 18160
- components:
- - type: Transform
- pos: -0.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17839
- - 86
- - uid: 18161
- components:
- - type: Transform
- pos: -5.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17791
- - 17829
- - 122
- - 101
- - uid: 18162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-18.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17770
- - 100
- - uid: 18163
- components:
- - type: Transform
- pos: 11.5,-28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17758
- - uid: 18164
- components:
- - type: Transform
- pos: -23.5,50.5
- parent: 2
- - uid: 18165
- components:
- - type: Transform
- pos: -8.5,39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17798
- - 17804
- - 53
- - uid: 18166
- components:
- - type: Transform
- pos: -17.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17793
- - 17792
- - 123
- - uid: 18167
- components:
- - type: Transform
- pos: -6.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17791
- - 17829
- - 122
- - 101
- - uid: 18168
- components:
- - type: Transform
- pos: -7.5,23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17784
- - 17785
- - 94
- - uid: 18169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17838
- - 17836
- - 105
- - uid: 18170
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,-18.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17843
- - 17770
- - 100
- - uid: 18171
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17770
- - 100
- - uid: 18172
- components:
- - type: Transform
- pos: 18.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17759
- - 17788
- - 117
- - uid: 18173
- components:
- - type: Transform
- pos: 6.5,23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17785
- - 17786
- - 94
- - uid: 18174
- components:
- - type: Transform
- pos: 18.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17787
- - 17810
- - 17811
- - 17759
- - 111
- - uid: 18175
- components:
- - type: Transform
- pos: 17.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17759
- - 17788
- - 117
- - uid: 18176
- components:
- - type: Transform
- pos: 8.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17786
- - 17805
- - 94
- - 78
- - uid: 18177
- components:
- - type: Transform
- pos: 6.5,24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17785
- - 17786
- - 94
- - uid: 18178
- components:
- - type: Transform
- pos: 16.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17759
- - 17788
- - 117
- - uid: 18179
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,-21.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17843
- - 17770
- - 100
- - uid: 18180
- components:
- - type: Transform
- pos: -18.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17793
- - 17792
- - 123
- - uid: 18181
- components:
- - type: Transform
- pos: 26.5,-10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17843
- - 97
- - uid: 18182
- components:
- - type: Transform
- pos: 9.5,-35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17823
- - 116
- - uid: 18183
- components:
- - type: Transform
- pos: -57.5,16.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - uid: 18184
- components:
- - type: Transform
- pos: 18.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17821
- - 39
- - uid: 18185
- components:
- - type: Transform
- pos: 25.5,-38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17768
- - 38
- - uid: 18186
- components:
- - type: Transform
- pos: 38.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17812
- - 85
- - uid: 18187
- components:
- - type: Transform
- pos: 38.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17812
- - 85
- - uid: 18188
- components:
- - type: Transform
- pos: -17.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17784
- - 17795
- - 94
- - 74
- - uid: 18189
- components:
- - type: Transform
- pos: -19.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17784
- - 17795
- - 94
- - 74
- - uid: 18190
- components:
- - type: Transform
- pos: -20.5,11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17766
- - 17783
- - 52
- - uid: 18191
- components:
- - type: Transform
- pos: 10.5,63.5
- parent: 2
- - uid: 18192
- components:
- - type: Transform
- pos: -19.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17793
- - 17783
- - uid: 18193
- components:
- - type: Transform
- pos: 12.5,45.5
- parent: 2
- - uid: 18194
- components:
- - type: Transform
- pos: 19.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17810
- - 17811
- - 17759
- - 111
- - 84
- - uid: 18195
- components:
- - type: Transform
- pos: 26.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17810
- - 17811
- - 84
- - uid: 18196
- components:
- - type: Transform
- pos: 15.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17806
- - 17809
- - 78
- - uid: 18197
- components:
- - type: Transform
- pos: 49.5,16.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - 89
- - uid: 18198
- components:
- - type: Transform
- pos: -17.5,66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17802
- - 73
- - uid: 18199
- components:
- - type: Transform
- pos: -20.5,-35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17790
- - 17831
- - 107
- - uid: 18200
- components:
- - type: Transform
- pos: 15.5,-18.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17788
- - 17789
- - 17839
- - 121
- - 117
- - uid: 18201
- components:
- - type: Transform
- pos: 26.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17843
- - 97
- - uid: 18202
- components:
- - type: Transform
- pos: 2.5,-59.5
- parent: 2
- - uid: 18203
- components:
- - type: Transform
- pos: 5.5,-62.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - uid: 18204
- components:
- - type: Transform
- pos: 7.5,-56.5
- parent: 2
- - uid: 18205
- components:
- - type: Transform
- pos: 3.5,-65.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17828
- - 113
- - uid: 18206
- components:
- - type: Transform
- pos: 3.5,-66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17828
- - 113
- - uid: 18207
- components:
- - type: Transform
- pos: 3.5,-74.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17828
- - 113
- - uid: 18208
- components:
- - type: Transform
- pos: 3.5,-75.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17828
- - 113
- - uid: 18209
- components:
- - type: Transform
- pos: 5.5,-78.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - uid: 18210
- components:
- - type: Transform
- pos: 7.5,-76.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - uid: 18211
- components:
- - type: Transform
- pos: 7.5,-74.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - uid: 18212
- components:
- - type: Transform
- pos: 5.5,-72.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - uid: 18213
- components:
- - type: Transform
- pos: 60.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 90
- - uid: 18214
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17821
- - 116
- - uid: 18215
- components:
- - type: Transform
- pos: 48.5,22.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 89
- - 90
- - uid: 18216
- components:
- - type: Transform
- pos: 68.5,25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 90
- - uid: 18217
- components:
- - type: Transform
- pos: -117.5,20.5
- parent: 2
- - uid: 18218
- components:
- - type: Transform
- pos: -119.5,20.5
- parent: 2
- - uid: 18219
- components:
- - type: Transform
- pos: -120.5,23.5
- parent: 2
- - uid: 18220
- components:
- - type: Transform
- pos: -116.5,23.5
- parent: 2
- - uid: 18221
- components:
- - type: Transform
- pos: -117.5,27.5
- parent: 2
- - uid: 18222
- components:
- - type: Transform
- pos: -119.5,27.5
- parent: 2
- - uid: 18223
- components:
- - type: Transform
- pos: -120.5,40.5
- parent: 2
- - uid: 18224
- components:
- - type: Transform
- pos: -120.5,39.5
- parent: 2
- - uid: 18225
- components:
- - type: Transform
- pos: -116.5,40.5
- parent: 2
- - uid: 18226
- components:
- - type: Transform
- pos: -116.5,39.5
- parent: 2
- - uid: 18227
- components:
- - type: Transform
- pos: -119.5,44.5
- parent: 2
- - uid: 18228
- components:
- - type: Transform
- pos: -117.5,44.5
- parent: 2
- - uid: 18229
- components:
- - type: Transform
- pos: 79.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 96
- - uid: 18230
- components:
- - type: Transform
- pos: 75.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 93
- - uid: 18231
- components:
- - type: Transform
- pos: 93.5,15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 96
- - uid: 18232
- components:
- - type: Transform
- pos: 83.5,11.5
- parent: 2
- - uid: 18233
- components:
- - type: Transform
- pos: 57.5,20.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - 90
- - uid: 18234
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-39.5
- parent: 2
- - uid: 18235
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-32.5
- parent: 2
- - uid: 18236
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-42.5
- parent: 2
- - uid: 18237
- components:
- - type: Transform
- pos: -13.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17790
- - 107
- - uid: 18238
- components:
- - type: Transform
- pos: -14.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17790
- - 107
- - uid: 18239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,61.5
- parent: 2
- - uid: 18240
- components:
- - type: Transform
- pos: 90.5,2.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17848
- - 33
- - 95
- - uid: 18241
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17776
- - 17774
- - 55
- - uid: 18242
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,41.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17776
- - 55
- - uid: 18243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17777
- - 55
- - uid: 18244
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,51.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17777
- - 55
- - uid: 18245
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,51.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17777
- - 55
- - uid: 18246
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,48.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17777
- - 17776
- - 55
- - uid: 18247
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17777
- - 17776
- - 55
- - uid: 18248
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17777
- - 17776
- - 55
- - uid: 18249
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17777
- - 17776
- - 55
- - uid: 18250
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,55.5
- parent: 2
- - uid: 18251
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,53.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17779
- - 17776
- - 57
- - uid: 18252
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,57.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17779
- - 17778
- - 57
- - uid: 18253
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17776
- - 17773
- - 58
- - uid: 18254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17773
- - 58
- - uid: 18255
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17773
- - 58
- - uid: 18256
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17773
- - 68
- - uid: 18257
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17773
- - 68
- - uid: 18258
- components:
- - type: Transform
- pos: -45.5,12.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17780
- - uid: 18259
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - uid: 18260
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - uid: 18261
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - uid: 18262
- components:
- - type: Transform
- pos: 90.5,1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17848
- - 33
- - 95
- - uid: 18263
- components:
- - type: Transform
- pos: 90.5,0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17848
- - 33
- - 95
- - uid: 18264
- components:
- - type: Transform
- pos: 15.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17842
- - 64
- - 117
- - uid: 38959
- components:
- - type: Transform
- pos: -11.5,-0.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38955
- - 38346
- - uid: 38960
- components:
- - type: Transform
- pos: 0.5,5.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38956
- - 38345
- - uid: 38961
- components:
- - type: Transform
- pos: -13.5,-0.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38955
- - 38346
- - uid: 38962
- components:
- - type: Transform
- pos: -12.5,-0.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38955
- - 38346
- - uid: 38963
- components:
- - type: Transform
- pos: -1.5,5.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38956
- - 38345
- - uid: 38964
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-0.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38957
- - uid: 38965
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-0.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38957
- - uid: 38966
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,3.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38958
- - 38345
- - uid: 38967
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,1.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38958
- - 38345
-- proto: Fireplace
- entities:
- - uid: 18265
- components:
- - type: Transform
- pos: -31.5,-64.5
- parent: 2
- - uid: 18266
- components:
- - type: Transform
- pos: -66.5,62.5
- parent: 2
- - uid: 18267
- components:
- - type: Transform
- pos: 12.5,11.5
- parent: 2
- - uid: 18268
- components:
- - type: Transform
- pos: 74.5,-36.5
- parent: 2
- - uid: 18269
- components:
- - type: Transform
- pos: -58.5,-47.5
- parent: 2
- - uid: 18270
- components:
- - type: Transform
- pos: 67.5,30.5
- parent: 2
-- proto: Flare
- entities:
- - uid: 38968
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,18.5
- parent: 38344
- - uid: 38969
- components:
- - type: Transform
- pos: -21.5,14.5
- parent: 38344
-- proto: Flash
- entities:
- - uid: 18271
- components:
- - type: Transform
- pos: -2.5,14.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18272
- components:
- - type: Transform
- pos: -2.4961772,18.561342
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18273
- components:
- - type: Transform
- pos: 51.51625,-8.400485
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18274
- components:
- - type: Transform
- pos: 51.51625,-8.400485
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18275
- components:
- - type: Transform
- pos: 51.51625,-8.400485
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18276
- components:
- - type: Transform
- pos: 6.5070233,-63.406696
- parent: 2
- - uid: 38970
- components:
- - type: Transform
- pos: 11.573968,-1.4984436
- parent: 38344
-- proto: FlashlightLantern
- entities:
- - uid: 18277
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 10.564044,-11.592889
- parent: 2
- - uid: 18278
- components:
- - type: Transform
- pos: -21.577547,-20.497307
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18279
- components:
- - type: Transform
- pos: -41.430576,-13.417048
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18280
- components:
- - type: Transform
- pos: -32.45189,8.994322
- parent: 2
- - uid: 18281
- components:
- - type: Transform
- pos: 43.5,-37.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18282
- components:
- - type: Transform
- pos: -54.540287,-4.510069
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18283
- components:
- - type: Transform
- pos: -31.482824,-41.00041
- parent: 2
- - uid: 18284
- components:
- - type: Transform
- pos: -24.546297,-21.591057
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 38971
- components:
- - type: Transform
- pos: -5.4909115,18.430878
- parent: 38344
- - uid: 38972
- components:
- - type: Transform
- pos: -5.623672,18.60788
- parent: 38344
-- proto: FlippoEngravedLighter
- entities:
- - uid: 18285
- components:
- - type: Transform
- pos: -45.785725,-32.422863
- parent: 2
-- proto: FlippoLighter
- entities:
- - uid: 14391
- components:
- - type: Transform
- parent: 14387
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: Floodlight
- entities:
- - uid: 38973
- components:
- - type: Transform
- pos: -10.5,36.5
- parent: 38344
-- proto: FloodlightBroken
- entities:
- - uid: 18286
- components:
- - type: Transform
- pos: -43.375755,-37.271347
- parent: 2
- - uid: 18287
- components:
- - type: Transform
- pos: 45.04216,-33.29468
- parent: 2
- - uid: 18288
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -55.49322,-22.298454
- parent: 2
- - uid: 18289
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 40.31192,-35.506004
- parent: 2
- - uid: 18290
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 40.671295,-35.45913
- parent: 2
- - uid: 38974
- components:
- - type: Transform
- pos: -6.5,21.5
- parent: 38344
- - uid: 38975
- components:
- - type: Transform
- pos: -2.5,13.5
- parent: 38344
- - uid: 38976
- components:
- - type: Transform
- pos: -6.5,31.5
- parent: 38344
-- proto: FloorDrain
- entities:
- - uid: 18291
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18292
- components:
- - type: Transform
- pos: 93.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18293
- components:
- - type: Transform
- pos: 97.5,-2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18294
- components:
- - type: Transform
- pos: 21.5,-14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18295
- components:
- - type: Transform
- pos: 6.5,-49.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18296
- components:
- - type: Transform
- pos: -6.5,46.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18297
- components:
- - type: Transform
- pos: 5.5,-30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18298
- components:
- - type: Transform
- pos: -33.5,27.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18299
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,-30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18300
- components:
- - type: Transform
- pos: 3.5,51.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18301
- components:
- - type: Transform
- pos: 9.5,-50.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18302
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18303
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18304
- components:
- - type: Transform
- pos: 5.5,-33.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18305
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,65.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18306
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 38977
- components:
- - type: Transform
- pos: -24.5,27.5
- parent: 38344
- - type: Fixtures
- fixtures: {}
- - uid: 38978
- components:
- - type: Transform
- pos: -12.5,13.5
- parent: 38344
- - type: Fixtures
- fixtures: {}
- - uid: 38979
- components:
- - type: Transform
- pos: 3.5,-9.5
- parent: 38344
- - type: Fixtures
- fixtures: {}
-- proto: FloorWaterEntity
- entities:
- - uid: 18307
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,56.5
- parent: 2
- - uid: 18308
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,57.5
- parent: 2
- - uid: 18309
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,58.5
- parent: 2
- - uid: 18310
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,58.5
- parent: 2
- - uid: 18311
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,58.5
- parent: 2
- - uid: 18312
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,57.5
- parent: 2
- - uid: 18313
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,56.5
- parent: 2
- - uid: 18314
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,57.5
- parent: 2
- - uid: 18315
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,56.5
- parent: 2
- - uid: 18316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,40.5
- parent: 2
- - uid: 18317
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,41.5
- parent: 2
- - uid: 18318
- components:
- - type: Transform
- pos: -52.5,-42.5
- parent: 2
- - uid: 18319
- components:
- - type: Transform
- pos: 93.5,-22.5
- parent: 2
- - uid: 18320
- components:
- - type: Transform
- pos: 92.5,-21.5
- parent: 2
- - uid: 18321
- components:
- - type: Transform
- pos: 92.5,-19.5
- parent: 2
- - uid: 18322
- components:
- - type: Transform
- pos: 92.5,-23.5
- parent: 2
- - uid: 18323
- components:
- - type: Transform
- pos: 92.5,-22.5
- parent: 2
- - uid: 18324
- components:
- - type: Transform
- pos: 93.5,-24.5
- parent: 2
- - uid: 18325
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,41.5
- parent: 2
- - uid: 18326
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,42.5
- parent: 2
- - uid: 18327
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,41.5
- parent: 2
- - uid: 18328
- components:
- - type: Transform
- pos: 93.5,-21.5
- parent: 2
- - uid: 18329
- components:
- - type: Transform
- pos: 93.5,-15.5
- parent: 2
- - uid: 18330
- components:
- - type: Transform
- pos: 93.5,-24.5
- parent: 2
- - uid: 18331
- components:
- - type: Transform
- pos: 92.5,-15.5
- parent: 2
- - uid: 18332
- components:
- - type: Transform
- pos: 92.5,-24.5
- parent: 2
- - uid: 18333
- components:
- - type: Transform
- pos: 90.5,-22.5
- parent: 2
- - uid: 18334
- components:
- - type: Transform
- pos: 91.5,-19.5
- parent: 2
- - uid: 18335
- components:
- - type: Transform
- pos: 91.5,-21.5
- parent: 2
- - uid: 18336
- components:
- - type: Transform
- pos: 91.5,-22.5
- parent: 2
- - uid: 18337
- components:
- - type: Transform
- pos: 90.5,-23.5
- parent: 2
- - uid: 18338
- components:
- - type: Transform
- pos: 93.5,-23.5
- parent: 2
- - uid: 18339
- components:
- - type: Transform
- pos: 92.5,-22.5
- parent: 2
- - uid: 18340
- components:
- - type: Transform
- pos: 93.5,-20.5
- parent: 2
- - uid: 18341
- components:
- - type: Transform
- pos: 93.5,-16.5
- parent: 2
- - uid: 18342
- components:
- - type: Transform
- pos: 92.5,-23.5
- parent: 2
- - uid: 18343
- components:
- - type: Transform
- pos: 93.5,-21.5
- parent: 2
- - uid: 18344
- components:
- - type: Transform
- pos: 91.5,-17.5
- parent: 2
- - uid: 18345
- components:
- - type: Transform
- pos: 92.5,-17.5
- parent: 2
- - uid: 18346
- components:
- - type: Transform
- pos: 91.5,-23.5
- parent: 2
- - uid: 18347
- components:
- - type: Transform
- pos: 93.5,-17.5
- parent: 2
- - uid: 18348
- components:
- - type: Transform
- pos: 92.5,-15.5
- parent: 2
- - uid: 18349
- components:
- - type: Transform
- pos: 92.5,-16.5
- parent: 2
- - uid: 18350
- components:
- - type: Transform
- pos: 92.5,-19.5
- parent: 2
- - uid: 18351
- components:
- - type: Transform
- pos: 92.5,-20.5
- parent: 2
- - uid: 18352
- components:
- - type: Transform
- pos: 92.5,-21.5
- parent: 2
- - uid: 18353
- components:
- - type: Transform
- pos: 93.5,-15.5
- parent: 2
- - uid: 18354
- components:
- - type: Transform
- pos: 92.5,-18.5
- parent: 2
- - uid: 18355
- components:
- - type: Transform
- pos: 91.5,-18.5
- parent: 2
- - uid: 18356
- components:
- - type: Transform
- pos: 90.5,-19.5
- parent: 2
- - uid: 18357
- components:
- - type: Transform
- pos: 93.5,-22.5
- parent: 2
- - uid: 18358
- components:
- - type: Transform
- pos: 93.5,-19.5
- parent: 2
- - uid: 18359
- components:
- - type: Transform
- pos: 91.5,-15.5
- parent: 2
- - uid: 18360
- components:
- - type: Transform
- pos: 91.5,-24.5
- parent: 2
- - uid: 18361
- components:
- - type: Transform
- pos: 93.5,-18.5
- parent: 2
- - uid: 18362
- components:
- - type: Transform
- pos: 93.5,-19.5
- parent: 2
- - uid: 18363
- components:
- - type: Transform
- pos: 91.5,-22.5
- parent: 2
- - uid: 18364
- components:
- - type: Transform
- pos: 93.5,-18.5
- parent: 2
- - uid: 18365
- components:
- - type: Transform
- pos: 92.5,-18.5
- parent: 2
- - uid: 18366
- components:
- - type: Transform
- pos: -51.5,-42.5
- parent: 2
- - uid: 18367
- components:
- - type: Transform
- pos: 93.5,-23.5
- parent: 2
- - uid: 18368
- components:
- - type: Transform
- pos: 93.5,-17.5
- parent: 2
- - uid: 18369
- components:
- - type: Transform
- pos: 93.5,-20.5
- parent: 2
- - uid: 18370
- components:
- - type: Transform
- pos: 90.5,-20.5
- parent: 2
- - uid: 18371
- components:
- - type: Transform
- pos: 90.5,-21.5
- parent: 2
- - uid: 18372
- components:
- - type: Transform
- pos: 91.5,-20.5
- parent: 2
- - uid: 18373
- components:
- - type: Transform
- pos: 93.5,-16.5
- parent: 2
-- proto: FloraGreyStalagmite2
- entities:
- - uid: 38980
- components:
- - type: Transform
- pos: -22.5,12.5
- parent: 38344
-- proto: FloraGreyStalagmite3
- entities:
- - uid: 38981
- components:
- - type: Transform
- pos: -17.5,18.5
- parent: 38344
-- proto: FloraGreyStalagmite5
- entities:
- - uid: 38982
- components:
- - type: Transform
- pos: -17.5,15.5
- parent: 38344
-- proto: FloraGreyStalagmite6
- entities:
- - uid: 38983
- components:
- - type: Transform
- pos: -23.5,17.5
- parent: 38344
-- proto: FloraRockSolid01
- entities:
- - uid: 18374
- components:
- - type: Transform
- pos: -1.4489589,0.646965
- parent: 2
- - uid: 38984
- components:
- - type: Transform
- pos: -5.5,23.5
- parent: 38344
-- proto: FloraRockSolid02
- entities:
- - uid: 18375
- components:
- - type: Transform
- pos: 0.39479113,-1.821785
- parent: 2
- - uid: 18376
- components:
- - type: Transform
- pos: 0.47903633,5.6187086
- parent: 2
- - uid: 38985
- components:
- - type: Transform
- pos: -0.5,20.5
- parent: 38344
-- proto: FloraRockSolid03
- entities:
- - uid: 38986
- components:
- - type: Transform
- pos: -6.5,16.5
- parent: 38344
-- proto: FloraStalagmite3
- entities:
- - uid: 38987
- components:
- - type: Transform
- pos: -20.5,18.5
- parent: 38344
-- proto: FloraStalagmite6
- entities:
- - uid: 38988
- components:
- - type: Transform
- pos: -19.5,13.5
- parent: 38344
- - uid: 38989
- components:
- - type: Transform
- pos: -26.5,14.5
- parent: 38344
-- proto: FloraTree02
- entities:
- - uid: 18377
- components:
- - type: Transform
- pos: 86.08874,-20.470678
- parent: 2
- - uid: 18378
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.738884,-20.49512
- parent: 2
- - uid: 18379
- components:
- - type: Transform
- pos: 4.0811877,-2.14328
- parent: 2
-- proto: FloraTree03
- entities:
- - uid: 18380
- components:
- - type: Transform
- pos: 89.24547,-16.82761
- parent: 2
- - uid: 18381
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.794815,-17.294529
- parent: 2
- - uid: 18382
- components:
- - type: Transform
- pos: -3.0119271,7.6560354
- parent: 2
-- proto: FloraTree04
- entities:
- - uid: 18383
- components:
- - type: Transform
- pos: 86.19199,-16.193392
- parent: 2
- - uid: 18384
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.34982,-17.176535
- parent: 2
-- proto: FloraTree05
- entities:
- - uid: 18385
- components:
- - type: Transform
- pos: 85.98547,-24.423481
- parent: 2
- - uid: 18386
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.88979,-23.562963
- parent: 2
-- proto: FloraTree06
- entities:
- - uid: 18387
- components:
- - type: Transform
- pos: 88.153885,-22.786312
- parent: 2
- - uid: 18388
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.26779,-22.751753
- parent: 2
- - uid: 18389
- components:
- - type: Transform
- pos: 2.3427134,5.0341353
- parent: 2
-- proto: FloraTreeLarge01
- entities:
- - uid: 18390
- components:
- - type: Transform
- pos: 4.112849,2.8949628
- parent: 2
-- proto: FloraTreeLarge02
- entities:
- - uid: 18391
- components:
- - type: Transform
- pos: 2.2234614,7.1702766
- parent: 2
-- proto: FloraTreeLarge03
- entities:
- - uid: 18392
- components:
- - type: Transform
- pos: -4.147752,-4.6437526
- parent: 2
-- proto: FloraTreeLarge04
- entities:
- - uid: 18393
- components:
- - type: Transform
- pos: 3.3740466,-5.392638
- parent: 2
-- proto: FloraTreeLarge05
- entities:
- - uid: 18394
- components:
- - type: Transform
- pos: -4.3138037,2.4245863
- parent: 2
-- proto: FloraTreeLarge06
- entities:
- - uid: 18395
- components:
- - type: Transform
- pos: 2.6967456,-1.0283407
- parent: 2
-- proto: FoamCutlass
- entities:
- - uid: 18396
- components:
- - type: Transform
- pos: 63.532574,-25.28283
- parent: 2
-- proto: FolderSpawner
- entities:
- - uid: 18397
- components:
- - type: Transform
- pos: -21.40159,-7.2613006
- parent: 2
- - uid: 18398
- components:
- - type: Transform
- pos: -34.63679,-11.336835
- parent: 2
- - uid: 18399
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 89.5021,7.0654483
- parent: 2
- - uid: 18400
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: 89.53335,5.5966983
- parent: 2
- - uid: 18401
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -40.551723,45.58613
- parent: 2
- - uid: 18402
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -40.2236,45.64863
- parent: 2
- - uid: 38990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.540835,-3.5897217
- parent: 38344
- - uid: 38991
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.46271,-3.4178467
- parent: 38344
-- proto: FoodApple
- entities:
- - uid: 18403
- components:
- - type: Transform
- pos: 54.711014,-32.317398
- parent: 2
- - uid: 18404
- components:
- - type: Transform
- pos: 54.06518,-32.306984
- parent: 2
- - uid: 18405
- components:
- - type: Transform
- pos: 54.523514,-32.056984
- parent: 2
- - uid: 18406
- components:
- - type: Transform
- pos: 54.804764,-32.025734
- parent: 2
- - uid: 18407
- components:
- - type: Transform
- pos: 54.148514,-32.015316
- parent: 2
- - uid: 18408
- components:
- - type: Transform
- pos: 54.367264,-32.296566
- parent: 2
- - uid: 18409
- components:
- - type: Transform
- pos: 54.66935,-32.588234
- parent: 2
- - uid: 18410
- components:
- - type: Transform
- pos: 54.336014,-32.598648
- parent: 2
- - uid: 18411
- components:
- - type: Transform
- pos: 54.023514,-32.556984
- parent: 2
- - uid: 18412
- components:
- - type: Transform
- pos: 41.638454,28.788233
- parent: 2
- - uid: 18413
- components:
- - type: Transform
- pos: 41.46658,28.678858
- parent: 2
-- proto: FoodBakedBunHoney
- entities:
- - uid: 18414
- components:
- - type: Transform
- pos: -4.476065,0.6295253
- parent: 2
- - uid: 18415
- components:
- - type: Transform
- pos: -4.3433046,0.43778455
- parent: 2
-- proto: FoodBowlBig
- entities:
- - uid: 18416
- components:
- - type: Transform
- pos: -33.467182,33.860477
- parent: 2
-- proto: FoodBowlBigTrash
- entities:
- - uid: 18417
- components:
- - type: Transform
- pos: -49.54448,-27.797909
- parent: 2
-- proto: FoodBoxDonkpocket
- entities:
- - uid: 18418
- components:
- - type: Transform
- pos: -25.508055,-41.314716
- parent: 2
- - uid: 18419
- components:
- - type: Transform
- pos: 22.522692,35.55459
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18420
- components:
- - type: Transform
- pos: 61.444244,29.97428
- parent: 2
-- proto: FoodBoxDonkpocketDink
- entities:
- - uid: 18421
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 40.40899,-41.2417
- parent: 2
-- proto: FoodBoxDonkpocketHonk
- entities:
- - uid: 18422
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 40.643364,-41.538574
- parent: 2
- - uid: 38992
- components:
- - type: Transform
- pos: -15.637382,-1.2746582
- parent: 38344
-- proto: FoodBoxDonkpocketPizza
- entities:
- - uid: 18423
- components:
- - type: Transform
- pos: 20.50782,65.64438
- parent: 2
- - uid: 18424
- components:
- - type: Transform
- pos: -65.51054,17.856667
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18425
- components:
- - type: Transform
- pos: 40.52972,-63.32987
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18426
- components:
- - type: Transform
- pos: 35.400856,-27.347382
- parent: 2
- - type: Physics
- canCollide: False
-- proto: FoodBoxDonkpocketSpicy
- entities:
- - uid: 18427
- components:
- - type: Transform
- pos: 74.33829,-50.777576
- parent: 2
-- proto: FoodBoxDonkpocketStonk
- entities:
- - uid: 18428
- components:
- - type: Transform
- pos: -41.5,63.5
- parent: 2
-- proto: FoodBoxDonkpocketTeriyaki
- entities:
- - uid: 38993
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,30.5
- parent: 38344
- - uid: 38994
- components:
- - type: Transform
- pos: -15.371757,-1.3996582
- parent: 38344
-- proto: FoodBoxDonut
- entities:
- - uid: 18429
- components:
- - type: Transform
- pos: -27.471212,43.719692
- parent: 2
- - uid: 18430
- components:
- - type: Transform
- pos: -25.321716,-4.558418
- parent: 2
- - uid: 18431
- components:
- - type: Transform
- pos: 25.549309,-3.348259
- parent: 2
- - uid: 18432
- components:
- - type: Transform
- pos: 6.5070233,-67.36797
- parent: 2
- - uid: 18433
- components:
- - type: Transform
- pos: 67.52475,29.710743
- parent: 2
-- proto: FoodBoxPizza
- entities:
- - uid: 18434
- components:
- - type: Transform
- pos: -33.40134,-62.290806
- parent: 2
- - uid: 18435
- components:
- - type: Transform
- pos: -33.511417,-62.455917
- parent: 2
-- proto: FoodBoxPizzaFilled
- entities:
- - uid: 18436
- components:
- - type: Transform
- pos: -67.37569,59.683838
- parent: 2
- - uid: 18437
- components:
- - type: Transform
- pos: -23.501062,-14.235786
- parent: 2
- - uid: 18438
- components:
- - type: Transform
- pos: -77.423294,-0.34625316
- parent: 2
- - uid: 18439
- components:
- - type: Transform
- pos: -67.51631,59.699463
- parent: 2
-- proto: FoodBreadBaguette
- entities:
- - uid: 18440
- components:
- - type: Transform
- pos: -24.528683,35.149998
- parent: 2
-- proto: FoodBreadMimana
- entities:
- - uid: 18441
- components:
- - type: Transform
- pos: -4.516571,46.1589
- parent: 2
-- proto: FoodBurgerClown
- entities:
- - uid: 18442
- components:
- - type: Transform
- pos: 48.450497,18.110199
- parent: 2
- - uid: 18443
- components:
- - type: Transform
- pos: 11.430935,-63.542744
- parent: 2
-- proto: FoodBurgerCorgi
- entities:
- - uid: 18444
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -68.48381,-43.314323
- parent: 2
-- proto: FoodCakeApple
- entities:
- - uid: 18445
- components:
- - type: Transform
- pos: 54.4506,-32.629898
- parent: 2
-- proto: FoodCakeBirthday
- entities:
- - uid: 38995
- components:
- - type: Transform
- pos: -14.052798,-5.3416443
- parent: 38344
-- proto: FoodCakeClownSlice
- entities:
- - uid: 18446
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -45.522625,-67.62831
- parent: 2
- - uid: 18447
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -45.247433,-67.35312
- parent: 2
-- proto: FoodCakeSuppermatter
- entities:
- - uid: 18448
- components:
- - type: Transform
- pos: -55.518852,48.499203
- parent: 2
-- proto: FoodCakeSuppermatterSlice
- entities:
- - uid: 18449
- components:
- - type: Transform
- pos: -50.24872,47.597103
- parent: 2
- - uid: 18450
- components:
- - type: Transform
- pos: -50.497658,47.810375
- parent: 2
- - uid: 18451
- components:
- - type: Transform
- pos: -50.675472,47.52601
- parent: 2
- - uid: 18452
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 59.526115,-39.46158
- parent: 2
-- proto: FoodCartCold
- entities:
- - uid: 18453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,25.5
- parent: 2
-- proto: FoodCartHot
- entities:
- - uid: 18454
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,27.5
- parent: 2
-- proto: FoodCondimentBottleEnzyme
- entities:
- - uid: 18455
- components:
- - type: Transform
- pos: -31.541601,34.63286
- parent: 2
- - type: Physics
- canCollide: False
-- proto: FoodCondimentBottleHotsauce
- entities:
- - uid: 18456
- components:
- - type: Transform
- pos: -39.703274,-66.17225
- parent: 2
-- proto: FoodCondimentPacketBbq
- entities:
- - uid: 18457
- components:
- - type: Transform
- pos: -33.605064,38.70658
- parent: 2
-- proto: FoodCondimentPacketCornoil
- entities:
- - uid: 18458
- components:
- - type: Transform
- pos: -33.32463,38.692204
- parent: 2
-- proto: FoodCondimentPacketPepper
- entities:
- - uid: 18459
- components:
- - type: Transform
- pos: -33.498432,33.155624
- parent: 2
-- proto: FoodCondimentPacketSalt
- entities:
- - uid: 18460
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -74.41324,-34.23082
- parent: 2
-- proto: FoodContainerEgg
- entities:
- - uid: 18461
- components:
- - type: Transform
- pos: -33.451557,32.773823
- parent: 2
- - uid: 18462
- components:
- - type: Transform
- pos: -29.51509,36.765392
- parent: 2
-- proto: FoodDonutCaramel
- entities:
- - uid: 18463
- components:
- - type: Transform
- pos: 29.620113,-2.432455
- parent: 2
-- proto: FoodDonutChaos
- entities:
- - uid: 18464
- components:
- - type: Transform
- pos: 20.602425,15.498077
- parent: 2
-- proto: FoodDonutJellyHomer
- entities:
- - uid: 18465
- components:
- - type: Transform
- pos: -33.645515,-67.24581
- parent: 2
-- proto: FoodDonutPink
- entities:
- - uid: 18466
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -70.59498,-40.395683
- parent: 2
- - uid: 18467
- components:
- - type: Transform
- pos: 53.454067,23.698614
- parent: 2
-- proto: FoodDonutPoison
- entities:
- - uid: 18468
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -70.37623,-40.176937
- parent: 2
- - uid: 18469
- components:
- - type: Transform
- pos: 53.20498,23.627611
- parent: 2
-- proto: FoodDonutSpaceman
- entities:
- - uid: 18470
- components:
- - type: Transform
- pos: -2.7197988,72.480545
- parent: 2
- - uid: 18471
- components:
- - type: Transform
- pos: -33.388676,-67.527115
- parent: 2
-- proto: FoodDough
- entities:
- - uid: 18472
- components:
- - type: Transform
- pos: -29.375431,34.56414
- parent: 2
-- proto: FoodEggBoiled
- entities:
- - uid: 18473
->>>>>>> master
- components:
- - type: MetaData
- name: совёнок инокентий
- - type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 46.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19143
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19144
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19145
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19146
- components:
- - type: Transform
- pos: 72.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19147
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19149
- components:
- - type: Transform
- pos: 5.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19150
- components:
- - type: Transform
- pos: -10.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19151
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19152
- components:
- - type: Transform
- pos: -58.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19153
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19155
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19157
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19158
- components:
- - type: Transform
- pos: -36.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19160
- components:
- - type: Transform
- pos: 74.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,20.5
- parent: 2
- - uid: 19162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19163
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 19164
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,22.5
- parent: 2
- - uid: 19165
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19166
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19167
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19169
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19171
- components:
- - type: Transform
- pos: 34.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19172
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19173
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19174
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19175
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,-30.5
- parent: 2
- - uid: 19176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19178
- components:
- - type: Transform
- pos: -52.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19179
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19180
- components:
- - type: Transform
- pos: -8.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19181
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19182
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19183
- components:
- - type: Transform
- pos: 10.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19184
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19185
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19187
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19189
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19190
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19191
- components:
- - type: Transform
- pos: 2.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19192
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19193
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19194
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19195
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19196
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19197
-=======
- pos: 56.68599,-38.187958
- parent: 2
-- proto: FoodEggChickenFertilized
- entities:
- - uid: 18474
- components:
- - type: Transform
- pos: -32.667824,43.245087
- parent: 2
-- proto: FoodMealFries
- entities:
- - uid: 18475
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: 63.531837,-14.149153
- parent: 2
-- proto: FoodMealFriesCarrot
- entities:
- - uid: 18476
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: 63.568527,-14.8218355
- parent: 2
-- proto: FoodMealFriesCheesy
- entities:
- - uid: 18477
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: 63.458614,-14.463232
- parent: 2
-- proto: FoodMeat
- entities:
- - uid: 15451
- components:
- - type: Transform
- parent: 15450
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15452
- components:
- - type: Transform
- parent: 15450
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15453
- components:
- - type: Transform
- parent: 15450
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15454
- components:
- - type: Transform
- parent: 15450
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15455
- components:
- - type: Transform
- parent: 15450
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15456
- components:
- - type: Transform
- parent: 15450
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15457
- components:
- - type: Transform
- parent: 15450
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15458
- components:
- - type: Transform
- parent: 15450
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15459
- components:
- - type: Transform
- parent: 15450
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 18478
- components:
- - type: Transform
- pos: -31.725548,26.72904
- parent: 2
- - uid: 18479
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -45.380894,-62.499382
- parent: 2
-- proto: FoodMeatClown
- entities:
- - uid: 18481
- components:
- - type: Transform
- parent: 18480
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 18482
- components:
- - type: Transform
- pos: -29.5472,-79.58566
- parent: 2
-- proto: FoodMeatCooked
- entities:
- - uid: 18483
- components:
- - type: Transform
- pos: -30.539783,36.68206
- parent: 2
- - type: CollisionWake
- enabled: False
- - type: Physics
- sleepingAllowed: False
-- proto: FoodMeatFiestaKebab
- entities:
- - uid: 18484
- components:
- - type: Transform
- pos: 87.56384,-17.550323
- parent: 2
- - uid: 18485
- components:
- - type: Transform
- pos: 87.44583,-17.373331
- parent: 2
-- proto: FoodMeatHuman
- entities:
- - uid: 18486
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -65.22045,-35.470676
- parent: 2
- - uid: 18487
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -69.67358,-36.595676
- parent: 2
- - uid: 18488
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -70.53296,-34.283176
- parent: 2
-- proto: FoodMeatRotten
- entities:
- - uid: 18489
- components:
- - type: Transform
- pos: 21.585947,68.61313
- parent: 2
- - uid: 18490
- components:
- - type: Transform
- pos: -30.419586,-79.561264
- parent: 2
- - uid: 18491
- components:
- - type: Transform
- pos: -30.6642,-79.73249
- parent: 2
-- proto: FoodMeatSalamiSlice
- entities:
- - uid: 18492
- components:
- - type: Transform
- pos: -65.73778,-24.478151
- parent: 2
- - uid: 18493
- components:
- - type: Transform
- pos: -65.69353,-24.551897
- parent: 2
-- proto: FoodMeatTomato
- entities:
- - uid: 18494
- components:
- - type: Transform
- pos: -31.45379,-79.47242
- parent: 2
- - uid: 18495
- components:
- - type: Transform
- pos: -31.620064,-79.64918
- parent: 2
-- proto: FoodMeatWheat
- entities:
- - uid: 18496
- components:
- - type: Transform
- pos: -28.22093,-72.38955
- parent: 2
- - uid: 18497
- components:
- - type: Transform
- pos: -28.61231,-72.544464
- parent: 2
-- proto: FoodMeatXeno
- entities:
- - uid: 18498
- components:
- - type: Transform
- pos: -50.752796,-26.099058
- parent: 2
- - uid: 18499
- components:
- - type: Transform
- pos: -49.815296,-26.74534
- parent: 2
-- proto: FoodNoodlesSpesslaw
- entities:
- - uid: 18500
- components:
- - type: Transform
- pos: -4.413063,-63.23705
- parent: 2
-- proto: FoodPieApple
- entities:
- - uid: 18501
- components:
- - type: Transform
- pos: 54.10685,-32.119484
- parent: 2
- - uid: 18502
- components:
- - type: Transform
- pos: -30.604101,34.60161
- parent: 2
- - type: Physics
- canCollide: False
-- proto: FoodPieBananaCream
- entities:
- - uid: 18503
- components:
- - type: Transform
- pos: -40.59948,-69.13702
- parent: 2
- - uid: 18504
- components:
- - type: Transform
- pos: -11.880426,54.523956
- parent: 2
- - uid: 18505
- components:
- - type: Transform
- pos: -11.311705,54.652374
- parent: 2
- - uid: 18506
- components:
- - type: Transform
- pos: -6.3456492,32.831375
- parent: 2
- - uid: 18507
- components:
- - type: Transform
- pos: -11.183283,54.45057
- parent: 2
- - uid: 18508
- components:
- - type: Transform
- pos: -11.586893,54.523956
- parent: 2
- - uid: 18509
- components:
- - type: Transform
- pos: -6.2831492,32.675125
- parent: 2
- - uid: 18510
- components:
- - type: Transform
- pos: -11.715314,54.76245
- parent: 2
- - uid: 18511
- components:
- - type: Transform
- pos: -6.439399,32.597
- parent: 2
- - uid: 18512
- components:
- - type: Transform
- pos: -6.4862742,32.737625
- parent: 2
- - uid: 18513
- components:
- - type: Transform
- pos: -6.5175242,32.643875
- parent: 2
- - uid: 18514
- components:
- - type: Transform
- pos: -6.517524,32.581375
- parent: 2
-- proto: FoodPieCherry
- entities:
- - uid: 28984
- components:
- - type: Transform
- pos: 8.512606,-80.31556
- parent: 2
-- proto: FoodPieFrosty
- entities:
- - uid: 18515
- components:
- - type: Transform
- pos: -5.4706492,32.64388
- parent: 2
- - uid: 18516
- components:
- - type: Transform
- pos: -5.5487742,32.753254
- parent: 2
- - uid: 18517
- components:
- - type: Transform
- pos: -5.4706492,32.659504
- parent: 2
-- proto: FoodPineapple
- entities:
- - uid: 18518
->>>>>>> master
- components:
- - type: MetaData
- desc: Ммм, творческая.
- name: nichy
- - type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 18.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19198
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19199
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19202
- components:
- - type: Transform
- pos: -35.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19204
- components:
- - type: Transform
- pos: 47.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19205
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19206
- components:
- - type: Transform
- pos: 67.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19207
- components:
- - type: Transform
- pos: 56.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19211
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19212
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19213
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19214
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19215
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19216
- components:
- - type: Transform
- pos: -73.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19217
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19219
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19220
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19221
- components:
- - type: Transform
- pos: -35.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19222
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19223
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19224
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19225
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19226
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19227
- components:
- - type: Transform
- pos: 34.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19229
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19230
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19231
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19232
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19233
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19234
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19235
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19236
- components:
- - type: Transform
- pos: 53.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19237
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19238
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19239
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19240
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19241
- components:
- - type: Transform
- pos: -6.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19242
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19244
- components:
- - type: Transform
- pos: 53.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19245
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19246
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19247
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19248
- components:
- - type: Transform
- pos: -3.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19249
- components:
- - type: Transform
- pos: 41.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19250
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19251
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19252
- components:
- - type: Transform
- pos: -52.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19253
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19254
- components:
- - type: Transform
- pos: -36.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19256
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19257
- components:
- - type: Transform
- pos: 74.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19258
- components:
- - type: Transform
- pos: 74.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19259
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19260
- components:
- - type: Transform
- pos: 65.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19261
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19262
- components:
- - type: Transform
- pos: -58.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19263
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19264
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19265
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19266
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19267
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19268
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19269
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19270
- components:
- - type: Transform
- pos: -58.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19271
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19272
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19273
- components:
- - type: Transform
- pos: -53.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19274
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19275
- components:
- - type: Transform
- pos: -65.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 19276
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19277
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19278
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19279
- components:
- - type: Transform
- pos: 5.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19280
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19281
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19282
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19284
- components:
- - type: Transform
- pos: 0.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19285
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19286
- components:
- - type: Transform
- pos: -10.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19287
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19288
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19289
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 19290
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19291
- components:
- - type: Transform
- pos: -37.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19292
- components:
- - type: Transform
- pos: 82.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19293
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,-30.5
- parent: 2
- - uid: 19294
- components:
- - type: Transform
- pos: -37.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19295
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19296
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19297
- components:
- - type: Transform
- pos: 17.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19298
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19299
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19300
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19301
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,20.5
- parent: 2
- - uid: 19302
- components:
- - type: Transform
- pos: 18.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19303
- components:
- - type: Transform
- pos: -3.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19304
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19305
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19306
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19307
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19308
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19309
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19310
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19311
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19312
- components:
- - type: Transform
- pos: 74.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19313
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19314
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 90.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19315
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19317
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19318
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19319
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19320
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19321
- components:
- - type: Transform
- pos: -51.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19322
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,32.5
- parent: 2
- - uid: 19323
- components:
- - type: Transform
- pos: -42.5,19.5
- parent: 2
- - uid: 19324
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,20.5
- parent: 2
- - uid: 19325
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19326
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19327
- components:
- - type: Transform
- pos: -28.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19328
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 19329
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19330
- components:
- - type: Transform
- pos: 34.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19331
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19332
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19333
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19334
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19335
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19336
- components:
- - type: Transform
- pos: 34.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19337
- components:
- - type: Transform
- pos: 0.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19338
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19339
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19340
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19341
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19342
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19343
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19344
- components:
- - type: Transform
- pos: 41.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19345
- components:
- - type: Transform
- pos: -16.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19346
- components:
- - type: Transform
- pos: -16.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19347
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19348
- components:
- - type: Transform
- pos: 40.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19349
- components:
- - type: Transform
- pos: 17.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19350
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19351
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19352
- components:
- - type: Transform
- pos: -36.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19353
- components:
- - type: Transform
- pos: 34.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19354
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19355
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19356
- components:
- - type: Transform
- pos: 6.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19357
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19358
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19359
- components:
- - type: Transform
- pos: 82.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19360
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19361
- components:
- - type: Transform
- pos: -9.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19362
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19363
- components:
- - type: Transform
- pos: 74.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19364
- components:
- - type: Transform
- pos: -17.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19365
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19366
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19368
- components:
- - type: Transform
- pos: -9.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19369
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19370
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19371
- components:
- - type: Transform
- pos: 10.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19372
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19373
- components:
- - type: Transform
- pos: -58.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19374
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19375
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19376
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19377
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19378
- components:
- - type: Transform
- pos: 82.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19379
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19380
- components:
- - type: Transform
- pos: 26.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19381
- components:
- - type: Transform
- pos: -51.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19382
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19383
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19384
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19385
- components:
- - type: Transform
- pos: 52.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19386
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19387
- components:
- - type: Transform
- pos: -16.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19388
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 89.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19389
- components:
- - type: Transform
- pos: 51.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19390
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19391
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19393
- components:
- - type: Transform
- pos: 5.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19394
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19395
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19396
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19397
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19398
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19399
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19400
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19401
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19402
- components:
- - type: Transform
- pos: 5.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19403
- components:
- - type: Transform
- pos: -36.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19404
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19405
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19406
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19407
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19408
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19409
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19410
- components:
- - type: Transform
- pos: 61.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19411
- components:
- - type: Transform
- pos: 33.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19412
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19413
- components:
- - type: Transform
- pos: -16.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19414
- components:
- - type: Transform
- pos: 0.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19415
- components:
- - type: Transform
- pos: 0.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19416
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19417
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19418
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19419
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19420
- components:
- - type: Transform
- pos: -8.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19421
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19422
- components:
- - type: Transform
- pos: -65.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 19423
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19424
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19426
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19427
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19428
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19429
- components:
- - type: Transform
- pos: -36.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19430
- components:
- - type: Transform
- pos: 41.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19431
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19432
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19433
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19434
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19435
- components:
- - type: Transform
- pos: 82.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19436
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19437
- components:
- - type: Transform
- pos: 67.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19438
- components:
- - type: Transform
- pos: 73.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19439
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19440
- components:
- - type: Transform
- pos: 51.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19441
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19442
- components:
- - type: Transform
- pos: 25.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19443
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19444
- components:
- - type: Transform
- pos: 48.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19445
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19446
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19447
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19448
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19449
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19450
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19451
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19452
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19456
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19457
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19458
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19459
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19460
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19461
- components:
- - type: Transform
- pos: -30.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19462
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19463
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19464
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19465
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19466
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,55.5
- parent: 2
- - uid: 19468
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19469
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19470
- components:
- - type: Transform
- pos: -9.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19471
- components:
- - type: Transform
- pos: -16.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19472
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19473
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19474
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,32.5
- parent: 2
- - uid: 19475
- components:
- - type: Transform
- pos: -9.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19476
- components:
- - type: Transform
- pos: -52.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19477
- components:
- - type: Transform
- pos: 48.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19478
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19479
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19480
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19481
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19482
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19484
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19485
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19486
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19487
- components:
- - type: Transform
- pos: 73.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19488
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19489
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19490
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19491
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19492
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19493
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19494
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19495
- components:
- - type: Transform
- pos: 56.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19496
- components:
- - type: Transform
- pos: 53.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19497
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19498
- components:
- - type: Transform
- pos: 6.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19499
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19500
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19501
- components:
- - type: Transform
- pos: -9.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19502
- components:
- - type: Transform
- pos: 73.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19503
- components:
- - type: Transform
- pos: 40.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19504
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19505
- components:
- - type: Transform
- pos: 82.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19506
- components:
- - type: Transform
- pos: -8.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19507
- components:
- - type: Transform
- pos: -35.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19508
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19509
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19511
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19512
- components:
- - type: Transform
- pos: 42.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19513
- components:
- - type: Transform
- pos: 0.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19514
- components:
- - type: Transform
- pos: -9.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19515
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19516
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19517
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19518
- components:
- - type: Transform
- pos: -52.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19519
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19520
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19521
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19522
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19523
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19524
- components:
- - type: Transform
- pos: 0.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19525
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19526
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19527
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19528
- components:
- - type: Transform
- pos: 26.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19529
- components:
- - type: Transform
- pos: 21.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19530
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19531
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19532
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19533
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19534
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19535
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19538
- components:
- - type: Transform
- pos: -76.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19539
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19540
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19541
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19542
- components:
- - type: Transform
- pos: 44.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19543
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19544
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19545
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19546
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19547
- components:
- - type: Transform
- pos: -22.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19548
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19549
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19550
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19551
- components:
- - type: Transform
- pos: 48.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19552
- components:
- - type: Transform
- pos: 0.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19553
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19554
- components:
- - type: Transform
- pos: 18.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19555
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19556
- components:
- - type: Transform
- pos: 49.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19557
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19558
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19559
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19560
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19561
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19562
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19563
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19564
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19565
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19566
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19567
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19568
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19569
- components:
- - type: Transform
- pos: 52.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19570
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19571
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19572
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19573
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19574
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19575
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19576
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19577
- components:
- - type: Transform
- pos: -0.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19579
- components:
- - type: Transform
- pos: -2.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19580
- components:
- - type: Transform
- pos: -6.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19581
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19582
- components:
- - type: Transform
- pos: -0.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19583
- components:
- - type: Transform
- pos: -29.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19584
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19585
- components:
- - type: Transform
- pos: 28.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19586
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19587
- components:
- - type: Transform
- pos: -14.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19588
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19589
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19590
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19591
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19593
- components:
- - type: Transform
- pos: -22.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19594
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19595
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19596
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19597
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19598
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19599
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19600
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19601
- components:
- - type: Transform
- pos: -22.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19602
- components:
- - type: Transform
- pos: 0.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19603
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19604
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19605
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19606
- components:
- - type: Transform
- pos: -23.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19607
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19608
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19609
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19610
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19611
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19612
- components:
- - type: Transform
- pos: 26.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19613
- components:
- - type: Transform
- pos: 17.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19614
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19615
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19616
- components:
- - type: Transform
- pos: 52.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19617
- components:
- - type: Transform
- pos: 0.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19618
- components:
- - type: Transform
- pos: 26.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19619
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19620
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19621
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19622
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19623
- components:
- - type: Transform
- pos: -14.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19624
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19626
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19628
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19629
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19630
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19631
- components:
- - type: Transform
- pos: 2.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19632
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19633
- components:
- - type: Transform
- pos: 18.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19634
- components:
- - type: Transform
- pos: 18.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19635
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19636
- components:
- - type: Transform
- pos: -16.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19637
- components:
- - type: Transform
- pos: -14.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19638
- components:
- - type: Transform
- pos: -28.5,80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19639
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19640
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19641
- components:
- - type: Transform
- pos: 21.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19642
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19643
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19644
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19646
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19647
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19649
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19650
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19651
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19652
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19653
- components:
- - type: Transform
- pos: 0.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19654
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19655
- components:
- - type: Transform
- pos: 16.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19656
- components:
- - type: Transform
- pos: 16.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19657
- components:
- - type: Transform
- pos: 16.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19658
- components:
- - type: Transform
- pos: 16.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19659
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19660
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19662
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19663
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19664
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19665
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19666
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19668
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19669
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19670
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19671
- components:
- - type: Transform
- pos: -0.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19672
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19674
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19675
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19676
- components:
- - type: Transform
- pos: 16.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19677
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19678
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19679
- components:
- - type: Transform
- pos: 59.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19680
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19681
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19682
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19683
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19684
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19685
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19686
- components:
- - type: Transform
- pos: 14.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19688
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19689
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19690
- components:
- - type: Transform
- pos: 51.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19691
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19692
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19693
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19694
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19695
- components:
- - type: Transform
- pos: 74.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19696
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19697
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19698
- components:
- - type: Transform
- pos: 40.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19699
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19700
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19701
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19702
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19703
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19704
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19705
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19706
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19707
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19708
- components:
- - type: Transform
- pos: 40.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19710
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19713
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19714
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19715
- components:
- - type: Transform
- pos: 0.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19716
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19717
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19718
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19719
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19720
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19721
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19722
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19723
- components:
- - type: Transform
- pos: 27.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19724
- components:
- - type: Transform
- pos: -19.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19725
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
- pos: 20.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 19726
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19727
- components:
- - type: Transform
- pos: -59.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19728
- components:
- - type: Transform
- pos: 17.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19729
- components:
- - type: Transform
- pos: 17.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19730
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
- pos: 18.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 19731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19732
- components:
- - type: Transform
- pos: 18.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19736
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19738
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19739
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19740
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19741
- components:
- - type: Transform
- pos: 82.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19742
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19743
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19745
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19746
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19747
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19748
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19749
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19750
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19751
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19752
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19753
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19754
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19756
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19758
- components:
- - type: Transform
- pos: -36.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19759
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19760
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19761
- components:
- - type: Transform
- pos: 74.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19762
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19763
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19764
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19765
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19766
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19768
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19769
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19770
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19771
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19772
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19773
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19774
- components:
- - type: Transform
- pos: -19.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19775
- components:
- - type: Transform
- pos: 27.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19776
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19777
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19778
- components:
- - type: Transform
- pos: 10.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19779
- components:
- - type: Transform
- pos: -35.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19780
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19781
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19782
- components:
- - type: Transform
- pos: 87.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19783
- components:
- - type: Transform
- pos: 87.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19784
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19785
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19787
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19789
- components:
- - type: Transform
- pos: 5.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19790
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19791
- components:
- - type: Transform
- pos: -8.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19792
- components:
- - type: Transform
- pos: 18.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19793
- components:
- - type: Transform
- pos: -60.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19794
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19795
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19796
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19797
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19798
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19799
- components:
- - type: Transform
- pos: 73.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19800
- components:
- - type: Transform
- pos: 73.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19802
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19803
- components:
- - type: Transform
- pos: 48.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19804
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19805
- components:
- - type: Transform
- pos: 48.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19806
- components:
- - type: Transform
- pos: 73.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19807
- components:
- - type: Transform
- pos: 48.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19809
- components:
- - type: Transform
- pos: -12.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19810
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19811
- components:
- - type: Transform
- pos: 52.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19812
- components:
- - type: Transform
- pos: 34.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19813
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19814
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19815
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19816
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19817
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19818
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19819
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19820
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19821
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19822
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19823
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19824
- components:
- - type: Transform
- pos: 52.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19825
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19827
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19828
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19829
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19830
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19831
- components:
- - type: Transform
- pos: 0.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19832
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19833
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19834
- components:
- - type: Transform
- pos: 34.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19835
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19836
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19837
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19838
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19839
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19840
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19841
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19842
- components:
- - type: Transform
- pos: -3.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19843
- components:
- - type: Transform
- pos: -16.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19844
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19845
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19846
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19847
- components:
- - type: Transform
- pos: 1.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19848
- components:
- - type: Transform
- pos: 0.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19850
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19851
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19852
- components:
- - type: Transform
- pos: 11.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19854
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19855
- components:
- - type: Transform
- pos: 29.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19856
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19857
- components:
- - type: Transform
- pos: 25.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19858
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19859
- components:
- - type: Transform
- pos: -21.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19860
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19861
- components:
- - type: Transform
- pos: 52.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19862
- components:
- - type: Transform
- pos: 87.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19863
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19864
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19865
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19866
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19867
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19868
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19869
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19870
- components:
- - type: Transform
- pos: -29.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19871
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19872
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 84.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19873
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19874
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19875
- components:
- - type: Transform
- pos: -26.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19876
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19877
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19878
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19879
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19880
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19881
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19882
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19883
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19884
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19885
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19886
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19887
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19888
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19889
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19890
- components:
- - type: Transform
- pos: -13.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19891
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19893
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19894
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19895
- components:
- - type: Transform
- pos: 74.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19896
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19897
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19898
- components:
- - type: Transform
- pos: 73.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19899
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19900
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,32.5
- parent: 2
- - uid: 19901
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19902
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19903
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19904
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19906
- components:
- - type: Transform
- pos: 50.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19907
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19908
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19909
- components:
- - type: Transform
- pos: -9.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19910
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19911
- components:
- - type: Transform
- pos: -35.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19913
- components:
- - type: Transform
- pos: 87.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19914
- components:
- - type: Transform
- pos: 65.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19915
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19916
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19917
- components:
- - type: Transform
- pos: -35.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19918
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19919
- components:
- - type: Transform
- anchored: False
- rot: 1.5707963267948966 rad
- pos: 34.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 19920
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19921
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19922
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19923
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19924
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19925
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19926
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19927
- components:
- - type: Transform
- pos: 82.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19929
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19930
- components:
- - type: Transform
- pos: 38.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19931
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19932
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19934
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19935
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19936
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19937
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19938
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19939
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19940
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19941
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19942
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19943
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19944
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19945
- components:
- - type: Transform
- pos: 17.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19946
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19947
- components:
- - type: Transform
- pos: 87.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19949
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19950
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19951
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19952
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19953
- components:
- - type: Transform
- pos: 34.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 19954
- components:
- - type: Transform
- pos: -32.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19955
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19956
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19957
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19958
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19959
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,20.5
- parent: 2
- - uid: 19960
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19961
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19962
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,20.5
- parent: 2
- - uid: 19963
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19964
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19965
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19966
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19967
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19968
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19969
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19970
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19971
- components:
- - type: Transform
- pos: 87.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19972
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19973
- components:
- - type: Transform
- pos: 48.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19974
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19975
- components:
- - type: Transform
- pos: 87.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19976
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19977
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19978
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19979
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19980
- components:
- - type: Transform
- pos: 33.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19981
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19982
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19983
- components:
- - type: Transform
- pos: 41.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19984
- components:
- - type: Transform
- pos: 39.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19985
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19986
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19987
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19988
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19989
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19991
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19992
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19993
- components:
- - type: Transform
- pos: -53.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19994
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19995
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19996
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19997
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19998
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19999
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20001
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20002
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20003
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20004
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20005
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20006
- components:
- - type: Transform
- pos: 47.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20007
- components:
- - type: Transform
- pos: -46.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20008
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20009
- components:
- - type: Transform
- pos: 0.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20011
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20012
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20013
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20015
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20016
- components:
- - type: Transform
- pos: 28.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20017
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20018
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20019
- components:
- - type: Transform
- pos: 0.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20020
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20021
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20022
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20023
- components:
- - type: Transform
- pos: -53.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20024
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20025
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20026
- components:
- - type: Transform
- pos: 47.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0313FF00'
- - uid: 20027
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20028
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20029
- components:
- - type: Transform
- pos: 40.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20030
- components:
- - type: Transform
- pos: -36.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20031
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20032
- components:
- - type: Transform
- pos: 6.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20033
- components:
- - type: Transform
- pos: -8.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20034
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20035
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20036
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20037
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20038
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20039
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20040
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20041
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20042
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20043
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20044
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20045
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20046
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20047
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20048
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20049
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20050
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20051
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20052
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20053
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20054
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20055
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20056
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20057
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20058
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20059
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20060
- components:
- - type: Transform
- pos: 0.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20061
- components:
- - type: Transform
- pos: 11.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20062
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20063
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20064
- components:
- - type: Transform
- pos: -14.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20065
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 20066
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20067
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20068
- components:
- - type: Transform
- pos: -28.5,79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20069
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20070
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20071
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20072
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20073
- components:
- - type: Transform
- pos: 17.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20074
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20075
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20076
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20077
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20078
- components:
- - type: Transform
- pos: 28.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20079
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20080
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20081
- components:
- - type: Transform
- pos: -53.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20082
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20083
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20084
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20085
- components:
- - type: Transform
- pos: 11.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20086
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20087
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20088
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20089
- components:
- - type: Transform
- pos: 0.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20092
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20093
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20094
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20095
- components:
- - type: Transform
- pos: -57.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20096
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20097
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20099
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20100
- components:
- - type: Transform
- pos: 47.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20101
- components:
- - type: Transform
- pos: -26.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20102
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20104
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20105
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20106
- components:
- - type: Transform
- pos: 16.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20107
- components:
- - type: Transform
- pos: 23.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20108
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20109
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20111
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20112
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20113
- components:
- - type: Transform
- pos: -16.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20115
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20116
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20117
- components:
- - type: Transform
- pos: 11.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20118
- components:
- - type: Transform
- pos: 0.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20119
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20120
- components:
- - type: Transform
- pos: 0.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20121
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 20122
- components:
- - type: Transform
- pos: 14.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20123
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20124
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 20125
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 79.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20126
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20127
- components:
- - type: Transform
- pos: 11.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20128
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20129
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20130
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20131
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20132
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20133
- components:
- - type: Transform
- pos: 0.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20134
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20135
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20136
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 20137
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20138
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20139
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20140
- components:
- - type: Transform
- pos: -20.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20141
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20142
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20143
- components:
- - type: Transform
- pos: 10.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20144
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20145
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20146
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20147
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20148
- components:
- - type: Transform
- pos: 0.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20150
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20151
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20152
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20153
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20154
- components:
- - type: Transform
- pos: 11.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20155
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20157
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 85.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20158
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20160
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20161
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20162
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20163
- components:
- - type: Transform
- pos: -36.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20164
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20165
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20166
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20167
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20169
- components:
- - type: Transform
- pos: -16.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20170
- components:
- - type: Transform
- pos: -0.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20171
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20172
- components:
- - type: Transform
- pos: -17.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20173
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20175
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20176
- components:
- - type: Transform
- pos: 2.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20177
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20178
- components:
- - type: Transform
- pos: -14.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20179
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20180
- components:
- - type: Transform
- pos: -22.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20181
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20182
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20184
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20185
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20186
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20187
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20188
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20189
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20190
- components:
- - type: Transform
- pos: 18.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20191
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20192
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20194
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20195
- components:
- - type: Transform
- pos: -9.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20196
- components:
- - type: Transform
- pos: 16.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20197
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20198
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 78.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20200
- components:
- - type: Transform
- pos: -0.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20201
- components:
- - type: Transform
- pos: 23.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20202
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20203
- components:
- - type: Transform
- pos: 23.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20204
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20205
- components:
- - type: Transform
- pos: 7.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20207
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20208
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20209
- components:
- - type: Transform
- pos: 53.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20210
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20211
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20212
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20213
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20214
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20215
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20216
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20218
- components:
- - type: Transform
- pos: -20.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20219
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20220
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20221
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20222
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20223
- components:
- - type: Transform
- pos: -1.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20224
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20225
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20226
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20227
- components:
- - type: Transform
- pos: -0.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20230
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20231
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20233
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20234
- components:
- - type: Transform
- pos: 0.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20235
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20236
- components:
- - type: Transform
- pos: -52.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20237
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20238
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20239
- components:
- - type: Transform
- pos: 0.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20240
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20241
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20242
- components:
- - type: Transform
- pos: -53.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20243
- components:
- - type: Transform
- pos: -57.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20244
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20245
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20246
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20247
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20248
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20249
- components:
- - type: Transform
- pos: 18.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20250
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20251
- components:
- - type: Transform
- pos: 1.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20252
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20253
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20254
- components:
- - type: Transform
- pos: 11.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20255
- components:
- - type: Transform
- pos: 0.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20256
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20258
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20259
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20260
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20261
- components:
- - type: Transform
- pos: 23.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20262
- components:
- - type: Transform
- pos: 39.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20263
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20264
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20265
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20266
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20267
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20268
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20269
- components:
- - type: Transform
- pos: 18.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20270
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20271
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20272
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20273
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20274
- components:
- - type: Transform
- pos: 52.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20275
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20276
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20277
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20278
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20279
- components:
- - type: Transform
- pos: 16.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20280
- components:
- - type: Transform
- pos: -0.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20281
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20282
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20283
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20284
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20285
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20286
- components:
- - type: Transform
- pos: 18.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20287
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20288
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20289
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20290
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20291
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20292
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20293
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20294
- components:
- - type: Transform
- pos: 14.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20295
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20296
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20297
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20298
- components:
- - type: Transform
- pos: 16.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20299
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20300
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20301
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20302
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20303
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20304
- components:
- - type: Transform
- pos: 14.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20305
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20306
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20307
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20308
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20309
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20310
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20311
- components:
- - type: Transform
- pos: 16.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20312
- components:
- - type: Transform
- pos: 18.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20313
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20314
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20315
- components:
- - type: Transform
- pos: 16.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20317
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20318
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20319
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20320
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20321
- components:
- - type: Transform
- pos: 14.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20322
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20323
- components:
- - type: Transform
- pos: 52.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20324
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20325
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20326
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20327
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20328
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20329
- components:
- - type: Transform
- pos: 18.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20330
- components:
- - type: Transform
- pos: 18.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20331
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20332
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20333
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20334
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20336
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20337
- components:
- - type: Transform
- pos: 11.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20338
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20339
- components:
- - type: Transform
- pos: -14.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20340
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20341
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20342
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20343
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 20344
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20345
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20346
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 20347
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20348
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20349
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20350
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20351
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20352
- components:
- - type: Transform
- pos: -53.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20353
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20354
- components:
- - type: Transform
- pos: 44.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20355
- components:
- - type: Transform
- pos: 40.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20356
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20357
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20358
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20359
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20360
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20361
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20362
- components:
- - type: Transform
- pos: 6.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20363
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20364
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20365
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20366
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20368
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20369
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20370
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20371
- components:
- - type: Transform
- pos: -28.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20372
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20373
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20374
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20376
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20377
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20378
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20379
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20380
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20381
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20382
- components:
- - type: Transform
- pos: 53.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20383
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20384
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20385
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20386
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20387
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20388
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20389
- components:
- - type: Transform
- pos: 23.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20390
- components:
- - type: Transform
- pos: 23.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20391
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20392
- components:
- - type: Transform
- pos: 16.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20393
- components:
- - type: Transform
- pos: 23.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20394
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20395
- components:
- - type: Transform
- pos: 7.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20397
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20398
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20399
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20401
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20402
- components:
- - type: Transform
- pos: -48.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20403
- components:
- - type: Transform
- pos: 40.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 20404
- components:
- - type: Transform
- pos: 0.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20405
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20406
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20407
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20408
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20409
- components:
- - type: Transform
- pos: -26.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20410
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20411
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20412
- components:
- - type: Transform
- pos: -35.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20413
- components:
- - type: Transform
- pos: 2.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20414
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20415
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20416
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20417
- components:
- - type: Transform
- pos: -6.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20418
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20419
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20420
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
- pos: 19.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 20421
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20422
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20423
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20424
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20425
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20426
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20427
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20428
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20429
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20430
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20431
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20432
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20433
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20434
- components:
- - type: Transform
- anchored: False
- rot: 1.5707963267948966 rad
- pos: -20.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 20435
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20436
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20437
- components:
- - type: Transform
- pos: 28.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20438
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20439
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20440
- components:
- - type: Transform
- pos: -6.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20441
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20442
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20443
- components:
- - type: Transform
- pos: 17.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20444
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20445
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20446
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20447
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20448
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20449
- components:
- - type: Transform
- pos: -40.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20450
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20451
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20452
- components:
- - type: Transform
- pos: 0.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20454
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20456
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20457
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20458
- components:
- - type: Transform
- pos: -29.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20459
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20460
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20461
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20462
- components:
- - type: Transform
- pos: 23.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20463
- components:
- - type: Transform
- pos: -21.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20464
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20465
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20466
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20468
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20469
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20470
- components:
- - type: Transform
- pos: 34.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 20471
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20472
- components:
- - type: Transform
- pos: 41.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20473
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20474
- components:
- - type: Transform
- pos: -29.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20475
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20476
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20477
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20478
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20479
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20480
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20481
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20482
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20483
- components:
- - type: Transform
- pos: 46.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20484
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20485
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20486
- components:
- - type: Transform
- pos: 50.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20487
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20488
- components:
- - type: Transform
- pos: -37.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20489
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20490
- components:
- - type: Transform
- pos: -58.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20491
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20492
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20493
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20494
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20495
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20496
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20497
- components:
- - type: Transform
- pos: -53.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20498
- components:
- - type: Transform
- pos: 48.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20499
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20500
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20501
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20502
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20503
- components:
- - type: Transform
- pos: -31.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20504
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20505
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20506
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20507
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20508
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20509
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20511
- components:
- - type: Transform
- pos: 69.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20512
- components:
- - type: Transform
- pos: -7.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20513
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20514
- components:
- - type: Transform
- pos: 17.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20515
- components:
- - type: Transform
- pos: -13.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20516
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20517
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20518
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20519
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20520
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20521
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20522
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20523
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20524
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20525
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20526
- components:
- - type: Transform
- pos: -6.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20527
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20528
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20529
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20530
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20531
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20532
- components:
- - type: Transform
- pos: 23.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20533
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20534
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20535
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 20536
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20537
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20538
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20539
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20540
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20541
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20542
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20543
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20544
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20545
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20546
- components:
- - type: Transform
- pos: 4.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20547
- components:
- - type: Transform
- pos: 4.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20548
- components:
- - type: Transform
- pos: 4.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20549
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -122.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20550
- components:
- - type: Transform
- pos: 25.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20551
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20552
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20553
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20554
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-30.5
- parent: 2
- - uid: 20555
- components:
- - type: Transform
- pos: 18.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20556
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20557
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20558
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20559
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20560
- components:
- - type: Transform
- pos: -53.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20561
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20562
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20563
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,20.5
- parent: 2
- - uid: 20564
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20565
- components:
- - type: Transform
- pos: -65.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 20566
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20567
- components:
- - type: Transform
- pos: 18.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20568
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20569
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20570
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20571
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20572
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20573
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20574
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20575
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20576
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20577
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20578
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20579
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20580
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20581
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20582
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20583
- components:
- - type: Transform
- pos: -1.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20585
- components:
- - type: Transform
- pos: 27.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20586
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20587
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20589
- components:
- - type: Transform
- pos: 33.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20590
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20591
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20592
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20593
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20594
- components:
- - type: Transform
- pos: 33.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20595
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20596
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20597
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20598
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20599
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20600
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20601
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20602
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20603
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20605
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20606
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20607
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20608
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20609
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20610
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20611
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20612
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20613
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20614
- components:
- - type: Transform
- pos: 45.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20615
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20617
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20618
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20619
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20620
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20621
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20622
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20623
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20624
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20626
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20627
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20628
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20629
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20630
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20631
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20632
- components:
- - type: Transform
- pos: 18.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20633
-=======
- pos: 55.338768,-36.278233
- parent: 2
- - uid: 18519
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: 29.467098,-17.498724
- parent: 2
-- proto: FoodPizzaMeat
- entities:
- - uid: 18520
- components:
- - type: Transform
- pos: -39.03059,-66.221176
- parent: 2
-- proto: FoodPlateSmall
- entities:
- - uid: 18521
- components:
- - type: Transform
- pos: -24.540524,32.14744
- parent: 2
-- proto: FoodPlateSmallPlastic
- entities:
- - uid: 18522
- components:
- - type: Transform
- pos: -24.555004,37.95691
- parent: 2
-- proto: FoodPlateTrash
- entities:
- - uid: 18523
- components:
- - type: Transform
- pos: -39.507633,-48.448273
- parent: 2
- - uid: 18524
- components:
- - type: Transform
- pos: -37.521866,-35.583843
- parent: 2
- - uid: 18525
- components:
- - type: Transform
- pos: 19.468113,68.79927
- parent: 2
- - uid: 18526
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 41.505836,-47.317596
- parent: 2
-- proto: FoodPoppy
- entities:
- - uid: 18527
- components:
- - type: Transform
- pos: 26.749449,18.649921
- parent: 2
-- proto: FoodSnackChips
- entities:
- - uid: 18528
- components:
- - type: Transform
- pos: -30.542528,-62.437508
- parent: 2
- - uid: 18529
- components:
- - type: Transform
- pos: -30.310146,-62.620964
- parent: 2
- - uid: 18530
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.706806,18.531712
- parent: 2
- - uid: 18531
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.97243,18.437962
- parent: 2
- - uid: 18532
- components:
- - type: Transform
- pos: -63.479282,18.606667
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18533
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: 63.321533,-13.739408
- parent: 2
- - uid: 18534
- components:
- - type: Transform
- pos: 63.731422,-13.6798315
- parent: 2
- - uid: 18535
- components:
- - type: Transform
- pos: 63.731422,-13.3618355
- parent: 2
- - uid: 18536
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: 63.333763,-13.3113365
- parent: 2
-- proto: FoodSnackChocolate
- entities:
- - uid: 18537
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.522848,-43.45425
- parent: 2
- - uid: 18538
- components:
- - type: Transform
- pos: 14.422254,-52.26433
- parent: 2
- - uid: 18539
- components:
- - type: Transform
- pos: 9.564638,7.080452
- parent: 2
- - uid: 18540
- components:
- - type: Transform
- pos: -41.541843,-50.54525
- parent: 2
-- proto: FoodSnackSemki
- entities:
- - uid: 18541
- components:
- - type: Transform
- pos: -71.73916,-20.629597
- parent: 2
- - uid: 18542
- components:
- - type: Transform
- pos: -71.34853,-20.504597
- parent: 2
-- proto: FoodSnackSyndi
- entities:
- - uid: 14746
- components:
- - type: Transform
- parent: 14738
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 18543
- components:
- - type: Transform
- pos: -45.591347,14.606249
- parent: 2
- - uid: 18544
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 44.50117,-65.44648
- parent: 2
-- proto: FoodSoupClown
- entities:
- - uid: 18545
- components:
- - type: Transform
- pos: 11.5,68.5
- parent: 2
- - uid: 18546
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -45.687737,-67.18801
- parent: 2
-- proto: FoodTartMime
- entities:
- - uid: 18547
- components:
- - type: Transform
- pos: -6.3533263,26.629135
- parent: 2
-- proto: FoodTinBeans
- entities:
- - uid: 18548
- components:
- - type: Transform
- pos: 33.65059,38.73095
- parent: 2
-- proto: FoodTinPeachesMaint
- entities:
- - uid: 18549
- components:
- - type: Transform
- pos: -22.458153,54.69275
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 18550
- components:
- - type: Transform
- pos: 24.954596,57.524624
- parent: 2
-- proto: Football
- entities:
- - uid: 18551
- components:
- - type: Transform
- pos: -43.695137,-47.651398
- parent: 2
- - uid: 18552
- components:
- - type: Transform
- pos: 87.5,-23.5
- parent: 2
-- proto: Fork
- entities:
- - uid: 18553
- components:
- - type: Transform
- pos: -33.404682,37.962914
- parent: 2
-- proto: FuelDispenser
- entities:
- - uid: 18554
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-36.5
- parent: 2
-- proto: GasAnalyzer
- entities:
- - uid: 18555
- components:
- - type: Transform
- pos: -54.587723,-4.552858
- parent: 2
-- proto: GasCanisterBrokenBase
- entities:
- - uid: 18556
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-45.5
- parent: 2
- - uid: 18557
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-63.5
- parent: 2
- - uid: 18558
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.500008,-50.500046
- parent: 2
- - uid: 18559
- components:
- - type: Transform
- pos: -46.5,-30.5
- parent: 2
- - uid: 18560
- components:
- - type: Transform
- pos: -44.5,-21.5
- parent: 2
- - uid: 18561
- components:
- - type: Transform
- pos: 39.5,-63.5
- parent: 2
- - uid: 18562
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 40.5,-42.5
- parent: 2
-- proto: GasFilter
- entities:
- - uid: 18563
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-51.5
- parent: 2
-- proto: GasMinerCarbonDioxide
- entities:
- - uid: 18564
- components:
- - type: Transform
- pos: -71.5,41.5
- parent: 2
-- proto: GasMinerNitrogenStation
- entities:
- - uid: 38996
- components:
- - type: Transform
- pos: 17.5,2.5
- parent: 38344
-- proto: GasMinerNitrogenStationLarge
- entities:
- - uid: 18565
- components:
- - type: Transform
- pos: -71.5,37.5
- parent: 2
-- proto: GasMinerOxygenStation
- entities:
- - uid: 38997
- components:
- - type: Transform
- pos: 17.5,4.5
- parent: 38344
-- proto: GasMinerOxygenStationLarge
- entities:
- - uid: 18566
- components:
- - type: Transform
- pos: -71.5,33.5
- parent: 2
-- proto: GasMinerPlasma
- entities:
- - uid: 18567
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,29.5
- parent: 2
-- proto: GasMinerWaterVapor
- entities:
- - uid: 18568
- components:
- - type: Transform
- pos: -71.5,45.5
- parent: 2
-- proto: GasMixer
- entities:
- - uid: 18569
- components:
- - type: Transform
- pos: 78.5,22.5
- parent: 2
- - type: GasMixer
- targetPressure: 4500
- - uid: 18570
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-45.5
- parent: 2
- - uid: 18571
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-53.5
- parent: 2
- - uid: 18572
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18573
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,18.5
- parent: 2
- - type: GasMixer
- inletTwoConcentration: 0.78
- inletOneConcentration: 0.22
- - uid: 18574
- components:
- - type: Transform
- pos: -60.5,33.5
- parent: 2
- - type: GasMixer
- inletTwoConcentration: 0.20999998
- inletOneConcentration: 0.79
- - type: AtmosPipeColor
- color: '#17E8E2FF'
-- proto: GasMixerFlipped
- entities:
- - uid: 18575
- components:
- - type: Transform
- pos: -22.5,-52.5
- parent: 2
- - uid: 38998
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,2.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasOutletInjector
- entities:
- - uid: 18576
- components:
- - type: Transform
- pos: 75.5,27.5
- parent: 2
- - uid: 18577
- components:
- - type: Transform
- pos: -55.5,53.5
- parent: 2
- - uid: 18578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-38.5
- parent: 2
- - uid: 18579
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-43.5
- parent: 2
- - uid: 18580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18581
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18582
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18583
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18585
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18586
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
-- proto: GasPassiveVent
- entities:
- - uid: 18587
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18588
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18589
- components:
- - type: Transform
- pos: -66.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18590
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18591
- components:
- - type: Transform
- pos: -54.5,53.5
- parent: 2
- - uid: 18592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-40.5
- parent: 2
- - uid: 18593
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,15.5
- parent: 2
- - uid: 18594
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18595
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18596
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18597
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18598
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18599
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 18601
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18602
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18603
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 38999
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,4.5
- parent: 38344
- - uid: 39000
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,6.5
- parent: 38344
- - uid: 39001
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,2.5
- parent: 38344
-- proto: GasPipeBend
- entities:
- - uid: 18604
- components:
- - type: Transform
- pos: -2.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18605
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18606
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18607
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18608
- components:
- - type: Transform
- pos: -59.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18609
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18610
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18611
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18612
- components:
- - type: Transform
- pos: -52.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18613
- components:
- - type: Transform
- pos: -53.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18614
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18615
- components:
- - type: Transform
- pos: -58.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18617
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18618
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18619
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18620
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18621
- components:
- - type: Transform
- pos: -52.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18622
- components:
- - type: Transform
- pos: -51.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18623
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18624
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18625
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18626
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18627
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18628
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18629
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18630
- components:
- - type: Transform
- pos: -64.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18631
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18632
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18633
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18634
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18635
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18636
- components:
- - type: Transform
- pos: -60.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18637
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18638
- components:
- - type: Transform
- pos: -61.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18639
- components:
- - type: Transform
- pos: -59.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18640
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18641
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18642
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18643
- components:
- - type: Transform
- pos: -40.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18644
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18645
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18646
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18647
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18648
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18649
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18650
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18651
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18652
- components:
- - type: Transform
- pos: 40.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18653
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18654
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18655
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,60.5
- parent: 2
- - uid: 18656
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18657
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18658
- components:
- - type: Transform
- pos: -8.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18659
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -122.5,18.5
- parent: 2
- - uid: 18660
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18662
- components:
- - type: Transform
- pos: 4.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18663
- components:
- - type: Transform
- pos: 3.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18664
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18665
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18666
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 75.5,21.5
- parent: 2
- - uid: 18668
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 78.5,21.5
- parent: 2
- - uid: 18669
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 77.5,22.5
- parent: 2
- - uid: 18670
- components:
- - type: Transform
- pos: -29.5,-51.5
- parent: 2
- - uid: 18671
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18672
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-51.5
- parent: 2
- - uid: 18673
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-51.5
- parent: 2
- - uid: 18674
- components:
- - type: Transform
- pos: 16.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18675
- components:
- - type: Transform
- pos: 18.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18676
- components:
- - type: Transform
- pos: -49.5,60.5
- parent: 2
- - uid: 18677
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18678
- components:
- - type: Transform
- pos: -9.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18679
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18680
- components:
- - type: Transform
- pos: -10.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18681
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18682
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18683
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18684
- components:
- - type: Transform
- pos: 12.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18685
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18686
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18687
- components:
- - type: Transform
- pos: -30.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18688
- components:
- - type: Transform
- pos: -31.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18689
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,18.5
- parent: 2
- - uid: 18690
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18691
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18692
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18693
- components:
- - type: Transform
- pos: -15.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18694
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18695
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18696
- components:
- - type: Transform
- pos: -14.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18697
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18698
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18699
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18700
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18701
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18702
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18703
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18705
- components:
- - type: Transform
- pos: -10.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18706
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,90.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18707
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18708
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18709
- components:
- - type: Transform
- pos: -28.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18710
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,90.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18711
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18712
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18713
- components:
- - type: Transform
- pos: 7.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,84.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18715
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18717
- components:
- - type: Transform
- pos: 5.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18718
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18720
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18721
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18722
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18723
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18724
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18725
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18726
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18727
- components:
- - type: Transform
- pos: 20.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18728
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18730
- components:
- - type: Transform
- pos: 28.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18731
- components:
- - type: Transform
- pos: 20.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18732
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18733
- components:
- - type: Transform
- pos: 22.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18734
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18735
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18736
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18737
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18738
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18739
- components:
- - type: Transform
- pos: 39.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18740
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18741
- components:
- - type: Transform
- pos: 54.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18742
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18743
- components:
- - type: Transform
- pos: 62.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18744
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18745
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18746
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18747
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18749
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18750
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 83.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18752
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18753
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18754
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18756
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18757
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18758
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18759
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18760
- components:
- - type: Transform
- pos: 38.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18761
- components:
- - type: Transform
- pos: 41.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18762
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18763
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18764
- components:
- - type: Transform
- pos: 56.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18765
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18766
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18769
- components:
- - type: Transform
- pos: 61.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18770
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18771
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18772
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18773
- components:
- - type: Transform
- pos: 16.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18774
- components:
- - type: Transform
- pos: 18.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18776
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18777
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18778
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18779
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18780
- components:
- - type: Transform
- pos: 17.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18781
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18782
- components:
- - type: Transform
- pos: 22.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18783
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18784
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18785
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18787
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18788
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18789
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18790
- components:
- - type: Transform
- pos: 22.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18791
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18792
- components:
- - type: Transform
- pos: 28.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18793
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18794
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18796
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18799
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18800
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18801
- components:
- - type: Transform
- pos: -5.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18802
- components:
- - type: Transform
- pos: -4.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18805
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18807
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18808
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18809
- components:
- - type: Transform
- pos: -21.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18810
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18811
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18813
- components:
- - type: Transform
- pos: -24.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18814
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18815
- components:
- - type: Transform
- pos: 1.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18816
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18818
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18819
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18820
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18821
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18822
- components:
- - type: Transform
- pos: 5.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18823
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18824
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18825
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18826
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18827
- components:
- - type: Transform
- pos: -48.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18828
- components:
- - type: Transform
- pos: -57.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18829
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18830
- components:
- - type: Transform
- pos: -28.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18831
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18832
- components:
- - type: Transform
- pos: 73.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18833
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18835
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18836
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18837
- components:
- - type: Transform
- pos: -60.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 18838
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 81.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18839
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 85.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18840
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 89.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18841
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 84.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18842
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 80.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18843
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 88.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18844
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18845
- components:
- - type: Transform
- pos: 96.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18846
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 92.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18847
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 92.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18848
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18850
- components:
- - type: Transform
- pos: 10.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18851
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18852
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18854
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-38.5
- parent: 2
- - uid: 39002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,31.5
- parent: 38344
- - uid: 39003
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,4.5
- parent: 38344
- - uid: 39004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39005
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39006
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39007
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39008
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39010
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39011
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,10.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39012
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39013
- components:
- - type: Transform
- pos: -5.5,9.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39015
- components:
- - type: Transform
- pos: -9.5,10.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39016
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,9.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39017
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39018
- components:
- - type: Transform
- pos: 0.5,8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39019
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39020
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39021
- components:
- - type: Transform
- pos: 5.5,4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39022
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39023
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39024
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39025
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39026
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39027
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39028
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-9.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39029
- components:
- - type: Transform
- pos: -1.5,0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39030
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasPipeFourway
- entities:
- - uid: 18855
- components:
- - type: Transform
- pos: -66.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18856
- components:
- - type: Transform
- pos: -52.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18857
- components:
- - type: Transform
- pos: -51.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18858
- components:
- - type: Transform
- pos: -70.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18859
- components:
- - type: Transform
- pos: -17.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18860
- components:
- - type: Transform
- pos: 16.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18861
- components:
- - type: Transform
- pos: 8.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18862
- components:
- - type: Transform
- pos: -0.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18863
- components:
- - type: Transform
- pos: -17.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18864
- components:
- - type: Transform
- pos: -117.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18865
- components:
- - type: Transform
- pos: -119.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18866
- components:
- - type: Transform
- pos: -117.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18867
- components:
- - type: Transform
- pos: -119.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18868
- components:
- - type: Transform
- pos: 48.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18869
- components:
- - type: Transform
- pos: 46.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18870
- components:
- - type: Transform
- pos: 52.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18871
- components:
- - type: Transform
- pos: 18.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18872
- components:
- - type: Transform
- pos: -12.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18873
- components:
- - type: Transform
- pos: 81.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18874
- components:
- - type: Transform
- pos: 84.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39031
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasPipeStraight
- entities:
- - uid: 31
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 93.5,13.5
- parent: 2
- - uid: 18875
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,18.5
- parent: 2
- - uid: 18876
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18877
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18878
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18879
- components:
- - type: Transform
- pos: -48.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18880
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18881
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18882
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18883
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18884
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18885
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18886
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18887
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18888
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18889
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18890
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 18891
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18892
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18893
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18894
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18895
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18896
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18897
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18898
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18899
- components:
- - type: Transform
- pos: -32.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18900
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18901
- components:
- - type: Transform
- pos: -52.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18902
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18903
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18904
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18905
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18906
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18907
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18908
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18909
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18910
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18911
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18912
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18913
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18914
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18915
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18916
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18917
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18918
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18920
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18921
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18922
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18923
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18924
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18925
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18926
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18927
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18929
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18930
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18931
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18932
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18933
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18934
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18935
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18936
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18937
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18938
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18939
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18940
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18941
- components:
- - type: Transform
- pos: -15.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18942
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18943
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18944
- components:
- - type: Transform
- pos: 46.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18945
- components:
- - type: Transform
- pos: -15.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18946
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18948
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18949
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18950
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18951
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18952
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18953
- components:
- - type: Transform
- pos: -28.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18954
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18955
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18956
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18957
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18958
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18959
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18960
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18961
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18962
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18963
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18964
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18965
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18966
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18967
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18968
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18969
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18970
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18971
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18972
- components:
- - type: Transform
- pos: -53.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18973
- components:
- - type: Transform
- pos: -53.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18974
- components:
- - type: Transform
- pos: -53.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18975
- components:
- - type: Transform
- pos: -53.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18976
- components:
- - type: Transform
- pos: -52.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18977
- components:
- - type: Transform
- pos: -52.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18978
- components:
- - type: Transform
- pos: -53.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18979
- components:
- - type: Transform
- pos: -53.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18980
- components:
- - type: Transform
- pos: -52.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18981
- components:
- - type: Transform
- pos: -52.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18982
- components:
- - type: Transform
- pos: -53.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18983
- components:
- - type: Transform
- pos: -53.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18984
- components:
- - type: Transform
- pos: -52.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18985
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18986
- components:
- - type: Transform
- pos: -51.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18987
- components:
- - type: Transform
- pos: -52.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18988
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18989
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18991
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18992
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18993
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18994
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18995
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18996
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 18997
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18998
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 18999
- components:
- - type: Transform
- pos: -52.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19001
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19002
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19003
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19004
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19005
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19006
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19007
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19008
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19009
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19010
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19011
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19012
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19013
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19015
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19016
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19017
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19018
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19019
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19020
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19021
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19022
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19023
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19024
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19025
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19026
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19027
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19028
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19029
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19030
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19031
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19032
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19033
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19034
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19035
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19036
- components:
- - type: Transform
- pos: -62.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19037
- components:
- - type: Transform
- pos: -62.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19038
- components:
- - type: Transform
- pos: -62.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19039
- components:
- - type: Transform
- pos: -62.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19040
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19041
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19042
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19043
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19044
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19045
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19046
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19047
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19048
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19049
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19050
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19051
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19052
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19053
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19054
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19055
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19056
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19057
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19058
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19059
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19060
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19061
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19062
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19063
- components:
- - type: Transform
- pos: -63.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19064
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19065
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19066
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19067
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19068
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19069
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19070
- components:
- - type: Transform
- pos: -71.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19071
- components:
- - type: Transform
- pos: -71.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19072
- components:
- - type: Transform
- pos: -71.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19073
- components:
- - type: Transform
- pos: -71.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19074
- components:
- - type: Transform
- pos: -71.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19075
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19076
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19077
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19078
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19079
- components:
- - type: Transform
- pos: -76.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19080
- components:
- - type: Transform
- pos: -76.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19081
- components:
- - type: Transform
- pos: -76.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19082
- components:
- - type: Transform
- pos: -76.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19083
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19084
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19085
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19086
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19087
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19088
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19089
- components:
- - type: Transform
- pos: -47.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19090
- components:
- - type: Transform
- pos: -47.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19092
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19093
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19094
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19095
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19096
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19097
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19099
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19100
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19101
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19102
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19104
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19105
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19106
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19107
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19108
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19109
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19110
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19111
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19112
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19113
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19114
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19115
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19116
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19117
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19118
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19119
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19120
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19121
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19122
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19123
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19124
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19125
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19126
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19127
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19128
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19129
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19130
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19131
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19132
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19133
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19134
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19135
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19136
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19137
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19138
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19139
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19140
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19141
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19142
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19143
- components:
- - type: Transform
- pos: -52.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19144
- components:
- - type: Transform
- pos: -51.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19145
- components:
- - type: Transform
- pos: -52.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19146
- components:
- - type: Transform
- pos: -51.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19147
- components:
- - type: Transform
- pos: -52.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19148
- components:
- - type: Transform
- pos: -51.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19149
- components:
- - type: Transform
- pos: -52.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19150
- components:
- - type: Transform
- pos: -51.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19151
- components:
- - type: Transform
- pos: -51.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19152
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19153
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19155
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19157
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19158
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19160
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19161
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19163
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19164
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19165
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19166
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19167
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19172
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19175
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19178
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19179
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19180
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19182
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19183
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19184
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19185
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19186
- components:
- - type: Transform
- pos: -68.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19187
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19188
- components:
- - type: Transform
- pos: -68.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19189
- components:
- - type: Transform
- pos: -70.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19190
- components:
- - type: Transform
- pos: -70.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19191
- components:
- - type: Transform
- pos: -68.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19192
- components:
- - type: Transform
- pos: -70.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19193
- components:
- - type: Transform
- pos: -70.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19194
- components:
- - type: Transform
- pos: -70.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19195
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19196
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19197
- components:
- - type: Transform
- pos: -70.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19198
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19200
- components:
- - type: Transform
- pos: -59.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19202
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19203
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19204
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19209
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19211
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19212
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19213
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19214
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19215
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19216
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19219
- components:
- - type: Transform
- pos: -7.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19220
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19221
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19222
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19223
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19224
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19225
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19226
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19227
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19229
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19230
- components:
- - type: Transform
- pos: -42.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19231
- components:
- - type: Transform
- pos: -40.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19232
- components:
- - type: Transform
- pos: -40.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19233
- components:
- - type: Transform
- pos: -42.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19234
- components:
- - type: Transform
- pos: -42.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19235
- components:
- - type: Transform
- pos: -40.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19236
- components:
- - type: Transform
- pos: -40.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19237
- components:
- - type: Transform
- pos: -42.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19238
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19239
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19240
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19241
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19242
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19243
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19244
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19245
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19246
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19247
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19248
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19249
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19250
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19251
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19252
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19253
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19254
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19255
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19256
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19257
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19259
- components:
- - type: Transform
- pos: -35.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19260
- components:
- - type: Transform
- pos: -35.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19261
- components:
- - type: Transform
- pos: -35.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19262
- components:
- - type: Transform
- pos: -35.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19263
- components:
- - type: Transform
- pos: -35.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19264
- components:
- - type: Transform
- pos: -31.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19265
- components:
- - type: Transform
- pos: -31.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19266
- components:
- - type: Transform
- pos: -31.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19267
- components:
- - type: Transform
- pos: -32.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19268
- components:
- - type: Transform
- pos: -32.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19269
- components:
- - type: Transform
- pos: -31.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19270
- components:
- - type: Transform
- pos: -32.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19271
- components:
- - type: Transform
- pos: -31.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19272
- components:
- - type: Transform
- pos: -32.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19273
- components:
- - type: Transform
- pos: -31.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19274
- components:
- - type: Transform
- pos: -28.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19275
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19276
- components:
- - type: Transform
- pos: -32.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19277
- components:
- - type: Transform
- pos: -32.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19278
- components:
- - type: Transform
- pos: -32.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19279
- components:
- - type: Transform
- pos: -31.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19280
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19281
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19282
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19283
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19284
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19285
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19286
- components:
- - type: Transform
- pos: -31.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19287
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19288
- components:
- - type: Transform
- pos: -31.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19289
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19290
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19291
- components:
- - type: Transform
- pos: -28.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19292
- components:
- - type: Transform
- pos: -28.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19293
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19294
- components:
- - type: Transform
- pos: -32.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19295
- components:
- - type: Transform
- pos: -32.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19296
- components:
- - type: Transform
- pos: -31.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19297
- components:
- - type: Transform
- pos: -31.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19298
- components:
- - type: Transform
- pos: -32.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19299
- components:
- - type: Transform
- pos: -31.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19300
- components:
- - type: Transform
- pos: -32.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19301
- components:
- - type: Transform
- pos: -32.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19302
- components:
- - type: Transform
- pos: -31.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19303
- components:
- - type: Transform
- pos: -32.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19304
- components:
- - type: Transform
- pos: -31.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19305
- components:
- - type: Transform
- pos: -32.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19306
- components:
- - type: Transform
- pos: -32.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19307
- components:
- - type: Transform
- pos: -31.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19308
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19309
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19310
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19311
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19312
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19313
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19314
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19315
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19317
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19318
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19319
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19321
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19322
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19323
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19324
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19325
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19326
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19327
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19328
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19329
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19330
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19331
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19332
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19333
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19334
- components:
- - type: Transform
- pos: -24.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19335
- components:
- - type: Transform
- pos: -24.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19336
- components:
- - type: Transform
- pos: -24.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19337
- components:
- - type: Transform
- pos: -25.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19338
- components:
- - type: Transform
- pos: -25.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19339
- components:
- - type: Transform
- pos: -24.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19340
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19341
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19342
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19343
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19344
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19345
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19346
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19347
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19348
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19349
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19350
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19351
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19352
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19353
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19354
- components:
- - type: Transform
- pos: -19.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19355
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19356
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19357
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19358
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19359
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19360
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19361
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19362
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19363
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19364
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19365
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19366
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19367
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19369
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19370
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19371
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19372
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19373
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19374
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19375
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19376
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19377
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19378
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19379
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19380
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19381
- components:
- - type: Transform
- pos: -17.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19382
- components:
- - type: Transform
- pos: -19.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19383
- components:
- - type: Transform
- pos: -17.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19384
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19385
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19386
- components:
- - type: Transform
- pos: -17.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19387
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19388
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19389
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19390
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19391
- components:
- - type: Transform
- pos: -19.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19392
- components:
- - type: Transform
- pos: -17.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19393
- components:
- - type: Transform
- pos: -19.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19394
- components:
- - type: Transform
- pos: -17.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19395
- components:
- - type: Transform
- pos: -17.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19396
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19397
- components:
- - type: Transform
- pos: -19.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19398
- components:
- - type: Transform
- pos: -17.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19399
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19400
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19401
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19402
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19403
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19404
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19405
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19406
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19407
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19408
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19409
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19410
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19411
- components:
- - type: Transform
- pos: -19.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19412
- components:
- - type: Transform
- pos: -17.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19413
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19414
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19415
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19416
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19417
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19418
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19419
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19420
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19421
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19422
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19423
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19424
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19425
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19426
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19427
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19428
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19429
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19430
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19431
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19432
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19433
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19434
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19435
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19436
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19437
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19438
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19439
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19440
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19441
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19442
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19443
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19444
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19445
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19446
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19447
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19448
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19449
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19450
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19451
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19452
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19453
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19455
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19456
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19457
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19458
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19459
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19460
- components:
- - type: Transform
- pos: 5.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19461
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19462
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19463
- components:
- - type: Transform
- pos: 5.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19464
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19465
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19466
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19467
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19468
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19469
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19470
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19471
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19472
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19473
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19474
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19475
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19476
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19477
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19478
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19479
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19480
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19481
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19482
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19483
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19484
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19485
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19486
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19487
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19488
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19489
- components:
- - type: Transform
- pos: 16.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19490
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19491
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19492
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19493
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19494
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19495
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19496
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19497
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19498
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19499
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19500
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19501
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19502
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19503
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19504
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19505
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19506
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19507
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19508
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19509
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19510
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19511
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19512
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19513
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19514
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19515
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19516
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19517
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19518
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19519
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19520
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19521
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19522
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19523
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19524
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19525
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19526
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19527
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19528
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19529
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19530
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19531
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19532
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19533
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19534
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19535
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19536
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19537
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19538
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19539
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19540
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19541
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19542
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19543
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19544
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19545
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19546
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19547
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19548
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19549
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19550
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19551
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19552
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19553
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19554
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19555
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19556
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19557
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19558
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19559
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19560
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19561
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19562
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19563
- components:
- - type: Transform
- pos: -13.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19564
- components:
- - type: Transform
- pos: -13.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19565
- components:
- - type: Transform
- pos: -9.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19566
- components:
- - type: Transform
- pos: -14.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19567
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19568
- components:
- - type: Transform
- pos: -8.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19569
- components:
- - type: Transform
- pos: -3.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19570
- components:
- - type: Transform
- pos: -3.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19571
- components:
- - type: Transform
- pos: 2.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19572
- components:
- - type: Transform
- pos: 2.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19573
- components:
- - type: Transform
- pos: 2.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19574
- components:
- - type: Transform
- pos: -3.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19575
- components:
- - type: Transform
- pos: 2.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19576
- components:
- - type: Transform
- pos: 2.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19577
- components:
- - type: Transform
- pos: -3.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19578
- components:
- - type: Transform
- pos: -3.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19579
- components:
- - type: Transform
- pos: -3.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19581
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19582
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19583
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19585
- components:
- - type: Transform
- pos: 2.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19586
- components:
- - type: Transform
- pos: 8.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19587
- components:
- - type: Transform
- pos: 8.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19588
- components:
- - type: Transform
- pos: 8.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19589
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19590
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19591
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19592
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19593
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19594
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19595
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19596
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19597
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19598
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19599
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19600
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19601
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19602
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19605
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19606
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19607
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19608
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19609
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19610
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19611
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19612
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19613
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19614
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19615
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19616
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19617
- components:
- - type: Transform
- pos: 18.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19618
- components:
- - type: Transform
- pos: 18.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19619
- components:
- - type: Transform
- pos: 16.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19620
- components:
- - type: Transform
- pos: 16.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19621
- components:
- - type: Transform
- pos: 18.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19622
- components:
- - type: Transform
- pos: 18.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19623
- components:
- - type: Transform
- pos: 16.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19624
- components:
- - type: Transform
- pos: 16.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19625
- components:
- - type: Transform
- pos: 18.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19626
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19628
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19629
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19630
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19631
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19632
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19633
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19634
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19635
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19636
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19637
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19638
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19639
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19640
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19641
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19642
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19643
- components:
- - type: Transform
- pos: 18.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19646
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19647
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19649
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19650
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19651
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19652
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19653
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19654
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19655
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19656
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19657
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19658
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19659
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19660
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19661
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19662
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19663
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19664
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19665
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19666
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19667
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19668
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19669
- components:
- - type: Transform
- pos: -19.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19670
- components:
- - type: Transform
- pos: -19.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19671
- components:
- - type: Transform
- pos: -19.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19672
- components:
- - type: Transform
- pos: -17.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19673
- components:
- - type: Transform
- pos: -17.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19674
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19675
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19676
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19677
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19678
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19679
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19680
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19681
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19682
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19683
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19685
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19686
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19688
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19689
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19690
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19691
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19692
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19693
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19694
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19695
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19696
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19697
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19698
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19699
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19700
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19701
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19702
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19703
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19704
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19705
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19706
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19707
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19708
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19710
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19712
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19713
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19715
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19716
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19717
- components:
- - type: Transform
- pos: -17.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19718
- components:
- - type: Transform
- pos: -17.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19719
- components:
- - type: Transform
- pos: -19.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19720
- components:
- - type: Transform
- pos: -17.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19721
- components:
- - type: Transform
- pos: -19.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19722
- components:
- - type: Transform
- pos: -17.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19723
- components:
- - type: Transform
- pos: -19.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19724
- components:
- - type: Transform
- pos: -19.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19725
- components:
- - type: Transform
- pos: -17.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19726
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19727
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19728
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19729
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19730
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19731
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19732
- components:
- - type: Transform
- pos: -19.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19733
- components:
- - type: Transform
- pos: -19.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19734
- components:
- - type: Transform
- pos: -17.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19735
- components:
- - type: Transform
- pos: -17.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19736
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19738
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19739
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19740
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19741
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19742
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19743
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19744
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19745
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19746
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19747
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19748
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19749
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19751
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19752
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19753
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19754
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19756
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19758
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19759
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19760
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19761
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19762
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19763
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19764
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19765
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19766
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19768
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19769
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19770
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19772
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19773
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19774
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19777
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19778
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19779
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19780
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19781
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19782
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19783
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19784
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19785
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19786
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19787
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19788
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19789
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19790
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19791
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19792
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19793
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19794
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19795
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19796
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19799
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19800
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19802
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19809
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19810
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19811
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19813
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19814
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19815
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19816
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19818
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19819
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19820
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19821
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19822
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19823
->>>>>>> master
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,16.5
- parent: 2
- - type: AtmosPipeColor
-<<<<<<< HEAD
- color: '#FF0000FF'
- - uid: 20634
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20635
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20636
- components:
- - type: Transform
- pos: 18.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20637
- components:
- - type: Transform
- pos: 18.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20638
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20639
- components:
- - type: Transform
- pos: 16.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20640
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20641
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20642
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20643
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20644
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20646
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20647
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,14.5
- parent: 2
- - uid: 20648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20649
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20650
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20651
- components:
- - type: Transform
- pos: 18.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20652
- components:
- - type: Transform
- pos: 16.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20653
- components:
- - type: Transform
- pos: 16.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20654
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20655
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20656
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20657
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20658
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20659
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20660
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20661
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20662
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20663
- components:
- - type: Transform
- pos: 16.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20664
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20665
- components:
- - type: Transform
- pos: 16.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20666
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20667
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20668
- components:
- - type: Transform
- pos: -6.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20669
- components:
- - type: Transform
- pos: -6.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20670
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20671
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20672
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20673
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20674
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20675
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20676
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20677
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20678
- components:
- - type: Transform
- pos: -14.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20679
- components:
- - type: Transform
- pos: 0.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20680
- components:
- - type: Transform
- pos: 0.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20681
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20682
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20683
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20686
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20687
- components:
- - type: Transform
- pos: 18.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20688
- components:
- - type: Transform
- pos: 16.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20689
- components:
- - type: Transform
- pos: -3.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20690
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20691
- components:
- - type: Transform
- pos: -28.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20692
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20693
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20694
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20695
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20696
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20697
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20698
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20699
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20700
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20701
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20702
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20703
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20705
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20706
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20707
- components:
- - type: Transform
- pos: -28.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20708
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20710
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20712
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20713
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20714
- components:
- - type: Transform
- pos: 28.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20715
- components:
- - type: Transform
- pos: 51.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20716
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,20.5
- parent: 2
- - uid: 20718
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20720
- components:
- - type: Transform
- pos: -20.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20721
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20722
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20723
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20724
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20725
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20726
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20727
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20728
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20730
- components:
- - type: Transform
- pos: -53.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20731
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20732
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20734
- components:
- - type: Transform
- pos: -28.5,83.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20735
- components:
- - type: Transform
- pos: 26.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20736
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20737
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20738
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20740
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 20741
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20742
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20743
- components:
- - type: Transform
- pos: 11.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20744
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20745
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20746
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20747
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20748
- components:
- - type: Transform
- pos: 0.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20749
- components:
- - type: Transform
- pos: 41.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20751
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20752
- components:
- - type: Transform
- pos: 14.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20753
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20754
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20756
- components:
- - type: Transform
- pos: -10.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20758
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20759
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20760
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20761
- components:
- - type: Transform
- pos: -3.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20762
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20763
- components:
- - type: Transform
- pos: 16.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20764
- components:
- - type: Transform
- pos: 28.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20765
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20766
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20767
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20768
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20769
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20770
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20771
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20772
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20773
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20774
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20775
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20776
- components:
- - type: Transform
- pos: 7.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20777
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20778
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20779
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20780
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20781
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20782
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20783
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20784
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20785
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20786
- components:
- - type: Transform
- pos: -10.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20787
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20788
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20789
- components:
- - type: Transform
- pos: -0.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20790
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20791
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20792
- components:
- - type: Transform
- pos: 52.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20793
- components:
- - type: Transform
- pos: 18.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20794
- components:
- - type: Transform
- pos: 21.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20795
- components:
- - type: Transform
- pos: -0.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20796
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20797
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20798
- components:
- - type: Transform
- pos: 26.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20799
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20800
- components:
- - type: Transform
- pos: 7.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20801
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20802
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20803
- components:
- - type: Transform
- pos: 14.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20806
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20807
- components:
- - type: Transform
- pos: 45.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20809
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20810
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20811
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20812
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20813
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20814
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20815
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20816
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20817
- components:
- - type: Transform
- pos: 26.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20818
- components:
- - type: Transform
- pos: 18.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20819
- components:
- - type: Transform
- pos: 49.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20820
- components:
- - type: Transform
- pos: 16.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20821
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20822
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20823
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20824
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20825
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20826
- components:
- - type: Transform
- pos: -29.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20827
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20828
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20829
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20830
- components:
- - type: Transform
- pos: -20.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20831
- components:
- - type: Transform
- pos: -1.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20832
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20833
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20834
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20835
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20836
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20837
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20838
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20839
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20840
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20841
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20842
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20843
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20844
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20845
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20846
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20847
- components:
- - type: Transform
- pos: -0.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20848
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20850
- components:
- - type: Transform
- pos: -29.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20851
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20852
- components:
- - type: Transform
- pos: -0.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20854
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20855
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20857
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20858
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20859
- components:
- - type: Transform
- pos: -10.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20860
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20861
- components:
- - type: Transform
- pos: 6.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20862
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20863
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20864
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20865
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20866
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20867
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20868
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20869
- components:
- - type: Transform
- pos: -46.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20870
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20871
- components:
- - type: Transform
- pos: 28.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20872
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20873
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20874
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20875
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20876
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20877
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20878
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20879
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20880
- components:
- - type: Transform
- pos: -58.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20881
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20882
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20883
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20884
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20885
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20886
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20887
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20888
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20889
- components:
- - type: Transform
- pos: 39.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20890
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20891
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,22.5
- parent: 2
- - uid: 20893
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20894
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20895
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20896
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20897
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20898
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20899
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20900
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20901
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -116.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20902
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20903
- components:
- - type: Transform
- pos: -36.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20906
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20907
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20908
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20909
- components:
- - type: Transform
- pos: -30.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20910
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20911
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20913
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20914
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20915
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20916
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20917
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20918
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20920
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20921
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20922
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20923
- components:
- - type: Transform
- pos: 5.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20924
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20925
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20926
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 20927
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20928
- components:
- - type: Transform
- pos: 23.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20929
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20930
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20931
- components:
- - type: Transform
- pos: 0.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20932
- components:
- - type: Transform
- pos: 11.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20933
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20934
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20935
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20936
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20937
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20938
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20939
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20940
- components:
- - type: Transform
- pos: 27.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20941
- components:
- - type: Transform
- pos: 38.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 20942
- components:
- - type: Transform
- pos: 1.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20943
- components:
- - type: Transform
- pos: 14.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20944
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20945
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20946
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20949
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20950
- components:
- - type: Transform
- pos: 10.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20951
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20952
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20953
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20954
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20955
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20956
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20957
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20958
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20959
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20960
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20961
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20962
- components:
- - type: Transform
- pos: 0.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20963
- components:
- - type: Transform
- pos: 41.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20964
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20965
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20966
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20967
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20968
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20969
- components:
- - type: Transform
- pos: -30.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20970
- components:
- - type: Transform
- pos: -26.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20971
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20973
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20974
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20975
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20976
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20977
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20978
- components:
- - type: Transform
- pos: -12.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20979
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20980
- components:
- - type: Transform
- pos: 74.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20981
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20982
- components:
- - type: Transform
- pos: 25.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20983
- components:
- - type: Transform
- pos: 28.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20984
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20985
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20986
- components:
- - type: Transform
- pos: 34.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 20987
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20988
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20989
- components:
- - type: Transform
- pos: 23.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20991
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20992
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20993
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20994
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20995
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20996
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20997
- components:
- - type: Transform
- pos: 27.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20998
- components:
- - type: Transform
- pos: -5.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20999
- components:
- - type: Transform
- pos: 16.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21000
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21001
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21003
- components:
- - type: Transform
- pos: 29.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21005
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21006
- components:
- - type: Transform
- pos: 23.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21007
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21008
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21009
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21010
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21011
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21012
- components:
- - type: Transform
- pos: 1.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21013
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21014
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21015
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21016
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21017
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21018
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21019
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21020
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21021
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21022
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21023
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21024
- components:
- - type: Transform
- pos: -63.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21025
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21026
- components:
- - type: Transform
- pos: -42.5,17.5
- parent: 2
- - uid: 21027
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21028
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21029
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21030
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 78.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21031
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21032
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21033
- components:
- - type: Transform
- pos: 46.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21034
- components:
- - type: Transform
- pos: -8.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21035
- components:
- - type: Transform
- pos: -20.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21036
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21037
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21038
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21039
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21040
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21041
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21042
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21043
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21044
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21045
- components:
- - type: Transform
- pos: -65.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21046
- components:
- - type: Transform
- anchored: False
- rot: 1.5707963267948966 rad
- pos: 71.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 21047
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21048
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21049
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21050
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21051
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21052
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
- pos: 38.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 21053
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21054
- components:
- - type: Transform
- pos: 34.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21055
- components:
- - type: Transform
- pos: 34.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21056
- components:
- - type: Transform
- pos: 34.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21057
- components:
- - type: Transform
- pos: 34.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21058
- components:
- - type: Transform
- pos: 34.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21059
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21060
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21061
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21062
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21063
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21064
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21065
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21066
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21067
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21068
- components:
- - type: Transform
- pos: 40.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21069
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21070
- components:
- - type: Transform
- pos: 53.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21071
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21072
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21073
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21074
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21075
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21076
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21077
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21078
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21079
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,20.5
- parent: 2
- - uid: 21080
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21081
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21082
- components:
- - type: Transform
- pos: 74.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21083
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21084
- components:
- - type: Transform
- pos: -7.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21085
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21086
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21087
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21088
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21089
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21091
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21092
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21093
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21094
- components:
- - type: Transform
- pos: -62.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21096
- components:
- - type: Transform
- pos: 11.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21097
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21099
- components:
- - type: Transform
- pos: 46.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21100
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21101
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21102
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21104
- components:
- - type: Transform
- pos: 26.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21105
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21106
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21107
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21108
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21109
- components:
- - type: Transform
- pos: -30.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21111
- components:
- - type: Transform
- pos: 16.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21113
- components:
- - type: Transform
- pos: -24.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21114
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21116
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21117
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21118
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21119
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21120
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21121
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21122
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21123
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21124
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21125
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21126
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21127
- components:
- - type: Transform
- pos: -27.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21128
- components:
- - type: Transform
- pos: 41.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21129
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21130
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21131
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21132
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21133
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21134
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21135
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21136
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21137
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21138
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21139
- components:
- - type: Transform
- pos: -58.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21140
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,32.5
- parent: 2
- - uid: 21141
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21142
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21143
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21144
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21145
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21146
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21147
- components:
- - type: Transform
- pos: 27.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21150
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21151
- components:
- - type: Transform
- pos: -30.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21152
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21153
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21155
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21156
- components:
- - type: Transform
- pos: -29.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21157
- components:
- - type: Transform
- pos: -9.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21158
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21159
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21160
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21162
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21164
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21165
- components:
- - type: Transform
- pos: 48.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21166
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21167
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21168
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21169
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21171
- components:
- - type: Transform
- pos: -20.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21172
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21173
- components:
- - type: Transform
- pos: 26.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21174
- components:
- - type: Transform
- pos: 17.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21175
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21178
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21179
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21180
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21182
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21183
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21184
- components:
- - type: Transform
- pos: 52.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21185
- components:
- - type: Transform
- pos: 52.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21186
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21187
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21189
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21190
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-30.5
- parent: 2
- - uid: 21191
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21192
- components:
- - type: Transform
- pos: -58.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21194
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21195
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21196
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21197
- components:
- - type: Transform
- pos: 2.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21198
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21199
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21200
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21201
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21202
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21203
- components:
- - type: Transform
- pos: -2.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21204
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21205
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21207
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21208
- components:
- - type: Transform
- pos: 48.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21211
- components:
- - type: Transform
- pos: 0.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21212
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21213
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21214
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21215
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21216
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21217
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21219
- components:
- - type: Transform
- pos: -20.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21220
- components:
- - type: Transform
- pos: -16.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21221
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21222
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21223
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21224
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,-30.5
- parent: 2
- - uid: 21225
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21226
- components:
- - type: Transform
- pos: 10.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21227
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21229
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21230
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21231
- components:
- - type: Transform
- pos: -52.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21233
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21234
- components:
- - type: Transform
- pos: 44.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21235
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21236
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21237
- components:
- - type: Transform
- pos: -36.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21238
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21239
- components:
- - type: Transform
- pos: -36.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21240
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 84.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21241
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21242
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21244
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21245
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21246
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21247
- components:
- - type: Transform
- pos: -8.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21248
- components:
- - type: Transform
- pos: -10.5,79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21249
- components:
- - type: Transform
- pos: -10.5,78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21250
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21251
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21252
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
- pos: -48.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 21253
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21254
- components:
- - type: Transform
- pos: 48.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21255
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-47.5
- parent: 2
- - uid: 21256
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21257
- components:
- - type: Transform
- pos: 5.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21258
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21259
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21260
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21261
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21262
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21263
- components:
- - type: Transform
- pos: 26.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21264
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21265
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21266
- components:
- - type: Transform
- pos: 16.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21267
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21268
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21269
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21270
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,36.5
- parent: 2
- - uid: 21271
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,36.5
- parent: 2
- - uid: 21272
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,36.5
- parent: 2
- - uid: 21273
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21274
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21275
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21276
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21277
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21278
- components:
- - type: Transform
- pos: -20.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21279
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21280
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21281
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21282
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21284
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21285
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21286
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21287
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21288
- components:
- - type: Transform
- pos: -29.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21289
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21290
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21291
- components:
- - type: Transform
- pos: -32.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21292
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21293
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21294
- components:
- - type: Transform
- pos: -10.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21295
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21296
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21297
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21298
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21299
- components:
- - type: Transform
- pos: -76.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21300
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21301
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21302
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21303
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21304
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21305
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21306
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21307
- components:
- - type: Transform
- pos: 62.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21308
- components:
- - type: Transform
- pos: -28.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21309
- components:
- - type: Transform
- pos: 41.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21310
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21311
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21312
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21313
- components:
- - type: Transform
- pos: 29.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21314
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21315
- components:
- - type: Transform
- pos: -52.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21316
- components:
- - type: Transform
- pos: -52.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21317
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21318
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21319
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21321
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21322
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21323
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21324
- components:
- - type: Transform
- pos: -10.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21325
- components:
- - type: Transform
- pos: 75.5,24.5
- parent: 2
- - uid: 21326
- components:
- - type: Transform
- pos: 75.5,23.5
- parent: 2
- - uid: 21327
- components:
- - type: Transform
- pos: 75.5,22.5
- parent: 2
- - uid: 21328
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,21.5
- parent: 2
- - uid: 21329
- components:
- - type: Transform
- pos: -3.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21330
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 81.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21331
- components:
- - type: Transform
- pos: 52.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21332
- components:
- - type: Transform
- pos: -3.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21333
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21334
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21336
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-40.5
- parent: 2
- - uid: 21337
- components:
- - type: Transform
- pos: 0.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21338
- components:
- - type: Transform
- pos: -27.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21339
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21340
- components:
- - type: Transform
- pos: -10.5,80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21341
- components:
- - type: Transform
- pos: 40.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21342
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21343
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21344
- components:
- - type: Transform
- pos: 0.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21345
- components:
- - type: Transform
- pos: 0.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21346
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21347
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21348
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21349
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21350
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21351
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21352
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21353
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21354
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21355
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21356
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21357
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21358
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0313FF00'
- - uid: 21359
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21360
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21361
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21362
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21363
- components:
- - type: Transform
- pos: -46.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21364
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21365
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21366
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21367
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21368
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21369
- components:
- - type: Transform
- pos: 14.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21370
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21371
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21372
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21373
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21374
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21376
- components:
- - type: Transform
- pos: -28.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21377
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21378
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21379
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21380
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21381
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21382
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#00000000'
- - uid: 21383
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21384
- components:
- - type: Transform
- pos: -66.5,61.5
- parent: 2
- - uid: 21385
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21386
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21387
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21388
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,56.5
- parent: 2
- - uid: 21389
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21390
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21391
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21393
- components:
- - type: Transform
- pos: -12.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21394
- components:
- - type: Transform
- pos: -28.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21395
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21397
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21398
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21399
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21400
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21401
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21402
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21403
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21404
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21405
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21406
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21407
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,48.5
- parent: 2
- - uid: 21408
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,17.5
- parent: 2
- - uid: 21409
- components:
- - type: Transform
- pos: -42.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21410
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,16.5
- parent: 2
- - uid: 21411
- components:
- - type: Transform
- pos: -10.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21412
- components:
- - type: Transform
- pos: -10.5,88.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21413
- components:
- - type: Transform
- pos: -57.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21414
- components:
- - type: Transform
- pos: 11.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21415
- components:
- - type: Transform
- pos: -64.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21416
- components:
- - type: Transform
- pos: -57.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21417
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21418
- components:
- - type: Transform
- pos: -46.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21419
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21420
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#00D8D8FF'
- - uid: 21421
- components:
- - type: Transform
- pos: -10.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21422
- components:
- - type: Transform
- pos: -12.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21423
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21424
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21426
- components:
- - type: Transform
- pos: 36.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21427
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21428
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21429
- components:
- - type: Transform
- pos: -14.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21430
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21431
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21432
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -117.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21433
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21434
- components:
- - type: Transform
- pos: -54.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21435
- components:
- - type: Transform
- pos: -46.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21436
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21437
- components:
- - type: Transform
- pos: -57.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21438
- components:
- - type: Transform
- pos: -59.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21439
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21440
- components:
- - type: Transform
- pos: -33.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21441
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21442
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21443
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21444
- components:
- - type: Transform
- pos: -57.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21445
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21446
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21447
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21448
- components:
- - type: Transform
- pos: -32.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21449
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21450
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21451
- components:
- - type: Transform
- pos: -59.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21452
- components:
- - type: Transform
- pos: -32.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21453
- components:
- - type: Transform
- pos: -57.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21454
- components:
- - type: Transform
- pos: -64.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21455
- components:
- - type: Transform
- pos: -64.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21456
- components:
- - type: Transform
- pos: -68.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21457
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21458
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21459
- components:
- - type: Transform
- pos: -68.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21460
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21461
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21462
- components:
- - type: Transform
- pos: -68.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21463
- components:
- - type: Transform
- pos: -119.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21464
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21465
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21466
- components:
- - type: Transform
- pos: -27.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21467
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21468
- components:
- - type: Transform
- pos: -24.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21469
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21470
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,48.5
- parent: 2
- - uid: 21471
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21472
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,44.5
- parent: 2
- - uid: 21473
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21474
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21475
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21476
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21477
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21478
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21479
- components:
- - type: Transform
- pos: -24.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21480
- components:
- - type: Transform
- pos: -29.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21481
- components:
- - type: Transform
- pos: -24.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21482
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21484
- components:
- - type: Transform
- pos: -29.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21485
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21486
- components:
- - type: Transform
- pos: -51.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21487
- components:
- - type: Transform
- pos: -29.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21488
- components:
- - type: Transform
- pos: -29.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21489
- components:
- - type: Transform
- pos: -119.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21490
- components:
- - type: Transform
- pos: -29.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21491
- components:
- - type: Transform
- pos: -44.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21492
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21493
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21494
- components:
- - type: Transform
- pos: -11.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21495
- components:
- - type: Transform
- pos: -66.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21496
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21497
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,44.5
- parent: 2
- - uid: 21498
- components:
- - type: Transform
- pos: -29.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21499
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21500
- components:
- - type: Transform
- pos: -29.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21501
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21502
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21503
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21504
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21505
- components:
- - type: Transform
- pos: -64.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21506
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,44.5
- parent: 2
- - uid: 21507
- components:
- - type: Transform
- pos: -119.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21508
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,26.5
- parent: 2
- - uid: 21510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21511
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21512
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21513
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21514
- components:
- - type: Transform
- pos: -24.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21515
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21516
- components:
- - type: Transform
- pos: -24.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21517
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21518
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#00D8D8FF'
- - uid: 21519
- components:
- - type: Transform
- pos: -65.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21520
- components:
- - type: Transform
- pos: -29.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21521
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,26.5
- parent: 2
- - uid: 21522
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21523
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21524
- components:
- - type: Transform
- pos: -27.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21525
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21526
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21527
- components:
- - type: Transform
- pos: -64.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21528
- components:
- - type: Transform
- pos: -64.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21529
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21530
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21531
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21532
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21533
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21534
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21535
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21536
- components:
- - type: Transform
- pos: 21.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21537
- components:
- - type: Transform
- pos: -28.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21538
- components:
- - type: Transform
- pos: -24.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21539
- components:
- - type: Transform
- pos: -12.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21540
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21541
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21542
- components:
- - type: Transform
- pos: -17.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21543
- components:
- - type: Transform
- pos: -29.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21544
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21545
- components:
- - type: Transform
- pos: -24.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21546
- components:
- - type: Transform
- pos: -10.5,82.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21547
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21548
- components:
- - type: Transform
- pos: -46.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21549
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21550
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21551
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21552
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21553
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21554
- components:
- - type: Transform
- pos: -30.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21555
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21556
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21557
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21558
- components:
- - type: Transform
- pos: -42.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21559
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21560
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21561
- components:
- - type: Transform
- pos: -29.5,-53.5
- parent: 2
- - uid: 21562
- components:
- - type: Transform
- pos: -10.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21563
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21564
- components:
- - type: Transform
- pos: -59.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21565
- components:
- - type: Transform
- pos: -10.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21566
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21567
- components:
- - type: Transform
- pos: 46.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21568
- components:
- - type: Transform
- pos: -51.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21569
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21570
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21571
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21572
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21573
- components:
- - type: Transform
- pos: -10.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21574
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,26.5
- parent: 2
- - uid: 21575
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,34.5
- parent: 2
- - uid: 21576
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#222222FF'
- - uid: 21577
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21578
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,30.5
- parent: 2
- - uid: 21579
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 80.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21581
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21582
- components:
- - type: Transform
- pos: -64.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21583
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21584
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,34.5
- parent: 2
- - uid: 21585
- components:
- - type: Transform
- pos: -64.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21586
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21587
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21588
- components:
- - type: Transform
- anchored: False
- pos: -66.5,61.5
- parent: 2
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 21589
- components:
- - type: Transform
- pos: -52.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21590
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21591
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21592
- components:
- - type: Transform
- pos: -63.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21593
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21594
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21595
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21596
- components:
- - type: Transform
- pos: -63.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21597
- components:
- - type: Transform
- pos: 63.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21598
- components:
- - type: Transform
- pos: -42.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21599
- components:
- - type: Transform
- pos: -24.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21601
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21602
- components:
- - type: Transform
- pos: -52.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21604
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21605
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21606
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,30.5
- parent: 2
- - uid: 21607
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21608
- components:
- - type: Transform
- pos: -32.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21609
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21610
- components:
- - type: Transform
- pos: 50.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21611
- components:
- - type: Transform
- pos: 52.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21612
- components:
- - type: Transform
- pos: -77.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21613
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21614
- components:
- - type: Transform
- pos: 50.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21615
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21616
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21617
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21618
- components:
- - type: Transform
- pos: 52.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21619
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21620
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21621
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21622
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21623
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21624
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21626
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21628
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21629
- components:
- - type: Transform
- pos: -59.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21630
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21631
- components:
- - type: Transform
- pos: -35.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21632
- components:
- - type: Transform
- pos: -68.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21633
- components:
- - type: Transform
- pos: -69.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21634
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21635
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21636
- components:
- - type: Transform
- pos: -46.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21637
- components:
- - type: Transform
- pos: -77.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21638
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21639
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,58.5
- parent: 2
- - uid: 21640
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21641
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21642
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21643
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21644
- components:
- - type: Transform
- pos: 8.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21645
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21646
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21647
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21648
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21649
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21650
- components:
- - type: Transform
- pos: -19.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21651
- components:
- - type: Transform
- pos: -19.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21652
- components:
- - type: Transform
- pos: -11.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21653
- components:
- - type: Transform
- pos: -11.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21654
- components:
- - type: Transform
- pos: -19.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21655
- components:
- - type: Transform
- pos: -19.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21656
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21657
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21658
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21659
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21660
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21661
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21662
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21663
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21664
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21665
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21666
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21667
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21668
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21669
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21670
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21671
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21672
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21674
- components:
- - type: Transform
- pos: -35.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21675
- components:
- - type: Transform
- pos: -35.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21676
- components:
- - type: Transform
- pos: -35.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21677
- components:
- - type: Transform
- pos: -35.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21678
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21679
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21680
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21681
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21682
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21683
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21684
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21686
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21687
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21688
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21689
- components:
- - type: Transform
- pos: -19.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21690
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21691
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21692
- components:
- - type: Transform
- pos: -19.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21693
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21694
- components:
- - type: Transform
- pos: -19.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21695
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21696
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21697
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21698
- components:
- - type: Transform
- pos: 8.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21699
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21700
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21701
- components:
- - type: Transform
- pos: -19.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21702
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21703
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21704
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21705
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21706
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21708
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21710
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21711
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21713
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21714
- components:
- - type: Transform
- pos: 24.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21715
- components:
- - type: Transform
- pos: 22.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21716
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21717
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21718
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21719
- components:
- - type: Transform
- pos: -35.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21720
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21721
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21722
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21723
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21724
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21725
- components:
- - type: Transform
- pos: -19.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21726
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21727
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21728
- components:
- - type: Transform
- pos: 24.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21729
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21730
- components:
- - type: Transform
- pos: 22.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21731
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21733
- components:
- - type: Transform
- pos: -65.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21734
- components:
- - type: Transform
- pos: -12.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21735
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21736
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21737
- components:
- - type: Transform
- pos: -35.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21738
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21740
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21741
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21742
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21743
- components:
- - type: Transform
- pos: -2.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21744
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21745
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21746
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21747
- components:
- - type: Transform
- pos: -2.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21748
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21749
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21750
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21751
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21753
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21754
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21756
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21758
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21759
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21760
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21761
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21762
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21763
- components:
- - type: Transform
- pos: -59.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21764
- components:
- - type: Transform
- pos: 14.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21765
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21766
- components:
- - type: Transform
- pos: -44.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21769
- components:
- - type: Transform
- pos: -27.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21770
- components:
- - type: Transform
- pos: -41.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21772
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21773
- components:
- - type: Transform
- pos: -32.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21774
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21775
- components:
- - type: Transform
- pos: -31.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21776
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21777
- components:
- - type: Transform
- pos: -27.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21778
- components:
- - type: Transform
- pos: 24.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21779
- components:
- - type: Transform
- pos: -27.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21780
- components:
- - type: Transform
- pos: 55.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21781
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21782
- components:
- - type: Transform
- pos: -41.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21783
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21784
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21785
- components:
- - type: Transform
- pos: -65.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21786
- components:
- - type: Transform
- pos: -65.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21787
- components:
- - type: Transform
- pos: -41.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21788
- components:
- - type: Transform
- pos: -41.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21789
- components:
- - type: Transform
- pos: -41.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21790
- components:
- - type: Transform
- pos: -49.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21791
- components:
- - type: Transform
- pos: -49.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21792
- components:
- - type: Transform
- pos: -65.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21793
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21794
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,56.5
- parent: 2
- - uid: 21795
- components:
- - type: Transform
- pos: 10.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21796
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21797
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21798
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21799
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21800
- components:
- - type: Transform
- pos: -59.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21801
- components:
- - type: Transform
- pos: -65.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21802
- components:
- - type: Transform
- pos: -12.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21803
- components:
- - type: Transform
- pos: -41.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21805
- components:
- - type: Transform
- pos: -28.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21806
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21809
- components:
- - type: Transform
- pos: -59.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21810
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21811
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21812
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21813
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21814
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21815
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21816
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21817
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21818
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21819
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21820
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21821
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#222222FF'
- - uid: 21822
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21823
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21824
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21825
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21826
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21827
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21828
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21829
- components:
- - type: Transform
- pos: -64.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21830
- components:
- - type: Transform
- pos: -63.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21831
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,34.5
- parent: 2
- - uid: 21833
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21835
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21836
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21837
- components:
- - type: Transform
- pos: -35.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21838
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21839
- components:
- - type: Transform
- pos: -35.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21840
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21841
- components:
- - type: Transform
- pos: -19.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21842
- components:
- - type: Transform
- pos: -19.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21843
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21844
- components:
- - type: Transform
- pos: -37.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21845
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21846
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21847
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21848
- components:
- - type: Transform
- pos: -2.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21849
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21850
- components:
- - type: Transform
- pos: -27.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21851
- components:
- - type: Transform
- pos: -8.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21852
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21853
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21854
- components:
- - type: Transform
- pos: -37.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21855
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21857
- components:
- - type: Transform
- pos: 11.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21858
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21859
- components:
- - type: Transform
- pos: -52.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21860
- components:
- - type: Transform
- pos: -62.5,61.5
- parent: 2
- - uid: 21861
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21862
- components:
- - type: Transform
- anchored: False
- pos: -41.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 21863
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21864
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,20.5
- parent: 2
- - uid: 21865
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,20.5
- parent: 2
- - uid: 21866
- components:
- - type: Transform
- pos: 30.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21867
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21868
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21869
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21870
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21871
- components:
- - type: Transform
- pos: -19.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21872
- components:
- - type: Transform
- pos: -19.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21873
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21874
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21875
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21876
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21877
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21878
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21879
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21880
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21881
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21882
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21883
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21884
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21885
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21886
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21887
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21888
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21889
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21890
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21891
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21892
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21894
- components:
- - type: Transform
- pos: -41.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21895
- components:
- - type: Transform
- pos: -31.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21897
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21898
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21899
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21900
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21901
- components:
- - type: Transform
- pos: 14.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21902
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21903
- components:
- - type: Transform
- pos: -5.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21905
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21906
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21907
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21908
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21909
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21910
- components:
- - type: Transform
- pos: -63.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21911
- components:
- - type: Transform
- pos: 11.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21912
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21913
- components:
- - type: Transform
- pos: -59.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21914
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21915
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21916
- components:
- - type: Transform
- pos: -11.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21917
- components:
- - type: Transform
- pos: -38.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21918
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21919
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21920
- components:
- - type: Transform
- pos: -63.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21921
- components:
- - type: Transform
- pos: -63.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21922
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21923
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21924
- components:
- - type: Transform
- pos: -35.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21925
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21926
- components:
- - type: Transform
- pos: -27.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21927
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21929
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21930
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21932
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21933
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21934
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21935
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21936
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21937
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21938
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21939
- components:
- - type: Transform
- pos: -32.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21940
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,55.5
- parent: 2
- - uid: 21941
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21942
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21943
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21944
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21945
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21946
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21947
- components:
- - type: Transform
- pos: -32.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21948
- components:
- - type: Transform
- pos: -77.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21949
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 21950
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21951
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21952
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21953
- components:
- - type: Transform
- pos: -65.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21954
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 87.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21955
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21956
- components:
- - type: Transform
- pos: -65.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21957
- components:
- - type: Transform
- pos: 11.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21958
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21959
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21960
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21961
- components:
- - type: Transform
- pos: 22.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21962
- components:
- - type: Transform
- pos: 24.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21963
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21964
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21965
- components:
- - type: Transform
- pos: -19.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21966
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21967
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21968
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21969
- components:
- - type: Transform
- pos: 8.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21970
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21972
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21973
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21974
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21975
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21976
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21977
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21978
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21979
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21980
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21981
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21982
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21983
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21984
- components:
- - type: Transform
- pos: 11.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21985
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21986
- components:
- - type: Transform
- pos: -65.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21987
- components:
- - type: Transform
- pos: -65.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21988
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21989
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21990
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21991
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21992
- components:
- - type: Transform
- pos: 11.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21993
- components:
- - type: Transform
- pos: -29.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21994
- components:
- - type: Transform
- pos: -46.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21995
- components:
- - type: Transform
- pos: -29.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21996
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21997
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21998
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21999
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 80.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22000
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22001
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,27.5
- parent: 2
- - uid: 22002
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22003
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22005
- components:
- - type: Transform
- pos: -65.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22006
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22007
-=======
- color: '#0000FFFF'
- - uid: 19824
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19825
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19826
- components:
- - type: Transform
- pos: -9.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19827
- components:
- - type: Transform
- pos: -9.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19828
- components:
- - type: Transform
- pos: -9.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19829
- components:
- - type: Transform
- pos: -9.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19830
- components:
- - type: Transform
- pos: -9.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19831
- components:
- - type: Transform
- pos: -9.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19832
- components:
- - type: Transform
- pos: -9.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19833
- components:
- - type: Transform
- pos: -9.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19834
- components:
- - type: Transform
- pos: -9.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19835
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19836
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19837
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19838
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19839
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19840
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19841
- components:
- - type: Transform
- pos: -9.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19842
- components:
- - type: Transform
- pos: -9.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19843
- components:
- - type: Transform
- pos: -9.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19844
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19845
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19846
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19847
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19848
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19850
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19851
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19852
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19854
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19855
- components:
- - type: Transform
- pos: 8.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19856
- components:
- - type: Transform
- pos: 8.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19857
- components:
- - type: Transform
- pos: 8.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19858
- components:
- - type: Transform
- pos: 8.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19859
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19860
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19861
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19862
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19863
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19864
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19865
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19866
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19867
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19868
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19869
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19870
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19871
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19872
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19873
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19874
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19875
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19876
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19877
- components:
- - type: Transform
- pos: 10.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19878
- components:
- - type: Transform
- pos: 10.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19879
- components:
- - type: Transform
- pos: 10.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19880
- components:
- - type: Transform
- pos: 10.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19881
- components:
- - type: Transform
- pos: 10.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19882
- components:
- - type: Transform
- pos: 10.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19883
- components:
- - type: Transform
- pos: 10.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19884
- components:
- - type: Transform
- pos: -17.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19885
- components:
- - type: Transform
- pos: -19.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19886
- components:
- - type: Transform
- pos: -19.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19887
- components:
- - type: Transform
- pos: -17.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19888
- components:
- - type: Transform
- pos: -19.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19889
- components:
- - type: Transform
- pos: -19.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19890
- components:
- - type: Transform
- pos: -17.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19891
- components:
- - type: Transform
- pos: -17.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19892
- components:
- - type: Transform
- pos: -17.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19893
- components:
- - type: Transform
- pos: -19.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19894
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19895
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19897
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19898
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19899
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19900
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19901
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19902
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19903
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19906
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19907
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19908
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19909
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19910
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19911
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19912
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19913
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19914
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19915
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19916
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19917
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19918
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19920
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19921
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19922
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19923
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19924
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19925
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19926
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19927
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19928
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19929
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19930
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19935
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19936
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19937
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19938
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19939
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19940
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19941
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19942
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19943
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19944
- components:
- - type: Transform
- pos: -17.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19945
- components:
- - type: Transform
- pos: -17.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19946
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19948
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19949
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19950
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19951
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19952
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19953
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19954
- components:
- - type: Transform
- pos: -14.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19955
- components:
- - type: Transform
- pos: -22.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19956
- components:
- - type: Transform
- pos: -21.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19957
- components:
- - type: Transform
- pos: -22.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19958
- components:
- - type: Transform
- pos: -22.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19959
- components:
- - type: Transform
- pos: -21.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19960
- components:
- - type: Transform
- pos: -21.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19961
- components:
- - type: Transform
- pos: -22.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19962
- components:
- - type: Transform
- pos: -22.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19963
- components:
- - type: Transform
- pos: -21.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19964
- components:
- - type: Transform
- pos: -21.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19965
- components:
- - type: Transform
- pos: -22.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19966
- components:
- - type: Transform
- pos: -22.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19967
- components:
- - type: Transform
- pos: -21.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19968
- components:
- - type: Transform
- pos: -21.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19969
- components:
- - type: Transform
- pos: -22.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19970
- components:
- - type: Transform
- pos: -22.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19971
- components:
- - type: Transform
- pos: -15.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19972
- components:
- - type: Transform
- pos: -14.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19973
- components:
- - type: Transform
- pos: -14.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19974
- components:
- - type: Transform
- pos: -15.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19975
- components:
- - type: Transform
- pos: -14.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19976
- components:
- - type: Transform
- pos: -14.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19977
- components:
- - type: Transform
- pos: -15.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19978
- components:
- - type: Transform
- pos: -15.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19979
- components:
- - type: Transform
- pos: -14.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19980
- components:
- - type: Transform
- pos: -15.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19981
- components:
- - type: Transform
- pos: -15.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19982
- components:
- - type: Transform
- pos: -14.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19983
- components:
- - type: Transform
- pos: -14.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19984
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19985
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19986
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19987
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19988
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19989
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19991
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19992
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19993
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19994
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19995
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19996
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19997
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 19998
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 19999
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20000
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20001
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20002
- components:
- - type: Transform
- pos: -7.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20003
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20004
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20005
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20006
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20007
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20008
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20011
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20012
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20013
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20015
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20016
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20017
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20018
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20019
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20020
- components:
- - type: Transform
- pos: -19.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20021
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20022
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20023
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20024
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20025
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20026
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20027
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20028
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20029
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20030
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20031
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20032
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20033
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20034
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20035
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20036
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20037
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20038
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20039
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20040
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20041
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20042
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20043
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20044
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20045
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20046
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20047
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20048
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20049
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20050
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20051
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20052
- components:
- - type: Transform
- pos: -33.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20053
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20054
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20055
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20056
- components:
- - type: Transform
- pos: -37.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20057
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20058
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20059
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20060
- components:
- - type: Transform
- pos: -3.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20061
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20062
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20063
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20064
- components:
- - type: Transform
- pos: -3.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20065
- components:
- - type: Transform
- pos: -3.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20066
- components:
- - type: Transform
- pos: -3.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20067
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20068
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20069
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20070
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20071
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20072
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20073
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20074
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20075
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20076
- components:
- - type: Transform
- pos: -17.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20077
- components:
- - type: Transform
- pos: -19.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20078
- components:
- - type: Transform
- pos: -19.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20079
- components:
- - type: Transform
- pos: -19.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20080
- components:
- - type: Transform
- pos: -17.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20081
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20082
- components:
- - type: Transform
- pos: -19.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20083
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20084
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20085
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20086
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20087
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20088
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20091
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20092
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20093
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20094
- components:
- - type: Transform
- pos: -19.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20095
- components:
- - type: Transform
- pos: -17.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20096
- components:
- - type: Transform
- pos: -17.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20097
- components:
- - type: Transform
- pos: -17.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20098
- components:
- - type: Transform
- pos: -17.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20099
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20100
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20101
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20102
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20104
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20105
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20106
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20107
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20108
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20109
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20110
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20111
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20113
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20114
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20116
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20117
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20118
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20119
- components:
- - type: Transform
- pos: -3.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20120
- components:
- - type: Transform
- pos: -3.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20121
- components:
- - type: Transform
- pos: -3.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20122
- components:
- - type: Transform
- pos: -5.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20123
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20124
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20125
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20126
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20127
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20128
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20129
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20130
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20131
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20132
- components:
- - type: Transform
- pos: 2.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20133
- components:
- - type: Transform
- pos: 2.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20134
- components:
- - type: Transform
- pos: 1.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20135
- components:
- - type: Transform
- pos: 2.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20136
- components:
- - type: Transform
- pos: 2.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20137
- components:
- - type: Transform
- pos: 1.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20138
- components:
- - type: Transform
- pos: 1.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20139
- components:
- - type: Transform
- pos: 2.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20140
- components:
- - type: Transform
- pos: 2.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20141
- components:
- - type: Transform
- pos: 2.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20142
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20143
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20144
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20145
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20146
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20147
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20150
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20151
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20152
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20153
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20154
- components:
- - type: Transform
- pos: -19.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20155
- components:
- - type: Transform
- pos: -19.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20156
- components:
- - type: Transform
- pos: -3.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20157
- components:
- - type: Transform
- pos: -3.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20158
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20160
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20161
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20163
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20164
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20166
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20167
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20172
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20175
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20178
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20179
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20180
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20182
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-50.5
- parent: 2
- - uid: 20183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20184
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20185
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20186
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20187
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20188
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20189
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20190
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20192
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20194
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20195
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20196
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20197
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20198
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20199
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20202
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20203
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20204
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20205
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 20208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20209
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20211
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20212
- components:
- - type: Transform
- pos: -12.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20213
- components:
- - type: Transform
- pos: -12.5,78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20214
- components:
- - type: Transform
- pos: -12.5,79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20215
- components:
- - type: Transform
- pos: -12.5,80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20216
- components:
- - type: Transform
- pos: -12.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20217
- components:
- - type: Transform
- pos: -12.5,82.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20218
- components:
- - type: Transform
- pos: -12.5,83.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20219
- components:
- - type: Transform
- pos: -12.5,84.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20220
- components:
- - type: Transform
- pos: -12.5,85.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20221
- components:
- - type: Transform
- pos: -12.5,86.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20222
- components:
- - type: Transform
- pos: -12.5,87.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20223
- components:
- - type: Transform
- pos: -12.5,88.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20224
- components:
- - type: Transform
- pos: -12.5,89.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20225
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20226
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20227
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20228
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20229
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20230
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20231
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20232
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20233
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20234
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20235
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20236
- components:
- - type: Transform
- pos: -30.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20237
- components:
- - type: Transform
- pos: -30.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20238
- components:
- - type: Transform
- pos: -30.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20239
- components:
- - type: Transform
- pos: -28.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20240
- components:
- - type: Transform
- pos: -28.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20241
- components:
- - type: Transform
- pos: -30.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20242
- components:
- - type: Transform
- pos: -28.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20243
- components:
- - type: Transform
- pos: -30.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20244
- components:
- - type: Transform
- pos: -30.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20245
- components:
- - type: Transform
- pos: -30.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20246
- components:
- - type: Transform
- pos: -28.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20247
- components:
- - type: Transform
- pos: -28.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20248
- components:
- - type: Transform
- pos: -30.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20249
- components:
- - type: Transform
- pos: -28.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20250
- components:
- - type: Transform
- pos: -30.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20251
- components:
- - type: Transform
- pos: -30.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20252
- components:
- - type: Transform
- pos: -30.5,78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20253
- components:
- - type: Transform
- pos: -30.5,80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20254
- components:
- - type: Transform
- pos: -30.5,79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20255
- components:
- - type: Transform
- pos: -30.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20256
- components:
- - type: Transform
- pos: -30.5,82.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20257
- components:
- - type: Transform
- pos: -30.5,83.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20258
- components:
- - type: Transform
- pos: -30.5,84.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20259
- components:
- - type: Transform
- pos: -30.5,86.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20260
- components:
- - type: Transform
- pos: -30.5,85.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20261
- components:
- - type: Transform
- pos: -30.5,87.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20262
- components:
- - type: Transform
- pos: -30.5,88.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20263
- components:
- - type: Transform
- pos: -30.5,89.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20264
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20265
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20266
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20267
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20268
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20269
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20270
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20271
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20272
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20273
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20274
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20275
- components:
- - type: Transform
- pos: 6.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20276
- components:
- - type: Transform
- pos: 6.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20277
- components:
- - type: Transform
- pos: 7.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20278
- components:
- - type: Transform
- pos: 7.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20279
- components:
- - type: Transform
- pos: 7.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20280
- components:
- - type: Transform
- pos: 5.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20281
- components:
- - type: Transform
- pos: 7.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20282
- components:
- - type: Transform
- pos: 5.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20283
- components:
- - type: Transform
- pos: 7.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20284
- components:
- - type: Transform
- pos: 5.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20285
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-51.5
- parent: 2
- - uid: 20286
- components:
- - type: Transform
- pos: 7.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20287
- components:
- - type: Transform
- pos: 5.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20288
- components:
- - type: Transform
- pos: 5.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20289
- components:
- - type: Transform
- pos: 7.5,74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20290
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20291
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20292
- components:
- - type: Transform
- pos: 5.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20293
- components:
- - type: Transform
- pos: 7.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20294
- components:
- - type: Transform
- pos: 5.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20295
- components:
- - type: Transform
- pos: 5.5,78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20296
- components:
- - type: Transform
- pos: 5.5,79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20297
- components:
- - type: Transform
- pos: 5.5,80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20298
- components:
- - type: Transform
- pos: 5.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20299
- components:
- - type: Transform
- pos: 5.5,82.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20300
- components:
- - type: Transform
- pos: 5.5,83.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20301
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20302
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20303
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20304
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20305
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20306
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20307
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20308
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20309
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20310
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20311
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20312
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20313
- components:
- - type: Transform
- pos: 10.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20314
- components:
- - type: Transform
- pos: 10.5,82.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20315
- components:
- - type: Transform
- pos: 10.5,83.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20316
- components:
- - type: Transform
- pos: 10.5,84.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20317
- components:
- - type: Transform
- pos: 10.5,85.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20318
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20319
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20320
- components:
- - type: Transform
- pos: 7.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20321
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20322
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20323
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20324
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20325
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20326
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20327
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20328
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20329
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20330
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20331
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20332
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20333
- components:
- - type: Transform
- pos: 4.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20334
- components:
- - type: Transform
- pos: 4.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20335
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20336
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20337
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20338
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20339
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20340
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20341
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20342
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20343
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20344
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20345
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20346
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20347
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20348
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20349
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20350
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20351
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20352
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20353
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20354
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20355
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20356
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20357
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20358
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20359
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20360
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20361
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20362
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20363
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20364
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20365
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20366
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20368
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20369
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20370
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20371
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20372
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20373
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20374
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20375
- components:
- - type: Transform
- pos: 16.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20376
- components:
- - type: Transform
- pos: 18.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20377
- components:
- - type: Transform
- pos: 18.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20378
- components:
- - type: Transform
- pos: 16.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20379
- components:
- - type: Transform
- pos: 16.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20380
- components:
- - type: Transform
- pos: 18.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20381
- components:
- - type: Transform
- pos: 16.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20382
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20383
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20384
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20385
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20386
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20387
- components:
- - type: Transform
- pos: 20.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20388
- components:
- - type: Transform
- pos: 18.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20389
- components:
- - type: Transform
- pos: 18.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20390
- components:
- - type: Transform
- pos: 20.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20391
- components:
- - type: Transform
- pos: 20.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20392
- components:
- - type: Transform
- pos: 18.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20393
- components:
- - type: Transform
- pos: 18.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20394
- components:
- - type: Transform
- pos: 20.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20395
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20396
- components:
- - type: Transform
- pos: 20.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20397
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,-30.5
- parent: 2
- - uid: 20398
- components:
- - type: Transform
- pos: 20.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20399
- components:
- - type: Transform
- pos: 20.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20400
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20401
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20402
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20403
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20404
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20405
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20406
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20407
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20408
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20409
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20410
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20411
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20412
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20413
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20414
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20415
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20416
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20417
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20418
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20419
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20420
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20421
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20422
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20423
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20424
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20425
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20426
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20427
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20428
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20429
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20430
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20431
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20432
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20433
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20434
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20435
- components:
- - type: Transform
- pos: 20.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20436
- components:
- - type: Transform
- pos: 20.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20437
- components:
- - type: Transform
- pos: 20.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20438
- components:
- - type: Transform
- pos: 20.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20439
- components:
- - type: Transform
- pos: 20.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20440
- components:
- - type: Transform
- pos: 21.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20441
- components:
- - type: Transform
- pos: 21.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20442
- components:
- - type: Transform
- pos: 21.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20443
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20444
- components:
- - type: Transform
- pos: 21.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20445
- components:
- - type: Transform
- pos: 20.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20446
- components:
- - type: Transform
- pos: 20.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20447
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20448
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20449
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20450
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20451
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20452
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20453
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20455
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20456
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20457
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20458
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20459
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20460
- components:
- - type: Transform
- pos: 31.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20461
- components:
- - type: Transform
- pos: 31.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20462
- components:
- - type: Transform
- pos: 31.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20463
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20464
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20465
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20466
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20468
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20469
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20470
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20471
- components:
- - type: Transform
- pos: 22.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20472
- components:
- - type: Transform
- pos: 22.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20473
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20474
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20475
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20476
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20477
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20478
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20479
- components:
- - type: Transform
- pos: 22.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20480
- components:
- - type: Transform
- pos: 22.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20481
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20482
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20483
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20484
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20485
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20486
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20487
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20488
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20489
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20490
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20491
- components:
- - type: Transform
- pos: 28.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20492
- components:
- - type: Transform
- pos: 28.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20493
- components:
- - type: Transform
- pos: 28.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20494
- components:
- - type: Transform
- pos: 28.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20495
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 20496
- components:
- - type: Transform
- pos: 28.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20497
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20498
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,-30.5
- parent: 2
- - uid: 20499
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20500
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20501
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20502
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20503
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20504
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20505
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20506
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20507
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20508
- components:
- - type: Transform
- pos: -3.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20511
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20512
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20513
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20514
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20515
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20516
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20517
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20518
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20519
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20520
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20521
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20522
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20523
- components:
- - type: Transform
- pos: 39.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20524
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20525
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20526
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20527
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20528
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20529
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20530
- components:
- - type: Transform
- pos: 40.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20531
- components:
- - type: Transform
- pos: 40.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20532
- components:
- - type: Transform
- pos: 40.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20533
- components:
- - type: Transform
- pos: 40.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20534
- components:
- - type: Transform
- pos: 40.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20535
- components:
- - type: Transform
- pos: 40.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20536
- components:
- - type: Transform
- pos: 40.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20537
- components:
- - type: Transform
- pos: 40.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20538
- components:
- - type: Transform
- pos: 40.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20539
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20540
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20541
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20542
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20543
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20544
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20545
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20547
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20548
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20549
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20550
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20551
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20552
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20553
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20554
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20555
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20556
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20557
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20558
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20559
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20560
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20561
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20562
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20563
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20564
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20565
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20566
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20567
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20568
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20569
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20570
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20571
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20572
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20573
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20574
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20575
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20576
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20577
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20579
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20580
- components:
- - type: Transform
- pos: 48.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20581
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20582
- components:
- - type: Transform
- pos: 46.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20583
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20584
- components:
- - type: Transform
- pos: 48.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20585
- components:
- - type: Transform
- pos: -36.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20586
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,5.5
- parent: 2
- - uid: 20587
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,4.5
- parent: 2
- - uid: 20588
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20589
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20590
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20591
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20592
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20593
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20594
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20595
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20596
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20597
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20598
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20599
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20600
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20601
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20602
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20605
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20606
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20607
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20608
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20609
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20610
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20611
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20612
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20613
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20614
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20615
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20616
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20617
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20618
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20619
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20620
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20621
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20622
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20623
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20624
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20625
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20626
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20628
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20629
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20630
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20631
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20632
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20633
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20634
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20635
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20636
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20637
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20638
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20639
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,55.5
- parent: 2
- - uid: 20640
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20641
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20642
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20643
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20644
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20645
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20646
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20647
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20649
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20650
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20651
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20652
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20653
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20654
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20655
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20656
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20657
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20658
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20659
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20660
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20661
- components:
- - type: Transform
- pos: 74.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20662
- components:
- - type: Transform
- pos: 74.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20663
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20664
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20665
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20666
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20667
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20668
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20669
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20670
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20671
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20672
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20673
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 80.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20674
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20675
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20676
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20677
- components:
- - type: Transform
- pos: 72.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20678
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20679
- components:
- - type: Transform
- pos: 72.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20680
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20681
- components:
- - type: Transform
- pos: 72.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20682
- components:
- - type: Transform
- pos: 72.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20683
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20684
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20685
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20686
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20687
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20688
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20689
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20690
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 81.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20691
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20692
- components:
- - type: Transform
- pos: 83.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20693
- components:
- - type: Transform
- pos: 83.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20694
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20695
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 85.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20696
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 86.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20697
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20698
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 87.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20699
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 89.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20700
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 90.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20701
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 91.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20702
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 92.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20703
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 92.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 92.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20705
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 92.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20706
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 92.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20707
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20708
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20710
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20712
- components:
- - type: Transform
- pos: 51.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20713
- components:
- - type: Transform
- pos: 51.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20714
- components:
- - type: Transform
- pos: 51.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20715
- components:
- - type: Transform
- pos: 51.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20716
- components:
- - type: Transform
- pos: 47.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20717
- components:
- - type: Transform
- pos: 47.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20718
- components:
- - type: Transform
- pos: 47.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20719
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20720
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20721
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20722
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20723
- components:
- - type: Transform
- pos: 52.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20724
- components:
- - type: Transform
- pos: 52.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20725
- components:
- - type: Transform
- pos: 52.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20726
- components:
- - type: Transform
- pos: 52.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20727
- components:
- - type: Transform
- pos: 52.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20728
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20730
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20735
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20736
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20738
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20739
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20740
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20741
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20742
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20743
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20744
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20745
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20746
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20747
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20748
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20749
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20751
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20752
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20753
- components:
- - type: Transform
- pos: 2.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20754
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20756
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20757
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20758
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20759
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20760
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20761
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20762
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20763
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20764
- components:
- - type: Transform
- pos: 25.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20765
- components:
- - type: Transform
- pos: 25.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20766
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20769
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20770
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20771
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20772
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20773
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20774
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20775
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20776
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20777
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20778
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20779
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20780
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20781
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20782
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20783
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20784
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20785
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20787
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20789
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20791
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20792
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20793
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20794
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20796
- components:
- - type: Transform
- pos: 34.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20797
- components:
- - type: Transform
- pos: 41.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20798
- components:
- - type: Transform
- pos: 41.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20799
- components:
- - type: Transform
- pos: 39.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20800
- components:
- - type: Transform
- pos: 41.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20801
- components:
- - type: Transform
- pos: 41.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20802
- components:
- - type: Transform
- pos: 39.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20803
- components:
- - type: Transform
- pos: 39.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20804
- components:
- - type: Transform
- pos: 41.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20805
- components:
- - type: Transform
- pos: 41.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20806
- components:
- - type: Transform
- pos: 39.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20807
- components:
- - type: Transform
- pos: 41.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20808
- components:
- - type: Transform
- pos: 39.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20809
- components:
- - type: Transform
- pos: 39.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20810
- components:
- - type: Transform
- pos: 41.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20811
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20813
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20814
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20815
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20816
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20817
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20818
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20819
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20820
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20821
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20822
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20823
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20824
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20825
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20826
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20827
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20828
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20829
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20830
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20831
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20832
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20833
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20834
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20835
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20836
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20837
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20838
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20839
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20840
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20841
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20842
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20843
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20844
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20845
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20846
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20847
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20848
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20849
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20850
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20851
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20852
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20853
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20854
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20855
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20856
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20857
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20858
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20859
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20860
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20861
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20863
- components:
- - type: Transform
- pos: 0.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20864
- components:
- - type: Transform
- pos: 0.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20865
- components:
- - type: Transform
- pos: -1.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20866
- components:
- - type: Transform
- pos: 0.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20867
- components:
- - type: Transform
- pos: 0.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20868
- components:
- - type: Transform
- pos: -1.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20869
- components:
- - type: Transform
- pos: 0.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20870
- components:
- - type: Transform
- pos: -1.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20871
- components:
- - type: Transform
- pos: 0.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20872
- components:
- - type: Transform
- pos: -1.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20873
- components:
- - type: Transform
- pos: 0.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20874
- components:
- - type: Transform
- pos: -1.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20875
- components:
- - type: Transform
- pos: 0.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20876
- components:
- - type: Transform
- pos: -1.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20877
- components:
- - type: Transform
- pos: 0.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20878
- components:
- - type: Transform
- pos: -1.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20879
- components:
- - type: Transform
- pos: -1.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20880
- components:
- - type: Transform
- pos: 0.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20881
- components:
- - type: Transform
- pos: 0.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20882
- components:
- - type: Transform
- pos: -1.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20883
- components:
- - type: Transform
- pos: -1.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20884
- components:
- - type: Transform
- pos: 0.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20885
- components:
- - type: Transform
- pos: 0.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20886
- components:
- - type: Transform
- pos: -1.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20887
- components:
- - type: Transform
- pos: 0.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20888
- components:
- - type: Transform
- pos: 0.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20889
- components:
- - type: Transform
- pos: -1.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20890
- components:
- - type: Transform
- pos: -1.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20891
- components:
- - type: Transform
- pos: 0.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20892
- components:
- - type: Transform
- pos: -1.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20893
- components:
- - type: Transform
- pos: 0.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20894
- components:
- - type: Transform
- pos: 0.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20895
- components:
- - type: Transform
- pos: -1.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20896
- components:
- - type: Transform
- pos: -1.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20897
- components:
- - type: Transform
- pos: 0.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20898
- components:
- - type: Transform
- pos: 0.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20899
- components:
- - type: Transform
- pos: -1.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20900
- components:
- - type: Transform
- pos: -1.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20901
- components:
- - type: Transform
- pos: 0.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20902
- components:
- - type: Transform
- pos: 0.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20903
- components:
- - type: Transform
- pos: -1.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20904
- components:
- - type: Transform
- pos: -1.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20905
- components:
- - type: Transform
- pos: 0.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20906
- components:
- - type: Transform
- pos: 0.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20907
- components:
- - type: Transform
- pos: -1.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20908
- components:
- - type: Transform
- pos: 0.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20909
- components:
- - type: Transform
- pos: -1.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20910
- components:
- - type: Transform
- pos: 0.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20911
- components:
- - type: Transform
- pos: -1.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20912
- components:
- - type: Transform
- pos: 0.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20913
- components:
- - type: Transform
- pos: -1.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20914
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20915
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20916
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20917
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20918
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20919
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20920
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20921
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20922
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20923
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20924
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20925
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20926
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20927
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20928
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20929
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20930
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20935
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20936
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20937
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20938
- components:
- - type: Transform
- pos: 0.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20939
- components:
- - type: Transform
- pos: -1.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20940
- components:
- - type: Transform
- pos: 0.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20941
- components:
- - type: Transform
- pos: 0.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20942
- components:
- - type: Transform
- pos: -1.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20943
- components:
- - type: Transform
- pos: 0.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20944
- components:
- - type: Transform
- pos: 4.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20945
- components:
- - type: Transform
- pos: 5.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20946
- components:
- - type: Transform
- pos: 4.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20947
- components:
- - type: Transform
- pos: 5.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20948
- components:
- - type: Transform
- pos: 4.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20949
- components:
- - type: Transform
- pos: 5.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20950
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20951
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20952
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20953
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20954
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20955
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20956
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20957
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20958
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20959
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20960
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20961
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20962
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20963
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20964
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20965
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20966
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20967
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20968
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20969
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20970
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20971
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20973
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20974
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20975
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20976
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20977
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20978
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20979
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20980
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20981
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20982
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20983
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20984
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20985
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20986
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20987
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20988
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20989
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20990
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20991
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20992
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20993
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20994
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20995
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20996
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 20997
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20998
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 20999
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21000
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21001
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21003
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21004
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21005
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21006
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21007
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21008
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21011
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21012
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21013
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21015
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21016
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21017
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21018
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21019
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21020
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21021
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21022
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21023
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21024
- components:
- - type: Transform
- pos: 16.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21025
- components:
- - type: Transform
- pos: 16.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21026
- components:
- - type: Transform
- pos: 18.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21027
- components:
- - type: Transform
- pos: 18.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21028
- components:
- - type: Transform
- pos: 16.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21029
- components:
- - type: Transform
- pos: 16.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21030
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21031
- components:
- - type: Transform
- pos: 18.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21032
- components:
- - type: Transform
- pos: 16.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21033
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21034
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21035
- components:
- - type: Transform
- pos: 17.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21036
- components:
- - type: Transform
- pos: 17.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21037
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21038
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21039
- components:
- - type: Transform
- pos: 21.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21040
- components:
- - type: Transform
- pos: 21.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21041
- components:
- - type: Transform
- pos: 21.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21042
- components:
- - type: Transform
- pos: 22.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21043
- components:
- - type: Transform
- pos: 22.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21044
- components:
- - type: Transform
- pos: 22.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21045
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21046
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21047
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21048
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21049
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21050
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21051
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21052
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21053
- components:
- - type: Transform
- pos: 11.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21054
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21055
- components:
- - type: Transform
- pos: 9.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21056
- components:
- - type: Transform
- pos: 10.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21057
- components:
- - type: Transform
- pos: 9.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21058
- components:
- - type: Transform
- pos: 9.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21059
- components:
- - type: Transform
- pos: 10.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21060
- components:
- - type: Transform
- pos: 10.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21061
- components:
- - type: Transform
- pos: 9.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21062
- components:
- - type: Transform
- pos: 9.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21063
- components:
- - type: Transform
- pos: 9.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21064
- components:
- - type: Transform
- pos: 10.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21065
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21066
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21067
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21068
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21069
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21070
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21071
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21072
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21073
- components:
- - type: Transform
- pos: 4.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21074
- components:
- - type: Transform
- pos: 5.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21075
- components:
- - type: Transform
- pos: 4.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21076
- components:
- - type: Transform
- pos: 5.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21077
- components:
- - type: Transform
- pos: 4.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21078
- components:
- - type: Transform
- pos: 4.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21079
- components:
- - type: Transform
- pos: 5.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21080
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21081
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21082
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21083
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21084
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21085
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21086
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21087
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21088
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21089
- components:
- - type: Transform
- pos: 36.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21090
- components:
- - type: Transform
- pos: 36.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21092
- components:
- - type: Transform
- pos: 36.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21093
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21094
- components:
- - type: Transform
- pos: 26.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21096
- components:
- - type: Transform
- pos: 28.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21097
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21098
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21099
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21100
- components:
- - type: Transform
- pos: 28.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21101
- components:
- - type: Transform
- pos: 26.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21102
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21103
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21104
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21105
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21106
- components:
- - type: Transform
- pos: 36.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21107
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21108
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21109
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21111
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21113
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21115
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21116
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21117
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21118
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21119
- components:
- - type: Transform
- pos: 28.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21120
- components:
- - type: Transform
- pos: 28.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21121
- components:
- - type: Transform
- pos: 26.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21123
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21124
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21125
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21126
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21127
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21128
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21129
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21130
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21131
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21132
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21133
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21134
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21135
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21136
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21137
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21138
- components:
- - type: Transform
- pos: 28.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21139
- components:
- - type: Transform
- pos: 26.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21140
- components:
- - type: Transform
- pos: 26.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21141
- components:
- - type: Transform
- pos: 28.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21142
- components:
- - type: Transform
- pos: 28.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21143
- components:
- - type: Transform
- pos: 26.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21144
- components:
- - type: Transform
- pos: 26.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21145
- components:
- - type: Transform
- pos: 26.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21146
- components:
- - type: Transform
- pos: 26.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21147
- components:
- - type: Transform
- pos: 26.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21150
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21151
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21152
- components:
- - type: Transform
- pos: -5.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21153
- components:
- - type: Transform
- pos: -5.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21154
- components:
- - type: Transform
- pos: -6.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21155
- components:
- - type: Transform
- pos: -5.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21156
- components:
- - type: Transform
- pos: -5.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21157
- components:
- - type: Transform
- pos: -6.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21158
- components:
- - type: Transform
- pos: -6.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21159
- components:
- - type: Transform
- pos: -5.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21160
- components:
- - type: Transform
- pos: -5.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21161
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21163
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21164
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21166
- components:
- - type: Transform
- pos: -12.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21167
- components:
- - type: Transform
- pos: -12.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21168
- components:
- - type: Transform
- pos: -12.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21169
- components:
- - type: Transform
- pos: -13.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21170
- components:
- - type: Transform
- pos: -13.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21171
- components:
- - type: Transform
- pos: -12.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21172
- components:
- - type: Transform
- pos: -12.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21173
- components:
- - type: Transform
- pos: -12.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21174
- components:
- - type: Transform
- pos: -14.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21175
- components:
- - type: Transform
- pos: -12.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21176
- components:
- - type: Transform
- pos: -14.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21177
- components:
- - type: Transform
- pos: -12.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21178
- components:
- - type: Transform
- pos: -14.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21179
- components:
- - type: Transform
- pos: -12.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21180
- components:
- - type: Transform
- pos: -14.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21181
- components:
- - type: Transform
- pos: -14.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21182
- components:
- - type: Transform
- pos: -12.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21183
- components:
- - type: Transform
- pos: -12.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21184
- components:
- - type: Transform
- pos: -14.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21185
- components:
- - type: Transform
- pos: -14.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21186
- components:
- - type: Transform
- pos: -12.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21187
- components:
- - type: Transform
- pos: -12.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21188
- components:
- - type: Transform
- pos: -14.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21189
- components:
- - type: Transform
- pos: -14.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21190
- components:
- - type: Transform
- pos: -12.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21191
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21192
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21193
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21194
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21195
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21196
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21197
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21198
- components:
- - type: Transform
- pos: -14.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21199
- components:
- - type: Transform
- pos: -12.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21200
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21201
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21202
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21204
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21205
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21206
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21207
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21208
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21209
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21210
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21211
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21212
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21213
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21214
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21215
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21216
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21217
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21219
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21220
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21221
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21222
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21223
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21224
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21225
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21226
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21227
- components:
- - type: Transform
- pos: -7.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21228
- components:
- - type: Transform
- pos: -6.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21229
- components:
- - type: Transform
- pos: -6.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21230
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21231
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21232
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21233
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21234
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21235
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21236
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21237
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21238
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21239
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21240
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21241
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21242
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21244
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21245
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21246
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21247
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21248
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21249
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21250
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21251
- components:
- - type: Transform
- pos: -14.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21252
- components:
- - type: Transform
- pos: -12.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21253
- components:
- - type: Transform
- pos: -14.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21254
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21256
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21257
->>>>>>> master
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -6.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22008
- components:
- - type: Transform
- pos: -35.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22009
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22011
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22012
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22013
- components:
- - type: Transform
- pos: 24.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22014
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22015
- components:
- - type: Transform
- pos: 24.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22016
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22017
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22018
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22019
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22020
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22021
- components:
- - type: Transform
- pos: -28.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22022
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22023
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22024
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,30.5
- parent: 2
- - uid: 22025
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22026
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22027
- components:
- - type: Transform
- pos: -52.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22028
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22029
- components:
- - type: Transform
- pos: -32.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22030
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22031
- components:
- - type: Transform
- pos: -32.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22032
- components:
- - type: Transform
- pos: -32.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22033
- components:
- - type: Transform
- pos: -69.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22034
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22035
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22036
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22037
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22038
- components:
- - type: Transform
- pos: 28.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22039
- components:
- - type: Transform
- pos: -41.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22040
- components:
- - type: Transform
- pos: -19.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22041
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22042
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22043
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22044
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22045
- components:
- - type: Transform
- pos: 22.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22046
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22047
- components:
- - type: Transform
- pos: -30.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22048
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22049
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22050
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,48.5
- parent: 2
- - uid: 22051
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22052
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22053
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22054
- components:
- - type: Transform
- pos: -65.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22055
- components:
- - type: Transform
- pos: -46.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22056
- components:
- - type: Transform
- pos: -64.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22057
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0313FF00'
- - uid: 22058
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22059
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22060
- components:
- - type: Transform
- pos: -41.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22061
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22062
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22063
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22064
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22065
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22066
- components:
- - type: Transform
- pos: -11.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22067
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22068
- components:
- - type: Transform
- pos: -11.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22069
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22070
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22071
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22072
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22073
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22074
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22075
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22076
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22077
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22078
- components:
- - type: Transform
- pos: -11.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22079
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22080
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22081
- components:
- - type: Transform
- pos: -19.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22082
- components:
- - type: Transform
- pos: -19.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22083
- components:
- - type: Transform
- pos: -8.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22084
- components:
- - type: Transform
- pos: -11.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22085
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22086
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22087
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22088
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22089
- components:
- - type: Transform
- anchored: False
- rot: 3.141592653589793 rad
- pos: 9.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 22090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22091
- components:
- - type: Transform
- pos: -52.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22092
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22093
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22094
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22095
- components:
- - type: Transform
- pos: 75.5,25.5
- parent: 2
- - uid: 22096
- components:
- - type: Transform
- pos: -54.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22097
- components:
- - type: Transform
- pos: -64.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 22098
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22099
- components:
- - type: Transform
- pos: -35.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22100
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22101
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22102
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22103
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22104
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22105
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22106
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22107
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22108
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22109
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22110
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,36.5
- parent: 2
- - uid: 22111
- components:
- - type: Transform
- pos: -65.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22112
- components:
- - type: Transform
- pos: -27.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22113
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22114
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22115
- components:
- - type: Transform
- pos: -10.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22116
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22117
- components:
- - type: Transform
- pos: 14.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22118
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22119
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22120
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22121
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22122
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22123
- components:
- - type: Transform
- pos: -19.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22124
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22125
- components:
- - type: Transform
- pos: -19.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22126
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22127
- components:
- - type: Transform
- pos: -37.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22128
- components:
- - type: Transform
- pos: -41.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22129
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22130
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22131
- components:
- - type: Transform
- pos: -58.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22132
- components:
- - type: Transform
- pos: -32.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22133
- components:
- - type: Transform
- pos: -32.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22134
- components:
- - type: Transform
- pos: -32.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22135
- components:
- - type: Transform
- pos: -54.5,52.5
- parent: 2
- - uid: 22136
- components:
- - type: Transform
- pos: -54.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22137
- components:
- - type: Transform
- pos: 36.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22138
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22139
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22140
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22141
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22143
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22144
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22145
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22146
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22147
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22150
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,48.5
- parent: 2
- - uid: 22151
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22152
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22153
- components:
- - type: Transform
- pos: -14.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22154
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22155
- components:
- - type: Transform
- pos: 22.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22156
- components:
- - type: Transform
- pos: -41.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22157
- components:
- - type: Transform
- pos: -68.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22158
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22159
- components:
- - type: Transform
- pos: -27.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22160
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22161
- components:
- - type: Transform
- pos: 14.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22163
- components:
- - type: Transform
- pos: -17.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22164
- components:
- - type: Transform
- pos: -2.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22165
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22167
- components:
- - type: Transform
- pos: -54.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22169
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22171
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22172
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22174
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22175
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22176
- components:
- - type: Transform
- pos: -69.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22178
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,30.5
- parent: 2
- - uid: 22179
- components:
- - type: Transform
- pos: -55.5,52.5
- parent: 2
- - uid: 22180
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22181
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22182
- components:
- - type: Transform
- pos: -24.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22183
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22184
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22185
- components:
- - type: Transform
- pos: -32.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22187
- components:
- - type: Transform
- pos: -33.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22189
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22190
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22191
- components:
- - type: Transform
- anchored: False
- rot: 1.5707963267948966 rad
- pos: 28.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 22192
- components:
- - type: Transform
- pos: -32.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22193
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22194
- components:
- - type: Transform
- pos: -46.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22195
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22196
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22197
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22198
- components:
- - type: Transform
- pos: -65.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22199
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22200
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22201
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22202
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22204
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22205
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22206
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22207
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22208
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22210
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22211
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22212
- components:
- - type: Transform
- pos: -14.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22213
- components:
- - type: Transform
- pos: -14.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22214
- components:
- - type: Transform
- pos: -14.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22215
- components:
- - type: Transform
- pos: -14.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22216
- components:
- - type: Transform
- pos: -14.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22217
- components:
- - type: Transform
- pos: -14.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22218
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22219
- components:
- - type: Transform
- pos: -14.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22220
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22221
- components:
- - type: Transform
- pos: -14.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22222
- components:
- - type: Transform
- pos: -14.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22223
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22224
- components:
- - type: Transform
- pos: -64.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22225
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22226
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22227
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22229
- components:
- - type: Transform
- pos: -54.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22230
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22231
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22232
- components:
- - type: Transform
- pos: -54.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22233
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,34.5
- parent: 2
- - uid: 22234
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22235
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22236
- components:
- - type: Transform
- pos: -33.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22237
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22238
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22240
- components:
- - type: Transform
- pos: -54.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22241
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22242
- components:
- - type: Transform
- pos: -46.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22243
- components:
- - type: Transform
- pos: -46.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22244
- components:
- - type: Transform
- pos: -65.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22245
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22246
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22247
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22248
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22249
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22250
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22251
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22252
- components:
- - type: Transform
- pos: -8.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22253
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22255
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22256
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22257
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22258
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22259
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22260
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22261
- components:
- - type: Transform
- pos: 8.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22262
- components:
- - type: Transform
- pos: -13.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22263
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22264
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22265
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22266
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22267
- components:
- - type: Transform
- pos: -44.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22268
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22269
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22270
- components:
- - type: Transform
- pos: -30.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22271
- components:
- - type: Transform
- pos: 75.5,26.5
- parent: 2
- - uid: 22272
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22273
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22274
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,18.5
- parent: 2
- - uid: 22275
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22276
- components:
- - type: Transform
- pos: -8.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22277
- components:
- - type: Transform
- pos: -5.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22278
- components:
- - type: Transform
- pos: -5.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22279
- components:
- - type: Transform
- pos: -5.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22280
- components:
- - type: Transform
- pos: -5.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22281
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22282
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22285
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22286
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22287
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22288
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22289
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22290
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22291
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22292
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22293
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22294
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22295
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22296
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22297
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 22298
- components:
- - type: Transform
- pos: -46.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22299
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22300
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,44.5
- parent: 2
- - uid: 22301
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22302
- components:
- - type: Transform
- pos: -64.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 22303
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22304
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 22305
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22306
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,26.5
- parent: 2
- - uid: 22307
- components:
- - type: Transform
- pos: 10.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22308
- components:
- - type: Transform
- pos: 50.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22309
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22310
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22311
- components:
- - type: Transform
- pos: -68.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22312
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22313
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22314
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22315
- components:
- - type: Transform
- pos: -35.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22317
- components:
- - type: Transform
- pos: -46.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22318
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22319
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22321
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22322
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22323
- components:
- - type: Transform
- pos: -27.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22324
- components:
- - type: Transform
- pos: -65.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22325
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22326
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22327
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22328
- components:
- - type: Transform
- pos: -35.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22329
- components:
- - type: Transform
- pos: -64.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 22330
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22331
- components:
- - type: Transform
- pos: -48.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22332
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22333
- components:
- - type: Transform
- pos: -38.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22334
- components:
- - type: Transform
- pos: -41.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22336
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22337
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22338
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22339
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22340
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22341
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22342
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22343
- components:
- - type: Transform
- pos: -11.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22344
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22345
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22346
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 93.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22347
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 22348
- components:
- - type: Transform
- pos: -44.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22349
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22350
- components:
- - type: Transform
- pos: -65.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22351
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22352
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22353
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22354
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22355
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22356
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22357
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22358
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22359
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22360
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22361
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22362
- components:
- - type: Transform
- pos: -77.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22363
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22364
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22365
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22366
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22367
- components:
- - type: Transform
- pos: 5.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22368
- components:
- - type: Transform
- pos: -13.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22369
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22370
- components:
- - type: Transform
- pos: 6.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22371
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22372
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22373
- components:
- - type: Transform
- pos: 6.5,-79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22374
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22376
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22377
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22378
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22379
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22380
- components:
- - type: Transform
- pos: 4.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22381
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22382
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22383
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22384
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22385
- components:
- - type: Transform
- pos: 4.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22386
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22387
- components:
- - type: Transform
- pos: 4.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22388
- components:
- - type: Transform
- pos: 4.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22389
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22390
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22391
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22393
- components:
- - type: Transform
- pos: 5.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22394
- components:
- - type: Transform
- pos: 5.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22395
- components:
- - type: Transform
- pos: 5.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22396
- components:
- - type: Transform
- pos: 5.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22397
- components:
- - type: Transform
- pos: 5.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22398
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22399
- components:
- - type: Transform
- pos: 7.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22400
- components:
- - type: Transform
- pos: 6.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22401
- components:
- - type: Transform
- pos: 5.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22402
- components:
- - type: Transform
- pos: 5.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22403
- components:
- - type: Transform
- pos: 5.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22404
- components:
- - type: Transform
- pos: 5.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22405
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22406
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22407
- components:
- - type: Transform
- pos: 5.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22408
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22409
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22410
- components:
- - type: Transform
- pos: 4.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22411
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22412
- components:
- - type: Transform
- pos: 4.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22413
- components:
- - type: Transform
- pos: -59.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22414
- components:
- - type: Transform
- pos: -59.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22415
- components:
- - type: Transform
- pos: -59.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22416
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22417
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22418
-=======
- pos: -16.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 21258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21260
- components:
- - type: Transform
- pos: -18.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21261
- components:
- - type: Transform
- pos: -18.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21262
- components:
- - type: Transform
- pos: -18.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21263
- components:
- - type: Transform
- pos: -18.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21264
- components:
- - type: Transform
- pos: -18.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21265
- components:
- - type: Transform
- pos: -14.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21266
- components:
- - type: Transform
- pos: -12.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21267
- components:
- - type: Transform
- pos: -12.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21268
- components:
- - type: Transform
- pos: -14.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21269
- components:
- - type: Transform
- pos: -14.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21270
- components:
- - type: Transform
- pos: -14.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21271
- components:
- - type: Transform
- pos: -12.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21272
- components:
- - type: Transform
- pos: -12.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21273
- components:
- - type: Transform
- pos: -12.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21274
- components:
- - type: Transform
- pos: -14.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21275
- components:
- - type: Transform
- pos: -12.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21276
- components:
- - type: Transform
- pos: -14.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21277
- components:
- - type: Transform
- pos: -12.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21278
- components:
- - type: Transform
- pos: -14.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21279
- components:
- - type: Transform
- pos: -12.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21280
- components:
- - type: Transform
- pos: -14.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21281
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21282
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21284
- components:
- - type: Transform
- pos: -16.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21285
- components:
- - type: Transform
- pos: -16.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21286
- components:
- - type: Transform
- pos: -16.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21287
- components:
- - type: Transform
- pos: -16.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21288
- components:
- - type: Transform
- pos: -16.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21289
- components:
- - type: Transform
- pos: -16.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21290
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21291
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21292
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21293
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21294
- components:
- - type: Transform
- pos: -15.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21295
- components:
- - type: Transform
- pos: -15.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21296
- components:
- - type: Transform
- pos: -15.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21297
- components:
- - type: Transform
- pos: -15.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21298
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21299
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21300
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21301
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21302
- components:
- - type: Transform
- anchored: False
- pos: 52.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 21303
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21304
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21305
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21306
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21307
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21308
- components:
- - type: Transform
- pos: -23.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21309
- components:
- - type: Transform
- pos: -23.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21310
- components:
- - type: Transform
- pos: -23.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21311
- components:
- - type: Transform
- pos: -21.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21312
- components:
- - type: Transform
- pos: -21.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21313
- components:
- - type: Transform
- pos: -21.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21314
- components:
- - type: Transform
- pos: -21.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21315
- components:
- - type: Transform
- pos: -21.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21316
- components:
- - type: Transform
- pos: -21.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21317
- components:
- - type: Transform
- pos: -21.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21318
- components:
- - type: Transform
- pos: -21.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21319
- components:
- - type: Transform
- pos: -21.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21320
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21321
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21322
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21323
- components:
- - type: Transform
- pos: -18.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21324
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21325
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21326
- components:
- - type: Transform
- pos: -28.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21327
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21328
- components:
- - type: Transform
- pos: -28.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21329
- components:
- - type: Transform
- pos: -28.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21330
- components:
- - type: Transform
- pos: -23.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21331
- components:
- - type: Transform
- pos: -23.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21332
- components:
- - type: Transform
- pos: -28.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21333
- components:
- - type: Transform
- pos: -23.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21334
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21336
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21337
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21338
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21339
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21340
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21341
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21342
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21343
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21344
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21345
- components:
- - type: Transform
- pos: -23.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21346
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21347
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21348
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21349
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21350
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21351
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21352
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21353
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21354
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21355
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21356
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21357
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21358
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21359
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21360
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21361
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21362
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21363
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21364
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21365
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21366
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21368
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21369
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21370
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21371
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21372
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21373
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21374
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21375
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21376
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21377
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21378
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21379
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21380
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21381
- components:
- - type: Transform
- pos: 1.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21382
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21383
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21384
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21385
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21386
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21387
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21388
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21389
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21390
- components:
- - type: Transform
- pos: -9.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21391
- components:
- - type: Transform
- pos: -9.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21392
- components:
- - type: Transform
- pos: 1.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21393
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21394
- components:
- - type: Transform
- pos: -8.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21395
- components:
- - type: Transform
- pos: -9.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21396
- components:
- - type: Transform
- pos: -8.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21397
- components:
- - type: Transform
- pos: -9.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21398
- components:
- - type: Transform
- pos: -8.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21399
- components:
- - type: Transform
- pos: 0.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21400
- components:
- - type: Transform
- pos: 1.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21401
- components:
- - type: Transform
- pos: 1.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21402
- components:
- - type: Transform
- pos: 0.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21403
- components:
- - type: Transform
- pos: 1.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21404
- components:
- - type: Transform
- pos: 0.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21405
- components:
- - type: Transform
- pos: -9.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21406
- components:
- - type: Transform
- pos: -8.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21407
- components:
- - type: Transform
- pos: -8.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21408
- components:
- - type: Transform
- pos: -9.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21409
- components:
- - type: Transform
- pos: -8.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21410
- components:
- - type: Transform
- pos: -9.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21411
- components:
- - type: Transform
- pos: -8.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21412
- components:
- - type: Transform
- pos: -9.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21413
- components:
- - type: Transform
- pos: 0.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21414
- components:
- - type: Transform
- pos: 1.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21415
- components:
- - type: Transform
- pos: 0.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21416
- components:
- - type: Transform
- pos: 1.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21417
- components:
- - type: Transform
- pos: 0.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21418
- components:
- - type: Transform
- pos: 1.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21419
- components:
- - type: Transform
- pos: 0.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21420
- components:
- - type: Transform
- pos: 1.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21421
- components:
- - type: Transform
- pos: 1.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21422
- components:
- - type: Transform
- pos: -9.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21423
- components:
- - type: Transform
- pos: -9.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21424
- components:
- - type: Transform
- pos: -8.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21425
- components:
- - type: Transform
- pos: -9.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21426
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21427
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21428
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21429
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21430
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21431
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21432
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21433
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21434
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21435
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21436
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21437
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21438
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21439
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21440
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21441
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21442
- components:
- - type: Transform
- pos: 0.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21443
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21444
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21445
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21446
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21447
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21448
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21449
- components:
- - type: Transform
- pos: 5.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21450
- components:
- - type: Transform
- pos: 5.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21451
- components:
- - type: Transform
- pos: 5.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21452
- components:
- - type: Transform
- pos: 5.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21453
- components:
- - type: Transform
- pos: 5.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21454
- components:
- - type: Transform
- pos: 5.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21455
- components:
- - type: Transform
- pos: 5.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21456
- components:
- - type: Transform
- pos: 5.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21457
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21458
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21459
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21460
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21461
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21462
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21463
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21464
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
- pos: 49.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 21465
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21466
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21467
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21468
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21469
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21470
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21471
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21472
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21473
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21474
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21475
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21476
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21477
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21478
- components:
- - type: Transform
- pos: -16.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21479
- components:
- - type: Transform
- pos: -16.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21480
- components:
- - type: Transform
- pos: -16.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21481
- components:
- - type: Transform
- pos: -16.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21482
- components:
- - type: Transform
- pos: -16.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21483
- components:
- - type: Transform
- pos: -16.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21484
- components:
- - type: Transform
- pos: -16.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21485
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21486
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21487
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21488
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21489
- components:
- - type: Transform
- pos: -22.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21490
- components:
- - type: Transform
- pos: -22.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21491
- components:
- - type: Transform
- pos: -22.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21492
- components:
- - type: Transform
- pos: -22.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21493
- components:
- - type: Transform
- pos: -22.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21494
- components:
- - type: Transform
- pos: -22.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21495
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21496
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21497
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21498
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21499
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21500
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21501
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21502
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21503
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21504
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21505
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21506
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21507
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21508
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21509
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -122.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21511
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21512
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-30.5
- parent: 2
- - uid: 21513
- components:
- - type: Transform
- pos: 21.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21514
- components:
- - type: Transform
- pos: 8.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21515
- components:
- - type: Transform
- pos: 5.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21516
- components:
- - type: Transform
- pos: 5.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21517
- components:
- - type: Transform
- pos: 5.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21518
- components:
- - type: Transform
- pos: 5.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21519
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21520
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,14.5
- parent: 2
- - uid: 21521
- components:
- - type: Transform
- pos: -28.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21522
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21523
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21524
- components:
- - type: Transform
- pos: 41.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21525
- components:
- - type: Transform
- pos: -11.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21526
- components:
- - type: Transform
- pos: -5.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21527
- components:
- - type: Transform
- pos: -24.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21528
- components:
- - type: Transform
- pos: -24.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21529
- components:
- - type: Transform
- pos: -24.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21530
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21531
- components:
- - type: Transform
- pos: -26.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21532
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21533
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21534
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21535
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21536
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -116.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21537
- components:
- - type: Transform
- pos: 46.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21538
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21539
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21540
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-30.5
- parent: 2
- - uid: 21541
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,-30.5
- parent: 2
- - uid: 21542
- components:
- - type: Transform
- pos: -36.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21543
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21544
- components:
- - type: Transform
- pos: 75.5,24.5
- parent: 2
- - uid: 21545
- components:
- - type: Transform
- pos: 75.5,23.5
- parent: 2
- - uid: 21546
- components:
- - type: Transform
- pos: 75.5,22.5
- parent: 2
- - uid: 21547
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,21.5
- parent: 2
- - uid: 21548
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-40.5
- parent: 2
- - uid: 21549
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21550
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0313FF00'
- - uid: 21551
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,56.5
- parent: 2
- - uid: 21552
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,17.5
- parent: 2
- - uid: 21553
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,16.5
- parent: 2
- - uid: 21554
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21555
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -117.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21556
- components:
- - type: Transform
- pos: -119.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21557
- components:
- - type: Transform
- pos: -119.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21558
- components:
- - type: Transform
- pos: -119.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21559
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21560
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21561
- components:
- - type: Transform
- pos: -29.5,-53.5
- parent: 2
- - uid: 21562
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21563
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21564
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21565
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21566
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21567
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21568
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,58.5
- parent: 2
- - uid: 21569
- components:
- - type: Transform
- anchored: False
- rot: 3.141592653589793 rad
- pos: 8.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 21570
- components:
- - type: Transform
- pos: 24.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21571
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21572
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21573
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,56.5
- parent: 2
- - uid: 21574
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21575
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21576
- components:
- - type: Transform
- pos: -8.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21577
- components:
- - type: Transform
- pos: -63.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21578
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,55.5
- parent: 2
- - uid: 21579
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21580
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21581
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21582
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,27.5
- parent: 2
- - uid: 21583
- components:
- - type: Transform
- anchored: False
- rot: 3.141592653589793 rad
- pos: 8.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 21584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21585
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0313FF00'
- - uid: 21586
- components:
- - type: Transform
- pos: 75.5,25.5
- parent: 2
- - uid: 21587
- components:
- - type: Transform
- pos: -54.5,52.5
- parent: 2
- - uid: 21588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21589
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21590
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 21591
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21592
- components:
- - type: Transform
- pos: -55.5,52.5
- parent: 2
- - uid: 21593
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21594
- components:
- - type: Transform
- pos: 75.5,26.5
- parent: 2
- - uid: 21595
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,18.5
- parent: 2
- - uid: 21596
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 21597
- components:
- - type: Transform
- pos: 4.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21598
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21599
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21600
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21601
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -118.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21602
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21605
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21606
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21607
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21608
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21609
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -119.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21610
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -118.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21611
- components:
- - type: Transform
- pos: -117.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21612
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21613
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21614
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21615
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21616
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21617
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21618
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21619
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21620
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21621
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21622
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -122.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21623
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21624
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -115.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21625
- components:
- - type: Transform
- pos: -119.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21626
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -115.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -114.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21628
- components:
- - type: Transform
- pos: -119.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21629
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21630
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -114.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21631
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21632
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21633
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21634
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -121.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21635
- components:
- - type: Transform
- pos: -119.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21636
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21637
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21638
- components:
- - type: Transform
- pos: -119.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21639
- components:
- - type: Transform
- pos: -119.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21640
- components:
- - type: Transform
- pos: -119.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21641
- components:
- - type: Transform
- pos: -119.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21642
- components:
- - type: Transform
- pos: -119.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21643
- components:
- - type: Transform
- pos: -119.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21644
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,18.5
- parent: 2
- - uid: 21645
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21646
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21647
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21648
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21649
- components:
- - type: Transform
- pos: -14.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21650
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21651
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21652
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21653
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21654
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 21655
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 21656
- components:
- - type: Transform
- pos: -16.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21657
- components:
- - type: Transform
- pos: -28.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21658
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21659
- components:
- - type: Transform
- pos: 74.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21660
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21662
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21663
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21664
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21665
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21666
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21667
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21668
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21669
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21670
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21671
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21672
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21673
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21674
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21675
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21676
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21677
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21678
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21679
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21680
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21681
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21682
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21683
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21684
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21686
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21687
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21688
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21689
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21690
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21691
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21692
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21693
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21694
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21695
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21696
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21697
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21698
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21699
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21700
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21701
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21702
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21703
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21704
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21705
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21706
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21707
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21708
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21710
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21712
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21713
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21715
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21718
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21720
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21721
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21722
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21723
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21724
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21725
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21726
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21727
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21728
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21729
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21730
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 21731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21735
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 21736
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,8.5
- parent: 2
- - uid: 21737
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21738
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21739
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21740
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 80.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21741
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 81.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21742
->>>>>>> master
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
-<<<<<<< HEAD
- - uid: 22419
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22420
- components:
- - type: Transform
- pos: 47.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22421
- components:
- - type: Transform
- pos: 47.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22422
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22423
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22424
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22425
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22426
- components:
- - type: Transform
- pos: -59.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22427
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22428
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22429
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22430
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22431
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22432
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22433
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22434
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22435
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22436
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22437
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22438
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22439
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22440
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22441
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22442
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22443
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22444
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22445
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22446
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22447
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22448
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22449
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22450
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22451
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22452
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22454
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22456
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22457
- components:
- - type: Transform
- pos: -68.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22458
- components:
- - type: Transform
- pos: -68.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22459
- components:
- - type: Transform
- pos: -69.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22460
- components:
- - type: Transform
- pos: -69.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22461
- components:
- - type: Transform
- pos: -69.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22462
- components:
- - type: Transform
- pos: -68.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22463
- components:
- - type: Transform
- pos: -68.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22464
- components:
- - type: Transform
- pos: -68.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22465
- components:
- - type: Transform
- pos: -69.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22466
- components:
- - type: Transform
- pos: -69.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22467
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22468
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22469
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22470
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22471
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22472
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22473
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22474
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22475
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22476
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22477
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22478
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22479
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22480
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22481
- components:
- - type: Transform
- pos: -66.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22482
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22483
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22484
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22485
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22486
-=======
- - uid: 21743
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21744
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21745
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21746
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 80.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21747
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 82.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 83.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21749
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21750
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 87.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21751
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21752
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 85.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21753
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 89.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21754
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 81.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21755
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 88.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21756
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21757
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 80.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21758
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21759
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21760
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 92.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21761
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 93.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21762
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21763
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21764
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21765
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21766
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21767
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21768
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 85.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21769
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21770
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 87.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 88.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21772
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 89.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21773
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21774
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 94.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 95.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21777
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 93.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21778
- components:
- - type: Transform
- pos: 78.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21779
- components:
- - type: Transform
- pos: 78.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21780
- components:
- - type: Transform
- pos: 78.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21781
- components:
- - type: Transform
- pos: 78.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21782
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21783
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21784
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21785
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21786
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21787
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21788
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21789
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21790
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21791
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21792
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21793
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21794
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21795
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21796
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21797
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21798
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21799
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21800
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21801
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21802
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21803
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21804
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21805
->>>>>>> master
- components:
- - type: Transform
- anchored: False
- rot: 1.5707963267948966 rad
-<<<<<<< HEAD
- pos: 60.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 22487
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22488
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22489
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22490
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22491
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22492
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22493
- components:
- - type: Transform
- pos: 29.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22494
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22495
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22496
- components:
- - type: Transform
- pos: 29.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22497
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22498
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22499
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -118.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22500
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22501
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22502
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22503
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22504
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22505
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22506
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22507
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22508
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22509
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22510
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -119.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22511
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -118.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22512
- components:
- - type: Transform
- pos: -117.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22513
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22514
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22515
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22516
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22517
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22518
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22519
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22520
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22521
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22522
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22523
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -122.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22524
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22525
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -115.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22526
- components:
- - type: Transform
- pos: -119.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22527
- components:
- - type: Transform
- pos: 37.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22528
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -115.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22529
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22530
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -114.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22531
- components:
- - type: Transform
- pos: -119.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22532
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22533
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -114.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22534
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22535
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -121.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22538
- components:
- - type: Transform
- pos: -119.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22539
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22540
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22541
- components:
- - type: Transform
- pos: -119.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22542
- components:
- - type: Transform
- pos: -119.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22543
- components:
- - type: Transform
- pos: -119.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22544
- components:
- - type: Transform
- pos: -119.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22545
- components:
- - type: Transform
- pos: -119.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22546
- components:
- - type: Transform
- pos: -119.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22547
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,18.5
- parent: 2
- - uid: 22548
- components:
- - type: Transform
- pos: 36.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22549
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 84.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22550
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 85.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22551
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22552
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 87.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22553
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 88.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22554
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22555
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 83.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22556
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 83.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22557
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 83.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22558
- components:
- - type: Transform
- pos: 83.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22559
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22560
- components:
- - type: Transform
- pos: 84.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22561
- components:
- - type: Transform
- pos: 84.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22562
- components:
- - type: Transform
- pos: 84.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22563
- components:
- - type: Transform
- pos: 84.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22564
- components:
- - type: Transform
- pos: 84.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22565
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 83.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22566
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 84.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22567
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 85.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22568
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22569
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 87.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22570
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 88.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22571
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 89.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22572
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22573
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 85.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22574
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 86.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22575
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 87.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22576
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22577
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 89.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22578
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 90.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22579
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 91.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22580
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 92.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22581
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 93.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22582
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 93.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22583
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 93.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22584
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 91.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22585
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 91.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22586
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22587
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22588
- components:
- - type: Transform
- pos: 72.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22589
- components:
- - type: Transform
- pos: 72.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22590
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 85.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22591
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22593
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 81.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22594
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 81.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22595
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22596
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22597
- components:
- - type: Transform
- pos: -20.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22598
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22599
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22600
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22601
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22602
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22604
- components:
- - type: Transform
- pos: -6.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22605
- components:
- - type: Transform
- pos: -6.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22606
- components:
- - type: Transform
- pos: -6.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22607
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22608
- components:
- - type: Transform
- pos: -10.5,89.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22609
- components:
- - type: Transform
- pos: -28.5,87.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22610
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22611
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22612
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22613
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22614
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22615
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22616
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22617
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22618
- components:
- - type: Transform
- pos: -28.5,82.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasPipeTJunction
- entities:
- - uid: 22619
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22620
- components:
- - type: Transform
- pos: 10.5,81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22621
- components:
- - type: Transform
- pos: -2.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22622
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22623
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22624
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22625
- components:
- - type: Transform
- pos: -20.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22626
- components:
- - type: Transform
- pos: -19.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22627
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22628
- components:
- - type: Transform
- pos: 2.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22629
- components:
- - type: Transform
- pos: 0.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22630
- components:
- - type: Transform
- pos: -19.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22631
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22632
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22633
- components:
- - type: Transform
- pos: -18.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22634
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22635
- components:
- - type: Transform
- pos: -16.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22636
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22637
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22638
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22639
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22640
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22641
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22642
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22643
- components:
- - type: Transform
- pos: -24.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22644
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22645
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22646
- components:
- - type: Transform
- pos: -10.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22647
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22649
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22650
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22651
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22652
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22653
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22654
- components:
- - type: Transform
- pos: -6.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22655
- components:
- - type: Transform
- pos: -9.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22656
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22657
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22658
- components:
- - type: Transform
- pos: -3.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22659
- components:
- - type: Transform
- pos: 33.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22660
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 88.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22662
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22663
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22664
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22665
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22666
- components:
- - type: Transform
- pos: 8.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22667
- components:
- - type: Transform
- pos: 34.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22668
- components:
- - type: Transform
- pos: 58.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22669
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22670
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22671
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22672
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22674
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22675
- components:
- - type: Transform
- pos: 8.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22676
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22677
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22678
- components:
- - type: Transform
- pos: 26.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22679
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22680
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22681
- components:
- - type: Transform
- pos: -31.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22682
- components:
- - type: Transform
- pos: -30.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22683
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22685
- components:
- - type: Transform
- pos: 47.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22686
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22687
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22688
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22689
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22690
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22691
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22692
- components:
- - type: Transform
- pos: 65.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22693
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22694
- components:
- - type: Transform
- pos: 48.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22695
- components:
- - type: Transform
- pos: -18.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22696
- components:
- - type: Transform
- pos: 36.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22697
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22698
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22699
- components:
- - type: Transform
- pos: -54.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22700
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22701
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22702
- components:
- - type: Transform
- pos: 52.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22703
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 82.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22705
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22706
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,16.5
- parent: 2
- - uid: 22708
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22709
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22710
- components:
- - type: Transform
- pos: 48.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22711
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22712
- components:
- - type: Transform
- pos: 53.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22713
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 81.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22715
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22717
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22718
- components:
- - type: Transform
- pos: -50.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22720
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22721
- components:
- - type: Transform
- pos: -53.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22722
- components:
- - type: Transform
- pos: 26.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22723
- components:
- - type: Transform
- pos: 22.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22724
- components:
- - type: Transform
- pos: -64.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22725
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22726
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22727
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22728
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22729
- components:
- - type: Transform
- pos: -56.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22730
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22731
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22732
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22733
- components:
- - type: Transform
- pos: -39.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22734
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22736
- components:
- - type: Transform
- pos: 58.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22737
- components:
- - type: Transform
- pos: 20.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22738
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22740
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22741
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22742
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22743
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22744
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,20.5
- parent: 2
- - uid: 22745
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22746
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22747
- components:
- - type: Transform
- pos: -59.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22749
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22750
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22751
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 22753
- components:
- - type: Transform
- pos: 25.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22754
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22755
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22756
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22758
- components:
- - type: Transform
- pos: -22.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22759
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22760
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22761
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22762
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22763
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22764
- components:
- - type: Transform
- pos: -57.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22765
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22766
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22767
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22769
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22770
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22772
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22773
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22774
- components:
- - type: Transform
- pos: -1.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22776
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22777
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22778
- components:
- - type: Transform
- pos: -1.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22779
- components:
- - type: Transform
- pos: 17.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22780
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22781
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22782
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22783
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22784
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22785
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22786
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22787
- components:
- - type: Transform
- anchored: False
- pos: -19.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 22788
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22789
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22790
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22791
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,20.5
- parent: 2
- - uid: 22792
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 83.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22793
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22794
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22796
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22797
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22798
- components:
- - type: Transform
- pos: 62.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22799
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22800
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22802
- components:
- - type: Transform
- pos: 42.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22804
- components:
- - type: Transform
- pos: 61.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22805
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22806
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22807
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22808
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22809
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22810
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22811
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22812
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22813
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22814
- components:
- - type: Transform
- pos: -56.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22815
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,22.5
- parent: 2
- - uid: 22816
- components:
- - type: Transform
- pos: -70.5,20.5
- parent: 2
- - uid: 22817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,20.5
- parent: 2
- - uid: 22818
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22819
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22820
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22821
- components:
- - type: Transform
- pos: -61.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22822
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22823
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22825
- components:
- - type: Transform
- pos: 11.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22826
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22827
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22828
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22829
- components:
- - type: Transform
- pos: 30.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22830
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22831
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22833
- components:
- - type: Transform
- pos: -6.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22835
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22836
- components:
- - type: Transform
- pos: 0.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22837
- components:
- - type: Transform
- pos: -4.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22838
- components:
- - type: Transform
- pos: -30.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22839
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22840
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22841
-=======
- pos: 19.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21806
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-39.5
- parent: 2
- - uid: 29893
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 94.5,13.5
- parent: 2
- - uid: 34729
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 95.5,13.5
- parent: 2
- - uid: 39032
- components:
- - type: Transform
- pos: -18.5,33.5
- parent: 38344
- - uid: 39033
- components:
- - type: Transform
- pos: -18.5,32.5
- parent: 38344
- - uid: 39034
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,4.5
- parent: 38344
- - uid: 39035
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,2.5
- parent: 38344
- - uid: 39036
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,4.5
- parent: 38344
- - uid: 39037
- components:
- - type: Transform
- pos: 11.5,3.5
- parent: 38344
- - uid: 39038
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,6.5
- parent: 38344
- - uid: 39039
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,2.5
- parent: 38344
- - uid: 39040
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39041
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39042
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39043
- components:
- - type: Transform
- pos: -15.5,-4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39044
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39045
- components:
- - type: Transform
- pos: -13.5,-2.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39046
- components:
- - type: Transform
- pos: -13.5,-1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39047
- components:
- - type: Transform
- pos: -13.5,-0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39048
- components:
- - type: Transform
- pos: -13.5,0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39049
- components:
- - type: Transform
- pos: -13.5,2.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39050
- components:
- - type: Transform
- pos: -11.5,-5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39051
- components:
- - type: Transform
- pos: -11.5,-4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39052
- components:
- - type: Transform
- pos: -11.5,-3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39053
- components:
- - type: Transform
- pos: -11.5,-2.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39054
- components:
- - type: Transform
- pos: -11.5,-1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39055
- components:
- - type: Transform
- pos: -11.5,-0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39056
- components:
- - type: Transform
- pos: -11.5,0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39057
- components:
- - type: Transform
- pos: -11.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39058
- components:
- - type: Transform
- pos: -11.5,2.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39059
- components:
- - type: Transform
- pos: -11.5,4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39060
- components:
- - type: Transform
- pos: -11.5,5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39061
- components:
- - type: Transform
- pos: -11.5,6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39062
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39063
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39064
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39065
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39066
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39067
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,10.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39068
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,10.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39069
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,10.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39070
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,9.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39071
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39072
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,7.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39073
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39074
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39075
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39076
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39077
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39078
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39079
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39080
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39081
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39082
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39083
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39084
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39085
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39086
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39087
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39088
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39089
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39090
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39092
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39093
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39094
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39096
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39097
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39098
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39099
- components:
- - type: Transform
- pos: -1.5,5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39100
- components:
- - type: Transform
- pos: -1.5,4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39101
- components:
- - type: Transform
- pos: -1.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39102
- components:
- - type: Transform
- pos: -1.5,2.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39103
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39104
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39105
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39106
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,7.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39107
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39108
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39109
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39111
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39112
- components:
- - type: Transform
- pos: 10.5,4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39113
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39115
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39116
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39117
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39118
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39119
- components:
- - type: Transform
- pos: 0.5,0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39120
- components:
- - type: Transform
- pos: 0.5,-0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39121
- components:
- - type: Transform
- pos: 0.5,-1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39122
- components:
- - type: Transform
- pos: 0.5,-2.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39123
- components:
- - type: Transform
- pos: 0.5,-3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39124
- components:
- - type: Transform
- pos: 0.5,-5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39125
- components:
- - type: Transform
- pos: 0.5,-6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39126
- components:
- - type: Transform
- pos: 0.5,-7.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39127
- components:
- - type: Transform
- pos: -1.5,-0.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39128
- components:
- - type: Transform
- pos: -1.5,-1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39129
- components:
- - type: Transform
- pos: -1.5,-3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39130
- components:
- - type: Transform
- pos: -1.5,-4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39131
- components:
- - type: Transform
- pos: -1.5,-5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39132
- components:
- - type: Transform
- pos: -1.5,-6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39133
- components:
- - type: Transform
- pos: -1.5,-7.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39134
- components:
- - type: Transform
- pos: -1.5,-8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39135
- components:
- - type: Transform
- pos: -2.5,2.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39136
- components:
- - type: Transform
- pos: -2.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasPipeTJunction
- entities:
- - uid: 18751
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 92.5,13.5
- parent: 2
- - uid: 21807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 83.5,10.5
- parent: 2
- - uid: 21808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,18.5
- parent: 2
- - uid: 21809
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21810
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21811
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21813
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 21814
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21815
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21816
- components:
- - type: Transform
- pos: -3.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21818
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21819
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21820
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21821
- components:
- - type: Transform
- pos: 21.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21822
- components:
- - type: Transform
- pos: 35.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21823
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21825
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21827
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21828
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21829
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21830
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21831
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21833
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21835
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21836
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21837
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21838
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21839
- components:
- - type: Transform
- pos: -62.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21840
- components:
- - type: Transform
- pos: -71.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21841
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21842
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21843
- components:
- - type: Transform
- pos: -47.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21844
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21845
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21846
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21847
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21848
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21849
- components:
- - type: Transform
- pos: -59.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21850
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21851
- components:
- - type: Transform
- pos: -68.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21852
- components:
- - type: Transform
- pos: -70.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21854
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21855
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21856
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21857
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21858
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21859
- components:
- - type: Transform
- pos: -31.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21860
- components:
- - type: Transform
- pos: -32.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21861
- components:
- - type: Transform
- pos: -29.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21862
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21863
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21864
- components:
- - type: Transform
- pos: -28.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21865
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21866
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21867
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21868
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21869
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21870
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21871
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21872
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21873
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21874
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21875
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21876
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21877
- components:
- - type: Transform
- pos: -12.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21878
- components:
- - type: Transform
- pos: -13.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21879
- components:
- - type: Transform
- pos: -9.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21880
- components:
- - type: Transform
- pos: -6.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21881
- components:
- - type: Transform
- pos: -5.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21882
- components:
- - type: Transform
- pos: -1.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21883
- components:
- - type: Transform
- pos: 0.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21884
- components:
- - type: Transform
- pos: -0.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21885
- components:
- - type: Transform
- pos: 5.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21886
- components:
- - type: Transform
- pos: 4.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21887
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21888
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21889
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21890
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21891
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21893
- components:
- - type: Transform
- pos: -3.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21894
- components:
- - type: Transform
- pos: 0.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21895
- components:
- - type: Transform
- pos: -1.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21896
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21897
- components:
- - type: Transform
- pos: 2.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21898
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21899
- components:
- - type: Transform
- pos: -9.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21900
- components:
- - type: Transform
- pos: -13.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21901
- components:
- - type: Transform
- pos: -0.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21902
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21903
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21904
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21905
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21906
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21907
- components:
- - type: Transform
- pos: 22.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21908
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21909
- components:
- - type: Transform
- pos: 26.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21910
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21911
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21913
- components:
- - type: Transform
- pos: 10.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21914
- components:
- - type: Transform
- pos: 8.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21915
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21916
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21917
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21918
- components:
- - type: Transform
- pos: -9.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21919
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21920
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21921
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21922
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21923
- components:
- - type: Transform
- pos: -0.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21924
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21925
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21926
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21927
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21929
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21930
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21931
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21932
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21933
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21934
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21935
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21937
- components:
- - type: Transform
- pos: -30.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21938
- components:
- - type: Transform
- pos: -19.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21939
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21940
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21941
- components:
- - type: Transform
- pos: -17.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21942
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21943
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21944
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21945
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21946
- components:
- - type: Transform
- pos: -7.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21949
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21950
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21951
- components:
- - type: Transform
- pos: -33.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21952
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21953
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21954
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21955
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21956
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21957
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21958
- components:
- - type: Transform
- pos: -14.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21959
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21960
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21961
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21962
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21963
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21964
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21965
- components:
- - type: Transform
- pos: -5.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21966
- components:
- - type: Transform
- pos: -3.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21967
- components:
- - type: Transform
- pos: -17.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21968
- components:
- - type: Transform
- pos: -19.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21969
- components:
- - type: Transform
- pos: -15.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21970
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21972
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21973
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21974
- components:
- - type: Transform
- pos: -1.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21975
- components:
- - type: Transform
- pos: -24.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21976
- components:
- - type: Transform
- pos: 6.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21977
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21978
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21979
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21980
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21981
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21982
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21983
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21984
- components:
- - type: Transform
- pos: 9.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21985
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21986
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21987
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21988
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21989
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21991
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21992
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21993
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21994
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21995
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21996
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 21997
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21998
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 21999
- components:
- - type: Transform
- pos: 31.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22000
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22001
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22002
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22003
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22004
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22005
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22006
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22007
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22008
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22011
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22012
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22013
- components:
- - type: Transform
- pos: 52.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22014
- components:
- - type: Transform
- pos: 46.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22015
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22016
- components:
- - type: Transform
- pos: 47.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22017
- components:
- - type: Transform
- pos: 52.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22018
- components:
- - type: Transform
- pos: 57.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22019
- components:
- - type: Transform
- pos: 61.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22020
- components:
- - type: Transform
- pos: 52.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22021
- components:
- - type: Transform
- pos: 61.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22022
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22023
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22024
- components:
- - type: Transform
- pos: 83.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22025
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22026
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22027
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22028
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22029
- components:
- - type: Transform
- pos: 57.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22030
- components:
- - type: Transform
- pos: 25.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22031
- components:
- - type: Transform
- pos: 39.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22032
- components:
- - type: Transform
- pos: 34.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22033
- components:
- - type: Transform
- pos: 44.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22034
- components:
- - type: Transform
- pos: 48.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22035
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22036
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22037
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22038
- components:
- - type: Transform
- pos: 57.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22039
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22040
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22041
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22042
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22043
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22044
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22045
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22046
- components:
- - type: Transform
- pos: 12.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22047
- components:
- - type: Transform
- pos: 11.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22048
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22049
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22050
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22051
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22052
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22053
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22054
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22055
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22056
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22057
- components:
- - type: Transform
- pos: 21.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22058
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22059
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22060
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22061
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22062
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22063
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22064
- components:
- - type: Transform
- pos: 26.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22065
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22066
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22067
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22068
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22069
- components:
- - type: Transform
- pos: -14.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22071
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22072
- components:
- - type: Transform
- pos: -7.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22073
- components:
- - type: Transform
- pos: -6.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22074
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22075
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22076
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22077
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22078
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22079
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22080
- components:
- - type: Transform
- pos: -16.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22081
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22082
- components:
- - type: Transform
- pos: -19.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22083
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22084
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22085
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22086
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22087
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22088
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22089
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22091
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22092
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22093
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22094
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22096
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22097
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22098
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22099
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22100
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22101
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22102
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22103
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22104
- components:
- - type: Transform
- pos: -6.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22105
- components:
- - type: Transform
- pos: -1.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22106
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22107
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22108
->>>>>>> master
- components:
- - type: Transform
- pos: -16.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
-<<<<<<< HEAD
- - uid: 22842
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22843
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22844
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22845
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22846
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22847
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22848
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22850
- components:
- - type: Transform
- pos: 8.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22851
- components:
- - type: Transform
- pos: -3.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22852
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22853
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22854
- components:
- - type: Transform
- pos: -7.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22855
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22857
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22858
- components:
- - type: Transform
- pos: 18.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22859
- components:
- - type: Transform
- pos: 13.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22860
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22861
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22862
- components:
- - type: Transform
- pos: 29.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22863
- components:
- - type: Transform
- pos: 16.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22864
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22865
- components:
- - type: Transform
- pos: -23.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22866
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22867
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22868
- components:
- - type: Transform
- pos: 8.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22869
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22870
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22871
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22872
- components:
- - type: Transform
- pos: 44.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22873
- components:
- - type: Transform
- pos: -9.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22874
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22875
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22876
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 22877
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22878
- components:
- - type: Transform
- pos: 69.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22879
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22880
- components:
- - type: Transform
- pos: 7.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22881
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22882
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22883
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22884
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22885
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22886
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22887
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22888
- components:
- - type: Transform
- pos: -13.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22889
- components:
- - type: Transform
- pos: 22.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22890
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22891
- components:
- - type: Transform
- pos: 53.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22892
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22894
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22895
- components:
- - type: Transform
- pos: 17.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22897
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22898
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22899
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22900
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22901
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22902
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22903
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22906
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22907
- components:
- - type: Transform
- pos: -15.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22908
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22909
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22910
- components:
- - type: Transform
- pos: 5.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22911
- components:
- - type: Transform
- pos: 49.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22913
- components:
- - type: Transform
- pos: -12.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22914
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22915
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22916
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22917
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22918
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22919
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22920
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22921
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22922
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22923
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22924
- components:
- - type: Transform
- pos: 12.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22925
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22926
- components:
- - type: Transform
- pos: 45.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22927
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22929
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22930
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22932
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22935
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22937
- components:
- - type: Transform
- pos: 17.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22938
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22939
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 22940
- components:
- - type: Transform
- pos: 23.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22941
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22942
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22943
- components:
- - type: Transform
- pos: 27.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22944
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22945
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22946
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 22947
- components:
- - type: Transform
- pos: 65.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22949
- components:
- - type: Transform
- pos: 12.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22950
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22951
- components:
- - type: Transform
- pos: 28.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22952
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22953
- components:
- - type: Transform
- pos: 11.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22954
- components:
- - type: Transform
- pos: 6.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22955
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22956
- components:
- - type: Transform
- pos: 29.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22957
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22958
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22959
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22960
- components:
- - type: Transform
- pos: 26.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22961
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22962
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22963
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22964
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22965
- components:
- - type: Transform
- pos: -15.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22966
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22967
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22968
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22969
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22970
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22973
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22974
- components:
- - type: Transform
- pos: 15.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22975
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22976
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22977
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22978
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22979
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22980
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22981
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22982
-=======
- - uid: 22109
- components:
- - type: Transform
- pos: -22.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22110
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22111
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22113
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -119.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -119.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22116
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22117
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22118
- components:
- - type: Transform
- pos: -20.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22119
- components:
- - type: Transform
- pos: -16.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22120
- components:
- - type: Transform
- pos: 1.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22121
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22122
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22123
- components:
- - type: Transform
- pos: 85.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22124
- components:
- - type: Transform
- pos: 89.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22125
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22126
- components:
- - type: Transform
- pos: 22.5,-38.5
- parent: 2
- - uid: 22127
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-38.5
- parent: 2
- - uid: 22128
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-38.5
- parent: 2
- - uid: 22129
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-40.5
- parent: 2
- - uid: 39137
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39138
- components:
- - type: Transform
- pos: -8.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39139
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39140
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39141
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,7.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39142
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39143
- components:
- - type: Transform
- pos: -2.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39144
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39145
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39146
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39147
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39148
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-2.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasPort
- entities:
- - uid: 22130
- components:
- - type: Transform
- pos: -62.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 22131
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -120.5,17.5
- parent: 2
- - uid: 22132
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -122.5,17.5
- parent: 2
- - uid: 22133
- components:
- - type: Transform
- pos: 78.5,23.5
- parent: 2
- - uid: 22134
- components:
- - type: Transform
- pos: 77.5,23.5
- parent: 2
- - uid: 22135
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-45.5
- parent: 2
- - uid: 22136
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-38.5
- parent: 2
- - uid: 22137
- components:
- - type: Transform
- pos: -36.5,-50.5
- parent: 2
- - uid: 22138
- components:
- - type: Transform
- pos: -37.5,-50.5
- parent: 2
- - uid: 22139
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-43.5
- parent: 2
- - uid: 22140
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-40.5
- parent: 2
- - uid: 22141
- components:
- - type: Transform
- pos: -26.5,-53.5
- parent: 2
- - uid: 22142
- components:
- - type: Transform
- pos: -27.5,-53.5
- parent: 2
- - uid: 22143
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-53.5
- parent: 2
- - uid: 22144
- components:
- - type: Transform
- pos: -24.5,-52.5
- parent: 2
- - uid: 22145
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-54.5
- parent: 2
- - uid: 22146
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-32.5
- parent: 2
- - uid: 22147
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-30.5
- parent: 2
- - uid: 22148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-53.5
- parent: 2
- - uid: 22149
- components:
- - type: Transform
- pos: -33.5,-44.5
- parent: 2
- - uid: 22150
- components:
- - type: Transform
- pos: -22.5,-51.5
- parent: 2
- - uid: 22151
- components:
- - type: Transform
- pos: -38.5,-50.5
- parent: 2
- - uid: 22152
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-53.5
- parent: 2
- - uid: 22153
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-53.5
- parent: 2
- - uid: 22154
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-52.5
- parent: 2
- - uid: 22155
- components:
- - type: Transform
- pos: -28.5,-53.5
- parent: 2
- - uid: 22156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-40.5
- parent: 2
- - uid: 22157
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-40.5
- parent: 2
- - uid: 39149
- components:
- - type: Transform
- pos: -18.5,36.5
- parent: 38344
-- proto: GasPressurePump
- entities:
- - uid: 22158
- components:
- - type: Transform
- pos: -61.5,59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 22159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22160
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22161
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,21.5
- parent: 2
- - type: GasPressurePump
- targetPressure: 420
- - uid: 22162
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22164
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22165
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-52.5
- parent: 2
- - uid: 22167
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-52.5
- parent: 2
- - uid: 22168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22172
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22175
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22176
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22177
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22178
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22179
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22180
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 22181
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22182
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 39150
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39151
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,2.5
- parent: 38344
- - uid: 39152
- components:
- - type: Transform
- pos: -18.5,35.5
- parent: 38344
- - uid: 39153
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,4.5
- parent: 38344
-- proto: GasThermoMachineFreezer
- entities:
- - uid: 22183
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,21.5
- parent: 2
- - uid: 22184
- components:
- - type: Transform
- pos: -58.5,37.5
- parent: 2
- - uid: 22185
- components:
- - type: Transform
- pos: -43.5,48.5
- parent: 2
- - uid: 22186
- components:
- - type: Transform
- pos: -18.5,-49.5
- parent: 2
- - uid: 22187
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-54.5
- parent: 2
- - uid: 22188
- components:
- - type: Transform
- pos: 24.5,-37.5
- parent: 2
- - uid: 22189
- components:
- - type: Transform
- pos: -29.5,-25.5
- parent: 2
- - uid: 22190
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-54.5
- parent: 2
-- proto: GasThermoMachineHeater
- entities:
- - uid: 22191
- components:
- - type: Transform
- pos: -61.5,61.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 57
- - type: AtmosPipeColor
- color: '#A505FAFF'
- - uid: 22192
- components:
- - type: Transform
- pos: -44.5,48.5
- parent: 2
- - uid: 22193
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-54.5
- parent: 2
- - uid: 22194
- components:
- - type: Transform
- pos: -58.5,38.5
- parent: 2
-- proto: GasValve
- entities:
- - uid: 22195
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasVentPump
- entities:
- - uid: 22196
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,18.5
- parent: 2
- - uid: 22197
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 74
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22198
- components:
- - type: Transform
- pos: -16.5,38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 74
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 55
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 55
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22201
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 55
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22202
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,18.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - 59
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 71
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22204
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 87
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22205
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22206
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,17.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22207
- components:
- - type: Transform
- pos: 92.5,19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 96
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-75.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-74.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22210
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-74.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22211
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-69.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22212
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-69.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22213
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 112
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22214
- components:
- - type: Transform
- pos: -15.5,-64.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 114
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22215
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-65.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 114
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22216
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22217
- components:
- - type: Transform
- pos: -20.5,-79.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 115
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-80.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 115
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22219
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-58.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 112
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22220
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-46.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 112
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22221
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 86
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22222
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22223
- components:
- - type: Transform
- pos: -5.5,-32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22224
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 108
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22225
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-52.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 109
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22226
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-57.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 109
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22227
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 107
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-46.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 107
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22229
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 107
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22230
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22231
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 104
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22232
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 105
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22233
- components:
- - type: Transform
- pos: -27.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 104
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22234
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-51.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 110
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22235
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 116
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22236
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22237
- components:
- - type: Transform
- pos: 5.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 116
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22238
- components:
- - type: Transform
- pos: 12.5,-37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 119
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22239
- components:
- - type: Transform
- pos: 7.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 119
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22240
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 120
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22241
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 119
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22242
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 39
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 39
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22244
->>>>>>> master
- components:
- - type: Transform
- pos: 20.5,-34.5
- parent: 2
-<<<<<<< HEAD
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22983
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22984
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22985
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22986
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22987
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22988
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22989
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22990
- components:
- - type: Transform
- pos: -52.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22991
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22992
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22993
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22994
- components:
- - type: Transform
- pos: -26.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22995
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22996
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22997
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22998
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 22999
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23001
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23002
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23003
- components:
- - type: Transform
- pos: 10.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23005
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23006
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23007
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-38.5
- parent: 2
- - uid: 23008
- components:
- - type: Transform
- pos: 22.5,-38.5
- parent: 2
- - uid: 23009
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-38.5
- parent: 2
- - uid: 23010
- components:
- - type: Transform
- pos: -24.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23011
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23012
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23013
- components:
- - type: Transform
- pos: -52.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23014
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23015
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,23.5
- parent: 2
- - uid: 23016
- components:
- - type: Transform
- pos: -55.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23017
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23018
- components:
- - type: Transform
- pos: -14.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23019
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23020
- components:
- - type: Transform
- pos: -23.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23021
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 23022
- components:
- - type: Transform
- pos: -34.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23023
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23024
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23025
- components:
- - type: Transform
- pos: -70.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23026
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23027
- components:
- - type: Transform
- pos: -51.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23028
- components:
- - type: Transform
- pos: -46.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23029
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23030
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23031
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23032
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23033
- components:
- - type: Transform
- pos: -60.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23034
- components:
- - type: Transform
- pos: -67.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 23035
- components:
- - type: Transform
- pos: -22.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23036
- components:
- - type: Transform
- pos: -57.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23037
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#00000000'
- - uid: 23038
- components:
- - type: Transform
- pos: -46.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23039
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23040
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23041
- components:
- - type: Transform
- pos: 77.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23042
- components:
- - type: Transform
- pos: -27.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23043
- components:
- - type: Transform
- pos: -63.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23044
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23045
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23046
- components:
- - type: Transform
- pos: -67.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23047
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23048
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23049
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23050
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23051
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23052
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23053
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23054
- components:
- - type: Transform
- pos: -18.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23055
- components:
- - type: Transform
- pos: 8.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23056
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23057
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23058
- components:
- - type: Transform
- pos: 14.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23059
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23060
- components:
- - type: Transform
- pos: -36.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23061
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23062
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23063
- components:
- - type: Transform
- pos: -56.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23064
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23065
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23066
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23067
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23068
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23069
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23070
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23071
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23072
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23073
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23074
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23075
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23076
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23077
- components:
- - type: Transform
- pos: -38.5,57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23078
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23079
- components:
- - type: Transform
- pos: -59.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23080
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23081
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23082
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23083
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23084
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23085
- components:
- - type: Transform
- pos: -48.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23086
- components:
- - type: Transform
- pos: 2.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23087
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23088
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23089
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,23.5
- parent: 2
- - uid: 23090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23091
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23092
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23093
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23094
- components:
- - type: Transform
- pos: 19.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23095
- components:
- - type: Transform
- pos: -11.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23096
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23097
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23098
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23099
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23100
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23101
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23102
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23103
- components:
- - type: Transform
- pos: 10.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23104
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23105
- components:
- - type: Transform
- pos: -9.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23106
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23107
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23108
- components:
- - type: Transform
- pos: -67.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 23109
- components:
- - type: Transform
- pos: -75.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23110
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-40.5
- parent: 2
- - uid: 23111
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23112
- components:
- - type: Transform
- pos: -18.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23113
- components:
- - type: Transform
- pos: -65.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23114
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23115
- components:
- - type: Transform
- pos: -29.5,67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23116
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23117
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23118
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23119
- components:
- - type: Transform
- pos: -0.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23120
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23121
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23123
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23124
- components:
- - type: Transform
- anchored: False
- pos: 19.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 23125
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23126
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23127
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23128
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23129
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23130
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 87.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23131
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23132
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23133
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23134
- components:
- - type: Transform
- pos: 6.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23135
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23136
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23137
- components:
- - type: Transform
- pos: 1.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23138
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23139
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23140
- components:
- - type: Transform
- pos: 2.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23141
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23142
- components:
- - type: Transform
- pos: -53.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23143
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23144
- components:
- - type: Transform
- pos: -67.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23145
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23146
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23147
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23148
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -119.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23149
- components:
- - type: Transform
- pos: 37.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23150
- components:
- - type: Transform
- pos: 33.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23151
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23152
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -119.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23153
- components:
- - type: Transform
- pos: 83.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23154
- components:
- - type: Transform
- pos: 84.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23155
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23156
- components:
- - type: Transform
- pos: -6.5,69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23157
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23158
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasPort
- entities:
- - uid: 23159
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,16.5
- parent: 2
- - uid: 23160
- components:
- - type: Transform
- pos: -62.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23161
- components:
- - type: Transform
- pos: -61.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23162
- components:
- - type: Transform
- pos: -63.5,21.5
- parent: 2
- - uid: 23163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,17.5
- parent: 2
- - uid: 23164
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,18.5
- parent: 2
- - uid: 23165
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,15.5
- parent: 2
- - uid: 23166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -120.5,17.5
- parent: 2
- - uid: 23167
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -122.5,17.5
- parent: 2
- - uid: 23168
- components:
- - type: Transform
- pos: 78.5,23.5
- parent: 2
- - uid: 23169
- components:
- - type: Transform
- pos: 77.5,23.5
- parent: 2
- - uid: 23170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-45.5
- parent: 2
- - uid: 23171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-38.5
- parent: 2
- - uid: 23172
- components:
- - type: Transform
- pos: -36.5,-50.5
- parent: 2
- - uid: 23173
- components:
- - type: Transform
- pos: -37.5,-50.5
- parent: 2
- - uid: 23174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-43.5
- parent: 2
- - uid: 23175
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-40.5
- parent: 2
- - uid: 23177
- components:
- - type: Transform
- pos: -26.5,-53.5
- parent: 2
- - uid: 23178
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23179
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23180
- components:
- - type: Transform
- pos: 40.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23181
- components:
- - type: Transform
- pos: 38.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23182
- components:
- - type: Transform
- pos: -27.5,-53.5
- parent: 2
- - uid: 23183
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-53.5
- parent: 2
- - uid: 23184
- components:
- - type: Transform
- pos: -24.5,-52.5
- parent: 2
- - uid: 23185
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-54.5
- parent: 2
- - uid: 23186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,22.5
- parent: 2
- - uid: 23187
- components:
- - type: Transform
- pos: 39.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23188
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-32.5
- parent: 2
- - uid: 23189
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-30.5
- parent: 2
- - uid: 23190
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23191
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-53.5
- parent: 2
- - uid: 23192
- components:
- - type: Transform
- pos: -33.5,-44.5
- parent: 2
- - uid: 23193
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-40.5
- parent: 2
- - uid: 23194
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,22.5
- parent: 2
- - uid: 23195
- components:
- - type: Transform
- pos: 41.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23196
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23197
- components:
- - type: Transform
- pos: -22.5,-51.5
- parent: 2
- - uid: 23198
- components:
- - type: Transform
- pos: -38.5,-50.5
- parent: 2
- - uid: 23199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-53.5
- parent: 2
- - uid: 23200
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-53.5
- parent: 2
- - uid: 23201
- components:
- - type: Transform
- pos: -70.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23202
- components:
- - type: Transform
- pos: -71.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23203
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,22.5
- parent: 2
- - uid: 23204
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-52.5
- parent: 2
- - uid: 23205
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,22.5
- parent: 2
- - uid: 23206
- components:
- - type: Transform
- pos: -28.5,-53.5
- parent: 2
- - uid: 23207
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-40.5
- parent: 2
-- proto: GasPressurePump
- entities:
- - uid: 23208
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,33.5
- parent: 2
- - type: GasPressurePump
- targetPressure: 4500
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23211
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23212
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,21.5
- parent: 2
- - type: GasPressurePump
- targetPressure: 420
- - uid: 23213
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23214
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23215
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 23216
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23217
-=======
- - type: DeviceNetwork
- deviceLists:
- - 37
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22245
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 39
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22246
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-51.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 38
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22247
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 38
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22248
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 37
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22249
- components:
- - type: Transform
- pos: 29.5,-30.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 37
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22250
- components:
- - type: Transform
- pos: 36.5,-29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 37
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22251
- components:
- - type: Transform
- pos: 8.5,-15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 32
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22252
- components:
- - type: Transform
- pos: 13.5,-14.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 32
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22253
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 83
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22254
- components:
- - type: Transform
- pos: 28.5,-1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 83
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 117
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22256
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 64
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22257
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-14.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 32
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22258
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 64
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 64
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22260
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 64
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22261
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 64
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22262
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 67
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22263
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 122
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22264
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-16.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 123
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22265
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 123
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22266
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 65
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22267
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 65
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22268
- components:
- - type: Transform
- pos: -14.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 65
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22269
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22270
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 63
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22271
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 63
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22272
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-12.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 63
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22273
- components:
- - type: Transform
- pos: -11.5,15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 51
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22274
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,2.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 66
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22275
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 66
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22276
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22277
- components:
- - type: Transform
- pos: 46.5,-15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 99
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22278
- components:
- - type: Transform
- pos: 57.5,-15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 100
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22279
- components:
- - type: Transform
- pos: 61.5,-15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 100
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22280
- components:
- - type: Transform
- pos: 22.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 84
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22281
- components:
- - type: Transform
- pos: 29.5,10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 84
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22282
- components:
- - type: Transform
- pos: 37.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22283
- components:
- - type: Transform
- pos: 36.5,11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22284
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22285
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22286
- components:
- - type: Transform
- pos: 52.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 87
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,12.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22288
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,17.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22289
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,20.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 89
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22290
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 90
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22291
- components:
- - type: Transform
- pos: 64.5,26.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 90
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22292
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22293
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.5,10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 96
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22294
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.5,13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 96
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22295
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 93
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22296
- components:
- - type: Transform
- pos: 73.5,22.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 93
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22297
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 111
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22298
- components:
- - type: Transform
- pos: 8.5,23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 94
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22299
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 78
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22300
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 78
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22301
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 78
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22302
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22303
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,27.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 82
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22304
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,27.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 82
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22305
- components:
- - type: Transform
- pos: 35.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 82
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22306
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 81
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22307
- components:
- - type: Transform
- pos: 28.5,42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 81
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22308
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22309
- components:
- - type: Transform
- pos: 24.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22310
- components:
- - type: Transform
- pos: 31.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22311
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,53.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22312
- components:
- - type: Transform
- pos: -9.5,23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 94
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22313
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 70
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22314
- components:
- - type: Transform
- pos: -29.5,42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 71
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22315
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,40.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 53
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22316
- components:
- - type: Transform
- pos: -2.5,38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 53
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22317
- components:
- - type: Transform
- pos: -28.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 72
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22318
- components:
- - type: Transform
- pos: -25.5,53.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 72
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22319
- components:
- - type: Transform
- pos: -12.5,49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 76
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,57.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 124
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22321
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,60.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 73
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22322
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,60.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 75
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22323
- components:
- - type: Transform
- pos: 2.5,62.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 75
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22324
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,52.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 76
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22325
- components:
- - type: Transform
- pos: -7.5,68.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 75
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22326
- components:
- - type: Transform
- pos: -21.5,68.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 73
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22327
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,90.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 73
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22328
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,77.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 125
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22329
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,64.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 75
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22330
- components:
- - type: Transform
- pos: 11.5,77.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 77
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22331
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,77.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 77
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22332
- components:
- - type: Transform
- pos: -25.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 52
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22333
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 52
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22334
- components:
- - type: Transform
- pos: -35.5,12.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 52
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22335
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22336
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 59
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22337
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 59
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22338
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 59
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22339
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 61
- - 41
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22340
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 61
- - 41
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22341
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 41
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22342
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 41
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22343
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 41
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22344
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22345
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,-13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22346
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22347
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22348
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 60
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22349
- components:
- - type: Transform
- pos: -66.5,-5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 60
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22350
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 60
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22351
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 82
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22352
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-40.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 108
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22353
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-30.5
- parent: 2
- - uid: 22354
- components:
- - type: Transform
- pos: 39.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22355
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-30.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 37
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22356
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-52.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 109
- - uid: 22357
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22358
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -123.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22359
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22360
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22361
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -115.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22362
- components:
- - type: Transform
- pos: -119.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22363
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 77.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22364
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22365
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22366
- components:
- - type: Transform
- pos: 72.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22367
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 51
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22369
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22370
- components:
- - type: Transform
- pos: 84.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 33
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 22371
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 96.5,2.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 95
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 37654
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 96.5,13.5
- parent: 2
- - uid: 39154
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,31.5
- parent: 38344
- - uid: 39155
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-4.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39156
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39157
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38345
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39158
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,6.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39160
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,3.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38346
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39161
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,9.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 39162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,1.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasVentScrubber
- entities:
- - uid: 22372
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 93
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22373
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 76
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22374
- components:
- - type: Transform
- pos: -20.5,38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 74
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22376
- components:
- - type: Transform
- pos: -24.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 104
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22377
- components:
- - type: Transform
- pos: 3.5,17.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 51
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22378
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 65
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22379
- components:
- - type: Transform
- pos: -71.5,-5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 60
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22380
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 51
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22381
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 116
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22382
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,17.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22383
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 59
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22384
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 41
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22385
- components:
- - type: Transform
- pos: -76.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 41
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22386
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 41
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22387
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-2.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 41
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22388
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 60
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22389
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 60
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22390
- components:
- - type: Transform
- pos: -57.5,-7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22391
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,-14.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-14.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22393
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22394
- components:
- - type: Transform
- pos: -46.5,2.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 62
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22395
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22396
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22397
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22398
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 59
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22399
- components:
- - type: Transform
- pos: -55.5,6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 59
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 68
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22401
- components:
- - type: Transform
- pos: -38.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 52
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22402
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 63
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22403
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 63
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22404
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 63
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22405
- components:
- - type: Transform
- pos: -23.5,1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 63
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22406
- components:
- - type: Transform
- pos: -24.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 52
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22407
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 36
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22408
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 123
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22409
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 123
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22410
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-13.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 67
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22411
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 64
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22412
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 32
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22413
- components:
- - type: Transform
- pos: 8.5,-19.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 121
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22414
- components:
- - type: Transform
- pos: -23.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22415
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 94
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22416
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22417
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 111
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22418
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 83
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22419
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 83
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22420
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-14.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 97
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22421
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22422
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 99
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22423
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 99
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22424
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 99
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22425
- components:
- - type: Transform
- pos: 52.5,-15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 99
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22426
- components:
- - type: Transform
- pos: 47.5,-15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 99
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22427
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 100
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22428
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 100
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22429
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 32
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22430
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22431
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 65
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22432
- components:
- - type: Transform
- pos: 10.5,9.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 66
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22433
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 66
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22434
- components:
- - type: Transform
- pos: 8.5,-3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 66
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22435
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 78
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22436
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 78
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22437
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,41.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 78
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22438
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22439
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 82
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22440
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22441
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22442
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22443
- components:
- - type: Transform
- pos: 10.5,44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 78
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22444
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 91
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22445
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,27.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 71
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22446
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 71
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22447
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 70
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22448
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 53
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22449
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 72
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22450
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,47.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 72
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22451
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 53
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22452
- components:
- - type: Transform
- pos: -5.5,53.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 76
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22453
- components:
- - type: Transform
- pos: -11.5,53.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 76
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22454
- components:
- - type: Transform
- pos: -8.5,57.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 124
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22455
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,52.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 76
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22456
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,65.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 75
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22457
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,68.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 75
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22458
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22459
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,84.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 77
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22460
- components:
- - type: Transform
- pos: 10.5,86.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 77
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22461
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,90.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 125
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22462
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,68.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 73
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22463
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,65.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 73
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22464
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,77.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 73
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22465
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,63.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 73
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22466
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 83
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22468
- components:
- - type: Transform
- pos: 43.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22469
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,0.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22470
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22471
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22472
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22473
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22474
- components:
- - type: Transform
- pos: 40.5,12.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22475
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,12.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22476
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,8.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 85
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22477
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 87
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22478
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,20.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 89
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22479
- components:
- - type: Transform
- pos: 51.5,24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 90
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22480
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 87
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22481
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22482
- components:
- - type: Transform
- pos: 74.5,22.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 93
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 116
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22484
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 37
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22485
- components:
- - type: Transform
- pos: 21.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 37
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22486
- components:
- - type: Transform
- pos: 11.5,-37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 119
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22487
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 119
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22488
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 120
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22489
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 39
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22490
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 39
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22491
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-51.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 39
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22492
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -66.5,45.5
- parent: 2
- - type: GasPressurePump
- targetPressure: 4500
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 23218
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23219
-=======
- rot: -1.5707963267948966 rad
- pos: 29.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 37
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22493
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 38
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22494
->>>>>>> master
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -66.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#00000000'
- - uid: 23220
-=======
- pos: 31.5,-49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 38
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22495
->>>>>>> master
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -47.5,28.5
- parent: 2
- - type: GasPressurePump
- targetPressure: 250
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23221
-=======
- pos: -7.5,-24.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22496
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -65.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 23222
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23223
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23224
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-52.5
- parent: 2
- - uid: 23225
-=======
- rot: 3.141592653589793 rad
- pos: -18.5,-25.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 106
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22497
- components:
- - type: Transform
- pos: -4.5,-32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22498
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-40.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 108
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22499
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22500
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -66.5,49.5
- parent: 2
- - type: GasPressurePump
- targetPressure: 4500
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23226
-=======
- rot: 3.141592653589793 rad
- pos: -14.5,-51.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 109
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22501
->>>>>>> master
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -65.5,50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 23227
-=======
- pos: -18.5,-57.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 109
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22502
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- pos: -63.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#00000000'
- - uid: 23228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-39.5
- parent: 2
- - uid: 23229
-=======
- rot: 1.5707963267948966 rad
- pos: -19.5,-50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 109
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22503
->>>>>>> master
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -65.5,32.5
- parent: 2
- - uid: 23230
- components:
- - type: MetaData
- name: Mix to Mix Tank
- - type: Transform
- pos: -64.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#00000000'
- - uid: 23231
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-52.5
- parent: 2
- - uid: 23232
-=======
- pos: -18.5,-38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 107
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22504
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- pos: -60.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23233
-=======
- pos: -21.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 104
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22505
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -65.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 23234
-=======
- rot: -1.5707963267948966 rad
- pos: -22.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 106
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22506
->>>>>>> master
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
-<<<<<<< HEAD
- pos: -65.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23235
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 23236
-=======
- pos: -31.5,-45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 105
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22507
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 104
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22508
->>>>>>> master
- components:
- - type: Transform
- rot: 3.141592653589793 rad
-<<<<<<< HEAD
- pos: -46.5,30.5
- parent: 2
- - type: GasPressurePump
- targetPressure: 0
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasThermoMachineFreezer
- entities:
- - uid: 23237
- components:
- - type: Transform
- pos: -47.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23238
- components:
- - type: Transform
- pos: -64.5,21.5
- parent: 2
- - uid: 23239
- components:
- - type: Transform
- pos: -62.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23240
- components:
- - type: Transform
- pos: -43.5,48.5
- parent: 2
- - uid: 23241
- components:
- - type: Transform
- pos: -64.5,60.5
- parent: 2
- - uid: 23242
- components:
- - type: Transform
- pos: -18.5,-49.5
- parent: 2
- - uid: 23243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-54.5
- parent: 2
- - uid: 23244
- components:
- - type: Transform
- pos: 24.5,-37.5
- parent: 2
- - uid: 23245
- components:
- - type: Transform
- pos: -29.5,-25.5
- parent: 2
- - uid: 23246
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-54.5
- parent: 2
-- proto: GasThermoMachineHeater
- entities:
- - uid: 23247
- components:
- - type: Transform
- pos: -65.5,21.5
- parent: 2
- - uid: 23248
- components:
- - type: Transform
- pos: -49.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23249
- components:
- - type: Transform
- pos: -44.5,48.5
- parent: 2
- - uid: 23250
- components:
- - type: Transform
- pos: -63.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23251
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-54.5
- parent: 2
-- proto: GasValve
- entities:
- - uid: 23252
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,19.5
- parent: 2
- - type: GasValve
- open: False
- - uid: 23253
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,20.5
- parent: 2
- - type: GasValve
- open: False
- - uid: 23254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,30.5
- parent: 2
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23256
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 23257
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23258
- components:
- - type: Transform
- pos: -64.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23259
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,21.5
- parent: 2
- - type: GasValve
- open: False
- - uid: 23260
- components:
- - type: Transform
- pos: -70.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23261
- components:
- - type: Transform
- pos: -71.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23262
- components:
- - type: Transform
- pos: -66.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
- - uid: 23263
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,44.5
- parent: 2
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23264
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,23.5
- parent: 2
- - type: GasValve
- open: False
- - uid: 23265
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,29.5
- parent: 2
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23266
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasVentPump
- entities:
- - uid: 23267
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23268
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23269
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,78.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 161
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23270
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,77.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 160
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23271
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,57.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 163
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23272
- components:
- - type: Transform
- pos: -4.5,68.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 120
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23273
- components:
- - type: Transform
- pos: -7.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23274
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23275
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,81.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 162
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23276
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 159
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23277
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23278
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23279
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-81.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23280
- components:
- - type: Transform
- pos: 40.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23281
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23282
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23283
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23284
- components:
- - type: Transform
- pos: -19.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23285
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23286
- components:
- - type: Transform
- pos: 57.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23287
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23288
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23289
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23290
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23291
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23292
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23293
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23294
- components:
- - type: Transform
- pos: -58.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23295
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23296
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23297
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23298
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23299
- components:
- - type: Transform
- pos: -59.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23300
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23301
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23302
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23303
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23304
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23305
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23306
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23307
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-40.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23308
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 91.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23309
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23310
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23311
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23312
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23313
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23314
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 38
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23315
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23317
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23318
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23319
- components:
- - type: Transform
- pos: 28.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23321
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23322
- components:
- - type: Transform
- pos: 21.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23323
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23324
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23325
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23326
- components:
- - type: Transform
- pos: -23.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23327
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23328
- components:
- - type: Transform
- pos: 29.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23329
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0313FF00'
- - uid: 23330
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-30.5
- parent: 2
- - uid: 23331
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23332
- components:
- - type: Transform
- pos: -30.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23333
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23334
- components:
- - type: Transform
- pos: 51.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23336
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23337
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23338
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23339
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23340
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23341
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23342
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23343
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23344
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23345
- components:
- - type: Transform
- pos: 39.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23346
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23347
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23348
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23349
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23350
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23351
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23352
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23353
- components:
- - type: Transform
- pos: -9.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23354
- components:
- - type: Transform
- pos: 46.5,-15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 56
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23355
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23356
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23357
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,30.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 52
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23358
- components:
- - type: Transform
- pos: 22.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23359
- components:
- - type: Transform
- pos: 11.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23360
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23361
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23362
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23363
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23364
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23365
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23366
- components:
- - type: Transform
- pos: 23.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23367
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23368
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23369
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23370
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 80.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23371
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23372
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23373
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23374
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,23.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 165
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23376
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23377
- components:
- - type: Transform
- pos: 39.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23378
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23379
- components:
- - type: Transform
- pos: -27.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23380
- components:
- - type: Transform
- pos: 6.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23381
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23382
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23383
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23384
- components:
- - type: Transform
- pos: -19.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23385
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23386
- components:
- - type: Transform
- pos: 33.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23387
- components:
- - type: Transform
- pos: 37.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23388
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23389
- components:
- - type: Transform
- pos: 11.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23390
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23391
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23393
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23394
- components:
- - type: Transform
- pos: 5.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23395
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23397
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23398
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23399
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23400
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23401
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-52.5
- parent: 2
- - uid: 23402
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23403
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23404
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23405
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23406
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23407
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23408
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23409
- components:
- - type: Transform
- pos: 44.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23410
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23411
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,26.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 53
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23412
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23413
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23414
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23415
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23416
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23417
- components:
- - type: Transform
- pos: -13.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23418
- components:
- - type: Transform
- pos: -13.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23419
- components:
- - type: Transform
- pos: -27.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23420
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23421
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23422
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23423
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23424
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23425
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23426
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23427
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23428
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23429
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23430
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23431
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23432
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23433
- components:
- - type: Transform
- pos: 47.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23434
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23435
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23436
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23437
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23438
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 68.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23439
- components:
- - type: Transform
- pos: -34.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23440
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23441
- components:
- - type: Transform
- pos: 44.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23442
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23443
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23444
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23445
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23446
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23447
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23448
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23449
- components:
- - type: Transform
- pos: -39.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23450
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23451
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23452
- components:
- - type: Transform
- pos: -32.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23453
- components:
- - type: Transform
- pos: 16.5,52.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23454
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 57
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23456
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 156
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23457
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 154
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23458
- components:
- - type: Transform
- pos: 62.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23459
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23460
- components:
- - type: Transform
- pos: -53.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23461
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 157
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23462
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23463
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23464
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-34.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 153
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23465
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23466
- components:
- - type: Transform
- pos: -5.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23467
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23468
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,77.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 158
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23469
- components:
- - type: Transform
- pos: 46.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23470
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23471
- components:
- - type: Transform
- pos: -67.5,-2.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23472
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-14.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 116
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23473
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23474
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23475
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23476
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,35.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23477
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23478
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23479
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23480
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23481
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23482
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23483
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23484
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23485
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23486
- components:
- - type: Transform
- pos: 51.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23487
- components:
- - type: Transform
- pos: -26.5,1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23488
- components:
- - type: Transform
- pos: -35.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23489
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23490
- components:
- - type: Transform
- pos: 7.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23491
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23492
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23493
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23494
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23495
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23496
- components:
- - type: Transform
- pos: 25.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23497
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23498
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23499
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23500
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23501
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23502
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
- pos: 31.5,-33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 23503
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23504
- components:
- - type: Transform
- pos: 27.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23505
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23506
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23507
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23508
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23511
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23512
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23513
- components:
- - type: Transform
- pos: -8.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23514
- components:
- - type: Transform
- pos: 26.5,38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23515
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-46.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 86
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23516
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23517
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23518
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23519
- components:
- - type: Transform
- pos: -11.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23520
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23521
- components:
- - type: Transform
- pos: -46.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23522
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23523
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23524
- components:
- - type: Transform
- pos: -5.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23525
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23526
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 111
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23527
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 111
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23528
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 111
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23529
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 111
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23530
- components:
- - type: Transform
- pos: -15.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23531
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23532
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23533
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23534
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 12
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23535
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23536
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23537
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23538
- components:
- - type: Transform
- pos: -29.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23539
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23540
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23541
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23542
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23543
- components:
- - type: Transform
- pos: 5.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23544
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23545
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23547
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23548
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23549
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-41.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 155
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23550
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 135
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23551
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23552
- components:
- - type: Transform
- pos: -66.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23553
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23554
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23555
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 29
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23556
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23557
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23558
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -123.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23559
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23560
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23561
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -115.5,36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23562
- components:
- - type: Transform
- pos: -119.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23563
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 77.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23564
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23565
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23566
- components:
- - type: Transform
- pos: 81.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23567
- components:
- - type: Transform
- pos: 88.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23568
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 89.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23569
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23570
- components:
- - type: Transform
- pos: 91.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23571
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 29
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23572
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 23573
- components:
- - type: Transform
- pos: 72.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasVentScrubber
- entities:
- - uid: 23574
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23575
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,76.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 161
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23576
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23577
- components:
- - type: Transform
- pos: -12.5,57.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 163
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23578
- components:
- - type: Transform
- pos: -8.5,49.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 159
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23579
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23580
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,75.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 162
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23581
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,68.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 120
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23582
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23583
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23584
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23585
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,90.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 160
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23586
- components:
- - type: Transform
- pos: -52.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23587
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23589
- components:
- - type: Transform
- pos: 21.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23590
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23591
- components:
- - type: Transform
- pos: -46.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23593
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,41.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23594
- components:
- - type: Transform
- pos: 76.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23595
- components:
- - type: Transform
- pos: 41.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23596
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23597
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23598
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23599
- components:
- - type: Transform
- pos: 27.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23600
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23601
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23602
- components:
- - type: Transform
- pos: 41.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23603
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23605
- components:
- - type: Transform
- pos: 14.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23606
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23607
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23608
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23609
- components:
- - type: Transform
- pos: -12.5,33.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 164
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23610
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23611
- components:
- - type: Transform
- pos: 11.5,53.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23612
- components:
- - type: Transform
- pos: 54.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23613
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23614
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23615
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23617
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23618
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23619
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23620
- components:
- - type: Transform
- pos: 82.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23621
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23622
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23623
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23624
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23625
- components:
- - type: Transform
- pos: 5.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23626
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23627
- components:
- - type: Transform
- pos: 31.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23628
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 88
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23629
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23630
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23631
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23632
- components:
- - type: Transform
- pos: 10.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23633
- components:
- - type: Transform
- pos: -41.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23634
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23635
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23636
- components:
- - type: Transform
- pos: -0.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23637
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23638
- components:
- - type: Transform
- pos: -57.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23639
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23640
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23641
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23642
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23643
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 52
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23644
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23645
- components:
- - type: Transform
- pos: 10.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23646
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23647
- components:
- - type: Transform
- pos: 53.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23648
- components:
- - type: Transform
- pos: -46.5,13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23649
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23650
- components:
- - type: Transform
- pos: 76.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23651
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23652
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23653
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23654
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23655
- components:
- - type: Transform
- pos: 22.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23656
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-13.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23657
- components:
- - type: Transform
- pos: 14.5,28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 135
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23658
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23659
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23660
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23661
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23662
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23663
- components:
- - type: Transform
- pos: -10.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23664
- components:
- - type: Transform
- pos: 40.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23665
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23666
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23668
- components:
- - type: Transform
- pos: 24.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23669
- components:
- - type: Transform
- pos: -14.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23670
- components:
- - type: Transform
- pos: -17.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23671
- components:
- - type: Transform
- pos: -0.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23672
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23673
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23674
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23675
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23676
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23677
- components:
- - type: Transform
- pos: -47.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23678
- components:
- - type: Transform
- pos: -26.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23679
- components:
- - type: Transform
- pos: 47.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23680
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF030300'
- - uid: 23681
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23682
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23683
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23684
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,33.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23686
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23688
- components:
- - type: Transform
- pos: 4.5,27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23689
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23690
- components:
- - type: Transform
- pos: 9.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23691
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 80.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23692
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23693
- components:
- - type: Transform
- pos: -0.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23694
- components:
- - type: Transform
- pos: -16.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23695
- components:
- - type: Transform
- pos: 17.5,-19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23696
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23697
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23698
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23699
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23700
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23701
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23702
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23703
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23705
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23706
- components:
- - type: Transform
- pos: -6.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23708
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23709
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23710
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23711
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23712
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23713
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,8.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23714
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23715
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23716
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23718
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23719
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23720
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23721
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 98
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23722
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 38
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23723
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23724
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23725
- components:
- - type: Transform
- pos: -5.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23726
- components:
- - type: Transform
- pos: 34.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23727
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23728
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23729
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23730
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23731
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23734
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23735
- components:
- - type: Transform
- pos: 31.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23736
- components:
- - type: Transform
- pos: 20.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23737
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23738
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23739
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23740
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23741
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23742
- components:
- - type: Transform
- pos: 15.5,60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23743
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23744
- components:
- - type: Transform
- pos: 29.5,42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23745
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23746
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,7.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 29
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23747
- components:
- - type: Transform
- pos: -63.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 154
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23748
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-48.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 157
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23749
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-14.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 116
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23750
- components:
- - type: Transform
- pos: -59.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23751
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-37.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 156
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23752
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23753
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23754
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-46.5
- parent: 2
- - uid: 23755
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-45.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 86
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23756
- components:
- - type: Transform
- pos: 47.5,-15.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 56
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23757
- components:
- - type: Transform
- pos: 55.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23758
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-39.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 12
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23759
- components:
- - type: Transform
- pos: -71.5,-2.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23760
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23761
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
- pos: 31.5,-34.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 23762
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 155
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23763
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23764
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23765
- components:
- - type: Transform
- pos: 30.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 57
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23766
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23767
- components:
- - type: Transform
- pos: 63.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 53
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23769
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23770
- components:
- - type: Transform
- pos: 9.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23772
- components:
- - type: Transform
- pos: -32.5,1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23773
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 101
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23774
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23775
- components:
- - type: Transform
- anchored: False
- rot: 3.141592653589793 rad
- pos: -9.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- - uid: 23776
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23777
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23778
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-0.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23779
- components:
- - type: Transform
- pos: -8.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23780
- components:
- - type: Transform
- pos: -6.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23781
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23782
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23783
- components:
- - type: Transform
- pos: 4.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23784
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23785
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-80.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23786
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23787
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23789
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-36.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 153
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23790
- components:
- - type: Transform
- pos: -60.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23791
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23792
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23793
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23794
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23796
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23798
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23799
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -115.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23800
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -123.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23801
- components:
- - type: Transform
- pos: -117.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23802
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -118.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23803
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -118.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23804
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.5,12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23805
- components:
- - type: Transform
- pos: 93.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23807
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23808
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,90.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 158
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasVolumePump
- entities:
- - uid: 23809
- components:
- - type: Transform
- pos: -65.5,51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23810
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,22.5
- parent: 2
- - uid: 23811
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FEF101FF'
- - uid: 23813
- components:
- - type: Transform
- pos: -69.5,-25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23814
- components:
- - type: Transform
- pos: -117.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23815
- components:
- - type: Transform
- pos: -10.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23816
-=======
- pos: -23.5,-50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 110
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 86
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-60.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 112
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22511
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-59.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 112
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22512
- components:
- - type: Transform
- pos: 5.5,-64.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22513
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-69.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22514
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-69.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22515
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-78.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22516
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-78.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22517
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-74.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 113
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22518
- components:
- - type: Transform
- pos: -17.5,-64.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 114
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22519
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-66.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 114
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22520
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-74.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 114
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22521
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22522
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22523
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -115.5,43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22524
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -123.5,23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22525
- components:
- - type: Transform
- pos: -117.5,45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22526
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -118.5,24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22527
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -118.5,28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22528
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 74
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22529
- components:
- - type: Transform
- pos: 81.5,1.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 33
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22530
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 80.5,-3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 33
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22531
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.5,-3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 33
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22532
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 88.5,-3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 33
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22533
- components:
- - type: Transform
- pos: 86.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 33
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22534
- components:
- - type: Transform
- pos: 93.5,2.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 95
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22535
- components:
- - type: Transform
- pos: 78.5,5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 33
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39163
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,2.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38345
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39164
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-9.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39165
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,7.5
- parent: 38344
- - type: DeviceNetwork
- deviceLists:
- - 38346
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39166
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,8.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39167
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,9.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39168
- components:
- - type: Transform
- pos: -12.5,-5.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-2.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 39170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,3.5
- parent: 38344
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasVolumePump
- entities:
- - uid: 22537
- components:
- - type: Transform
- pos: -117.5,19.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22538
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: Gauze
- entities:
- - uid: 22539
- components:
- - type: Transform
- pos: 24.5022,-31.36834
- parent: 2
- - uid: 22540
- components:
- - type: Transform
- pos: 25.122957,-24.40516
- parent: 2
- - uid: 22541
- components:
- - type: Transform
- pos: 35.5,-41.5
- parent: 2
-- proto: GeneratorBasic
- entities:
- - uid: 22542
- components:
- - type: Transform
- pos: -49.5,-13.5
- parent: 2
-- proto: GeneratorBasic15kW
- entities:
- - uid: 39171
- components:
- - type: Transform
- pos: 10.5,7.5
- parent: 38344
- - uid: 39172
- components:
- - type: Transform
- pos: 9.5,7.5
- parent: 38344
- - uid: 39173
- components:
- - type: Transform
- pos: 8.5,7.5
- parent: 38344
-- proto: GeneratorRTG
- entities:
- - uid: 22543
- components:
- - type: Transform
- pos: 13.5,-5.5
- parent: 2
- - uid: 22544
- components:
- - type: Transform
- pos: 4.5,-37.5
- parent: 2
- - uid: 22545
- components:
- - type: Transform
- pos: -121.5,26.5
- parent: 2
- - uid: 22546
- components:
- - type: Transform
- pos: -122.5,26.5
- parent: 2
- - uid: 22547
- components:
- - type: Transform
- pos: -123.5,26.5
- parent: 2
-- proto: GeneratorRTGDamaged
- entities:
- - uid: 22548
- components:
- - type: Transform
- pos: -69.5,0.5
- parent: 2
- - uid: 22549
- components:
- - type: Transform
- pos: -69.5,-1.5
- parent: 2
-- proto: GeneratorWallmountAPU
- entities:
- - uid: 38286
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 38244
- - type: PowerSupplier
- supplyRate: 60000
-- proto: Girder
- entities:
- - uid: 22550
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-19.5
- parent: 2
- - uid: 22551
- components:
- - type: Transform
- pos: 7.5,56.5
- parent: 2
- - uid: 22552
- components:
- - type: Transform
- pos: 39.5,-47.5
- parent: 2
- - uid: 22553
- components:
- - type: Transform
- pos: 46.5,-9.5
- parent: 2
- - uid: 22554
- components:
- - type: Transform
- pos: -66.5,-31.5
- parent: 2
- - uid: 22555
- components:
- - type: Transform
- pos: -10.5,-56.5
- parent: 2
- - uid: 22556
- components:
- - type: Transform
- pos: 49.5,-39.5
- parent: 2
- - uid: 22557
- components:
- - type: Transform
- pos: -73.5,-21.5
- parent: 2
- - uid: 22558
- components:
- - type: Transform
- pos: 22.5,-18.5
- parent: 2
- - uid: 22559
- components:
- - type: Transform
- pos: -59.5,-20.5
- parent: 2
- - uid: 22560
- components:
- - type: Transform
- pos: 48.5,-11.5
- parent: 2
- - uid: 22561
- components:
- - type: Transform
- pos: 20.5,-55.5
- parent: 2
- - uid: 22562
- components:
- - type: Transform
- pos: 41.5,-26.5
- parent: 2
- - uid: 22563
- components:
- - type: Transform
- pos: 5.5,-55.5
- parent: 2
- - uid: 22564
- components:
- - type: Transform
- pos: -30.5,-18.5
- parent: 2
- - uid: 22565
- components:
- - type: Transform
- pos: -29.5,-18.5
- parent: 2
- - uid: 22566
- components:
- - type: Transform
- pos: 35.5,-4.5
- parent: 2
- - uid: 22567
- components:
- - type: Transform
- pos: 14.5,-54.5
- parent: 2
- - uid: 22568
- components:
- - type: Transform
- pos: 37.5,-67.5
- parent: 2
- - uid: 22569
- components:
- - type: Transform
- pos: 45.5,-6.5
- parent: 2
- - uid: 22570
- components:
- - type: Transform
- pos: -34.5,-18.5
- parent: 2
- - uid: 22571
- components:
- - type: Transform
- pos: -19.5,-62.5
- parent: 2
- - uid: 22572
- components:
- - type: Transform
- pos: 36.5,-53.5
- parent: 2
- - uid: 22573
- components:
- - type: Transform
- pos: 13.5,-83.5
- parent: 2
-- proto: GlassBoxBroken
- entities:
- - uid: 22574
- components:
- - type: Transform
- pos: 49.5,-27.5
- parent: 2
-- proto: Gohei
- entities:
- - uid: 39174
- components:
- - type: Transform
- pos: 3.0654716,35.37439
- parent: 38344
-- proto: GoldOre1
- entities:
- - uid: 22575
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 58.360992,-41.492805
- parent: 2
-- proto: GravityGenerator
- entities:
- - uid: 22576
- components:
- - type: Transform
- pos: -71.5,6.5
- parent: 2
-- proto: GravityGeneratorMini
- entities:
- - uid: 38287
- components:
- - type: Transform
- pos: 1.5,-2.5
- parent: 38244
- - type: Visibility
- layer: 12
- - uid: 39175
- components:
- - type: Transform
- pos: 7.5,4.5
- parent: 38344
-- proto: Grille
- entities:
- - uid: 22577
- components:
- - type: Transform
- pos: 63.5,31.5
- parent: 2
- - uid: 22578
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,33.5
- parent: 2
- - uid: 22579
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,33.5
- parent: 2
- - uid: 22580
- components:
- - type: Transform
- pos: -72.5,21.5
- parent: 2
- - uid: 22581
- components:
- - type: Transform
- pos: -72.5,24.5
- parent: 2
- - uid: 22582
- components:
- - type: Transform
- pos: -67.5,30.5
- parent: 2
- - uid: 22583
- components:
- - type: Transform
- pos: -72.5,20.5
- parent: 2
- - uid: 22584
- components:
- - type: Transform
- pos: -67.5,28.5
- parent: 2
- - uid: 22585
- components:
- - type: Transform
- pos: -72.5,23.5
- parent: 2
- - uid: 22586
- components:
- - type: Transform
- pos: -69.5,29.5
- parent: 2
- - uid: 22587
- components:
- - type: Transform
- pos: -67.5,29.5
- parent: 2
- - uid: 22588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 98.5,3.5
- parent: 2
- - uid: 22589
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 98.5,4.5
- parent: 2
- - uid: 22590
- components:
- - type: Transform
- pos: 94.5,9.5
- parent: 2
- - uid: 22591
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-5.5
- parent: 2
- - uid: 22592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 80.5,-5.5
- parent: 2
- - uid: 22593
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 88.5,-5.5
- parent: 2
- - uid: 22594
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 85.5,-5.5
- parent: 2
- - uid: 22595
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 81.5,-5.5
- parent: 2
- - uid: 22596
- components:
- - type: Transform
- pos: 98.5,1.5
- parent: 2
- - uid: 22597
- components:
- - type: Transform
- pos: 93.5,8.5
- parent: 2
- - uid: 22598
- components:
- - type: Transform
- pos: -69.5,38.5
- parent: 2
- - uid: 22599
- components:
- - type: Transform
- pos: -67.5,52.5
- parent: 2
- - uid: 22600
- components:
- - type: Transform
- pos: -67.5,32.5
- parent: 2
- - uid: 22601
- components:
- - type: Transform
- pos: -69.5,36.5
- parent: 2
- - uid: 22602
- components:
- - type: Transform
- pos: -67.5,37.5
- parent: 2
- - uid: 22603
- components:
- - type: Transform
- pos: -67.5,34.5
- parent: 2
- - uid: 22604
- components:
- - type: Transform
- pos: -69.5,33.5
- parent: 2
- - uid: 22605
- components:
- - type: Transform
- pos: -67.5,38.5
- parent: 2
- - uid: 22606
- components:
- - type: Transform
- pos: -67.5,33.5
- parent: 2
- - uid: 22607
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,22.5
- parent: 2
- - uid: 22608
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 87.5,-5.5
- parent: 2
- - uid: 22609
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 98.5,2.5
- parent: 2
- - uid: 22610
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-71.5
- parent: 2
- - uid: 22611
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,26.5
- parent: 2
- - uid: 22612
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,26.5
- parent: 2
- - uid: 22613
- components:
- - type: Transform
- pos: 8.5,32.5
- parent: 2
- - uid: 22614
- components:
- - type: Transform
- pos: -0.5,63.5
- parent: 2
- - uid: 22615
- components:
- - type: Transform
- pos: 5.5,86.5
- parent: 2
- - uid: 22616
- components:
- - type: Transform
- pos: 7.5,21.5
- parent: 2
- - uid: 22617
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,71.5
- parent: 2
- - uid: 22618
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,4.5
- parent: 2
- - uid: 22619
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,5.5
- parent: 2
- - uid: 22620
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-12.5
- parent: 2
- - uid: 22621
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-11.5
- parent: 2
- - uid: 22622
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-11.5
- parent: 2
- - uid: 22623
- components:
- - type: Transform
- pos: 4.5,-10.5
- parent: 2
- - uid: 22624
- components:
- - type: Transform
- pos: 1.5,-6.5
- parent: 2
- - uid: 22625
- components:
- - type: Transform
- pos: 49.5,13.5
- parent: 2
- - uid: 22626
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,33.5
- parent: 2
- - uid: 22627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,16.5
- parent: 2
- - uid: 22628
- components:
- - type: Transform
- pos: -16.5,3.5
- parent: 2
- - uid: 22629
- components:
- - type: Transform
- pos: 3.5,-6.5
- parent: 2
- - uid: 22630
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,18.5
- parent: 2
- - uid: 22631
- components:
- - type: Transform
- pos: 44.5,21.5
- parent: 2
- - uid: 22632
- components:
- - type: Transform
- pos: -16.5,0.5
- parent: 2
- - uid: 22633
- components:
- - type: Transform
- pos: -82.5,13.5
- parent: 2
- - uid: 22634
- components:
- - type: Transform
- pos: -56.5,64.5
- parent: 2
- - uid: 22635
- components:
- - type: Transform
- pos: 27.5,33.5
- parent: 2
- - uid: 22636
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,3.5
- parent: 2
- - uid: 22637
- components:
- - type: Transform
- pos: 42.5,24.5
- parent: 2
- - uid: 22638
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,94.5
- parent: 2
- - uid: 22639
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-45.5
- parent: 2
- - uid: 22640
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-46.5
- parent: 2
- - uid: 22641
- components:
- - type: Transform
- pos: -23.5,3.5
- parent: 2
- - uid: 22642
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,6.5
- parent: 2
- - uid: 22643
- components:
- - type: Transform
- pos: 49.5,17.5
- parent: 2
- - uid: 22644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,6.5
- parent: 2
- - uid: 22645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,70.5
- parent: 2
- - uid: 22646
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,6.5
- parent: 2
- - uid: 22647
- components:
- - type: Transform
- pos: -83.5,-8.5
- parent: 2
- - uid: 22648
- components:
- - type: Transform
- pos: -61.5,64.5
- parent: 2
- - uid: 22649
- components:
- - type: Transform
- pos: 30.5,7.5
- parent: 2
- - uid: 22650
- components:
- - type: Transform
- pos: -60.5,65.5
- parent: 2
- - uid: 22651
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,36.5
- parent: 2
- - uid: 22652
- components:
- - type: Transform
- pos: 56.5,-1.5
- parent: 2
- - uid: 22653
- components:
- - type: Transform
- pos: 31.5,53.5
- parent: 2
- - uid: 22654
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,69.5
- parent: 2
- - uid: 22655
- components:
- - type: Transform
- pos: -31.5,73.5
- parent: 2
- - uid: 22656
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,4.5
- parent: 2
- - uid: 22657
- components:
- - type: Transform
- pos: 65.5,-5.5
- parent: 2
- - uid: 22658
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,65.5
- parent: 2
- - uid: 22659
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,97.5
- parent: 2
- - uid: 22660
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,4.5
- parent: 2
- - uid: 22661
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,91.5
- parent: 2
- - uid: 22662
- components:
- - type: Transform
- pos: -83.5,-9.5
- parent: 2
- - uid: 22663
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-3.5
- parent: 2
- - uid: 22664
- components:
- - type: Transform
- pos: -5.5,-6.5
- parent: 2
- - uid: 22665
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,99.5
- parent: 2
- - uid: 22666
- components:
- - type: Transform
- pos: -82.5,15.5
- parent: 2
- - uid: 22667
- components:
- - type: Transform
- pos: 84.5,-8.5
- parent: 2
- - uid: 22668
- components:
- - type: Transform
- pos: 45.5,-17.5
- parent: 2
- - uid: 22669
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,6.5
- parent: 2
- - uid: 22670
- components:
- - type: Transform
- pos: 75.5,17.5
- parent: 2
- - uid: 22671
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-78.5
- parent: 2
- - uid: 22672
- components:
- - type: Transform
- pos: 32.5,53.5
- parent: 2
- - uid: 22673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,4.5
- parent: 2
- - uid: 22674
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-46.5
- parent: 2
- - uid: 22675
- components:
- - type: Transform
- pos: 65.5,-17.5
- parent: 2
- - uid: 22676
- components:
- - type: Transform
- pos: 64.5,-8.5
- parent: 2
- - uid: 22677
- components:
- - type: Transform
- pos: 67.5,-14.5
- parent: 2
- - uid: 22678
- components:
- - type: Transform
- pos: 50.5,14.5
- parent: 2
- - uid: 22679
- components:
- - type: Transform
- pos: 49.5,15.5
- parent: 2
- - uid: 22680
- components:
- - type: Transform
- pos: 49.5,9.5
- parent: 2
- - uid: 22681
- components:
- - type: Transform
- pos: 64.5,-17.5
- parent: 2
- - uid: 22682
- components:
- - type: Transform
- pos: 83.5,-22.5
- parent: 2
- - uid: 22683
- components:
- - type: Transform
- pos: 65.5,-31.5
- parent: 2
- - uid: 22684
- components:
- - type: Transform
- pos: 76.5,-17.5
- parent: 2
- - uid: 22685
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,4.5
- parent: 2
- - uid: 22686
- components:
- - type: Transform
- pos: 52.5,14.5
- parent: 2
- - uid: 22687
- components:
- - type: Transform
- pos: 48.5,-17.5
- parent: 2
- - uid: 22688
- components:
- - type: Transform
- pos: 58.5,-1.5
- parent: 2
- - uid: 22689
- components:
- - type: Transform
- pos: 30.5,53.5
- parent: 2
- - uid: 22690
- components:
- - type: Transform
- pos: 52.5,10.5
- parent: 2
- - uid: 22691
- components:
- - type: Transform
- pos: -27.5,72.5
- parent: 2
- - uid: 22692
- components:
- - type: Transform
- pos: -27.5,73.5
- parent: 2
- - uid: 22693
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,86.5
- parent: 2
- - uid: 22694
- components:
- - type: Transform
- pos: -28.5,99.5
- parent: 2
- - uid: 22695
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-36.5
- parent: 2
- - uid: 22696
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,88.5
- parent: 2
- - uid: 22697
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-36.5
- parent: 2
- - uid: 22698
- components:
- - type: Transform
- pos: -35.5,-40.5
- parent: 2
- - uid: 22699
- components:
- - type: Transform
- pos: 48.5,24.5
- parent: 2
- - uid: 22700
- components:
- - type: Transform
- pos: 48.5,21.5
- parent: 2
- - uid: 22701
- components:
- - type: Transform
- pos: 51.5,20.5
- parent: 2
- - uid: 22702
- components:
- - type: Transform
- pos: 53.5,20.5
- parent: 2
- - uid: 22703
- components:
- - type: Transform
- pos: 75.5,18.5
- parent: 2
- - uid: 22704
- components:
- - type: Transform
- pos: 84.5,-22.5
- parent: 2
- - uid: 22705
- components:
- - type: Transform
- pos: 64.5,-31.5
- parent: 2
- - uid: 22706
- components:
- - type: Transform
- pos: 4.5,-6.5
- parent: 2
- - uid: 22707
- components:
- - type: Transform
- pos: 64.5,-15.5
- parent: 2
- - uid: 22708
- components:
- - type: Transform
- pos: 64.5,-24.5
- parent: 2
- - uid: 22709
- components:
- - type: Transform
- pos: 64.5,-13.5
- parent: 2
- - uid: 22710
- components:
- - type: Transform
- pos: 67.5,-25.5
- parent: 2
- - uid: 22711
- components:
- - type: Transform
- pos: 64.5,-14.5
- parent: 2
- - uid: 22712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,95.5
- parent: 2
- - uid: 22713
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,97.5
- parent: 2
- - uid: 22714
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,99.5
- parent: 2
- - uid: 22715
- components:
- - type: Transform
- pos: 66.5,-25.5
- parent: 2
- - uid: 22716
- components:
- - type: Transform
- pos: -16.5,1.5
- parent: 2
- - uid: 22717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,92.5
- parent: 2
- - uid: 22718
- components:
- - type: Transform
- pos: 46.5,-1.5
- parent: 2
- - uid: 22719
- components:
- - type: Transform
- pos: -16.5,2.5
- parent: 2
- - uid: 22720
- components:
- - type: Transform
- pos: -30.5,99.5
- parent: 2
- - uid: 22721
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,68.5
- parent: 2
- - uid: 22722
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-48.5
- parent: 2
- - uid: 22723
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,4.5
- parent: 2
- - uid: 22724
- components:
- - type: Transform
- pos: -31.5,72.5
- parent: 2
- - uid: 22725
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-36.5
- parent: 2
- - uid: 22726
- components:
- - type: Transform
- pos: -35.5,-43.5
- parent: 2
- - uid: 22727
- components:
- - type: Transform
- pos: -29.5,-42.5
- parent: 2
- - uid: 22728
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,86.5
- parent: 2
- - uid: 22729
- components:
- - type: Transform
- pos: 75.5,-14.5
- parent: 2
- - uid: 22730
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,89.5
- parent: 2
- - uid: 22731
- components:
- - type: Transform
- pos: 71.5,12.5
- parent: 2
- - uid: 22732
- components:
- - type: Transform
- pos: 48.5,-1.5
- parent: 2
- - uid: 22733
- components:
- - type: Transform
- pos: -32.5,82.5
- parent: 2
- - uid: 22734
- components:
- - type: Transform
- pos: -9.5,73.5
- parent: 2
- - uid: 22735
- components:
- - type: Transform
- pos: 68.5,-25.5
- parent: 2
- - uid: 22736
- components:
- - type: Transform
- pos: -9.5,72.5
- parent: 2
- - uid: 22737
- components:
- - type: Transform
- pos: -27.5,95.5
- parent: 2
- - uid: 22738
- components:
- - type: Transform
- pos: 7.5,86.5
- parent: 2
- - uid: 22739
- components:
- - type: Transform
- pos: 49.5,7.5
- parent: 2
- - uid: 22740
- components:
- - type: Transform
- pos: 49.5,3.5
- parent: 2
- - uid: 22741
- components:
- - type: Transform
- pos: 49.5,5.5
- parent: 2
- - uid: 22742
- components:
- - type: Transform
- pos: -11.5,-50.5
- parent: 2
- - uid: 22743
- components:
- - type: Transform
- pos: 39.5,53.5
- parent: 2
- - uid: 22744
- components:
- - type: Transform
- pos: 65.5,-8.5
- parent: 2
- - uid: 22745
- components:
- - type: Transform
- pos: 60.5,-1.5
- parent: 2
- - uid: 22746
- components:
- - type: Transform
- pos: -17.5,-52.5
- parent: 2
- - uid: 22747
- components:
- - type: Transform
- pos: 28.5,47.5
- parent: 2
- - uid: 22748
- components:
- - type: Transform
- pos: 78.5,-22.5
- parent: 2
- - uid: 22749
- components:
- - type: Transform
- pos: 64.5,-22.5
- parent: 2
- - uid: 22750
- components:
- - type: Transform
- pos: -14.5,79.5
- parent: 2
- - uid: 22751
- components:
- - type: Transform
- pos: 49.5,11.5
- parent: 2
- - uid: 22752
- components:
- - type: Transform
- pos: -13.5,72.5
- parent: 2
- - uid: 22753
- components:
- - type: Transform
- pos: -13.5,73.5
- parent: 2
- - uid: 22754
- components:
- - type: Transform
- pos: 68.5,0.5
- parent: 2
- - uid: 22755
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-66.5
- parent: 2
- - uid: 22756
- components:
- - type: Transform
- pos: 66.5,-14.5
- parent: 2
- - uid: 22757
- components:
- - type: Transform
- pos: -8.5,82.5
- parent: 2
- - uid: 22758
- components:
- - type: Transform
- pos: -4.5,70.5
- parent: 2
- - uid: 22759
- components:
- - type: Transform
- pos: 28.5,53.5
- parent: 2
- - uid: 22760
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,97.5
- parent: 2
- - uid: 22761
- components:
- - type: Transform
- pos: 44.5,18.5
- parent: 2
- - uid: 22762
- components:
- - type: Transform
- pos: 76.5,24.5
- parent: 2
- - uid: 22763
- components:
- - type: Transform
- pos: 74.5,24.5
- parent: 2
- - uid: 22764
- components:
- - type: Transform
- pos: -11.5,-6.5
- parent: 2
- - uid: 22765
- components:
- - type: Transform
- pos: -14.5,1.5
- parent: 2
- - uid: 22766
- components:
- - type: Transform
- pos: -14.5,3.5
- parent: 2
- - uid: 22767
- components:
- - type: Transform
- pos: -16.5,9.5
- parent: 2
- - uid: 22768
- components:
- - type: Transform
- pos: -16.5,10.5
- parent: 2
- - uid: 22769
- components:
- - type: Transform
- pos: -16.5,8.5
- parent: 2
- - uid: 22770
- components:
- - type: Transform
- pos: -60.5,16.5
- parent: 2
- - uid: 22771
- components:
- - type: Transform
- pos: -4.5,-6.5
- parent: 2
- - uid: 22772
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-55.5
- parent: 2
- - uid: 22773
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-54.5
- parent: 2
- - uid: 22774
- components:
- - type: Transform
- pos: -2.5,-6.5
- parent: 2
- - uid: 22775
- components:
- - type: Transform
- pos: 40.5,-17.5
- parent: 2
- - uid: 22776
- components:
- - type: Transform
- pos: 46.5,-56.5
- parent: 2
- - uid: 22777
- components:
- - type: Transform
- pos: -79.5,-42.5
- parent: 2
- - uid: 22778
- components:
- - type: Transform
- pos: -58.5,-78.5
- parent: 2
- - uid: 22779
- components:
- - type: Transform
- pos: -69.5,-49.5
- parent: 2
- - uid: 22780
- components:
- - type: Transform
- pos: 30.5,65.5
- parent: 2
- - uid: 22781
- components:
- - type: Transform
- pos: 66.5,-9.5
- parent: 2
- - uid: 22782
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-21.5
- parent: 2
- - uid: 22783
- components:
- - type: Transform
- pos: -26.5,82.5
- parent: 2
- - uid: 22784
- components:
- - type: Transform
- pos: -31.5,86.5
- parent: 2
- - uid: 22785
- components:
- - type: Transform
- pos: -47.5,26.5
- parent: 2
- - uid: 22786
- components:
- - type: Transform
- pos: 36.5,102.5
- parent: 2
- - uid: 22787
- components:
- - type: Transform
- pos: 71.5,-25.5
- parent: 2
- - uid: 22788
- components:
- - type: Transform
- pos: 25.5,62.5
- parent: 2
- - uid: 22789
- components:
- - type: Transform
- pos: 24.5,62.5
- parent: 2
- - uid: 22790
- components:
- - type: Transform
- pos: -56.5,4.5
- parent: 2
- - uid: 22791
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,81.5
- parent: 2
- - uid: 22792
- components:
- - type: Transform
- pos: 30.5,47.5
- parent: 2
- - uid: 22793
- components:
- - type: Transform
- pos: -77.5,30.5
- parent: 2
- - uid: 22794
- components:
- - type: Transform
- pos: -83.5,77.5
- parent: 2
- - uid: 22795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,3.5
- parent: 2
- - uid: 22796
- components:
- - type: Transform
- pos: 32.5,47.5
- parent: 2
- - uid: 22797
- components:
- - type: Transform
- pos: 23.5,38.5
- parent: 2
- - uid: 22798
- components:
- - type: Transform
- pos: -33.5,19.5
- parent: 2
- - uid: 22799
- components:
- - type: Transform
- pos: 24.5,60.5
- parent: 2
- - uid: 22800
- components:
- - type: Transform
- pos: 74.5,-40.5
- parent: 2
- - uid: 22801
- components:
- - type: Transform
- pos: -77.5,50.5
- parent: 2
- - uid: 22802
- components:
- - type: Transform
- pos: -80.5,20.5
- parent: 2
- - uid: 22803
- components:
- - type: Transform
- pos: -77.5,26.5
- parent: 2
- - uid: 22804
- components:
- - type: Transform
- pos: -83.5,69.5
- parent: 2
- - uid: 22805
- components:
- - type: Transform
- pos: -82.5,18.5
- parent: 2
- - uid: 22806
- components:
- - type: Transform
- pos: -82.5,20.5
- parent: 2
- - uid: 22807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-21.5
- parent: 2
- - uid: 22808
- components:
- - type: Transform
- pos: -77.5,51.5
- parent: 2
- - uid: 22809
- components:
- - type: Transform
- pos: 83.5,-48.5
- parent: 2
- - uid: 22810
- components:
- - type: Transform
- pos: -77.5,29.5
- parent: 2
- - uid: 22811
- components:
- - type: Transform
- pos: -77.5,32.5
- parent: 2
- - uid: 22812
- components:
- - type: Transform
- pos: 83.5,-49.5
- parent: 2
- - uid: 22813
- components:
- - type: Transform
- pos: 58.5,-56.5
- parent: 2
- - uid: 22814
- components:
- - type: Transform
- pos: 53.5,-60.5
- parent: 2
- - uid: 22815
- components:
- - type: Transform
- pos: 37.5,21.5
- parent: 2
- - uid: 22816
- components:
- - type: Transform
- pos: -75.5,37.5
- parent: 2
- - uid: 22817
- components:
- - type: Transform
- pos: -58.5,-53.5
- parent: 2
- - uid: 22818
- components:
- - type: Transform
- pos: 73.5,-35.5
- parent: 2
- - uid: 22819
- components:
- - type: Transform
- pos: 55.5,-60.5
- parent: 2
- - uid: 22820
- components:
- - type: Transform
- pos: 72.5,-35.5
- parent: 2
- - uid: 22821
- components:
- - type: Transform
- pos: -82.5,17.5
- parent: 2
- - uid: 22822
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,-21.5
- parent: 2
- - uid: 22823
- components:
- - type: Transform
- pos: 29.5,47.5
- parent: 2
- - uid: 22824
- components:
- - type: Transform
- pos: -48.5,26.5
- parent: 2
- - uid: 22825
- components:
- - type: Transform
- pos: 31.5,47.5
- parent: 2
- - uid: 22826
- components:
- - type: Transform
- pos: 19.5,-3.5
- parent: 2
- - uid: 22827
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-36.5
- parent: 2
- - uid: 22828
- components:
- - type: Transform
- pos: -84.5,70.5
- parent: 2
- - uid: 22829
- components:
- - type: Transform
- pos: -83.5,70.5
- parent: 2
- - uid: 22830
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,37.5
- parent: 2
- - uid: 22831
- components:
- - type: Transform
- pos: -42.5,-87.5
- parent: 2
- - uid: 22832
- components:
- - type: Transform
- pos: -50.5,69.5
- parent: 2
- - uid: 22833
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-21.5
- parent: 2
- - uid: 22834
- components:
- - type: Transform
- pos: -79.5,-41.5
- parent: 2
- - uid: 22835
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-21.5
- parent: 2
- - uid: 22836
- components:
- - type: Transform
- pos: -56.5,-53.5
- parent: 2
- - uid: 22837
- components:
- - type: Transform
- pos: -75.5,39.5
- parent: 2
- - uid: 22838
- components:
- - type: Transform
- pos: 74.5,-52.5
- parent: 2
- - uid: 22839
- components:
- - type: Transform
- pos: -2.5,-14.5
- parent: 2
- - uid: 22840
- components:
- - type: Transform
- pos: 58.5,-54.5
- parent: 2
- - uid: 22841
- components:
- - type: Transform
- pos: 50.5,-62.5
- parent: 2
- - uid: 22842
- components:
- - type: Transform
- pos: 73.5,-52.5
- parent: 2
- - uid: 22843
- components:
- - type: Transform
- pos: 23.5,3.5
- parent: 2
- - uid: 22844
- components:
- - type: Transform
- pos: 11.5,38.5
- parent: 2
- - uid: 22845
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,36.5
- parent: 2
- - uid: 22846
- components:
- - type: Transform
- pos: -22.5,70.5
- parent: 2
- - uid: 22847
- components:
- - type: Transform
- pos: 56.5,-58.5
- parent: 2
- - uid: 22848
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,88.5
- parent: 2
- - uid: 22849
- components:
- - type: Transform
- pos: 57.5,-47.5
- parent: 2
- - uid: 22850
- components:
- - type: Transform
- pos: -25.5,70.5
- parent: 2
- - uid: 22851
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,35.5
- parent: 2
- - uid: 22852
- components:
- - type: Transform
- pos: 54.5,-19.5
- parent: 2
- - uid: 22853
- components:
- - type: Transform
- pos: 9.5,38.5
- parent: 2
- - uid: 22854
- components:
- - type: Transform
- pos: 78.5,-16.5
- parent: 2
- - uid: 22855
- components:
- - type: Transform
- pos: -83.5,79.5
- parent: 2
- - uid: 22856
- components:
- - type: Transform
- pos: 13.5,74.5
- parent: 2
- - uid: 22857
- components:
- - type: Transform
- pos: -0.5,30.5
- parent: 2
- - uid: 22858
- components:
- - type: Transform
- pos: -8.5,79.5
- parent: 2
- - uid: 22859
- components:
- - type: Transform
- pos: 74.5,-12.5
- parent: 2
- - uid: 22860
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,18.5
- parent: 2
- - uid: 22861
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-68.5
- parent: 2
- - uid: 22862
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-68.5
- parent: 2
- - uid: 22863
- components:
- - type: Transform
- pos: -21.5,3.5
- parent: 2
- - uid: 22864
- components:
- - type: Transform
- pos: 13.5,75.5
- parent: 2
- - uid: 22865
- components:
- - type: Transform
- pos: -15.5,-82.5
- parent: 2
- - uid: 22866
- components:
- - type: Transform
- pos: -26.5,79.5
- parent: 2
- - uid: 22867
- components:
- - type: Transform
- pos: -13.5,-82.5
- parent: 2
- - uid: 22868
- components:
- - type: Transform
- pos: -36.5,28.5
- parent: 2
- - uid: 22869
- components:
- - type: Transform
- pos: -2.5,-23.5
- parent: 2
- - uid: 22870
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,4.5
- parent: 2
- - uid: 22871
- components:
- - type: Transform
- pos: -57.5,35.5
- parent: 2
- - uid: 22872
- components:
- - type: Transform
- pos: -29.5,-32.5
- parent: 2
- - uid: 22873
- components:
- - type: Transform
- pos: -56.5,58.5
- parent: 2
- - uid: 22874
- components:
- - type: Transform
- pos: -40.5,-24.5
- parent: 2
- - uid: 22875
- components:
- - type: Transform
- pos: 25.5,-69.5
- parent: 2
- - uid: 22876
- components:
- - type: Transform
- pos: 26.5,-70.5
- parent: 2
- - uid: 22877
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,0.5
- parent: 2
- - uid: 22878
- components:
- - type: Transform
- pos: -48.5,-26.5
- parent: 2
- - uid: 22879
- components:
- - type: Transform
- pos: 15.5,-29.5
- parent: 2
- - uid: 22880
- components:
- - type: Transform
- pos: -48.5,-28.5
- parent: 2
- - uid: 22881
- components:
- - type: Transform
- pos: 2.5,-33.5
- parent: 2
- - uid: 22882
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-0.5
- parent: 2
- - uid: 22883
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,-19.5
- parent: 2
- - uid: 22884
- components:
- - type: Transform
- pos: -11.5,-21.5
- parent: 2
- - uid: 22885
- components:
- - type: Transform
- pos: -13.5,21.5
- parent: 2
- - uid: 22886
- components:
- - type: Transform
- pos: -4.5,-11.5
- parent: 2
- - uid: 22887
- components:
- - type: Transform
- pos: 9.5,-21.5
- parent: 2
- - uid: 22888
- components:
- - type: Transform
- pos: 76.5,-19.5
- parent: 2
- - uid: 22889
- components:
- - type: Transform
- pos: -57.5,8.5
- parent: 2
- - uid: 22890
- components:
- - type: Transform
- pos: 24.5,33.5
- parent: 2
- - uid: 22891
- components:
- - type: Transform
- pos: 37.5,53.5
- parent: 2
- - uid: 22892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,88.5
- parent: 2
- - uid: 22893
- components:
- - type: Transform
- pos: -77.5,64.5
- parent: 2
- - uid: 22894
- components:
- - type: Transform
- pos: -61.5,-48.5
- parent: 2
- - uid: 22895
- components:
- - type: Transform
- pos: -2.5,70.5
- parent: 2
- - uid: 22896
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,95.5
- parent: 2
- - uid: 22897
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,91.5
- parent: 2
- - uid: 22898
- components:
- - type: Transform
- pos: 33.5,53.5
- parent: 2
- - uid: 22899
- components:
- - type: Transform
- pos: 24.5,39.5
- parent: 2
- - uid: 22900
- components:
- - type: Transform
- pos: 34.5,53.5
- parent: 2
- - uid: 22901
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,8.5
- parent: 2
- - uid: 22902
- components:
- - type: Transform
- pos: 72.5,-25.5
- parent: 2
- - uid: 22903
- components:
- - type: Transform
- pos: -48.5,-29.5
- parent: 2
- - uid: 22904
- components:
- - type: Transform
- pos: 19.5,-42.5
- parent: 2
- - uid: 22905
- components:
- - type: Transform
- pos: -75.5,38.5
- parent: 2
- - uid: 22906
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,7.5
- parent: 2
- - uid: 22907
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,3.5
- parent: 2
- - uid: 22908
- components:
- - type: Transform
- pos: 12.5,16.5
- parent: 2
- - uid: 22909
- components:
- - type: Transform
- pos: -56.5,8.5
- parent: 2
- - uid: 22910
- components:
- - type: Transform
- pos: 35.5,53.5
- parent: 2
- - uid: 22911
- components:
- - type: Transform
- pos: 22.5,60.5
- parent: 2
- - uid: 22912
- components:
- - type: Transform
- pos: 36.5,53.5
- parent: 2
- - uid: 22913
- components:
- - type: Transform
- pos: 77.5,-27.5
- parent: 2
- - uid: 22914
- components:
- - type: Transform
- pos: 4.5,72.5
- parent: 2
- - uid: 22915
- components:
- - type: Transform
- pos: 4.5,73.5
- parent: 2
- - uid: 22916
- components:
- - type: Transform
- pos: -36.5,22.5
- parent: 2
- - uid: 22917
- components:
- - type: Transform
- pos: -37.5,19.5
- parent: 2
- - uid: 22918
- components:
- - type: Transform
- pos: -35.5,20.5
- parent: 2
- - uid: 22919
- components:
- - type: Transform
- pos: 16.5,-47.5
- parent: 2
- - uid: 22920
- components:
- - type: Transform
- pos: 18.5,-47.5
- parent: 2
- - uid: 22921
- components:
- - type: Transform
- pos: 22.5,-56.5
- parent: 2
- - uid: 22922
- components:
- - type: Transform
- pos: -64.5,68.5
- parent: 2
- - uid: 22923
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,3.5
- parent: 2
- - uid: 22924
- components:
- - type: Transform
- pos: -8.5,-82.5
- parent: 2
- - uid: 22925
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,4.5
- parent: 2
- - uid: 22926
- components:
- - type: Transform
- pos: 2.5,-35.5
- parent: 2
- - uid: 22927
- components:
- - type: Transform
- pos: 19.5,-46.5
- parent: 2
- - uid: 22928
- components:
- - type: Transform
- pos: -105.5,-7.5
- parent: 2
- - uid: 22929
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,1.5
- parent: 2
- - uid: 22930
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,6.5
- parent: 2
- - uid: 22931
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,4.5
- parent: 2
- - uid: 22932
- components:
- - type: Transform
- pos: -6.5,-44.5
- parent: 2
- - uid: 22933
- components:
- - type: Transform
- pos: 25.5,-44.5
- parent: 2
- - uid: 22934
- components:
- - type: Transform
- pos: 12.5,21.5
- parent: 2
- - uid: 22935
- components:
- - type: Transform
- pos: 29.5,-64.5
- parent: 2
- - uid: 22936
- components:
- - type: Transform
- pos: 25.5,-64.5
- parent: 2
- - uid: 22937
- components:
- - type: Transform
- pos: 8.5,21.5
- parent: 2
- - uid: 22938
- components:
- - type: Transform
- pos: 23.5,-31.5
- parent: 2
- - uid: 22939
- components:
- - type: Transform
- pos: 28.5,-64.5
- parent: 2
- - uid: 22940
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,4.5
- parent: 2
- - uid: 22941
- components:
- - type: Transform
- pos: 11.5,21.5
- parent: 2
- - uid: 22942
- components:
- - type: Transform
- pos: 13.5,21.5
- parent: 2
- - uid: 22943
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-18.5
- parent: 2
- - uid: 22944
- components:
- - type: Transform
- pos: 19.5,-56.5
- parent: 2
- - uid: 22945
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,19.5
- parent: 2
- - uid: 22946
- components:
- - type: Transform
- pos: 20.5,92.5
- parent: 2
- - uid: 22947
- components:
- - type: Transform
- pos: 76.5,-12.5
- parent: 2
- - uid: 22948
- components:
- - type: Transform
- pos: 66.5,-19.5
- parent: 2
- - uid: 22949
- components:
- - type: Transform
- pos: -5.5,70.5
- parent: 2
- - uid: 22950
- components:
- - type: Transform
- pos: -15.5,20.5
- parent: 2
- - uid: 22951
- components:
- - type: Transform
- pos: -4.5,21.5
- parent: 2
- - uid: 22952
- components:
- - type: Transform
- pos: -3.5,19.5
- parent: 2
- - uid: 22953
- components:
- - type: Transform
- pos: -6.5,21.5
- parent: 2
- - uid: 22954
- components:
- - type: Transform
- pos: -0.5,19.5
- parent: 2
- - uid: 22955
- components:
- - type: Transform
- pos: 25.5,-46.5
- parent: 2
- - uid: 22956
- components:
- - type: Transform
- pos: -14.5,21.5
- parent: 2
- - uid: 22957
- components:
- - type: Transform
- pos: -13.5,13.5
- parent: 2
- - uid: 22958
- components:
- - type: Transform
- pos: 23.5,-41.5
- parent: 2
- - uid: 22959
- components:
- - type: Transform
- pos: 21.5,-41.5
- parent: 2
- - uid: 22960
- components:
- - type: Transform
- pos: 59.5,-50.5
- parent: 2
- - uid: 22961
- components:
- - type: Transform
- pos: 19.5,-31.5
- parent: 2
- - uid: 22962
- components:
- - type: Transform
- pos: 66.5,-12.5
- parent: 2
- - uid: 22963
- components:
- - type: Transform
- pos: -4.5,-28.5
- parent: 2
- - uid: 22964
- components:
- - type: Transform
- pos: -8.5,-21.5
- parent: 2
- - uid: 22965
- components:
- - type: Transform
- pos: -4.5,-21.5
- parent: 2
- - uid: 22966
- components:
- - type: Transform
- pos: 22.5,-32.5
- parent: 2
- - uid: 22967
- components:
- - type: Transform
- pos: 62.5,-6.5
- parent: 2
- - uid: 22968
- components:
- - type: Transform
- pos: 42.5,-71.5
- parent: 2
- - uid: 22969
- components:
- - type: Transform
- pos: 2.5,-46.5
- parent: 2
- - uid: 22970
- components:
- - type: Transform
- pos: 38.5,-71.5
- parent: 2
- - uid: 22971
- components:
- - type: Transform
- pos: -29.5,-36.5
- parent: 2
- - uid: 22972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,1.5
- parent: 2
- - uid: 22973
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-19.5
- parent: 2
- - uid: 22974
- components:
- - type: Transform
- pos: 83.5,-17.5
- parent: 2
- - uid: 22975
- components:
- - type: Transform
- pos: 25.5,-37.5
- parent: 2
- - uid: 22976
- components:
- - type: Transform
- pos: 84.5,-20.5
- parent: 2
- - uid: 22977
- components:
- - type: Transform
- pos: 31.5,-61.5
- parent: 2
- - uid: 22978
- components:
- - type: Transform
- pos: 40.5,-58.5
- parent: 2
- - uid: 22979
- components:
- - type: Transform
- pos: -105.5,-4.5
- parent: 2
- - uid: 22980
- components:
- - type: Transform
- pos: 19.5,-37.5
- parent: 2
- - uid: 22981
- components:
- - type: Transform
- pos: 11.5,-12.5
- parent: 2
- - uid: 22982
- components:
- - type: Transform
- pos: 11.5,-16.5
- parent: 2
- - uid: 22983
- components:
- - type: Transform
- pos: -16.5,16.5
- parent: 2
- - uid: 22984
- components:
- - type: Transform
- pos: -16.5,-26.5
- parent: 2
- - uid: 22985
- components:
- - type: Transform
- pos: 20.5,-32.5
- parent: 2
- - uid: 22986
- components:
- - type: Transform
- pos: 76.5,26.5
- parent: 2
- - uid: 22987
- components:
- - type: Transform
- pos: 65.5,-22.5
- parent: 2
- - uid: 22988
- components:
- - type: Transform
- pos: -50.5,-15.5
- parent: 2
- - uid: 22989
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,6.5
- parent: 2
- - uid: 22990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,6.5
- parent: 2
- - uid: 22991
- components:
- - type: Transform
- pos: -72.5,9.5
- parent: 2
- - uid: 22992
- components:
- - type: Transform
- pos: -68.5,7.5
- parent: 2
- - uid: 22993
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-16.5
- parent: 2
- - uid: 22994
- components:
- - type: Transform
- pos: -33.5,3.5
- parent: 2
- - uid: 22995
- components:
- - type: Transform
- pos: -54.5,43.5
- parent: 2
- - uid: 22996
- components:
- - type: Transform
- pos: -34.5,22.5
- parent: 2
- - uid: 22997
- components:
- - type: Transform
- pos: -66.5,-27.5
- parent: 2
- - uid: 22998
- components:
- - type: Transform
- pos: 77.5,-17.5
- parent: 2
- - uid: 22999
- components:
- - type: Transform
- pos: 78.5,-17.5
- parent: 2
- - uid: 23000
- components:
- - type: Transform
- pos: -63.5,68.5
- parent: 2
- - uid: 23001
- components:
- - type: Transform
- pos: -21.5,23.5
- parent: 2
- - uid: 23002
- components:
- - type: Transform
- pos: -77.5,8.5
- parent: 2
- - uid: 23003
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,0.5
- parent: 2
- - uid: 23004
- components:
- - type: Transform
- pos: 4.5,21.5
- parent: 2
- - uid: 23005
- components:
- - type: Transform
- pos: -5.5,19.5
- parent: 2
- - uid: 23006
- components:
- - type: Transform
- pos: -0.5,21.5
- parent: 2
- - uid: 23007
- components:
- - type: Transform
- pos: 5.5,21.5
- parent: 2
- - uid: 23008
- components:
- - type: Transform
- pos: 0.5,21.5
- parent: 2
- - uid: 23009
- components:
- - type: Transform
- pos: -6.5,19.5
- parent: 2
- - uid: 23010
- components:
- - type: Transform
- pos: -15.5,-38.5
- parent: 2
- - uid: 23011
- components:
- - type: Transform
- pos: -8.5,17.5
- parent: 2
- - uid: 23012
- components:
- - type: Transform
- pos: -15.5,-42.5
- parent: 2
- - uid: 23013
- components:
- - type: Transform
- pos: -17.5,-44.5
- parent: 2
- - uid: 23014
- components:
- - type: Transform
- pos: -19.5,-44.5
- parent: 2
- - uid: 23015
- components:
- - type: Transform
- pos: -7.5,17.5
- parent: 2
- - uid: 23016
- components:
- - type: Transform
- pos: -1.5,21.5
- parent: 2
- - uid: 23017
- components:
- - type: Transform
- pos: -3.5,21.5
- parent: 2
- - uid: 23018
- components:
- - type: Transform
- pos: 3.5,21.5
- parent: 2
- - uid: 23019
- components:
- - type: Transform
- pos: 2.5,21.5
- parent: 2
- - uid: 23020
- components:
- - type: Transform
- pos: 10.5,-28.5
- parent: 2
- - uid: 23021
- components:
- - type: Transform
- pos: -16.5,-36.5
- parent: 2
- - uid: 23022
- components:
- - type: Transform
- pos: 15.5,16.5
- parent: 2
- - uid: 23023
- components:
- - type: Transform
- pos: -70.5,-48.5
- parent: 2
- - uid: 23024
- components:
- - type: Transform
- pos: 30.5,64.5
- parent: 2
- - uid: 23025
- components:
- - type: Transform
- pos: -61.5,-13.5
- parent: 2
- - uid: 23026
- components:
- - type: Transform
- pos: 61.5,-8.5
- parent: 2
- - uid: 23027
- components:
- - type: Transform
- pos: 70.5,-14.5
- parent: 2
- - uid: 23028
- components:
- - type: Transform
- pos: -66.5,-25.5
- parent: 2
- - uid: 23029
- components:
- - type: Transform
- pos: 66.5,-22.5
- parent: 2
- - uid: 23030
- components:
- - type: Transform
- pos: -44.5,-78.5
- parent: 2
- - uid: 23031
- components:
- - type: Transform
- pos: -11.5,-38.5
- parent: 2
- - uid: 23032
- components:
- - type: Transform
- pos: 23.5,-25.5
- parent: 2
- - uid: 23033
- components:
- - type: Transform
- pos: 68.5,-14.5
- parent: 2
- - uid: 23034
- components:
- - type: Transform
- pos: 33.5,-66.5
- parent: 2
- - uid: 23035
- components:
- - type: Transform
- pos: 2.5,25.5
- parent: 2
- - uid: 23036
- components:
- - type: Transform
- pos: 16.5,-56.5
- parent: 2
- - uid: 23037
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,67.5
- parent: 2
- - uid: 23038
- components:
- - type: Transform
- pos: 14.5,-28.5
- parent: 2
- - uid: 23039
- components:
- - type: Transform
- pos: -42.5,-53.5
- parent: 2
- - uid: 23040
- components:
- - type: Transform
- pos: -56.5,16.5
- parent: 2
- - uid: 23041
- components:
- - type: Transform
- pos: -8.5,21.5
- parent: 2
- - uid: 23042
- components:
- - type: Transform
- pos: -15.5,-36.5
- parent: 2
- - uid: 23043
- components:
- - type: Transform
- pos: 6.5,17.5
- parent: 2
- - uid: 23044
- components:
- - type: Transform
- pos: 3.5,19.5
- parent: 2
- - uid: 23045
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-33.5
- parent: 2
- - uid: 23046
- components:
- - type: Transform
- pos: 4.5,19.5
- parent: 2
- - uid: 23047
- components:
- - type: Transform
- pos: -41.5,-49.5
- parent: 2
- - uid: 23048
- components:
- - type: Transform
- pos: -75.5,8.5
- parent: 2
- - uid: 23049
- components:
- - type: Transform
- pos: -52.5,43.5
- parent: 2
- - uid: 23050
- components:
- - type: Transform
- pos: -13.5,16.5
- parent: 2
- - uid: 23051
- components:
- - type: Transform
- pos: 2.5,19.5
- parent: 2
- - uid: 23052
- components:
- - type: Transform
- pos: -40.5,-49.5
- parent: 2
- - uid: 23053
- components:
- - type: Transform
- pos: -66.5,-23.5
- parent: 2
- - uid: 23054
- components:
- - type: Transform
- pos: -70.5,9.5
- parent: 2
- - uid: 23055
- components:
- - type: Transform
- pos: 0.5,19.5
- parent: 2
- - uid: 23056
- components:
- - type: Transform
- pos: 13.5,-32.5
- parent: 2
- - uid: 23057
- components:
- - type: Transform
- pos: -75.5,29.5
- parent: 2
- - uid: 23058
- components:
- - type: Transform
- pos: -50.5,20.5
- parent: 2
- - uid: 23059
- components:
- - type: Transform
- pos: 43.5,-69.5
- parent: 2
- - uid: 23060
- components:
- - type: Transform
- pos: -50.5,23.5
- parent: 2
- - uid: 23061
- components:
- - type: Transform
- pos: 19.5,-30.5
- parent: 2
- - uid: 23062
- components:
- - type: Transform
- pos: 42.5,16.5
- parent: 2
- - uid: 23063
- components:
- - type: Transform
- pos: 57.5,-45.5
- parent: 2
- - uid: 23064
- components:
- - type: Transform
- pos: 58.5,-45.5
- parent: 2
- - uid: 23065
- components:
- - type: Transform
- pos: 54.5,-7.5
- parent: 2
- - uid: 23066
- components:
- - type: Transform
- pos: 50.5,-63.5
- parent: 2
- - uid: 23067
- components:
- - type: Transform
- pos: 79.5,-35.5
- parent: 2
- - uid: 23068
- components:
- - type: Transform
- pos: 78.5,-35.5
- parent: 2
- - uid: 23069
- components:
- - type: Transform
- pos: 80.5,-35.5
- parent: 2
- - uid: 23070
- components:
- - type: Transform
- pos: 77.5,-36.5
- parent: 2
- - uid: 23071
- components:
- - type: Transform
- pos: -11.5,-69.5
- parent: 2
- - uid: 23072
- components:
- - type: Transform
- pos: -57.5,4.5
- parent: 2
- - uid: 23073
- components:
- - type: Transform
- pos: 11.5,65.5
- parent: 2
- - uid: 23074
- components:
- - type: Transform
- pos: 13.5,69.5
- parent: 2
- - uid: 23075
- components:
- - type: Transform
- pos: 26.5,62.5
- parent: 2
- - uid: 23076
- components:
- - type: Transform
- pos: 32.5,-10.5
- parent: 2
- - uid: 23077
- components:
- - type: Transform
- pos: 23.5,-8.5
- parent: 2
- - uid: 23078
- components:
- - type: Transform
- pos: 28.5,62.5
- parent: 2
- - uid: 23079
- components:
- - type: Transform
- pos: 32.5,58.5
- parent: 2
- - uid: 23080
- components:
- - type: Transform
- pos: 32.5,57.5
- parent: 2
- - uid: 23081
- components:
- - type: Transform
- pos: 74.5,-27.5
- parent: 2
- - uid: 23082
- components:
- - type: Transform
- pos: 29.5,62.5
- parent: 2
- - uid: 23083
- components:
- - type: Transform
- pos: 10.5,65.5
- parent: 2
- - uid: 23084
- components:
- - type: Transform
- pos: 77.5,-52.5
- parent: 2
- - uid: 23085
- components:
- - type: Transform
- pos: -25.5,-79.5
- parent: 2
- - uid: 23086
- components:
- - type: Transform
- pos: -5.5,-62.5
- parent: 2
- - uid: 23087
- components:
- - type: Transform
- pos: -17.5,70.5
- parent: 2
- - uid: 23088
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-57.5
- parent: 2
- - uid: 23089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,97.5
- parent: 2
- - uid: 23090
- components:
- - type: Transform
- pos: -21.5,70.5
- parent: 2
- - uid: 23091
- components:
- - type: Transform
- pos: -42.5,-24.5
- parent: 2
- - uid: 23092
- components:
- - type: Transform
- pos: -32.5,79.5
- parent: 2
- - uid: 23093
- components:
- - type: Transform
- pos: -74.5,17.5
- parent: 2
- - uid: 23094
- components:
- - type: Transform
- pos: -42.5,61.5
- parent: 2
- - uid: 23095
- components:
- - type: Transform
- pos: -42.5,60.5
- parent: 2
- - uid: 23096
- components:
- - type: Transform
- pos: 18.5,88.5
- parent: 2
- - uid: 23097
- components:
- - type: Transform
- pos: 18.5,86.5
- parent: 2
- - uid: 23098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,91.5
- parent: 2
- - uid: 23099
- components:
- - type: Transform
- pos: 16.5,89.5
- parent: 2
- - uid: 23100
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,35.5
- parent: 2
- - uid: 23101
- components:
- - type: Transform
- pos: 3.5,32.5
- parent: 2
- - uid: 23102
- components:
- - type: Transform
- pos: 17.5,88.5
- parent: 2
- - uid: 23103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,92.5
- parent: 2
- - uid: 23104
- components:
- - type: Transform
- pos: -39.5,64.5
- parent: 2
- - uid: 23105
- components:
- - type: Transform
- pos: 16.5,67.5
- parent: 2
- - uid: 23106
- components:
- - type: Transform
- pos: 68.5,-27.5
- parent: 2
- - uid: 23107
- components:
- - type: Transform
- pos: 9.5,41.5
- parent: 2
- - uid: 23108
- components:
- - type: Transform
- pos: 8.5,45.5
- parent: 2
- - uid: 23109
- components:
- - type: Transform
- pos: 6.5,92.5
- parent: 2
- - uid: 23110
- components:
- - type: Transform
- pos: 4.5,92.5
- parent: 2
- - uid: 23111
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-64.5
- parent: 2
- - uid: 23112
- components:
- - type: Transform
- pos: -27.5,7.5
- parent: 2
- - uid: 23113
- components:
- - type: Transform
- pos: -33.5,-9.5
- parent: 2
- - uid: 23114
- components:
- - type: Transform
- pos: 32.5,-59.5
- parent: 2
- - uid: 23115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-18.5
- parent: 2
- - uid: 23116
- components:
- - type: Transform
- pos: 82.5,-22.5
- parent: 2
- - uid: 23117
- components:
- - type: Transform
- pos: 76.5,-25.5
- parent: 2
- - uid: 23118
- components:
- - type: Transform
- pos: 35.5,-58.5
- parent: 2
- - uid: 23119
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,1.5
- parent: 2
- - uid: 23120
- components:
- - type: Transform
- pos: 3.5,-21.5
- parent: 2
- - uid: 23121
- components:
- - type: Transform
- pos: 6.5,-21.5
- parent: 2
- - uid: 23122
- components:
- - type: Transform
- pos: 7.5,-21.5
- parent: 2
- - uid: 23123
- components:
- - type: Transform
- pos: 39.5,-75.5
- parent: 2
- - uid: 23124
- components:
- - type: Transform
- pos: -61.5,-7.5
- parent: 2
- - uid: 23125
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 20.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 23817
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#17E8E2FF'
-- proto: Gauze
- entities:
- - uid: 1501
- components:
- - type: Transform
- parent: 1499
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1502
- components:
- - type: Transform
- parent: 1499
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 23818
- components:
- - type: Transform
- pos: 24.5022,-31.36834
- parent: 2
- - uid: 23819
- components:
- - type: Transform
- pos: 25.122957,-24.40516
- parent: 2
- - uid: 23820
- components:
- - type: Transform
- pos: 35.5,-41.5
- parent: 2
-- proto: GeneratorBasic
- entities:
- - uid: 23821
- components:
- - type: Transform
- pos: -49.5,-13.5
- parent: 2
-- proto: GeneratorRTG
- entities:
- - uid: 23822
- components:
- - type: Transform
- pos: 13.5,-5.5
- parent: 2
- - uid: 23823
- components:
- - type: Transform
- pos: 4.5,-37.5
- parent: 2
- - uid: 23824
- components:
- - type: Transform
- pos: -121.5,26.5
- parent: 2
- - uid: 23825
- components:
- - type: Transform
- pos: -122.5,26.5
- parent: 2
- - uid: 23826
- components:
- - type: Transform
- pos: -123.5,26.5
- parent: 2
-- proto: GeneratorRTGDamaged
- entities:
- - uid: 23827
- components:
- - type: Transform
- pos: -69.5,0.5
- parent: 2
- - uid: 23828
- components:
- - type: Transform
- pos: -69.5,-1.5
- parent: 2
- - uid: 38712
- components:
- - type: Transform
- pos: -69.5,-0.5
- parent: 2
-- proto: GeneratorWallmountAPU
- entities:
- - uid: 38753
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 38714
- - type: PowerSupplier
- supplyRate: 60000
-- proto: Girder
- entities:
- - uid: 23829
- components:
- - type: Transform
- pos: -67.5,-39.5
- parent: 2
- - uid: 23830
- components:
- - type: Transform
- pos: 24.5,-19.5
- parent: 2
- - uid: 23831
- components:
- - type: Transform
- pos: 7.5,56.5
- parent: 2
- - uid: 23832
- components:
- - type: Transform
- pos: 39.5,-47.5
- parent: 2
- - uid: 23833
- components:
- - type: Transform
- pos: 46.5,-9.5
- parent: 2
- - uid: 23834
- components:
- - type: Transform
- pos: -66.5,-31.5
- parent: 2
- - uid: 23835
- components:
- - type: Transform
- pos: 41.5,-2.5
- parent: 2
- - uid: 23836
- components:
- - type: Transform
- pos: -10.5,-56.5
- parent: 2
- - uid: 23837
- components:
- - type: Transform
- pos: 49.5,-39.5
- parent: 2
- - uid: 23838
- components:
- - type: Transform
- pos: -73.5,-21.5
- parent: 2
- - uid: 23839
- components:
- - type: Transform
- pos: 22.5,-18.5
- parent: 2
- - uid: 23840
- components:
- - type: Transform
- pos: -59.5,-20.5
- parent: 2
- - uid: 23841
- components:
- - type: Transform
- pos: 48.5,-11.5
- parent: 2
- - uid: 23842
- components:
- - type: Transform
- pos: 20.5,-55.5
- parent: 2
- - uid: 23843
- components:
- - type: Transform
- pos: 41.5,-26.5
- parent: 2
- - uid: 23844
- components:
- - type: Transform
- pos: 5.5,-55.5
- parent: 2
- - uid: 23845
- components:
- - type: Transform
- pos: -30.5,-18.5
- parent: 2
- - uid: 23846
- components:
- - type: Transform
- pos: -68.5,-19.5
- parent: 2
- - uid: 23847
- components:
- - type: Transform
- pos: -29.5,-18.5
- parent: 2
- - uid: 23848
- components:
- - type: Transform
- pos: 35.5,-4.5
- parent: 2
- - uid: 23849
- components:
- - type: Transform
- pos: 14.5,-54.5
- parent: 2
- - uid: 23850
- components:
- - type: Transform
- pos: 37.5,-67.5
- parent: 2
- - uid: 23851
- components:
- - type: Transform
- pos: 45.5,-6.5
- parent: 2
- - uid: 23852
- components:
- - type: Transform
- pos: -34.5,-18.5
- parent: 2
- - uid: 23853
- components:
- - type: Transform
- pos: -19.5,-62.5
- parent: 2
- - uid: 23854
- components:
- - type: Transform
- pos: 36.5,-53.5
- parent: 2
- - uid: 23855
- components:
- - type: Transform
- pos: 13.5,-83.5
- parent: 2
-- proto: GoldOre1
- entities:
- - uid: 23856
- components:
- - type: Transform
- pos: 85.46742,-0.42007777
- parent: 2
-- proto: GravityGenerator
- entities:
- - uid: 23857
- components:
- - type: Transform
- pos: -71.5,6.5
- parent: 2
-- proto: GravityGeneratorMini
- entities:
- - uid: 38754
- components:
- - type: Transform
- pos: 1.5,-2.5
- parent: 38714
- - type: Visibility
- layer: 12
-- proto: Grille
- entities:
- - uid: 23858
- components:
- - type: Transform
- pos: 8.5,32.5
- parent: 2
- - uid: 23859
- components:
- - type: Transform
- pos: -0.5,63.5
- parent: 2
- - uid: 23860
- components:
- - type: Transform
- pos: -32.5,78.5
- parent: 2
- - uid: 23861
- components:
- - type: Transform
- pos: -33.5,76.5
- parent: 2
- - uid: 23862
- components:
- - type: Transform
- pos: 5.5,86.5
- parent: 2
- - uid: 23863
- components:
- - type: Transform
- pos: 7.5,21.5
- parent: 2
- - uid: 23864
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,71.5
- parent: 2
- - uid: 23865
- components:
- - type: Transform
- pos: -32.5,76.5
- parent: 2
- - uid: 23866
- components:
- - type: Transform
- pos: -33.5,78.5
- parent: 2
- - uid: 23867
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-9.5
- parent: 2
- - uid: 23868
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-10.5
- parent: 2
- - uid: 23869
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-12.5
- parent: 2
- - uid: 23870
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-10.5
- parent: 2
- - uid: 23871
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-11.5
- parent: 2
- - uid: 23872
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-11.5
- parent: 2
- - uid: 23873
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-10.5
- parent: 2
- - uid: 23874
- components:
- - type: Transform
- pos: 1.5,-6.5
- parent: 2
- - uid: 23875
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.5,-4.5
- parent: 2
- - uid: 23876
- components:
- - type: Transform
- pos: 49.5,13.5
- parent: 2
- - uid: 23877
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,33.5
- parent: 2
- - uid: 23878
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,16.5
- parent: 2
- - uid: 23879
- components:
- - type: Transform
- pos: -16.5,3.5
- parent: 2
- - uid: 23880
- components:
- - type: Transform
- pos: 3.5,-6.5
- parent: 2
- - uid: 23881
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,18.5
- parent: 2
- - uid: 23882
- components:
- - type: Transform
- pos: 44.5,21.5
- parent: 2
- - uid: 23883
- components:
- - type: Transform
- pos: -16.5,0.5
- parent: 2
- - uid: 23884
- components:
- - type: Transform
- pos: -82.5,13.5
- parent: 2
- - uid: 23885
- components:
- - type: Transform
- pos: -56.5,64.5
- parent: 2
- - uid: 23886
- components:
- - type: Transform
- pos: -31.5,83.5
- parent: 2
- - uid: 23887
- components:
- - type: Transform
- pos: 27.5,33.5
- parent: 2
- - uid: 23888
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,3.5
- parent: 2
- - uid: 23889
- components:
- - type: Transform
- pos: 42.5,24.5
- parent: 2
- - uid: 23890
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,94.5
- parent: 2
- - uid: 23891
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-45.5
- parent: 2
- - uid: 23892
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-46.5
- parent: 2
- - uid: 23893
- components:
- - type: Transform
- pos: -23.5,3.5
- parent: 2
- - uid: 23894
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,6.5
- parent: 2
- - uid: 23895
- components:
- - type: Transform
- pos: 49.5,17.5
- parent: 2
- - uid: 23896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,6.5
- parent: 2
- - uid: 23897
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,70.5
- parent: 2
- - uid: 23898
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,6.5
- parent: 2
- - uid: 23899
- components:
- - type: Transform
- pos: -83.5,-8.5
- parent: 2
- - uid: 23900
- components:
- - type: Transform
- pos: -61.5,64.5
- parent: 2
- - uid: 23901
- components:
- - type: Transform
- pos: 30.5,7.5
- parent: 2
- - uid: 23902
- components:
- - type: Transform
- pos: -60.5,65.5
- parent: 2
- - uid: 23903
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,36.5
- parent: 2
- - uid: 23904
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 89.5,-2.5
- parent: 2
- - uid: 23905
- components:
- - type: Transform
- pos: 56.5,-1.5
- parent: 2
- - uid: 23906
- components:
- - type: Transform
- pos: -72.5,20.5
- parent: 2
- - uid: 23907
- components:
- - type: Transform
- pos: 31.5,53.5
- parent: 2
- - uid: 23908
- components:
- - type: Transform
- pos: -72.5,22.5
- parent: 2
- - uid: 23909
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,69.5
- parent: 2
- - uid: 23910
- components:
- - type: Transform
- pos: -31.5,73.5
- parent: 2
- - uid: 23911
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,4.5
- parent: 2
- - uid: 23912
- components:
- - type: Transform
- pos: 65.5,-5.5
- parent: 2
- - uid: 23913
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,65.5
- parent: 2
- - uid: 23914
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,97.5
- parent: 2
- - uid: 23915
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,4.5
- parent: 2
- - uid: 23916
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,33.5
- parent: 2
- - uid: 23917
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,91.5
- parent: 2
- - uid: 23918
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,33.5
- parent: 2
- - uid: 23919
- components:
- - type: Transform
- pos: 99.5,-3.5
- parent: 2
- - uid: 23920
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-50.5
- parent: 2
- - uid: 23921
- components:
- - type: Transform
- pos: 97.5,-4.5
- parent: 2
- - uid: 23922
- components:
- - type: Transform
- pos: -83.5,-9.5
- parent: 2
- - uid: 23923
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,33.5
- parent: 2
- - uid: 23924
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-3.5
- parent: 2
- - uid: 23925
- components:
- - type: Transform
- pos: -69.5,56.5
- parent: 2
- - uid: 23926
- components:
- - type: Transform
- pos: -5.5,-6.5
- parent: 2
- - uid: 23927
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,99.5
- parent: 2
- - uid: 23928
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,30.5
- parent: 2
- - uid: 23929
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,28.5
- parent: 2
- - uid: 23930
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-50.5
- parent: 2
- - uid: 23931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-49.5
- parent: 2
- - uid: 23932
- components:
- - type: Transform
- pos: -82.5,15.5
- parent: 2
- - uid: 23933
- components:
- - type: Transform
- pos: 84.5,-8.5
- parent: 2
- - uid: 23934
- components:
- - type: Transform
- pos: 102.5,-4.5
- parent: 2
- - uid: 23935
- components:
- - type: Transform
- pos: 84.5,-9.5
- parent: 2
- - uid: 23936
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,30.5
- parent: 2
- - uid: 23937
- components:
- - type: Transform
- pos: 45.5,-17.5
- parent: 2
- - uid: 23938
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,30.5
- parent: 2
- - uid: 23939
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,33.5
- parent: 2
- - uid: 23940
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,6.5
- parent: 2
- - uid: 23941
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,-50.5
- parent: 2
- - uid: 23942
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-50.5
- parent: 2
- - uid: 23943
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,32.5
- parent: 2
- - uid: 23944
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,31.5
- parent: 2
- - uid: 23945
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,32.5
- parent: 2
- - uid: 23946
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,30.5
- parent: 2
- - uid: 23947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-49.5
- parent: 2
- - uid: 23948
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,31.5
- parent: 2
- - uid: 23949
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,33.5
- parent: 2
- - uid: 23950
- components:
- - type: Transform
- pos: 92.5,-4.5
- parent: 2
- - uid: 23951
- components:
- - type: Transform
- pos: 93.5,-4.5
- parent: 2
- - uid: 23952
- components:
- - type: Transform
- pos: -26.5,83.5
- parent: 2
- - uid: 23953
- components:
- - type: Transform
- pos: 75.5,17.5
- parent: 2
- - uid: 23954
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-78.5
- parent: 2
- - uid: 23955
- components:
- - type: Transform
- pos: 32.5,53.5
- parent: 2
- - uid: 23956
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,4.5
- parent: 2
- - uid: 23957
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-46.5
- parent: 2
- - uid: 23958
- components:
- - type: Transform
- pos: 65.5,-17.5
- parent: 2
- - uid: 23959
- components:
- - type: Transform
- pos: 64.5,-8.5
- parent: 2
- - uid: 23960
- components:
- - type: Transform
- pos: 67.5,-14.5
- parent: 2
- - uid: 23961
- components:
- - type: Transform
- pos: 50.5,14.5
- parent: 2
- - uid: 23962
- components:
- - type: Transform
- pos: 90.5,-4.5
- parent: 2
- - uid: 23963
- components:
- - type: Transform
- pos: 56.5,-49.5
- parent: 2
- - uid: 23964
- components:
- - type: Transform
- pos: 49.5,15.5
- parent: 2
- - uid: 23965
- components:
- - type: Transform
- pos: 49.5,9.5
- parent: 2
- - uid: 23966
- components:
- - type: Transform
- pos: 64.5,-17.5
- parent: 2
- - uid: 23967
- components:
- - type: Transform
- pos: 83.5,-22.5
- parent: 2
- - uid: 23968
- components:
- - type: Transform
- pos: 65.5,-31.5
- parent: 2
- - uid: 23969
- components:
- - type: Transform
- pos: 76.5,-17.5
- parent: 2
- - uid: 23970
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,4.5
- parent: 2
- - uid: 23971
- components:
- - type: Transform
- pos: 52.5,14.5
- parent: 2
- - uid: 23972
- components:
- - type: Transform
- pos: 48.5,-17.5
- parent: 2
- - uid: 23973
- components:
- - type: Transform
- pos: 58.5,-1.5
- parent: 2
- - uid: 23974
- components:
- - type: Transform
- pos: 30.5,53.5
- parent: 2
- - uid: 23975
- components:
- - type: Transform
- pos: 75.5,15.5
- parent: 2
- - uid: 23976
- components:
- - type: Transform
- pos: 52.5,10.5
- parent: 2
- - uid: 23977
- components:
- - type: Transform
- pos: 75.5,14.5
- parent: 2
- - uid: 23978
- components:
- - type: Transform
- pos: -27.5,72.5
- parent: 2
- - uid: 23979
- components:
- - type: Transform
- pos: -27.5,73.5
- parent: 2
- - uid: 23980
- components:
- - type: Transform
- pos: -27.5,76.5
- parent: 2
- - uid: 23981
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,86.5
- parent: 2
- - uid: 23982
- components:
- - type: Transform
- pos: -28.5,99.5
- parent: 2
- - uid: 23983
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-36.5
- parent: 2
- - uid: 23984
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 84.5,-4.5
- parent: 2
- - uid: 23985
- components:
- - type: Transform
- pos: 95.5,-4.5
- parent: 2
- - uid: 23986
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,88.5
- parent: 2
- - uid: 23987
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,-4.5
- parent: 2
- - uid: 23988
- components:
- - type: Transform
- pos: -26.5,76.5
- parent: 2
- - uid: 23989
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-36.5
- parent: 2
- - uid: 23990
- components:
- - type: Transform
- pos: -25.5,76.5
- parent: 2
- - uid: 23991
- components:
- - type: Transform
- pos: 96.5,-4.5
- parent: 2
- - uid: 23992
- components:
- - type: Transform
- pos: -25.5,78.5
- parent: 2
- - uid: 23993
- components:
- - type: Transform
- pos: -35.5,-40.5
- parent: 2
- - uid: 23994
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 89.5,-1.5
- parent: 2
- - uid: 23995
- components:
- - type: Transform
- pos: 48.5,24.5
- parent: 2
- - uid: 23996
- components:
- - type: Transform
- pos: 48.5,21.5
- parent: 2
- - uid: 23997
- components:
- - type: Transform
- pos: 84.5,-7.5
- parent: 2
- - uid: 23998
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,31.5
- parent: 2
- - uid: 23999
- components:
- - type: Transform
- pos: -26.5,78.5
- parent: 2
- - uid: 24000
- components:
- - type: Transform
- pos: 51.5,20.5
- parent: 2
- - uid: 24001
- components:
- - type: Transform
- pos: 53.5,20.5
- parent: 2
- - uid: 24002
- components:
- - type: Transform
- pos: 75.5,18.5
- parent: 2
- - uid: 24003
- components:
- - type: Transform
- pos: -27.5,78.5
- parent: 2
- - uid: 24004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,6.5
- parent: 2
- - uid: 24005
- components:
- - type: Transform
- pos: 84.5,-22.5
- parent: 2
- - uid: 24006
- components:
- - type: Transform
- pos: 64.5,-31.5
- parent: 2
- - uid: 24007
- components:
- - type: Transform
- pos: 4.5,-6.5
- parent: 2
- - uid: 24008
- components:
- - type: Transform
- pos: 64.5,-15.5
- parent: 2
- - uid: 24009
- components:
- - type: Transform
- pos: 64.5,-24.5
- parent: 2
- - uid: 24010
- components:
- - type: Transform
- pos: 64.5,-13.5
- parent: 2
- - uid: 24011
- components:
- - type: Transform
- pos: 67.5,-25.5
- parent: 2
- - uid: 24012
- components:
- - type: Transform
- pos: 64.5,-14.5
- parent: 2
- - uid: 24013
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,95.5
- parent: 2
- - uid: 24014
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,97.5
- parent: 2
- - uid: 24015
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,99.5
- parent: 2
- - uid: 24016
- components:
- - type: Transform
- pos: -69.5,22.5
- parent: 2
- - uid: 24017
- components:
- - type: Transform
- pos: 66.5,-25.5
- parent: 2
- - uid: 24018
- components:
- - type: Transform
- pos: -16.5,1.5
- parent: 2
- - uid: 24019
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,92.5
- parent: 2
- - uid: 24020
- components:
- - type: Transform
- pos: 46.5,-1.5
- parent: 2
- - uid: 24021
- components:
- - type: Transform
- pos: -16.5,2.5
- parent: 2
- - uid: 24022
- components:
- - type: Transform
- pos: -30.5,99.5
- parent: 2
- - uid: 24023
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,68.5
- parent: 2
- - uid: 24024
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-48.5
- parent: 2
- - uid: 24025
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,4.5
- parent: 2
- - uid: 24026
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.5,1.5
- parent: 2
- - uid: 24027
- components:
- - type: Transform
- pos: -31.5,72.5
- parent: 2
- - uid: 24028
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-36.5
- parent: 2
- - uid: 24029
- components:
- - type: Transform
- pos: -35.5,-43.5
- parent: 2
- - uid: 24030
- components:
- - type: Transform
- pos: 90.5,3.5
- parent: 2
- - uid: 24031
- components:
- - type: Transform
- pos: -29.5,-42.5
- parent: 2
- - uid: 24032
- components:
- - type: Transform
- pos: -7.5,70.5
- parent: 2
- - uid: 24033
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,86.5
- parent: 2
- - uid: 24034
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,85.5
- parent: 2
- - uid: 24035
- components:
- - type: Transform
- pos: 75.5,-14.5
- parent: 2
- - uid: 24036
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,85.5
- parent: 2
- - uid: 24037
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,89.5
- parent: 2
- - uid: 24038
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,3.5
- parent: 2
- - uid: 24039
- components:
- - type: Transform
- pos: 67.5,32.5
- parent: 2
- - uid: 24040
- components:
- - type: Transform
- pos: 71.5,12.5
- parent: 2
- - uid: 24041
- components:
- - type: Transform
- pos: 67.5,31.5
- parent: 2
- - uid: 24042
- components:
- - type: Transform
- pos: 48.5,-1.5
- parent: 2
- - uid: 24043
- components:
- - type: Transform
- pos: -32.5,82.5
- parent: 2
- - uid: 24044
- components:
- - type: Transform
- pos: -68.5,22.5
- parent: 2
- - uid: 24045
- components:
- - type: Transform
- pos: -9.5,73.5
- parent: 2
- - uid: 24046
- components:
- - type: Transform
- pos: 68.5,-25.5
- parent: 2
- - uid: 24047
- components:
- - type: Transform
- pos: -14.5,78.5
- parent: 2
- - uid: 24048
- components:
- - type: Transform
- pos: -9.5,72.5
- parent: 2
- - uid: 24049
- components:
- - type: Transform
- pos: -33.5,83.5
- parent: 2
- - uid: 24050
- components:
- - type: Transform
- pos: -27.5,95.5
- parent: 2
- - uid: 24051
- components:
- - type: Transform
- pos: 7.5,86.5
- parent: 2
- - uid: 24052
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,4.5
- parent: 2
- - uid: 24053
- components:
- - type: Transform
- pos: 49.5,7.5
- parent: 2
- - uid: 24054
- components:
- - type: Transform
- pos: 49.5,3.5
- parent: 2
- - uid: 24055
- components:
- - type: Transform
- pos: 49.5,5.5
- parent: 2
- - uid: 24056
- components:
- - type: Transform
- pos: -11.5,-50.5
- parent: 2
- - uid: 24057
- components:
- - type: Transform
- pos: 39.5,53.5
- parent: 2
- - uid: 24058
- components:
- - type: Transform
- pos: 65.5,-8.5
- parent: 2
- - uid: 24059
- components:
- - type: Transform
- pos: 60.5,-1.5
- parent: 2
- - uid: 24060
- components:
- - type: Transform
- pos: -17.5,-52.5
- parent: 2
- - uid: 24061
- components:
- - type: Transform
- pos: -109.5,46.5
- parent: 2
- - uid: 24062
- components:
- - type: Transform
- pos: -109.5,44.5
- parent: 2
- - uid: 24063
- components:
- - type: Transform
- pos: -111.5,47.5
- parent: 2
- - uid: 24064
- components:
- - type: Transform
- pos: -109.5,45.5
- parent: 2
- - uid: 24065
- components:
- - type: Transform
- pos: 28.5,47.5
- parent: 2
- - uid: 24066
- components:
- - type: Transform
- pos: 27.5,47.5
- parent: 2
- - uid: 24067
- components:
- - type: Transform
- pos: 78.5,-22.5
- parent: 2
- - uid: 24068
- components:
- - type: Transform
- pos: -8.5,78.5
- parent: 2
- - uid: 24069
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,83.5
- parent: 2
- - uid: 24070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,83.5
- parent: 2
- - uid: 24071
- components:
- - type: Transform
- pos: 64.5,-22.5
- parent: 2
- - uid: 24072
- components:
- - type: Transform
- pos: -25.5,83.5
- parent: 2
- - uid: 24073
- components:
- - type: Transform
- pos: -14.5,79.5
- parent: 2
- - uid: 24074
- components:
- - type: Transform
- pos: 49.5,11.5
- parent: 2
- - uid: 24075
- components:
- - type: Transform
- pos: -13.5,72.5
- parent: 2
- - uid: 24076
- components:
- - type: Transform
- pos: -13.5,73.5
- parent: 2
- - uid: 24077
- components:
- - type: Transform
- pos: 68.5,0.5
- parent: 2
- - uid: 24078
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,-66.5
- parent: 2
- - uid: 24079
- components:
- - type: Transform
- pos: 66.5,-14.5
- parent: 2
- - uid: 24080
- components:
- - type: Transform
- pos: -27.5,83.5
- parent: 2
- - uid: 24081
- components:
- - type: Transform
- pos: -8.5,76.5
- parent: 2
- - uid: 24082
- components:
- - type: Transform
- pos: -8.5,82.5
- parent: 2
- - uid: 24083
- components:
- - type: Transform
- pos: -14.5,76.5
- parent: 2
- - uid: 24084
- components:
- - type: Transform
- pos: -4.5,70.5
- parent: 2
- - uid: 24085
- components:
- - type: Transform
- pos: -15.5,78.5
- parent: 2
- - uid: 24086
- components:
- - type: Transform
- pos: 28.5,53.5
- parent: 2
- - uid: 24087
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,97.5
- parent: 2
- - uid: 24088
- components:
- - type: Transform
- pos: 26.5,53.5
- parent: 2
- - uid: 24089
- components:
- - type: Transform
- pos: 44.5,18.5
- parent: 2
- - uid: 24090
- components:
- - type: Transform
- pos: 76.5,24.5
- parent: 2
- - uid: 24091
- components:
- - type: Transform
- pos: 74.5,24.5
- parent: 2
- - uid: 24092
- components:
- - type: Transform
- pos: -11.5,-6.5
- parent: 2
- - uid: 24093
- components:
- - type: Transform
- pos: -14.5,1.5
- parent: 2
- - uid: 24094
- components:
- - type: Transform
- pos: -14.5,3.5
- parent: 2
- - uid: 24095
- components:
- - type: Transform
- pos: -16.5,9.5
- parent: 2
- - uid: 24096
- components:
- - type: Transform
- pos: -16.5,10.5
- parent: 2
- - uid: 24097
- components:
- - type: Transform
- pos: -16.5,8.5
- parent: 2
- - uid: 24098
- components:
- - type: Transform
- pos: -60.5,16.5
- parent: 2
- - uid: 24099
- components:
- - type: Transform
- pos: -4.5,-6.5
- parent: 2
- - uid: 24100
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-55.5
- parent: 2
- - uid: 24101
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-54.5
- parent: 2
- - uid: 24102
- components:
- - type: Transform
- pos: -2.5,-6.5
- parent: 2
- - uid: 24103
- components:
- - type: Transform
- pos: 29.5,13.5
- parent: 2
- - uid: 24104
- components:
- - type: Transform
- pos: 40.5,-17.5
- parent: 2
- - uid: 24105
- components:
- - type: Transform
- pos: 46.5,-56.5
- parent: 2
- - uid: 24106
- components:
- - type: Transform
- pos: -79.5,-42.5
- parent: 2
- - uid: 24107
- components:
- - type: Transform
- pos: -58.5,-78.5
- parent: 2
- - uid: 24108
- components:
- - type: Transform
- pos: -69.5,-49.5
- parent: 2
- - uid: 24109
- components:
- - type: Transform
- pos: 30.5,65.5
- parent: 2
- - uid: 24110
- components:
- - type: Transform
- pos: 66.5,-9.5
- parent: 2
- - uid: 24111
- components:
- - type: Transform
- pos: 29.5,18.5
- parent: 2
- - uid: 24112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-21.5
- parent: 2
- - uid: 24113
- components:
- - type: Transform
- pos: -26.5,82.5
- parent: 2
- - uid: 24114
- components:
- - type: Transform
- pos: -31.5,86.5
- parent: 2
- - uid: 24115
- components:
- - type: Transform
- pos: -47.5,26.5
- parent: 2
- - uid: 24116
- components:
- - type: Transform
- pos: -67.5,52.5
- parent: 2
- - uid: 24117
- components:
- - type: Transform
- pos: 27.5,53.5
- parent: 2
- - uid: 24118
- components:
- - type: Transform
- pos: -49.5,-51.5
- parent: 2
- - uid: 24119
- components:
- - type: Transform
- pos: 36.5,102.5
- parent: 2
- - uid: 24120
- components:
- - type: Transform
- pos: 71.5,-25.5
- parent: 2
- - uid: 24121
- components:
- - type: Transform
- pos: 25.5,62.5
- parent: 2
- - uid: 24122
- components:
- - type: Transform
- pos: 24.5,62.5
- parent: 2
- - uid: 24123
- components:
- - type: Transform
- pos: -56.5,4.5
- parent: 2
- - uid: 24124
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,81.5
- parent: 2
- - uid: 24125
- components:
- - type: Transform
- pos: 30.5,47.5
- parent: 2
- - uid: 24126
- components:
- - type: Transform
- pos: -27.5,-82.5
- parent: 2
- - uid: 24127
- components:
- - type: Transform
- pos: -77.5,30.5
- parent: 2
- - uid: 24128
- components:
- - type: Transform
- pos: -83.5,77.5
- parent: 2
- - uid: 24129
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,3.5
- parent: 2
- - uid: 24130
- components:
- - type: Transform
- pos: 32.5,47.5
- parent: 2
- - uid: 24131
- components:
- - type: Transform
- pos: 23.5,38.5
- parent: 2
- - uid: 24132
- components:
- - type: Transform
- pos: -33.5,19.5
- parent: 2
- - uid: 24133
- components:
- - type: Transform
- pos: 24.5,60.5
- parent: 2
- - uid: 24134
- components:
- - type: Transform
- pos: 74.5,-40.5
- parent: 2
- - uid: 24135
- components:
- - type: Transform
- pos: 26.5,47.5
- parent: 2
- - uid: 24136
- components:
- - type: Transform
- pos: -77.5,50.5
- parent: 2
- - uid: 24137
- components:
- - type: Transform
- pos: -80.5,20.5
- parent: 2
- - uid: 24138
- components:
- - type: Transform
- pos: -77.5,24.5
- parent: 2
- - uid: 24139
- components:
- - type: Transform
- pos: -77.5,26.5
- parent: 2
- - uid: 24140
- components:
- - type: Transform
- pos: -35.5,-82.5
- parent: 2
- - uid: 24141
- components:
- - type: Transform
- pos: -83.5,69.5
- parent: 2
- - uid: 24142
- components:
- - type: Transform
- pos: -82.5,18.5
- parent: 2
- - uid: 24143
- components:
- - type: Transform
- pos: -82.5,20.5
- parent: 2
- - uid: 24144
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-21.5
- parent: 2
- - uid: 24145
- components:
- - type: Transform
- pos: -77.5,51.5
- parent: 2
- - uid: 24146
- components:
- - type: Transform
- pos: -40.5,-80.5
- parent: 2
- - uid: 24147
- components:
- - type: Transform
- pos: 83.5,-48.5
- parent: 2
- - uid: 24148
- components:
- - type: Transform
- pos: -77.5,29.5
- parent: 2
- - uid: 24149
- components:
- - type: Transform
- pos: -77.5,32.5
- parent: 2
- - uid: 24150
- components:
- - type: Transform
- pos: 45.5,-74.5
- parent: 2
- - uid: 24151
- components:
- - type: Transform
- pos: 83.5,-49.5
- parent: 2
- - uid: 24152
- components:
- - type: Transform
- pos: 29.5,19.5
- parent: 2
- - uid: 24153
- components:
- - type: Transform
- pos: 58.5,-56.5
- parent: 2
- - uid: 24154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-21.5
- parent: 2
- - uid: 24155
- components:
- - type: Transform
- pos: 53.5,-60.5
- parent: 2
- - uid: 24156
- components:
- - type: Transform
- pos: 37.5,21.5
- parent: 2
- - uid: 24157
- components:
- - type: Transform
- pos: 29.5,17.5
- parent: 2
- - uid: 24158
- components:
- - type: Transform
- pos: -75.5,37.5
- parent: 2
- - uid: 24159
- components:
- - type: Transform
- pos: -58.5,-53.5
- parent: 2
- - uid: 24160
- components:
- - type: Transform
- pos: 73.5,-35.5
- parent: 2
- - uid: 24161
- components:
- - type: Transform
- pos: 55.5,-60.5
- parent: 2
- - uid: 24162
- components:
- - type: Transform
- pos: 45.5,-75.5
- parent: 2
- - uid: 24163
- components:
- - type: Transform
- pos: 72.5,-35.5
- parent: 2
- - uid: 24164
- components:
- - type: Transform
- pos: -82.5,17.5
- parent: 2
- - uid: 24165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,-21.5
- parent: 2
- - uid: 24166
- components:
- - type: Transform
- pos: -67.5,34.5
- parent: 2
- - uid: 24167
- components:
- - type: Transform
- pos: 29.5,47.5
- parent: 2
- - uid: 24168
- components:
- - type: Transform
- pos: -48.5,26.5
- parent: 2
- - uid: 24169
- components:
- - type: Transform
- pos: 29.5,16.5
- parent: 2
- - uid: 24170
- components:
- - type: Transform
- pos: 31.5,47.5
- parent: 2
- - uid: 24171
- components:
- - type: Transform
- pos: 19.5,-3.5
- parent: 2
- - uid: 24172
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-36.5
- parent: 2
- - uid: 24173
- components:
- - type: Transform
- pos: -39.5,-83.5
- parent: 2
- - uid: 24174
- components:
- - type: Transform
- pos: -84.5,70.5
- parent: 2
- - uid: 24175
- components:
- - type: Transform
- pos: -83.5,70.5
- parent: 2
- - uid: 24176
- components:
- - type: Transform
- pos: 56.5,-50.5
- parent: 2
- - uid: 24177
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,37.5
- parent: 2
- - uid: 24178
- components:
- - type: Transform
- pos: -42.5,-87.5
- parent: 2
- - uid: 24179
- components:
- - type: Transform
- pos: -50.5,69.5
- parent: 2
- - uid: 24180
- components:
- - type: Transform
- pos: -82.5,-31.5
- parent: 2
- - uid: 24181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-21.5
- parent: 2
- - uid: 24182
- components:
- - type: Transform
- pos: -79.5,-41.5
- parent: 2
- - uid: 24183
- components:
- - type: Transform
- pos: -80.5,-21.5
- parent: 2
- - uid: 24184
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-21.5
- parent: 2
- - uid: 24185
- components:
- - type: Transform
- pos: -56.5,-53.5
- parent: 2
- - uid: 24186
- components:
- - type: Transform
- pos: -75.5,39.5
- parent: 2
- - uid: 24187
- components:
- - type: Transform
- pos: 74.5,-52.5
- parent: 2
- - uid: 24188
- components:
- - type: Transform
- pos: -2.5,-14.5
- parent: 2
- - uid: 24189
- components:
- - type: Transform
- pos: -50.5,-51.5
- parent: 2
- - uid: 24190
- components:
- - type: Transform
- pos: -25.5,85.5
- parent: 2
- - uid: 24191
- components:
- - type: Transform
- pos: -82.5,-30.5
- parent: 2
- - uid: 24192
- components:
- - type: Transform
- pos: 58.5,-54.5
- parent: 2
- - uid: 24193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,85.5
- parent: 2
- - uid: 24194
- components:
- - type: Transform
- pos: 50.5,-62.5
- parent: 2
- - uid: 24195
- components:
- - type: Transform
- pos: 73.5,-52.5
- parent: 2
- - uid: 24196
- components:
- - type: Transform
- pos: 23.5,3.5
- parent: 2
- - uid: 24197
- components:
- - type: Transform
- pos: -26.5,85.5
- parent: 2
- - uid: 24198
- components:
- - type: Transform
- pos: -33.5,85.5
- parent: 2
- - uid: 24199
- components:
- - type: Transform
- pos: -32.5,83.5
- parent: 2
- - uid: 24200
- components:
- - type: Transform
- pos: 11.5,38.5
- parent: 2
- - uid: 24201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,36.5
- parent: 2
- - uid: 24202
- components:
- - type: Transform
- pos: -22.5,70.5
- parent: 2
- - uid: 24203
- components:
- - type: Transform
- pos: -29.5,-73.5
- parent: 2
- - uid: 24204
- components:
- - type: Transform
- pos: 56.5,-58.5
- parent: 2
- - uid: 24205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,88.5
- parent: 2
- - uid: 24206
- components:
- - type: Transform
- pos: 57.5,-47.5
- parent: 2
- - uid: 24207
- components:
- - type: Transform
- pos: -25.5,70.5
- parent: 2
- - uid: 24208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,35.5
- parent: 2
- - uid: 24209
- components:
- - type: Transform
- pos: 54.5,-19.5
- parent: 2
- - uid: 24210
- components:
- - type: Transform
- pos: 9.5,38.5
- parent: 2
- - uid: 24211
- components:
- - type: Transform
- pos: 78.5,-16.5
- parent: 2
- - uid: 24212
- components:
- - type: Transform
- pos: -83.5,79.5
- parent: 2
- - uid: 24213
- components:
- - type: Transform
- pos: 13.5,74.5
- parent: 2
- - uid: 24214
- components:
- - type: Transform
- pos: -0.5,30.5
- parent: 2
- - uid: 24215
- components:
- - type: Transform
- pos: -8.5,79.5
- parent: 2
- - uid: 24216
- components:
- - type: Transform
- pos: 74.5,-12.5
- parent: 2
- - uid: 24217
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,18.5
- parent: 2
- - uid: 24218
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-68.5
- parent: 2
- - uid: 24219
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-68.5
- parent: 2
- - uid: 24220
- components:
- - type: Transform
- pos: -21.5,3.5
- parent: 2
- - uid: 24221
- components:
- - type: Transform
- pos: -9.5,78.5
- parent: 2
- - uid: 24222
- components:
- - type: Transform
- pos: 13.5,75.5
- parent: 2
- - uid: 24223
- components:
- - type: Transform
- pos: -15.5,-82.5
- parent: 2
- - uid: 24224
- components:
- - type: Transform
- pos: -26.5,79.5
- parent: 2
- - uid: 24225
- components:
- - type: Transform
- pos: -13.5,-82.5
- parent: 2
- - uid: 24226
- components:
- - type: Transform
- pos: -13.5,76.5
- parent: 2
- - uid: 24227
- components:
- - type: Transform
- pos: -36.5,28.5
- parent: 2
- - uid: 24228
- components:
- - type: Transform
- pos: -2.5,-23.5
- parent: 2
- - uid: 24229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,4.5
- parent: 2
- - uid: 24230
- components:
- - type: Transform
- pos: -57.5,35.5
- parent: 2
- - uid: 24231
- components:
- - type: Transform
- pos: -29.5,-32.5
- parent: 2
- - uid: 24232
- components:
- - type: Transform
- pos: -56.5,58.5
- parent: 2
- - uid: 24233
- components:
- - type: Transform
- pos: -31.5,85.5
- parent: 2
- - uid: 24234
- components:
- - type: Transform
- pos: -40.5,-24.5
- parent: 2
- - uid: 24235
- components:
- - type: Transform
- pos: 25.5,-69.5
- parent: 2
- - uid: 24236
- components:
- - type: Transform
- pos: 25.5,-67.5
- parent: 2
- - uid: 24237
- components:
- - type: Transform
- pos: 26.5,-70.5
- parent: 2
- - uid: 24238
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,0.5
- parent: 2
- - uid: 24239
- components:
- - type: Transform
- pos: -48.5,-26.5
- parent: 2
- - uid: 24240
- components:
- - type: Transform
- pos: 15.5,-29.5
- parent: 2
- - uid: 24241
- components:
- - type: Transform
- pos: -48.5,-28.5
- parent: 2
- - uid: 24242
- components:
- - type: Transform
- pos: 2.5,-33.5
- parent: 2
- - uid: 24243
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-0.5
- parent: 2
- - uid: 24244
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,-19.5
- parent: 2
- - uid: 24245
- components:
- - type: Transform
- pos: -11.5,-21.5
- parent: 2
- - uid: 24246
- components:
- - type: Transform
- pos: -13.5,21.5
- parent: 2
- - uid: 24247
- components:
- - type: Transform
- pos: -4.5,-11.5
- parent: 2
- - uid: 24248
- components:
- - type: Transform
- pos: 2.5,-21.5
- parent: 2
- - uid: 24249
- components:
- - type: Transform
- pos: 9.5,-21.5
- parent: 2
- - uid: 24250
- components:
- - type: Transform
- pos: 57.5,-38.5
- parent: 2
- - uid: 24251
- components:
- - type: Transform
- pos: 57.5,-39.5
- parent: 2
- - uid: 24252
- components:
- - type: Transform
- pos: 76.5,-19.5
- parent: 2
- - uid: 24253
- components:
- - type: Transform
- pos: -57.5,8.5
- parent: 2
- - uid: 24254
- components:
- - type: Transform
- pos: 24.5,33.5
- parent: 2
- - uid: 24255
- components:
- - type: Transform
- pos: 37.5,53.5
- parent: 2
- - uid: 24256
- components:
- - type: Transform
- pos: -7.5,76.5
- parent: 2
- - uid: 24257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,88.5
- parent: 2
- - uid: 24258
- components:
- - type: Transform
- pos: -13.5,78.5
- parent: 2
- - uid: 24259
- components:
- - type: Transform
- pos: -77.5,64.5
- parent: 2
- - uid: 24260
- components:
- - type: Transform
- pos: -61.5,-48.5
- parent: 2
- - uid: 24261
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,85.5
- parent: 2
- - uid: 24262
- components:
- - type: Transform
- pos: -2.5,70.5
- parent: 2
- - uid: 24263
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,95.5
- parent: 2
- - uid: 24264
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,91.5
- parent: 2
- - uid: 24265
- components:
- - type: Transform
- pos: 33.5,53.5
- parent: 2
- - uid: 24266
- components:
- - type: Transform
- pos: 24.5,39.5
- parent: 2
- - uid: 24267
- components:
- - type: Transform
- pos: 34.5,53.5
- parent: 2
- - uid: 24268
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,8.5
- parent: 2
- - uid: 24269
- components:
- - type: Transform
- pos: 72.5,-25.5
- parent: 2
- - uid: 24270
- components:
- - type: Transform
- pos: -48.5,-29.5
- parent: 2
- - uid: 24271
- components:
- - type: Transform
- pos: 19.5,-42.5
- parent: 2
- - uid: 24272
- components:
- - type: Transform
- pos: -75.5,38.5
- parent: 2
- - uid: 24273
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,7.5
- parent: 2
- - uid: 24274
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,3.5
- parent: 2
- - uid: 24275
- components:
- - type: Transform
- pos: 12.5,16.5
- parent: 2
- - uid: 24276
- components:
- - type: Transform
- pos: -56.5,8.5
- parent: 2
- - uid: 24277
- components:
- - type: Transform
- pos: 35.5,53.5
- parent: 2
- - uid: 24278
- components:
- - type: Transform
- pos: 22.5,60.5
- parent: 2
- - uid: 24279
- components:
- - type: Transform
- pos: 36.5,53.5
- parent: 2
- - uid: 24280
- components:
- - type: Transform
- pos: 77.5,-27.5
- parent: 2
- - uid: 24281
- components:
- - type: Transform
- pos: -31.5,78.5
- parent: 2
- - uid: 24282
- components:
- - type: Transform
- pos: 4.5,72.5
- parent: 2
- - uid: 24283
- components:
- - type: Transform
- pos: 4.5,73.5
- parent: 2
- - uid: 24284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,1.5
- parent: 2
- - uid: 24285
- components:
- - type: Transform
- pos: -36.5,22.5
- parent: 2
- - uid: 24286
- components:
- - type: Transform
- pos: -37.5,19.5
- parent: 2
- - uid: 24287
- components:
- - type: Transform
- pos: -35.5,20.5
- parent: 2
- - uid: 24288
- components:
- - type: Transform
- pos: 16.5,-47.5
- parent: 2
- - uid: 24289
- components:
- - type: Transform
- pos: 18.5,-47.5
- parent: 2
- - uid: 24290
- components:
- - type: Transform
- pos: 22.5,-56.5
- parent: 2
- - uid: 24291
- components:
- - type: Transform
- pos: -72.5,-42.5
- parent: 2
- - uid: 24292
- components:
- - type: Transform
- pos: -72.5,-41.5
- parent: 2
- - uid: 24293
- components:
- - type: Transform
- pos: -72.5,-39.5
- parent: 2
- - uid: 24294
- components:
- - type: Transform
- pos: -64.5,68.5
- parent: 2
- - uid: 24295
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,3.5
- parent: 2
- - uid: 24296
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,85.5
- parent: 2
- - uid: 24297
- components:
- - type: Transform
- pos: -8.5,-82.5
- parent: 2
- - uid: 24298
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,4.5
- parent: 2
- - uid: 24299
- components:
- - type: Transform
- pos: 2.5,-35.5
- parent: 2
- - uid: 24300
- components:
- - type: Transform
- pos: 19.5,-46.5
- parent: 2
- - uid: 24301
- components:
- - type: Transform
- pos: -105.5,-7.5
- parent: 2
- - uid: 24302
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,1.5
- parent: 2
- - uid: 24303
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,6.5
- parent: 2
- - uid: 24304
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,4.5
- parent: 2
- - uid: 24305
- components:
- - type: Transform
- pos: -6.5,-44.5
- parent: 2
- - uid: 24306
- components:
- - type: Transform
- pos: 25.5,-44.5
- parent: 2
- - uid: 24307
- components:
- - type: Transform
- pos: 12.5,21.5
- parent: 2
- - uid: 24308
- components:
- - type: Transform
- pos: 29.5,-64.5
- parent: 2
- - uid: 24309
- components:
- - type: Transform
- pos: 25.5,-64.5
- parent: 2
- - uid: 24310
- components:
- - type: Transform
- pos: 8.5,21.5
- parent: 2
- - uid: 24311
- components:
- - type: Transform
- pos: 23.5,-31.5
- parent: 2
- - uid: 24312
- components:
- - type: Transform
- pos: 28.5,-64.5
- parent: 2
- - uid: 24313
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,4.5
- parent: 2
- - uid: 24314
- components:
- - type: Transform
- pos: 11.5,21.5
- parent: 2
- - uid: 24315
- components:
- - type: Transform
- pos: 13.5,21.5
- parent: 2
- - uid: 24316
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-18.5
- parent: 2
- - uid: 24317
- components:
- - type: Transform
- pos: 19.5,-56.5
- parent: 2
- - uid: 24318
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,19.5
- parent: 2
- - uid: 24319
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,85.5
- parent: 2
- - uid: 24320
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,83.5
- parent: 2
- - uid: 24321
- components:
- - type: Transform
- pos: 20.5,92.5
- parent: 2
- - uid: 24322
- components:
- - type: Transform
- pos: 76.5,-12.5
- parent: 2
- - uid: 24323
- components:
- - type: Transform
- pos: 66.5,-19.5
- parent: 2
- - uid: 24324
- components:
- - type: Transform
- pos: 19.5,33.5
- parent: 2
- - uid: 24325
- components:
- - type: Transform
- pos: -5.5,70.5
- parent: 2
- - uid: 24326
- components:
- - type: Transform
- pos: -7.5,78.5
- parent: 2
- - uid: 24327
- components:
- - type: Transform
- pos: -15.5,20.5
- parent: 2
- - uid: 24328
- components:
- - type: Transform
- pos: -4.5,21.5
- parent: 2
- - uid: 24329
- components:
- - type: Transform
- pos: -3.5,19.5
- parent: 2
- - uid: 24330
- components:
- - type: Transform
- pos: -6.5,21.5
- parent: 2
- - uid: 24331
- components:
- - type: Transform
- pos: -0.5,19.5
- parent: 2
- - uid: 24332
- components:
- - type: Transform
- pos: 25.5,-46.5
- parent: 2
- - uid: 24333
- components:
- - type: Transform
- pos: -14.5,21.5
- parent: 2
- - uid: 24334
- components:
- - type: Transform
- pos: -13.5,13.5
- parent: 2
- - uid: 24335
- components:
- - type: Transform
- pos: 23.5,-41.5
- parent: 2
- - uid: 24336
- components:
- - type: Transform
- pos: 21.5,-41.5
- parent: 2
- - uid: 24337
- components:
- - type: Transform
- pos: 59.5,-50.5
- parent: 2
- - uid: 24338
- components:
- - type: Transform
- pos: 19.5,-31.5
- parent: 2
- - uid: 24339
- components:
- - type: Transform
- pos: 66.5,-12.5
- parent: 2
- - uid: 24340
- components:
- - type: Transform
- pos: -4.5,-28.5
- parent: 2
- - uid: 24341
- components:
- - type: Transform
- pos: -8.5,-21.5
- parent: 2
- - uid: 24342
- components:
- - type: Transform
- pos: -15.5,-21.5
- parent: 2
- - uid: 24343
- components:
- - type: Transform
- pos: -4.5,-21.5
- parent: 2
- - uid: 24344
- components:
- - type: Transform
- pos: -3.5,-21.5
- parent: 2
- - uid: 24345
- components:
- - type: Transform
- pos: 22.5,-32.5
- parent: 2
- - uid: 24346
- components:
- - type: Transform
- pos: 62.5,-6.5
- parent: 2
- - uid: 24347
- components:
- - type: Transform
- pos: 42.5,-71.5
- parent: 2
- - uid: 24348
- components:
- - type: Transform
- pos: 2.5,-46.5
- parent: 2
- - uid: 24349
- components:
- - type: Transform
- pos: 38.5,-71.5
- parent: 2
- - uid: 24350
- components:
- - type: Transform
- pos: -29.5,-36.5
- parent: 2
- - uid: 24351
- components:
- - type: Transform
- pos: -69.5,45.5
- parent: 2
- - uid: 24352
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,1.5
- parent: 2
- - uid: 24353
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-19.5
- parent: 2
- - uid: 24354
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-19.5
- parent: 2
- - uid: 24355
- components:
- - type: Transform
- pos: 83.5,-17.5
- parent: 2
- - uid: 24356
- components:
- - type: Transform
- pos: 25.5,-37.5
- parent: 2
- - uid: 24357
- components:
- - type: Transform
- pos: 84.5,-20.5
- parent: 2
- - uid: 24358
- components:
- - type: Transform
- pos: 31.5,-61.5
- parent: 2
- - uid: 24359
- components:
- - type: Transform
- pos: 40.5,-58.5
- parent: 2
- - uid: 24360
- components:
- - type: Transform
- pos: -105.5,-4.5
- parent: 2
- - uid: 24361
- components:
- - type: Transform
- pos: 19.5,-37.5
- parent: 2
- - uid: 24362
- components:
- - type: Transform
- pos: 11.5,-12.5
- parent: 2
- - uid: 24363
- components:
- - type: Transform
- pos: 11.5,-16.5
- parent: 2
- - uid: 24364
- components:
- - type: Transform
- pos: -16.5,16.5
- parent: 2
- - uid: 24365
- components:
- - type: Transform
- pos: -16.5,-26.5
- parent: 2
- - uid: 24366
- components:
- - type: Transform
- pos: 20.5,-32.5
- parent: 2
- - uid: 24367
- components:
- - type: Transform
- pos: 76.5,26.5
- parent: 2
- - uid: 24368
- components:
- - type: Transform
- pos: -62.5,24.5
- parent: 2
- - uid: 24369
- components:
- - type: Transform
- pos: 65.5,-22.5
- parent: 2
- - uid: 24370
- components:
- - type: Transform
- pos: -50.5,-15.5
- parent: 2
- - uid: 24371
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,6.5
- parent: 2
- - uid: 24372
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,6.5
- parent: 2
- - uid: 24373
- components:
- - type: Transform
- pos: -67.5,36.5
- parent: 2
- - uid: 24374
- components:
- - type: Transform
- pos: -72.5,9.5
- parent: 2
- - uid: 24375
- components:
- - type: Transform
- pos: -68.5,7.5
- parent: 2
- - uid: 24376
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-16.5
- parent: 2
- - uid: 24377
- components:
- - type: Transform
- pos: -67.5,45.5
- parent: 2
- - uid: 24378
- components:
- - type: Transform
- pos: -33.5,3.5
- parent: 2
- - uid: 24379
- components:
- - type: Transform
- pos: -54.5,43.5
- parent: 2
- - uid: 24380
- components:
- - type: Transform
- pos: -34.5,22.5
- parent: 2
- - uid: 24381
- components:
- - type: Transform
- pos: -66.5,-27.5
- parent: 2
- - uid: 24382
- components:
- - type: Transform
- pos: 77.5,-17.5
- parent: 2
- - uid: 24383
- components:
- - type: Transform
- pos: 78.5,-17.5
- parent: 2
- - uid: 24384
- components:
- - type: Transform
- pos: -63.5,68.5
- parent: 2
- - uid: 24385
- components:
- - type: Transform
- pos: -21.5,23.5
- parent: 2
- - uid: 24386
- components:
- - type: Transform
- pos: -77.5,8.5
- parent: 2
- - uid: 24387
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,0.5
- parent: 2
- - uid: 24388
- components:
- - type: Transform
- pos: 4.5,21.5
- parent: 2
- - uid: 24389
- components:
- - type: Transform
- pos: -5.5,19.5
- parent: 2
- - uid: 24390
- components:
- - type: Transform
- pos: -0.5,21.5
- parent: 2
- - uid: 24391
- components:
- - type: Transform
- pos: 5.5,21.5
- parent: 2
- - uid: 24392
- components:
- - type: Transform
- pos: 0.5,21.5
- parent: 2
- - uid: 24393
- components:
- - type: Transform
- pos: -6.5,19.5
- parent: 2
- - uid: 24394
- components:
- - type: Transform
- pos: -15.5,-38.5
- parent: 2
- - uid: 24395
- components:
- - type: Transform
- pos: -8.5,17.5
- parent: 2
- - uid: 24396
- components:
- - type: Transform
- pos: -15.5,-42.5
- parent: 2
- - uid: 24397
- components:
- - type: Transform
- pos: -17.5,-44.5
- parent: 2
- - uid: 24398
- components:
- - type: Transform
- pos: -19.5,-44.5
- parent: 2
- - uid: 24399
- components:
- - type: Transform
- pos: -7.5,17.5
- parent: 2
- - uid: 24400
- components:
- - type: Transform
- pos: -1.5,21.5
- parent: 2
- - uid: 24401
- components:
- - type: Transform
- pos: -3.5,21.5
- parent: 2
- - uid: 24402
- components:
- - type: Transform
- pos: 3.5,21.5
- parent: 2
- - uid: 24403
- components:
- - type: Transform
- pos: 2.5,21.5
- parent: 2
- - uid: 24404
- components:
- - type: Transform
- pos: 10.5,-28.5
- parent: 2
- - uid: 24405
- components:
- - type: Transform
- pos: -16.5,-36.5
- parent: 2
- - uid: 24406
- components:
- - type: Transform
- pos: 15.5,16.5
- parent: 2
- - uid: 24407
- components:
- - type: Transform
- pos: -70.5,-48.5
- parent: 2
- - uid: 24408
- components:
- - type: Transform
- pos: 30.5,64.5
- parent: 2
- - uid: 24409
- components:
- - type: Transform
- pos: 71.5,-14.5
- parent: 2
- - uid: 24410
- components:
- - type: Transform
- pos: -61.5,-13.5
- parent: 2
- - uid: 24411
- components:
- - type: Transform
- pos: 61.5,-8.5
- parent: 2
- - uid: 24412
- components:
- - type: Transform
- pos: 70.5,-14.5
- parent: 2
- - uid: 24413
- components:
- - type: Transform
- pos: -66.5,-25.5
- parent: 2
- - uid: 24414
- components:
- - type: Transform
- pos: -62.5,61.5
- parent: 2
- - uid: 24415
- components:
- - type: Transform
- pos: 66.5,-22.5
- parent: 2
- - uid: 24416
- components:
- - type: Transform
- pos: -44.5,-78.5
- parent: 2
- - uid: 24417
- components:
- - type: Transform
- pos: -47.5,-51.5
- parent: 2
- - uid: 24418
- components:
- - type: Transform
- pos: -11.5,-38.5
- parent: 2
- - uid: 24419
- components:
- - type: Transform
- pos: 23.5,-25.5
- parent: 2
- - uid: 24420
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,4.5
- parent: 2
- - uid: 24421
- components:
- - type: Transform
- pos: 68.5,-14.5
- parent: 2
- - uid: 24422
- components:
- - type: Transform
- pos: 33.5,-66.5
- parent: 2
- - uid: 24423
- components:
- - type: Transform
- pos: 2.5,25.5
- parent: 2
- - uid: 24424
- components:
- - type: Transform
- pos: 16.5,-56.5
- parent: 2
- - uid: 24425
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,67.5
- parent: 2
- - uid: 24426
- components:
- - type: Transform
- pos: 4.5,76.5
- parent: 2
- - uid: 24427
- components:
- - type: Transform
- pos: 14.5,-28.5
- parent: 2
- - uid: 24428
- components:
- - type: Transform
- pos: -42.5,-53.5
- parent: 2
- - uid: 24429
- components:
- - type: Transform
- pos: -56.5,16.5
- parent: 2
- - uid: 24430
- components:
- - type: Transform
- pos: 11.5,-11.5
- parent: 2
- - uid: 24431
- components:
- - type: Transform
- pos: -8.5,21.5
- parent: 2
- - uid: 24432
- components:
- - type: Transform
- pos: -15.5,-36.5
- parent: 2
- - uid: 24433
- components:
- - type: Transform
- pos: 6.5,17.5
- parent: 2
- - uid: 24434
- components:
- - type: Transform
- pos: 3.5,19.5
- parent: 2
- - uid: 24435
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-33.5
- parent: 2
- - uid: 24436
- components:
- - type: Transform
- pos: 4.5,19.5
- parent: 2
- - uid: 24437
- components:
- - type: Transform
- pos: -41.5,-49.5
- parent: 2
- - uid: 24438
- components:
- - type: Transform
- pos: -75.5,8.5
- parent: 2
- - uid: 24439
- components:
- - type: Transform
- pos: -52.5,43.5
- parent: 2
- - uid: 24440
- components:
- - type: Transform
- pos: -13.5,16.5
- parent: 2
- - uid: 24441
- components:
- - type: Transform
- pos: 2.5,19.5
- parent: 2
- - uid: 24442
- components:
- - type: Transform
- pos: -40.5,-49.5
- parent: 2
- - uid: 24443
- components:
- - type: Transform
- pos: -67.5,48.5
- parent: 2
- - uid: 24444
- components:
- - type: Transform
- pos: -67.5,40.5
- parent: 2
- - uid: 24445
- components:
- - type: Transform
- pos: -66.5,-23.5
- parent: 2
- - uid: 24446
- components:
- - type: Transform
- pos: -70.5,9.5
- parent: 2
- - uid: 24447
- components:
- - type: Transform
- pos: 0.5,19.5
- parent: 2
- - uid: 24448
- components:
- - type: Transform
- pos: 13.5,-32.5
- parent: 2
- - uid: 24449
- components:
- - type: Transform
- pos: -75.5,29.5
- parent: 2
- - uid: 24450
- components:
- - type: Transform
- pos: -50.5,20.5
- parent: 2
- - uid: 24451
- components:
- - type: Transform
- pos: 43.5,-69.5
- parent: 2
- - uid: 24452
- components:
- - type: Transform
- pos: -50.5,23.5
- parent: 2
- - uid: 24453
- components:
- - type: Transform
- pos: 19.5,-30.5
- parent: 2
- - uid: 24454
- components:
- - type: Transform
- pos: 42.5,16.5
- parent: 2
- - uid: 24455
- components:
- - type: Transform
- pos: 57.5,-45.5
- parent: 2
- - uid: 24456
- components:
- - type: Transform
- pos: 58.5,-45.5
- parent: 2
- - uid: 24457
- components:
- - type: Transform
- pos: 54.5,-7.5
- parent: 2
- - uid: 24458
- components:
- - type: Transform
- pos: 48.5,-64.5
- parent: 2
- - uid: 24459
- components:
- - type: Transform
- pos: 50.5,-63.5
- parent: 2
- - uid: 24460
- components:
- - type: Transform
- pos: 79.5,-35.5
- parent: 2
- - uid: 24461
- components:
- - type: Transform
- pos: 78.5,-35.5
- parent: 2
- - uid: 24462
- components:
- - type: Transform
- pos: 80.5,-35.5
- parent: 2
- - uid: 24463
- components:
- - type: Transform
- pos: 77.5,-36.5
- parent: 2
- - uid: 24464
- components:
- - type: Transform
- pos: -11.5,-69.5
- parent: 2
- - uid: 24465
- components:
- - type: Transform
- pos: -57.5,4.5
- parent: 2
- - uid: 24466
- components:
- - type: Transform
- pos: 11.5,65.5
- parent: 2
- - uid: 24467
- components:
- - type: Transform
- pos: 13.5,69.5
- parent: 2
- - uid: 24468
- components:
- - type: Transform
- pos: 26.5,62.5
- parent: 2
- - uid: 24469
- components:
- - type: Transform
- pos: 32.5,-10.5
- parent: 2
- - uid: 24470
- components:
- - type: Transform
- pos: 23.5,-8.5
- parent: 2
- - uid: 24471
- components:
- - type: Transform
- pos: 28.5,62.5
- parent: 2
- - uid: 24472
- components:
- - type: Transform
- pos: 32.5,58.5
- parent: 2
- - uid: 24473
- components:
- - type: Transform
- pos: 32.5,57.5
- parent: 2
- - uid: 24474
- components:
- - type: Transform
- pos: 74.5,-27.5
- parent: 2
- - uid: 24475
- components:
- - type: Transform
- pos: 29.5,62.5
- parent: 2
- - uid: 24476
- components:
- - type: Transform
- pos: 10.5,65.5
- parent: 2
- - uid: 24477
- components:
- - type: Transform
- pos: 77.5,-52.5
- parent: 2
- - uid: 24478
- components:
- - type: Transform
- pos: -25.5,-79.5
- parent: 2
- - uid: 24479
- components:
- - type: Transform
- pos: -5.5,-62.5
- parent: 2
- - uid: 24480
- components:
- - type: Transform
- pos: -17.5,70.5
- parent: 2
- - uid: 24481
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-57.5
- parent: 2
- - uid: 24482
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,97.5
- parent: 2
- - uid: 24483
- components:
- - type: Transform
- pos: -21.5,70.5
- parent: 2
- - uid: 24484
- components:
- - type: Transform
- pos: -15.5,76.5
- parent: 2
- - uid: 24485
- components:
- - type: Transform
- pos: -42.5,-24.5
- parent: 2
- - uid: 24486
- components:
- - type: Transform
- pos: -32.5,79.5
- parent: 2
- - uid: 24487
- components:
- - type: Transform
- pos: -74.5,17.5
- parent: 2
- - uid: 24488
- components:
- - type: Transform
- pos: -42.5,61.5
- parent: 2
- - uid: 24489
- components:
- - type: Transform
- pos: -31.5,76.5
- parent: 2
- - uid: 24490
- components:
- - type: Transform
- pos: -42.5,60.5
- parent: 2
- - uid: 24491
- components:
- - type: Transform
- pos: 18.5,88.5
- parent: 2
- - uid: 24492
- components:
- - type: Transform
- pos: 18.5,86.5
- parent: 2
- - uid: 24493
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,91.5
- parent: 2
- - uid: 24494
- components:
- - type: Transform
- pos: 16.5,89.5
- parent: 2
- - uid: 24495
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,35.5
- parent: 2
- - uid: 24496
- components:
- - type: Transform
- pos: -29.5,-80.5
- parent: 2
- - uid: 24497
- components:
- - type: Transform
- pos: 3.5,32.5
- parent: 2
- - uid: 24498
- components:
- - type: Transform
- pos: 17.5,88.5
- parent: 2
- - uid: 24499
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,92.5
- parent: 2
- - uid: 24500
- components:
- - type: Transform
- pos: -39.5,64.5
- parent: 2
- - uid: 24501
- components:
- - type: Transform
- pos: 16.5,67.5
- parent: 2
- - uid: 24502
- components:
- - type: Transform
- pos: 33.5,13.5
- parent: 2
- - uid: 24503
- components:
- - type: Transform
- pos: 68.5,-27.5
- parent: 2
- - uid: 24504
- components:
- - type: Transform
- pos: 9.5,41.5
- parent: 2
- - uid: 24505
- components:
- - type: Transform
- pos: 8.5,45.5
- parent: 2
- - uid: 24506
- components:
- - type: Transform
- pos: 6.5,92.5
- parent: 2
- - uid: 24507
- components:
- - type: Transform
- pos: 4.5,92.5
- parent: 2
- - uid: 24508
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-64.5
- parent: 2
- - uid: 24509
- components:
- - type: Transform
- pos: 2.5,83.5
- parent: 2
- - uid: 24510
- components:
- - type: Transform
- pos: -70.5,-42.5
- parent: 2
- - uid: 24511
- components:
- - type: Transform
- pos: -27.5,7.5
- parent: 2
- - uid: 24512
- components:
- - type: Transform
- pos: -33.5,-9.5
- parent: 2
- - uid: 24513
- components:
- - type: Transform
- pos: -9.5,76.5
- parent: 2
- - uid: 24514
- components:
- - type: Transform
- pos: -67.5,35.5
- parent: 2
- - uid: 24515
- components:
- - type: Transform
- pos: 32.5,-59.5
- parent: 2
- - uid: 24516
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-18.5
- parent: 2
- - uid: 24517
- components:
- - type: Transform
- pos: 82.5,-22.5
- parent: 2
- - uid: 24518
- components:
- - type: Transform
- pos: 76.5,-25.5
- parent: 2
- - uid: 24519
- components:
- - type: Transform
- pos: 35.5,-58.5
- parent: 2
- - uid: 24520
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,1.5
- parent: 2
- - uid: 24521
- components:
- - type: Transform
- pos: 3.5,-21.5
- parent: 2
- - uid: 24522
- components:
- - type: Transform
- pos: 6.5,-21.5
- parent: 2
- - uid: 24523
- components:
- - type: Transform
- pos: 7.5,-21.5
- parent: 2
- - uid: 24524
- components:
- - type: Transform
- pos: 39.5,-75.5
- parent: 2
- - uid: 24525
- components:
- - type: Transform
- pos: -61.5,-7.5
- parent: 2
- - uid: 24526
- components:
- - type: Transform
- pos: -67.5,32.5
- parent: 2
- - uid: 24527
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-4.5
- parent: 2
- - uid: 24528
- components:
- - type: Transform
- pos: 31.5,-70.5
- parent: 2
- - uid: 24529
- components:
- - type: Transform
- pos: 15.5,-37.5
- parent: 2
- - uid: 24530
- components:
- - type: Transform
- pos: 14.5,-21.5
- parent: 2
- - uid: 24531
- components:
- - type: Transform
- pos: -61.5,18.5
- parent: 2
- - uid: 24532
- components:
- - type: Transform
- pos: -66.5,-48.5
- parent: 2
- - uid: 24533
- components:
- - type: Transform
- pos: -36.5,33.5
- parent: 2
- - uid: 24534
- components:
- - type: Transform
- pos: -76.5,61.5
- parent: 2
- - uid: 24535
- components:
- - type: Transform
- pos: 58.5,-8.5
- parent: 2
- - uid: 24536
- components:
- - type: Transform
- pos: -68.5,-46.5
- parent: 2
- - uid: 24537
- components:
- - type: Transform
- pos: -70.5,-44.5
- parent: 2
- - uid: 24538
- components:
- - type: Transform
- pos: -105.5,-0.5
- parent: 2
- - uid: 24539
- components:
- - type: Transform
- pos: 50.5,-56.5
- parent: 2
- - uid: 24540
- components:
- - type: Transform
- pos: 80.5,-13.5
- parent: 2
- - uid: 24541
- components:
- - type: Transform
- pos: 62.5,-31.5
- parent: 2
- - uid: 24542
- components:
- - type: Transform
- pos: -43.5,29.5
- parent: 2
- - uid: 24543
- components:
- - type: Transform
- pos: 71.5,14.5
- parent: 2
- - uid: 24544
- components:
- - type: Transform
- pos: -20.5,70.5
- parent: 2
- - uid: 24545
- components:
- - type: Transform
- pos: 76.5,-22.5
- parent: 2
- - uid: 24546
- components:
- - type: Transform
- pos: -13.5,49.5
- parent: 2
- - uid: 24547
- components:
- - type: Transform
- pos: -42.5,-30.5
- parent: 2
- - uid: 24548
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,41.5
- parent: 2
- - uid: 24549
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,50.5
- parent: 2
- - uid: 24550
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,92.5
- parent: 2
- - uid: 24551
- components:
- - type: Transform
- pos: -6.5,-62.5
- parent: 2
- - uid: 24552
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,43.5
- parent: 2
- - uid: 24553
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,31.5
- parent: 2
- - uid: 24554
- components:
- - type: Transform
- pos: 57.5,-42.5
- parent: 2
- - uid: 24555
- components:
- - type: Transform
- pos: -2.5,-13.5
- parent: 2
- - uid: 24556
- components:
- - type: Transform
- pos: 71.5,16.5
- parent: 2
- - uid: 24557
- components:
- - type: Transform
- pos: 25.5,39.5
- parent: 2
- - uid: 24558
- components:
- - type: Transform
- pos: -59.5,9.5
- parent: 2
- - uid: 24559
- components:
- - type: Transform
- pos: -37.5,64.5
- parent: 2
- - uid: 24560
- components:
- - type: Transform
- pos: 19.5,16.5
- parent: 2
- - uid: 24561
- components:
- - type: Transform
- pos: 67.5,-12.5
- parent: 2
- - uid: 24562
- components:
- - type: Transform
- pos: 105.5,-4.5
- parent: 2
- - uid: 24563
- components:
- - type: Transform
- pos: 19.5,17.5
- parent: 2
- - uid: 24564
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,89.5
- parent: 2
- - uid: 24565
- components:
- - type: Transform
- pos: 10.5,32.5
- parent: 2
- - uid: 24566
- components:
- - type: Transform
- pos: 57.5,-44.5
- parent: 2
- - uid: 24567
- components:
- - type: Transform
- pos: 74.5,-25.5
- parent: 2
- - uid: 24568
- components:
- - type: Transform
- pos: -69.5,17.5
- parent: 2
- - uid: 24569
- components:
- - type: Transform
- pos: -55.5,31.5
- parent: 2
- - uid: 24570
- components:
- - type: Transform
- pos: -57.5,33.5
- parent: 2
- - uid: 24571
- components:
- - type: Transform
- pos: -53.5,31.5
- parent: 2
- - uid: 24572
- components:
- - type: Transform
- pos: 81.5,11.5
- parent: 2
- - uid: 24573
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-2.5
- parent: 2
- - uid: 24574
- components:
- - type: Transform
- pos: 26.5,46.5
- parent: 2
- - uid: 24575
- components:
- - type: Transform
- pos: -47.5,-0.5
- parent: 2
- - uid: 24576
- components:
- - type: Transform
- pos: 26.5,54.5
- parent: 2
- - uid: 24577
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-3.5
- parent: 2
- - uid: 24578
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-39.5
- parent: 2
- - uid: 24579
- components:
- - type: Transform
- pos: -24.5,-80.5
- parent: 2
- - uid: 24580
- components:
- - type: Transform
- pos: 16.5,65.5
- parent: 2
- - uid: 24581
- components:
- - type: Transform
- pos: -38.5,-58.5
- parent: 2
- - uid: 24582
- components:
- - type: Transform
- pos: -69.5,31.5
- parent: 2
- - uid: 24583
- components:
- - type: Transform
- pos: -61.5,23.5
- parent: 2
- - uid: 24584
- components:
- - type: Transform
- pos: -20.5,10.5
- parent: 2
- - uid: 24585
- components:
- - type: Transform
- pos: -69.5,27.5
- parent: 2
- - uid: 24586
- components:
- - type: Transform
- pos: -61.5,22.5
- parent: 2
- - uid: 24587
- components:
- - type: Transform
- pos: -38.5,-24.5
- parent: 2
- - uid: 24588
- components:
- - type: Transform
- pos: -2.5,-29.5
- parent: 2
- - uid: 24589
- components:
- - type: Transform
- pos: -22.5,7.5
- parent: 2
- - uid: 24590
- components:
- - type: Transform
- pos: -23.5,70.5
- parent: 2
- - uid: 24591
- components:
- - type: Transform
- pos: -61.5,53.5
- parent: 2
- - uid: 24592
- components:
- - type: Transform
- pos: 66.5,-24.5
- parent: 2
- - uid: 24593
- components:
- - type: Transform
- pos: 77.5,-22.5
- parent: 2
- - uid: 24594
- components:
- - type: Transform
- pos: -2.5,-31.5
- parent: 2
- - uid: 24595
- components:
- - type: Transform
- pos: -16.5,-82.5
- parent: 2
- - uid: 24596
- components:
- - type: Transform
- pos: -53.5,39.5
- parent: 2
- - uid: 24597
- components:
- - type: Transform
- pos: -60.5,51.5
- parent: 2
- - uid: 24598
- components:
- - type: Transform
- pos: -51.5,33.5
- parent: 2
- - uid: 24599
- components:
- - type: Transform
- pos: 37.5,-32.5
- parent: 2
- - uid: 24600
- components:
- - type: Transform
- pos: -46.5,-73.5
- parent: 2
- - uid: 24601
- components:
- - type: Transform
- pos: 23.5,37.5
- parent: 2
- - uid: 24602
- components:
- - type: Transform
- pos: 5.5,18.5
- parent: 2
- - uid: 24603
- components:
- - type: Transform
- pos: -27.5,-42.5
- parent: 2
- - uid: 24604
- components:
- - type: Transform
- pos: 26.5,-32.5
- parent: 2
- - uid: 24605
- components:
- - type: Transform
- pos: 1.5,-23.5
- parent: 2
- - uid: 24606
- components:
- - type: Transform
- pos: 15.5,-40.5
- parent: 2
- - uid: 24607
- components:
- - type: Transform
- pos: 28.5,-32.5
- parent: 2
- - uid: 24608
- components:
- - type: Transform
- pos: -76.5,17.5
- parent: 2
- - uid: 24609
- components:
- - type: Transform
- pos: -103.5,-7.5
- parent: 2
- - uid: 24610
- components:
- - type: Transform
- pos: 2.5,66.5
- parent: 2
- - uid: 24611
- components:
- - type: Transform
- pos: 4.5,63.5
- parent: 2
- - uid: 24612
- components:
- - type: Transform
- pos: -36.5,17.5
- parent: 2
- - uid: 24613
- components:
- - type: Transform
- pos: 39.5,47.5
- parent: 2
- - uid: 24614
- components:
- - type: Transform
- pos: -0.5,70.5
- parent: 2
- - uid: 24615
- components:
- - type: Transform
- pos: -34.5,17.5
- parent: 2
- - uid: 24616
- components:
- - type: Transform
- pos: 4.5,89.5
- parent: 2
- - uid: 24617
- components:
- - type: Transform
- pos: 4.5,85.5
- parent: 2
- - uid: 24618
- components:
- - type: Transform
- pos: 4.5,86.5
- parent: 2
- - uid: 24619
- components:
- - type: Transform
- pos: 63.5,-8.5
- parent: 2
- - uid: 24620
- components:
- - type: Transform
- pos: 66.5,-29.5
- parent: 2
- - uid: 24621
- components:
- - type: Transform
- pos: -45.5,27.5
- parent: 2
- - uid: 24622
- components:
- - type: Transform
- pos: -66.5,38.5
- parent: 2
- - uid: 24623
- components:
- - type: Transform
- pos: 72.5,-14.5
- parent: 2
- - uid: 24624
- components:
- - type: Transform
- pos: -50.5,27.5
- parent: 2
- - uid: 24625
- components:
- - type: Transform
- pos: -21.5,22.5
- parent: 2
- - uid: 24626
- components:
- - type: Transform
- pos: -66.5,53.5
- parent: 2
- - uid: 24627
- components:
- - type: Transform
- pos: -55.5,39.5
- parent: 2
- - uid: 24628
- components:
- - type: Transform
- pos: -31.5,95.5
- parent: 2
- - uid: 24629
- components:
- - type: Transform
- pos: -30.5,-9.5
- parent: 2
- - uid: 24630
- components:
- - type: Transform
- pos: -23.5,7.5
- parent: 2
- - uid: 24631
- components:
- - type: Transform
- pos: 66.5,-27.5
- parent: 2
- - uid: 24632
- components:
- - type: Transform
- pos: 81.5,-22.5
- parent: 2
- - uid: 24633
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-5.5
- parent: 2
- - uid: 24634
- components:
- - type: Transform
- pos: 76.5,-15.5
- parent: 2
- - uid: 24635
- components:
- - type: Transform
- pos: -44.5,-75.5
- parent: 2
- - uid: 24636
- components:
- - type: Transform
- pos: -34.5,-80.5
- parent: 2
- - uid: 24637
- components:
- - type: Transform
- pos: -60.5,38.5
- parent: 2
- - uid: 24638
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.5,33.5
- parent: 2
- - uid: 24639
- components:
- - type: Transform
- pos: 71.5,15.5
- parent: 2
- - uid: 24640
- components:
- - type: Transform
- pos: -67.5,22.5
- parent: 2
- - uid: 24641
- components:
- - type: Transform
- pos: -67.5,20.5
- parent: 2
- - uid: 24642
- components:
- - type: Transform
- pos: -73.5,17.5
- parent: 2
- - uid: 24643
- components:
- - type: Transform
- pos: -75.5,17.5
- parent: 2
- - uid: 24644
- components:
- - type: Transform
- pos: -66.5,24.5
- parent: 2
- - uid: 24645
- components:
- - type: Transform
- pos: -47.5,2.5
- parent: 2
- - uid: 24646
- components:
- - type: Transform
- pos: 30.5,-32.5
- parent: 2
- - uid: 24647
- components:
- - type: Transform
- pos: -47.5,0.5
- parent: 2
- - uid: 24648
- components:
- - type: Transform
- pos: -61.5,-11.5
- parent: 2
- - uid: 24649
- components:
- - type: Transform
- pos: -11.5,-42.5
- parent: 2
- - uid: 24650
- components:
- - type: Transform
- pos: -20.5,-51.5
- parent: 2
- - uid: 24651
- components:
- - type: Transform
- pos: -10.5,-35.5
- parent: 2
- - uid: 24652
- components:
- - type: Transform
- pos: -9.5,-44.5
- parent: 2
- - uid: 24653
- components:
- - type: Transform
- pos: -10.5,-21.5
- parent: 2
- - uid: 24654
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,33.5
- parent: 2
- - uid: 24655
- components:
- - type: Transform
- pos: -4.5,-10.5
- parent: 2
- - uid: 24656
- components:
- - type: Transform
- pos: -5.5,-12.5
- parent: 2
- - uid: 24657
- components:
- - type: Transform
- pos: -12.5,21.5
- parent: 2
- - uid: 24658
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-61.5
- parent: 2
- - uid: 24659
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,6.5
- parent: 2
- - uid: 24660
- components:
- - type: Transform
- pos: 44.5,-59.5
- parent: 2
- - uid: 24661
- components:
- - type: Transform
- pos: 12.5,13.5
- parent: 2
- - uid: 24662
- components:
- - type: Transform
- pos: 12.5,-28.5
- parent: 2
- - uid: 24663
- components:
- - type: Transform
- pos: 25.5,-42.5
- parent: 2
- - uid: 24664
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,33.5
- parent: 2
- - uid: 24665
- components:
- - type: Transform
- pos: 37.5,-62.5
- parent: 2
- - uid: 24666
- components:
- - type: Transform
- pos: 56.5,-51.5
- parent: 2
- - uid: 24667
- components:
- - type: Transform
- pos: -7.5,-21.5
- parent: 2
- - uid: 24668
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,33.5
- parent: 2
- - uid: 24669
- components:
- - type: Transform
- pos: -11.5,-48.5
- parent: 2
- - uid: 24670
- components:
- - type: Transform
- pos: 37.5,-60.5
- parent: 2
- - uid: 24671
- components:
- - type: Transform
- pos: -6.5,-28.5
- parent: 2
- - uid: 24672
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,32.5
- parent: 2
- - uid: 24673
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,33.5
- parent: 2
- - uid: 24674
- components:
- - type: Transform
- pos: -86.5,12.5
- parent: 2
- - uid: 24675
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-19.5
- parent: 2
- - uid: 24676
- components:
- - type: Transform
- pos: -60.5,-53.5
- parent: 2
- - uid: 24677
- components:
- - type: Transform
- pos: -77.5,39.5
- parent: 2
- - uid: 24678
- components:
- - type: Transform
- pos: 31.5,-72.5
- parent: 2
- - uid: 24679
- components:
- - type: Transform
- pos: 55.5,-41.5
- parent: 2
- - uid: 24680
- components:
- - type: Transform
- pos: 31.5,88.5
- parent: 2
- - uid: 24681
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-19.5
- parent: 2
- - uid: 24682
- components:
- - type: Transform
- pos: 11.5,59.5
- parent: 2
- - uid: 24683
- components:
- - type: Transform
- pos: 6.5,38.5
- parent: 2
- - uid: 24684
- components:
- - type: Transform
- pos: 82.5,-19.5
- parent: 2
- - uid: 24685
- components:
- - type: Transform
- pos: 38.5,47.5
- parent: 2
- - uid: 24686
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-60.5
- parent: 2
- - uid: 24687
- components:
- - type: Transform
- pos: -60.5,-82.5
- parent: 2
- - uid: 24688
- components:
- - type: Transform
- pos: -65.5,-51.5
- parent: 2
- - uid: 24689
- components:
- - type: Transform
- pos: -39.5,-81.5
- parent: 2
- - uid: 24690
- components:
- - type: Transform
- pos: -40.5,-83.5
- parent: 2
- - uid: 24691
- components:
- - type: Transform
- pos: -76.5,-34.5
- parent: 2
- - uid: 24692
- components:
- - type: Transform
- pos: -60.5,68.5
- parent: 2
- - uid: 24693
- components:
- - type: Transform
- pos: -83.5,78.5
- parent: 2
- - uid: 24694
- components:
- - type: Transform
- pos: -54.5,-50.5
- parent: 2
- - uid: 24695
- components:
- - type: Transform
- pos: -59.5,68.5
- parent: 2
- - uid: 24696
- components:
- - type: Transform
- pos: 77.5,-37.5
- parent: 2
- - uid: 24697
- components:
- - type: Transform
- pos: 81.5,-35.5
- parent: 2
- - uid: 24698
- components:
- - type: Transform
- pos: 70.5,-25.5
- parent: 2
- - uid: 24699
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-38.5
- parent: 2
- - uid: 24700
- components:
- - type: Transform
- pos: -75.5,-37.5
- parent: 2
- - uid: 24701
- components:
- - type: Transform
- pos: 89.5,-43.5
- parent: 2
- - uid: 24702
- components:
- - type: Transform
- pos: 48.5,-62.5
- parent: 2
- - uid: 24703
- components:
- - type: Transform
- pos: 45.5,-68.5
- parent: 2
- - uid: 24704
- components:
- - type: Transform
- pos: 48.5,-58.5
- parent: 2
- - uid: 24705
- components:
- - type: Transform
- pos: 77.5,-49.5
- parent: 2
- - uid: 24706
- components:
- - type: Transform
- pos: 26.5,105.5
- parent: 2
- - uid: 24707
- components:
- - type: Transform
- pos: 84.5,-41.5
- parent: 2
- - uid: 24708
- components:
- - type: Transform
- pos: 41.5,-79.5
- parent: 2
- - uid: 24709
- components:
- - type: Transform
- pos: 33.5,102.5
- parent: 2
- - uid: 24710
- components:
- - type: Transform
- pos: -77.5,44.5
- parent: 2
- - uid: 24711
- components:
- - type: Transform
- pos: -79.5,-36.5
- parent: 2
- - uid: 24712
- components:
- - type: Transform
- pos: -75.5,-38.5
- parent: 2
- - uid: 24713
- components:
- - type: Transform
- pos: -77.5,43.5
- parent: 2
- - uid: 24714
- components:
- - type: Transform
- pos: -55.5,-51.5
- parent: 2
- - uid: 24715
- components:
- - type: Transform
- pos: 31.5,-56.5
- parent: 2
- - uid: 24716
- components:
- - type: Transform
- pos: 13.5,70.5
- parent: 2
- - uid: 24717
- components:
- - type: Transform
- pos: 77.5,-35.5
- parent: 2
- - uid: 24718
- components:
- - type: Transform
- pos: 32.5,-74.5
- parent: 2
- - uid: 24719
- components:
- - type: Transform
- pos: -24.5,-84.5
- parent: 2
- - uid: 24720
- components:
- - type: Transform
- pos: 77.5,-51.5
- parent: 2
- - uid: 24721
- components:
- - type: Transform
- pos: 77.5,-39.5
- parent: 2
- - uid: 24722
- components:
- - type: Transform
- pos: 83.5,-37.5
- parent: 2
- - uid: 24723
- components:
- - type: Transform
- pos: -53.5,69.5
- parent: 2
- - uid: 24724
- components:
- - type: Transform
- pos: -52.5,69.5
- parent: 2
- - uid: 24725
- components:
- - type: Transform
- pos: 83.5,-52.5
- parent: 2
- - uid: 24726
- components:
- - type: Transform
- pos: 83.5,-38.5
- parent: 2
- - uid: 24727
- components:
- - type: Transform
- pos: 83.5,-39.5
- parent: 2
- - uid: 24728
- components:
- - type: Transform
- pos: 40.5,16.5
- parent: 2
- - uid: 24729
- components:
- - type: Transform
- pos: 36.5,98.5
- parent: 2
- - uid: 24730
- components:
- - type: Transform
- pos: 37.5,94.5
- parent: 2
- - uid: 24731
- components:
- - type: Transform
- pos: 37.5,95.5
- parent: 2
- - uid: 24732
- components:
- - type: Transform
- pos: 37.5,92.5
- parent: 2
- - uid: 24733
- components:
- - type: Transform
- pos: 36.5,92.5
- parent: 2
- - uid: 24734
- components:
- - type: Transform
- pos: 36.5,101.5
- parent: 2
- - uid: 24735
- components:
- - type: Transform
- pos: 36.5,99.5
- parent: 2
- - uid: 24736
- components:
- - type: Transform
- pos: 83.5,-40.5
- parent: 2
- - uid: 24737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,7.5
- parent: 2
- - uid: 24738
- components:
- - type: Transform
- pos: 25.5,85.5
- parent: 2
- - uid: 24739
- components:
- - type: Transform
- pos: -43.5,-82.5
- parent: 2
- - uid: 24740
- components:
- - type: Transform
- pos: -44.5,66.5
- parent: 2
- - uid: 24741
- components:
- - type: Transform
- pos: -45.5,68.5
- parent: 2
- - uid: 24742
- components:
- - type: Transform
- pos: -53.5,-75.5
- parent: 2
- - uid: 24743
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,6.5
- parent: 2
- - uid: 24744
- components:
- - type: Transform
- pos: -43.5,-80.5
- parent: 2
- - uid: 24745
- components:
- - type: Transform
- pos: -49.5,69.5
- parent: 2
- - uid: 24746
- components:
- - type: Transform
- pos: -42.5,-84.5
- parent: 2
- - uid: 24747
- components:
- - type: Transform
- pos: -45.5,66.5
- parent: 2
- - uid: 24748
- components:
- - type: Transform
- pos: 68.5,-12.5
- parent: 2
- - uid: 24749
- components:
- - type: Transform
- pos: 74.5,-14.5
- parent: 2
- - uid: 24750
- components:
- - type: Transform
- pos: 78.5,-12.5
- parent: 2
- - uid: 24751
- components:
- - type: Transform
- pos: 58.5,-31.5
- parent: 2
- - uid: 24752
- components:
- - type: Transform
- pos: 72.5,-27.5
- parent: 2
- - uid: 24753
- components:
- - type: Transform
- pos: 62.5,-8.5
- parent: 2
- - uid: 24754
- components:
- - type: Transform
- pos: -59.5,7.5
- parent: 2
- - uid: 24755
- components:
- - type: Transform
- pos: 66.5,-15.5
- parent: 2
- - uid: 24756
- components:
- - type: Transform
- pos: 12.5,40.5
- parent: 2
- - uid: 24757
- components:
- - type: Transform
- pos: 75.5,-25.5
- parent: 2
- - uid: 24758
- components:
- - type: Transform
- pos: -42.5,-86.5
- parent: 2
- - uid: 24759
- components:
- - type: Transform
- pos: 10.5,25.5
- parent: 2
- - uid: 24760
- components:
- - type: Transform
- pos: -21.5,-82.5
- parent: 2
- - uid: 24761
- components:
- - type: Transform
- pos: 83.5,-36.5
- parent: 2
- - uid: 24762
- components:
- - type: Transform
- pos: 72.5,-47.5
- parent: 2
- - uid: 24763
- components:
- - type: Transform
- pos: 82.5,-35.5
- parent: 2
- - uid: 24764
- components:
- - type: Transform
- pos: -35.5,-73.5
- parent: 2
- - uid: 24765
- components:
- - type: Transform
- pos: 47.5,-66.5
- parent: 2
- - uid: 24766
- components:
- - type: Transform
- pos: 85.5,-41.5
- parent: 2
- - uid: 24767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-59.5
- parent: 2
- - uid: 24768
- components:
- - type: Transform
- pos: 37.5,7.5
- parent: 2
- - uid: 24769
- components:
- - type: Transform
- pos: -79.5,-37.5
- parent: 2
- - uid: 24770
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-19.5
- parent: 2
- - uid: 24771
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,6.5
- parent: 2
- - uid: 24772
- components:
- - type: Transform
- pos: -59.5,-81.5
- parent: 2
- - uid: 24773
- components:
- - type: Transform
- pos: -53.5,-76.5
- parent: 2
- - uid: 24774
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,-19.5
- parent: 2
- - uid: 24775
- components:
- - type: Transform
- pos: -77.5,38.5
- parent: 2
- - uid: 24776
- components:
- - type: Transform
- pos: 55.5,-39.5
- parent: 2
- - uid: 24777
- components:
- - type: Transform
- pos: 30.5,88.5
- parent: 2
- - uid: 24778
- components:
- - type: Transform
- pos: -56.5,68.5
- parent: 2
- - uid: 24779
- components:
- - type: Transform
- pos: -67.5,79.5
- parent: 2
- - uid: 24780
- components:
- - type: Transform
- pos: 39.5,2.5
- parent: 2
- - uid: 24781
- components:
- - type: Transform
- pos: -66.5,9.5
- parent: 2
- - uid: 24782
- components:
- - type: Transform
- pos: 23.5,58.5
- parent: 2
- - uid: 24783
- components:
- - type: Transform
- pos: 73.5,-12.5
- parent: 2
- - uid: 24784
- components:
- - type: Transform
- pos: 66.5,-28.5
- parent: 2
- - uid: 24785
- components:
- - type: Transform
- pos: -23.5,-84.5
- parent: 2
- - uid: 24786
- components:
- - type: Transform
- pos: 36.5,89.5
- parent: 2
- - uid: 24787
- components:
- - type: Transform
- pos: 64.5,-19.5
- parent: 2
- - uid: 24788
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,30.5
- parent: 2
- - uid: 24789
- components:
- - type: Transform
- pos: 30.5,86.5
- parent: 2
- - uid: 24790
- components:
- - type: Transform
- pos: 33.5,88.5
- parent: 2
- - uid: 24791
- components:
- - type: Transform
- pos: 47.5,-72.5
- parent: 2
- - uid: 24792
- components:
- - type: Transform
- pos: 89.5,-47.5
- parent: 2
- - uid: 24793
- components:
- - type: Transform
- pos: 50.5,-8.5
- parent: 2
- - uid: 24794
- components:
- - type: Transform
- pos: 24.5,70.5
- parent: 2
- - uid: 24795
- components:
- - type: Transform
- pos: 24.5,71.5
- parent: 2
- - uid: 24796
- components:
- - type: Transform
- pos: 16.5,69.5
- parent: 2
- - uid: 24797
- components:
- - type: Transform
- pos: 54.5,-50.5
- parent: 2
- - uid: 24798
- components:
- - type: Transform
- pos: 23.5,34.5
- parent: 2
- - uid: 24799
- components:
- - type: Transform
- pos: -59.5,5.5
- parent: 2
- - uid: 24800
- components:
- - type: Transform
- pos: 2.5,46.5
- parent: 2
- - uid: 24801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,88.5
- parent: 2
- - uid: 24802
- components:
- - type: Transform
- pos: -11.5,-64.5
- parent: 2
- - uid: 24803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,89.5
- parent: 2
- - uid: 24804
- components:
- - type: Transform
- pos: -26.5,7.5
- parent: 2
- - uid: 24805
- components:
- - type: Transform
- pos: 5.5,32.5
- parent: 2
- - uid: 24806
- components:
- - type: Transform
- pos: 22.5,33.5
- parent: 2
- - uid: 24807
- components:
- - type: Transform
- pos: 16.5,33.5
- parent: 2
- - uid: 24808
- components:
- - type: Transform
- pos: 12.5,39.5
- parent: 2
- - uid: 24809
- components:
- - type: Transform
- pos: 8.5,39.5
- parent: 2
- - uid: 24810
- components:
- - type: Transform
- pos: 8.5,40.5
- parent: 2
- - uid: 24811
- components:
- - type: Transform
- pos: -31.5,75.5
- parent: 2
- - uid: 24812
- components:
- - type: Transform
- pos: 3.5,-70.5
- parent: 2
- - uid: 24813
- components:
- - type: Transform
- pos: -16.5,-25.5
- parent: 2
- - uid: 24814
- components:
- - type: Transform
- pos: -71.5,-42.5
- parent: 2
- - uid: 24815
- components:
- - type: Transform
- pos: -103.5,-2.5
- parent: 2
- - uid: 24816
- components:
- - type: Transform
- pos: 28.5,7.5
- parent: 2
- - uid: 24817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,31.5
- parent: 2
- - uid: 24818
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,41.5
- parent: 2
- - uid: 24819
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,42.5
- parent: 2
- - uid: 24820
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,0.5
- parent: 2
- - uid: 24821
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,2.5
- parent: 2
- - uid: 24822
- components:
- - type: Transform
- pos: 37.5,47.5
- parent: 2
- - uid: 24823
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,1.5
- parent: 2
- - uid: 24824
- components:
- - type: Transform
- pos: 34.5,47.5
- parent: 2
- - uid: 24825
- components:
- - type: Transform
- pos: 35.5,47.5
- parent: 2
- - uid: 24826
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-0.5
- parent: 2
- - uid: 24827
- components:
- - type: Transform
- pos: 39.5,50.5
- parent: 2
- - uid: 24828
- components:
- - type: Transform
- pos: 38.5,53.5
- parent: 2
- - uid: 24829
- components:
- - type: Transform
- pos: 36.5,47.5
- parent: 2
- - uid: 24830
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,39.5
- parent: 2
- - uid: 24831
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-17.5
- parent: 2
- - uid: 24832
- components:
- - type: Transform
- pos: 60.5,-31.5
- parent: 2
- - uid: 24833
- components:
- - type: Transform
- pos: 63.5,-31.5
- parent: 2
- - uid: 24834
- components:
- - type: Transform
- pos: -27.5,75.5
- parent: 2
- - uid: 24835
- components:
- - type: Transform
- pos: 13.5,81.5
- parent: 2
- - uid: 24836
- components:
- - type: Transform
- pos: 61.5,-6.5
- parent: 2
- - uid: 24837
- components:
- - type: Transform
- pos: -23.5,49.5
- parent: 2
- - uid: 24838
- components:
- - type: Transform
- pos: 2.5,78.5
- parent: 2
- - uid: 24839
- components:
- - type: Transform
- pos: -42.5,57.5
- parent: 2
- - uid: 24840
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-56.5
- parent: 2
- - uid: 24841
- components:
- - type: Transform
- pos: 59.5,-8.5
- parent: 2
- - uid: 24842
- components:
- - type: Transform
- pos: -56.5,43.5
- parent: 2
- - uid: 24843
- components:
- - type: Transform
- pos: 41.5,-75.5
- parent: 2
- - uid: 24844
- components:
- - type: Transform
- pos: -77.5,63.5
- parent: 2
- - uid: 24845
- components:
- - type: Transform
- pos: -79.5,10.5
- parent: 2
- - uid: 24846
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-19.5
- parent: 2
- - uid: 24847
- components:
- - type: Transform
- pos: -79.5,11.5
- parent: 2
- - uid: 24848
- components:
- - type: Transform
- pos: -77.5,65.5
- parent: 2
- - uid: 24849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,4.5
- parent: 2
- - uid: 24850
- components:
- - type: Transform
- pos: -67.5,27.5
- parent: 2
- - uid: 24851
- components:
- - type: Transform
- pos: -67.5,28.5
- parent: 2
- - uid: 24852
- components:
- - type: Transform
- pos: 3.5,76.5
- parent: 2
- - uid: 24853
- components:
- - type: Transform
- pos: -71.5,17.5
- parent: 2
- - uid: 24854
- components:
- - type: Transform
- pos: -45.5,29.5
- parent: 2
- - uid: 24855
- components:
- - type: Transform
- pos: -45.5,32.5
- parent: 2
- - uid: 24856
- components:
- - type: Transform
- pos: -55.5,22.5
- parent: 2
- - uid: 24857
- components:
- - type: Transform
- pos: -44.5,17.5
- parent: 2
- - uid: 24858
- components:
- - type: Transform
- pos: -45.5,33.5
- parent: 2
- - uid: 24859
- components:
- - type: Transform
- pos: -45.5,34.5
- parent: 2
- - uid: 24860
- components:
- - type: Transform
- pos: -44.5,19.5
- parent: 2
- - uid: 24861
- components:
- - type: Transform
- pos: -66.5,61.5
- parent: 2
- - uid: 24862
- components:
- - type: Transform
- pos: -67.5,26.5
- parent: 2
- - uid: 24863
- components:
- - type: Transform
- pos: -51.5,67.5
- parent: 2
- - uid: 24864
- components:
- - type: Transform
- pos: 38.5,-79.5
- parent: 2
- - uid: 24865
- components:
- - type: Transform
- pos: -43.5,-61.5
- parent: 2
- - uid: 24866
- components:
- - type: Transform
- pos: -89.5,15.5
- parent: 2
- - uid: 24867
- components:
- - type: Transform
- pos: -36.5,-84.5
- parent: 2
- - uid: 24868
- components:
- - type: Transform
- pos: -89.5,13.5
- parent: 2
- - uid: 24869
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-19.5
- parent: 2
- - uid: 24870
- components:
- - type: Transform
- pos: -53.5,-73.5
- parent: 2
- - uid: 24871
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-21.5
- parent: 2
- - uid: 24872
- components:
- - type: Transform
- pos: -75.5,44.5
- parent: 2
- - uid: 24873
- components:
- - type: Transform
- pos: -58.5,-92.5
- parent: 2
- - uid: 24874
- components:
- - type: Transform
- pos: -59.5,-92.5
- parent: 2
- - uid: 24875
- components:
- - type: Transform
- pos: -53.5,-95.5
- parent: 2
- - uid: 24876
- components:
- - type: Transform
- pos: -66.5,69.5
- parent: 2
- - uid: 24877
- components:
- - type: Transform
- pos: -77.5,33.5
- parent: 2
- - uid: 24878
- components:
- - type: Transform
- pos: -56.5,66.5
- parent: 2
- - uid: 24879
- components:
- - type: Transform
- pos: -43.5,-90.5
- parent: 2
- - uid: 24880
- components:
- - type: Transform
- pos: -59.5,-91.5
- parent: 2
- - uid: 24881
- components:
- - type: Transform
- pos: -49.5,-72.5
- parent: 2
- - uid: 24882
- components:
- - type: Transform
- pos: -75.5,34.5
- parent: 2
- - uid: 24883
- components:
- - type: Transform
- pos: -43.5,-79.5
- parent: 2
- - uid: 24884
- components:
- - type: Transform
- pos: -77.5,46.5
- parent: 2
- - uid: 24885
- components:
- - type: Transform
- pos: -66.5,-51.5
- parent: 2
- - uid: 24886
- components:
- - type: Transform
- pos: -60.5,-83.5
- parent: 2
- - uid: 24887
- components:
- - type: Transform
- pos: -75.5,47.5
- parent: 2
- - uid: 24888
- components:
- - type: Transform
- pos: -79.5,-32.5
- parent: 2
- - uid: 24889
- components:
- - type: Transform
- pos: -77.5,37.5
- parent: 2
- - uid: 24890
- components:
- - type: Transform
- pos: -66.5,72.5
- parent: 2
- - uid: 24891
- components:
- - type: Transform
- pos: -43.5,-92.5
- parent: 2
- - uid: 24892
- components:
- - type: Transform
- pos: -55.5,-92.5
- parent: 2
- - uid: 24893
- components:
- - type: Transform
- pos: -57.5,66.5
- parent: 2
- - uid: 24894
- components:
- - type: Transform
- pos: -77.5,47.5
- parent: 2
- - uid: 24895
- components:
- - type: Transform
- pos: -67.5,-51.5
- parent: 2
- - uid: 24896
- components:
- - type: Transform
- pos: -60.5,-84.5
- parent: 2
- - uid: 24897
- components:
- - type: Transform
- pos: -51.5,-72.5
- parent: 2
- - uid: 24898
- components:
- - type: Transform
- pos: -56.5,-92.5
- parent: 2
- - uid: 24899
- components:
- - type: Transform
- pos: -49.5,-95.5
- parent: 2
- - uid: 24900
- components:
- - type: Transform
- pos: -80.5,-34.5
- parent: 2
- - uid: 24901
- components:
- - type: Transform
- pos: -75.5,-43.5
- parent: 2
- - uid: 24902
- components:
- - type: Transform
- pos: -75.5,-42.5
- parent: 2
- - uid: 24903
- components:
- - type: Transform
- pos: -75.5,-41.5
- parent: 2
- - uid: 24904
- components:
- - type: Transform
- pos: -76.5,54.5
- parent: 2
- - uid: 24905
- components:
- - type: Transform
- pos: -75.5,-40.5
- parent: 2
- - uid: 24906
- components:
- - type: Transform
- pos: 66.5,-17.5
- parent: 2
- - uid: 24907
- components:
- - type: Transform
- pos: -49.5,-94.5
- parent: 2
- - uid: 24908
- components:
- - type: Transform
- pos: -75.5,26.5
- parent: 2
- - uid: 24909
- components:
- - type: Transform
- pos: -75.5,27.5
- parent: 2
- - uid: 24910
- components:
- - type: Transform
- pos: -46.5,-78.5
- parent: 2
- - uid: 24911
- components:
- - type: Transform
- pos: -77.5,-34.5
- parent: 2
- - uid: 24912
- components:
- - type: Transform
- pos: -52.5,67.5
- parent: 2
- - uid: 24913
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-21.5
- parent: 2
- - uid: 24914
- components:
- - type: Transform
- pos: -67.5,69.5
- parent: 2
- - uid: 24915
- components:
- - type: Transform
- pos: -50.5,-95.5
- parent: 2
- - uid: 24916
- components:
- - type: Transform
- pos: -75.5,52.5
- parent: 2
- - uid: 24917
- components:
- - type: Transform
- pos: -77.5,-43.5
- parent: 2
- - uid: 24918
- components:
- - type: Transform
- pos: 20.5,98.5
- parent: 2
- - uid: 24919
- components:
- - type: Transform
- pos: 19.5,98.5
- parent: 2
- - uid: 24920
- components:
- - type: Transform
- pos: 33.5,20.5
- parent: 2
- - uid: 24921
- components:
- - type: Transform
- pos: 3.5,-69.5
- parent: 2
- - uid: 24922
- components:
- - type: Transform
- pos: 78.5,-23.5
- parent: 2
- - uid: 24923
- components:
- - type: Transform
- pos: -20.5,1.5
- parent: 2
- - uid: 24924
- components:
- - type: Transform
- pos: 57.5,-8.5
- parent: 2
- - uid: 24925
- components:
- - type: Transform
- pos: 83.5,-50.5
- parent: 2
- - uid: 24926
- components:
- - type: Transform
- pos: 64.5,-25.5
- parent: 2
- - uid: 24927
- components:
- - type: Transform
- pos: 61.5,-31.5
- parent: 2
- - uid: 24928
- components:
- - type: Transform
- pos: 85.5,15.5
- parent: 2
- - uid: 24929
- components:
- - type: Transform
- pos: -78.5,-34.5
- parent: 2
- - uid: 24930
- components:
- - type: Transform
- pos: -75.5,28.5
- parent: 2
- - uid: 24931
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-21.5
- parent: 2
- - uid: 24932
- components:
- - type: Transform
- pos: -75.5,45.5
- parent: 2
- - uid: 24933
- components:
- - type: Transform
- pos: 64.5,-26.5
- parent: 2
- - uid: 24934
- components:
- - type: Transform
- pos: 65.5,-12.5
- parent: 2
- - uid: 24935
- components:
- - type: Transform
- pos: -89.5,14.5
- parent: 2
- - uid: 24936
- components:
- - type: Transform
- pos: -82.5,66.5
- parent: 2
- - uid: 24937
- components:
- - type: Transform
- pos: -87.5,15.5
- parent: 2
- - uid: 24938
- components:
- - type: Transform
- pos: -80.5,66.5
- parent: 2
- - uid: 24939
- components:
- - type: Transform
- pos: -84.5,74.5
- parent: 2
- - uid: 24940
- components:
- - type: Transform
- pos: -84.5,72.5
- parent: 2
- - uid: 24941
- components:
- - type: Transform
- pos: -53.5,-72.5
- parent: 2
- - uid: 24942
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-19.5
- parent: 2
- - uid: 24943
- components:
- - type: Transform
- pos: -84.5,76.5
- parent: 2
- - uid: 24944
- components:
- - type: Transform
- pos: -83.5,66.5
- parent: 2
- - uid: 24945
- components:
- - type: Transform
- pos: 78.5,-13.5
- parent: 2
- - uid: 24946
- components:
- - type: Transform
- pos: 56.5,-31.5
- parent: 2
- - uid: 24947
- components:
- - type: Transform
- pos: 57.5,-31.5
- parent: 2
- - uid: 24948
- components:
- - type: Transform
- pos: 82.5,-17.5
- parent: 2
- - uid: 24949
- components:
- - type: Transform
- pos: 79.5,-22.5
- parent: 2
- - uid: 24950
- components:
- - type: Transform
- pos: 81.5,-17.5
- parent: 2
- - uid: 24951
- components:
- - type: Transform
- pos: -69.5,58.5
- parent: 2
- - uid: 24952
- components:
- - type: Transform
- pos: -65.5,-48.5
- parent: 2
- - uid: 24953
- components:
- - type: Transform
- pos: -41.5,33.5
- parent: 2
- - uid: 24954
- components:
- - type: Transform
- pos: -69.5,35.5
- parent: 2
- - uid: 24955
- components:
- - type: Transform
- pos: -41.5,32.5
- parent: 2
- - uid: 24956
- components:
- - type: Transform
- pos: -64.5,24.5
- parent: 2
- - uid: 24957
- components:
- - type: Transform
- pos: -77.5,27.5
- parent: 2
- - uid: 24958
- components:
- - type: Transform
- pos: 57.5,-57.5
- parent: 2
- - uid: 24959
- components:
- - type: Transform
- pos: -44.5,57.5
- parent: 2
- - uid: 24960
- components:
- - type: Transform
- pos: -42.5,-51.5
- parent: 2
- - uid: 24961
- components:
- - type: Transform
- pos: -59.5,-89.5
- parent: 2
- - uid: 24962
- components:
- - type: Transform
- pos: -31.5,-84.5
- parent: 2
- - uid: 24963
- components:
- - type: Transform
- pos: 25.5,-65.5
- parent: 2
- - uid: 24964
- components:
- - type: Transform
- pos: 15.5,-23.5
- parent: 2
- - uid: 24965
- components:
- - type: Transform
- pos: -61.5,-2.5
- parent: 2
- - uid: 24966
- components:
- - type: Transform
- pos: -48.5,13.5
- parent: 2
- - uid: 24967
- components:
- - type: Transform
- pos: 30.5,-27.5
- parent: 2
- - uid: 24968
- components:
- - type: Transform
- pos: -56.5,57.5
- parent: 2
- - uid: 24969
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,33.5
- parent: 2
- - uid: 24970
- components:
- - type: Transform
- pos: -35.5,-45.5
- parent: 2
- - uid: 24971
- components:
- - type: Transform
- pos: 21.5,-49.5
- parent: 2
- - uid: 24972
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-54.5
- parent: 2
- - uid: 24973
- components:
- - type: Transform
- pos: -14.5,-21.5
- parent: 2
- - uid: 24974
- components:
- - type: Transform
- pos: 11.5,-14.5
- parent: 2
- - uid: 24975
- components:
- - type: Transform
- pos: 25.5,-32.5
- parent: 2
- - uid: 24976
- components:
- - type: Transform
- pos: 27.5,-25.5
- parent: 2
- - uid: 24977
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-63.5
- parent: 2
- - uid: 24978
- components:
- - type: Transform
- pos: 15.5,-31.5
- parent: 2
- - uid: 24979
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-54.5
- parent: 2
- - uid: 24980
- components:
- - type: Transform
- pos: 66.5,-11.5
- parent: 2
- - uid: 24981
- components:
- - type: Transform
- pos: -75.5,33.5
- parent: 2
- - uid: 24982
- components:
- - type: Transform
- pos: -60.5,-87.5
- parent: 2
- - uid: 24983
- components:
- - type: Transform
- pos: 46.5,14.5
- parent: 2
- - uid: 24984
- components:
- - type: Transform
- pos: 76.5,-24.5
- parent: 2
- - uid: 24985
- components:
- - type: Transform
- pos: 51.5,-56.5
- parent: 2
- - uid: 24986
- components:
- - type: Transform
- pos: 50.5,-60.5
- parent: 2
- - uid: 24987
- components:
- - type: Transform
- pos: -66.5,-47.5
- parent: 2
- - uid: 24988
- components:
- - type: Transform
- pos: -36.5,34.5
- parent: 2
- - uid: 24989
- components:
- - type: Transform
- pos: -15.5,18.5
- parent: 2
- - uid: 24990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-57.5
- parent: 2
- - uid: 24991
- components:
- - type: Transform
- pos: -67.5,50.5
- parent: 2
- - uid: 24992
- components:
- - type: Transform
- pos: 7.5,91.5
- parent: 2
- - uid: 24993
- components:
- - type: Transform
- pos: 8.5,90.5
- parent: 2
- - uid: 24994
- components:
- - type: Transform
- pos: 70.5,-12.5
- parent: 2
- - uid: 24995
- components:
- - type: Transform
- pos: 19.5,92.5
- parent: 2
- - uid: 24996
- components:
- - type: Transform
- pos: -63.5,-48.5
- parent: 2
- - uid: 24997
- components:
- - type: Transform
- pos: -43.5,27.5
- parent: 2
- - uid: 24998
- components:
- - type: Transform
- pos: 82.5,-20.5
- parent: 2
- - uid: 24999
- components:
- - type: Transform
- pos: -65.5,24.5
- parent: 2
- - uid: 25000
- components:
- - type: Transform
- pos: -67.5,13.5
- parent: 2
- - uid: 25001
- components:
- - type: Transform
- pos: 2.5,76.5
- parent: 2
- - uid: 25002
- components:
- - type: Transform
- pos: 3.5,25.5
- parent: 2
- - uid: 25003
- components:
- - type: Transform
- pos: 33.5,47.5
- parent: 2
- - uid: 25004
- components:
- - type: Transform
- pos: 50.5,-6.5
- parent: 2
- - uid: 25005
- components:
- - type: Transform
- pos: 29.5,53.5
- parent: 2
- - uid: 25006
- components:
- - type: Transform
- pos: 47.5,-73.5
- parent: 2
- - uid: 25007
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-67.5
- parent: 2
- - uid: 25008
- components:
- - type: Transform
- pos: 20.5,99.5
- parent: 2
- - uid: 25009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-21.5
- parent: 2
- - uid: 25010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-70.5
- parent: 2
- - uid: 25011
- components:
- - type: Transform
- pos: -77.5,42.5
- parent: 2
- - uid: 25012
- components:
- - type: Transform
- pos: 47.5,-67.5
- parent: 2
- - uid: 25013
- components:
- - type: Transform
- pos: 56.5,-54.5
- parent: 2
- - uid: 25014
- components:
- - type: Transform
- pos: 36.5,3.5
- parent: 2
- - uid: 25015
- components:
- - type: Transform
- pos: 76.5,-14.5
- parent: 2
- - uid: 25016
- components:
- - type: Transform
- pos: -63.5,53.5
- parent: 2
- - uid: 25017
- components:
- - type: Transform
- pos: 66.5,-10.5
- parent: 2
- - uid: 25018
- components:
- - type: Transform
- pos: -5.5,21.5
- parent: 2
- - uid: 25019
- components:
- - type: Transform
- pos: 4.5,-28.5
- parent: 2
- - uid: 25020
- components:
- - type: Transform
- pos: 7.5,17.5
- parent: 2
- - uid: 25021
- components:
- - type: Transform
- pos: -4.5,19.5
- parent: 2
- - uid: 25022
- components:
- - type: Transform
- pos: -6.5,18.5
- parent: 2
- - uid: 25023
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-60.5
- parent: 2
- - uid: 25024
- components:
- - type: Transform
- pos: -105.5,-3.5
- parent: 2
- - uid: 25025
- components:
- - type: Transform
- pos: 13.5,-36.5
- parent: 2
- - uid: 25026
- components:
- - type: Transform
- pos: -70.5,17.5
- parent: 2
- - uid: 25027
- components:
- - type: Transform
- pos: -105.5,-2.5
- parent: 2
- - uid: 25028
- components:
- - type: Transform
- pos: 27.5,-24.5
- parent: 2
- - uid: 25029
- components:
- - type: Transform
- pos: -103.5,-4.5
- parent: 2
- - uid: 25030
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-51.5
- parent: 2
- - uid: 25031
- components:
- - type: Transform
- pos: 20.5,89.5
- parent: 2
- - uid: 25032
- components:
- - type: Transform
- pos: 87.5,-41.5
- parent: 2
- - uid: 25033
- components:
- - type: Transform
- pos: 29.5,85.5
- parent: 2
- - uid: 25034
- components:
- - type: Transform
- pos: 20.5,85.5
- parent: 2
- - uid: 25035
- components:
- - type: Transform
- pos: 21.5,85.5
- parent: 2
- - uid: 25036
- components:
- - type: Transform
- pos: 30.5,85.5
- parent: 2
- - uid: 25037
- components:
- - type: Transform
- pos: 86.5,-41.5
- parent: 2
- - uid: 25038
- components:
- - type: Transform
- pos: 67.5,-27.5
- parent: 2
- - uid: 25039
- components:
- - type: Transform
- pos: -39.5,-80.5
- parent: 2
- - uid: 25040
- components:
- - type: Transform
- pos: -49.5,56.5
- parent: 2
- - uid: 25041
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,6.5
- parent: 2
- - uid: 25042
- components:
- - type: Transform
- pos: -58.5,68.5
- parent: 2
- - uid: 25043
- components:
- - type: Transform
- pos: 48.5,-60.5
- parent: 2
- - uid: 25044
- components:
- - type: Transform
- pos: 45.5,-67.5
- parent: 2
- - uid: 25045
- components:
- - type: Transform
- pos: 37.5,98.5
- parent: 2
- - uid: 25046
- components:
- - type: Transform
- pos: 83.5,-35.5
- parent: 2
- - uid: 25047
- components:
- - type: Transform
- pos: 79.5,-41.5
- parent: 2
- - uid: 25048
- components:
- - type: Transform
- pos: 27.5,25.5
- parent: 2
- - uid: 25049
- components:
- - type: Transform
- pos: 2.5,85.5
- parent: 2
- - uid: 25050
- components:
- - type: Transform
- pos: -50.5,56.5
- parent: 2
- - uid: 25051
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-50.5
- parent: 2
- - uid: 25052
- components:
- - type: Transform
- pos: -50.5,30.5
- parent: 2
- - uid: 25053
- components:
- - type: Transform
- pos: -67.5,46.5
- parent: 2
- - uid: 25054
- components:
- - type: Transform
- pos: 2.5,-60.5
- parent: 2
- - uid: 25055
- components:
- - type: Transform
- pos: -3.5,-60.5
- parent: 2
- - uid: 25056
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-55.5
- parent: 2
- - uid: 25057
- components:
- - type: Transform
- pos: 29.5,-70.5
- parent: 2
- - uid: 25058
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-60.5
- parent: 2
- - uid: 25059
- components:
- - type: Transform
- pos: 3.5,82.5
- parent: 2
- - uid: 25060
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-48.5
- parent: 2
- - uid: 25061
- components:
- - type: Transform
- pos: 66.5,32.5
- parent: 2
- - uid: 25062
- components:
- - type: Transform
- pos: -35.5,-80.5
- parent: 2
- - uid: 25063
- components:
- - type: Transform
- pos: -44.5,-73.5
- parent: 2
- - uid: 25064
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-54.5
- parent: 2
- - uid: 25065
- components:
- - type: Transform
- pos: -44.5,-72.5
- parent: 2
- - uid: 25066
- components:
- - type: Transform
- pos: 29.5,20.5
- parent: 2
- - uid: 25067
- components:
- - type: Transform
- pos: 4.5,75.5
- parent: 2
- - uid: 25068
- components:
- - type: Transform
- pos: 7.5,-77.5
- parent: 2
- - uid: 25069
- components:
- - type: Transform
- pos: 35.5,-72.5
- parent: 2
- - uid: 25070
- components:
- - type: Transform
- pos: -66.5,68.5
- parent: 2
- - uid: 25071
- components:
- - type: Transform
- pos: 83.5,-51.5
- parent: 2
- - uid: 25072
- components:
- - type: Transform
- pos: 6.5,-78.5
- parent: 2
- - uid: 25073
- components:
- - type: Transform
- pos: 9.5,25.5
- parent: 2
- - uid: 25074
- components:
- - type: Transform
- pos: 26.5,85.5
- parent: 2
- - uid: 25075
- components:
- - type: Transform
- pos: 19.5,95.5
- parent: 2
- - uid: 25076
- components:
- - type: Transform
- pos: -86.5,11.5
- parent: 2
- - uid: 25077
- components:
- - type: Transform
- pos: 78.5,-20.5
- parent: 2
- - uid: 25078
- components:
- - type: Transform
- pos: 4.5,-78.5
- parent: 2
- - uid: 25079
- components:
- - type: Transform
- pos: -59.5,11.5
- parent: 2
- - uid: 25080
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-46.5
- parent: 2
- - uid: 25081
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-54.5
- parent: 2
- - uid: 25082
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-60.5
- parent: 2
- - uid: 25083
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,91.5
- parent: 2
- - uid: 25084
- components:
- - type: Transform
- pos: 4.5,83.5
- parent: 2
- - uid: 25085
- components:
- - type: Transform
- pos: -36.5,64.5
- parent: 2
- - uid: 25086
- components:
- - type: Transform
- pos: 11.5,-66.5
- parent: 2
- - uid: 25087
- components:
- - type: Transform
- pos: -50.5,28.5
- parent: 2
- - uid: 25088
- components:
- - type: Transform
- pos: 79.5,-17.5
- parent: 2
- - uid: 25089
- components:
- - type: Transform
- pos: -11.5,-67.5
- parent: 2
- - uid: 25090
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-68.5
- parent: 2
- - uid: 25091
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,89.5
- parent: 2
- - uid: 25092
- components:
- - type: Transform
- pos: -3.5,-58.5
- parent: 2
- - uid: 25093
- components:
- - type: Transform
- pos: 7.5,-68.5
- parent: 2
- - uid: 25094
- components:
- - type: Transform
- pos: 16.5,72.5
- parent: 2
- - uid: 25095
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,94.5
- parent: 2
- - uid: 25096
- components:
- - type: Transform
- pos: 78.5,-14.5
- parent: 2
- - uid: 25097
- components:
- - type: Transform
- pos: 78.5,-25.5
- parent: 2
- - uid: 25098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-56.5
- parent: 2
- - uid: 25099
- components:
- - type: Transform
- pos: 20.5,17.5
- parent: 2
- - uid: 25100
- components:
- - type: Transform
- pos: 35.5,-32.5
- parent: 2
- - uid: 25101
- components:
- - type: Transform
- pos: -67.5,30.5
- parent: 2
- - uid: 25102
- components:
- - type: Transform
- pos: -42.5,-52.5
- parent: 2
- - uid: 25103
- components:
- - type: Transform
- pos: -52.5,56.5
- parent: 2
- - uid: 25104
- components:
- - type: Transform
- pos: -20.5,14.5
- parent: 2
- - uid: 25105
- components:
- - type: Transform
- pos: -27.5,-32.5
- parent: 2
- - uid: 25106
- components:
- - type: Transform
- pos: -61.5,-1.5
- parent: 2
- - uid: 25107
- components:
- - type: Transform
- pos: -22.5,-82.5
- parent: 2
- - uid: 25108
- components:
- - type: Transform
- pos: 2.5,-58.5
- parent: 2
- - uid: 25109
- components:
- - type: Transform
- pos: 56.5,-56.5
- parent: 2
- - uid: 25110
- components:
- - type: Transform
- pos: 47.5,-71.5
- parent: 2
- - uid: 25111
- components:
- - type: Transform
- pos: 57.5,-49.5
- parent: 2
- - uid: 25112
- components:
- - type: Transform
- pos: -75.5,43.5
- parent: 2
- - uid: 25113
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-64.5
- parent: 2
- - uid: 25114
- components:
- - type: Transform
- pos: 80.5,-15.5
- parent: 2
- - uid: 25115
- components:
- - type: Transform
- pos: -59.5,-82.5
- parent: 2
- - uid: 25116
- components:
- - type: Transform
- pos: 5.5,19.5
- parent: 2
- - uid: 25117
- components:
- - type: Transform
- pos: 66.5,-30.5
- parent: 2
- - uid: 25118
- components:
- - type: Transform
- pos: 57.5,-41.5
- parent: 2
- - uid: 25119
- components:
- - type: Transform
- pos: 60.5,-8.5
- parent: 2
- - uid: 25120
- components:
- - type: Transform
- pos: 71.5,-27.5
- parent: 2
- - uid: 25121
- components:
- - type: Transform
- pos: -42.5,62.5
- parent: 2
- - uid: 25122
- components:
- - type: Transform
- pos: 56.5,-39.5
- parent: 2
- - uid: 25123
- components:
- - type: Transform
- pos: 36.5,91.5
- parent: 2
- - uid: 25124
- components:
- - type: Transform
- pos: -75.5,40.5
- parent: 2
- - uid: 25125
- components:
- - type: Transform
- pos: -38.5,-83.5
- parent: 2
- - uid: 25126
- components:
- - type: Transform
- pos: 72.5,-52.5
- parent: 2
- - uid: 25127
- components:
- - type: Transform
- pos: -77.5,52.5
- parent: 2
- - uid: 25128
- components:
- - type: Transform
- pos: 45.5,-79.5
- parent: 2
- - uid: 25129
- components:
- - type: Transform
- pos: 73.5,-27.5
- parent: 2
- - uid: 25130
- components:
- - type: Transform
- pos: 52.5,-56.5
- parent: 2
- - uid: 25131
- components:
- - type: Transform
- pos: -19.5,-77.5
- parent: 2
- - uid: 25132
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,31.5
- parent: 2
- - uid: 25133
- components:
- - type: Transform
- pos: 80.5,-12.5
- parent: 2
- - uid: 25134
- components:
- - type: Transform
- pos: 43.5,-79.5
- parent: 2
- - uid: 25135
- components:
- - type: Transform
- pos: 35.5,88.5
- parent: 2
- - uid: 25136
- components:
- - type: Transform
- pos: 35.5,7.5
- parent: 2
- - uid: 25137
- components:
- - type: Transform
- pos: 22.5,33.5
- parent: 2
- - uid: 25138
- components:
- - type: Transform
- pos: 18.5,31.5
- parent: 2
- - uid: 25139
- components:
- - type: Transform
- pos: 38.5,9.5
- parent: 2
- - uid: 25140
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,9.5
- parent: 2
- - uid: 25141
- components:
- - type: Transform
- pos: 1.5,-31.5
- parent: 2
- - uid: 25142
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,7.5
- parent: 2
- - uid: 25143
- components:
- - type: Transform
- pos: 4.5,90.5
- parent: 2
- - uid: 25144
- components:
- - type: Transform
- pos: 11.5,60.5
- parent: 2
- - uid: 25145
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,8.5
- parent: 2
- - uid: 25146
- components:
- - type: Transform
- pos: 58.5,-47.5
- parent: 2
- - uid: 25147
- components:
- - type: Transform
- pos: -35.5,64.5
- parent: 2
- - uid: 25148
- components:
- - type: Transform
- pos: -43.5,28.5
- parent: 2
- - uid: 25149
- components:
- - type: Transform
- pos: 18.5,29.5
- parent: 2
- - uid: 25150
- components:
- - type: Transform
- pos: 3.5,83.5
- parent: 2
- - uid: 25151
- components:
- - type: Transform
- pos: -67.5,37.5
- parent: 2
- - uid: 25152
- components:
- - type: Transform
- pos: -46.5,26.5
- parent: 2
- - uid: 25153
- components:
- - type: Transform
- pos: -36.5,26.5
- parent: 2
- - uid: 25154
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,9.5
- parent: 2
- - uid: 25155
- components:
- - type: Transform
- pos: -57.5,37.5
- parent: 2
- - uid: 25156
- components:
- - type: Transform
- pos: -18.5,-51.5
- parent: 2
- - uid: 25157
- components:
- - type: Transform
- pos: -49.5,26.5
- parent: 2
- - uid: 25158
- components:
- - type: Transform
- pos: -67.5,31.5
- parent: 2
- - uid: 25159
- components:
- - type: Transform
- pos: -67.5,49.5
- parent: 2
- - uid: 25160
- components:
- - type: Transform
- pos: 11.5,-32.5
- parent: 2
- - uid: 25161
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-19.5
- parent: 2
- - uid: 25162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-19.5
- parent: 2
- - uid: 25163
- components:
- - type: Transform
- pos: -61.5,17.5
- parent: 2
- - uid: 25164
- components:
- - type: Transform
- pos: 1.5,-29.5
- parent: 2
- - uid: 25165
- components:
- - type: Transform
- pos: 28.5,-70.5
- parent: 2
- - uid: 25166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,31.5
- parent: 2
- - uid: 25167
- components:
- - type: Transform
- pos: 77.5,-38.5
- parent: 2
- - uid: 25168
- components:
- - type: Transform
- pos: 42.5,-79.5
- parent: 2
- - uid: 25169
- components:
- - type: Transform
- pos: 74.5,26.5
- parent: 2
- - uid: 25170
- components:
- - type: Transform
- pos: -19.5,-36.5
- parent: 2
- - uid: 25171
- components:
- - type: Transform
- pos: -16.5,13.5
- parent: 2
- - uid: 25172
- components:
- - type: Transform
- pos: -67.5,39.5
- parent: 2
- - uid: 25173
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,3.5
- parent: 2
- - uid: 25174
- components:
- - type: Transform
- pos: -3.5,-35.5
- parent: 2
- - uid: 25175
- components:
- - type: Transform
- pos: 65.5,-27.5
- parent: 2
- - uid: 25176
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,6.5
- parent: 2
- - uid: 25177
- components:
- - type: Transform
- pos: 85.5,11.5
- parent: 2
- - uid: 25178
- components:
- - type: Transform
- pos: -35.5,-38.5
- parent: 2
- - uid: 25179
-=======
- rot: 3.141592653589793 rad
- pos: 24.5,-4.5
- parent: 2
- - uid: 23126
- components:
- - type: Transform
- pos: 31.5,-70.5
- parent: 2
- - uid: 23127
- components:
- - type: Transform
- pos: 15.5,-37.5
- parent: 2
- - uid: 23128
- components:
- - type: Transform
- pos: -61.5,18.5
- parent: 2
- - uid: 23129
- components:
- - type: Transform
- pos: -36.5,33.5
- parent: 2
- - uid: 23130
- components:
- - type: Transform
- pos: -76.5,61.5
- parent: 2
- - uid: 23131
- components:
- - type: Transform
- pos: 58.5,-8.5
- parent: 2
- - uid: 23132
- components:
- - type: Transform
- pos: -68.5,-46.5
- parent: 2
- - uid: 23133
- components:
- - type: Transform
- pos: -70.5,-44.5
- parent: 2
- - uid: 23134
- components:
- - type: Transform
- pos: -105.5,-0.5
- parent: 2
- - uid: 23135
- components:
- - type: Transform
- pos: 50.5,-56.5
- parent: 2
- - uid: 23136
- components:
- - type: Transform
- pos: 80.5,-13.5
- parent: 2
- - uid: 23137
- components:
- - type: Transform
- pos: 62.5,-31.5
- parent: 2
- - uid: 23138
- components:
- - type: Transform
- pos: -43.5,29.5
- parent: 2
- - uid: 23139
- components:
- - type: Transform
- pos: 71.5,14.5
- parent: 2
- - uid: 23140
- components:
- - type: Transform
- pos: -20.5,70.5
- parent: 2
- - uid: 23141
- components:
- - type: Transform
- pos: 76.5,-22.5
- parent: 2
- - uid: 23142
- components:
- - type: Transform
- pos: -13.5,49.5
- parent: 2
- - uid: 23143
- components:
- - type: Transform
- pos: -42.5,-30.5
- parent: 2
- - uid: 23144
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,50.5
- parent: 2
- - uid: 23145
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,92.5
- parent: 2
- - uid: 23146
- components:
- - type: Transform
- pos: -6.5,-62.5
- parent: 2
- - uid: 23147
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,43.5
- parent: 2
- - uid: 23148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,31.5
- parent: 2
- - uid: 23149
- components:
- - type: Transform
- pos: 57.5,-42.5
- parent: 2
- - uid: 23150
- components:
- - type: Transform
- pos: -2.5,-13.5
- parent: 2
- - uid: 23151
- components:
- - type: Transform
- pos: 71.5,16.5
- parent: 2
- - uid: 23152
- components:
- - type: Transform
- pos: 25.5,39.5
- parent: 2
- - uid: 23153
- components:
- - type: Transform
- pos: -59.5,9.5
- parent: 2
- - uid: 23154
- components:
- - type: Transform
- pos: -37.5,64.5
- parent: 2
- - uid: 23155
- components:
- - type: Transform
- pos: 19.5,16.5
- parent: 2
- - uid: 23156
- components:
- - type: Transform
- pos: 67.5,-12.5
- parent: 2
- - uid: 23157
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,89.5
- parent: 2
- - uid: 23158
- components:
- - type: Transform
- pos: 10.5,32.5
- parent: 2
- - uid: 23159
- components:
- - type: Transform
- pos: 57.5,-44.5
- parent: 2
- - uid: 23160
- components:
- - type: Transform
- pos: 74.5,-25.5
- parent: 2
- - uid: 23161
- components:
- - type: Transform
- pos: -69.5,17.5
- parent: 2
- - uid: 23162
- components:
- - type: Transform
- pos: -55.5,31.5
- parent: 2
- - uid: 23163
- components:
- - type: Transform
- pos: -57.5,33.5
- parent: 2
- - uid: 23164
- components:
- - type: Transform
- pos: -53.5,31.5
- parent: 2
- - uid: 23165
- components:
- - type: Transform
- pos: 81.5,11.5
- parent: 2
- - uid: 23166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-2.5
- parent: 2
- - uid: 23167
- components:
- - type: Transform
- pos: -47.5,-0.5
- parent: 2
- - uid: 23168
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-3.5
- parent: 2
- - uid: 23169
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-39.5
- parent: 2
- - uid: 23170
- components:
- - type: Transform
- pos: -24.5,-80.5
- parent: 2
- - uid: 23171
- components:
- - type: Transform
- pos: 16.5,65.5
- parent: 2
- - uid: 23172
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-58.5
- parent: 2
- - uid: 23173
- components:
- - type: Transform
- pos: -20.5,10.5
- parent: 2
- - uid: 23174
- components:
- - type: Transform
- pos: -38.5,-24.5
- parent: 2
- - uid: 23175
- components:
- - type: Transform
- pos: -2.5,-29.5
- parent: 2
- - uid: 23176
- components:
- - type: Transform
- pos: -22.5,7.5
- parent: 2
- - uid: 23177
- components:
- - type: Transform
- pos: -23.5,70.5
- parent: 2
- - uid: 23178
- components:
- - type: Transform
- pos: -61.5,53.5
- parent: 2
- - uid: 23179
- components:
- - type: Transform
- pos: 66.5,-24.5
- parent: 2
- - uid: 23180
- components:
- - type: Transform
- pos: 77.5,-22.5
- parent: 2
- - uid: 23181
- components:
- - type: Transform
- pos: -2.5,-31.5
- parent: 2
- - uid: 23182
- components:
- - type: Transform
- pos: -16.5,-82.5
- parent: 2
- - uid: 23183
- components:
- - type: Transform
- pos: -53.5,39.5
- parent: 2
- - uid: 23184
- components:
- - type: Transform
- pos: -60.5,51.5
- parent: 2
- - uid: 23185
- components:
- - type: Transform
- pos: -51.5,33.5
- parent: 2
- - uid: 23186
- components:
- - type: Transform
- pos: 37.5,-32.5
- parent: 2
- - uid: 23187
- components:
- - type: Transform
- pos: -46.5,-73.5
- parent: 2
- - uid: 23188
- components:
- - type: Transform
- pos: 23.5,37.5
- parent: 2
- - uid: 23189
- components:
- - type: Transform
- pos: 5.5,18.5
- parent: 2
- - uid: 23190
- components:
- - type: Transform
- pos: -27.5,-42.5
- parent: 2
- - uid: 23191
- components:
- - type: Transform
- pos: 26.5,-32.5
- parent: 2
- - uid: 23192
- components:
- - type: Transform
- pos: 1.5,-23.5
- parent: 2
- - uid: 23193
- components:
- - type: Transform
- pos: 15.5,-40.5
- parent: 2
- - uid: 23194
- components:
- - type: Transform
- pos: 28.5,-32.5
- parent: 2
- - uid: 23195
- components:
- - type: Transform
- pos: -76.5,17.5
- parent: 2
- - uid: 23196
- components:
- - type: Transform
- pos: -103.5,-7.5
- parent: 2
- - uid: 23197
- components:
- - type: Transform
- pos: 2.5,66.5
- parent: 2
- - uid: 23198
- components:
- - type: Transform
- pos: 4.5,63.5
- parent: 2
- - uid: 23199
- components:
- - type: Transform
- pos: -36.5,17.5
- parent: 2
- - uid: 23200
- components:
- - type: Transform
- pos: 39.5,47.5
- parent: 2
- - uid: 23201
- components:
- - type: Transform
- pos: -0.5,70.5
- parent: 2
- - uid: 23202
- components:
- - type: Transform
- pos: -34.5,17.5
- parent: 2
- - uid: 23203
- components:
- - type: Transform
- pos: 4.5,89.5
- parent: 2
- - uid: 23204
- components:
- - type: Transform
- pos: 4.5,86.5
- parent: 2
- - uid: 23205
- components:
- - type: Transform
- pos: 63.5,-8.5
- parent: 2
- - uid: 23206
- components:
- - type: Transform
- pos: 66.5,-29.5
- parent: 2
- - uid: 23207
- components:
- - type: Transform
- pos: -45.5,27.5
- parent: 2
- - uid: 23208
- components:
- - type: Transform
- pos: 72.5,-14.5
- parent: 2
- - uid: 23209
- components:
- - type: Transform
- pos: -21.5,22.5
- parent: 2
- - uid: 23210
- components:
- - type: Transform
- pos: -66.5,53.5
- parent: 2
- - uid: 23211
- components:
- - type: Transform
- pos: -55.5,39.5
- parent: 2
- - uid: 23212
- components:
- - type: Transform
- pos: -31.5,95.5
- parent: 2
- - uid: 23213
- components:
- - type: Transform
- pos: -30.5,-9.5
- parent: 2
- - uid: 23214
- components:
- - type: Transform
- pos: -23.5,7.5
- parent: 2
- - uid: 23215
- components:
- - type: Transform
- pos: 66.5,-27.5
- parent: 2
- - uid: 23216
- components:
- - type: Transform
- pos: 81.5,-22.5
- parent: 2
- - uid: 23217
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-5.5
- parent: 2
- - uid: 23218
- components:
- - type: Transform
- pos: 76.5,-15.5
- parent: 2
- - uid: 23219
- components:
- - type: Transform
- pos: -44.5,-75.5
- parent: 2
- - uid: 23220
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.5,33.5
- parent: 2
- - uid: 23221
- components:
- - type: Transform
- pos: 71.5,15.5
- parent: 2
- - uid: 23222
- components:
- - type: Transform
- pos: -73.5,17.5
- parent: 2
- - uid: 23223
- components:
- - type: Transform
- pos: -75.5,17.5
- parent: 2
- - uid: 23224
- components:
- - type: Transform
- pos: -47.5,2.5
- parent: 2
- - uid: 23225
- components:
- - type: Transform
- pos: 30.5,-32.5
- parent: 2
- - uid: 23226
- components:
- - type: Transform
- pos: -47.5,0.5
- parent: 2
- - uid: 23227
- components:
- - type: Transform
- pos: -61.5,-11.5
- parent: 2
- - uid: 23228
- components:
- - type: Transform
- pos: -11.5,-42.5
- parent: 2
- - uid: 23229
- components:
- - type: Transform
- pos: -20.5,-51.5
- parent: 2
- - uid: 23230
- components:
- - type: Transform
- pos: -10.5,-35.5
- parent: 2
- - uid: 23231
- components:
- - type: Transform
- pos: -9.5,-44.5
- parent: 2
- - uid: 23232
- components:
- - type: Transform
- pos: -10.5,-21.5
- parent: 2
- - uid: 23233
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,33.5
- parent: 2
- - uid: 23234
- components:
- - type: Transform
- pos: -5.5,-12.5
- parent: 2
- - uid: 23235
- components:
- - type: Transform
- pos: -12.5,21.5
- parent: 2
- - uid: 23236
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-61.5
- parent: 2
- - uid: 23237
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,6.5
- parent: 2
- - uid: 23238
- components:
- - type: Transform
- pos: 44.5,-59.5
- parent: 2
- - uid: 23239
- components:
- - type: Transform
- pos: 12.5,13.5
- parent: 2
- - uid: 23240
- components:
- - type: Transform
- pos: 25.5,-42.5
- parent: 2
- - uid: 23241
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,33.5
- parent: 2
- - uid: 23242
- components:
- - type: Transform
- pos: 37.5,-62.5
- parent: 2
- - uid: 23243
- components:
- - type: Transform
- pos: -7.5,-21.5
- parent: 2
- - uid: 23244
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,33.5
- parent: 2
- - uid: 23245
- components:
- - type: Transform
- pos: -11.5,-48.5
- parent: 2
- - uid: 23246
- components:
- - type: Transform
- pos: 37.5,-60.5
- parent: 2
- - uid: 23247
- components:
- - type: Transform
- pos: -6.5,-28.5
- parent: 2
- - uid: 23248
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,32.5
- parent: 2
- - uid: 23249
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,33.5
- parent: 2
- - uid: 23250
- components:
- - type: Transform
- pos: -86.5,12.5
- parent: 2
- - uid: 23251
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-19.5
- parent: 2
- - uid: 23252
- components:
- - type: Transform
- pos: -60.5,-53.5
- parent: 2
- - uid: 23253
- components:
- - type: Transform
- pos: -77.5,39.5
- parent: 2
- - uid: 23254
- components:
- - type: Transform
- pos: 31.5,-72.5
- parent: 2
- - uid: 23255
- components:
- - type: Transform
- pos: 55.5,-41.5
- parent: 2
- - uid: 23256
- components:
- - type: Transform
- pos: 31.5,88.5
- parent: 2
- - uid: 23257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-19.5
- parent: 2
- - uid: 23258
- components:
- - type: Transform
- pos: 11.5,59.5
- parent: 2
- - uid: 23259
- components:
- - type: Transform
- pos: 6.5,38.5
- parent: 2
- - uid: 23260
- components:
- - type: Transform
- pos: 82.5,-19.5
- parent: 2
- - uid: 23261
- components:
- - type: Transform
- pos: 38.5,47.5
- parent: 2
- - uid: 23262
- components:
- - type: Transform
- pos: -60.5,-82.5
- parent: 2
- - uid: 23263
- components:
- - type: Transform
- pos: -65.5,-51.5
- parent: 2
- - uid: 23264
- components:
- - type: Transform
- pos: -60.5,68.5
- parent: 2
- - uid: 23265
- components:
- - type: Transform
- pos: -83.5,78.5
- parent: 2
- - uid: 23266
- components:
- - type: Transform
- pos: -59.5,68.5
- parent: 2
- - uid: 23267
- components:
- - type: Transform
- pos: 77.5,-37.5
- parent: 2
- - uid: 23268
- components:
- - type: Transform
- pos: 81.5,-35.5
- parent: 2
- - uid: 23269
- components:
- - type: Transform
- pos: 70.5,-25.5
- parent: 2
- - uid: 23270
- components:
- - type: Transform
- pos: 89.5,-43.5
- parent: 2
- - uid: 23271
- components:
- - type: Transform
- pos: 77.5,-49.5
- parent: 2
- - uid: 23272
- components:
- - type: Transform
- pos: 26.5,105.5
- parent: 2
- - uid: 23273
- components:
- - type: Transform
- pos: 84.5,-41.5
- parent: 2
- - uid: 23274
- components:
- - type: Transform
- pos: 41.5,-79.5
- parent: 2
- - uid: 23275
- components:
- - type: Transform
- pos: 33.5,102.5
- parent: 2
- - uid: 23276
- components:
- - type: Transform
- pos: -77.5,44.5
- parent: 2
- - uid: 23277
- components:
- - type: Transform
- pos: -79.5,-36.5
- parent: 2
- - uid: 23278
- components:
- - type: Transform
- pos: -77.5,43.5
- parent: 2
- - uid: 23279
- components:
- - type: Transform
- pos: -55.5,-51.5
- parent: 2
- - uid: 23280
- components:
- - type: Transform
- pos: 31.5,-56.5
- parent: 2
- - uid: 23281
- components:
- - type: Transform
- pos: 13.5,70.5
- parent: 2
- - uid: 23282
- components:
- - type: Transform
- pos: 77.5,-35.5
- parent: 2
- - uid: 23283
- components:
- - type: Transform
- pos: 32.5,-74.5
- parent: 2
- - uid: 23284
- components:
- - type: Transform
- pos: -24.5,-84.5
- parent: 2
- - uid: 23285
- components:
- - type: Transform
- pos: 77.5,-51.5
- parent: 2
- - uid: 23286
- components:
- - type: Transform
- pos: 77.5,-39.5
- parent: 2
- - uid: 23287
- components:
- - type: Transform
- pos: 83.5,-37.5
- parent: 2
- - uid: 23288
- components:
- - type: Transform
- pos: -53.5,69.5
- parent: 2
- - uid: 23289
- components:
- - type: Transform
- pos: -52.5,69.5
- parent: 2
- - uid: 23290
- components:
- - type: Transform
- pos: 83.5,-52.5
- parent: 2
- - uid: 23291
- components:
- - type: Transform
- pos: 83.5,-38.5
- parent: 2
- - uid: 23292
- components:
- - type: Transform
- pos: 83.5,-39.5
- parent: 2
- - uid: 23293
- components:
- - type: Transform
- pos: 40.5,16.5
- parent: 2
- - uid: 23294
- components:
- - type: Transform
- pos: 36.5,98.5
- parent: 2
- - uid: 23295
- components:
- - type: Transform
- pos: 37.5,94.5
- parent: 2
- - uid: 23296
- components:
- - type: Transform
- pos: 37.5,95.5
- parent: 2
- - uid: 23297
- components:
- - type: Transform
- pos: 37.5,92.5
- parent: 2
- - uid: 23298
- components:
- - type: Transform
- pos: 36.5,92.5
- parent: 2
- - uid: 23299
- components:
- - type: Transform
- pos: 36.5,101.5
- parent: 2
- - uid: 23300
- components:
- - type: Transform
- pos: 36.5,99.5
- parent: 2
- - uid: 23301
- components:
- - type: Transform
- pos: 83.5,-40.5
- parent: 2
- - uid: 23302
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,7.5
- parent: 2
- - uid: 23303
- components:
- - type: Transform
- pos: 25.5,85.5
- parent: 2
- - uid: 23304
- components:
- - type: Transform
- pos: -43.5,-82.5
- parent: 2
- - uid: 23305
- components:
- - type: Transform
- pos: -44.5,66.5
- parent: 2
- - uid: 23306
- components:
- - type: Transform
- pos: -45.5,68.5
- parent: 2
- - uid: 23307
- components:
- - type: Transform
- pos: -53.5,-75.5
- parent: 2
- - uid: 23308
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,6.5
- parent: 2
- - uid: 23309
- components:
- - type: Transform
- pos: -49.5,69.5
- parent: 2
- - uid: 23310
- components:
- - type: Transform
- pos: -42.5,-84.5
- parent: 2
- - uid: 23311
- components:
- - type: Transform
- pos: -45.5,66.5
- parent: 2
- - uid: 23312
- components:
- - type: Transform
- pos: 68.5,-12.5
- parent: 2
- - uid: 23313
- components:
- - type: Transform
- pos: 74.5,-14.5
- parent: 2
- - uid: 23314
- components:
- - type: Transform
- pos: 78.5,-12.5
- parent: 2
- - uid: 23315
- components:
- - type: Transform
- pos: 58.5,-31.5
- parent: 2
- - uid: 23316
- components:
- - type: Transform
- pos: 72.5,-27.5
- parent: 2
- - uid: 23317
- components:
- - type: Transform
- pos: 62.5,-8.5
- parent: 2
- - uid: 23318
- components:
- - type: Transform
- pos: -59.5,7.5
- parent: 2
- - uid: 23319
- components:
- - type: Transform
- pos: 66.5,-15.5
- parent: 2
- - uid: 23320
- components:
- - type: Transform
- pos: 12.5,40.5
- parent: 2
- - uid: 23321
- components:
- - type: Transform
- pos: 75.5,-25.5
- parent: 2
- - uid: 23322
- components:
- - type: Transform
- pos: -42.5,-86.5
- parent: 2
- - uid: 23323
- components:
- - type: Transform
- pos: 10.5,25.5
- parent: 2
- - uid: 23324
- components:
- - type: Transform
- pos: -21.5,-82.5
- parent: 2
- - uid: 23325
- components:
- - type: Transform
- pos: 83.5,-36.5
- parent: 2
- - uid: 23326
- components:
- - type: Transform
- pos: 72.5,-47.5
- parent: 2
- - uid: 23327
- components:
- - type: Transform
- pos: 82.5,-35.5
- parent: 2
- - uid: 23328
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-71.5
- parent: 2
- - uid: 23329
- components:
- - type: Transform
- pos: 85.5,-41.5
- parent: 2
- - uid: 23330
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-59.5
- parent: 2
- - uid: 23331
- components:
- - type: Transform
- pos: 37.5,7.5
- parent: 2
- - uid: 23332
- components:
- - type: Transform
- pos: -79.5,-37.5
- parent: 2
- - uid: 23333
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,6.5
- parent: 2
- - uid: 23334
- components:
- - type: Transform
- pos: -59.5,-81.5
- parent: 2
- - uid: 23335
- components:
- - type: Transform
- pos: -53.5,-76.5
- parent: 2
- - uid: 23336
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,-19.5
- parent: 2
- - uid: 23337
- components:
- - type: Transform
- pos: -77.5,38.5
- parent: 2
- - uid: 23338
- components:
- - type: Transform
- pos: 30.5,88.5
- parent: 2
- - uid: 23339
- components:
- - type: Transform
- pos: -56.5,68.5
- parent: 2
- - uid: 23340
- components:
- - type: Transform
- pos: -67.5,79.5
- parent: 2
- - uid: 23341
- components:
- - type: Transform
- pos: 39.5,2.5
- parent: 2
- - uid: 23342
- components:
- - type: Transform
- pos: -66.5,9.5
- parent: 2
- - uid: 23343
- components:
- - type: Transform
- pos: 23.5,58.5
- parent: 2
- - uid: 23344
- components:
- - type: Transform
- pos: 73.5,-12.5
- parent: 2
- - uid: 23345
- components:
- - type: Transform
- pos: 66.5,-28.5
- parent: 2
- - uid: 23346
- components:
- - type: Transform
- pos: -23.5,-84.5
- parent: 2
- - uid: 23347
- components:
- - type: Transform
- pos: 36.5,89.5
- parent: 2
- - uid: 23348
- components:
- - type: Transform
- pos: 64.5,-19.5
- parent: 2
- - uid: 23349
- components:
- - type: Transform
- pos: 30.5,86.5
- parent: 2
- - uid: 23350
- components:
- - type: Transform
- pos: 33.5,88.5
- parent: 2
- - uid: 23351
- components:
- - type: Transform
- pos: 89.5,-47.5
- parent: 2
- - uid: 23352
- components:
- - type: Transform
- pos: 50.5,-8.5
- parent: 2
- - uid: 23353
- components:
- - type: Transform
- pos: 24.5,70.5
- parent: 2
- - uid: 23354
- components:
- - type: Transform
- pos: 24.5,71.5
- parent: 2
- - uid: 23355
- components:
- - type: Transform
- pos: 16.5,69.5
- parent: 2
- - uid: 23356
- components:
- - type: Transform
- pos: 23.5,34.5
- parent: 2
- - uid: 23357
- components:
- - type: Transform
- pos: -59.5,5.5
- parent: 2
- - uid: 23358
- components:
- - type: Transform
- pos: 2.5,46.5
- parent: 2
- - uid: 23359
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,88.5
- parent: 2
- - uid: 23360
- components:
- - type: Transform
- pos: -11.5,-64.5
- parent: 2
- - uid: 23361
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,89.5
- parent: 2
- - uid: 23362
- components:
- - type: Transform
- pos: -26.5,7.5
- parent: 2
- - uid: 23363
- components:
- - type: Transform
- pos: 5.5,32.5
- parent: 2
- - uid: 23364
- components:
- - type: Transform
- pos: 16.5,33.5
- parent: 2
- - uid: 23365
- components:
- - type: Transform
- pos: 12.5,39.5
- parent: 2
- - uid: 23366
- components:
- - type: Transform
- pos: 8.5,39.5
- parent: 2
- - uid: 23367
- components:
- - type: Transform
- pos: 8.5,40.5
- parent: 2
- - uid: 23368
- components:
- - type: Transform
- pos: -31.5,75.5
- parent: 2
- - uid: 23369
- components:
- - type: Transform
- pos: 3.5,-70.5
- parent: 2
- - uid: 23370
- components:
- - type: Transform
- pos: -16.5,-25.5
- parent: 2
- - uid: 23371
- components:
- - type: Transform
- pos: -103.5,-2.5
- parent: 2
- - uid: 23372
- components:
- - type: Transform
- pos: 28.5,7.5
- parent: 2
- - uid: 23373
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,31.5
- parent: 2
- - uid: 23374
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,41.5
- parent: 2
- - uid: 23375
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,42.5
- parent: 2
- - uid: 23376
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,0.5
- parent: 2
- - uid: 23377
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,2.5
- parent: 2
- - uid: 23378
- components:
- - type: Transform
- pos: 37.5,47.5
- parent: 2
- - uid: 23379
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,1.5
- parent: 2
- - uid: 23380
- components:
- - type: Transform
- pos: 34.5,47.5
- parent: 2
- - uid: 23381
- components:
- - type: Transform
- pos: 35.5,47.5
- parent: 2
- - uid: 23382
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-0.5
- parent: 2
- - uid: 23383
- components:
- - type: Transform
- pos: 39.5,50.5
- parent: 2
- - uid: 23384
- components:
- - type: Transform
- pos: 38.5,53.5
- parent: 2
- - uid: 23385
- components:
- - type: Transform
- pos: 36.5,47.5
- parent: 2
- - uid: 23386
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,39.5
- parent: 2
- - uid: 23387
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-17.5
- parent: 2
- - uid: 23388
- components:
- - type: Transform
- pos: 60.5,-31.5
- parent: 2
- - uid: 23389
- components:
- - type: Transform
- pos: 63.5,-31.5
- parent: 2
- - uid: 23390
- components:
- - type: Transform
- pos: -27.5,75.5
- parent: 2
- - uid: 23391
- components:
- - type: Transform
- pos: 13.5,81.5
- parent: 2
- - uid: 23392
- components:
- - type: Transform
- pos: 61.5,-6.5
- parent: 2
- - uid: 23393
- components:
- - type: Transform
- pos: -23.5,49.5
- parent: 2
- - uid: 23394
- components:
- - type: Transform
- pos: -42.5,57.5
- parent: 2
- - uid: 23395
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-56.5
- parent: 2
- - uid: 23396
- components:
- - type: Transform
- pos: 59.5,-8.5
- parent: 2
- - uid: 23397
- components:
- - type: Transform
- pos: -56.5,43.5
- parent: 2
- - uid: 23398
- components:
- - type: Transform
- pos: 41.5,-75.5
- parent: 2
- - uid: 23399
- components:
- - type: Transform
- pos: -77.5,63.5
- parent: 2
- - uid: 23400
- components:
- - type: Transform
- pos: -79.5,10.5
- parent: 2
- - uid: 23401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-19.5
- parent: 2
- - uid: 23402
- components:
- - type: Transform
- pos: -79.5,11.5
- parent: 2
- - uid: 23403
- components:
- - type: Transform
- pos: -77.5,65.5
- parent: 2
- - uid: 23404
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,4.5
- parent: 2
- - uid: 23405
- components:
- - type: Transform
- pos: -71.5,17.5
- parent: 2
- - uid: 23406
- components:
- - type: Transform
- pos: -45.5,29.5
- parent: 2
- - uid: 23407
- components:
- - type: Transform
- pos: -45.5,32.5
- parent: 2
- - uid: 23408
- components:
- - type: Transform
- pos: -44.5,17.5
- parent: 2
- - uid: 23409
- components:
- - type: Transform
- pos: -45.5,33.5
- parent: 2
- - uid: 23410
- components:
- - type: Transform
- pos: -45.5,34.5
- parent: 2
- - uid: 23411
- components:
- - type: Transform
- pos: -44.5,19.5
- parent: 2
- - uid: 23412
- components:
- - type: Transform
- pos: -51.5,67.5
- parent: 2
- - uid: 23413
- components:
- - type: Transform
- pos: 38.5,-79.5
- parent: 2
- - uid: 23414
- components:
- - type: Transform
- pos: -89.5,15.5
- parent: 2
- - uid: 23415
- components:
- - type: Transform
- pos: -89.5,13.5
- parent: 2
- - uid: 23416
- components:
- - type: Transform
- pos: -53.5,-73.5
- parent: 2
- - uid: 23417
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-21.5
- parent: 2
- - uid: 23418
- components:
- - type: Transform
- pos: -75.5,44.5
- parent: 2
- - uid: 23419
- components:
- - type: Transform
- pos: -58.5,-92.5
- parent: 2
- - uid: 23420
- components:
- - type: Transform
- pos: -59.5,-92.5
- parent: 2
- - uid: 23421
- components:
- - type: Transform
- pos: -53.5,-95.5
- parent: 2
- - uid: 23422
- components:
- - type: Transform
- pos: -66.5,69.5
- parent: 2
- - uid: 23423
- components:
- - type: Transform
- pos: -77.5,33.5
- parent: 2
- - uid: 23424
- components:
- - type: Transform
- pos: -56.5,66.5
- parent: 2
- - uid: 23425
- components:
- - type: Transform
- pos: -43.5,-90.5
- parent: 2
- - uid: 23426
- components:
- - type: Transform
- pos: -59.5,-91.5
- parent: 2
- - uid: 23427
- components:
- - type: Transform
- pos: -49.5,-72.5
- parent: 2
- - uid: 23428
- components:
- - type: Transform
- pos: -75.5,34.5
- parent: 2
- - uid: 23429
- components:
- - type: Transform
- pos: -77.5,46.5
- parent: 2
- - uid: 23430
- components:
- - type: Transform
- pos: -66.5,-51.5
- parent: 2
- - uid: 23431
- components:
- - type: Transform
- pos: -60.5,-83.5
- parent: 2
- - uid: 23432
- components:
- - type: Transform
- pos: -75.5,47.5
- parent: 2
- - uid: 23433
- components:
- - type: Transform
- pos: -77.5,37.5
- parent: 2
- - uid: 23434
- components:
- - type: Transform
- pos: -66.5,72.5
- parent: 2
- - uid: 23435
- components:
- - type: Transform
- pos: -43.5,-92.5
- parent: 2
- - uid: 23436
- components:
- - type: Transform
- pos: -55.5,-92.5
- parent: 2
- - uid: 23437
- components:
- - type: Transform
- pos: -57.5,66.5
- parent: 2
- - uid: 23438
- components:
- - type: Transform
- pos: -77.5,47.5
- parent: 2
- - uid: 23439
- components:
- - type: Transform
- pos: -67.5,-51.5
- parent: 2
- - uid: 23440
- components:
- - type: Transform
- pos: -60.5,-84.5
- parent: 2
- - uid: 23441
- components:
- - type: Transform
- pos: -51.5,-72.5
- parent: 2
- - uid: 23442
- components:
- - type: Transform
- pos: -56.5,-92.5
- parent: 2
- - uid: 23443
- components:
- - type: Transform
- pos: -49.5,-95.5
- parent: 2
- - uid: 23444
- components:
- - type: Transform
- pos: -75.5,-43.5
- parent: 2
- - uid: 23445
- components:
- - type: Transform
- pos: -75.5,-42.5
- parent: 2
- - uid: 23446
- components:
- - type: Transform
- pos: -75.5,-41.5
- parent: 2
- - uid: 23447
- components:
- - type: Transform
- pos: -76.5,54.5
- parent: 2
- - uid: 23448
- components:
- - type: Transform
- pos: -75.5,-40.5
- parent: 2
- - uid: 23449
- components:
- - type: Transform
- pos: 66.5,-17.5
- parent: 2
- - uid: 23450
- components:
- - type: Transform
- pos: -49.5,-94.5
- parent: 2
- - uid: 23451
- components:
- - type: Transform
- pos: -75.5,26.5
- parent: 2
- - uid: 23452
- components:
- - type: Transform
- pos: -75.5,27.5
- parent: 2
- - uid: 23453
- components:
- - type: Transform
- pos: -46.5,-78.5
- parent: 2
- - uid: 23454
- components:
- - type: Transform
- pos: -52.5,67.5
- parent: 2
- - uid: 23455
- components:
- - type: Transform
- pos: -67.5,69.5
- parent: 2
- - uid: 23456
- components:
- - type: Transform
- pos: -50.5,-95.5
- parent: 2
- - uid: 23457
- components:
- - type: Transform
- pos: -75.5,52.5
- parent: 2
- - uid: 23458
- components:
- - type: Transform
- pos: -77.5,-43.5
- parent: 2
- - uid: 23459
- components:
- - type: Transform
- pos: 20.5,98.5
- parent: 2
- - uid: 23460
- components:
- - type: Transform
- pos: 19.5,98.5
- parent: 2
- - uid: 23461
- components:
- - type: Transform
- pos: 33.5,20.5
- parent: 2
- - uid: 23462
- components:
- - type: Transform
- pos: 3.5,-69.5
- parent: 2
- - uid: 23463
- components:
- - type: Transform
- pos: 78.5,-23.5
- parent: 2
- - uid: 23464
- components:
- - type: Transform
- pos: -20.5,1.5
- parent: 2
- - uid: 23465
- components:
- - type: Transform
- pos: 57.5,-8.5
- parent: 2
- - uid: 23466
- components:
- - type: Transform
- pos: 83.5,-50.5
- parent: 2
- - uid: 23467
- components:
- - type: Transform
- pos: 64.5,-25.5
- parent: 2
- - uid: 23468
- components:
- - type: Transform
- pos: 61.5,-31.5
- parent: 2
- - uid: 23469
- components:
- - type: Transform
- pos: 85.5,15.5
- parent: 2
- - uid: 23470
- components:
- - type: Transform
- pos: -75.5,28.5
- parent: 2
- - uid: 23471
- components:
- - type: Transform
- pos: -75.5,45.5
- parent: 2
- - uid: 23472
- components:
- - type: Transform
- pos: 64.5,-26.5
- parent: 2
- - uid: 23473
- components:
- - type: Transform
- pos: 65.5,-12.5
- parent: 2
- - uid: 23474
- components:
- - type: Transform
- pos: -89.5,14.5
- parent: 2
- - uid: 23475
- components:
- - type: Transform
- pos: -82.5,66.5
- parent: 2
- - uid: 23476
- components:
- - type: Transform
- pos: -87.5,15.5
- parent: 2
- - uid: 23477
- components:
- - type: Transform
- pos: -80.5,66.5
- parent: 2
- - uid: 23478
- components:
- - type: Transform
- pos: -84.5,74.5
- parent: 2
- - uid: 23479
- components:
- - type: Transform
- pos: -84.5,72.5
- parent: 2
- - uid: 23480
- components:
- - type: Transform
- pos: -53.5,-72.5
- parent: 2
- - uid: 23481
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-19.5
- parent: 2
- - uid: 23482
- components:
- - type: Transform
- pos: -84.5,76.5
- parent: 2
- - uid: 23483
- components:
- - type: Transform
- pos: -83.5,66.5
- parent: 2
- - uid: 23484
- components:
- - type: Transform
- pos: 78.5,-13.5
- parent: 2
- - uid: 23485
- components:
- - type: Transform
- pos: 56.5,-31.5
- parent: 2
- - uid: 23486
- components:
- - type: Transform
- pos: 57.5,-31.5
- parent: 2
- - uid: 23487
- components:
- - type: Transform
- pos: 82.5,-17.5
- parent: 2
- - uid: 23488
- components:
- - type: Transform
- pos: 79.5,-22.5
- parent: 2
- - uid: 23489
- components:
- - type: Transform
- pos: 81.5,-17.5
- parent: 2
- - uid: 23490
- components:
- - type: Transform
- pos: -65.5,-48.5
- parent: 2
- - uid: 23491
- components:
- - type: Transform
- pos: -41.5,33.5
- parent: 2
- - uid: 23492
- components:
- - type: Transform
- pos: -67.5,36.5
- parent: 2
- - uid: 23493
- components:
- - type: Transform
- pos: -41.5,32.5
- parent: 2
- - uid: 23494
- components:
- - type: Transform
- pos: -77.5,27.5
- parent: 2
- - uid: 23495
- components:
- - type: Transform
- pos: 57.5,-57.5
- parent: 2
- - uid: 23496
- components:
- - type: Transform
- pos: -44.5,57.5
- parent: 2
- - uid: 23497
- components:
- - type: Transform
- pos: -42.5,-51.5
- parent: 2
- - uid: 23498
- components:
- - type: Transform
- pos: -59.5,-89.5
- parent: 2
- - uid: 23499
- components:
- - type: Transform
- pos: 15.5,-23.5
- parent: 2
- - uid: 23500
- components:
- - type: Transform
- pos: -61.5,-2.5
- parent: 2
- - uid: 23501
- components:
- - type: Transform
- pos: 30.5,-27.5
- parent: 2
- - uid: 23502
- components:
- - type: Transform
- pos: -56.5,57.5
- parent: 2
- - uid: 23503
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,33.5
- parent: 2
- - uid: 23504
- components:
- - type: Transform
- pos: -35.5,-45.5
- parent: 2
- - uid: 23505
- components:
- - type: Transform
- pos: 21.5,-49.5
- parent: 2
- - uid: 23506
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-54.5
- parent: 2
- - uid: 23507
- components:
- - type: Transform
- pos: -14.5,-21.5
- parent: 2
- - uid: 23508
- components:
- - type: Transform
- pos: 11.5,-14.5
- parent: 2
- - uid: 23509
- components:
- - type: Transform
- pos: 25.5,-32.5
- parent: 2
- - uid: 23510
- components:
- - type: Transform
- pos: 27.5,-25.5
- parent: 2
- - uid: 23511
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-63.5
- parent: 2
- - uid: 23512
- components:
- - type: Transform
- pos: 15.5,-31.5
- parent: 2
- - uid: 23513
- components:
- - type: Transform
- pos: 66.5,-11.5
- parent: 2
- - uid: 23514
- components:
- - type: Transform
- pos: -75.5,33.5
- parent: 2
- - uid: 23515
- components:
- - type: Transform
- pos: -60.5,-87.5
- parent: 2
- - uid: 23516
- components:
- - type: Transform
- pos: 46.5,14.5
- parent: 2
- - uid: 23517
- components:
- - type: Transform
- pos: 76.5,-24.5
- parent: 2
- - uid: 23518
- components:
- - type: Transform
- pos: 51.5,-56.5
- parent: 2
- - uid: 23519
- components:
- - type: Transform
- pos: 50.5,-60.5
- parent: 2
- - uid: 23520
- components:
- - type: Transform
- pos: -66.5,-47.5
- parent: 2
- - uid: 23521
- components:
- - type: Transform
- pos: -36.5,34.5
- parent: 2
- - uid: 23522
- components:
- - type: Transform
- pos: -15.5,18.5
- parent: 2
- - uid: 23523
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-57.5
- parent: 2
- - uid: 23524
- components:
- - type: Transform
- pos: 7.5,91.5
- parent: 2
- - uid: 23525
- components:
- - type: Transform
- pos: 8.5,90.5
- parent: 2
- - uid: 23526
- components:
- - type: Transform
- pos: 70.5,-12.5
- parent: 2
- - uid: 23527
- components:
- - type: Transform
- pos: 19.5,92.5
- parent: 2
- - uid: 23528
- components:
- - type: Transform
- pos: -63.5,-48.5
- parent: 2
- - uid: 23529
- components:
- - type: Transform
- pos: -43.5,27.5
- parent: 2
- - uid: 23530
- components:
- - type: Transform
- pos: 82.5,-20.5
- parent: 2
- - uid: 23531
- components:
- - type: Transform
- pos: -67.5,13.5
- parent: 2
- - uid: 23532
- components:
- - type: Transform
- pos: 3.5,25.5
- parent: 2
- - uid: 23533
- components:
- - type: Transform
- pos: 33.5,47.5
- parent: 2
- - uid: 23534
- components:
- - type: Transform
- pos: 50.5,-6.5
- parent: 2
- - uid: 23535
- components:
- - type: Transform
- pos: 29.5,53.5
- parent: 2
- - uid: 23536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-67.5
- parent: 2
- - uid: 23537
- components:
- - type: Transform
- pos: 20.5,99.5
- parent: 2
- - uid: 23538
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-21.5
- parent: 2
- - uid: 23539
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-70.5
- parent: 2
- - uid: 23540
- components:
- - type: Transform
- pos: -77.5,42.5
- parent: 2
- - uid: 23541
- components:
- - type: Transform
- pos: 36.5,3.5
- parent: 2
- - uid: 23542
- components:
- - type: Transform
- pos: 76.5,-14.5
- parent: 2
- - uid: 23543
- components:
- - type: Transform
- pos: -63.5,53.5
- parent: 2
- - uid: 23544
- components:
- - type: Transform
- pos: 66.5,-10.5
- parent: 2
- - uid: 23545
- components:
- - type: Transform
- pos: -5.5,21.5
- parent: 2
- - uid: 23546
- components:
- - type: Transform
- pos: 4.5,-28.5
- parent: 2
- - uid: 23547
- components:
- - type: Transform
- pos: 7.5,17.5
- parent: 2
- - uid: 23548
- components:
- - type: Transform
- pos: -4.5,19.5
- parent: 2
- - uid: 23549
- components:
- - type: Transform
- pos: -6.5,18.5
- parent: 2
- - uid: 23550
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-60.5
- parent: 2
- - uid: 23551
- components:
- - type: Transform
- pos: -105.5,-3.5
- parent: 2
- - uid: 23552
- components:
- - type: Transform
- pos: 13.5,-36.5
- parent: 2
- - uid: 23553
- components:
- - type: Transform
- pos: -70.5,17.5
- parent: 2
- - uid: 23554
- components:
- - type: Transform
- pos: -105.5,-2.5
- parent: 2
- - uid: 23555
- components:
- - type: Transform
- pos: 27.5,-24.5
- parent: 2
- - uid: 23556
- components:
- - type: Transform
- pos: -103.5,-4.5
- parent: 2
- - uid: 23557
- components:
- - type: Transform
- pos: 20.5,89.5
- parent: 2
- - uid: 23558
- components:
- - type: Transform
- pos: 87.5,-41.5
- parent: 2
- - uid: 23559
- components:
- - type: Transform
- pos: 29.5,85.5
- parent: 2
- - uid: 23560
- components:
- - type: Transform
- pos: 20.5,85.5
- parent: 2
- - uid: 23561
- components:
- - type: Transform
- pos: 21.5,85.5
- parent: 2
- - uid: 23562
- components:
- - type: Transform
- pos: 30.5,85.5
- parent: 2
- - uid: 23563
- components:
- - type: Transform
- pos: 86.5,-41.5
- parent: 2
- - uid: 23564
- components:
- - type: Transform
- pos: 67.5,-27.5
- parent: 2
- - uid: 23565
- components:
- - type: Transform
- pos: -49.5,56.5
- parent: 2
- - uid: 23566
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,6.5
- parent: 2
- - uid: 23567
- components:
- - type: Transform
- pos: -58.5,68.5
- parent: 2
- - uid: 23568
- components:
- - type: Transform
- pos: 37.5,98.5
- parent: 2
- - uid: 23569
- components:
- - type: Transform
- pos: 83.5,-35.5
- parent: 2
- - uid: 23570
- components:
- - type: Transform
- pos: 79.5,-41.5
- parent: 2
- - uid: 23571
- components:
- - type: Transform
- pos: 27.5,25.5
- parent: 2
- - uid: 23572
- components:
- - type: Transform
- pos: -50.5,56.5
- parent: 2
- - uid: 23573
- components:
- - type: Transform
- pos: 2.5,-60.5
- parent: 2
- - uid: 23574
- components:
- - type: Transform
- pos: -3.5,-60.5
- parent: 2
- - uid: 23575
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-55.5
- parent: 2
- - uid: 23576
- components:
- - type: Transform
- pos: 29.5,-70.5
- parent: 2
- - uid: 23577
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-60.5
- parent: 2
- - uid: 23578
- components:
- - type: Transform
- pos: 3.5,82.5
- parent: 2
- - uid: 23579
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-48.5
- parent: 2
- - uid: 23580
- components:
- - type: Transform
- pos: -44.5,-73.5
- parent: 2
- - uid: 23581
- components:
- - type: Transform
- pos: -44.5,-72.5
- parent: 2
- - uid: 23582
- components:
- - type: Transform
- pos: 4.5,75.5
- parent: 2
- - uid: 23583
- components:
- - type: Transform
- pos: 7.5,-77.5
- parent: 2
- - uid: 23584
- components:
- - type: Transform
- pos: 35.5,-72.5
- parent: 2
- - uid: 23585
- components:
- - type: Transform
- pos: -66.5,68.5
- parent: 2
- - uid: 23586
- components:
- - type: Transform
- pos: 83.5,-51.5
- parent: 2
- - uid: 23587
- components:
- - type: Transform
- pos: 6.5,-78.5
- parent: 2
- - uid: 23588
- components:
- - type: Transform
- pos: 9.5,25.5
- parent: 2
- - uid: 23589
- components:
- - type: Transform
- pos: 26.5,85.5
- parent: 2
- - uid: 23590
- components:
- - type: Transform
- pos: 19.5,95.5
- parent: 2
- - uid: 23591
- components:
- - type: Transform
- pos: -86.5,11.5
- parent: 2
- - uid: 23592
- components:
- - type: Transform
- pos: 78.5,-20.5
- parent: 2
- - uid: 23593
- components:
- - type: Transform
- pos: 4.5,-78.5
- parent: 2
- - uid: 23594
- components:
- - type: Transform
- pos: -59.5,11.5
- parent: 2
- - uid: 23595
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-46.5
- parent: 2
- - uid: 23596
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-54.5
- parent: 2
- - uid: 23597
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-60.5
- parent: 2
- - uid: 23598
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,91.5
- parent: 2
- - uid: 23599
- components:
- - type: Transform
- pos: -36.5,64.5
- parent: 2
- - uid: 23600
- components:
- - type: Transform
- pos: 11.5,-66.5
- parent: 2
- - uid: 23601
- components:
- - type: Transform
- pos: 79.5,-17.5
- parent: 2
- - uid: 23602
- components:
- - type: Transform
- pos: -11.5,-67.5
- parent: 2
- - uid: 23603
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-68.5
- parent: 2
- - uid: 23604
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,89.5
- parent: 2
- - uid: 23605
- components:
- - type: Transform
- pos: -3.5,-58.5
- parent: 2
- - uid: 23606
- components:
- - type: Transform
- pos: 7.5,-68.5
- parent: 2
- - uid: 23607
- components:
- - type: Transform
- pos: 16.5,72.5
- parent: 2
- - uid: 23608
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,94.5
- parent: 2
- - uid: 23609
- components:
- - type: Transform
- pos: 78.5,-14.5
- parent: 2
- - uid: 23610
- components:
- - type: Transform
- pos: 78.5,-25.5
- parent: 2
- - uid: 23611
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-56.5
- parent: 2
- - uid: 23612
- components:
- - type: Transform
- pos: 20.5,17.5
- parent: 2
- - uid: 23613
- components:
- - type: Transform
- pos: 35.5,-32.5
- parent: 2
- - uid: 23614
- components:
- - type: Transform
- pos: -42.5,-52.5
- parent: 2
- - uid: 23615
- components:
- - type: Transform
- pos: -52.5,56.5
- parent: 2
- - uid: 23616
- components:
- - type: Transform
- pos: -20.5,14.5
- parent: 2
- - uid: 23617
- components:
- - type: Transform
- pos: -27.5,-32.5
- parent: 2
- - uid: 23618
- components:
- - type: Transform
- pos: -61.5,-1.5
- parent: 2
- - uid: 23619
- components:
- - type: Transform
- pos: -22.5,-82.5
- parent: 2
- - uid: 23620
- components:
- - type: Transform
- pos: 2.5,-58.5
- parent: 2
- - uid: 23621
- components:
- - type: Transform
- pos: -75.5,43.5
- parent: 2
- - uid: 23622
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-64.5
- parent: 2
- - uid: 23623
- components:
- - type: Transform
- pos: 80.5,-15.5
- parent: 2
- - uid: 23624
- components:
- - type: Transform
- pos: -59.5,-82.5
- parent: 2
- - uid: 23625
- components:
- - type: Transform
- pos: 5.5,19.5
- parent: 2
- - uid: 23626
- components:
- - type: Transform
- pos: 66.5,-30.5
- parent: 2
- - uid: 23627
- components:
- - type: Transform
- pos: 57.5,-41.5
- parent: 2
- - uid: 23628
- components:
- - type: Transform
- pos: 60.5,-8.5
- parent: 2
- - uid: 23629
- components:
- - type: Transform
- pos: 71.5,-27.5
- parent: 2
- - uid: 23630
- components:
- - type: Transform
- pos: -42.5,62.5
- parent: 2
- - uid: 23631
- components:
- - type: Transform
- pos: 36.5,91.5
- parent: 2
- - uid: 23632
- components:
- - type: Transform
- pos: -75.5,40.5
- parent: 2
- - uid: 23633
- components:
- - type: Transform
- pos: 72.5,-52.5
- parent: 2
- - uid: 23634
- components:
- - type: Transform
- pos: -77.5,52.5
- parent: 2
- - uid: 23635
- components:
- - type: Transform
- pos: 45.5,-79.5
- parent: 2
- - uid: 23636
- components:
- - type: Transform
- pos: 73.5,-27.5
- parent: 2
- - uid: 23637
- components:
- - type: Transform
- pos: 52.5,-56.5
- parent: 2
- - uid: 23638
- components:
- - type: Transform
- pos: -19.5,-77.5
- parent: 2
- - uid: 23639
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,31.5
- parent: 2
- - uid: 23640
- components:
- - type: Transform
- pos: 80.5,-12.5
- parent: 2
- - uid: 23641
- components:
- - type: Transform
- pos: 43.5,-79.5
- parent: 2
- - uid: 23642
- components:
- - type: Transform
- pos: 35.5,88.5
- parent: 2
- - uid: 23643
- components:
- - type: Transform
- pos: 35.5,7.5
- parent: 2
- - uid: 23644
- components:
- - type: Transform
- pos: 18.5,31.5
- parent: 2
- - uid: 23645
- components:
- - type: Transform
- pos: 38.5,9.5
- parent: 2
- - uid: 23646
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,9.5
- parent: 2
- - uid: 23647
- components:
- - type: Transform
- pos: 1.5,-31.5
- parent: 2
- - uid: 23648
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,7.5
- parent: 2
- - uid: 23649
- components:
- - type: Transform
- pos: 4.5,90.5
- parent: 2
- - uid: 23650
- components:
- - type: Transform
- pos: 11.5,60.5
- parent: 2
- - uid: 23651
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,8.5
- parent: 2
- - uid: 23652
- components:
- - type: Transform
- pos: 58.5,-47.5
- parent: 2
- - uid: 23653
- components:
- - type: Transform
- pos: -35.5,64.5
- parent: 2
- - uid: 23654
- components:
- - type: Transform
- pos: -43.5,28.5
- parent: 2
- - uid: 23655
- components:
- - type: Transform
- pos: 18.5,29.5
- parent: 2
- - uid: 23656
- components:
- - type: Transform
- pos: -46.5,26.5
- parent: 2
- - uid: 23657
- components:
- - type: Transform
- pos: -36.5,26.5
- parent: 2
- - uid: 23658
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,9.5
- parent: 2
- - uid: 23659
- components:
- - type: Transform
- pos: -57.5,37.5
- parent: 2
- - uid: 23660
- components:
- - type: Transform
- pos: -18.5,-51.5
- parent: 2
- - uid: 23661
- components:
- - type: Transform
- pos: -49.5,26.5
- parent: 2
- - uid: 23662
- components:
- - type: Transform
- pos: 11.5,-32.5
- parent: 2
- - uid: 23663
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-19.5
- parent: 2
- - uid: 23664
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-19.5
- parent: 2
- - uid: 23665
- components:
- - type: Transform
- pos: -61.5,17.5
- parent: 2
- - uid: 23666
- components:
- - type: Transform
- pos: 1.5,-29.5
- parent: 2
- - uid: 23667
- components:
- - type: Transform
- pos: 28.5,-70.5
- parent: 2
- - uid: 23668
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,31.5
- parent: 2
- - uid: 23669
- components:
- - type: Transform
- pos: 77.5,-38.5
- parent: 2
- - uid: 23670
- components:
- - type: Transform
- pos: 42.5,-79.5
- parent: 2
- - uid: 23671
- components:
- - type: Transform
- pos: 74.5,26.5
- parent: 2
- - uid: 23672
- components:
- - type: Transform
- pos: -19.5,-36.5
- parent: 2
- - uid: 23673
- components:
- - type: Transform
- pos: -16.5,13.5
- parent: 2
- - uid: 23674
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,3.5
- parent: 2
- - uid: 23675
- components:
- - type: Transform
- pos: -3.5,-35.5
- parent: 2
- - uid: 23676
- components:
- - type: Transform
- pos: 65.5,-27.5
- parent: 2
- - uid: 23677
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,6.5
- parent: 2
- - uid: 23678
- components:
- - type: Transform
- pos: 85.5,11.5
- parent: 2
- - uid: 23679
- components:
- - type: Transform
- pos: -35.5,-38.5
- parent: 2
- - uid: 23680
- components:
- - type: Transform
- pos: -103.5,-6.5
- parent: 2
- - uid: 23681
- components:
- - type: Transform
- pos: 27.5,85.5
- parent: 2
- - uid: 23682
- components:
- - type: Transform
- pos: -79.5,-43.5
- parent: 2
- - uid: 23683
- components:
- - type: Transform
- pos: 83.5,-43.5
- parent: 2
- - uid: 23684
- components:
- - type: Transform
- pos: -51.5,56.5
- parent: 2
- - uid: 23685
- components:
- - type: Transform
- pos: -59.5,-78.5
- parent: 2
- - uid: 23686
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-19.5
- parent: 2
- - uid: 23687
- components:
- - type: Transform
- pos: -83.5,76.5
- parent: 2
- - uid: 23688
- components:
- - type: Transform
- pos: -83.5,67.5
- parent: 2
- - uid: 23689
- components:
- - type: Transform
- pos: 21.5,102.5
- parent: 2
- - uid: 23690
- components:
- - type: Transform
- pos: 50.5,-61.5
- parent: 2
- - uid: 23691
- components:
- - type: Transform
- pos: 78.5,-41.5
- parent: 2
- - uid: 23692
- components:
- - type: Transform
- pos: 16.5,88.5
- parent: 2
- - uid: 23693
- components:
- - type: Transform
- pos: -27.5,86.5
- parent: 2
- - uid: 23694
- components:
- - type: Transform
- pos: -44.5,-76.5
- parent: 2
- - uid: 23695
- components:
- - type: Transform
- pos: 14.5,89.5
- parent: 2
- - uid: 23696
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,39.5
- parent: 2
- - uid: 23697
- components:
- - type: Transform
- pos: 77.5,-12.5
- parent: 2
- - uid: 23698
- components:
- - type: Transform
- pos: 21.5,-8.5
- parent: 2
- - uid: 23699
- components:
- - type: Transform
- pos: 33.5,21.5
- parent: 2
- - uid: 23700
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-21.5
- parent: 2
- - uid: 23701
- components:
- - type: Transform
- pos: -59.5,-53.5
- parent: 2
- - uid: 23702
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-19.5
- parent: 2
- - uid: 23703
- components:
- - type: Transform
- pos: 45.5,13.5
- parent: 2
- - uid: 23704
- components:
- - type: Transform
- pos: 39.5,10.5
- parent: 2
- - uid: 23705
- components:
- - type: Transform
- pos: 4.5,88.5
- parent: 2
- - uid: 23706
- components:
- - type: Transform
- pos: -60.5,58.5
- parent: 2
- - uid: 23707
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,8.5
- parent: 2
- - uid: 23708
- components:
- - type: Transform
- pos: -31.5,19.5
- parent: 2
- - uid: 23709
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-65.5
- parent: 2
- - uid: 23710
- components:
- - type: Transform
- pos: -51.5,34.5
- parent: 2
- - uid: 23711
- components:
- - type: Transform
- pos: -61.5,-3.5
- parent: 2
- - uid: 23712
- components:
- - type: Transform
- pos: -105.5,-6.5
- parent: 2
- - uid: 23713
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-19.5
- parent: 2
- - uid: 23714
- components:
- - type: Transform
- pos: -77.5,36.5
- parent: 2
- - uid: 23715
- components:
- - type: Transform
- pos: 19.5,94.5
- parent: 2
- - uid: 23716
- components:
- - type: Transform
- pos: -1.5,30.5
- parent: 2
- - uid: 23717
- components:
- - type: Transform
- pos: -27.5,94.5
- parent: 2
- - uid: 23718
- components:
- - type: Transform
- pos: 12.5,90.5
- parent: 2
- - uid: 23719
- components:
- - type: Transform
- pos: -20.5,2.5
- parent: 2
- - uid: 23720
- components:
- - type: Transform
- pos: 88.5,-41.5
- parent: 2
- - uid: 23721
- components:
- - type: Transform
- pos: -79.5,-38.5
- parent: 2
- - uid: 23722
- components:
- - type: Transform
- pos: 15.5,-44.5
- parent: 2
- - uid: 23723
- components:
- - type: Transform
- pos: -45.5,-75.5
- parent: 2
- - uid: 23724
- components:
- - type: Transform
- pos: 83.5,-42.5
- parent: 2
- - uid: 23725
- components:
- - type: Transform
- pos: 89.5,-44.5
- parent: 2
- - uid: 23726
- components:
- - type: Transform
- pos: 11.5,-36.5
- parent: 2
- - uid: 23727
- components:
- - type: Transform
- pos: 37.5,97.5
- parent: 2
- - uid: 23728
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,4.5
- parent: 2
- - uid: 23729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,6.5
- parent: 2
- - uid: 23730
- components:
- - type: Transform
- pos: -75.5,49.5
- parent: 2
- - uid: 23731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,6.5
- parent: 2
- - uid: 23732
- components:
- - type: Transform
- pos: 34.5,3.5
- parent: 2
- - uid: 23733
- components:
- - type: Transform
- pos: -57.5,-53.5
- parent: 2
- - uid: 23734
- components:
- - type: Transform
- pos: 50.5,-59.5
- parent: 2
- - uid: 23735
- components:
- - type: Transform
- pos: 52.5,-58.5
- parent: 2
- - uid: 23736
- components:
- - type: Transform
- pos: -55.5,68.5
- parent: 2
- - uid: 23737
- components:
- - type: Transform
- pos: -48.5,-78.5
- parent: 2
- - uid: 23738
- components:
- - type: Transform
- pos: -47.5,-78.5
- parent: 2
- - uid: 23739
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-15.5
- parent: 2
- - uid: 23740
- components:
- - type: Transform
- pos: -79.5,66.5
- parent: 2
- - uid: 23741
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-21.5
- parent: 2
- - uid: 23742
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,-21.5
- parent: 2
- - uid: 23743
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,6.5
- parent: 2
- - uid: 23744
- components:
- - type: Transform
- pos: 36.5,88.5
- parent: 2
- - uid: 23745
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-4.5
- parent: 2
- - uid: 23746
- components:
- - type: Transform
- pos: 56.5,-41.5
- parent: 2
- - uid: 23747
- components:
- - type: Transform
- pos: 76.5,-20.5
- parent: 2
- - uid: 23748
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-3.5
- parent: 2
- - uid: 23749
- components:
- - type: Transform
- pos: 70.5,-27.5
- parent: 2
- - uid: 23750
- components:
- - type: Transform
- pos: 20.5,19.5
- parent: 2
- - uid: 23751
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-2.5
- parent: 2
- - uid: 23752
- components:
- - type: Transform
- pos: -33.5,64.5
- parent: 2
- - uid: 23753
- components:
- - type: Transform
- pos: -45.5,-73.5
- parent: 2
- - uid: 23754
- components:
- - type: Transform
- pos: -34.5,20.5
- parent: 2
- - uid: 23755
- components:
- - type: Transform
- pos: -42.5,54.5
- parent: 2
- - uid: 23756
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-70.5
- parent: 2
- - uid: 23757
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-68.5
- parent: 2
- - uid: 23758
- components:
- - type: Transform
- pos: -18.5,70.5
- parent: 2
- - uid: 23759
- components:
- - type: Transform
- pos: 3.5,79.5
- parent: 2
- - uid: 23760
- components:
- - type: Transform
- pos: 13.5,82.5
- parent: 2
- - uid: 23761
- components:
- - type: Transform
- pos: -37.5,-49.5
- parent: 2
- - uid: 23762
- components:
- - type: Transform
- pos: 44.5,-64.5
- parent: 2
- - uid: 23763
- components:
- - type: Transform
- pos: 39.5,-58.5
- parent: 2
- - uid: 23764
- components:
- - type: Transform
- pos: -50.5,-13.5
- parent: 2
- - uid: 23765
- components:
- - type: Transform
- pos: -59.5,15.5
- parent: 2
- - uid: 23766
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,3.5
- parent: 2
- - uid: 23767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-18.5
- parent: 2
- - uid: 23768
- components:
- - type: Transform
- pos: -69.5,9.5
- parent: 2
- - uid: 23769
- components:
- - type: Transform
- pos: 23.5,-30.5
- parent: 2
- - uid: 23770
- components:
- - type: Transform
- pos: 19.5,-44.5
- parent: 2
- - uid: 23771
- components:
- - type: Transform
- pos: -31.5,94.5
- parent: 2
- - uid: 23772
- components:
- - type: Transform
- pos: -50.5,-12.5
- parent: 2
- - uid: 23773
- components:
- - type: Transform
- pos: -45.5,28.5
- parent: 2
- - uid: 23774
- components:
- - type: Transform
- pos: -36.5,20.5
- parent: 2
- - uid: 23775
- components:
- - type: Transform
- pos: 18.5,30.5
- parent: 2
- - uid: 23776
- components:
- - type: Transform
- pos: -48.5,56.5
- parent: 2
- - uid: 23777
- components:
- - type: Transform
- pos: -79.5,-39.5
- parent: 2
- - uid: 23778
- components:
- - type: Transform
- pos: -42.5,-82.5
- parent: 2
- - uid: 23779
- components:
- - type: Transform
- pos: -14.5,82.5
- parent: 2
- - uid: 23780
- components:
- - type: Transform
- pos: -26.5,-79.5
- parent: 2
- - uid: 23781
- components:
- - type: Transform
- pos: -15.5,-37.5
- parent: 2
- - uid: 23782
- components:
- - type: Transform
- pos: -17.5,-36.5
- parent: 2
- - uid: 23783
- components:
- - type: Transform
- pos: -48.5,43.5
- parent: 2
- - uid: 23784
- components:
- - type: Transform
- pos: -79.5,9.5
- parent: 2
- - uid: 23785
- components:
- - type: Transform
- pos: -60.5,47.5
- parent: 2
- - uid: 23786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,4.5
- parent: 2
- - uid: 23787
- components:
- - type: Transform
- pos: 31.5,-59.5
- parent: 2
- - uid: 23788
- components:
- - type: Transform
- pos: -10.5,21.5
- parent: 2
- - uid: 23789
- components:
- - type: Transform
- pos: 15.5,13.5
- parent: 2
- - uid: 23790
- components:
- - type: Transform
- pos: 26.5,103.5
- parent: 2
- - uid: 23791
- components:
- - type: Transform
- pos: 38.5,-77.5
- parent: 2
- - uid: 23792
- components:
- - type: Transform
- pos: 89.5,-45.5
- parent: 2
- - uid: 23793
- components:
- - type: Transform
- pos: 37.5,-77.5
- parent: 2
- - uid: 23794
- components:
- - type: Transform
- pos: 35.5,102.5
- parent: 2
- - uid: 23795
- components:
- - type: Transform
- pos: 31.5,102.5
- parent: 2
- - uid: 23796
- components:
- - type: Transform
- pos: 20.5,101.5
- parent: 2
- - uid: 23797
- components:
- - type: Transform
- pos: 32.5,-75.5
- parent: 2
- - uid: 23798
- components:
- - type: Transform
- pos: 41.5,24.5
- parent: 2
- - uid: 23799
- components:
- - type: Transform
- pos: 30.5,105.5
- parent: 2
- - uid: 23800
- components:
- - type: Transform
- pos: 23.5,7.5
- parent: 2
- - uid: 23801
- components:
- - type: Transform
- pos: 64.5,-20.5
- parent: 2
- - uid: 23802
- components:
- - type: Transform
- pos: 41.5,16.5
- parent: 2
- - uid: 23803
- components:
- - type: Transform
- pos: -44.5,-92.5
- parent: 2
- - uid: 23804
- components:
- - type: Transform
- pos: -58.5,16.5
- parent: 2
- - uid: 23805
- components:
- - type: Transform
- pos: -78.5,-30.5
- parent: 2
- - uid: 23806
- components:
- - type: Transform
- pos: -48.5,-25.5
- parent: 2
- - uid: 23807
- components:
- - type: Transform
- pos: -61.5,-12.5
- parent: 2
- - uid: 23808
- components:
- - type: Transform
- pos: 48.5,14.5
- parent: 2
- - uid: 23809
- components:
- - type: Transform
- pos: -59.5,-51.5
- parent: 2
- - uid: 23810
- components:
- - type: Transform
- pos: -76.5,60.5
- parent: 2
- - uid: 23811
- components:
- - type: Transform
- pos: 16.5,86.5
- parent: 2
- - uid: 23812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-44.5
- parent: 2
- - uid: 23813
- components:
- - type: Transform
- pos: -43.5,34.5
- parent: 2
- - uid: 23814
- components:
- - type: Transform
- pos: -77.5,48.5
- parent: 2
- - uid: 23815
- components:
- - type: Transform
- pos: -66.5,71.5
- parent: 2
- - uid: 23816
- components:
- - type: Transform
- pos: -53.5,-93.5
- parent: 2
- - uid: 23817
- components:
- - type: Transform
- pos: -75.5,32.5
- parent: 2
- - uid: 23818
- components:
- - type: Transform
- pos: 40.5,-79.5
- parent: 2
- - uid: 23819
- components:
- - type: Transform
- pos: 42.5,-77.5
- parent: 2
- - uid: 23820
- components:
- - type: Transform
- pos: 34.5,57.5
- parent: 2
- - uid: 23821
- components:
- - type: Transform
- pos: 86.5,-47.5
- parent: 2
- - uid: 23822
- components:
- - type: Transform
- pos: 78.5,-53.5
- parent: 2
- - uid: 23823
- components:
- - type: Transform
- pos: 22.5,85.5
- parent: 2
- - uid: 23824
- components:
- - type: Transform
- pos: 45.5,-48.5
- parent: 2
- - uid: 23825
- components:
- - type: Transform
- pos: 78.5,-27.5
- parent: 2
- - uid: 23826
- components:
- - type: Transform
- pos: 14.5,92.5
- parent: 2
- - uid: 23827
- components:
- - type: Transform
- pos: 40.5,24.5
- parent: 2
- - uid: 23828
- components:
- - type: Transform
- pos: 12.5,93.5
- parent: 2
- - uid: 23829
- components:
- - type: Transform
- pos: 80.5,-26.5
- parent: 2
- - uid: 23830
- components:
- - type: Transform
- pos: 19.5,97.5
- parent: 2
- - uid: 23831
- components:
- - type: Transform
- pos: 37.5,19.5
- parent: 2
- - uid: 23832
- components:
- - type: Transform
- pos: 32.5,64.5
- parent: 2
- - uid: 23833
- components:
- - type: Transform
- pos: 29.5,105.5
- parent: 2
- - uid: 23834
- components:
- - type: Transform
- pos: 44.5,19.5
- parent: 2
- - uid: 23835
- components:
- - type: Transform
- pos: 82.5,-41.5
- parent: 2
- - uid: 23836
- components:
- - type: Transform
- pos: 78.5,-19.5
- parent: 2
- - uid: 23837
- components:
- - type: Transform
- pos: 22.5,61.5
- parent: 2
- - uid: 23838
- components:
- - type: Transform
- pos: 30.5,55.5
- parent: 2
- - uid: 23839
- components:
- - type: Transform
- pos: 29.5,55.5
- parent: 2
- - uid: 23840
- components:
- - type: Transform
- pos: 46.5,-48.5
- parent: 2
- - uid: 23841
- components:
- - type: Transform
- pos: 16.5,91.5
- parent: 2
- - uid: 23842
- components:
- - type: Transform
- pos: 80.5,-25.5
- parent: 2
- - uid: 23843
- components:
- - type: Transform
- pos: 54.5,10.5
- parent: 2
- - uid: 23844
- components:
- - type: Transform
- pos: 30.5,102.5
- parent: 2
- - uid: 23845
- components:
- - type: Transform
- pos: 88.5,-47.5
- parent: 2
- - uid: 23846
- components:
- - type: Transform
- pos: 34.5,58.5
- parent: 2
- - uid: 23847
- components:
- - type: Transform
- pos: 13.5,93.5
- parent: 2
- - uid: 23848
- components:
- - type: Transform
- pos: 81.5,-47.5
- parent: 2
- - uid: 23849
- components:
- - type: Transform
- pos: 24.5,85.5
- parent: 2
- - uid: 23850
- components:
- - type: Transform
- pos: 23.5,102.5
- parent: 2
- - uid: 23851
- components:
- - type: Transform
- pos: 33.5,19.5
- parent: 2
- - uid: 23852
- components:
- - type: Transform
- pos: 21.5,7.5
- parent: 2
- - uid: 23853
- components:
- - type: Transform
- pos: 52.5,-7.5
- parent: 2
- - uid: 23854
- components:
- - type: Transform
- pos: 77.5,-53.5
- parent: 2
- - uid: 23855
- components:
- - type: Transform
- pos: 77.5,-50.5
- parent: 2
- - uid: 23856
- components:
- - type: Transform
- pos: -46.5,-92.5
- parent: 2
- - uid: 23857
- components:
- - type: Transform
- pos: 19.5,20.5
- parent: 2
- - uid: 23858
- components:
- - type: Transform
- pos: -76.5,59.5
- parent: 2
- - uid: 23859
- components:
- - type: Transform
- pos: 8.5,44.5
- parent: 2
- - uid: 23860
- components:
- - type: Transform
- pos: 8.5,43.5
- parent: 2
- - uid: 23861
- components:
- - type: Transform
- pos: 12.5,44.5
- parent: 2
- - uid: 23862
- components:
- - type: Transform
- pos: 84.5,-47.5
- parent: 2
- - uid: 23863
- components:
- - type: Transform
- pos: 26.5,102.5
- parent: 2
- - uid: 23864
- components:
- - type: Transform
- pos: 45.5,1.5
- parent: 2
- - uid: 23865
- components:
- - type: Transform
- pos: -53.5,-94.5
- parent: 2
- - uid: 23866
- components:
- - type: Transform
- pos: -75.5,31.5
- parent: 2
- - uid: 23867
- components:
- - type: Transform
- pos: -52.5,-72.5
- parent: 2
- - uid: 23868
- components:
- - type: Transform
- pos: 78.5,-26.5
- parent: 2
- - uid: 23869
- components:
- - type: Transform
- pos: -69.5,-4.5
- parent: 2
- - uid: 23870
- components:
- - type: Transform
- pos: -39.5,19.5
- parent: 2
- - uid: 23871
- components:
- - type: Transform
- pos: 6.5,-62.5
- parent: 2
- - uid: 23872
- components:
- - type: Transform
- pos: 4.5,-62.5
- parent: 2
- - uid: 23873
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,29.5
- parent: 2
- - uid: 23874
- components:
- - type: Transform
- pos: 27.5,-72.5
- parent: 2
- - uid: 23875
- components:
- - type: Transform
- pos: 44.5,22.5
- parent: 2
- - uid: 23876
- components:
- - type: Transform
- pos: 24.5,102.5
- parent: 2
- - uid: 23877
- components:
- - type: Transform
- pos: 83.5,-53.5
- parent: 2
- - uid: 23878
- components:
- - type: Transform
- pos: 82.5,-53.5
- parent: 2
- - uid: 23879
- components:
- - type: Transform
- pos: 72.5,-12.5
- parent: 2
- - uid: 23880
- components:
- - type: Transform
- pos: 14.5,93.5
- parent: 2
- - uid: 23881
- components:
- - type: Transform
- pos: 38.5,-50.5
- parent: 2
- - uid: 23882
- components:
- - type: Transform
- pos: -66.5,70.5
- parent: 2
- - uid: 23883
- components:
- - type: Transform
- pos: 82.5,-47.5
- parent: 2
- - uid: 23884
- components:
- - type: Transform
- pos: 87.5,-47.5
- parent: 2
- - uid: 23885
- components:
- - type: Transform
- pos: -50.5,67.5
- parent: 2
- - uid: 23886
- components:
- - type: Transform
- pos: -47.5,-92.5
- parent: 2
- - uid: 23887
- components:
- - type: Transform
- pos: -53.5,-78.5
- parent: 2
- - uid: 23888
- components:
- - type: Transform
- pos: -43.5,33.5
- parent: 2
- - uid: 23889
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,92.5
- parent: 2
- - uid: 23890
- components:
- - type: Transform
- pos: -8.5,-28.5
- parent: 2
- - uid: 23891
- components:
- - type: Transform
- pos: -54.5,-78.5
- parent: 2
- - uid: 23892
- components:
- - type: Transform
- pos: -49.5,-93.5
- parent: 2
- - uid: 23893
- components:
- - type: Transform
- pos: 7.5,-73.5
- parent: 2
- - uid: 23894
- components:
- - type: Transform
- pos: 54.5,-60.5
- parent: 2
- - uid: 23895
- components:
- - type: Transform
- pos: 34.5,102.5
- parent: 2
- - uid: 23896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,-21.5
- parent: 2
- - uid: 23897
- components:
- - type: Transform
- pos: -103.5,-8.5
- parent: 2
- - uid: 23898
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-21.5
- parent: 2
- - uid: 23899
- components:
- - type: Transform
- pos: 28.5,-72.5
- parent: 2
- - uid: 23900
- components:
- - type: Transform
- pos: 20.5,-36.5
- parent: 2
- - uid: 23901
- components:
- - type: Transform
- pos: -6.5,-11.5
- parent: 2
- - uid: 23902
- components:
- - type: Transform
- pos: 30.5,104.5
- parent: 2
- - uid: 23903
- components:
- - type: Transform
- pos: 83.5,-46.5
- parent: 2
- - uid: 23904
- components:
- - type: Transform
- pos: 83.5,-45.5
- parent: 2
- - uid: 23905
- components:
- - type: Transform
- pos: 30.5,103.5
- parent: 2
- - uid: 23906
- components:
- - type: Transform
- pos: 30.5,-74.5
- parent: 2
- - uid: 23907
- components:
- - type: Transform
- pos: 81.5,-53.5
- parent: 2
- - uid: 23908
- components:
- - type: Transform
- pos: 54.5,-58.5
- parent: 2
- - uid: 23909
- components:
- - type: Transform
- pos: 30.5,-72.5
- parent: 2
- - uid: 23910
- components:
- - type: Transform
- pos: 77.5,-48.5
- parent: 2
- - uid: 23911
- components:
- - type: Transform
- pos: 80.5,-53.5
- parent: 2
- - uid: 23912
- components:
- - type: Transform
- pos: 20.5,102.5
- parent: 2
- - uid: 23913
- components:
- - type: Transform
- pos: 53.5,-58.5
- parent: 2
- - uid: 23914
- components:
- - type: Transform
- pos: 7.5,-69.5
- parent: 2
- - uid: 23915
- components:
- - type: Transform
- pos: -66.5,7.5
- parent: 2
- - uid: 23916
- components:
- - type: Transform
- pos: 32.5,-61.5
- parent: 2
- - uid: 23917
- components:
- - type: Transform
- pos: 23.5,35.5
- parent: 2
- - uid: 23918
- components:
- - type: Transform
- pos: -71.5,-4.5
- parent: 2
- - uid: 23919
- components:
- - type: Transform
- pos: -2.5,-26.5
- parent: 2
- - uid: 23920
- components:
- - type: Transform
- pos: -15.5,19.5
- parent: 2
- - uid: 23921
- components:
- - type: Transform
- pos: -42.5,-50.5
- parent: 2
- - uid: 23922
- components:
- - type: Transform
- pos: -9.5,21.5
- parent: 2
- - uid: 23923
- components:
- - type: Transform
- pos: -49.5,43.5
- parent: 2
- - uid: 23924
- components:
- - type: Transform
- pos: -58.5,-51.5
- parent: 2
- - uid: 23925
- components:
- - type: Transform
- pos: -47.5,68.5
- parent: 2
- - uid: 23926
- components:
- - type: Transform
- pos: -48.5,-72.5
- parent: 2
- - uid: 23927
- components:
- - type: Transform
- pos: -46.5,-75.5
- parent: 2
- - uid: 23928
- components:
- - type: Transform
- pos: -76.5,55.5
- parent: 2
- - uid: 23929
- components:
- - type: Transform
- pos: -49.5,-78.5
- parent: 2
- - uid: 23930
- components:
- - type: Transform
- pos: 81.5,-41.5
- parent: 2
- - uid: 23931
- components:
- - type: Transform
- pos: -84.5,71.5
- parent: 2
- - uid: 23932
- components:
- - type: Transform
- pos: -46.5,68.5
- parent: 2
- - uid: 23933
- components:
- - type: Transform
- pos: -3.5,-33.5
- parent: 2
- - uid: 23934
- components:
- - type: Transform
- pos: -20.5,13.5
- parent: 2
- - uid: 23935
- components:
- - type: Transform
- pos: 1.5,-26.5
- parent: 2
- - uid: 23936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,6.5
- parent: 2
- - uid: 23937
- components:
- - type: Transform
- pos: -20.5,19.5
- parent: 2
- - uid: 23938
- components:
- - type: Transform
- pos: 8.5,-28.5
- parent: 2
- - uid: 23939
- components:
- - type: Transform
- pos: -38.5,-49.5
- parent: 2
- - uid: 23940
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -79.5,1.5
- parent: 2
- - uid: 23941
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -79.5,-0.5
- parent: 2
- - uid: 23942
- components:
- - type: Transform
- pos: 15.5,-26.5
- parent: 2
- - uid: 23943
- components:
- - type: Transform
- pos: 45.5,-56.5
- parent: 2
- - uid: 23944
- components:
- - type: Transform
- pos: 41.5,-56.5
- parent: 2
- - uid: 23945
- components:
- - type: Transform
- pos: 30.5,66.5
- parent: 2
- - uid: 23946
- components:
- - type: Transform
- pos: 72.5,-40.5
- parent: 2
- - uid: 23947
- components:
- - type: Transform
- pos: 30.5,70.5
- parent: 2
- - uid: 23948
- components:
- - type: Transform
- pos: -72.5,-45.5
- parent: 2
- - uid: 23949
- components:
- - type: Transform
- pos: -59.5,-88.5
- parent: 2
- - uid: 23950
- components:
- - type: Transform
- pos: 27.5,105.5
- parent: 2
- - uid: 23951
- components:
- - type: Transform
- pos: -60.5,-88.5
- parent: 2
- - uid: 23952
- components:
- - type: Transform
- pos: -72.5,-46.5
- parent: 2
- - uid: 23953
- components:
- - type: Transform
- pos: 45.5,9.5
- parent: 2
- - uid: 23954
- components:
- - type: Transform
- pos: 30.5,69.5
- parent: 2
- - uid: 23955
- components:
- - type: Transform
- pos: -55.5,17.5
- parent: 2
- - uid: 23956
- components:
- - type: Transform
- pos: -57.5,-78.5
- parent: 2
- - uid: 23957
- components:
- - type: Transform
- pos: 5.5,48.5
- parent: 2
- - uid: 23958
- components:
- - type: Transform
- pos: 24.5,61.5
- parent: 2
- - uid: 23959
- components:
- - type: Transform
- pos: -77.5,31.5
- parent: 2
- - uid: 23960
- components:
- - type: Transform
- pos: 74.5,-35.5
- parent: 2
- - uid: 23961
- components:
- - type: Transform
- pos: 77.5,-40.5
- parent: 2
- - uid: 23962
- components:
- - type: Transform
- pos: 19.5,-1.5
- parent: 2
- - uid: 23963
- components:
- - type: Transform
- pos: 21.5,3.5
- parent: 2
- - uid: 23964
- components:
- - type: Transform
- pos: 57.5,-48.5
- parent: 2
- - uid: 23965
- components:
- - type: Transform
- pos: -14.5,-82.5
- parent: 2
- - uid: 23966
- components:
- - type: Transform
- pos: 2.5,70.5
- parent: 2
- - uid: 23967
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-19.5
- parent: 2
- - uid: 23968
- components:
- - type: Transform
- pos: 25.5,-70.5
- parent: 2
- - uid: 23969
- components:
- - type: Transform
- pos: 66.5,-20.5
- parent: 2
- - uid: 23970
- components:
- - type: Transform
- pos: 76.5,-27.5
- parent: 2
- - uid: 23971
- components:
- - type: Transform
- pos: 11.5,31.5
- parent: 2
- - uid: 23972
- components:
- - type: Transform
- pos: -29.5,-24.5
- parent: 2
- - uid: 23973
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-21.5
- parent: 2
- - uid: 23974
- components:
- - type: Transform
- pos: 26.5,-64.5
- parent: 2
- - uid: 23975
- components:
- - type: Transform
- pos: 9.5,21.5
- parent: 2
- - uid: 23976
- components:
- - type: Transform
- pos: 20.5,91.5
- parent: 2
- - uid: 23977
- components:
- - type: Transform
- pos: -1.5,19.5
- parent: 2
- - uid: 23978
- components:
- - type: Transform
- pos: -8.5,-36.5
- parent: 2
- - uid: 23979
- components:
- - type: Transform
- pos: 31.5,-64.5
- parent: 2
- - uid: 23980
- components:
- - type: Transform
- pos: 23.5,-49.5
- parent: 2
- - uid: 23981
- components:
- - type: Transform
- pos: -20.5,-29.5
- parent: 2
- - uid: 23982
- components:
- - type: Transform
- pos: -20.5,-26.5
- parent: 2
- - uid: 23983
- components:
- - type: Transform
- pos: -20.5,-24.5
- parent: 2
- - uid: 23984
- components:
- - type: Transform
- pos: -50.5,-16.5
- parent: 2
- - uid: 23985
- components:
- - type: Transform
- pos: -73.5,9.5
- parent: 2
- - uid: 23986
- components:
- - type: Transform
- pos: -68.5,5.5
- parent: 2
- - uid: 23987
- components:
- - type: Transform
- pos: -34.5,42.5
- parent: 2
- - uid: 23988
- components:
- - type: Transform
- pos: -35.5,22.5
- parent: 2
- - uid: 23989
- components:
- - type: Transform
- pos: -69.5,-48.5
- parent: 2
- - uid: 23990
- components:
- - type: Transform
- pos: 23.5,-27.5
- parent: 2
- - uid: 23991
- components:
- - type: Transform
- pos: 14.5,18.5
- parent: 2
- - uid: 23992
- components:
- - type: Transform
- pos: 14.5,19.5
- parent: 2
- - uid: 23993
- components:
- - type: Transform
- pos: 14.5,20.5
- parent: 2
- - uid: 23994
- components:
- - type: Transform
- pos: -50.5,22.5
- parent: 2
- - uid: 23995
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,4.5
- parent: 2
- - uid: 23996
- components:
- - type: Transform
- pos: 32.5,13.5
- parent: 2
- - uid: 23997
- components:
- - type: Transform
- pos: -11.5,-72.5
- parent: 2
- - uid: 23998
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,6.5
- parent: 2
- - uid: 23999
- components:
- - type: Transform
- pos: 17.5,86.5
- parent: 2
- - uid: 24000
- components:
- - type: Transform
- pos: 2.5,-45.5
- parent: 2
- - uid: 24001
- components:
- - type: Transform
- pos: 10.5,-21.5
- parent: 2
- - uid: 24002
- components:
- - type: Transform
- pos: -103.5,-10.5
- parent: 2
- - uid: 24003
- components:
- - type: Transform
- pos: 13.5,-21.5
- parent: 2
- - uid: 24004
- components:
- - type: Transform
- pos: -43.5,32.5
- parent: 2
- - uid: 24005
- components:
- - type: Transform
- pos: -19.5,70.5
- parent: 2
- - uid: 24006
- components:
- - type: Transform
- pos: 71.5,-12.5
- parent: 2
- - uid: 24007
- components:
- - type: Transform
- pos: -68.5,17.5
- parent: 2
- - uid: 24008
- components:
- - type: Transform
- pos: -35.5,-58.5
- parent: 2
- - uid: 24009
- components:
- - type: Transform
- pos: -36.5,-30.5
- parent: 2
- - uid: 24010
- components:
- - type: Transform
- pos: -34.5,-30.5
- parent: 2
- - uid: 24011
- components:
- - type: Transform
- pos: -32.5,-30.5
- parent: 2
- - uid: 24012
- components:
- - type: Transform
- pos: -34.5,-24.5
- parent: 2
- - uid: 24013
- components:
- - type: Transform
- pos: -36.5,-24.5
- parent: 2
- - uid: 24014
- components:
- - type: Transform
- pos: -20.5,9.5
- parent: 2
- - uid: 24015
- components:
- - type: Transform
- pos: -60.5,49.5
- parent: 2
- - uid: 24016
- components:
- - type: Transform
- pos: -51.5,32.5
- parent: 2
- - uid: 24017
- components:
- - type: Transform
- pos: -67.5,21.5
- parent: 2
- - uid: 24018
- components:
- - type: Transform
- pos: 22.5,-41.5
- parent: 2
- - uid: 24019
- components:
- - type: Transform
- pos: -62.5,68.5
- parent: 2
- - uid: 24020
- components:
- - type: Transform
- pos: -67.5,77.5
- parent: 2
- - uid: 24021
- components:
- - type: Transform
- pos: -66.5,77.5
- parent: 2
- - uid: 24022
- components:
- - type: Transform
- pos: -66.5,76.5
- parent: 2
- - uid: 24023
- components:
- - type: Transform
- pos: -66.5,75.5
- parent: 2
- - uid: 24024
- components:
- - type: Transform
- pos: -66.5,74.5
- parent: 2
- - uid: 24025
- components:
- - type: Transform
- pos: -66.5,73.5
- parent: 2
- - uid: 24026
- components:
- - type: Transform
- pos: -52.5,-95.5
- parent: 2
- - uid: 24027
- components:
- - type: Transform
- pos: 85.5,-47.5
- parent: 2
- - uid: 24028
- components:
- - type: Transform
- pos: 78.5,-47.5
- parent: 2
- - uid: 24029
- components:
- - type: Transform
- pos: 57.5,-60.5
- parent: 2
- - uid: 24030
- components:
- - type: Transform
- pos: -46.5,66.5
- parent: 2
- - uid: 24031
- components:
- - type: Transform
- pos: -42.5,-83.5
- parent: 2
- - uid: 24032
- components:
- - type: Transform
- pos: -20.5,-82.5
- parent: 2
- - uid: 24033
- components:
- - type: Transform
- pos: 42.5,-19.5
- parent: 2
- - uid: 24034
- components:
- - type: Transform
- pos: 6.5,-28.5
- parent: 2
- - uid: 24035
- components:
- - type: Transform
- pos: 32.5,88.5
- parent: 2
- - uid: 24036
- components:
- - type: Transform
- pos: 0.5,46.5
- parent: 2
- - uid: 24037
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,4.5
- parent: 2
- - uid: 24038
- components:
- - type: Transform
- pos: -75.5,46.5
- parent: 2
- - uid: 24039
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,6.5
- parent: 2
- - uid: 24040
- components:
- - type: Transform
- pos: -43.5,-89.5
- parent: 2
- - uid: 24041
- components:
- - type: Transform
- pos: -75.5,50.5
- parent: 2
- - uid: 24042
- components:
- - type: Transform
- pos: -75.5,51.5
- parent: 2
- - uid: 24043
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-21.5
- parent: 2
- - uid: 24044
- components:
- - type: Transform
- pos: 12.5,-36.5
- parent: 2
- - uid: 24045
- components:
- - type: Transform
- pos: -22.5,-84.5
- parent: 2
- - uid: 24046
- components:
- - type: Transform
- pos: -46.5,43.5
- parent: 2
- - uid: 24047
- components:
- - type: Transform
- pos: 79.5,-47.5
- parent: 2
- - uid: 24048
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,57.5
- parent: 2
- - uid: 24049
- components:
- - type: Transform
- pos: -66.5,5.5
- parent: 2
- - uid: 24050
- components:
- - type: Transform
- pos: 44.5,-79.5
- parent: 2
- - uid: 24051
- components:
- - type: Transform
- pos: 82.5,11.5
- parent: 2
- - uid: 24052
- components:
- - type: Transform
- pos: -57.5,-51.5
- parent: 2
- - uid: 24053
- components:
- - type: Transform
- pos: 16.5,85.5
- parent: 2
- - uid: 24054
- components:
- - type: Transform
- pos: 39.5,-79.5
- parent: 2
- - uid: 24055
- components:
- - type: Transform
- pos: 40.5,-77.5
- parent: 2
- - uid: 24056
- components:
- - type: Transform
- pos: 89.5,-41.5
- parent: 2
- - uid: 24057
- components:
- - type: Transform
- pos: 79.5,-53.5
- parent: 2
- - uid: 24058
- components:
- - type: Transform
- pos: 11.5,41.5
- parent: 2
- - uid: 24059
- components:
- - type: Transform
- pos: 24.5,-36.5
- parent: 2
- - uid: 24060
- components:
- - type: Transform
- pos: 22.5,-36.5
- parent: 2
- - uid: 24061
- components:
- - type: Transform
- pos: 29.5,-74.5
- parent: 2
- - uid: 24062
- components:
- - type: Transform
- pos: 31.5,64.5
- parent: 2
- - uid: 24063
- components:
- - type: Transform
- pos: 40.5,-56.5
- parent: 2
- - uid: 24064
- components:
- - type: Transform
- pos: 35.5,-56.5
- parent: 2
- - uid: 24065
- components:
- - type: Transform
- pos: -7.5,-82.5
- parent: 2
- - uid: 24066
- components:
- - type: Transform
- pos: -4.5,-82.5
- parent: 2
- - uid: 24067
- components:
- - type: Transform
- pos: -1.5,-82.5
- parent: 2
- - uid: 24068
- components:
- - type: Transform
- pos: -0.5,-82.5
- parent: 2
- - uid: 24069
- components:
- - type: Transform
- pos: 0.5,-82.5
- parent: 2
- - uid: 24070
- components:
- - type: Transform
- pos: 21.5,-60.5
- parent: 2
- - uid: 24071
- components:
- - type: Transform
- pos: 20.5,-60.5
- parent: 2
- - uid: 24072
- components:
- - type: Transform
- pos: 19.5,-60.5
- parent: 2
- - uid: 24073
- components:
- - type: Transform
- pos: 8.5,-70.5
- parent: 2
- - uid: 24074
- components:
- - type: Transform
- pos: -13.5,-83.5
- parent: 2
- - uid: 24075
- components:
- - type: Transform
- pos: -17.5,-84.5
- parent: 2
- - uid: 24076
- components:
- - type: Transform
- pos: -18.5,-84.5
- parent: 2
- - uid: 24077
- components:
- - type: Transform
- pos: -19.5,-84.5
- parent: 2
- - uid: 24078
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-83.5
- parent: 2
- - uid: 24079
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-84.5
- parent: 2
- - uid: 24080
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-85.5
- parent: 2
- - uid: 24081
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-82.5
- parent: 2
- - uid: 24082
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-83.5
- parent: 2
- - uid: 24083
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-84.5
- parent: 2
- - uid: 24084
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-85.5
- parent: 2
- - uid: 24085
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-84.5
- parent: 2
- - uid: 24086
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-84.5
- parent: 2
- - uid: 24087
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-84.5
- parent: 2
- - uid: 24088
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-84.5
- parent: 2
- - uid: 24089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-85.5
- parent: 2
- - uid: 24090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-83.5
- parent: 2
- - uid: 24091
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-83.5
- parent: 2
- - uid: 24092
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-84.5
- parent: 2
- - uid: 24093
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-85.5
- parent: 2
- - uid: 24094
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-85.5
- parent: 2
- - uid: 24095
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-84.5
- parent: 2
- - uid: 24096
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-83.5
- parent: 2
- - uid: 24097
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,70.5
- parent: 2
- - uid: 24098
- components:
- - type: Transform
- pos: 84.5,11.5
- parent: 2
- - uid: 24099
- components:
- - type: Transform
- pos: 11.5,-65.5
- parent: 2
- - uid: 24100
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-16.5
- parent: 2
- - uid: 24101
- components:
- - type: Transform
- pos: -103.5,-3.5
- parent: 2
- - uid: 24102
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-15.5
- parent: 2
- - uid: 24103
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-14.5
- parent: 2
- - uid: 24104
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-14.5
- parent: 2
- - uid: 24105
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-10.5
- parent: 2
- - uid: 24106
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-8.5
- parent: 2
- - uid: 24107
- components:
- - type: Transform
- pos: -103.5,-12.5
- parent: 2
- - uid: 24108
- components:
- - type: Transform
- pos: -67.5,-4.5
- parent: 2
- - uid: 24109
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -100.5,-16.5
- parent: 2
- - uid: 24110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,-16.5
- parent: 2
- - uid: 24111
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -100.5,1.5
- parent: 2
- - uid: 24112
- components:
- - type: Transform
- pos: -83.5,-7.5
- parent: 2
- - uid: 24113
- components:
- - type: Transform
- pos: -83.5,-6.5
- parent: 2
- - uid: 24114
- components:
- - type: Transform
- pos: -83.5,-5.5
- parent: 2
- - uid: 24115
- components:
- - type: Transform
- pos: -61.5,-5.5
- parent: 2
- - uid: 24116
- components:
- - type: Transform
- pos: 89.5,-46.5
- parent: 2
- - uid: 24117
- components:
- - type: Transform
- pos: 89.5,-42.5
- parent: 2
- - uid: 24118
- components:
- - type: Transform
- pos: 74.5,-47.5
- parent: 2
- - uid: 24119
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-42.5
- parent: 2
- - uid: 24120
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-42.5
- parent: 2
- - uid: 24121
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,-38.5
- parent: 2
- - uid: 24122
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,-42.5
- parent: 2
- - uid: 24123
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,-42.5
- parent: 2
- - uid: 24124
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-38.5
- parent: 2
- - uid: 24125
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-42.5
- parent: 2
- - uid: 24126
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-42.5
- parent: 2
- - uid: 24127
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-42.5
- parent: 2
- - uid: 24128
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-42.5
- parent: 2
- - uid: 24129
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,82.5
- parent: 2
- - uid: 24130
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,83.5
- parent: 2
- - uid: 24131
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,84.5
- parent: 2
- - uid: 24132
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,84.5
- parent: 2
- - uid: 24133
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,80.5
- parent: 2
- - uid: 24134
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,81.5
- parent: 2
- - uid: 24135
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-35.5
- parent: 2
- - uid: 24136
- components:
- - type: Transform
- pos: 58.5,-53.5
- parent: 2
- - uid: 24137
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-25.5
- parent: 2
- - uid: 24138
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,83.5
- parent: 2
- - uid: 24139
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,11.5
- parent: 2
- - uid: 24140
- components:
- - type: Transform
- pos: -86.5,26.5
- parent: 2
- - uid: 24141
- components:
- - type: Transform
- pos: -85.5,26.5
- parent: 2
- - uid: 24142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,23.5
- parent: 2
- - uid: 24143
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,22.5
- parent: 2
- - uid: 24144
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,22.5
- parent: 2
- - uid: 24145
- components:
- - type: Transform
- pos: -107.5,26.5
- parent: 2
- - uid: 24146
- components:
- - type: Transform
- pos: -103.5,26.5
- parent: 2
- - uid: 24147
- components:
- - type: Transform
- pos: -104.5,26.5
- parent: 2
- - uid: 24148
- components:
- - type: Transform
- pos: -90.5,26.5
- parent: 2
- - uid: 24149
- components:
- - type: Transform
- pos: -101.5,26.5
- parent: 2
- - uid: 24150
- components:
- - type: Transform
- pos: -100.5,26.5
- parent: 2
- - uid: 24151
- components:
- - type: Transform
- pos: -98.5,26.5
- parent: 2
- - uid: 24152
- components:
- - type: Transform
- pos: -95.5,26.5
- parent: 2
- - uid: 24153
- components:
- - type: Transform
- pos: -94.5,26.5
- parent: 2
- - uid: 24154
- components:
- - type: Transform
- pos: -93.5,26.5
- parent: 2
- - uid: 24155
- components:
- - type: Transform
- pos: -92.5,26.5
- parent: 2
- - uid: 24156
- components:
- - type: Transform
- pos: -89.5,26.5
- parent: 2
- - uid: 24157
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -80.5,23.5
- parent: 2
- - uid: 24158
- components:
- - type: Transform
- pos: -81.5,22.5
- parent: 2
- - uid: 24159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,84.5
- parent: 2
- - uid: 24160
- components:
- - type: Transform
- pos: -118.5,44.5
- parent: 2
- - uid: 24161
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,84.5
- parent: 2
- - uid: 24162
- components:
- - type: Transform
- pos: -110.5,19.5
- parent: 2
- - uid: 24163
- components:
- - type: Transform
- pos: -107.5,20.5
- parent: 2
- - uid: 24164
- components:
- - type: Transform
- pos: -106.5,20.5
- parent: 2
- - uid: 24165
- components:
- - type: Transform
- pos: -105.5,20.5
- parent: 2
- - uid: 24166
- components:
- - type: Transform
- pos: -103.5,20.5
- parent: 2
- - uid: 24167
- components:
- - type: Transform
- pos: -102.5,20.5
- parent: 2
- - uid: 24168
- components:
- - type: Transform
- pos: -100.5,20.5
- parent: 2
- - uid: 24169
- components:
- - type: Transform
- pos: -99.5,20.5
- parent: 2
- - uid: 24170
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,20.5
- parent: 2
- - uid: 24171
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,20.5
- parent: 2
- - uid: 24172
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,20.5
- parent: 2
- - uid: 24173
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,20.5
- parent: 2
- - uid: 24174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,17.5
- parent: 2
- - uid: 24175
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,16.5
- parent: 2
- - uid: 24176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,15.5
- parent: 2
- - uid: 24177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,14.5
- parent: 2
- - uid: 24178
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,12.5
- parent: 2
- - uid: 24179
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,10.5
- parent: 2
- - uid: 24180
- components:
- - type: Transform
- pos: -90.5,9.5
- parent: 2
- - uid: 24181
- components:
- - type: Transform
- pos: -89.5,9.5
- parent: 2
- - uid: 24182
- components:
- - type: Transform
- pos: -87.5,9.5
- parent: 2
- - uid: 24183
- components:
- - type: Transform
- pos: -86.5,9.5
- parent: 2
- - uid: 24184
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,9.5
- parent: 2
- - uid: 24185
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,9.5
- parent: 2
- - uid: 24186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,9.5
- parent: 2
- - uid: 24187
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,9.5
- parent: 2
- - uid: 24188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,7.5
- parent: 2
- - uid: 24189
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,84.5
- parent: 2
- - uid: 24190
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,45.5
- parent: 2
- - uid: 24191
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,43.5
- parent: 2
- - uid: 24192
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,42.5
- parent: 2
- - uid: 24193
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,40.5
- parent: 2
- - uid: 24194
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,39.5
- parent: 2
- - uid: 24195
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,38.5
- parent: 2
- - uid: 24196
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,37.5
- parent: 2
- - uid: 24197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -126.5,25.5
- parent: 2
- - uid: 24198
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -126.5,22.5
- parent: 2
- - uid: 24199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -126.5,23.5
- parent: 2
- - uid: 24200
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -126.5,19.5
- parent: 2
- - uid: 24201
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -121.5,14.5
- parent: 2
- - uid: 24202
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -122.5,14.5
- parent: 2
- - uid: 24203
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,14.5
- parent: 2
- - uid: 24204
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,14.5
- parent: 2
- - uid: 24205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,14.5
- parent: 2
- - uid: 24206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -114.5,14.5
- parent: 2
- - uid: 24207
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,14.5
- parent: 2
- - uid: 24208
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,15.5
- parent: 2
- - uid: 24209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,16.5
- parent: 2
- - uid: 24210
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,17.5
- parent: 2
- - uid: 24211
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,84.5
- parent: 2
- - uid: 24212
- components:
- - type: Transform
- pos: 84.5,-17.5
- parent: 2
- - uid: 24213
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,84.5
- parent: 2
- - uid: 24214
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,84.5
- parent: 2
- - uid: 24215
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,85.5
- parent: 2
- - uid: 24216
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,86.5
- parent: 2
- - uid: 24217
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,86.5
- parent: 2
- - uid: 24218
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,86.5
- parent: 2
- - uid: 24219
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,86.5
- parent: 2
- - uid: 24220
- components:
- - type: Transform
- pos: -118.5,27.5
- parent: 2
- - uid: 24221
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,85.5
- parent: 2
- - uid: 24222
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,84.5
- parent: 2
- - uid: 24223
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,84.5
- parent: 2
- - uid: 24224
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -80.5,84.5
- parent: 2
- - uid: 24225
- components:
- - type: Transform
- pos: -126.5,52.5
- parent: 2
- - uid: 24226
- components:
- - type: Transform
- pos: -126.5,51.5
- parent: 2
- - uid: 24227
- components:
- - type: Transform
- pos: -126.5,50.5
- parent: 2
- - uid: 24228
- components:
- - type: Transform
- pos: -127.5,47.5
- parent: 2
- - uid: 24229
- components:
- - type: Transform
- pos: -126.5,47.5
- parent: 2
- - uid: 24230
- components:
- - type: Transform
- pos: -126.5,48.5
- parent: 2
- - uid: 24231
- components:
- - type: Transform
- pos: 84.5,-19.5
- parent: 2
- - uid: 24232
- components:
- - type: Transform
- pos: 82.5,-23.5
- parent: 2
- - uid: 24233
- components:
- - type: Transform
- pos: 82.5,-25.5
- parent: 2
- - uid: 24234
- components:
- - type: Transform
- pos: 82.5,-26.5
- parent: 2
- - uid: 24235
- components:
- - type: Transform
- pos: 82.5,-27.5
- parent: 2
- - uid: 24236
- components:
- - type: Transform
- pos: 83.5,-27.5
- parent: 2
- - uid: 24237
- components:
- - type: Transform
- pos: 84.5,-27.5
- parent: 2
- - uid: 24238
- components:
- - type: Transform
- pos: 84.5,-25.5
- parent: 2
- - uid: 24239
- components:
- - type: Transform
- pos: 84.5,-24.5
- parent: 2
- - uid: 24240
- components:
- - type: Transform
- pos: 85.5,-25.5
- parent: 2
- - uid: 24241
- components:
- - type: Transform
- pos: 86.5,-25.5
- parent: 2
- - uid: 24242
- components:
- - type: Transform
- pos: 86.5,-27.5
- parent: 2
- - uid: 24243
- components:
- - type: Transform
- pos: 87.5,-27.5
- parent: 2
- - uid: 24244
- components:
- - type: Transform
- pos: 88.5,-27.5
- parent: 2
- - uid: 24245
- components:
- - type: Transform
- pos: 89.5,-27.5
- parent: 2
- - uid: 24246
- components:
- - type: Transform
- pos: 90.5,-27.5
- parent: 2
- - uid: 24247
- components:
- - type: Transform
- pos: 92.5,-27.5
- parent: 2
- - uid: 24248
- components:
- - type: Transform
- pos: 93.5,-27.5
- parent: 2
- - uid: 24249
- components:
- - type: Transform
- pos: 94.5,-27.5
- parent: 2
- - uid: 24250
- components:
- - type: Transform
- pos: 95.5,-27.5
- parent: 2
- - uid: 24251
- components:
- - type: Transform
- pos: 96.5,-26.5
- parent: 2
- - uid: 24252
- components:
- - type: Transform
- pos: 96.5,-25.5
- parent: 2
- - uid: 24253
- components:
- - type: Transform
- pos: 96.5,-22.5
- parent: 2
- - uid: 24254
- components:
- - type: Transform
- pos: 96.5,-23.5
- parent: 2
- - uid: 24255
- components:
- - type: Transform
- pos: 96.5,-21.5
- parent: 2
- - uid: 24256
- components:
- - type: Transform
- pos: 96.5,-20.5
- parent: 2
- - uid: 24257
- components:
- - type: Transform
- pos: 96.5,-19.5
- parent: 2
- - uid: 24258
- components:
- - type: Transform
- pos: 96.5,-18.5
- parent: 2
- - uid: 24259
- components:
- - type: Transform
- pos: 96.5,-16.5
- parent: 2
- - uid: 24260
- components:
- - type: Transform
- pos: 96.5,-14.5
- parent: 2
- - uid: 24261
- components:
- - type: Transform
- pos: 96.5,-13.5
- parent: 2
- - uid: 24262
- components:
- - type: Transform
- pos: 95.5,-12.5
- parent: 2
- - uid: 24263
- components:
- - type: Transform
- pos: 94.5,-12.5
- parent: 2
- - uid: 24264
- components:
- - type: Transform
- pos: 93.5,-12.5
- parent: 2
- - uid: 24265
- components:
- - type: Transform
- pos: 92.5,-12.5
- parent: 2
- - uid: 24266
- components:
- - type: Transform
- pos: 90.5,-12.5
- parent: 2
- - uid: 24267
- components:
- - type: Transform
- pos: 89.5,-12.5
- parent: 2
- - uid: 24268
- components:
- - type: Transform
- pos: 88.5,-12.5
- parent: 2
- - uid: 24269
- components:
- - type: Transform
- pos: 87.5,-12.5
- parent: 2
- - uid: 24270
- components:
- - type: Transform
- pos: 85.5,-12.5
- parent: 2
- - uid: 24271
- components:
- - type: Transform
- pos: 84.5,-12.5
- parent: 2
- - uid: 24272
- components:
- - type: Transform
- pos: 83.5,-12.5
- parent: 2
- - uid: 24273
- components:
- - type: Transform
- pos: 82.5,-12.5
- parent: 2
- - uid: 24274
- components:
- - type: Transform
- pos: 82.5,-13.5
- parent: 2
- - uid: 24275
- components:
- - type: Transform
- pos: 82.5,-14.5
- parent: 2
- - uid: 24276
- components:
- - type: Transform
- pos: 82.5,-16.5
- parent: 2
- - uid: 24277
- components:
- - type: Transform
- pos: 84.5,-15.5
- parent: 2
- - uid: 24278
- components:
- - type: Transform
- pos: 84.5,-14.5
- parent: 2
- - uid: 24279
- components:
- - type: Transform
- pos: 85.5,-14.5
- parent: 2
- - uid: 24280
- components:
- - type: Transform
- pos: 86.5,-14.5
- parent: 2
- - uid: 24281
- components:
- - type: Transform
- pos: 88.5,-14.5
- parent: 2
- - uid: 24282
- components:
- - type: Transform
- pos: 89.5,-14.5
- parent: 2
- - uid: 24283
- components:
- - type: Transform
- pos: 90.5,-14.5
- parent: 2
- - uid: 24284
- components:
- - type: Transform
- pos: 92.5,-14.5
- parent: 2
- - uid: 24285
- components:
- - type: Transform
- pos: 93.5,-14.5
- parent: 2
- - uid: 24286
- components:
- - type: Transform
- pos: 94.5,-14.5
- parent: 2
- - uid: 24287
- components:
- - type: Transform
- pos: 94.5,-15.5
- parent: 2
- - uid: 24288
- components:
- - type: Transform
- pos: 94.5,-17.5
- parent: 2
- - uid: 24289
- components:
- - type: Transform
- pos: 94.5,-18.5
- parent: 2
- - uid: 24290
- components:
- - type: Transform
- pos: 94.5,-19.5
- parent: 2
- - uid: 24291
- components:
- - type: Transform
- pos: 94.5,-20.5
- parent: 2
- - uid: 24292
- components:
- - type: Transform
- pos: 94.5,-21.5
- parent: 2
- - uid: 24293
- components:
- - type: Transform
- pos: 94.5,-22.5
- parent: 2
- - uid: 24294
- components:
- - type: Transform
- pos: 94.5,-24.5
- parent: 2
- - uid: 24295
- components:
- - type: Transform
- pos: 94.5,-25.5
- parent: 2
- - uid: 24296
- components:
- - type: Transform
- pos: 93.5,-25.5
- parent: 2
- - uid: 24297
- components:
- - type: Transform
- pos: 92.5,-25.5
- parent: 2
- - uid: 24298
- components:
- - type: Transform
- pos: 90.5,-25.5
- parent: 2
- - uid: 24299
- components:
- - type: Transform
- pos: 89.5,-25.5
- parent: 2
- - uid: 24300
- components:
- - type: Transform
- pos: 88.5,-25.5
- parent: 2
- - uid: 24301
- components:
- - type: Transform
- pos: 96.5,-17.5
- parent: 2
- - uid: 24302
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,-38.5
- parent: 2
- - uid: 24303
- components:
- - type: Transform
- pos: 59.5,-51.5
- parent: 2
- - uid: 24304
- components:
- - type: Transform
- pos: 80.5,28.5
- parent: 2
- - uid: 24305
- components:
- - type: Transform
- pos: 82.5,15.5
- parent: 2
- - uid: 24306
- components:
- - type: Transform
- pos: 83.5,15.5
- parent: 2
- - uid: 24307
- components:
- - type: Transform
- pos: 86.5,15.5
- parent: 2
- - uid: 24308
- components:
- - type: Transform
- pos: 90.5,17.5
- parent: 2
- - uid: 24309
- components:
- - type: Transform
- pos: 90.5,18.5
- parent: 2
- - uid: 24310
- components:
- - type: Transform
- pos: 80.5,29.5
- parent: 2
- - uid: 24311
- components:
- - type: Transform
- pos: 80.5,30.5
- parent: 2
- - uid: 24312
- components:
- - type: Transform
- pos: 81.5,18.5
- parent: 2
- - uid: 24313
- components:
- - type: Transform
- pos: 81.5,19.5
- parent: 2
- - uid: 24314
- components:
- - type: Transform
- pos: 81.5,24.5
- parent: 2
- - uid: 24315
- components:
- - type: Transform
- pos: 81.5,25.5
- parent: 2
- - uid: 24316
- components:
- - type: Transform
- pos: 80.5,27.5
- parent: 2
- - uid: 24317
- components:
- - type: Transform
- pos: 81.5,20.5
- parent: 2
- - uid: 24318
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-85.5
- parent: 2
- - uid: 24319
- components:
- - type: Transform
- pos: 11.5,-84.5
- parent: 2
- - uid: 24320
- components:
- - type: Transform
- pos: 6.5,-84.5
- parent: 2
- - uid: 24321
- components:
- - type: Transform
- pos: 7.5,-84.5
- parent: 2
- - uid: 24322
- components:
- - type: Transform
- pos: 12.5,-84.5
- parent: 2
- - uid: 24323
- components:
- - type: Transform
- pos: 13.5,-84.5
- parent: 2
- - uid: 24324
- components:
- - type: Transform
- pos: 13.5,-82.5
- parent: 2
- - uid: 24325
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-83.5
- parent: 2
- - uid: 24326
- components:
- - type: Transform
- pos: 12.5,-81.5
- parent: 2
- - uid: 24327
- components:
- - type: Transform
- pos: -0.5,62.5
- parent: 2
- - uid: 24328
- components:
- - type: Transform
- pos: -0.5,64.5
- parent: 2
- - uid: 24329
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,70.5
- parent: 2
- - uid: 24330
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,30.5
- parent: 2
- - uid: 24331
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,13.5
- parent: 2
- - uid: 24332
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-71.5
- parent: 2
- - uid: 24333
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-71.5
- parent: 2
- - uid: 24334
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,23.5
- parent: 2
- - uid: 24335
- components:
- - type: Transform
- pos: -69.5,37.5
- parent: 2
- - uid: 24336
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 99.5,13.5
- parent: 2
- - uid: 24337
- components:
- - type: Transform
- pos: -67.5,46.5
- parent: 2
- - uid: 24338
- components:
- - type: Transform
- pos: -70.5,-43.5
- parent: 2
- - uid: 24339
- components:
- - type: Transform
- pos: -72.5,-39.5
- parent: 2
- - uid: 24340
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,-3.5
- parent: 2
- - uid: 24341
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 99.5,12.5
- parent: 2
- - uid: 24342
- components:
- - type: Transform
- pos: -67.5,45.5
- parent: 2
- - uid: 24343
- components:
- - type: Transform
- pos: -69.5,44.5
- parent: 2
- - uid: 24344
- components:
- - type: Transform
- pos: -67.5,41.5
- parent: 2
- - uid: 24345
- components:
- - type: Transform
- pos: 75.5,14.5
- parent: 2
- - uid: 24346
- components:
- - type: Transform
- pos: 75.5,15.5
- parent: 2
- - uid: 24347
- components:
- - type: Transform
- pos: 80.5,13.5
- parent: 2
- - uid: 24348
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 84.5,-5.5
- parent: 2
- - uid: 24349
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 89.5,-5.5
- parent: 2
- - uid: 24350
- components:
- - type: Transform
- pos: 91.5,8.5
- parent: 2
- - uid: 24351
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,-5.5
- parent: 2
- - uid: 24352
- components:
- - type: Transform
- pos: -69.5,41.5
- parent: 2
- - uid: 24353
- components:
- - type: Transform
- pos: -69.5,48.5
- parent: 2
- - uid: 24354
- components:
- - type: Transform
- pos: -69.5,49.5
- parent: 2
- - uid: 24355
- components:
- - type: Transform
- pos: -69.5,50.5
- parent: 2
- - uid: 24356
- components:
- - type: Transform
- pos: -69.5,46.5
- parent: 2
- - uid: 24357
- components:
- - type: Transform
- pos: -72.5,-41.5
- parent: 2
- - uid: 24358
- components:
- - type: Transform
- pos: -67.5,42.5
- parent: 2
- - uid: 24359
- components:
- - type: Transform
- pos: -69.5,40.5
- parent: 2
- - uid: 24360
- components:
- - type: Transform
- pos: -67.5,50.5
- parent: 2
- - uid: 24361
- components:
- - type: Transform
- pos: -67.5,40.5
- parent: 2
- - uid: 24362
- components:
- - type: Transform
- pos: -67.5,44.5
- parent: 2
- - uid: 24363
- components:
- - type: Transform
- pos: -67.5,49.5
- parent: 2
- - uid: 24364
- components:
- - type: Transform
- pos: 31.5,13.5
- parent: 2
- - uid: 24365
- components:
- - type: Transform
- pos: -69.5,45.5
- parent: 2
- - uid: 24366
- components:
- - type: Transform
- pos: -67.5,48.5
- parent: 2
- - uid: 24367
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,23.5
- parent: 2
- - uid: 24368
- components:
- - type: Transform
- pos: -70.5,-45.5
- parent: 2
- - uid: 24369
- components:
- - type: Transform
- pos: -69.5,42.5
- parent: 2
- - uid: 24370
- components:
- - type: Transform
- pos: -67.5,24.5
- parent: 2
- - uid: 24371
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,34.5
- parent: 2
- - uid: 24372
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,32.5
- parent: 2
- - uid: 24373
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,30.5
- parent: 2
- - uid: 24374
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,28.5
- parent: 2
- - uid: 24375
- components:
- - type: Transform
- pos: -60.5,39.5
- parent: 2
- - uid: 24376
- components:
- - type: Transform
- pos: -64.5,39.5
- parent: 2
- - uid: 24377
- components:
- - type: Transform
- pos: -66.5,39.5
- parent: 2
- - uid: 24378
- components:
- - type: Transform
- pos: -65.5,39.5
- parent: 2
- - uid: 24379
- components:
- - type: Transform
- pos: -71.5,-42.5
- parent: 2
- - uid: 24380
- components:
- - type: Transform
- pos: -72.5,-40.5
- parent: 2
- - uid: 24381
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 78.5,-8.5
- parent: 2
- - uid: 24382
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 81.5,-8.5
- parent: 2
- - uid: 24383
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 82.5,-8.5
- parent: 2
- - uid: 24384
- components:
- - type: Transform
- pos: 93.5,-8.5
- parent: 2
- - uid: 24385
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 94.5,-8.5
- parent: 2
- - uid: 24386
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,4.5
- parent: 2
- - uid: 24387
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,3.5
- parent: 2
- - uid: 24388
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 103.5,3.5
- parent: 2
- - uid: 24389
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,3.5
- parent: 2
- - uid: 24390
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,5.5
- parent: 2
- - uid: 24391
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,6.5
- parent: 2
- - uid: 24392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,7.5
- parent: 2
- - uid: 24393
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 101.5,7.5
- parent: 2
- - uid: 24394
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 100.5,7.5
- parent: 2
- - uid: 24395
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 99.5,7.5
- parent: 2
- - uid: 24396
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,-4.5
- parent: 2
- - uid: 24397
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,2.5
- parent: 2
- - uid: 24398
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,1.5
- parent: 2
- - uid: 24399
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,0.5
- parent: 2
- - uid: 24400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,-0.5
- parent: 2
- - uid: 24401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,-1.5
- parent: 2
- - uid: 24402
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,-2.5
- parent: 2
- - uid: 24403
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,-5.5
- parent: 2
- - uid: 24404
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,-6.5
- parent: 2
- - uid: 24405
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,-7.5
- parent: 2
- - uid: 24406
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,-8.5
- parent: 2
- - uid: 24407
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 103.5,-8.5
- parent: 2
- - uid: 24408
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,-8.5
- parent: 2
- - uid: 24409
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 99.5,-7.5
- parent: 2
- - uid: 24410
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 101.5,-7.5
- parent: 2
- - uid: 24411
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 102.5,-7.5
- parent: 2
- - uid: 24412
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 96.5,-8.5
- parent: 2
- - uid: 24413
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 95.5,-8.5
- parent: 2
- - uid: 24414
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 83.5,-8.5
- parent: 2
- - uid: 24415
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-8.5
- parent: 2
- - uid: 24416
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-6.5
- parent: 2
- - uid: 24417
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 79.5,-8.5
- parent: 2
- - uid: 24418
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 80.5,-8.5
- parent: 2
- - uid: 24419
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 98.5,-8.5
- parent: 2
- - uid: 24420
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 98.5,-7.5
- parent: 2
- - uid: 24421
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 100.5,-7.5
- parent: 2
- - uid: 24422
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 97.5,-8.5
- parent: 2
- - uid: 24423
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 84.5,-9.5
- parent: 2
- - uid: 24424
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 85.5,-9.5
- parent: 2
- - uid: 24425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 86.5,-9.5
- parent: 2
- - uid: 24426
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 87.5,-9.5
- parent: 2
- - uid: 24427
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,-9.5
- parent: 2
- - uid: 24428
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 89.5,-9.5
- parent: 2
- - uid: 24429
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 90.5,-9.5
- parent: 2
- - uid: 24430
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 91.5,-9.5
- parent: 2
- - uid: 24431
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 92.5,-9.5
- parent: 2
- - uid: 24432
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,-9.5
- parent: 2
- - uid: 24433
- components:
- - type: Transform
- pos: 80.5,-14.5
- parent: 2
- - uid: 24434
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,0.5
- parent: 2
- - uid: 24435
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,2.5
- parent: 2
- - uid: 24436
- components:
- - type: Transform
- pos: -5.5,-10.5
- parent: 2
- - uid: 24437
- components:
- - type: Transform
- pos: 64.5,31.5
- parent: 2
- - uid: 24438
- components:
- - type: Transform
- pos: 65.5,31.5
- parent: 2
- - uid: 24439
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,33.5
- parent: 2
- - uid: 24440
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,33.5
- parent: 2
- - uid: 24441
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,30.5
- parent: 2
- - uid: 24442
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,28.5
- parent: 2
- - uid: 24443
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,29.5
- parent: 2
- - uid: 24444
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,33.5
- parent: 2
- - uid: 24445
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,33.5
- parent: 2
- - uid: 38288
- components:
- - type: Transform
- pos: 0.5,4.5
- parent: 38244
- - uid: 38289
- components:
- - type: Transform
- pos: 1.5,5.5
- parent: 38244
- - uid: 38290
- components:
- - type: Transform
- pos: 2.5,4.5
- parent: 38244
- - uid: 38291
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 38244
- - uid: 38292
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,2.5
- parent: 38244
- - uid: 38293
- components:
- - type: Transform
- pos: 0.5,5.5
- parent: 38244
- - uid: 38294
- components:
- - type: Transform
- pos: 2.5,3.5
- parent: 38244
- - uid: 38295
- components:
- - type: Transform
- pos: 2.5,5.5
- parent: 38244
- - uid: 38296
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,2.5
- parent: 38244
- - uid: 39176
- components:
- - type: Transform
- pos: -19.5,3.5
- parent: 38344
- - uid: 39177
- components:
- - type: Transform
- pos: 14.5,2.5
- parent: 38344
- - uid: 39178
- components:
- - type: Transform
- pos: 14.5,4.5
- parent: 38344
- - uid: 39179
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,33.5
- parent: 38344
- - uid: 39180
- components:
- - type: Transform
- pos: -14.5,-8.5
- parent: 38344
- - uid: 39181
- components:
- - type: Transform
- pos: -13.5,-8.5
- parent: 38344
- - uid: 39182
- components:
- - type: Transform
- pos: -15.5,-8.5
- parent: 38344
- - uid: 39183
- components:
- - type: Transform
- pos: -12.5,-8.5
- parent: 38344
- - uid: 39184
- components:
- - type: Transform
- pos: 2.5,2.5
- parent: 38344
- - uid: 39185
- components:
- - type: Transform
- pos: 2.5,4.5
- parent: 38344
- - uid: 39186
- components:
- - type: Transform
- pos: -19.5,7.5
- parent: 38344
- - uid: 39187
- components:
- - type: Transform
- pos: -16.5,7.5
- parent: 38344
- - uid: 39188
- components:
- - type: Transform
- pos: -22.5,3.5
- parent: 38344
- - uid: 39189
- components:
- - type: Transform
- pos: -22.5,7.5
- parent: 38344
- - uid: 39190
- components:
- - type: Transform
- pos: -16.5,3.5
- parent: 38344
- - uid: 39191
- components:
- - type: Transform
- pos: 2.5,0.5
- parent: 38344
-- proto: GrilleBroken
- entities:
- - uid: 24446
- components:
- - type: Transform
- pos: -80.5,24.5
- parent: 2
- - uid: 24447
- components:
- - type: Transform
- pos: -84.5,15.5
- parent: 2
- - uid: 24448
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -83.5,12.5
- parent: 2
- - uid: 24449
- components:
- - type: Transform
- pos: -27.5,-24.5
- parent: 2
- - uid: 24450
- components:
- - type: Transform
- pos: -38.5,-30.5
- parent: 2
- - uid: 24451
- components:
- - type: Transform
- pos: -40.5,-30.5
- parent: 2
- - uid: 24452
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-68.5
- parent: 2
- - uid: 24453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,33.5
- parent: 2
- - uid: 24454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-68.5
- parent: 2
- - uid: 24455
- components:
- - type: Transform
- pos: 1.5,46.5
- parent: 2
- - uid: 24456
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-36.5
- parent: 2
- - uid: 24457
- components:
- - type: Transform
- pos: 57.5,-56.5
- parent: 2
- - uid: 24458
- components:
- - type: Transform
- pos: -105.5,26.5
- parent: 2
- - uid: 24459
- components:
- - type: Transform
- pos: -91.5,26.5
- parent: 2
- - uid: 24460
- components:
- - type: Transform
- pos: -88.5,26.5
- parent: 2
- - uid: 24461
- components:
- - type: Transform
- pos: -87.5,26.5
- parent: 2
- - uid: 24462
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,24.5
- parent: 2
- - uid: 24463
- components:
- - type: Transform
- pos: -91.5,9.5
- parent: 2
- - uid: 24464
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,22.5
- parent: 2
- - uid: 24465
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,25.5
- parent: 2
- - uid: 24466
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,22.5
- parent: 2
- - uid: 24467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -88.5,9.5
- parent: 2
- - uid: 24468
- components:
- - type: Transform
- pos: -102.5,26.5
- parent: 2
- - uid: 24469
- components:
- - type: Transform
- pos: -96.5,26.5
- parent: 2
- - uid: 24470
- components:
- - type: Transform
- pos: -97.5,26.5
- parent: 2
- - uid: 24471
- components:
- - type: Transform
- pos: -92.5,20.5
- parent: 2
- - uid: 24472
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,9.5
- parent: 2
- - uid: 24473
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -109.5,19.5
- parent: 2
- - uid: 24474
- components:
- - type: Transform
- pos: -108.5,20.5
- parent: 2
- - uid: 24475
- components:
- - type: Transform
- pos: -101.5,20.5
- parent: 2
- - uid: 24476
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -98.5,20.5
- parent: 2
- - uid: 24477
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,20.5
- parent: 2
- - uid: 24478
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,19.5
- parent: 2
- - uid: 24479
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,13.5
- parent: 2
- - uid: 24480
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -128.5,41.5
- parent: 2
- - uid: 24481
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,44.5
- parent: 2
- - uid: 24482
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,46.5
- parent: 2
- - uid: 24483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -126.5,24.5
- parent: 2
- - uid: 24484
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,18.5
- parent: 2
- - uid: 24485
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -111.5,14.5
- parent: 2
- - uid: 24486
- components:
- - type: Transform
- pos: -112.5,14.5
- parent: 2
- - uid: 24487
- components:
- - type: Transform
- pos: -115.5,14.5
- parent: 2
- - uid: 24488
- components:
- - type: Transform
- pos: -119.5,14.5
- parent: 2
- - uid: 24489
- components:
- - type: Transform
- pos: -123.5,14.5
- parent: 2
- - uid: 24490
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -128.5,47.5
- parent: 2
- - uid: 24491
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -126.5,49.5
- parent: 2
- - uid: 24492
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-60.5
- parent: 2
- - uid: 24493
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-55.5
- parent: 2
- - uid: 24494
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-82.5
- parent: 2
- - uid: 24495
- components:
- - type: Transform
- pos: 12.5,-80.5
- parent: 2
- - uid: 24496
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-80.5
- parent: 2
- - uid: 24497
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-82.5
- parent: 2
- - uid: 24498
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -78.5,26.5
- parent: 2
- - uid: 24499
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,-7.5
- parent: 2
- - uid: 39192
- components:
- - type: Transform
- pos: -18.5,33.5
- parent: 38344
- - uid: 39193
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,33.5
- parent: 38344
- - uid: 39194
- components:
- - type: Transform
- pos: 8.5,19.5
- parent: 38344
- - uid: 39195
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,19.5
- parent: 38344
- - uid: 39196
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,33.5
- parent: 38344
-- proto: GrilleDiagonal
- entities:
- - uid: 24500
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 75.5,-6.5
- parent: 2
- - uid: 24501
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 99.5,8.5
- parent: 2
-- proto: GunSafe
- entities:
- - uid: 14387
->>>>>>> master
- components:
- - type: MetaData
- name: сейф аркады
- - type: Transform
-<<<<<<< HEAD
- pos: -103.5,-6.5
- parent: 2
- - uid: 25180
- components:
- - type: Transform
- pos: 27.5,85.5
- parent: 2
- - uid: 25181
- components:
- - type: Transform
- pos: -79.5,-43.5
- parent: 2
- - uid: 25182
- components:
- - type: Transform
- pos: 83.5,-43.5
- parent: 2
- - uid: 25183
- components:
- - type: Transform
- pos: 47.5,-74.5
- parent: 2
- - uid: 25184
- components:
- - type: Transform
- pos: 47.5,-75.5
- parent: 2
- - uid: 25185
- components:
- - type: Transform
- pos: -51.5,56.5
- parent: 2
- - uid: 25186
- components:
- - type: Transform
- pos: -59.5,-78.5
- parent: 2
- - uid: 25187
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-19.5
- parent: 2
- - uid: 25188
- components:
- - type: Transform
- pos: -83.5,76.5
- parent: 2
- - uid: 25189
- components:
- - type: Transform
- pos: -83.5,67.5
- parent: 2
- - uid: 25190
- components:
- - type: Transform
- pos: 21.5,102.5
- parent: 2
- - uid: 25191
- components:
- - type: Transform
- pos: 50.5,-61.5
- parent: 2
- - uid: 25192
- components:
- - type: Transform
- pos: 78.5,-41.5
- parent: 2
- - uid: 25193
- components:
- - type: Transform
- pos: 16.5,88.5
- parent: 2
- - uid: 25194
- components:
- - type: Transform
- pos: -32.5,85.5
- parent: 2
- - uid: 25195
- components:
- - type: Transform
- pos: -27.5,86.5
- parent: 2
- - uid: 25196
- components:
- - type: Transform
- pos: -27.5,85.5
- parent: 2
- - uid: 25197
- components:
- - type: Transform
- pos: -44.5,-76.5
- parent: 2
- - uid: 25198
- components:
- - type: Transform
- pos: 14.5,89.5
- parent: 2
- - uid: 25199
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,39.5
- parent: 2
- - uid: 25200
- components:
- - type: Transform
- pos: 77.5,-12.5
- parent: 2
- - uid: 25201
- components:
- - type: Transform
- pos: 21.5,-8.5
- parent: 2
- - uid: 25202
- components:
- - type: Transform
- pos: 33.5,21.5
- parent: 2
- - uid: 25203
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-21.5
- parent: 2
- - uid: 25204
- components:
- - type: Transform
- pos: -59.5,-53.5
- parent: 2
- - uid: 25205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-19.5
- parent: 2
- - uid: 25206
- components:
- - type: Transform
- pos: 45.5,13.5
- parent: 2
- - uid: 25207
- components:
- - type: Transform
- pos: 3.5,85.5
- parent: 2
- - uid: 25208
- components:
- - type: Transform
- pos: 39.5,10.5
- parent: 2
- - uid: 25209
- components:
- - type: Transform
- pos: 4.5,88.5
- parent: 2
- - uid: 25210
- components:
- - type: Transform
- pos: -60.5,58.5
- parent: 2
- - uid: 25211
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,8.5
- parent: 2
- - uid: 25212
- components:
- - type: Transform
- pos: -31.5,19.5
- parent: 2
- - uid: 25213
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-65.5
- parent: 2
- - uid: 25214
- components:
- - type: Transform
- pos: -51.5,34.5
- parent: 2
- - uid: 25215
- components:
- - type: Transform
- pos: -15.5,70.5
- parent: 2
- - uid: 25216
- components:
- - type: Transform
- pos: -61.5,-3.5
- parent: 2
- - uid: 25217
- components:
- - type: Transform
- pos: -105.5,-6.5
- parent: 2
- - uid: 25218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-19.5
- parent: 2
- - uid: 25219
- components:
- - type: Transform
- pos: -77.5,36.5
- parent: 2
- - uid: 25220
- components:
- - type: Transform
- pos: 19.5,94.5
- parent: 2
- - uid: 25221
- components:
- - type: Transform
- pos: 57.5,-50.5
- parent: 2
- - uid: 25222
- components:
- - type: Transform
- pos: 57.5,-34.5
- parent: 2
- - uid: 25223
- components:
- - type: Transform
- pos: -1.5,30.5
- parent: 2
- - uid: 25224
- components:
- - type: Transform
- pos: -27.5,94.5
- parent: 2
- - uid: 25225
- components:
- - type: Transform
- pos: 12.5,90.5
- parent: 2
- - uid: 25226
- components:
- - type: Transform
- pos: -20.5,2.5
- parent: 2
- - uid: 25227
- components:
- - type: Transform
- pos: 88.5,-41.5
- parent: 2
- - uid: 25228
- components:
- - type: Transform
- pos: 48.5,-59.5
- parent: 2
- - uid: 25229
- components:
- - type: Transform
- pos: -79.5,-38.5
- parent: 2
- - uid: 25230
- components:
- - type: Transform
- pos: 15.5,-44.5
- parent: 2
- - uid: 25231
- components:
- - type: Transform
- pos: -45.5,-75.5
- parent: 2
- - uid: 25232
- components:
- - type: Transform
- pos: 83.5,-42.5
- parent: 2
- - uid: 25233
- components:
- - type: Transform
- pos: 89.5,-44.5
- parent: 2
- - uid: 25234
- components:
- - type: Transform
- pos: 11.5,-36.5
- parent: 2
- - uid: 25235
- components:
- - type: Transform
- pos: 56.5,-55.5
- parent: 2
- - uid: 25236
- components:
- - type: Transform
- pos: 37.5,97.5
- parent: 2
- - uid: 25237
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,4.5
- parent: 2
- - uid: 25238
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,6.5
- parent: 2
- - uid: 25239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-19.5
- parent: 2
- - uid: 25240
- components:
- - type: Transform
- pos: -75.5,49.5
- parent: 2
- - uid: 25241
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,6.5
- parent: 2
- - uid: 25242
-=======
- pos: 21.5,63.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:
- - 14389
- - 14391
- - 14390
- - 14388
- - 14392
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: GunSafeDisabler
- entities:
- - uid: 24502
- components:
- - type: Transform
- pos: 57.5,6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: Gyroscope
- entities:
- - uid: 38297
- components:
- - type: Transform
- pos: 1.5,-0.5
- parent: 38244
- - uid: 39197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,20.5
- parent: 38344
-- proto: Handcuffs
- entities:
- - uid: 24503
- components:
- - type: Transform
- pos: 72.458984,23.247822
- parent: 2
- - uid: 24504
- components:
- - type: Transform
- pos: -2.4961772,18.561342
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24505
- components:
- - type: Transform
- pos: 27.5,67.5
- parent: 2
- - uid: 24506
- components:
- - type: Transform
- pos: 2.544464,65.52478
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24507
- components:
- - type: Transform
- pos: -22.414896,0.570341
- parent: 2
- - uid: 24508
- components:
- - type: Transform
- pos: -2.5,14.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24509
- components:
- - type: Transform
- pos: 6.5382733,-63.500446
- parent: 2
- - uid: 24510
- components:
- - type: Transform
- pos: -18.563082,-27.472807
- parent: 2
- - uid: 24511
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 80.56891,10.451007
- parent: 2
- - uid: 39198
- components:
- - type: Transform
- pos: -2.5,11.5
- parent: 38344
- - uid: 39199
- components:
- - type: Transform
- pos: 3.249548,34.703247
- parent: 38344
- - uid: 39200
- components:
- - type: Transform
- pos: 1.717948,-1.2679749
- parent: 38344
- - uid: 39201
- components:
- - type: Transform
- pos: 1.452323,-1.4085999
- parent: 38344
-- proto: HandheldGPSBasic
- entities:
- - uid: 24512
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -15.423151,-12.526148
- parent: 2
- - uid: 24513
- components:
- - type: Transform
- pos: -61.501175,11.534443
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24514
- components:
- - type: Transform
- pos: 24.512302,38.588974
- parent: 2
- - uid: 24515
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.926834,38.688385
- parent: 2
- - uid: 24516
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -15.610651,-12.526149
- parent: 2
- - uid: 39202
- components:
- - type: Transform
- pos: 1.5406876,6.7720337
- parent: 38344
- - uid: 39203
- components:
- - type: Transform
- pos: 1.6969376,6.5220337
- parent: 38344
- - uid: 39204
- components:
- - type: Transform
- pos: 1.3531876,6.5376587
- parent: 38344
- - uid: 39205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.819557,0.7199707
- parent: 38344
-- proto: HandheldHealthAnalyzer
- entities:
- - uid: 24517
- components:
- - type: Transform
- pos: -9.180932,-52.317867
- parent: 2
- - uid: 24518
- components:
- - type: Transform
- pos: 70.53282,12.308504
- parent: 2
- - uid: 24519
- components:
- - type: Transform
- pos: 6.7585454,-48.411568
- parent: 2
- - uid: 24520
- components:
- - type: Transform
- pos: 4.213424,-13.463173
- parent: 2
- - uid: 24521
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.684036,-4.367806
- parent: 2
-- proto: HandLabeler
- entities:
- - uid: 1474
- components:
- - type: Transform
- parent: 1473
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 24522
- components:
- - type: Transform
- pos: -48.36664,31.64788
- parent: 2
- - uid: 24523
- components:
- - type: Transform
- pos: -65.41571,4.534443
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24524
- components:
- - type: Transform
- pos: 48.57693,-4.3954663
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24525
- components:
- - type: Transform
- pos: 42.573086,-70.16831
- parent: 2
- - uid: 24526
- components:
- - type: Transform
- pos: -24.130608,-4.4762073
- parent: 2
- - uid: 24527
- components:
- - type: Transform
- pos: -30.482952,-30.630163
- parent: 2
- - uid: 24528
- components:
- - type: Transform
- pos: -4.4907737,-58.52011
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24529
- components:
- - type: Transform
- pos: -57.46442,-17.430832
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24530
- components:
- - type: Transform
- pos: -25.375605,12.496101
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24531
- components:
- - type: Transform
- pos: -24.473108,-68.4108
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24532
- components:
- - type: Transform
- pos: -22.592567,23.59421
- parent: 2
- - uid: 24533
- components:
- - type: Transform
- pos: 2.5119066,-29.376064
- parent: 2
- - uid: 24534
- components:
- - type: Transform
- pos: 12.716354,-52.415775
- parent: 2
- - uid: 24535
- components:
- - type: Transform
- pos: 24.461672,8.5619135
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24536
- components:
- - type: Transform
- pos: -8.571838,-35.43139
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24537
- components:
- - type: Transform
- pos: -32.5,-35.5
- parent: 2
- - uid: 24538
- components:
- - type: Transform
- pos: -41.430576,-17.448298
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24539
- components:
- - type: Transform
- pos: 24.446495,38.695435
- parent: 2
- - uid: 24540
- components:
- - type: Transform
- pos: 0.49840114,63.529846
- parent: 2
-- proto: HappyHonk
- entities:
- - uid: 14747
- components:
- - type: Transform
- parent: 14738
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 24541
- components:
- - type: Transform
- pos: 63.362576,-15.285653
- parent: 2
-- proto: HappyHonkMime
- entities:
- - uid: 14748
- components:
- - type: Transform
- parent: 14738
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 24542
- components:
- - type: Transform
- pos: 63.777294,-15.30936
- parent: 2
-- proto: HappyHonkNukie
- entities:
- - uid: 24543
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 100.64096,-1.1417832
- parent: 2
-- proto: HappyHonkNukieSnacks
- entities:
- - uid: 24544
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -111.65001,45.454525
- parent: 2
-- proto: HarpInstrument
- entities:
- - uid: 24545
- components:
- - type: Transform
- pos: 10.5,66.5
- parent: 2
-- proto: HeatExchanger
- entities:
- - uid: 24546
- components:
- - type: Transform
- pos: -52.5,59.5
- parent: 2
- - uid: 24547
- components:
- - type: Transform
- pos: -52.5,57.5
- parent: 2
- - uid: 24548
- components:
- - type: Transform
- pos: -49.5,59.5
- parent: 2
- - uid: 24549
- components:
- - type: Transform
- pos: -49.5,57.5
- parent: 2
-- proto: HelicopterInstrument
- entities:
- - uid: 24550
- components:
- - type: Transform
- pos: 63.569263,-24.38388
- parent: 2
-- proto: Hemostat
- entities:
- - uid: 24551
- components:
- - type: Transform
- pos: 32.606625,-46.556606
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24552
- components:
- - type: Transform
- pos: 46.5,-35.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24553
- components:
- - type: Transform
- pos: 34.450375,-52.244106
- parent: 2
- - type: Physics
- canCollide: False
-- proto: HighSecArmoryLocked
- entities:
- - uid: 24554
->>>>>>> master
- components:
- - type: MetaData
- name: запасный выход оружейной
- - type: Transform
-<<<<<<< HEAD
- pos: 34.5,3.5
- parent: 2
- - uid: 25243
-=======
- pos: 71.5,6.5
- parent: 2
- - uid: 24555
->>>>>>> master
- components:
- - type: MetaData
- name: хранилище скафандров сб
- - type: Transform
-<<<<<<< HEAD
- pos: 57.5,-33.5
- parent: 2
- - uid: 25244
- components:
- - type: Transform
- pos: -57.5,-53.5
- parent: 2
- - uid: 25245
- components:
- - type: Transform
- pos: 50.5,-59.5
- parent: 2
- - uid: 25246
- components:
- - type: Transform
- pos: 52.5,-58.5
- parent: 2
- - uid: 25247
- components:
- - type: Transform
- pos: 45.5,-77.5
- parent: 2
- - uid: 25248
- components:
- - type: Transform
- pos: -28.5,-82.5
- parent: 2
- - uid: 25249
- components:
- - type: Transform
- pos: -55.5,68.5
- parent: 2
- - uid: 25250
- components:
- - type: Transform
- pos: -48.5,-78.5
- parent: 2
- - uid: 25251
- components:
- - type: Transform
- pos: -47.5,-78.5
- parent: 2
- - uid: 25252
- components:
- - type: Transform
- pos: -43.5,-69.5
- parent: 2
- - uid: 25253
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-15.5
- parent: 2
- - uid: 25254
- components:
- - type: Transform
- pos: -79.5,66.5
- parent: 2
- - uid: 25255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-19.5
- parent: 2
- - uid: 25256
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-21.5
- parent: 2
- - uid: 25257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,-21.5
- parent: 2
- - uid: 25258
- components:
- - type: Transform
- pos: -78.5,20.5
- parent: 2
- - uid: 25259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,6.5
- parent: 2
- - uid: 25260
- components:
- - type: Transform
- pos: 36.5,88.5
- parent: 2
- - uid: 25261
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-4.5
- parent: 2
- - uid: 25262
- components:
- - type: Transform
- pos: 56.5,-41.5
- parent: 2
- - uid: 25263
- components:
- - type: Transform
- pos: 76.5,-20.5
- parent: 2
- - uid: 25264
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-3.5
- parent: 2
- - uid: 25265
- components:
- - type: Transform
- pos: 70.5,-27.5
- parent: 2
- - uid: 25266
- components:
- - type: Transform
- pos: 20.5,19.5
- parent: 2
- - uid: 25267
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-2.5
- parent: 2
- - uid: 25268
- components:
- - type: Transform
- pos: -33.5,64.5
- parent: 2
- - uid: 25269
- components:
- - type: Transform
- pos: -45.5,-73.5
- parent: 2
- - uid: 25270
- components:
- - type: Transform
- pos: -34.5,20.5
- parent: 2
- - uid: 25271
- components:
- - type: Transform
- pos: -42.5,54.5
- parent: 2
- - uid: 25272
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-70.5
- parent: 2
- - uid: 25273
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,83.5
- parent: 2
- - uid: 25274
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-68.5
- parent: 2
- - uid: 25275
- components:
- - type: Transform
- pos: -69.5,49.5
- parent: 2
- - uid: 25276
- components:
- - type: Transform
- pos: -18.5,70.5
- parent: 2
- - uid: 25277
- components:
- - type: Transform
- pos: 3.5,79.5
- parent: 2
- - uid: 25278
- components:
- - type: Transform
- pos: 13.5,82.5
- parent: 2
- - uid: 25279
- components:
- - type: Transform
- pos: -37.5,-49.5
- parent: 2
- - uid: 25280
- components:
- - type: Transform
- pos: -64.5,38.5
- parent: 2
- - uid: 25281
- components:
- - type: Transform
- pos: -5.5,-9.5
- parent: 2
- - uid: 25282
- components:
- - type: Transform
- pos: 44.5,-64.5
- parent: 2
- - uid: 25283
- components:
- - type: Transform
- pos: 39.5,-58.5
- parent: 2
- - uid: 25284
- components:
- - type: Transform
- pos: -50.5,-13.5
- parent: 2
- - uid: 25285
- components:
- - type: Transform
- pos: -59.5,15.5
- parent: 2
- - uid: 25286
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,3.5
- parent: 2
- - uid: 25287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-18.5
- parent: 2
- - uid: 25288
- components:
- - type: Transform
- pos: -69.5,9.5
- parent: 2
- - uid: 25289
- components:
- - type: Transform
- pos: 23.5,-30.5
- parent: 2
- - uid: 25290
- components:
- - type: Transform
- pos: 19.5,-44.5
- parent: 2
- - uid: 25291
- components:
- - type: Transform
- pos: -31.5,94.5
- parent: 2
- - uid: 25292
- components:
- - type: Transform
- pos: -50.5,-12.5
- parent: 2
- - uid: 25293
- components:
- - type: Transform
- pos: -45.5,28.5
- parent: 2
- - uid: 25294
- components:
- - type: Transform
- pos: -80.5,-31.5
- parent: 2
- - uid: 25295
- components:
- - type: Transform
- pos: -36.5,20.5
- parent: 2
- - uid: 25296
- components:
- - type: Transform
- pos: 18.5,30.5
- parent: 2
- - uid: 25297
- components:
- - type: Transform
- pos: -48.5,56.5
- parent: 2
- - uid: 25298
- components:
- - type: Transform
- pos: -79.5,-39.5
- parent: 2
- - uid: 25299
- components:
- - type: Transform
- pos: -42.5,-82.5
- parent: 2
- - uid: 25300
- components:
- - type: Transform
- pos: -14.5,82.5
- parent: 2
- - uid: 25301
- components:
- - type: Transform
- pos: -26.5,-79.5
- parent: 2
- - uid: 25302
- components:
- - type: Transform
- pos: -15.5,-37.5
- parent: 2
- - uid: 25303
- components:
- - type: Transform
- pos: -17.5,-36.5
- parent: 2
- - uid: 25304
- components:
- - type: Transform
- pos: -48.5,43.5
- parent: 2
- - uid: 25305
- components:
- - type: Transform
- pos: -79.5,9.5
- parent: 2
- - uid: 25306
- components:
- - type: Transform
- pos: -60.5,47.5
- parent: 2
- - uid: 25307
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,4.5
- parent: 2
- - uid: 25308
- components:
- - type: Transform
- pos: 31.5,-59.5
- parent: 2
- - uid: 25309
- components:
- - type: Transform
- pos: -10.5,21.5
- parent: 2
- - uid: 25310
- components:
- - type: Transform
- pos: 15.5,13.5
- parent: 2
- - uid: 25311
- components:
- - type: Transform
- pos: 26.5,103.5
- parent: 2
- - uid: 25312
- components:
- - type: Transform
- pos: 38.5,-77.5
- parent: 2
- - uid: 25313
- components:
- - type: Transform
- pos: 89.5,-45.5
- parent: 2
- - uid: 25314
- components:
- - type: Transform
- pos: 37.5,-77.5
- parent: 2
- - uid: 25315
- components:
- - type: Transform
- pos: 35.5,102.5
- parent: 2
- - uid: 25316
- components:
- - type: Transform
- pos: 31.5,102.5
- parent: 2
- - uid: 25317
- components:
- - type: Transform
- pos: 20.5,101.5
- parent: 2
- - uid: 25318
- components:
- - type: Transform
- pos: 32.5,-75.5
- parent: 2
- - uid: 25319
- components:
- - type: Transform
- pos: 41.5,24.5
- parent: 2
- - uid: 25320
- components:
- - type: Transform
- pos: 30.5,105.5
- parent: 2
- - uid: 25321
- components:
- - type: Transform
- pos: 23.5,7.5
- parent: 2
- - uid: 25322
- components:
- - type: Transform
- pos: 64.5,-20.5
- parent: 2
- - uid: 25323
- components:
- - type: Transform
- pos: 41.5,16.5
- parent: 2
- - uid: 25324
- components:
- - type: Transform
- pos: -44.5,-92.5
- parent: 2
- - uid: 25325
- components:
- - type: Transform
- pos: -58.5,16.5
- parent: 2
- - uid: 25326
- components:
- - type: Transform
- pos: -78.5,-30.5
- parent: 2
- - uid: 25327
- components:
- - type: Transform
- pos: -48.5,-25.5
- parent: 2
- - uid: 25328
- components:
- - type: Transform
- pos: -61.5,-12.5
- parent: 2
- - uid: 25329
- components:
- - type: Transform
- pos: 48.5,14.5
- parent: 2
- - uid: 25330
- components:
- - type: Transform
- pos: 4.5,78.5
- parent: 2
- - uid: 25331
- components:
- - type: Transform
- pos: -59.5,-51.5
- parent: 2
- - uid: 25332
- components:
- - type: Transform
- pos: -76.5,60.5
- parent: 2
- - uid: 25333
- components:
- - type: Transform
- pos: 16.5,86.5
- parent: 2
- - uid: 25334
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-44.5
- parent: 2
- - uid: 25335
- components:
- - type: Transform
- pos: -43.5,34.5
- parent: 2
- - uid: 25336
- components:
- - type: Transform
- pos: -77.5,48.5
- parent: 2
- - uid: 25337
- components:
- - type: Transform
- pos: -66.5,71.5
- parent: 2
- - uid: 25338
- components:
- - type: Transform
- pos: -53.5,-93.5
- parent: 2
- - uid: 25339
- components:
- - type: Transform
- pos: -75.5,32.5
- parent: 2
- - uid: 25340
- components:
- - type: Transform
- pos: -81.5,-33.5
- parent: 2
- - uid: 25341
- components:
- - type: Transform
- pos: 40.5,-79.5
- parent: 2
- - uid: 25342
- components:
- - type: Transform
- pos: 42.5,-77.5
- parent: 2
- - uid: 25343
- components:
- - type: Transform
- pos: 34.5,57.5
- parent: 2
- - uid: 25344
- components:
- - type: Transform
- pos: 86.5,-47.5
- parent: 2
- - uid: 25345
- components:
- - type: Transform
- pos: 45.5,-72.5
- parent: 2
- - uid: 25346
- components:
- - type: Transform
- pos: 78.5,-53.5
- parent: 2
- - uid: 25347
- components:
- - type: Transform
- pos: 22.5,85.5
- parent: 2
- - uid: 25348
- components:
- - type: Transform
- pos: 45.5,-48.5
- parent: 2
- - uid: 25349
- components:
- - type: Transform
- pos: 78.5,-27.5
- parent: 2
- - uid: 25350
- components:
- - type: Transform
- pos: 14.5,92.5
- parent: 2
- - uid: 25351
- components:
- - type: Transform
- pos: 40.5,24.5
- parent: 2
- - uid: 25352
- components:
- - type: Transform
- pos: 12.5,93.5
- parent: 2
- - uid: 25353
- components:
- - type: Transform
- pos: 80.5,-26.5
- parent: 2
- - uid: 25354
- components:
- - type: Transform
- pos: 48.5,-63.5
- parent: 2
- - uid: 25355
- components:
- - type: Transform
- pos: 19.5,97.5
- parent: 2
- - uid: 25356
- components:
- - type: Transform
- pos: 37.5,19.5
- parent: 2
- - uid: 25357
- components:
- - type: Transform
- pos: 56.5,-33.5
- parent: 2
- - uid: 25358
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,83.5
- parent: 2
- - uid: 25359
- components:
- - type: Transform
- pos: 45.5,-70.5
- parent: 2
- - uid: 25360
- components:
- - type: Transform
- pos: 32.5,64.5
- parent: 2
- - uid: 25361
- components:
- - type: Transform
- pos: 29.5,105.5
- parent: 2
- - uid: 25362
- components:
- - type: Transform
- pos: 44.5,19.5
- parent: 2
- - uid: 25363
- components:
- - type: Transform
- pos: 82.5,-41.5
- parent: 2
- - uid: 25364
- components:
- - type: Transform
- pos: 78.5,-19.5
- parent: 2
- - uid: 25365
- components:
- - type: Transform
- pos: 22.5,61.5
- parent: 2
- - uid: 25366
- components:
- - type: Transform
- pos: 30.5,55.5
- parent: 2
- - uid: 25367
- components:
- - type: Transform
- pos: 29.5,55.5
- parent: 2
- - uid: 25368
- components:
- - type: Transform
- pos: 46.5,-48.5
- parent: 2
- - uid: 25369
- components:
- - type: Transform
- pos: 16.5,91.5
- parent: 2
- - uid: 25370
- components:
- - type: Transform
- pos: 80.5,-25.5
- parent: 2
- - uid: 25371
- components:
- - type: Transform
- pos: 54.5,10.5
- parent: 2
- - uid: 25372
- components:
- - type: Transform
- pos: 30.5,102.5
- parent: 2
- - uid: 25373
-=======
- pos: 62.5,10.5
- parent: 2
- - uid: 24556
- components:
- - type: Transform
- pos: 56.5,5.5
- parent: 2
- - uid: 24557
- components:
- - type: Transform
- pos: 56.5,4.5
- parent: 2
-- proto: HighSecCommandLocked
- entities:
- - uid: 24558
- components:
- - type: Transform
- pos: 19.5,18.5
- parent: 2
- - uid: 24559
- components:
- - type: Transform
- pos: 21.5,18.5
- parent: 2
- - uid: 24560
- components:
- - type: Transform
- pos: -119.5,44.5
- parent: 2
- - uid: 24561
- components:
- - type: Transform
- pos: -117.5,44.5
- parent: 2
- - uid: 24562
- components:
- - type: Transform
- pos: -117.5,27.5
- parent: 2
- - uid: 24563
- components:
- - type: Transform
- pos: -116.5,23.5
- parent: 2
- - uid: 24564
- components:
- - type: Transform
- pos: -119.5,27.5
- parent: 2
-- proto: HolofanProjector
- entities:
- - uid: 24565
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.422256,23.654009
- parent: 2
-- proto: HospitalCurtains
- entities:
- - uid: 24566
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-38.5
- parent: 2
- - uid: 24567
- components:
- - type: Transform
- pos: 34.5,-40.5
- parent: 2
- - uid: 24568
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-37.5
- parent: 2
- - uid: 24569
- components:
- - type: Transform
- pos: 14.5,5.5
- parent: 2
- - uid: 24570
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-78.5
- parent: 2
- - uid: 24571
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-38.5
- parent: 2
- - uid: 24572
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-41.5
- parent: 2
- - uid: 24573
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-37.5
- parent: 2
- - uid: 24574
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-37.5
- parent: 2
- - uid: 24575
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-39.5
- parent: 2
- - uid: 24576
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-39.5
- parent: 2
- - uid: 24577
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-39.5
- parent: 2
- - uid: 24578
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-39.5
- parent: 2
- - uid: 24579
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-39.5
- parent: 2
- - uid: 24580
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-42.5
- parent: 2
- - uid: 24581
- components:
- - type: Transform
- pos: 38.5,-72.5
- parent: 2
- - uid: 24582
- components:
- - type: Transform
- pos: 42.5,-72.5
- parent: 2
-- proto: HospitalCurtainsOpen
- entities:
- - uid: 24583
- components:
- - type: Transform
- pos: 8.5,-37.5
- parent: 2
- - uid: 24584
- components:
- - type: Transform
- pos: 10.5,-37.5
- parent: 2
- - uid: 39206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,27.5
- parent: 38344
-- proto: hydroponicsSoil
- entities:
- - uid: 24585
- components:
- - type: Transform
- pos: -38.5,35.5
- parent: 2
- - uid: 24586
- components:
- - type: Transform
- pos: -38.5,32.5
- parent: 2
- - uid: 24587
- components:
- - type: Transform
- pos: -39.5,31.5
- parent: 2
- - uid: 24588
- components:
- - type: Transform
- pos: -37.5,34.5
- parent: 2
- - uid: 24589
- components:
- - type: Transform
- pos: -40.5,33.5
- parent: 2
-- proto: HydroponicsToolClippers
- entities:
- - uid: 24590
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 95.462135,6.554744
- parent: 2
- - uid: 24591
- components:
- - type: Transform
- pos: -34.28948,51.89193
- parent: 2
- - uid: 39207
- components:
- - type: Transform
- pos: -19.45492,-1.6743469
- parent: 38344
-- proto: HydroponicsToolMiniHoe
- entities:
- - uid: 24592
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 95.50901,6.5391183
- parent: 2
- - uid: 24593
- components:
- - type: Transform
- pos: -29.390923,49.30703
- parent: 2
- - uid: 24594
- components:
- - type: Transform
- pos: -37.601337,34.28246
- parent: 2
-- proto: HydroponicsToolScythe
- entities:
- - uid: 24595
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.696175,52.585407
- parent: 2
-- proto: HydroponicsToolSpade
- entities:
- - uid: 24596
- components:
- - type: Transform
- pos: -40.182777,33.220512
- parent: 2
- - uid: 24597
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.33061,52.655056
- parent: 2
- - uid: 39208
- components:
- - type: Transform
- pos: -21.501795,-1.5947876
- parent: 38344
-- proto: hydroponicsTray
- entities:
- - uid: 24598
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,47.5
- parent: 2
- - uid: 24599
- components:
- - type: Transform
- pos: -31.5,51.5
- parent: 2
- - uid: 24600
- components:
- - type: Transform
- pos: -31.5,52.5
- parent: 2
- - uid: 24601
- components:
- - type: Transform
- pos: -29.5,53.5
- parent: 2
- - uid: 24602
- components:
- - type: Transform
- pos: -31.5,47.5
- parent: 2
- - uid: 24603
- components:
- - type: Transform
- pos: -29.5,51.5
- parent: 2
- - uid: 24604
- components:
- - type: Transform
- pos: -31.5,49.5
- parent: 2
- - uid: 24605
- components:
- - type: Transform
- pos: -27.5,50.5
- parent: 2
- - uid: 24606
- components:
- - type: Transform
- pos: -29.5,50.5
- parent: 2
- - uid: 24607
- components:
- - type: Transform
- pos: -27.5,47.5
- parent: 2
- - uid: 24608
- components:
- - type: Transform
- pos: -29.5,48.5
- parent: 2
- - uid: 24609
- components:
- - type: Transform
- pos: -29.5,49.5
- parent: 2
- - uid: 24610
- components:
- - type: Transform
- pos: -31.5,53.5
- parent: 2
- - uid: 24611
- components:
- - type: Transform
- pos: -31.5,50.5
- parent: 2
- - uid: 24612
- components:
- - type: Transform
- pos: -29.5,52.5
- parent: 2
- - uid: 24613
- components:
- - type: Transform
- pos: -31.5,48.5
- parent: 2
- - uid: 24614
- components:
- - type: Transform
- pos: -27.5,48.5
- parent: 2
- - uid: 24615
- components:
- - type: Transform
- pos: -27.5,49.5
- parent: 2
- - uid: 24616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 97.5,7.5
- parent: 2
- - uid: 24617
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 95.5,7.5
- parent: 2
- - uid: 24618
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 96.5,7.5
- parent: 2
- - uid: 39209
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-1.5
- parent: 38344
- - uid: 39210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-1.5
- parent: 38344
- - uid: 39211
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-1.5
- parent: 38344
-- proto: Hypopen
- entities:
- - uid: 24619
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: -27.322432,0.70060754
- parent: 2
-- proto: IDComputerCircuitboard
- entities:
- - uid: 24620
- components:
- - type: Transform
- pos: -36.5,19.5
- parent: 2
-- proto: InflatableDoor
- entities:
- - uid: 24621
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-71.5
- parent: 2
- - uid: 24622
- components:
- - type: Transform
- pos: 33.5,-60.5
- parent: 2
- - uid: 24623
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-66.5
- parent: 2
- - uid: 39212
- components:
- - type: Transform
- pos: -15.5,35.5
- parent: 38344
-- proto: InflatableWall
- entities:
- - uid: 24624
- components:
- - type: Transform
- pos: 30.5,-69.5
- parent: 2
- - uid: 24625
- components:
- - type: Transform
- pos: 38.5,-62.5
- parent: 2
- - uid: 24626
- components:
- - type: Transform
- pos: 37.5,-61.5
- parent: 2
- - uid: 24627
- components:
- - type: Transform
- pos: -40.5,-36.5
- parent: 2
- - uid: 24628
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-60.5
- parent: 2
- - uid: 24629
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-69.5
- parent: 2
- - uid: 24630
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-66.5
- parent: 2
- - uid: 24631
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,59.5
- parent: 2
- - uid: 24632
- components:
- - type: Transform
- pos: 31.5,-68.5
- parent: 2
- - uid: 24633
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,-40.5
- parent: 2
- - uid: 24634
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-66.5
- parent: 2
- - uid: 24635
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-66.5
- parent: 2
- - uid: 39213
- components:
- - type: Transform
- pos: -15.5,34.5
- parent: 38344
-- proto: IngotGold
- entities:
- - uid: 24636
- components:
- - type: Transform
- pos: 26.5,20.5
- parent: 2
- - uid: 39214
- components:
- - type: Transform
- pos: -9.55835,1.5697021
- parent: 38344
-- proto: IngotGold1
- entities:
- - uid: 39215
- components:
- - type: Transform
- pos: -9.62085,0.53845215
- parent: 38344
- - uid: 39216
- components:
- - type: Transform
- pos: -9.417725,0.99157715
- parent: 38344
-- proto: IngotSilver
- entities:
- - uid: 24637
- components:
- - type: Transform
- pos: 22.576387,16.722483
- parent: 2
- - uid: 39217
- components:
- - type: Transform
- pos: -8.5896,4.710327
- parent: 38344
-- proto: IngotSilver1
- entities:
- - uid: 39218
- components:
- - type: Transform
- pos: -9.6521,4.741577
- parent: 38344
- - uid: 39219
- components:
- - type: Transform
- pos: -9.4021,4.475952
- parent: 38344
-- proto: IntercomAll
- entities:
- - uid: 24638
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,11.5
- parent: 2
- - uid: 24639
- components:
- - type: Transform
- pos: -6.5,17.5
- parent: 2
-- proto: IntercomCommand
- entities:
- - uid: 24640
- components:
- - type: Transform
- pos: 5.5,17.5
- parent: 2
-- proto: IntercomEngineering
- entities:
- - uid: 24641
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,16.5
- parent: 2
- - uid: 24642
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,31.5
- parent: 2
- - uid: 24643
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-4.5
- parent: 2
-- proto: IntercomMedical
- entities:
- - uid: 24644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-39.5
- parent: 2
- - uid: 24645
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-65.5
- parent: 2
- - uid: 24646
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-42.5
- parent: 2
- - uid: 24647
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-26.5
- parent: 2
- - uid: 24648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-37.5
- parent: 2
-- proto: IntercomScience
- entities:
- - uid: 24649
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-28.5
- parent: 2
- - uid: 24650
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-41.5
- parent: 2
-- proto: IntercomSecurity
- entities:
- - uid: 24651
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,5.5
- parent: 2
- - uid: 24652
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,7.5
- parent: 2
- - uid: 24653
- components:
- - type: Transform
- pos: 74.5,4.5
- parent: 2
- - uid: 24654
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,25.5
- parent: 2
-- proto: IntercomService
- entities:
- - uid: 24655
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,32.5
- parent: 2
- - uid: 24656
- components:
- - type: Transform
- pos: -10.5,34.5
- parent: 2
- - uid: 24657
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,44.5
- parent: 2
-- proto: IntercomSupply
- entities:
- - uid: 24658
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,39.5
- parent: 2
- - uid: 24659
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,27.5
- parent: 2
-- proto: JanitorialTrolley
- entities:
- - uid: 24660
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,54.5
- parent: 2
- - uid: 24661
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,54.5
- parent: 2
-- proto: JanitorServiceLight
- entities:
- - uid: 24662
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,5.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 29288
- - uid: 24663
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,27.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 29289
- - uid: 24664
- components:
- - type: Transform
- pos: 8.5,-22.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 29285
- - uid: 24665
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-27.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 29293
-- proto: JetpackBlackFilled
- entities:
- - uid: 24666
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -15.548151,-13.432397
- parent: 2
-- proto: JetpackBlue
- entities:
- - uid: 24667
- components:
- - type: Transform
- pos: -45.5,-15.5
- parent: 2
-- proto: JetpackBlueFilled
- entities:
- - uid: 24668
- components:
- - type: Transform
- pos: -64.5,4.5
- parent: 2
- - uid: 24669
- components:
- - type: Transform
- pos: -52.5,32.5
- parent: 2
-- proto: JetpackMini
- entities:
- - uid: 39220
- components:
- - type: Transform
- pos: 2.5,11.5
- parent: 38344
-- proto: JetpackSecurityFilled
- entities:
- - uid: 24670
- components:
- - type: Transform
- pos: 63.5,8.5
- parent: 2
- - uid: 24671
- components:
- - type: Transform
- pos: 63.5,9.5
- parent: 2
- - uid: 24672
- components:
- - type: Transform
- pos: 63.5,8.5
- parent: 2
- - uid: 24673
- components:
- - type: Transform
- pos: 63.5,9.5
- parent: 2
-- proto: Joint
- entities:
- - uid: 24674
- components:
- - type: Transform
- pos: -57.645042,57.002453
- parent: 2
- - uid: 24675
- components:
- - type: Transform
- pos: -57.69192,56.814953
- parent: 2
-- proto: Jukebox
- entities:
- - uid: 24676
- components:
- - type: Transform
- pos: -18.5,-37.5
- parent: 2
-- proto: Katana
- entities:
- - uid: 24677
->>>>>>> master
- components:
- - type: MetaData
- desc: Standing here, I realize you were just like me trying to make history!
- name: Stun Blade
- - type: Transform
-<<<<<<< HEAD
- pos: 88.5,-47.5
- parent: 2
- - uid: 25374
- components:
- - type: Transform
- pos: 34.5,58.5
- parent: 2
- - uid: 25375
- components:
- - type: Transform
- pos: 13.5,93.5
- parent: 2
- - uid: 25376
- components:
- - type: Transform
- pos: 81.5,-47.5
- parent: 2
- - uid: 25377
- components:
- - type: Transform
- pos: 24.5,85.5
- parent: 2
- - uid: 25378
- components:
- - type: Transform
- pos: 23.5,102.5
- parent: 2
- - uid: 25379
- components:
- - type: Transform
- pos: 33.5,19.5
- parent: 2
- - uid: 25380
- components:
- - type: Transform
- pos: 21.5,7.5
- parent: 2
- - uid: 25381
- components:
- - type: Transform
- pos: 52.5,-7.5
- parent: 2
- - uid: 25382
- components:
- - type: Transform
- pos: 77.5,-53.5
- parent: 2
- - uid: 25383
- components:
- - type: Transform
- pos: 77.5,-50.5
- parent: 2
- - uid: 25384
- components:
- - type: Transform
- pos: -46.5,-92.5
- parent: 2
- - uid: 25385
- components:
- - type: Transform
- pos: 19.5,20.5
- parent: 2
- - uid: 25386
- components:
- - type: Transform
- pos: 19.5,19.5
- parent: 2
- - uid: 25387
- components:
- - type: Transform
- pos: -65.5,38.5
- parent: 2
- - uid: 25388
- components:
- - type: Transform
- pos: -76.5,59.5
- parent: 2
- - uid: 25389
- components:
- - type: Transform
- pos: 8.5,44.5
- parent: 2
- - uid: 25390
- components:
- - type: Transform
- pos: 8.5,43.5
- parent: 2
- - uid: 25391
- components:
- - type: Transform
- pos: 7.5,32.5
- parent: 2
- - uid: 25392
- components:
- - type: Transform
- pos: 12.5,44.5
- parent: 2
- - uid: 25393
- components:
- - type: Transform
- pos: 84.5,-47.5
- parent: 2
- - uid: 25394
- components:
- - type: Transform
- pos: 55.5,-33.5
- parent: 2
- - uid: 25395
- components:
- - type: Transform
- pos: 26.5,102.5
- parent: 2
- - uid: 25396
- components:
- - type: Transform
- pos: 45.5,1.5
- parent: 2
- - uid: 25397
- components:
- - type: Transform
- pos: -53.5,-94.5
- parent: 2
- - uid: 25398
- components:
- - type: Transform
- pos: -75.5,31.5
- parent: 2
- - uid: 25399
- components:
- - type: Transform
- pos: -52.5,-72.5
- parent: 2
- - uid: 25400
- components:
- - type: Transform
- pos: -28.5,-84.5
- parent: 2
- - uid: 25401
- components:
- - type: Transform
- pos: 78.5,-26.5
- parent: 2
- - uid: 25402
- components:
- - type: Transform
- pos: -69.5,-4.5
- parent: 2
- - uid: 25403
- components:
- - type: Transform
- pos: 3.5,78.5
- parent: 2
- - uid: 25404
- components:
- - type: Transform
- pos: -39.5,19.5
- parent: 2
- - uid: 25405
- components:
- - type: Transform
- pos: 6.5,-62.5
- parent: 2
- - uid: 25406
- components:
- - type: Transform
- pos: 4.5,-62.5
- parent: 2
- - uid: 25407
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,29.5
- parent: 2
- - uid: 25408
- components:
- - type: Transform
- pos: 27.5,-72.5
- parent: 2
- - uid: 25409
- components:
- - type: Transform
- pos: 44.5,22.5
- parent: 2
- - uid: 25410
- components:
- - type: Transform
- pos: 24.5,102.5
- parent: 2
- - uid: 25411
- components:
- - type: Transform
- pos: 83.5,-53.5
- parent: 2
- - uid: 25412
- components:
- - type: Transform
- pos: 82.5,-53.5
- parent: 2
- - uid: 25413
- components:
- - type: Transform
- pos: 72.5,-12.5
- parent: 2
- - uid: 25414
- components:
- - type: Transform
- pos: 14.5,93.5
- parent: 2
- - uid: 25415
- components:
- - type: Transform
- pos: 38.5,-50.5
- parent: 2
- - uid: 25416
- components:
- - type: Transform
- pos: -66.5,70.5
- parent: 2
- - uid: 25417
- components:
- - type: Transform
- pos: 82.5,-47.5
- parent: 2
- - uid: 25418
- components:
- - type: Transform
- pos: 87.5,-47.5
- parent: 2
- - uid: 25419
- components:
- - type: Transform
- pos: -50.5,67.5
- parent: 2
- - uid: 25420
- components:
- - type: Transform
- pos: 44.5,-77.5
- parent: 2
- - uid: 25421
- components:
- - type: Transform
- pos: -45.5,-60.5
- parent: 2
- - uid: 25422
- components:
- - type: Transform
- pos: -47.5,-92.5
- parent: 2
- - uid: 25423
- components:
- - type: Transform
- pos: -53.5,-78.5
- parent: 2
- - uid: 25424
- components:
- - type: Transform
- pos: -43.5,33.5
- parent: 2
- - uid: 25425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,83.5
- parent: 2
- - uid: 25426
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,92.5
- parent: 2
- - uid: 25427
- components:
- - type: Transform
- pos: -8.5,-28.5
- parent: 2
- - uid: 25428
- components:
- - type: Transform
- pos: -81.5,-34.5
- parent: 2
- - uid: 25429
- components:
- - type: Transform
- pos: -45.5,-61.5
- parent: 2
- - uid: 25430
- components:
- - type: Transform
- pos: -54.5,-78.5
- parent: 2
- - uid: 25431
- components:
- - type: Transform
- pos: -49.5,-93.5
- parent: 2
- - uid: 25432
- components:
- - type: Transform
- pos: 7.5,-73.5
- parent: 2
- - uid: 25433
- components:
- - type: Transform
- pos: 54.5,-60.5
- parent: 2
- - uid: 25434
- components:
- - type: Transform
- pos: 45.5,-76.5
- parent: 2
- - uid: 25435
- components:
- - type: Transform
- pos: 34.5,102.5
- parent: 2
- - uid: 25436
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,-21.5
- parent: 2
- - uid: 25437
- components:
- - type: Transform
- pos: -103.5,-8.5
- parent: 2
- - uid: 25438
- components:
- - type: Transform
- pos: -82.5,-27.5
- parent: 2
- - uid: 25439
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-21.5
- parent: 2
- - uid: 25440
- components:
- - type: Transform
- pos: 28.5,-72.5
- parent: 2
- - uid: 25441
- components:
- - type: Transform
- pos: -55.5,23.5
- parent: 2
- - uid: 25442
- components:
- - type: Transform
- pos: 20.5,-36.5
- parent: 2
- - uid: 25443
- components:
- - type: Transform
- pos: -6.5,-11.5
- parent: 2
- - uid: 25444
- components:
- - type: Transform
- pos: 30.5,104.5
- parent: 2
- - uid: 25445
- components:
- - type: Transform
- pos: 83.5,-46.5
- parent: 2
- - uid: 25446
- components:
- - type: Transform
- pos: 83.5,-45.5
- parent: 2
- - uid: 25447
- components:
- - type: Transform
- pos: 30.5,103.5
- parent: 2
- - uid: 25448
- components:
- - type: Transform
- pos: 30.5,-74.5
- parent: 2
- - uid: 25449
- components:
- - type: Transform
- pos: 81.5,-53.5
- parent: 2
- - uid: 25450
- components:
- - type: Transform
- pos: 54.5,-58.5
- parent: 2
- - uid: 25451
- components:
- - type: Transform
- pos: 30.5,-72.5
- parent: 2
- - uid: 25452
- components:
- - type: Transform
- pos: 77.5,-48.5
- parent: 2
- - uid: 25453
- components:
- - type: Transform
- pos: 80.5,-53.5
- parent: 2
- - uid: 25454
- components:
- - type: Transform
- pos: 20.5,102.5
- parent: 2
- - uid: 25455
- components:
- - type: Transform
- pos: 53.5,-58.5
- parent: 2
- - uid: 25456
- components:
- - type: Transform
- pos: 7.5,-69.5
- parent: 2
- - uid: 25457
- components:
- - type: Transform
- pos: -66.5,7.5
- parent: 2
- - uid: 25458
- components:
- - type: Transform
- pos: 32.5,-61.5
- parent: 2
- - uid: 25459
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-66.5
- parent: 2
- - uid: 25460
- components:
- - type: Transform
- pos: 23.5,35.5
- parent: 2
- - uid: 25461
- components:
- - type: Transform
- pos: -71.5,-4.5
- parent: 2
- - uid: 25462
- components:
- - type: Transform
- pos: -2.5,-26.5
- parent: 2
- - uid: 25463
- components:
- - type: Transform
- pos: -15.5,19.5
- parent: 2
- - uid: 25464
- components:
- - type: Transform
- pos: -42.5,-50.5
- parent: 2
- - uid: 25465
- components:
- - type: Transform
- pos: -9.5,21.5
- parent: 2
- - uid: 25466
- components:
- - type: Transform
- pos: -49.5,43.5
- parent: 2
- - uid: 25467
- components:
- - type: Transform
- pos: -58.5,-51.5
- parent: 2
- - uid: 25468
- components:
- - type: Transform
- pos: -47.5,68.5
- parent: 2
- - uid: 25469
- components:
- - type: Transform
- pos: -43.5,-78.5
- parent: 2
- - uid: 25470
- components:
- - type: Transform
- pos: -48.5,-72.5
- parent: 2
- - uid: 25471
- components:
- - type: Transform
- pos: -46.5,-75.5
- parent: 2
- - uid: 25472
- components:
- - type: Transform
- pos: -30.5,-80.5
- parent: 2
- - uid: 25473
- components:
- - type: Transform
- pos: -45.5,-70.5
- parent: 2
- - uid: 25474
- components:
- - type: Transform
- pos: -76.5,55.5
- parent: 2
- - uid: 25475
- components:
- - type: Transform
- pos: -49.5,-78.5
- parent: 2
- - uid: 25476
- components:
- - type: Transform
- pos: 81.5,-41.5
- parent: 2
- - uid: 25477
- components:
- - type: Transform
- pos: -84.5,71.5
- parent: 2
- - uid: 25478
- components:
- - type: Transform
- pos: -34.5,-84.5
- parent: 2
- - uid: 25479
- components:
- - type: Transform
- pos: -46.5,68.5
- parent: 2
- - uid: 25480
- components:
- - type: Transform
- pos: -3.5,-33.5
- parent: 2
- - uid: 25481
- components:
- - type: Transform
- pos: -20.5,13.5
- parent: 2
- - uid: 25482
- components:
- - type: Transform
- pos: 1.5,-26.5
- parent: 2
- - uid: 25483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,6.5
- parent: 2
- - uid: 25484
-=======
- pos: -55.5,-48.5
- parent: 2
-- proto: KitchenElectricGrill
- entities:
- - uid: 24678
- components:
- - type: Transform
- pos: -30.5,36.5
- parent: 2
- - type: ItemPlacer
- placedEntities:
- - 18483
- - uid: 24679
- components:
- - type: Transform
- pos: 92.5,-4.5
- parent: 2
-- proto: KitchenKnife
- entities:
- - uid: 24680
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.38237,-66.35571
- parent: 2
- - uid: 24681
- components:
- - type: Transform
- pos: 27.5,65.5
- parent: 2
- - uid: 24682
- components:
- - type: Transform
- pos: -29.729101,34.53911
- parent: 2
- - type: Physics
- canCollide: False
-- proto: KitchenMicrowave
- entities:
- - uid: 24683
- components:
- - type: Transform
- pos: 61.5,30.5
- parent: 2
- - uid: 24684
- components:
- - type: Transform
- pos: 41.5,-63.5
- parent: 2
- - uid: 24685
- components:
- - type: Transform
- pos: -25.5,-40.5
- parent: 2
- - uid: 24686
- components:
- - type: Transform
- pos: -33.5,34.5
- parent: 2
- - uid: 24687
- components:
- - type: Transform
- pos: 20.5,1.5
- parent: 2
- - uid: 24688
- components:
- - type: Transform
- pos: 74.5,-51.5
- parent: 2
- - uid: 24689
- components:
- - type: Transform
- pos: -65.5,18.5
- parent: 2
- - uid: 24690
- components:
- - type: Transform
- pos: 26.5,32.5
- parent: 2
- - uid: 24691
- components:
- - type: Transform
- pos: -33.5,35.5
- parent: 2
- - uid: 24692
- components:
- - type: Transform
- pos: 34.5,-27.5
- parent: 2
- - uid: 24693
- components:
- - type: Transform
- pos: 22.5,34.5
- parent: 2
- - uid: 24694
- components:
- - type: Transform
- pos: 23.5,65.5
- parent: 2
- - uid: 24695
- components:
- - type: Transform
- pos: -25.5,-17.5
- parent: 2
- - uid: 24696
- components:
- - type: Transform
- pos: 91.5,-4.5
- parent: 2
- - uid: 39221
- components:
- - type: Transform
- pos: -18.5,30.5
- parent: 38344
- - uid: 39222
- components:
- - type: Transform
- pos: -17.5,-1.5
- parent: 38344
-- proto: KitchenReagentGrinder
- entities:
- - uid: 24697
- components:
- - type: Transform
- pos: 95.5,-4.5
- parent: 2
- - uid: 24698
- components:
- - type: Transform
- pos: -24.5,-14.5
- parent: 2
- - uid: 24699
- components:
- - type: Transform
- pos: -25.5,-25.5
- parent: 2
- - uid: 24700
- components:
- - type: Transform
- pos: 8.5,-31.5
- parent: 2
- - uid: 24701
- components:
- - type: Transform
- pos: -33.5,36.5
- parent: 2
- - uid: 24702
- components:
- - type: Transform
- pos: 26.5,-65.5
- parent: 2
- - uid: 24703
- components:
- - type: Transform
- pos: -5.5,41.5
- parent: 2
- - uid: 24704
- components:
- - type: Transform
- pos: -39.5,52.5
- parent: 2
- - uid: 24705
- components:
- - type: Transform
- pos: -34.5,47.5
- parent: 2
-- proto: KitchenSpike
- entities:
- - uid: 24706
- components:
- - type: Transform
- pos: -33.5,30.5
- parent: 2
- - uid: 24707
- components:
- - type: Transform
- pos: -32.5,30.5
- parent: 2
- - uid: 24708
- components:
- - type: Transform
- pos: 26.5,67.5
- parent: 2
- - uid: 24709
- components:
- - type: Transform
- pos: -29.5,-79.5
- parent: 2
-- proto: KnifePlastic
- entities:
- - uid: 24710
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.508652,-17.53014
- parent: 2
- - uid: 24711
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.524275,-17.37389
- parent: 2
- - uid: 39223
- components:
- - type: Transform
- pos: -13.408242,-5.3575134
- parent: 38344
-- proto: Lamp
- entities:
- - uid: 24712
- components:
- - type: Transform
- pos: 53.488358,30.704498
- parent: 2
- - uid: 24713
- components:
- - type: Transform
- pos: -34.413235,-15.25878
- parent: 2
- - uid: 24714
- components:
- - type: Transform
- pos: 72.53723,21.71029
- parent: 2
- - uid: 24715
- components:
- - type: Transform
- pos: 27.5,28.5
- parent: 2
- - uid: 24716
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.355682,-16.29442
- parent: 2
- - uid: 24717
- components:
- - type: Transform
- pos: 24.575024,-52.379463
- parent: 2
- - uid: 24718
- components:
- - type: Transform
- pos: -15.40152,11.692742
- parent: 2
- - uid: 24719
- components:
- - type: Transform
- pos: -18.584768,-41.095764
- parent: 2
- - uid: 24720
- components:
- - type: Transform
- pos: 41.55369,21.383957
- parent: 2
- - uid: 24721
- components:
- - type: Transform
- pos: 27.459814,37.60866
- parent: 2
- - uid: 24722
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,28.5
- parent: 2
- - uid: 24723
- components:
- - type: Transform
- pos: 33.652378,-1.3068556
- parent: 2
- - uid: 24724
- components:
- - type: Transform
- pos: -14.380997,-79.49119
- parent: 2
- - uid: 24725
- components:
- - type: Transform
- pos: -46.37526,17.5579
- parent: 2
- - uid: 24726
- components:
- - type: Transform
- pos: 49.699116,-53.372818
- parent: 2
- - uid: 24727
- components:
- - type: Transform
- pos: 1.5,14.5
- parent: 2
- - uid: 24728
- components:
- - type: Transform
- pos: -24.41836,23.55868
- parent: 2
- - uid: 24729
- components:
- - type: Transform
- pos: 48.730324,-44.432247
- parent: 2
- - uid: 24730
- components:
- - type: Transform
- pos: -16.443285,-47.389317
- parent: 2
- - uid: 24731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.536855,46.736298
- parent: 2
- - uid: 24732
- components:
- - type: Transform
- pos: -57.398136,7.639348
- parent: 2
- - uid: 24733
- components:
- - type: Transform
- pos: -23.431923,-79.45605
- parent: 2
- - uid: 24734
- components:
- - type: Transform
- pos: 29.563286,44.666252
- parent: 2
- - uid: 24735
- components:
- - type: Transform
- pos: 34.59761,22.545893
- parent: 2
- - uid: 24736
- components:
- - type: Transform
- pos: -27.460869,19.624147
- parent: 2
- - uid: 24737
- components:
- - type: Transform
- pos: 31.585245,8.603551
- parent: 2
- - uid: 24738
- components:
- - type: Transform
- pos: -62.437016,6.65032
- parent: 2
- - uid: 24739
- components:
- - type: Transform
- pos: 43.548054,-60.36112
- parent: 2
- - uid: 24740
- components:
- - type: Transform
- pos: 43.588223,-25.339705
- parent: 2
- - uid: 24741
- components:
- - type: Transform
- pos: 53.588223,-22.402205
- parent: 2
- - uid: 24742
- components:
- - type: Transform
- pos: 47.632286,-25.284323
- parent: 2
- - uid: 24743
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.463715,59.64344
- parent: 2
- - uid: 24744
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 95.345184,12.656024
- parent: 2
- - uid: 24745
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 80.62308,-1.2103617
- parent: 2
- - uid: 24746
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 84.6387,-1.1791127
- parent: 2
- - uid: 24747
- components:
- - type: Transform
- rot: 3.141593671850739 rad
- pos: 88.62308,-1.1634886
- parent: 2
- - uid: 39224
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.447085,-4.3240967
- parent: 38344
-- proto: LampBanana
- entities:
- - uid: 24748
- components:
- - type: Transform
- pos: -4.5296516,34.793674
- parent: 2
- - uid: 24749
- components:
- - type: Transform
- pos: -36.5,0.5
- parent: 2
- - uid: 24750
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.519005,62.7927
- parent: 2
-- proto: LampGold
- entities:
- - uid: 29
- components:
- - type: Transform
- pos: 74.52993,-39.28385
- parent: 2
- - type: HandheldLight
- toggleActionEntity: 30
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- actions: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 30
- - type: Physics
- canCollide: True
- - type: ActionsContainer
- - uid: 24751
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.628714,-1.2583096
- parent: 2
- - uid: 24752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.296064,-7.270985
- parent: 2
- - uid: 24753
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.666464,-7.2709846
- parent: 2
- - uid: 24754
- components:
- - type: Transform
- pos: 15.555076,-51.159237
- parent: 2
- - uid: 24755
- components:
- - type: Transform
- pos: -15.505793,-5.327181
- parent: 2
- - uid: 24756
- components:
- - type: Transform
- rot: 3.2845950045157224E-05 rad
- pos: 7.4999056,7.534997
- parent: 2
- - uid: 24757
- components:
- - type: Transform
- pos: 12.52658,2.690349
- parent: 2
- - uid: 24758
- components:
- - type: Transform
- pos: 51.53175,-15.470508
- parent: 2
- - uid: 24759
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.608383,2.7133226
- parent: 2
- - uid: 24760
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.54723,-1.366355
- parent: 2
- - uid: 24761
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.441383,-12.320116
- parent: 2
- - uid: 24762
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 89.48647,6.2373233
- parent: 2
- - uid: 24763
- components:
- - type: Transform
- rot: 1.5707973450558423 rad
- pos: -51.697445,-35.22999
- parent: 2
-- proto: LampInterrogator
- entities:
- - uid: 24764
- components:
- - type: Transform
- pos: 51.33898,-3.2151833
- parent: 2
-- proto: LandMineExplosive
- entities:
- - uid: 24765
- components:
- - type: Transform
- pos: -36.26618,-76.37121
- parent: 2
- - uid: 24766
- components:
- - type: Transform
- pos: -29.624964,-73.38694
- parent: 2
- - uid: 24767
- components:
- - type: Transform
- pos: 10.635908,-81.58474
- parent: 2
- - uid: 24768
- components:
- - type: Transform
- pos: -30.53003,-78.41371
- parent: 2
- - uid: 24769
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 94.944466,-7.075639
- parent: 2
- - uid: 24770
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 102.5955,-5.8056355
- parent: 2
- - uid: 24771
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 102.78937,1.4545923
- parent: 2
- - uid: 24772
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 88.45106,-7.8689337
- parent: 2
- - uid: 24773
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 79.66605,-6.566653
- parent: 2
- - uid: 24774
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 76.59095,-6.7160645
- parent: 2
- - uid: 24775
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 85.51197,-6.512925
- parent: 2
- - uid: 24776
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 99.69662,5.9101176
- parent: 2
- - uid: 24777
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 100.477875,1.0753798
- parent: 2
- - uid: 24778
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 103.12242,-2.637576
- parent: 2
- - uid: 24779
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 28.495996,16.534618
- parent: 2
- - uid: 24780
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 28.40224,20.573849
- parent: 2
- - uid: 24781
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 22.555796,22.54626
- parent: 2
- - uid: 24782
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 22.55574,14.441392
- parent: 2
- - uid: 24783
->>>>>>> master
- components:
- - type: MetaData
- desc: Она настоящая?.. или нет...
- - type: Transform
-<<<<<<< HEAD
- pos: -20.5,19.5
- parent: 2
- - uid: 25485
- components:
- - type: Transform
- pos: 8.5,-28.5
- parent: 2
- - uid: 25486
- components:
- - type: Transform
- pos: -38.5,-49.5
- parent: 2
- - uid: 25487
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -79.5,1.5
- parent: 2
- - uid: 25488
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -79.5,-0.5
- parent: 2
- - uid: 25489
- components:
- - type: Transform
- pos: 15.5,-26.5
- parent: 2
- - uid: 25490
- components:
- - type: Transform
- pos: 45.5,-56.5
- parent: 2
- - uid: 25491
- components:
- - type: Transform
- pos: 41.5,-56.5
- parent: 2
- - uid: 25492
- components:
- - type: Transform
- pos: 30.5,13.5
- parent: 2
- - uid: 25493
- components:
- - type: Transform
- pos: 30.5,66.5
- parent: 2
- - uid: 25494
- components:
- - type: Transform
- pos: 72.5,-40.5
- parent: 2
- - uid: 25495
- components:
- - type: Transform
- pos: 30.5,70.5
- parent: 2
- - uid: 25496
- components:
- - type: Transform
- pos: -72.5,-45.5
- parent: 2
- - uid: 25497
- components:
- - type: Transform
- pos: -59.5,-88.5
- parent: 2
- - uid: 25498
- components:
- - type: Transform
- pos: -30.5,-84.5
- parent: 2
- - uid: 25499
- components:
- - type: Transform
- pos: 27.5,105.5
- parent: 2
- - uid: 25500
- components:
- - type: Transform
- pos: -29.5,-84.5
- parent: 2
- - uid: 25501
- components:
- - type: Transform
- pos: -60.5,-88.5
- parent: 2
- - uid: 25502
- components:
- - type: Transform
- pos: -72.5,-46.5
- parent: 2
- - uid: 25503
- components:
- - type: Transform
- pos: 45.5,9.5
- parent: 2
- - uid: 25504
- components:
- - type: Transform
- pos: 30.5,69.5
- parent: 2
- - uid: 25505
- components:
- - type: Transform
- pos: -35.5,-84.5
- parent: 2
- - uid: 25506
- components:
- - type: Transform
- pos: -55.5,17.5
- parent: 2
- - uid: 25507
- components:
- - type: Transform
- pos: -57.5,-78.5
- parent: 2
- - uid: 25508
- components:
- - type: Transform
- pos: 5.5,48.5
- parent: 2
- - uid: 25509
- components:
- - type: Transform
- pos: 24.5,61.5
- parent: 2
- - uid: 25510
- components:
- - type: Transform
- pos: -75.5,25.5
- parent: 2
- - uid: 25511
- components:
- - type: Transform
- pos: -36.5,-82.5
- parent: 2
- - uid: 25512
- components:
- - type: Transform
- pos: -77.5,31.5
- parent: 2
- - uid: 25513
- components:
- - type: Transform
- pos: 74.5,-35.5
- parent: 2
- - uid: 25514
- components:
- - type: Transform
- pos: 77.5,-40.5
- parent: 2
- - uid: 25515
- components:
- - type: Transform
- pos: 19.5,-1.5
- parent: 2
- - uid: 25516
- components:
- - type: Transform
- pos: -82.5,-28.5
- parent: 2
- - uid: 25517
- components:
- - type: Transform
- pos: 21.5,3.5
- parent: 2
- - uid: 25518
- components:
- - type: Transform
- pos: 57.5,-48.5
- parent: 2
- - uid: 25519
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-67.5
- parent: 2
- - uid: 25520
- components:
- - type: Transform
- pos: -14.5,-82.5
- parent: 2
- - uid: 25521
- components:
- - type: Transform
- pos: 2.5,70.5
- parent: 2
- - uid: 25522
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-19.5
- parent: 2
- - uid: 25523
- components:
- - type: Transform
- pos: 25.5,-70.5
- parent: 2
- - uid: 25524
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,4.5
- parent: 2
- - uid: 25525
- components:
- - type: Transform
- pos: 66.5,-20.5
- parent: 2
- - uid: 25526
- components:
- - type: Transform
- pos: 76.5,-27.5
- parent: 2
- - uid: 25527
- components:
- - type: Transform
- pos: 11.5,31.5
- parent: 2
- - uid: 25528
- components:
- - type: Transform
- pos: -29.5,-24.5
- parent: 2
- - uid: 25529
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,-19.5
- parent: 2
- - uid: 25530
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-21.5
- parent: 2
- - uid: 25531
- components:
- - type: Transform
- pos: 26.5,-64.5
- parent: 2
- - uid: 25532
- components:
- - type: Transform
- pos: 9.5,21.5
- parent: 2
- - uid: 25533
- components:
- - type: Transform
- pos: 20.5,91.5
- parent: 2
- - uid: 25534
- components:
- - type: Transform
- pos: -1.5,19.5
- parent: 2
- - uid: 25535
- components:
- - type: Transform
- pos: -8.5,-36.5
- parent: 2
- - uid: 25536
- components:
- - type: Transform
- pos: 31.5,-64.5
- parent: 2
- - uid: 25537
- components:
- - type: Transform
- pos: 23.5,-49.5
- parent: 2
- - uid: 25538
- components:
- - type: Transform
- pos: -69.5,41.5
- parent: 2
- - uid: 25539
- components:
- - type: Transform
- pos: -20.5,-29.5
- parent: 2
- - uid: 25540
- components:
- - type: Transform
- pos: -20.5,-26.5
- parent: 2
- - uid: 25541
- components:
- - type: Transform
- pos: -20.5,-24.5
- parent: 2
- - uid: 25542
- components:
- - type: Transform
- pos: -67.5,44.5
- parent: 2
- - uid: 25543
- components:
- - type: Transform
- pos: -50.5,-16.5
- parent: 2
- - uid: 25544
- components:
- - type: Transform
- pos: -73.5,9.5
- parent: 2
- - uid: 25545
- components:
- - type: Transform
- pos: -68.5,5.5
- parent: 2
- - uid: 25546
- components:
- - type: Transform
- pos: -34.5,42.5
- parent: 2
- - uid: 25547
- components:
- - type: Transform
- pos: -35.5,22.5
- parent: 2
- - uid: 25548
- components:
- - type: Transform
- pos: -69.5,-48.5
- parent: 2
- - uid: 25549
- components:
- - type: Transform
- pos: -48.5,-51.5
- parent: 2
- - uid: 25550
- components:
- - type: Transform
- pos: 23.5,-27.5
- parent: 2
- - uid: 25551
- components:
- - type: Transform
- pos: 14.5,18.5
- parent: 2
- - uid: 25552
- components:
- - type: Transform
- pos: 14.5,19.5
- parent: 2
- - uid: 25553
- components:
- - type: Transform
- pos: 14.5,20.5
- parent: 2
- - uid: 25554
- components:
- - type: Transform
- pos: -50.5,22.5
- parent: 2
- - uid: 25555
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,4.5
- parent: 2
- - uid: 25556
- components:
- - type: Transform
- pos: 32.5,13.5
- parent: 2
- - uid: 25557
- components:
- - type: Transform
- pos: -11.5,-72.5
- parent: 2
- - uid: 25558
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,6.5
- parent: 2
- - uid: 25559
- components:
- - type: Transform
- pos: 17.5,86.5
- parent: 2
- - uid: 25560
- components:
- - type: Transform
- pos: -31.5,-82.5
- parent: 2
- - uid: 25561
- components:
- - type: Transform
- pos: 2.5,-45.5
- parent: 2
- - uid: 25562
- components:
- - type: Transform
- pos: 10.5,-21.5
- parent: 2
- - uid: 25563
- components:
- - type: Transform
- pos: -103.5,-10.5
- parent: 2
- - uid: 25564
- components:
- - type: Transform
- pos: 13.5,-21.5
- parent: 2
- - uid: 25565
- components:
- - type: Transform
- pos: -43.5,32.5
- parent: 2
- - uid: 25566
- components:
- - type: Transform
- pos: -19.5,70.5
- parent: 2
- - uid: 25567
- components:
- - type: Transform
- pos: 71.5,-12.5
- parent: 2
- - uid: 25568
- components:
- - type: Transform
- pos: -68.5,17.5
- parent: 2
- - uid: 25569
- components:
- - type: Transform
- pos: -35.5,-58.5
- parent: 2
- - uid: 25570
- components:
- - type: Transform
- pos: -36.5,-30.5
- parent: 2
- - uid: 25571
- components:
- - type: Transform
- pos: -34.5,-30.5
- parent: 2
- - uid: 25572
- components:
- - type: Transform
- pos: -32.5,-30.5
- parent: 2
- - uid: 25573
- components:
- - type: Transform
- pos: -34.5,-24.5
- parent: 2
- - uid: 25574
- components:
- - type: Transform
- pos: -36.5,-24.5
- parent: 2
- - uid: 25575
- components:
- - type: Transform
- pos: -20.5,9.5
- parent: 2
- - uid: 25576
- components:
- - type: Transform
- pos: -60.5,49.5
- parent: 2
- - uid: 25577
- components:
- - type: Transform
- pos: -51.5,32.5
- parent: 2
- - uid: 25578
- components:
- - type: Transform
- pos: -67.5,21.5
- parent: 2
- - uid: 25579
- components:
- - type: Transform
- pos: 22.5,-41.5
- parent: 2
- - uid: 25580
- components:
- - type: Transform
- pos: -62.5,68.5
- parent: 2
- - uid: 25581
- components:
- - type: Transform
- pos: -67.5,77.5
- parent: 2
- - uid: 25582
- components:
- - type: Transform
- pos: -66.5,77.5
- parent: 2
- - uid: 25583
- components:
- - type: Transform
- pos: -66.5,76.5
- parent: 2
- - uid: 25584
- components:
- - type: Transform
- pos: -66.5,75.5
- parent: 2
- - uid: 25585
- components:
- - type: Transform
- pos: -66.5,74.5
- parent: 2
- - uid: 25586
- components:
- - type: Transform
- pos: -66.5,73.5
- parent: 2
- - uid: 25587
- components:
- - type: Transform
- pos: -52.5,-95.5
- parent: 2
- - uid: 25588
- components:
- - type: Transform
- pos: 85.5,-47.5
- parent: 2
- - uid: 25589
- components:
- - type: Transform
- pos: 45.5,-66.5
- parent: 2
- - uid: 25590
- components:
- - type: Transform
- pos: 78.5,-47.5
- parent: 2
- - uid: 25591
- components:
- - type: Transform
- pos: 54.5,-54.5
- parent: 2
- - uid: 25592
- components:
- - type: Transform
- pos: 57.5,-60.5
- parent: 2
- - uid: 25593
- components:
- - type: Transform
- pos: -46.5,66.5
- parent: 2
- - uid: 25594
- components:
- - type: Transform
- pos: -42.5,-83.5
- parent: 2
- - uid: 25595
- components:
- - type: Transform
- pos: -20.5,-82.5
- parent: 2
- - uid: 25596
- components:
- - type: Transform
- pos: 42.5,-19.5
- parent: 2
- - uid: 25597
- components:
- - type: Transform
- pos: 6.5,-28.5
- parent: 2
- - uid: 25598
- components:
- - type: Transform
- pos: 32.5,88.5
- parent: 2
- - uid: 25599
- components:
- - type: Transform
- pos: 0.5,46.5
- parent: 2
- - uid: 25600
-=======
- rot: 1.0182609457842773E-06 rad
- pos: 99.183014,-2.5589252
- parent: 2
-- proto: LandMineModular
- entities:
- - uid: 24784
- components:
- - type: Transform
- pos: 10.348714,-79.62576
- parent: 2
- - uid: 24785
- components:
- - type: Transform
- pos: 9.364339,-80.29764
- parent: 2
- - uid: 24786
- components:
- - type: Transform
- pos: 9.708088,-82.43826
- parent: 2
-- proto: Lantern
- entities:
- - uid: 39225
- components:
- - type: Transform
- pos: -8.5,12.5
- parent: 38344
- - uid: 39226
- components:
- - type: Transform
- pos: -0.5,25.5
- parent: 38344
- - uid: 39227
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,13.5
- parent: 38344
-- proto: LanternFlash
- entities:
- - uid: 24787
- components:
- - type: Transform
- pos: -14.489479,-74.273415
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24788
- components:
- - type: Transform
- pos: -18.52073,-74.304665
- parent: 2
- - type: Physics
- canCollide: False
-- proto: LargeBeaker
- entities:
- - uid: 24789
- components:
- - type: Transform
- pos: -10.623464,-52.304737
- parent: 2
- - uid: 24790
- components:
- - type: Transform
- pos: -25.45797,-27.47972
- parent: 2
- - uid: 24791
- components:
- - type: Transform
- pos: 8.488844,-31.37006
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24792
- components:
- - type: Transform
- pos: -26.653925,45.56316
- parent: 2
- - uid: 24793
- components:
- - type: Transform
- pos: -33.420307,37.262516
- parent: 2
-- proto: LauncherCreamPie
- entities:
- - uid: 24794
- components:
- - type: Transform
- pos: -5.626899,32.597004
- parent: 2
-- proto: LedLightTube
- entities:
- - uid: 24795
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -42.033535,-26.28035
- parent: 2
- - type: LightBulb
- startingState: Broken
- - type: Destructible
- thresholds:
- - trigger: !type:DamageTrigger
- damage: 100
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:DoActsBehavior
- acts: Destruction
- - trigger: !type:DamageTrigger
- damage: 5
- triggersOnce: False
- triggered: True
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:DoActsBehavior
- acts: Breakage
- - trigger: !type:DamageTrigger
- damage: 10
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:SpawnEntitiesBehavior
- offset: 0.5
- spawn:
- ShardGlass:
- max: 1
- min: 1
- spawnInContainer: False
- transferForensics: False
- - !type:DoActsBehavior
- acts: Destruction
- - uid: 24796
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -34.84071,-28.088034
- parent: 2
- - type: LightBulb
- startingState: Broken
- - type: Destructible
- thresholds:
- - trigger: !type:DamageTrigger
- damage: 100
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:DoActsBehavior
- acts: Destruction
- - trigger: !type:DamageTrigger
- damage: 5
- triggersOnce: False
- triggered: True
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:DoActsBehavior
- acts: Breakage
- - trigger: !type:DamageTrigger
- damage: 10
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:SpawnEntitiesBehavior
- offset: 0.5
- spawn:
- ShardGlass:
- max: 1
- min: 1
- spawnInContainer: False
- transferForensics: False
- - !type:DoActsBehavior
- acts: Destruction
- - uid: 24797
- components:
- - type: Transform
- rot: 6.283185307179586 rad
- pos: -25.762438,-26.582762
- parent: 2
- - type: LightBulb
- startingState: Broken
- - type: Destructible
- thresholds:
- - trigger: !type:DamageTrigger
- damage: 100
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:DoActsBehavior
- acts: Destruction
- - trigger: !type:DamageTrigger
- damage: 5
- triggersOnce: False
- triggered: True
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:DoActsBehavior
- acts: Breakage
- - trigger: !type:DamageTrigger
- damage: 10
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:SpawnEntitiesBehavior
- offset: 0.5
- spawn:
- ShardGlass:
- max: 1
- min: 1
- spawnInContainer: False
- transferForensics: False
- - !type:DoActsBehavior
- acts: Destruction
-- proto: LeftArmBorg
- entities:
- - uid: 24798
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.0990267,-39.179794
- parent: 2
-- proto: LemonSeeds
- entities:
- - uid: 24799
- components:
- - type: Transform
- pos: -70.34853,-20.410847
- parent: 2
-- proto: LemoonSeeds
- entities:
- - uid: 24800
- components:
- - type: Transform
- pos: -70.73916,-20.723347
- parent: 2
-- proto: LightBulbBroken
- entities:
- - uid: 24801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.984306,-73.144775
- parent: 2
- - uid: 24802
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.981056,-60.351532
- parent: 2
- - uid: 24803
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.968693,-61.888454
- parent: 2
- - uid: 24804
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -59.647736,-31.433605
- parent: 2
-- proto: Lighter
- entities:
- - uid: 24805
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.769608,31.360748
- parent: 2
- - uid: 24806
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.60087,10.400426
- parent: 2
- - uid: 24807
- components:
- - type: Transform
- pos: -62.635532,18.450417
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24808
- components:
- - type: Transform
- pos: -11.5,9.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24809
- components:
- - type: Transform
- pos: -62.479282,18.606667
- parent: 2
- - type: Physics
- canCollide: False
-- proto: LightReplacer
- entities:
- - uid: 24810
- components:
- - type: Transform
- pos: -55.503292,12.67932
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 24811
- components:
- - type: Transform
- pos: -53.50574,38.601086
- parent: 2
- - type: Physics
- canCollide: False
-- proto: LightTubeBroken
- entities:
- - uid: 24812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.112137,-69.765274
- parent: 2
- - uid: 24813
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.457588,-68.454704
- parent: 2
-- proto: LightTubeCrystalOrange
- entities:
- - uid: 24815
- components:
- - type: Transform
- parent: 24814
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
-- proto: LightTubeCrystalPink
- entities:
- - uid: 24817
- components:
- - type: Transform
- parent: 24816
- - type: LightBulb
- lightRadius: 4
- lightEnergy: 2
- - type: Physics
- canCollide: False
- - uid: 24819
- components:
- - type: Transform
- parent: 24818
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
-- proto: LightTubeCrystalRed
- entities:
- - uid: 24821
- components:
- - type: Transform
- parent: 24820
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24823
- components:
- - type: Transform
- parent: 24822
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24825
- components:
- - type: Transform
- parent: 24824
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24827
- components:
- - type: Transform
- parent: 24826
- - type: LightBulb
- lightRadius: 4
- lightEnergy: 2
- - type: Physics
- canCollide: False
- - uid: 24829
- components:
- - type: Transform
- parent: 24828
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24831
- components:
- - type: Transform
- parent: 24830
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24833
- components:
- - type: Transform
- parent: 24832
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24835
- components:
- - type: Transform
- parent: 24834
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24837
- components:
- - type: Transform
- parent: 24836
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24839
- components:
- - type: Transform
- parent: 24838
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24841
- components:
- - type: Transform
- parent: 24840
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24843
- components:
- - type: Transform
- parent: 24842
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24845
- components:
- - type: Transform
- parent: 24844
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24847
- components:
- - type: Transform
- parent: 24846
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24849
- components:
- - type: Transform
- parent: 24848
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24851
- components:
- - type: Transform
- parent: 24850
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24853
- components:
- - type: Transform
- parent: 24852
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24855
- components:
- - type: Transform
- parent: 24854
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24857
- components:
- - type: Transform
- parent: 24856
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24859
- components:
- - type: Transform
- parent: 24858
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24861
- components:
- - type: Transform
- parent: 24860
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24863
- components:
- - type: Transform
- parent: 24862
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24865
- components:
- - type: Transform
- parent: 24864
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24867
- components:
- - type: Transform
- parent: 24866
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24869
- components:
- - type: Transform
- parent: 24868
- - type: LightBulb
- lightRadius: 2
- - type: Physics
- canCollide: False
- - uid: 24871
- components:
- - type: Transform
- parent: 24870
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24873
- components:
- - type: Transform
- parent: 24872
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24875
- components:
- - type: Transform
- parent: 24874
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24877
- components:
- - type: Transform
- parent: 24876
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24879
- components:
- - type: Transform
- parent: 24878
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24881
- components:
- - type: Transform
- parent: 24880
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24883
- components:
- - type: Transform
- parent: 24882
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24885
- components:
- - type: Transform
- parent: 24884
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24887
- components:
- - type: Transform
- parent: 24886
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24889
- components:
- - type: Transform
- parent: 24888
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24891
- components:
- - type: Transform
- parent: 24890
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24893
- components:
- - type: Transform
- parent: 24892
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24895
- components:
- - type: Transform
- parent: 24894
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24897
- components:
- - type: Transform
- parent: 24896
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24899
- components:
- - type: Transform
- parent: 24898
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24901
- components:
- - type: Transform
- parent: 24900
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24903
- components:
- - type: Transform
- parent: 24902
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24905
- components:
- - type: Transform
- parent: 24904
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24907
- components:
- - type: Transform
- parent: 24906
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24909
- components:
- - type: Transform
- parent: 24908
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24911
- components:
- - type: Transform
- parent: 24910
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24913
- components:
- - type: Transform
- parent: 24912
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24915
- components:
- - type: Transform
- parent: 24914
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24917
- components:
- - type: Transform
- parent: 24916
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24919
- components:
- - type: Transform
- parent: 24918
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24921
- components:
- - type: Transform
- parent: 24920
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24923
- components:
- - type: Transform
- parent: 24922
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24925
- components:
- - type: Transform
- parent: 24924
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24927
- components:
- - type: Transform
- parent: 24926
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24929
- components:
- - type: Transform
- parent: 24928
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24931
- components:
- - type: Transform
- parent: 24930
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24933
- components:
- - type: Transform
- parent: 24932
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24935
- components:
- - type: Transform
- parent: 24934
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24937
- components:
- - type: Transform
- parent: 24936
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24939
- components:
- - type: Transform
- parent: 24938
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24941
- components:
- - type: Transform
- parent: 24940
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24943
- components:
- - type: Transform
- parent: 24942
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24945
- components:
- - type: Transform
- parent: 24944
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24947
- components:
- - type: Transform
- parent: 24946
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24949
- components:
- - type: Transform
- parent: 24948
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24951
- components:
- - type: Transform
- parent: 24950
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24953
- components:
- - type: Transform
- parent: 24952
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24955
- components:
- - type: Transform
- parent: 24954
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24957
- components:
- - type: Transform
- parent: 24956
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24959
- components:
- - type: Transform
- parent: 24958
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24961
- components:
- - type: Transform
- parent: 24960
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24963
- components:
- - type: Transform
- parent: 24962
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24965
- components:
- - type: Transform
- parent: 24964
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24967
- components:
- - type: Transform
- parent: 24966
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24969
- components:
- - type: Transform
- parent: 24968
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24971
- components:
- - type: Transform
- parent: 24970
- - type: LightBulb
- lightRadius: 2
- lightEnergy: 1
- - type: Physics
- canCollide: False
- - uid: 24973
- components:
- - type: Transform
- parent: 24972
- - type: LightBulb
- lightEnergy: 1
- - type: Physics
- canCollide: False
-- proto: LiquidCarbonDioxideCanister
- entities:
- - uid: 24974
- components:
- - type: Transform
- pos: -49.5,25.5
- parent: 2
-- proto: LiquidNitrogenCanister
- entities:
- - uid: 24975
- components:
- - type: Transform
- pos: -47.5,24.5
- parent: 2
- - uid: 24976
- components:
- - type: Transform
- pos: -47.5,25.5
- parent: 2
-- proto: LiquidOxygenCanister
- entities:
- - uid: 24977
- components:
- - type: Transform
- pos: -46.5,24.5
- parent: 2
- - uid: 24978
- components:
- - type: Transform
- pos: -46.5,25.5
- parent: 2
-- proto: LockableButtonArmory
- entities:
- - uid: 24979
->>>>>>> master
- components:
- - type: MetaData
- name: арсенал красного кода
- - type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -88.5,4.5
- parent: 2
- - uid: 25601
-=======
- rot: 3.141592653589793 rad
- pos: 67.5,3.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1490:
- - Pressed: Toggle
- - uid: 24980
->>>>>>> master
- components:
- - type: MetaData
- name: дополнительный арсенал
- - type: Transform
-<<<<<<< HEAD
- pos: -75.5,46.5
- parent: 2
- - uid: 25602
-=======
- rot: 3.141592653589793 rad
- pos: 63.5,3.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1491:
- - Pressed: Toggle
- - uid: 24981
->>>>>>> master
- components:
- - type: MetaData
- name: арсенал синего кода
- - type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -89.5,6.5
- parent: 2
- - uid: 25603
- components:
- - type: Transform
- pos: -43.5,-89.5
- parent: 2
- - uid: 25604
- components:
- - type: Transform
- pos: -75.5,50.5
- parent: 2
- - uid: 25605
- components:
- - type: Transform
- pos: -75.5,51.5
- parent: 2
- - uid: 25606
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-21.5
- parent: 2
- - uid: 25607
- components:
- - type: Transform
- pos: 12.5,-36.5
- parent: 2
- - uid: 25608
- components:
- - type: Transform
- pos: -22.5,-84.5
- parent: 2
- - uid: 25609
-=======
- rot: 3.141592653589793 rad
- pos: 59.5,3.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1489:
- - Pressed: Toggle
- - uid: 24982
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,11.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1492:
- - Pressed: Toggle
-- proto: LockableButtonAtmospherics
- entities:
- - uid: 24983
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,17.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1525:
- - Pressed: Toggle
- 1524:
- - Pressed: Toggle
- 1523:
- - Pressed: Toggle
- 1526:
- - Pressed: Toggle
-- proto: LockableButtonHeadOfSecurity
- entities:
- - uid: 24984
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,21.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 29061:
- - Pressed: Toggle
- 29146:
- - Pressed: Toggle
- 29132:
- - Pressed: Toggle
- 29117:
- - Pressed: Toggle
- 29153:
- - Pressed: Toggle
- 29148:
- - Pressed: Toggle
- 29119:
- - Pressed: Toggle
- 29145:
- - Pressed: Toggle
- 29142:
- - Pressed: Toggle
- 29147:
- - Pressed: Toggle
- 29118:
- - Pressed: Toggle
- 29131:
- - Pressed: Toggle
- 29129:
- - Pressed: Toggle
- 29130:
- - Pressed: Toggle
- 29116:
- - Pressed: Toggle
-- proto: LockerAtmosphericsFilled
- entities:
- - uid: 14805
- components:
- - type: Transform
- pos: -56.5,33.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14806
- - 14807
- - 14808
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14809
- components:
- - type: Transform
- pos: -56.5,34.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14811
- - 14810
- - 14812
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14813
- components:
- - type: Transform
- pos: -56.5,32.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14816
- - 14814
- - 14815
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerBooze
- entities:
- - uid: 1803
->>>>>>> master
- components:
- - type: MetaData
- desc: Обычный шкаф для хранения вещей.
- name: шкафчик
- - type: Transform
-<<<<<<< HEAD
- pos: -46.5,43.5
- parent: 2
- - uid: 25610
- components:
- - type: Transform
- pos: 79.5,-47.5
- parent: 2
- - uid: 25611
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,57.5
- parent: 2
- - uid: 25612
- components:
- - type: Transform
- pos: -66.5,5.5
- parent: 2
- - uid: 25613
- components:
- - type: Transform
- pos: 44.5,-79.5
- parent: 2
- - uid: 25614
- components:
- - type: Transform
- pos: 82.5,11.5
- parent: 2
- - uid: 25615
- components:
- - type: Transform
- pos: -57.5,-51.5
- parent: 2
- - uid: 25616
- components:
- - type: Transform
- pos: 16.5,85.5
- parent: 2
- - uid: 25617
- components:
- - type: Transform
- pos: -80.5,-29.5
- parent: 2
- - uid: 25618
- components:
- - type: Transform
- pos: 39.5,-79.5
- parent: 2
- - uid: 25619
- components:
- - type: Transform
- pos: 40.5,-77.5
- parent: 2
- - uid: 25620
-=======
- pos: -38.5,25.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: Lock
- locked: False
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1804
- - 1805
- - 1806
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerBoozeFilled
- entities:
- - uid: 24985
- components:
- - type: Transform
- pos: -3.5,40.5
- parent: 2
-- proto: LockerBotanistFilled
- entities:
- - uid: 24986
- components:
- - type: Transform
- pos: -38.5,48.5
- parent: 2
- - uid: 24987
- components:
- - type: Transform
- pos: -38.5,49.5
- parent: 2
- - uid: 24988
- components:
- - type: Transform
- pos: -38.5,50.5
- parent: 2
-- proto: LockerBrigmedic
- entities:
- - uid: 14691
- components:
- - type: Transform
- pos: 66.5,-4.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14700
- - 14699
- - 14701
- - 14704
- - 14693
- - 14703
- - 14696
- - 14692
- - 14697
- - 14702
- - 14694
- - 14695
- - 14698
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerCaptainFilled
- entities:
- - uid: 24989
- components:
- - type: Transform
- pos: 11.5,3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerChemistryFilled
- entities:
- - uid: 24990
- components:
- - type: Transform
- pos: 8.5,-29.481438
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerChiefEngineerFilledHardsuit
- entities:
- - uid: 24991
- components:
- - type: Transform
- pos: -55.5,7.5
- parent: 2
-- proto: LockerChiefMedicalOfficerFilled
- entities:
- - uid: 24992
- components:
- - type: Transform
- pos: 20.5,-50.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerClown
- entities:
- - uid: 1478
- components:
- - type: Transform
- pos: -4.5,32.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 1481
- - 1480
- - 1479
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerDetective
- entities:
- - uid: 1622
->>>>>>> master
- components:
- - type: MetaData
- name: шкаф отца Гарсии
- - type: Transform
-<<<<<<< HEAD
- pos: 45.5,-71.5
- parent: 2
- - uid: 25621
- components:
- - type: Transform
- pos: 89.5,-41.5
- parent: 2
- - uid: 25622
- components:
- - type: Transform
- pos: 79.5,-53.5
- parent: 2
- - uid: 25623
- components:
- - type: Transform
- pos: 11.5,41.5
- parent: 2
- - uid: 25624
- components:
- - type: Transform
- pos: 24.5,-36.5
- parent: 2
- - uid: 25625
- components:
- - type: Transform
- pos: 22.5,-36.5
- parent: 2
- - uid: 25626
- components:
- - type: Transform
- pos: 29.5,-74.5
- parent: 2
- - uid: 25627
- components:
- - type: Transform
- pos: -45.5,-69.5
- parent: 2
- - uid: 25628
- components:
- - type: Transform
- pos: -32.5,-84.5
- parent: 2
- - uid: 25629
- components:
- - type: Transform
- pos: 31.5,64.5
- parent: 2
- - uid: 25630
- components:
- - type: Transform
- pos: 40.5,-56.5
- parent: 2
- - uid: 25631
- components:
- - type: Transform
- pos: 35.5,-56.5
- parent: 2
- - uid: 25632
- components:
- - type: Transform
- pos: -7.5,-82.5
- parent: 2
- - uid: 25633
- components:
- - type: Transform
- pos: -4.5,-82.5
- parent: 2
- - uid: 25634
- components:
- - type: Transform
- pos: -1.5,-82.5
- parent: 2
- - uid: 25635
- components:
- - type: Transform
- pos: -0.5,-82.5
- parent: 2
- - uid: 25636
- components:
- - type: Transform
- pos: 0.5,-82.5
- parent: 2
- - uid: 25637
- components:
- - type: Transform
- pos: -33.5,-84.5
- parent: 2
- - uid: 25638
- components:
- - type: Transform
- pos: 12.5,-68.5
- parent: 2
- - uid: 25639
- components:
- - type: Transform
- pos: 10.5,-68.5
- parent: 2
- - uid: 25640
- components:
- - type: Transform
- pos: 21.5,-60.5
- parent: 2
- - uid: 25641
- components:
- - type: Transform
- pos: 20.5,-60.5
- parent: 2
- - uid: 25642
- components:
- - type: Transform
- pos: 19.5,-60.5
- parent: 2
- - uid: 25643
- components:
- - type: Transform
- pos: 8.5,-70.5
- parent: 2
- - uid: 25644
- components:
- - type: Transform
- pos: 9.5,-70.5
- parent: 2
- - uid: 25645
- components:
- - type: Transform
- pos: 12.5,-77.5
- parent: 2
- - uid: 25646
- components:
- - type: Transform
- pos: 12.5,-76.5
- parent: 2
- - uid: 25647
- components:
- - type: Transform
- pos: -13.5,-83.5
- parent: 2
- - uid: 25648
- components:
- - type: Transform
- pos: -17.5,-84.5
- parent: 2
- - uid: 25649
- components:
- - type: Transform
- pos: -18.5,-84.5
- parent: 2
- - uid: 25650
- components:
- - type: Transform
- pos: -19.5,-84.5
- parent: 2
- - uid: 25651
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-83.5
- parent: 2
- - uid: 25652
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-84.5
- parent: 2
- - uid: 25653
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-85.5
- parent: 2
- - uid: 25654
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-82.5
- parent: 2
- - uid: 25655
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-83.5
- parent: 2
- - uid: 25656
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-84.5
- parent: 2
- - uid: 25657
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-85.5
- parent: 2
- - uid: 25658
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-84.5
- parent: 2
- - uid: 25659
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-84.5
- parent: 2
- - uid: 25660
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-84.5
- parent: 2
- - uid: 25661
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-84.5
- parent: 2
- - uid: 25662
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-85.5
- parent: 2
- - uid: 25663
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-83.5
- parent: 2
- - uid: 25664
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-83.5
- parent: 2
- - uid: 25665
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-84.5
- parent: 2
- - uid: 25666
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-85.5
- parent: 2
- - uid: 25667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-85.5
- parent: 2
- - uid: 25668
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-84.5
- parent: 2
- - uid: 25669
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-83.5
- parent: 2
- - uid: 25670
- components:
- - type: Transform
- pos: -34.5,-82.5
- parent: 2
- - uid: 25671
- components:
- - type: Transform
- pos: -30.5,-82.5
- parent: 2
- - uid: 25672
- components:
- - type: Transform
- pos: -29.5,-82.5
- parent: 2
- - uid: 25673
- components:
- - type: Transform
- pos: -32.5,-82.5
- parent: 2
- - uid: 25674
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,70.5
- parent: 2
- - uid: 25675
- components:
- - type: Transform
- pos: 84.5,11.5
- parent: 2
- - uid: 25676
- components:
- - type: Transform
- pos: 11.5,-65.5
- parent: 2
- - uid: 25677
- components:
- - type: Transform
- pos: 104.5,-3.5
- parent: 2
- - uid: 25678
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-16.5
- parent: 2
- - uid: 25679
- components:
- - type: Transform
- pos: -103.5,-3.5
- parent: 2
- - uid: 25680
- components:
- - type: Transform
- pos: -103.5,-11.5
- parent: 2
- - uid: 25681
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-15.5
- parent: 2
- - uid: 25682
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-14.5
- parent: 2
- - uid: 25683
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-14.5
- parent: 2
- - uid: 25684
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-12.5
- parent: 2
- - uid: 25685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-11.5
- parent: 2
- - uid: 25686
-=======
- pos: -23.5,-77.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8978289
- - 7.1394525
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Lock
- locked: False
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1623
- - 1624
- - 1625
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14763
- components:
- - type: Transform
- pos: 72.5,-36.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1495
- moles:
- - 1.8642148
- - 7.0129986
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14766
- - 14764
- - 14765
- - 14767
- - 14768
- - 14769
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerDetectiveFilled
- entities:
- - uid: 24993
- components:
- - type: Transform
- pos: 29.5,12.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 24995
- - 24994
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerElectricalSuppliesFilled
- entities:
- - uid: 24996
- components:
- - type: Transform
- pos: -57.5,-28.5
- parent: 2
- - uid: 24997
- components:
- - type: Transform
- pos: -58.5,-11.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 24998
- components:
- - type: Transform
- pos: -38.5,-6.5
- parent: 2
- - uid: 24999
- components:
- - type: Transform
- pos: -77.5,-23.5
- parent: 2
-- proto: LockerEngineerFilled
- entities:
- - uid: 25000
- components:
- - type: Transform
- pos: -81.5,15.5
- parent: 2
- - uid: 25001
- components:
- - type: Transform
- pos: -60.5,-12.5
- parent: 2
- - uid: 25002
- components:
- - type: Transform
- pos: -60.5,-13.5
- parent: 2
- - uid: 25003
- components:
- - type: Transform
- pos: -60.5,-11.5
- parent: 2
- - uid: 25004
- components:
- - type: Transform
- pos: -60.5,-1.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25005
- components:
- - type: Transform
- pos: -60.5,-2.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25006
- components:
- - type: Transform
- pos: -55.5,3.5000002
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25007
- components:
- - type: Transform
- pos: -48.5,-3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25008
- components:
- - type: Transform
- pos: -56.5,3.5000002
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25009
- components:
- - type: Transform
- pos: -60.5,-3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25010
- components:
- - type: Transform
- pos: -49.5,-3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerEvidence
- entities:
- - uid: 1646
- components:
- - type: Transform
- pos: 31.5,12.5
- parent: 2
- - type: Lock
- locked: False
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1647
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 25011
- components:
- - type: Transform
- pos: 46.5,1.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25012
- components:
- - type: Transform
- pos: 65.5,3.5
- parent: 2
- - uid: 25013
- components:
- - type: Transform
- pos: 6.5,-77.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25014
- components:
- - type: Transform
- pos: 6.5,-73.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25015
- components:
- - type: Transform
- pos: 39.5,9.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25016
- components:
- - type: Transform
- pos: 35.5,11.5
- parent: 2
- - uid: 25017
- components:
- - type: Transform
- pos: 35.5,12.5
- parent: 2
- - uid: 25018
- components:
- - type: Transform
- pos: 39.5,3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25019
- components:
- - type: Transform
- pos: 46.5,13.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25020
- components:
- - type: Transform
- pos: 74.5,2.5
- parent: 2
- - uid: 25021
- components:
- - type: Transform
- pos: 74.49999,3.5
- parent: 2
- - uid: 39228
- components:
- - type: Transform
- pos: 1.5,-10.5
- parent: 38344
- - uid: 39229
- components:
- - type: Transform
- pos: 1.5,-8.5
- parent: 38344
- - uid: 39230
- components:
- - type: Transform
- pos: 1.5,-9.5
- parent: 38344
- - uid: 39231
- components:
- - type: Transform
- pos: 1.5,-7.5
- parent: 38344
- - uid: 39232
- components:
- - type: Transform
- pos: -2.5,-1.5
- parent: 38344
-- proto: LockerFreezer
- entities:
- - uid: 25022
- components:
- - type: Transform
- pos: 18.5,65.5
- parent: 2
- - type: Lock
- locked: False
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25023
- components:
- - type: Transform
- pos: -30.5,25.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 234.99968
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25024
- components:
- - type: Transform
- pos: -31.5,25.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 234.99968
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerFreezerBase
- entities:
- - uid: 18480
- components:
- - type: Transform
- pos: -25.5,-14.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:
- - 18481
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 25025
- components:
- - type: Transform
- pos: -5.5,38.5
- parent: 2
- - uid: 39233
- components:
- - type: Transform
- pos: -19.5,30.5
- parent: 38344
- - type: Lock
- locked: False
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 39234
- components:
- - type: Transform
- pos: -18.5,-1.5
- parent: 38344
-- proto: LockerHeadOfPersonnelFilled
- entities:
- - uid: 25026
- components:
- - type: Transform
- pos: -14.5,-5.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerHeadOfSecurityFilled
- entities:
- - uid: 15089
- components:
- - type: Transform
- pos: 34.5,18.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 15091
- - 15090
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerMedicalFilled
- entities:
- - uid: 14846
- components:
- - type: Transform
- pos: 29.5,-21.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14847
- - 14848
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14849
- components:
- - type: Transform
- pos: 30.5,-21.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14850
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 25027
- components:
- - type: Transform
- pos: 32.5,-28.5
- parent: 2
- - uid: 25028
- components:
- - type: Transform
- pos: 22.5,-24.5
- parent: 2
- - uid: 25029
- components:
- - type: Transform
- pos: 69.5,16.5
- parent: 2
- - uid: 25030
- components:
- - type: Transform
- pos: 6.5,-46.5
- parent: 2
-- proto: LockerMedicineFilled
- entities:
- - uid: 25031
- components:
- - type: Transform
- pos: 6.5,-12.5
- parent: 2
- - uid: 25032
- components:
- - type: Transform
- pos: -4.5,-61.5
- parent: 2
- - uid: 25033
- components:
- - type: Transform
- pos: 5.5,65.5
- parent: 2
- - uid: 25034
- components:
- - type: Transform
- pos: 5.5,-46.5
- parent: 2
- - uid: 25035
- components:
- - type: Transform
- pos: 32.5,-69.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25036
- components:
- - type: Transform
- pos: 9.5,-54.5
- parent: 2
- - uid: 25037
- components:
- - type: Transform
- pos: 8.5,-46.5
- parent: 2
- - uid: 25038
- components:
- - type: Transform
- pos: 44.5,-30.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerMime
- entities:
- - uid: 14961
- components:
- - type: Transform
- pos: -6.5,28.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:
- - 14963
- - 14964
- - 14962
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 25039
- components:
- - type: Transform
- pos: -2.5,46.5
- parent: 2
-- proto: LockerParamedicFilled
- entities:
- - uid: 25040
- components:
- - type: Transform
- pos: 12.5,-42.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerQuarterMasterFilled
- entities:
- - uid: 25041
- components:
- - type: Transform
- pos: 29.5,40.5
- parent: 2
-- proto: LockerResearchDirectorFilled
- entities:
- - uid: 25042
- components:
- - type: Transform
- pos: -20.5,-45.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerSalvageSpecialistFilled
- entities:
- - uid: 25043
- components:
- - type: Transform
- pos: 24.5,32.5
- parent: 2
- - uid: 25044
- components:
- - type: Transform
- pos: 23.5,32.5
- parent: 2
- - uid: 25045
- components:
- - type: Transform
- pos: 22.5,32.5
- parent: 2
- - uid: 25046
- components:
- - type: Transform
- pos: 11.5,86.5
- parent: 2
-- proto: LockerSecurity
- entities:
- - uid: 14
->>>>>>> master
- components:
- - type: MetaData
- name: шкаф пилота
- - type: Transform
-<<<<<<< HEAD
- rot: 1.5707963267948966 rad
- pos: -105.5,-10.5
- parent: 2
- - uid: 25687
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-8.5
- parent: 2
- - uid: 25688
- components:
- - type: Transform
- pos: -103.5,-12.5
- parent: 2
- - uid: 25689
- components:
- - type: Transform
- pos: -67.5,-4.5
- parent: 2
- - uid: 25690
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -100.5,-16.5
- parent: 2
- - uid: 25691
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,-16.5
- parent: 2
- - uid: 25692
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -100.5,1.5
- parent: 2
- - uid: 25693
- components:
- - type: Transform
- pos: -83.5,-7.5
- parent: 2
- - uid: 25694
- components:
- - type: Transform
- pos: -83.5,-6.5
- parent: 2
- - uid: 25695
- components:
- - type: Transform
- pos: -83.5,-5.5
- parent: 2
- - uid: 25696
- components:
- - type: Transform
- pos: -61.5,-5.5
- parent: 2
- - uid: 25697
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,30.5
- parent: 2
- - uid: 25698
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,30.5
- parent: 2
- - uid: 25699
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-38.5
- parent: 2
- - uid: 25700
- components:
- - type: Transform
- pos: 89.5,-46.5
- parent: 2
- - uid: 25701
- components:
- - type: Transform
- pos: 89.5,-42.5
- parent: 2
- - uid: 25702
- components:
- - type: Transform
- pos: 74.5,-47.5
- parent: 2
- - uid: 25703
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-42.5
- parent: 2
- - uid: 25704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-42.5
- parent: 2
- - uid: 25705
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,-38.5
- parent: 2
- - uid: 25706
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,-42.5
- parent: 2
- - uid: 25707
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,-42.5
- parent: 2
- - uid: 25708
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-38.5
- parent: 2
- - uid: 25709
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-42.5
- parent: 2
- - uid: 25710
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-42.5
- parent: 2
- - uid: 25711
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-42.5
- parent: 2
- - uid: 25712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-42.5
- parent: 2
- - uid: 25713
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-38.5
- parent: 2
- - uid: 25714
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-38.5
- parent: 2
- - uid: 25715
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-38.5
- parent: 2
- - uid: 25716
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,82.5
- parent: 2
- - uid: 25717
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,83.5
- parent: 2
- - uid: 25718
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,84.5
- parent: 2
- - uid: 25719
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,84.5
- parent: 2
- - uid: 25720
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,80.5
- parent: 2
- - uid: 25721
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,81.5
- parent: 2
- - uid: 25722
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-35.5
- parent: 2
- - uid: 25723
- components:
- - type: Transform
- pos: 58.5,-53.5
- parent: 2
- - uid: 25724
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-25.5
- parent: 2
- - uid: 25725
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,83.5
- parent: 2
- - uid: 25726
- components:
- - type: Transform
- pos: -110.5,26.5
- parent: 2
- - uid: 25727
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,11.5
- parent: 2
- - uid: 25728
- components:
- - type: Transform
- pos: -78.5,24.5
- parent: 2
- - uid: 25729
- components:
- - type: Transform
- pos: -86.5,26.5
- parent: 2
- - uid: 25730
- components:
- - type: Transform
- pos: -85.5,26.5
- parent: 2
- - uid: 25731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,23.5
- parent: 2
- - uid: 25732
- components:
- - type: Transform
- pos: -109.5,26.5
- parent: 2
- - uid: 25733
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,22.5
- parent: 2
- - uid: 25734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,22.5
- parent: 2
- - uid: 25735
- components:
- - type: Transform
- pos: -108.5,26.5
- parent: 2
- - uid: 25736
- components:
- - type: Transform
- pos: -107.5,26.5
- parent: 2
- - uid: 25737
- components:
- - type: Transform
- pos: -103.5,26.5
- parent: 2
- - uid: 25738
- components:
- - type: Transform
- pos: -104.5,26.5
- parent: 2
- - uid: 25739
- components:
- - type: Transform
- pos: -90.5,26.5
- parent: 2
- - uid: 25740
- components:
- - type: Transform
- pos: -101.5,26.5
- parent: 2
- - uid: 25741
- components:
- - type: Transform
- pos: -100.5,26.5
- parent: 2
- - uid: 25742
- components:
- - type: Transform
- pos: -98.5,26.5
- parent: 2
- - uid: 25743
- components:
- - type: Transform
- pos: -95.5,26.5
- parent: 2
- - uid: 25744
- components:
- - type: Transform
- pos: -94.5,26.5
- parent: 2
- - uid: 25745
- components:
- - type: Transform
- pos: -93.5,26.5
- parent: 2
- - uid: 25746
- components:
- - type: Transform
- pos: -92.5,26.5
- parent: 2
- - uid: 25747
- components:
- - type: Transform
- pos: -89.5,26.5
- parent: 2
- - uid: 25748
- components:
- - type: Transform
- pos: -79.5,22.5
- parent: 2
- - uid: 25749
- components:
- - type: Transform
- pos: -79.5,23.5
- parent: 2
- - uid: 25750
- components:
- - type: Transform
- pos: -81.5,22.5
- parent: 2
- - uid: 25751
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,84.5
- parent: 2
- - uid: 25752
- components:
- - type: Transform
- pos: -118.5,44.5
- parent: 2
- - uid: 25753
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,84.5
- parent: 2
- - uid: 25754
- components:
- - type: Transform
- pos: -110.5,19.5
- parent: 2
- - uid: 25755
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -110.5,27.5
- parent: 2
- - uid: 25756
- components:
- - type: Transform
- pos: -107.5,20.5
- parent: 2
- - uid: 25757
- components:
- - type: Transform
- pos: -106.5,20.5
- parent: 2
- - uid: 25758
- components:
- - type: Transform
- pos: -105.5,20.5
- parent: 2
- - uid: 25759
- components:
- - type: Transform
- pos: -103.5,20.5
- parent: 2
- - uid: 25760
- components:
- - type: Transform
- pos: -102.5,20.5
- parent: 2
- - uid: 25761
- components:
- - type: Transform
- pos: -100.5,20.5
- parent: 2
- - uid: 25762
- components:
- - type: Transform
- pos: -99.5,20.5
- parent: 2
- - uid: 25763
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,20.5
- parent: 2
- - uid: 25764
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,20.5
- parent: 2
- - uid: 25765
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,20.5
- parent: 2
- - uid: 25766
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,20.5
- parent: 2
- - uid: 25767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,17.5
- parent: 2
- - uid: 25768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,16.5
- parent: 2
- - uid: 25769
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,15.5
- parent: 2
- - uid: 25770
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,14.5
- parent: 2
- - uid: 25771
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,12.5
- parent: 2
- - uid: 25772
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,10.5
- parent: 2
- - uid: 25773
- components:
- - type: Transform
- pos: -90.5,9.5
- parent: 2
- - uid: 25774
- components:
- - type: Transform
- pos: -89.5,9.5
- parent: 2
- - uid: 25775
- components:
- - type: Transform
- pos: -87.5,9.5
- parent: 2
- - uid: 25776
- components:
- - type: Transform
- pos: -86.5,9.5
- parent: 2
- - uid: 25777
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,9.5
- parent: 2
- - uid: 25778
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,9.5
- parent: 2
- - uid: 25779
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,9.5
- parent: 2
- - uid: 25780
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,9.5
- parent: 2
- - uid: 25781
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,7.5
- parent: 2
- - uid: 25782
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -109.5,28.5
- parent: 2
- - uid: 25783
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,84.5
- parent: 2
- - uid: 25784
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -108.5,40.5
- parent: 2
- - uid: 25785
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -108.5,41.5
- parent: 2
- - uid: 25786
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -108.5,43.5
- parent: 2
- - uid: 25787
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,45.5
- parent: 2
- - uid: 25788
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,43.5
- parent: 2
- - uid: 25789
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,42.5
- parent: 2
- - uid: 25790
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,40.5
- parent: 2
- - uid: 25791
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,39.5
- parent: 2
- - uid: 25792
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,38.5
- parent: 2
- - uid: 25793
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -128.5,37.5
- parent: 2
- - uid: 25794
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,34.5
- parent: 2
- - uid: 25795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,35.5
- parent: 2
- - uid: 25796
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,33.5
- parent: 2
- - uid: 25797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,31.5
- parent: 2
- - uid: 25798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,30.5
- parent: 2
- - uid: 25799
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -127.5,29.5
- parent: 2
- - uid: 25800
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -126.5,25.5
- parent: 2
- - uid: 25801
-=======
- pos: 95.5,14.5
- parent: 2
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 23
- - 15
- - 22
- - 24
- - 28
- - 18
- - 26
- - 27
- - 25
- - 21
- - 17
- - 20
- - 19
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerSecurityFilled
- entities:
- - uid: 25047
- components:
- - type: Transform
- pos: 55.5,13.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25048
- components:
- - type: Transform
- pos: 59.5,11.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25049
- components:
- - type: Transform
- pos: 59.5,13.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25050
- components:
- - type: Transform
- pos: 60.5,13.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25051
- components:
- - type: Transform
- pos: 14.5,-29.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25052
- components:
- - type: Transform
- pos: 53.5,13.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25053
- components:
- - type: Transform
- pos: 60.5,11.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25054
- components:
- - type: Transform
- pos: 8.5,-57.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25055
- components:
- - type: Transform
- pos: -23.5,2.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25056
- components:
- - type: Transform
- pos: -19.5,-27.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25057
- components:
- - type: Transform
- pos: 58.5,11.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25058
- components:
- - type: Transform
- pos: 3.5,65.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerSteel
- entities:
- - uid: 15548
- components:
- - type: Transform
- pos: 55.5,-34.5
- parent: 2
- - type: Lock
- locked: False
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 15549
- - 15556
- - 15555
- - 15554
- - 15553
- - 15552
- - 15551
- - 15550
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerSyndicatePersonal
- entities:
- - uid: 1231
- components:
- - type: Transform
- pos: -36.5,-55.5
- parent: 2
- - type: Lock
- locked: False
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8978093
- - 7.139378
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1233
- - 1234
- - 1232
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 38860
- components:
- - type: Transform
- pos: -22.5,27.5
- parent: 38344
- - type: Lock
- locked: False
- - 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:
- - 38863
- - 38866
- - 38864
- - 38865
- - 38861
- - 38862
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerWallMedical
- entities:
- - uid: 25059
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-51.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8856695
- - 7.0937095
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerWarden
- entities:
- - uid: 39235
- components:
- - type: Transform
- pos: 11.5,-5.5
- parent: 38344
-- proto: LockerWardenFilled
- entities:
- - uid: 14858
- components:
- - type: Transform
- pos: 55.5,6.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9016405
- - 7.1537914
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14865
- - 14862
- - 14859
- - 14860
- - 14861
- - 14864
- - 14863
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerWeldingSuppliesFilled
- entities:
- - uid: 25060
- components:
- - type: Transform
- pos: 10.500001,-14.5
- parent: 2
- - uid: 25061
- components:
- - type: Transform
- pos: -58.5,-3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: Log
- entities:
- - uid: 25062
- components:
- - type: Transform
- pos: -67.311874,62.552517
- parent: 2
- - uid: 25063
- components:
- - type: Transform
- pos: -67.39,62.818142
- parent: 2
- - uid: 25064
- components:
- - type: Transform
- pos: -67.29626,62.833767
- parent: 2
- - uid: 25065
- components:
- - type: Transform
- pos: -32.549194,-64.52818
- parent: 2
- - uid: 25066
- components:
- - type: Transform
- pos: -67.54625,62.583767
- parent: 2
- - uid: 25067
- components:
- - type: Transform
- pos: -32.292347,-64.430336
- parent: 2
-- proto: LuxuryPen
- entities:
- - uid: 25068
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -57.883034,-43.37372
- parent: 2
-- proto: MachineAnomalyGenerator
- entities:
- - uid: 25069
- components:
- - type: Transform
- pos: -22.5,-56.5
- parent: 2
-- proto: MachineAnomalyVessel
- entities:
- - uid: 25070
- components:
- - type: Transform
- pos: -13.5,-59.5
- parent: 2
- - uid: 25071
- components:
- - type: Transform
- pos: -12.5,-59.5
- parent: 2
- - uid: 25072
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-59.5
- parent: 2
-- proto: MachineAPE
- entities:
- - uid: 25073
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-59.5
- parent: 2
- - uid: 25074
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-59.5
- parent: 2
- - uid: 25075
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-59.5
- parent: 2
-- proto: MachineArtifactAnalyzer
- entities:
- - uid: 25076
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-40.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 15244
-- proto: MachineCentrifuge
- entities:
- - uid: 25077
- components:
- - type: Transform
- pos: 2.5,-30.5
- parent: 2
-- proto: MachineElectrolysisUnit
- entities:
- - uid: 25078
- components:
- - type: Transform
- pos: 3.5,-29.5
- parent: 2
-- proto: MachineFrame
- entities:
- - uid: 25079
- components:
- - type: Transform
- pos: -7.5,-41.5
- parent: 2
- - uid: 25080
- components:
- - type: Transform
- pos: -6.5,-41.5
- parent: 2
- - uid: 25081
- components:
- - type: Transform
- pos: -44.5,-8.5
- parent: 2
- - uid: 25082
- components:
- - type: Transform
- pos: -44.5,-9.5
- parent: 2
- - uid: 25083
- components:
- - type: Transform
- pos: -45.5,-8.5
- parent: 2
- - uid: 25084
- components:
- - type: Transform
- pos: -45.5,-9.5
- parent: 2
- - uid: 25085
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,58.5
- parent: 2
- - uid: 25086
- components:
- - type: Transform
- pos: -7.5,-52.5
- parent: 2
- - uid: 25087
- components:
- - type: Transform
- pos: -112.5,39.5
- parent: 2
- - uid: 25088
- components:
- - type: Transform
- pos: -37.5,-43.5
- parent: 2
- - uid: 25089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-35.5
- parent: 2
- - uid: 25090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,52.5
- parent: 2
- - uid: 25091
- components:
- - type: Transform
- pos: -112.5,37.5
- parent: 2
- - uid: 25092
- components:
- - type: Transform
- pos: -114.5,41.5
- parent: 2
- - uid: 25093
- components:
- - type: Transform
- pos: -112.5,41.5
- parent: 2
- - uid: 25094
- components:
- - type: Transform
- pos: -114.5,39.5
- parent: 2
- - uid: 25095
- components:
- - type: Transform
- pos: -114.5,37.5
- parent: 2
-- proto: MachineFrameDestroyed
- entities:
- - uid: 25096
- components:
- - type: Transform
- pos: -74.5,-27.5
- parent: 2
- - uid: 25097
- components:
- - type: Transform
- pos: -40.5,-55.5
- parent: 2
- - uid: 25098
- components:
- - type: Transform
- pos: 28.5,-65.5
- parent: 2
- - uid: 25099
- components:
- - type: Transform
- pos: -61.5,-27.5
- parent: 2
- - uid: 25100
- components:
- - type: Transform
- pos: -38.5,-35.5
- parent: 2
- - uid: 25101
- components:
- - type: Transform
- pos: -66.5,-36.5
- parent: 2
- - uid: 39236
- components:
- - type: Transform
- pos: 13.5,18.5
- parent: 38344
- - uid: 39237
- components:
- - type: Transform
- pos: 14.5,16.5
- parent: 38344
- - uid: 39238
- components:
- - type: Transform
- pos: 11.5,22.5
- parent: 38344
- - uid: 39239
- components:
- - type: Transform
- pos: -4.5,1.5
- parent: 38344
-- proto: MagazineBoxMagnum
- entities:
- - uid: 24994
- components:
- - type: Transform
- parent: 24993
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: MagazineBoxMagnumPractice
- entities:
- - uid: 24995
- components:
- - type: Transform
- parent: 24993
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: MagazineBoxPistolPractice
- entities:
- - uid: 25102
- components:
- - type: Transform
- pos: 56.684937,19.51429
- parent: 2
-- proto: MagazineLightRifle
- entities:
- - uid: 25103
- components:
- - type: Transform
- pos: 40.69412,17.532423
- parent: 2
- - uid: 25104
- components:
- - type: Transform
- pos: 40.4283,17.514713
- parent: 2
-- proto: MagazineLightRiflePractice
- entities:
- - uid: 25105
- components:
- - type: Transform
- pos: 41.438423,17.514713
- parent: 2
-- proto: MagazinePistol
- entities:
- - uid: 25106
- components:
- - type: Transform
- pos: 59.5,7.5
- parent: 2
- - uid: 25107
- components:
- - type: Transform
- pos: 59.5,8.5
- parent: 2
- - uid: 25108
- components:
- - type: Transform
- pos: 59.5,7.5
- parent: 2
- - uid: 25109
- components:
- - type: Transform
- pos: 59.5,7.5
- parent: 2
- - uid: 25110
- components:
- - type: Transform
- pos: 59.5,7.5
- parent: 2
- - uid: 25111
- components:
- - type: Transform
- pos: 59.5,8.5
- parent: 2
- - uid: 25112
- components:
- - type: Transform
- pos: 59.5,8.5
- parent: 2
- - uid: 25113
- components:
- - type: Transform
- pos: 59.5,8.5
- parent: 2
- - uid: 25114
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 59.565617,7.4610443
- parent: 2
- - uid: 25115
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 59.516697,8.451722
- parent: 2
- - uid: 25116
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 59.504467,8.378339
- parent: 2
- - uid: 25117
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 59.541157,7.4610443
- parent: 2
- - uid: 39240
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.3486,-2.849823
- parent: 38344
-- proto: MaintenanceFluffSpawner
- entities:
- - uid: 25118
- components:
- - type: Transform
- pos: -29.5,58.5
- parent: 2
- - uid: 25119
- components:
- - type: Transform
- pos: 7.5,48.5
- parent: 2
- - uid: 25120
- components:
- - type: Transform
- pos: -46.5,-48.5
- parent: 2
- - uid: 25121
- components:
- - type: Transform
- pos: -37.5,25.5
- parent: 2
- - uid: 25122
- components:
- - type: Transform
- pos: 36.5,-50.5
- parent: 2
- - uid: 25123
- components:
- - type: Transform
- pos: 36.5,-51.5
- parent: 2
- - uid: 25124
- components:
- - type: Transform
- pos: 20.5,-17.5
- parent: 2
- - uid: 25125
- components:
- - type: Transform
- pos: 22.5,68.5
- parent: 2
- - uid: 25126
- components:
- - type: Transform
- pos: 50.5,-53.5
- parent: 2
- - uid: 25127
- components:
- - type: Transform
- pos: -34.5,-56.5
- parent: 2
- - uid: 25128
- components:
- - type: Transform
- pos: -36.5,59.5
- parent: 2
- - uid: 25129
- components:
- - type: Transform
- pos: -45.5,-43.5
- parent: 2
- - uid: 25130
- components:
- - type: Transform
- pos: -45.5,-42.5
- parent: 2
- - uid: 25131
- components:
- - type: Transform
- pos: 13.5,61.5
- parent: 2
- - uid: 25132
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -115.5,21.5
- parent: 2
- - uid: 25133
- components:
- - type: Transform
- pos: -40.5,48.5
- parent: 2
-- proto: MaintenanceToolSpawner
- entities:
- - uid: 25134
- components:
- - type: Transform
- pos: 20.5,41.5
- parent: 2
- - uid: 25135
- components:
- - type: Transform
- pos: 9.5,64.5
- parent: 2
- - uid: 25136
- components:
- - type: Transform
- pos: 22.5,-20.5
- parent: 2
- - uid: 25137
- components:
- - type: Transform
- pos: 5.5,87.5
- parent: 2
- - uid: 25138
- components:
- - type: Transform
- pos: 19.5,41.5
- parent: 2
- - uid: 25139
- components:
- - type: Transform
- pos: -113.5,21.5
- parent: 2
- - uid: 25140
- components:
- - type: Transform
- pos: -42.5,1.5
- parent: 2
- - uid: 25141
- components:
- - type: Transform
- pos: -42.5,-5.5
- parent: 2
- - uid: 25142
- components:
- - type: Transform
- pos: -42.5,-4.5
- parent: 2
-- proto: MaintenanceWeaponSpawner
- entities:
- - uid: 25143
- components:
- - type: Transform
- pos: 46.5,-8.5
- parent: 2
- - uid: 25144
- components:
- - type: Transform
- pos: 20.5,-18.5
- parent: 2
-- proto: Matchbox
- entities:
- - uid: 25145
- components:
- - type: Transform
- pos: -45.316975,-32.250988
- parent: 2
- - uid: 25146
- components:
- - type: Transform
- pos: -62.510532,18.544167
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 25147
- components:
- - type: Transform
- pos: 72.99635,-45.369106
- parent: 2
-- proto: MaterialCloth
- entities:
- - uid: 25148
- components:
- - type: Transform
- pos: -13.644094,1.6663073
- parent: 2
- - type: Stack
- count: 29
- - uid: 25149
- components:
- - type: Transform
- pos: 30.5,-46.5
- parent: 2
-- proto: MaterialCloth1
- entities:
- - uid: 15070
->>>>>>> master
- components:
- - type: MetaData
- desc: Мягкое махровое полотенце.
- name: полотенце
- - type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -126.5,26.5
- parent: 2
- - uid: 25802
-=======
- parent: 15068
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15075
->>>>>>> master
- components:
- - type: MetaData
- desc: Мягкое махровое полотенце.
- name: полотенце
- - type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -126.5,22.5
- parent: 2
- - uid: 25803
-=======
- parent: 15073
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15080
->>>>>>> master
- components:
- - type: MetaData
- desc: Мягкое махровое полотенце.
- name: полотенце
- - type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: -126.5,23.5
- parent: 2
- - uid: 25804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -126.5,19.5
- parent: 2
- - uid: 25805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -121.5,14.5
- parent: 2
- - uid: 25806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -122.5,14.5
- parent: 2
- - uid: 25807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -118.5,14.5
- parent: 2
- - uid: 25808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,14.5
- parent: 2
- - uid: 25809
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -116.5,14.5
- parent: 2
- - uid: 25810
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -114.5,14.5
- parent: 2
- - uid: 25811
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,14.5
- parent: 2
- - uid: 25812
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,15.5
- parent: 2
- - uid: 25813
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,16.5
- parent: 2
- - uid: 25814
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,17.5
- parent: 2
- - uid: 25815
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,84.5
- parent: 2
- - uid: 25816
- components:
- - type: Transform
- pos: 84.5,-17.5
- parent: 2
- - uid: 25817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,84.5
- parent: 2
- - uid: 25818
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,84.5
- parent: 2
- - uid: 25819
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,85.5
- parent: 2
- - uid: 25820
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,86.5
- parent: 2
- - uid: 25821
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,86.5
- parent: 2
- - uid: 25822
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,86.5
- parent: 2
- - uid: 25823
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,86.5
- parent: 2
- - uid: 25824
- components:
- - type: Transform
- pos: -118.5,27.5
- parent: 2
- - uid: 25825
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,85.5
- parent: 2
- - uid: 25826
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,84.5
- parent: 2
- - uid: 25827
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,84.5
- parent: 2
- - uid: 25828
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -80.5,84.5
- parent: 2
- - uid: 25829
- components:
- - type: Transform
- pos: -110.5,47.5
- parent: 2
- - uid: 25830
- components:
- - type: Transform
- pos: -109.5,47.5
- parent: 2
- - uid: 25831
- components:
- - type: Transform
- pos: -110.5,50.5
- parent: 2
- - uid: 25832
- components:
- - type: Transform
- pos: -110.5,49.5
- parent: 2
- - uid: 25833
- components:
- - type: Transform
- pos: -110.5,52.5
- parent: 2
- - uid: 25834
- components:
- - type: Transform
- pos: -126.5,52.5
- parent: 2
- - uid: 25835
- components:
- - type: Transform
- pos: -126.5,51.5
- parent: 2
- - uid: 25836
- components:
- - type: Transform
- pos: -126.5,50.5
- parent: 2
- - uid: 25837
- components:
- - type: Transform
- pos: -127.5,47.5
- parent: 2
- - uid: 25838
- components:
- - type: Transform
- pos: -126.5,47.5
- parent: 2
- - uid: 25839
- components:
- - type: Transform
- pos: -126.5,48.5
- parent: 2
- - uid: 25840
- components:
- - type: Transform
- pos: 84.5,-19.5
- parent: 2
- - uid: 25841
- components:
- - type: Transform
- pos: 82.5,-23.5
- parent: 2
- - uid: 25842
- components:
- - type: Transform
- pos: 82.5,-25.5
- parent: 2
- - uid: 25843
- components:
- - type: Transform
- pos: 82.5,-26.5
- parent: 2
- - uid: 25844
- components:
- - type: Transform
- pos: 82.5,-27.5
- parent: 2
- - uid: 25845
- components:
- - type: Transform
- pos: 83.5,-27.5
- parent: 2
- - uid: 25846
- components:
- - type: Transform
- pos: 84.5,-27.5
- parent: 2
- - uid: 25847
- components:
- - type: Transform
- pos: 84.5,-25.5
- parent: 2
- - uid: 25848
- components:
- - type: Transform
- pos: 84.5,-24.5
- parent: 2
- - uid: 25849
- components:
- - type: Transform
- pos: 85.5,-25.5
- parent: 2
- - uid: 25850
- components:
- - type: Transform
- pos: 86.5,-25.5
- parent: 2
- - uid: 25851
- components:
- - type: Transform
- pos: 86.5,-27.5
- parent: 2
- - uid: 25852
- components:
- - type: Transform
- pos: 87.5,-27.5
- parent: 2
- - uid: 25853
- components:
- - type: Transform
- pos: 88.5,-27.5
- parent: 2
- - uid: 25854
- components:
- - type: Transform
- pos: 89.5,-27.5
- parent: 2
- - uid: 25855
- components:
- - type: Transform
- pos: 90.5,-27.5
- parent: 2
- - uid: 25856
- components:
- - type: Transform
- pos: 92.5,-27.5
- parent: 2
- - uid: 25857
- components:
- - type: Transform
- pos: 93.5,-27.5
- parent: 2
- - uid: 25858
- components:
- - type: Transform
- pos: 94.5,-27.5
- parent: 2
- - uid: 25859
- components:
- - type: Transform
- pos: 95.5,-27.5
- parent: 2
- - uid: 25860
- components:
- - type: Transform
- pos: 96.5,-26.5
- parent: 2
- - uid: 25861
- components:
- - type: Transform
- pos: 96.5,-25.5
- parent: 2
- - uid: 25862
- components:
- - type: Transform
- pos: 96.5,-22.5
- parent: 2
- - uid: 25863
- components:
- - type: Transform
- pos: 96.5,-23.5
- parent: 2
- - uid: 25864
- components:
- - type: Transform
- pos: 96.5,-21.5
- parent: 2
- - uid: 25865
- components:
- - type: Transform
- pos: 96.5,-20.5
- parent: 2
- - uid: 25866
- components:
- - type: Transform
- pos: 96.5,-19.5
- parent: 2
- - uid: 25867
- components:
- - type: Transform
- pos: 96.5,-18.5
- parent: 2
- - uid: 25868
- components:
- - type: Transform
- pos: 96.5,-16.5
- parent: 2
- - uid: 25869
- components:
- - type: Transform
- pos: 96.5,-14.5
- parent: 2
- - uid: 25870
- components:
- - type: Transform
- pos: 96.5,-13.5
- parent: 2
- - uid: 25871
- components:
- - type: Transform
- pos: 95.5,-12.5
- parent: 2
- - uid: 25872
- components:
- - type: Transform
- pos: 94.5,-12.5
- parent: 2
- - uid: 25873
- components:
- - type: Transform
- pos: 93.5,-12.5
- parent: 2
- - uid: 25874
- components:
- - type: Transform
- pos: 92.5,-12.5
- parent: 2
- - uid: 25875
- components:
- - type: Transform
- pos: 90.5,-12.5
- parent: 2
- - uid: 25876
-=======
- parent: 15078
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: MaterialDurathread
- entities:
- - uid: 25150
- components:
- - type: Transform
- pos: -13.332681,1.5413071
- parent: 2
-- proto: MaterialHideBear
- entities:
- - uid: 25151
- components:
- - type: Transform
- pos: -77.5,-3.5
- parent: 2
-- proto: MaterialReclaimer
- entities:
- - uid: 25152
- components:
- - type: Transform
- pos: 11.5,37.5
- parent: 2
-- proto: MaterialWoodPlank1
- entities:
- - uid: 39241
- components:
- - type: Transform
- pos: -20.5,13.5
- parent: 38344
- - uid: 39242
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,15.5
- parent: 38344
- - uid: 39243
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,17.5
- parent: 38344
- - uid: 39244
- components:
- - type: Transform
- pos: -3.5,12.5
- parent: 38344
- - uid: 39245
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,25.5
- parent: 38344
- - uid: 39246
- components:
- - type: Transform
- pos: -7.5,21.5
- parent: 38344
-- proto: MatterBinStockPart
- entities:
- - uid: 25153
- components:
- - type: Transform
- pos: -32.5,13.5
- parent: 2
- - uid: 25154
- components:
- - type: Transform
- pos: -9.5,-30.5
- parent: 2
-- proto: Mattress
- entities:
- - uid: 25155
- components:
- - type: Transform
- pos: 69.5,19.5
- parent: 2
- - uid: 25156
- components:
- - type: Transform
- pos: 62.5,21.5
- parent: 2
-- proto: MedicalBed
- entities:
- - uid: 25157
- components:
- - type: Transform
- pos: 32.5,-37.5
- parent: 2
- - uid: 25158
- components:
- - type: Transform
- pos: 70.5,16.5
- parent: 2
- - uid: 25159
- components:
- - type: Transform
- pos: 68.5,16.5
- parent: 2
- - uid: 25160
- components:
- - type: Transform
- pos: 38.5,-67.5
- parent: 2
- - uid: 25161
- components:
- - type: Transform
- pos: 42.5,-67.5
- parent: 2
- - uid: 25162
- components:
- - type: Transform
- pos: 63.5,-4.5
- parent: 2
- - uid: 25163
- components:
- - type: Transform
- pos: 36.5,-41.5
- parent: 2
- - uid: 25164
- components:
- - type: Transform
- pos: 34.5,-37.5
- parent: 2
- - uid: 25165
- components:
- - type: Transform
- pos: 38.5,-38.5
- parent: 2
- - uid: 25166
- components:
- - type: Transform
- pos: 38.5,-37.5
- parent: 2
- - uid: 25167
- components:
- - type: Transform
- pos: 30.5,-52.5
- parent: 2
-- proto: MedicalScanner
- entities:
- - uid: 25168
- components:
- - type: Transform
- pos: 10.5,-37.5
- parent: 2
-- proto: MedicalTechFab
- entities:
- - uid: 25169
- components:
- - type: Transform
- pos: 28.5,-23.5
- parent: 2
-- proto: Medkit
- entities:
- - uid: 25170
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 52.70655,-32.557785
- parent: 2
-- proto: MedkitBruteFilled
- entities:
- - uid: 25171
- components:
- - type: Transform
- pos: 28.497252,-25.883469
- parent: 2
- - uid: 25172
- components:
- - type: Transform
- pos: 28.497252,-25.688663
- parent: 2
- - uid: 25173
- components:
- - type: Transform
- pos: 60.678944,-5.763924
- parent: 2
- - uid: 25174
- components:
- - type: Transform
- pos: 28.492884,-26.049799
- parent: 2
- - uid: 39247
- components:
- - type: Transform
- pos: -8.4065895,-3.576355
- parent: 38344
-- proto: MedkitBurnFilled
- entities:
- - uid: 25175
- components:
- - type: Transform
- pos: 61.667484,-5.7213755
- parent: 2
- - uid: 25176
- components:
- - type: Transform
- pos: -63.42579,4.5084105
- parent: 2
- - uid: 25177
- components:
- - type: Transform
- pos: 28.492886,-24.471674
- parent: 2
- - uid: 25178
- components:
- - type: Transform
- pos: 28.479532,-24.696926
- parent: 2
- - uid: 25179
- components:
- - type: Transform
- pos: 28.479532,-25.0157
- parent: 2
- - uid: 25180
- components:
- - type: Transform
- pos: 69.40965,12.287214
- parent: 2
- - uid: 25181
- components:
- - type: Transform
- pos: -58.513634,3.5297406
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 39248
- components:
- - type: Transform
- pos: -7.484714,-3.576355
- parent: 38344
-- proto: MedkitCombatFilled
- entities:
- - uid: 25182
- components:
- - type: Transform
- pos: 60.215004,-4.3548026
- parent: 2
- - uid: 39249
- components:
- - type: Transform
- pos: -20.5,27.5
- parent: 38344
-- proto: MedkitFilled
- entities:
- - uid: 25183
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.53191,26.566101
- parent: 2
- - uid: 25184
- components:
- - type: Transform
- pos: 60.215675,-4.7851834
- parent: 2
- - uid: 25185
- components:
- - type: Transform
- pos: 68.3671,12.308491
- parent: 2
- - uid: 25186
- components:
- - type: Transform
- pos: 7.5,37.5
- parent: 2
- - uid: 25187
- components:
- - type: Transform
- pos: 14.52385,-22.462849
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 25188
- components:
- - type: Transform
- pos: -5.50263,18.494661
- parent: 2
- - uid: 25189
- components:
- - type: Transform
- pos: 23.182888,-42.310036
- parent: 2
- - uid: 25190
- components:
- - type: Transform
- pos: 81.5,-20.5
- parent: 2
- - uid: 25191
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.354641,-44.521282
- parent: 2
- - uid: 25192
- components:
- - type: Transform
- pos: 33.505825,42.528225
- parent: 2
- - uid: 25193
- components:
- - type: Transform
- pos: 36.50758,-18.520462
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 25194
- components:
- - type: Transform
- pos: 3.5583289,-13.353186
- parent: 2
- - uid: 25195
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 52.284676,-32.21403
- parent: 2
-- proto: MedkitOxygenFilled
- entities:
- - uid: 25196
- components:
- - type: Transform
- pos: 60.21086,-5.763924
- parent: 2
- - uid: 25197
- components:
- - type: Transform
- pos: 68.90039,12.308502
- parent: 2
- - uid: 25198
- components:
- - type: Transform
- pos: 32.55548,-26.078274
- parent: 2
- - uid: 25199
- components:
- - type: Transform
- pos: 32.55548,-25.79492
- parent: 2
- - uid: 25200
- components:
- - type: Transform
- pos: 32.570004,-26.357931
- parent: 2
- - uid: 25201
- components:
- - type: Transform
- pos: 4.558329,-13.337561
- parent: 2
- - uid: 39250
- components:
- - type: Transform
- pos: -8.7034645,-3.607605
- parent: 38344
-- proto: MedkitRadiationFilled
- entities:
- - uid: 25202
- components:
- - type: Transform
- pos: -63.5,0.5
- parent: 2
- - uid: 25203
- components:
- - type: Transform
- pos: 68.5,-4.5
- parent: 2
- - uid: 39251
- components:
- - type: Transform
- pos: -8.6722145,-3.045105
- parent: 38344
-- proto: MedkitToxinFilled
- entities:
- - uid: 25204
- components:
- - type: Transform
- pos: 68.5,-2.5
- parent: 2
- - uid: 25205
- components:
- - type: Transform
- pos: 32.55548,-24.92715
- parent: 2
- - uid: 25206
- components:
- - type: Transform
- pos: 32.55548,-25.175085
- parent: 2
- - uid: 25207
- components:
- - type: Transform
- pos: 61.13557,-5.7852044
- parent: 2
- - uid: 25208
- components:
- - type: Transform
- pos: 32.57,-24.607931
- parent: 2
- - uid: 25209
- components:
- - type: Transform
- pos: -24.596327,-43.40592
- parent: 2
- - uid: 39252
- components:
- - type: Transform
- pos: -7.906589,-3.62323
- parent: 38344
-- proto: Memorial
- entities:
- - uid: 25210
->>>>>>> master
- components:
- - type: MetaData
- desc: Монумент в честь победы над врагом! Павшие никогда не будут забыты...
- name: монумент Победы
- - type: Transform
-<<<<<<< HEAD
- pos: 89.5,-12.5
- parent: 2
- - uid: 25877
- components:
- - type: Transform
- pos: 88.5,-12.5
- parent: 2
- - uid: 25878
- components:
- - type: Transform
- pos: 87.5,-12.5
- parent: 2
- - uid: 25879
- components:
- - type: Transform
- pos: 85.5,-12.5
- parent: 2
- - uid: 25880
- components:
- - type: Transform
- pos: 84.5,-12.5
- parent: 2
- - uid: 25881
- components:
- - type: Transform
- pos: 83.5,-12.5
- parent: 2
- - uid: 25882
- components:
- - type: Transform
- pos: 82.5,-12.5
- parent: 2
- - uid: 25883
- components:
- - type: Transform
- pos: 82.5,-13.5
- parent: 2
- - uid: 25884
- components:
- - type: Transform
- pos: 82.5,-14.5
- parent: 2
- - uid: 25885
- components:
- - type: Transform
- pos: 82.5,-16.5
- parent: 2
- - uid: 25886
- components:
- - type: Transform
- pos: 84.5,-15.5
- parent: 2
- - uid: 25887
- components:
- - type: Transform
- pos: 84.5,-14.5
- parent: 2
- - uid: 25888
- components:
- - type: Transform
- pos: 85.5,-14.5
- parent: 2
- - uid: 25889
- components:
- - type: Transform
- pos: 86.5,-14.5
- parent: 2
- - uid: 25890
- components:
- - type: Transform
- pos: 88.5,-14.5
- parent: 2
- - uid: 25891
- components:
- - type: Transform
- pos: 89.5,-14.5
- parent: 2
- - uid: 25892
- components:
- - type: Transform
- pos: 90.5,-14.5
- parent: 2
- - uid: 25893
- components:
- - type: Transform
- pos: 92.5,-14.5
- parent: 2
- - uid: 25894
- components:
- - type: Transform
- pos: 93.5,-14.5
- parent: 2
- - uid: 25895
- components:
- - type: Transform
- pos: 94.5,-14.5
- parent: 2
- - uid: 25896
- components:
- - type: Transform
- pos: 94.5,-15.5
- parent: 2
- - uid: 25897
- components:
- - type: Transform
- pos: 94.5,-17.5
- parent: 2
- - uid: 25898
- components:
- - type: Transform
- pos: 94.5,-18.5
- parent: 2
- - uid: 25899
- components:
- - type: Transform
- pos: 94.5,-19.5
- parent: 2
- - uid: 25900
- components:
- - type: Transform
- pos: 94.5,-20.5
- parent: 2
- - uid: 25901
- components:
- - type: Transform
- pos: 94.5,-21.5
- parent: 2
- - uid: 25902
- components:
- - type: Transform
- pos: 94.5,-22.5
- parent: 2
- - uid: 25903
- components:
- - type: Transform
- pos: 94.5,-24.5
- parent: 2
- - uid: 25904
- components:
- - type: Transform
- pos: 94.5,-25.5
- parent: 2
- - uid: 25905
- components:
- - type: Transform
- pos: 93.5,-25.5
- parent: 2
- - uid: 25906
- components:
- - type: Transform
- pos: 92.5,-25.5
- parent: 2
- - uid: 25907
- components:
- - type: Transform
- pos: 90.5,-25.5
- parent: 2
- - uid: 25908
- components:
- - type: Transform
- pos: 89.5,-25.5
- parent: 2
- - uid: 25909
- components:
- - type: Transform
- pos: 88.5,-25.5
- parent: 2
- - uid: 25910
- components:
- - type: Transform
- pos: 96.5,-17.5
- parent: 2
- - uid: 25911
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,-38.5
- parent: 2
- - uid: 25912
- components:
- - type: Transform
- pos: 59.5,-51.5
- parent: 2
- - uid: 25913
- components:
- - type: Transform
- pos: 80.5,13.5
- parent: 2
- - uid: 25914
- components:
- - type: Transform
- pos: 94.5,13.5
- parent: 2
- - uid: 25915
- components:
- - type: Transform
- pos: 80.5,28.5
- parent: 2
- - uid: 25916
- components:
- - type: Transform
- pos: 82.5,15.5
- parent: 2
- - uid: 25917
- components:
- - type: Transform
- pos: 83.5,15.5
- parent: 2
- - uid: 25918
- components:
- - type: Transform
- pos: 86.5,15.5
- parent: 2
- - uid: 25919
- components:
- - type: Transform
- pos: 90.5,17.5
- parent: 2
- - uid: 25920
- components:
- - type: Transform
- pos: 90.5,18.5
- parent: 2
- - uid: 25921
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 92.5,5.5
- parent: 2
- - uid: 25922
- components:
- - type: Transform
- pos: 80.5,29.5
- parent: 2
- - uid: 25923
- components:
- - type: Transform
- pos: 80.5,30.5
- parent: 2
- - uid: 25924
- components:
- - type: Transform
- pos: 81.5,18.5
- parent: 2
- - uid: 25925
- components:
- - type: Transform
- pos: 81.5,19.5
- parent: 2
- - uid: 25926
- components:
- - type: Transform
- pos: 81.5,24.5
- parent: 2
- - uid: 25927
- components:
- - type: Transform
- pos: 81.5,25.5
- parent: 2
- - uid: 25928
- components:
- - type: Transform
- pos: 80.5,27.5
- parent: 2
- - uid: 25929
- components:
- - type: Transform
- pos: 81.5,20.5
- parent: 2
- - uid: 25930
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,42.5
- parent: 2
- - uid: 25931
- components:
- - type: Transform
- pos: 55.5,-51.5
- parent: 2
- - uid: 25932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 85.5,-4.5
- parent: 2
- - uid: 25933
- components:
- - type: Transform
- pos: 93.5,-5.5
- parent: 2
- - uid: 25934
- components:
- - type: Transform
- pos: 94.5,-5.5
- parent: 2
- - uid: 25935
- components:
- - type: Transform
- pos: 95.5,-5.5
- parent: 2
- - uid: 25936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-85.5
- parent: 2
- - uid: 25937
- components:
- - type: Transform
- pos: 11.5,-84.5
- parent: 2
- - uid: 25938
- components:
- - type: Transform
- pos: 6.5,-84.5
- parent: 2
- - uid: 25939
- components:
- - type: Transform
- pos: 7.5,-84.5
- parent: 2
- - uid: 25940
- components:
- - type: Transform
- pos: 12.5,-84.5
- parent: 2
- - uid: 25941
- components:
- - type: Transform
- pos: 13.5,-84.5
- parent: 2
- - uid: 25942
- components:
- - type: Transform
- pos: 13.5,-82.5
- parent: 2
- - uid: 25943
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-83.5
- parent: 2
- - uid: 25944
-=======
- pos: 71.5,-16.5
- parent: 2
-- proto: MimanaSeeds
- entities:
- - uid: 25211
- components:
- - type: Transform
- pos: -70.36416,-20.707722
- parent: 2
-- proto: MinimoogInstrument
- entities:
- - uid: 25212
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-55.5
- parent: 2
- - uid: 25213
- components:
- - type: Transform
- pos: 70.5,-46.5
- parent: 2
-- proto: MiningDrill
- entities:
- - uid: 39253
- components:
- - type: Transform
- pos: 13.5,32.5
- parent: 38344
-- proto: Mirror
- entities:
- - uid: 25214
- components:
- - type: Transform
- pos: -11.5,55.5
- parent: 2
- - uid: 25215
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-60.5
- parent: 2
- - uid: 25216
- components:
- - type: Transform
- pos: 7.5,-38.5
- parent: 2
- - uid: 25217
- components:
- - type: Transform
- pos: -5.5,55.5
- parent: 2
- - uid: 25218
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-15.5
- parent: 2
- - uid: 25219
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-16.5
- parent: 2
- - uid: 25220
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,45.5
- parent: 2
- - uid: 25221
- components:
- - type: Transform
- pos: 39.5,-25.5
- parent: 2
- - uid: 25222
- components:
- - type: Transform
- pos: -5.5,35.5
- parent: 2
- - uid: 25223
- components:
- - type: Transform
- pos: 25.5,-50.5
- parent: 2
- - uid: 25224
- components:
- - type: Transform
- pos: -5.5,29.5
- parent: 2
- - uid: 25225
- components:
- - type: Transform
- pos: 30.5,-36.5
- parent: 2
- - uid: 25226
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-51.5
- parent: 2
- - uid: 25227
- components:
- - type: Transform
- pos: 13.5,6.5
- parent: 2
-- proto: MobCatCake
- entities:
- - uid: 25228
- components:
- - type: Transform
- pos: -57.435246,-48.499123
- parent: 2
-- proto: ModularGrenade
- entities:
- - uid: 25229
- components:
- - type: Transform
- pos: 2.4978142,-31.385086
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 25230
- components:
- - type: Transform
- pos: 2.4978142,-31.385086
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 25231
- components:
- - type: Transform
- pos: 2.4978142,-31.385086
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 25232
- components:
- - type: Transform
- pos: 2.4978142,-31.385086
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 25233
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.621467,-47.40556
- parent: 2
- - uid: 25234
- components:
- - type: Transform
- pos: 2.4978142,-31.385086
- parent: 2
- - type: Physics
- canCollide: False
-- proto: MopBucket
- entities:
- - uid: 25235
- components:
- - type: Transform
- pos: 22.477804,-17.365536
- parent: 2
-- proto: MopBucketFull
- entities:
- - uid: 25236
- components:
- - type: Transform
- pos: 91.50001,7.5
- parent: 2
- - uid: 25237
- components:
- - type: Transform
- pos: -7.5,46.5
- parent: 2
- - uid: 25238
- components:
- - type: Transform
- pos: -77.5,-29.5
- parent: 2
- - uid: 25239
- components:
- - type: Transform
- pos: -40.5,-61.5
- parent: 2
- - uid: 39254
- components:
- - type: Transform
- pos: -13.5,13.5
- parent: 38344
-- proto: MopItem
- entities:
- - uid: 25240
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 91.478065,7.477974
- parent: 2
- - uid: 25241
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.56199,-62.480965
- parent: 2
- - uid: 25242
- components:
- - type: Transform
- pos: -7.4661264,46.474117
- parent: 2
- - uid: 25243
- components:
- - type: Transform
- pos: 3.517602,-48.53627
- parent: 2
- - uid: 25244
- components:
- - type: Transform
- pos: 0.16766292,54.493546
- parent: 2
- - uid: 25245
- components:
- - type: Transform
- pos: 0.53458077,54.493546
- parent: 2
- - uid: 25246
- components:
- - type: Transform
- pos: -77.562874,-29.50979
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 25247
- components:
- - type: Transform
- pos: 22.477804,-17.490536
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 39255
- components:
- - type: Transform
- pos: -13.487375,13.4696045
- parent: 38344
-- proto: Morgue
- entities:
- - uid: 25248
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-51.5
- parent: 2
- - uid: 25249
- components:
- - type: Transform
- pos: 9.5,-48.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25250
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-61.5
- parent: 2
- - uid: 25251
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-67.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25252
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-65.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25253
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-63.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-61.5
- parent: 2
- - uid: 25255
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-61.5
- parent: 2
- - uid: 25256
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-73.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25257
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-69.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25258
- components:
- - type: Transform
- pos: 8.5,-48.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25259
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-52.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25260
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-61.5
- parent: 2
- - uid: 25261
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-61.5
- parent: 2
- - uid: 25262
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-75.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25263
- components:
- - type: Transform
- pos: 10.5,-48.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25264
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-52.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25265
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-52.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25266
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-52.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25267
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,8.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 25268
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-52.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 39256
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-4.5
- parent: 38344
- - 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: 39257
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-5.5
- parent: 38344
-- proto: MousetrapArmed
- entities:
- - uid: 25269
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.503742,-63.27595
- parent: 2
- - type: StepTriggerActive
- - uid: 25270
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.561108,47.6237
- parent: 2
- - uid: 25271
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5169544,33.6237
- parent: 2
- - type: StepTriggerActive
- - uid: 25272
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.482983,47.6237
- parent: 2
-- proto: Multitool
- entities:
- - uid: 25274
- components:
- - type: Transform
- parent: 25273
- - type: Physics
- canCollide: False
- - uid: 25275
- components:
- - type: Transform
- pos: 50.207417,5.437244
- parent: 2
- - uid: 25276
- components:
- - type: Transform
- pos: -44.5,4.5
- parent: 2
- - uid: 25277
- components:
- - type: Transform
- pos: -9.5,-30.5
- parent: 2
- - uid: 25278
- components:
- - type: Transform
- pos: -5.53388,17.811007
- parent: 2
- - uid: 25279
- components:
- - type: Transform
- pos: -56.627308,-13.403177
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 25280
- components:
- - type: Transform
- pos: -26.474976,-47.36569
- parent: 2
- - uid: 25281
- components:
- - type: Transform
- pos: -74.57158,-8.273829
- parent: 2
- - uid: 25282
- components:
- - type: Transform
- pos: -37.6697,8.6269455
- parent: 2
- - uid: 25283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.467197,-41.43791
- parent: 2
- - uid: 25284
- components:
- - type: Transform
- pos: -61.506416,13.606666
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 25285
- components:
- - type: Transform
- pos: 20.465109,21.47138
- parent: 2
-- proto: MusicalLungInstrument
- entities:
- - uid: 25286
- components:
- - type: Transform
- pos: -6.5073404,53.184387
- parent: 2
-- proto: MusicBoxInstrument
- entities:
- - uid: 25287
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 85.68188,7.476206
- parent: 2
-- proto: Nettle
- entities:
- - uid: 25288
- components:
- - type: MetaData
- desc: Удобный веник из свежей берёзы.
- name: банный веник
- - type: Transform
- pos: -67.42256,58.902588
- parent: 2
- - uid: 25289
->>>>>>> master
- components:
- - type: MetaData
- desc: Удобный веник из свежей берёзы.
- name: банный веник
- - type: Transform
-<<<<<<< HEAD
- pos: 12.5,-81.5
- parent: 2
- - uid: 25945
- components:
- - type: Transform
- pos: -0.5,62.5
- parent: 2
- - uid: 25946
- components:
- - type: Transform
- pos: -0.5,64.5
- parent: 2
- - uid: 25947
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,70.5
- parent: 2
- - uid: 38755
- components:
- - type: Transform
- pos: 0.5,4.5
- parent: 38714
- - uid: 38756
- components:
- - type: Transform
- pos: 1.5,5.5
- parent: 38714
- - uid: 38757
- components:
- - type: Transform
- pos: 2.5,4.5
- parent: 38714
- - uid: 38758
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 38714
- - uid: 38759
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,2.5
- parent: 38714
- - uid: 38760
- components:
- - type: Transform
- pos: 0.5,5.5
- parent: 38714
- - uid: 38761
- components:
- - type: Transform
- pos: 2.5,3.5
- parent: 38714
- - uid: 38762
- components:
- - type: Transform
- pos: 2.5,5.5
- parent: 38714
- - uid: 38763
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,2.5
- parent: 38714
-- proto: GrilleBroken
- entities:
- - uid: 25948
- components:
- - type: Transform
- pos: -84.5,15.5
- parent: 2
- - uid: 25949
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -83.5,12.5
- parent: 2
- - uid: 25950
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,44.5
- parent: 2
- - uid: 25951
- components:
- - type: Transform
- pos: -27.5,-24.5
- parent: 2
- - uid: 25952
- components:
- - type: Transform
- pos: -38.5,-30.5
- parent: 2
- - uid: 25953
- components:
- - type: Transform
- pos: -40.5,-30.5
- parent: 2
- - uid: 25954
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,33.5
- parent: 2
- - uid: 25955
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-68.5
- parent: 2
- - uid: 25956
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,33.5
- parent: 2
- - uid: 25957
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 68.5,33.5
- parent: 2
- - uid: 25958
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,5.5
- parent: 2
- - uid: 25959
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-68.5
- parent: 2
- - uid: 25960
- components:
- - type: Transform
- pos: 1.5,46.5
- parent: 2
- - uid: 25961
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-36.5
- parent: 2
- - uid: 25962
- components:
- - type: Transform
- pos: 57.5,-56.5
- parent: 2
- - uid: 25963
- components:
- - type: Transform
- pos: -105.5,26.5
- parent: 2
- - uid: 25964
- components:
- - type: Transform
- pos: -91.5,26.5
- parent: 2
- - uid: 25965
- components:
- - type: Transform
- pos: -88.5,26.5
- parent: 2
- - uid: 25966
- components:
- - type: Transform
- pos: -87.5,26.5
- parent: 2
- - uid: 25967
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,24.5
- parent: 2
- - uid: 25968
- components:
- - type: Transform
- pos: -91.5,9.5
- parent: 2
- - uid: 25969
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,22.5
- parent: 2
- - uid: 25970
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,25.5
- parent: 2
- - uid: 25971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,22.5
- parent: 2
- - uid: 25972
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -88.5,9.5
- parent: 2
- - uid: 25973
-=======
- rot: -3.141592653589793 rad
- pos: -64.41377,61.829094
- parent: 2
-- proto: NetworkConfigurator
- entities:
- - uid: 25290
- components:
- - type: Transform
- pos: -25.317003,-43.32779
- parent: 2
-- proto: NitrogenCanister
- entities:
- - uid: 25291
- components:
- - type: Transform
- pos: -21.5,-60.5
- parent: 2
- - uid: 25292
- components:
- - type: Transform
- pos: -43.5,-43.5
- parent: 2
- - uid: 25293
- components:
- - type: Transform
- pos: 63.5,13.5
- parent: 2
- - uid: 25294
- components:
- - type: Transform
- pos: -28.5,-50.5
- parent: 2
- - uid: 25295
- components:
- - type: Transform
- pos: -28.5,-49.5
- parent: 2
- - uid: 25296
- components:
- - type: Transform
- pos: 19.5,28.5
- parent: 2
- - uid: 25297
- components:
- - type: Transform
- pos: 36.5,31.5
- parent: 2
- - uid: 25298
- components:
- - type: Transform
- pos: -120.5,17.5
- parent: 2
- - uid: 25299
- components:
- - type: Transform
- pos: 91.5,26.5
- parent: 2
- - uid: 25300
- components:
- - type: Transform
- pos: -36.5,-51.5
- parent: 2
- - uid: 25301
- components:
- - type: Transform
- pos: -70.49999,37.5
- parent: 2
- - uid: 25302
- components:
- - type: Transform
- pos: -23.5,25.500002
- parent: 2
- - uid: 25303
- components:
- - type: Transform
- pos: -7.5,-11.5
- parent: 2
- - uid: 39258
- components:
- - type: Transform
- pos: 16.5,2.5
- parent: 38344
-- proto: NitrogenTankFilled
- entities:
- - uid: 25304
- components:
- - type: Transform
- pos: -77.649734,-18.332254
- parent: 2
- - uid: 25305
- components:
- - type: Transform
- pos: -67.52232,-27.640682
- parent: 2
- - uid: 25306
- components:
- - type: Transform
- pos: -67.65508,-27.434193
- parent: 2
- - uid: 25307
- components:
- - type: Transform
- pos: -77.516975,-18.553493
- parent: 2
-- proto: NitrousOxideCanister
- entities:
- - uid: 25308
- components:
- - type: Transform
- pos: -48.5,25.5
- parent: 2
- - uid: 25309
- components:
- - type: Transform
- pos: 78.5,23.5
- parent: 2
- - uid: 25310
- components:
- - type: Transform
- pos: -48.5,24.5
- parent: 2
-- proto: NitrousOxideTankFilled
- entities:
- - uid: 25311
- components:
- - type: Transform
- pos: 33.549213,-46.450466
- parent: 2
-- proto: NocturineChemistryBottle
- entities:
- - uid: 25312
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -39.48754,54.425358
- parent: 2
-- proto: NodeScanner
- entities:
- - uid: 25313
- components:
- - type: Transform
- pos: -9.606294,-31.675497
- parent: 2
- - uid: 25314
- components:
- - type: Transform
- pos: -25.606216,-28.370153
- parent: 2
-- proto: NoticeBoard
- entities:
- - uid: 25315
- components:
- - type: Transform
- pos: -65.5,-44.5
- parent: 2
- - uid: 25316
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,31.5
- parent: 2
- - uid: 25317
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,2.5
- parent: 2
- - uid: 25318
- components:
- - type: Transform
- pos: 44.5,6.5
- parent: 2
- - uid: 25319
- components:
- - type: Transform
- pos: 10.5,-32.5
- parent: 2
- - uid: 25320
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-16.5
- parent: 2
- - uid: 25321
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-39.5
- parent: 2
-- proto: NTFlag
- entities:
- - uid: 25322
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-9.5
- parent: 2
-- proto: NuclearBomb
- entities:
- - uid: 25323
- components:
- - type: Transform
- pos: 24.5,18.5
- parent: 2
-- proto: NuclearBombKeg
- entities:
- - uid: 25324
->>>>>>> master
- components:
- - type: MetaData
- name: дельта-тян
- - type: Transform
-<<<<<<< HEAD
- pos: -102.5,26.5
- parent: 2
- - uid: 25974
- components:
- - type: Transform
- pos: -96.5,26.5
- parent: 2
- - uid: 25975
- components:
- - type: Transform
- pos: -97.5,26.5
- parent: 2
- - uid: 25976
- components:
- - type: Transform
- pos: -80.5,22.5
- parent: 2
- - uid: 25977
- components:
- - type: Transform
- pos: -92.5,20.5
- parent: 2
- - uid: 25978
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,9.5
- parent: 2
- - uid: 25979
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -109.5,19.5
- parent: 2
- - uid: 25980
- components:
- - type: Transform
- pos: -108.5,20.5
- parent: 2
- - uid: 25981
- components:
- - type: Transform
- pos: -101.5,20.5
- parent: 2
- - uid: 25982
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -98.5,20.5
- parent: 2
- - uid: 25983
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,20.5
- parent: 2
- - uid: 25984
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,19.5
- parent: 2
- - uid: 25985
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,13.5
- parent: 2
- - uid: 25986
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -108.5,44.5
- parent: 2
- - uid: 25987
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -108.5,42.5
- parent: 2
- - uid: 25988
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -128.5,41.5
- parent: 2
- - uid: 25989
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,44.5
- parent: 2
- - uid: 25990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,46.5
- parent: 2
- - uid: 25991
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,29.5
- parent: 2
- - uid: 25992
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -128.5,32.5
- parent: 2
- - uid: 25993
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -126.5,24.5
- parent: 2
- - uid: 25994
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -126.5,27.5
- parent: 2
- - uid: 25995
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -126.5,28.5
- parent: 2
- - uid: 25996
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,18.5
- parent: 2
- - uid: 25997
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -111.5,14.5
- parent: 2
- - uid: 25998
- components:
- - type: Transform
- pos: -112.5,14.5
- parent: 2
- - uid: 25999
- components:
- - type: Transform
- pos: -115.5,14.5
- parent: 2
- - uid: 26000
- components:
- - type: Transform
- pos: -119.5,14.5
- parent: 2
- - uid: 26001
- components:
- - type: Transform
- pos: -123.5,14.5
- parent: 2
- - uid: 26002
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -128.5,47.5
- parent: 2
- - uid: 26003
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -126.5,49.5
- parent: 2
- - uid: 26004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -110.5,51.5
- parent: 2
- - uid: 26005
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -110.5,48.5
- parent: 2
- - uid: 26006
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,47.5
- parent: 2
- - uid: 26007
- components:
- - type: Transform
- pos: -108.5,46.5
- parent: 2
- - uid: 26008
- components:
- - type: Transform
- pos: -109.5,29.5
- parent: 2
- - uid: 26009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-60.5
- parent: 2
- - uid: 26010
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-55.5
- parent: 2
- - uid: 26011
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-82.5
- parent: 2
- - uid: 26012
- components:
- - type: Transform
- pos: 12.5,-80.5
- parent: 2
- - uid: 26013
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-80.5
- parent: 2
- - uid: 26014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-82.5
- parent: 2
-- proto: GunSafe
- entities:
- - uid: 13972
-=======
- pos: -1.5,36.5
- parent: 2
-- proto: NukeDiskFake
- entities:
- - uid: 25325
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 9.230305,72.39888
- parent: 2
- - uid: 39259
- components:
- - type: Transform
- pos: 8.5,10.5
- parent: 38344
-- proto: OcarinaInstrument
- entities:
- - uid: 25326
- components:
- - type: Transform
- pos: -6.4073434,52.61495
- parent: 2
-- proto: Ointment
- entities:
- - uid: 25327
- components:
- - type: Transform
- pos: -31.3629,-42.28948
- parent: 2
- - uid: 25328
- components:
- - type: Transform
- pos: 26.607332,-24.483286
- parent: 2
- - uid: 25329
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.684036,-5.195931
- parent: 2
-- proto: OperatingTable
- entities:
- - uid: 25330
- components:
- - type: Transform
- pos: -0.5,-13.5
- parent: 2
- - uid: 25331
- components:
- - type: Transform
- pos: 6.5,-49.5
- parent: 2
- - uid: 25332
- components:
- - type: Transform
- pos: 33.5,-51.5
- parent: 2
- - uid: 25333
- components:
- - type: Transform
- pos: 33.5,-47.5
- parent: 2
- - uid: 25334
- components:
- - type: Transform
- pos: 46.5,-37.5
- parent: 2
-- proto: OreBag
- entities:
- - uid: 25335
- components:
- - type: Transform
- pos: 30.5,32.5
- parent: 2
- - uid: 39260
- components:
- - type: Transform
- pos: 1.6969376,7.2251587
- parent: 38344
- - uid: 39261
- components:
- - type: Transform
- pos: -20.038795,15.526978
- parent: 38344
- - uid: 39262
- components:
- - type: Transform
- pos: 1.3219376,7.1314087
- parent: 38344
- - uid: 39263
- components:
- - type: Transform
- pos: 1.5406876,7.5689087
- parent: 38344
- - uid: 39264
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.43044233,2.6262207
- parent: 38344
-- proto: OreBox
- entities:
- - uid: 25336
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 52.499996,-47.5
+ pos: -50.5,4.5
parent: 2
- - uid: 39265
- components:
- - type: Transform
- pos: -4.5,2.5
- parent: 38344
- - uid: 39266
- components:
- - type: Transform
- pos: -6.5,3.5
- parent: 38344
- - uid: 39267
- components:
- - type: Transform
- pos: -8.5,14.5
- parent: 38344
- - uid: 39268
- components:
- - type: Transform
- pos: -8.5,15.5
- parent: 38344
- - uid: 39269
- components:
- - type: Transform
- pos: 0.5,16.5
- parent: 38344
- - uid: 39270
- components:
- - type: Transform
- pos: -1.5,3.5
- parent: 38344
- - uid: 39271
- components:
- - type: Transform
- pos: -5.5,1.5
- parent: 38344
- - uid: 39272
- components:
- - type: Transform
- pos: -2.5,1.5
- parent: 38344
-- proto: OreProcessor
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ClosetWallEmergencyFilledRandom
entities:
- - uid: 25337
+ - uid: 14193
components:
- type: Transform
- pos: 34.5,32.5
+ pos: 11.5,-2.5
parent: 2
- - uid: 39273
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 38344
-- proto: OrganDionaStomach
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ClosetWallOrange
entities:
- - uid: 25338
+ - uid: 14194
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 43.42473,-42.512604
- parent: 2
-- proto: OrganHumanKidneys
- entities:
- - uid: 15462
- components:
- - type: Transform
- parent: 15461
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: OxygenCanister
- entities:
- - uid: 25339
- components:
- - type: Transform
- pos: -10.5,-59.5
- parent: 2
- - uid: 25340
- components:
- - type: Transform
- pos: 62.5,13.5
- parent: 2
- - uid: 25341
- components:
- - type: Transform
- pos: 32.5,28.5
- parent: 2
- - uid: 25342
- components:
- - type: Transform
- pos: -29.5,-50.5
- parent: 2
- - uid: 25343
- components:
- - type: Transform
- pos: -76.5,-27.5
- parent: 2
- - uid: 25344
- components:
- - type: Transform
- pos: -41.5,-15.5
- parent: 2
- - uid: 25345
- components:
- - type: Transform
- pos: -47.5,-17.5
- parent: 2
- - uid: 25346
- components:
- - type: Transform
- pos: 19.5,27.5
- parent: 2
- - uid: 25347
->>>>>>> master
- components:
- - type: Transform
-<<<<<<< HEAD
- pos: 21.5,63.5
+ pos: 81.5,2.5
parent: 2
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.14673
+ temperature: 293.1496
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -373774,5580 +103238,4520 @@ entities:
showEnts: False
occludes: True
ents:
- - 13974
- - 13976
- - 13975
- - 13973
- - 13977
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: GunSafeDisabler
- entities:
- - uid: 26015
- components:
- - type: Transform
- pos: 57.5,6.5
- parent: 2
-- proto: Gyroscope
- entities:
- - uid: 38764
- components:
- - type: Transform
- pos: 1.5,-0.5
- parent: 38714
-- proto: Handcuffs
- entities:
- - uid: 26016
- components:
- - type: Transform
- pos: 72.458984,23.247822
- parent: 2
- - uid: 26017
- components:
- - type: Transform
- pos: -2.4961772,18.561342
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26018
- components:
- - type: Transform
- pos: 27.5,67.5
- parent: 2
- - uid: 26019
- components:
- - type: Transform
- pos: 2.544464,65.52478
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26020
- components:
- - type: Transform
- pos: -22.414896,0.570341
- parent: 2
- - uid: 26021
- components:
- - type: Transform
- pos: -2.5,14.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26022
- components:
- - type: Transform
- pos: 6.5382733,-63.500446
- parent: 2
- - uid: 26023
- components:
- - type: Transform
- pos: -18.563082,-27.472807
- parent: 2
-- proto: HandheldGPSBasic
- entities:
- - uid: 26024
- components:
- - type: Transform
- pos: -61.501175,11.534443
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26025
- components:
- - type: Transform
- pos: -15.558818,-11.480184
- parent: 2
- - uid: 26026
- components:
- - type: Transform
- pos: 24.512302,38.588974
- parent: 2
- - uid: 26027
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.926834,38.688385
- parent: 2
-- proto: HandheldHealthAnalyzer
- entities:
- - uid: 26028
- components:
- - type: Transform
- pos: -9.180932,-52.317867
- parent: 2
- - uid: 26029
- components:
- - type: Transform
- pos: 70.53282,12.308504
- parent: 2
- - uid: 26030
- components:
- - type: Transform
- pos: 6.7585454,-48.411568
- parent: 2
- - uid: 26031
- components:
- - type: Transform
- pos: 4.213424,-13.463173
- parent: 2
- - uid: 26032
+ - 14197
+ - 14195
+ - 14196
+ - uid: 14198
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 60.684036,-4.367806
- parent: 2
-- proto: HandLabeler
- entities:
- - uid: 1416
- components:
- - type: Transform
- parent: 1415
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 26033
-=======
- pos: -31.5,63.500004
- parent: 2
- - uid: 25348
- components:
- - type: Transform
- pos: -45.5,-21.5
- parent: 2
- - uid: 25349
- components:
- - type: Transform
- pos: 36.5,27.5
- parent: 2
- - uid: 25350
- components:
- - type: Transform
- pos: -29.5,-49.5
- parent: 2
- - uid: 25351
- components:
- - type: Transform
- pos: -122.5,17.5
- parent: 2
- - uid: 25352
- components:
- - type: Transform
- pos: 91.5,25.5
- parent: 2
- - uid: 25353
- components:
- - type: Transform
- pos: -38.5,-51.5
- parent: 2
- - uid: 25354
- components:
- - type: Transform
- pos: 11.5,90.5
- parent: 2
- - uid: 25355
- components:
- - type: Transform
- pos: -70.50001,33.5
- parent: 2
- - uid: 25356
- components:
- - type: Transform
- pos: -47.5,-35.5
- parent: 2
- - uid: 25357
- components:
- - type: Transform
- pos: -38.5,43.5
- parent: 2
- - uid: 25358
- components:
- - type: Transform
- pos: -7.5,-12.5
- parent: 2
- - uid: 39274
- components:
- - type: Transform
- pos: -18.5,36.5
- parent: 38344
- - uid: 39275
- components:
- - type: Transform
- pos: 16.5,4.5
- parent: 38344
-- proto: PaintingRedBlueYellow
- entities:
- - uid: 25359
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-50.5
- parent: 2
-- proto: PaintingSkeletonCigarette
- entities:
- - uid: 25360
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,33.5
- parent: 2
-- proto: PaintingTheGreatWave
- entities:
- - uid: 25361
- components:
- - type: Transform
- pos: -54.5,-47.5
- parent: 2
-- proto: PaintingTheKiss
- entities:
- - uid: 25362
- components:
- - type: Transform
- pos: 14.5,-2.5
- parent: 2
-- proto: Paper
- entities:
- - uid: 3
->>>>>>> master
- components:
- - type: MetaData
- name: рисунок
- - type: Transform
-<<<<<<< HEAD
- pos: -65.41571,4.534443
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26034
-=======
- pos: 53.64205,-37.601414
+ pos: 81.5,3.5
parent: 2
- - type: Paper
- content: >-
- [color=#720505]██[color=#220404]████[color=#720505]████[color=#220404]██[color=#720505]████[color=#220404]██[color=#86b1a5]██[color=#220404]██[color=#720505]███████[color=#86b1a5]█[color=#5e544f]█[color=#720505]██[color=#220404]███████[color=#5e544f]█[color=#720505]█
-
- [color=#720505]█████[color=#5e544f]█[color=#220404]████[color=#720505]█████████[color=#86b1a5]█[color=#5e544f]█[color=#720505]████████[color=#220404]█[color=#5e544f]█[color=#720505]█[color=#220404]██████[color=#5e544f]█[color=#86b1a5]█[color=#220404]██
-
- [color=#720505]██████[color=#5e544f]██[color=#720505]███[color=#220404]████[color=#720505]██[color=#220404]██[color=#5e544f]█[color=#220404]███[color=#5e544f]█[color=#720505]█████[color=#220404]█[color=#5e544f]█[color=#720505]██[color=#86b1a5]█[color=#220404]█[color=#720505]█[color=#220404]██████
-
- [color=#720505]████[color=#220404]████[color=#5e544f]█[color=#86b1a5]█[color=#5e544f]█[color=#720505]██████[color=#220404]███████[color=#86b1a5]█[color=#720505]█[color=#220404]██[color=#5e544f]█[color=#220404]█[color=#5e544f]█[color=#220404]█[color=#5e544f]█[color=#86b1a5]█[color=#720505]█[color=#220404]█[color=#5e544f]█[color=#220404]█[color=#720505]█[color=#220404]█[color=#720505]██
-
- [color=#220404]███[color=#720505]███[color=#220404]██[color=#720505]██[color=#5e544f]█[color=#220404]█[color=#5e544f]█[color=#720505]████[color=#220404]██[color=#720505]██[color=#5e544f]██[color=#720505]█[color=#86b1a5]██[color=#220404]███[color=#5e544f]█[color=#720505]██[color=#86b1a5]██[color=#720505]█[color=#5e544f]█[color=#220404]█[color=#720505]██[color=#220404]██[color=#720505]█
-
- [color=#720505]███[color=#220404]████████████[color=#720505]██[color=#5e544f]█[color=#86b1a5]█[color=#220404]███[color=#5e544f]█[color=#720505]█[color=#86b1a5]███[color=#220404]██[color=#5e544f]█[color=#220404]██[color=#86b1a5]██[color=#720505]█[color=#86b1a5]█[color=#720505]████[color=#86b1a5]██
-
- [color=#720505]████[color=#220404]█████[color=#720505]██████[color=#5e544f]██[color=#220404]██[color=#86b1a5]██[color=#720505]█[color=#220404]█[color=#5e544f]██[color=#86b1a5]██[color=#5e544f]█[color=#220404]█[color=#5e544f]███[color=#86b1a5]███[color=#220404]█[color=#5e544f]█[color=#86b1a5]████[color=#5e544f]█
-
- [color=#720505]█████[color=#220404]██[color=#720505]█████████[color=#220404]██[color=#5e544f]█[color=#220404]█[color=#5e544f]█[color=#86b1a5]█[color=#220404]█████████████████[color=#86b1a5]██[color=#720505]█
-
- [color=#720505]█[color=#5e544f]██[color=#86b1a5]███[color=#5e544f]██[color=#720505]███[color=#5e544f]██[color=#720505]█████[color=#220404]██[color=#5e544f]█[color=#220404]█████████████████[color=#5e544f]█[color=#86b1a5]███
-
- [color=#720505]████[color=#220404]██[color=#720505]██[color=#220404]██[color=#5e544f]███[color=#86b1a5]██████[color=#220404]███████████████████████
-
- [color=#720505]██[color=#220404]█████[color=#720505]███[color=#220404]██[color=#720505]███[color=#220404]██[color=#5e544f]█[color=#86b1a5]███[color=#220404]██████████[color=#86b1a5]█[color=#5e544f]█[color=#220404]█[color=#86b1a5]█[color=#5e544f]█[color=#220404]██████
-
- [color=#220404]█████████[color=#720505]██[color=#5e544f]█[color=#86b1a5]████████[color=#220404]██████████[color=#5e544f]██[color=#86b1a5]█[color=#5e544f]██[color=#86b1a5]███[color=#220404]███[color=#86b1a5]█
-
- [color=#220404]████[color=#720505]██[color=#220404]██████████[color=#5e544f]██[color=#720505]██[color=#5e544f]█[color=#220404]███████[color=#86b1a5]████[color=#5e544f]████[color=#86b1a5]█[color=#5e544f]██[color=#720505]█[color=#220404]█[color=#720505]█
-
- [color=#720505]█████[color=#220404]█[color=#720505]█[color=#220404]██████[color=#5e544f]█[color=#720505]█[color=#220404]█[color=#5e544f]█[color=#86b1a5]███[color=#5e544f]█[color=#220404]██████[color=#5e544f]██[color=#86b1a5]███████[color=#5e544f]█[color=#86b1a5]█[color=#5e544f]██[color=#86b1a5]█[color=#720505]█
-
- [color=#720505]████[color=#5e544f]█[color=#86b1a5]███[color=#5e544f]█[color=#220404]█████[color=#5e544f]█[color=#220404]██[color=#720505]███[color=#220404]███████████[color=#86b1a5]████[color=#5e544f]███[color=#220404]█[color=#86b1a5]███
-
- [color=#5e544f]██[color=#720505]██[color=#220404]██[color=#720505]██[color=#220404]█████[color=#720505]████[color=#220404]██[color=#720505]█[color=#5e544f]█[color=#86b1a5]█[color=#220404]███████[color=#5e544f]█[color=#86b1a5]█[color=#5e544f]█[color=#86b1a5]███[color=#5e544f]█[color=#86b1a5]█[color=#220404]████[color=#720505]█
-
- [color=#220404]██[color=#720505]█[color=#220404]█[color=#720505]███[color=#220404]████[color=#720505]█[color=#220404]█[color=#720505]████[color=#5e544f]█[color=#220404]█[color=#5e544f]█[color=#86b1a5]███[color=#220404]█[color=#720505]██[color=#220404]█████[color=#86b1a5]███[color=#5e544f]██[color=#220404]██████
-
- [color=#720505]██[color=#220404]█████[color=#720505]██[color=#220404]█████[color=#5e544f]█[color=#220404]█[color=#5e544f]█[color=#720505]██[color=#86b1a5]██[color=#220404]██[color=#720505]██[color=#86b1a5]█[color=#720505]█[color=#220404]█[color=#5e544f]█[color=#86b1a5]██[color=#5e544f]█[color=#86b1a5]███[color=#720505]█[color=#220404]██[color=#720505]████
-
- [color=#720505]██[color=#220404]█[color=#720505]██[color=#220404]███████[color=#86b1a5]██[color=#5e544f]█[color=#720505]██[color=#5e544f]██[color=#220404]███[color=#720505]██[color=#220404]█[color=#720505]███[color=#86b1a5]███[color=#5e544f]█[color=#86b1a5]███[color=#720505]███████
-
- [color=#720505]█[color=#5e544f]█[color=#220404]█[color=#5e544f]█[color=#720505]█[color=#220404]█████[color=#5e544f]██[color=#220404]█[color=#720505]████[color=#220404]█████[color=#720505]██[color=#5e544f]█[color=#86b1a5]███████[color=#5e544f]█[color=#86b1a5]██[color=#720505]███████
-
- [color=#5e544f]██[color=#720505]█[color=#220404]████[color=#5e544f]██[color=#220404]█████[color=#86b1a5]██████[color=#5e544f]██████████[color=#86b1a5]███████[color=#5e544f]█[color=#720505]████
-
- [color=#220404]█[color=#5e544f]████[color=#220404]█[color=#5e544f]█[color=#220404]███[color=#720505]███[color=#86b1a5]█████████████████████████████
- - type: SolutionContainerManager
- solutions: null
- containers:
- - food
- - type: Fixtures
- fixtures:
- fix1:
- shape: !type:PolygonShape
- radius: 0.01
- vertices:
- - -0.25,-0.25
- - 0.25,-0.25
- - 0.25,0.25
- - -0.25,0.25
- mask:
- - Impassable
- - HighImpassable
- layer: []
- density: 20
- hard: True
- restitution: 0.3
- friction: 0.2
- flammable:
- shape: !type:PhysShapeCircle
- radius: 0.35
- position: 0,0
- mask:
- - TableLayer
- - HighImpassable
- - LowImpassable
- - BulletImpassable
- - InteractImpassable
- - Opaque
- layer: []
- density: 1
- hard: False
- restitution: 0
- friction: 0.4
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- type: ContainerContainer
containers:
- solution@food: !type:ContainerSlot
- ent: 4
- - uid: 5
->>>>>>> master
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14199
+ - 14200
+ - 14201
+ - uid: 14202
components:
- - type: MetaData
- desc: На бумаге изображен слаймолюд в платье горничной..
- name: рисунок
- type: Transform
-<<<<<<< HEAD
- pos: 48.57693,-4.3954663
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26035
-=======
- pos: 56.35469,-35.325832
+ rot: 3.141592653589793 rad
+ pos: 77.5,0.5
parent: 2
- - type: Paper
- content: >-
- [color=#f9f7e5]█████████████████████[color=#c1b9cc]████[color=#f9f7e5]█████████████████
-
- [color=#f9f7e5]██[color=#c1b9cc]█████████████████[color=#f9f7e5]█[color=#897da5]█[color=#634f5b]█████[color=#897da5]██[color=#c1b9cc]████████████[color=#f9f7e5]██
-
- [color=#f9f7e5]██[color=#c1b9cc]██[color=#f9f7e5]██[color=#c1b9cc]███████████[color=#f9f7e5]█[color=#634f5b]█[color=#c1b9cc]███[color=#897da5]████[color=#c1b9cc]██[color=#897da5]█[color=#c1b9cc]██████████[color=#f9f7e5]███
-
- [color=#f9f7e5]███[color=#c1b9cc]█[color=#f9f7e5]██[color=#c1b9cc]███[color=#f9f7e5]█[color=#c1b9cc]██[color=#f9f7e5]█[color=#c1b9cc]███[color=#f9f7e5]█[color=#897da5]██[color=#c1b9cc]████[color=#897da5]████[color=#c1b9cc]████████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]██████████[color=#f9f7e5]█[color=#c1b9cc]███[color=#897da5]█[color=#381e2a]█[color=#634f5b]█[color=#897da5]██████████[color=#381e2a]█[color=#c1b9cc]█████████[color=#f9f7e5]███
-
- [color=#f9f7e5]███[color=#c1b9cc]████████████[color=#897da5]█[color=#381e2a]███[color=#897da5]████████████[color=#c1b9cc]████████[color=#f9f7e5]███
-
- [color=#f9f7e5]███[color=#c1b9cc]██████████████[color=#897da5]█[color=#634f5b]█[color=#897da5]██████████[color=#c1b9cc]██████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]██████████████[color=#f9f7e5]█[color=#c1b9cc]██[color=#897da5]██[color=#f9f7e5]█[color=#897da5]█[color=#634f5b]█[color=#f9f7e5]███[color=#c1b9cc]█[color=#897da5]█[color=#c1b9cc]██████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]█████████████[color=#f9f7e5]██[color=#c1b9cc]██[color=#897da5]██[color=#634f5b]█[color=#381e2a]██[color=#634f5b]█[color=#f9f7e5]█[color=#c1b9cc]██[color=#897da5]█[color=#c1b9cc]██████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]█████████████████[color=#897da5]██[color=#f9f7e5]█[color=#634f5b]█[color=#381e2a]█[color=#c1b9cc]█[color=#897da5]█[color=#c1b9cc]█[color=#897da5]██[color=#c1b9cc]██████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]████████████[color=#897da5]███[color=#c1b9cc]██[color=#897da5]██[color=#c1b9cc]█[color=#897da5]███████[color=#c1b9cc]██████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]███████████[color=#897da5]█[color=#c1b9cc]█[color=#634f5b]█[color=#381e2a]██[color=#897da5]█████[color=#634f5b]█[color=#381e2a]███[color=#897da5]██[color=#c1b9cc]██████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]███████████[color=#897da5]████[color=#634f5b]█[color=#c1b9cc]█[color=#897da5]██[color=#634f5b]█[color=#897da5]███████[color=#c1b9cc]██████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]███████████[color=#381e2a]███[color=#897da5]███[color=#634f5b]█[color=#381e2a]██[color=#634f5b]█[color=#c1b9cc]█[color=#897da5]██[color=#c1b9cc]█████████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]███████████[color=#381e2a]████[color=#c1b9cc]█[color=#897da5]█[color=#634f5b]█[color=#381e2a]███[color=#634f5b]█[color=#c1b9cc]█[color=#897da5]█[color=#381e2a]███[color=#f9f7e5]█[color=#c1b9cc]█████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]███[color=#897da5]█[color=#f9f7e5]██[color=#c1b9cc]█[color=#634f5b]███[color=#381e2a]█████[color=#c1b9cc]██[color=#897da5]█[color=#381e2a]████[color=#c1b9cc]█[color=#897da5]█[color=#381e2a]███[color=#634f5b]█[color=#c1b9cc]█████████[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]████[color=#897da5]███[color=#381e2a]█████████[color=#c1b9cc]█[color=#897da5]█[color=#381e2a]████[color=#634f5b]█[color=#381e2a]█[color=#634f5b]█[color=#381e2a]████[color=#897da5]█[color=#c1b9cc]███████[color=#f9f7e5]███
-
- [color=#f9f7e5]███[color=#c1b9cc]█████[color=#634f5b]█[color=#381e2a]███████████[color=#634f5b]█[color=#381e2a]█████[color=#634f5b]█[color=#381e2a]███[color=#c1b9cc]████[color=#381e2a]█[color=#897da5]█[color=#c1b9cc]███[color=#f9f7e5]███
-
- [color=#f9f7e5]██[color=#c1b9cc]█████[color=#897da5]█[color=#381e2a]██████████[color=#634f5b]█[color=#381e2a]████████[color=#634f5b]██[color=#897da5]██[color=#c1b9cc]█[color=#897da5]██[color=#381e2a]██[color=#634f5b]█[color=#c1b9cc]███[color=#f9f7e5]██
-
- [color=#f9f7e5]██[color=#c1b9cc]█████[color=#381e2a]█[color=#634f5b]█[color=#c1b9cc]█[color=#634f5b]█[color=#381e2a]██████[color=#634f5b]█[color=#381e2a]████[color=#634f5b]████[color=#381e2a]█████[color=#c1b9cc]███[color=#897da5]██[color=#c1b9cc]████[color=#f9f7e5]██
-
- [color=#f9f7e5]██[color=#c1b9cc]████[color=#634f5b]█[color=#381e2a]█[color=#f9f7e5]█[color=#c1b9cc]██[color=#897da5]██[color=#634f5b]█[color=#897da5]█[color=#634f5b]█[color=#381e2a]█[color=#634f5b]█[color=#381e2a]██[color=#634f5b]█[color=#897da5]█[color=#c1b9cc]█████[color=#634f5b]█[color=#c1b9cc]███████████[color=#f9f7e5]███
-
- [color=#f9f7e5]███[color=#c1b9cc]███[color=#634f5b]█[color=#381e2a]███[color=#897da5]██[color=#c1b9cc]████[color=#634f5b]█[color=#897da5]█[color=#c1b9cc]█[color=#634f5b]█[color=#c1b9cc]█[color=#634f5b]█[color=#c1b9cc]█████████████████[color=#f9f7e5]███
-
- [color=#f9f7e5]███████[color=#c1b9cc]██[color=#f9f7e5]█████████████████████████████████
- - type: SolutionContainerManager
- solutions: null
- containers:
- - food
- - type: Fixtures
- fixtures:
- fix1:
- shape: !type:PolygonShape
- radius: 0.01
- vertices:
- - -0.25,-0.25
- - 0.25,-0.25
- - 0.25,0.25
- - -0.25,0.25
- mask:
- - Impassable
- - HighImpassable
- layer: []
- density: 20
- hard: True
- restitution: 0.3
- friction: 0.2
- flammable:
- shape: !type:PhysShapeCircle
- radius: 0.35
- position: 0,0
- mask:
- - TableLayer
- - HighImpassable
- - LowImpassable
- - BulletImpassable
- - InteractImpassable
- - Opaque
- layer: []
- density: 1
- hard: False
- restitution: 0
- friction: 0.4
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- type: ContainerContainer
containers:
- solution@food: !type:ContainerSlot
- ent: 6
- - uid: 7
->>>>>>> master
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14206
+ - 14204
+ - 14203
+ - 14205
+ - 14207
+ - uid: 14208
components:
- - type: MetaData
- name: странная записка
- type: Transform
-<<<<<<< HEAD
- pos: 42.573086,-70.16831
- parent: 2
- - uid: 26036
-=======
- pos: 54.866543,-35.91712
+ rot: 3.141592653589793 rad
+ pos: 76.5,0.5
parent: 2
- - type: Paper
- content: 'На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... На дельте нет яблок... '
- - type: SolutionContainerManager
- solutions: null
- containers:
- - food
- - type: Fixtures
- fixtures:
- fix1:
- shape: !type:PolygonShape
- radius: 0.01
- vertices:
- - -0.25,-0.25
- - 0.25,-0.25
- - 0.25,0.25
- - -0.25,0.25
- mask:
- - Impassable
- - HighImpassable
- layer: []
- density: 20
- hard: True
- restitution: 0.3
- friction: 0.2
- flammable:
- shape: !type:PhysShapeCircle
- radius: 0.35
- position: 0,0
- mask:
- - TableLayer
- - HighImpassable
- - LowImpassable
- - BulletImpassable
- - InteractImpassable
- - Opaque
- layer: []
- density: 1
- hard: False
- restitution: 0
- friction: 0.4
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- type: ContainerContainer
containers:
- solution@food: !type:ContainerSlot
- ent: 8
- - uid: 9
->>>>>>> master
- components:
- - type: MetaData
- desc: ГСБ?..
- name: рисунок
- - type: Transform
-<<<<<<< HEAD
- pos: -24.130608,-4.4762073
- parent: 2
- - uid: 26037
- components:
- - type: Transform
- pos: -30.482952,-30.630163
- parent: 2
- - uid: 26038
- components:
- - type: Transform
- pos: -4.4907737,-58.52011
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26039
- components:
- - type: Transform
- pos: -57.46442,-17.430832
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26040
- components:
- - type: Transform
- pos: -25.375605,12.496101
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26041
- components:
- - type: Transform
- pos: -24.473108,-68.4108
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26042
- components:
- - type: Transform
- pos: -36.5,-74.5
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26043
- components:
- - type: Transform
- pos: -22.592567,23.59421
- parent: 2
- - uid: 26044
- components:
- - type: Transform
- pos: 2.5119066,-29.376064
- parent: 2
- - uid: 26045
- components:
- - type: Transform
- pos: 12.716354,-52.415775
- parent: 2
- - uid: 26046
- components:
- - type: Transform
- pos: -54.35135,27.662151
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26047
- components:
- - type: Transform
- pos: 24.461672,8.5619135
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26048
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14210
+ - 14209
+ - 14211
+ - 14212
+ - 14213
+- proto: ClothingBackpackBrigmedic
+ entities:
+ - uid: 14215
components:
- type: Transform
- pos: -8.571838,-35.43139
- parent: 2
+ parent: 14214
- type: Physics
canCollide: False
- - uid: 26049
- components:
- - type: Transform
- pos: -32.5,-35.5
- parent: 2
- - uid: 26050
+ - type: InsideEntityStorage
+- proto: ClothingBackpackDuffelBrigmedic
+ entities:
+ - uid: 14216
components:
- type: Transform
- pos: -41.430576,-17.448298
- parent: 2
+ parent: 14214
- type: Physics
canCollide: False
- - uid: 26051
- components:
- - type: Transform
- pos: 24.446495,38.695435
- parent: 2
- - uid: 26052
- components:
- - type: Transform
- pos: 0.49840114,63.529846
- parent: 2
-- proto: HappyHonk
- entities:
- - uid: 26053
- components:
- - type: Transform
- pos: 63.362576,-15.285653
- parent: 2
-- proto: HappyHonkMime
- entities:
- - uid: 26054
- components:
- - type: Transform
- pos: 63.777294,-15.30936
- parent: 2
-- proto: HarpInstrument
- entities:
- - uid: 26055
- components:
- - type: Transform
- pos: 10.5,66.5
- parent: 2
-- proto: HeadBorgEngineer
- entities:
- - uid: 26056
- components:
- - type: Transform
- pos: 77.97155,4.099671
- parent: 2
-- proto: HeatExchanger
+ - type: InsideEntityStorage
+- proto: ClothingBackpackDuffelMilitary
entities:
- - uid: 26057
- components:
- - type: Transform
- pos: -52.5,59.5
- parent: 2
- - uid: 26058
- components:
- - type: Transform
- pos: -52.5,57.5
- parent: 2
- - uid: 26059
- components:
- - type: Transform
- pos: -49.5,59.5
- parent: 2
- - uid: 26060
+ - uid: 14228
components:
- type: Transform
- pos: -49.5,57.5
+ pos: -39.5,56.5
parent: 2
-- proto: HelicopterInstrument
+- proto: ClothingBackpackDuffelVirology
entities:
- - uid: 26061
+ - uid: 14229
components:
- type: Transform
- pos: 63.569263,-24.38388
+ pos: 39.371994,-59.285408
parent: 2
-- proto: Hemostat
+- proto: ClothingBackpackSatchelBrigmedic
entities:
- - uid: 26062
- components:
- - type: Transform
- pos: 32.606625,-46.556606
- parent: 2
- - type: Physics
- canCollide: False
- - uid: 26063
+ - uid: 14217
components:
- type: Transform
- pos: 46.5,-35.5
- parent: 2
+ parent: 14214
- type: Physics
canCollide: False
- - uid: 26064
+ - type: InsideEntityStorage
+- proto: ClothingBackpackSatchelLeather
+ entities:
+ - uid: 14230
components:
- type: Transform
- pos: 34.450375,-52.244106
+ pos: 38.42007,-13.187743
parent: 2
- - type: Physics
- canCollide: False
-- proto: HighSecArmoryLocked
+- proto: ClothingBeltChampion
entities:
- - uid: 26065
-=======
- pos: 53.657734,-34.34194
- parent: 2
- - type: Paper
- content: >-
- [color=#c4cdd9]█[color=#9798a5]██[color=#c4cdd9]███████████[color=#edeceb]██████████[color=#7b7080]█[color=#3b2e3f]█████[color=#c4cdd9]█████████[color=#9798a5]███
-
- [color=#c4cdd9]█[color=#9798a5]██[color=#c4cdd9]████████████[color=#edeceb]██████[color=#c4cdd9]█[color=#3b2e3f]████[color=#9e293c]█[color=#d67284]████[color=#c4cdd9]████████[color=#9798a5]███
-
- [color=#c4cdd9]██████████████[color=#edeceb]██████[color=#c4cdd9]█[color=#7b7080]█[color=#3b2e3f]█[color=#9798a5]█[color=#eeb6ab]██[color=#d67284]█[color=#eeb6ab]█[color=#edeceb]██[color=#eeb6ab]█[color=#d67284]█[color=#eeb6ab]█[color=#c4cdd9]███████[color=#9798a5]██
-
- [color=#c4cdd9]███[color=#edeceb]███████████████████[color=#eeb6ab]██[color=#d67284]██[color=#9798a5]█[color=#eeb6ab]█[color=#d67284]███[color=#eeb6ab]██[color=#edeceb]████[color=#c4cdd9]███[color=#9798a5]██
-
- [color=#c4cdd9]███[color=#edeceb]██████████████████[color=#eeb6ab]█[color=#d67284]███[color=#eeb6ab]█[color=#edeceb]██[color=#eeb6ab]█[color=#d67284]███[color=#edeceb]█████[color=#c4cdd9]███[color=#9798a5]██
-
- [color=#9798a5]█[color=#c4cdd9]██[color=#edeceb]█████████████████[color=#eeb6ab]█[color=#d67284]██[color=#eeb6ab]█[color=#edeceb]█[color=#eeb6ab]█[color=#d67284]██[color=#eeb6ab]█[color=#edeceb]██[color=#eeb6ab]█[color=#d67284]█[color=#9798a5]█[color=#edeceb]██[color=#c4cdd9]████[color=#9798a5]██
-
- [color=#9798a5]██[color=#c4cdd9]█[color=#edeceb]█████████████████[color=#9e293c]██[color=#3b2e3f]█[color=#9e293c]███[color=#d67284]█[color=#7b7080]█[color=#9e293c]█[color=#d67284]█[color=#edeceb]███[color=#7b7080]█[color=#3b2e3f]█[color=#7b7080]█[color=#c4cdd9]████[color=#9798a5]██
-
- [color=#9798a5]██[color=#c4cdd9]██[color=#edeceb]███████████████[color=#7b7080]█[color=#3b2e3f]███[color=#9e293c]███[color=#3b2e3f]██[color=#9e293c]█[color=#d67284]████[color=#9e293c]█[color=#3b2e3f]█[color=#9798a5]█[color=#c4cdd9]███[color=#9798a5]███
-
- [color=#9798a5]██[color=#c4cdd9]████[color=#edeceb]████████████[color=#eeb6ab]█[color=#3b2e3f]██████████[color=#9e293c]█████[color=#3b2e3f]█[color=#c4cdd9]████[color=#9798a5]███
-
- [color=#9798a5]██[color=#c4cdd9]█████[color=#edeceb]███████[color=#c4cdd9]█[color=#9798a5]█[color=#7b7080]██[color=#9e293c]██[color=#3b2e3f]█████████[color=#9e293c]█[color=#d67284]█[color=#9e293c]███[color=#7b7080]█[color=#c4cdd9]████[color=#9798a5]███
-
- [color=#9798a5]██[color=#c4cdd9]████████[color=#edeceb]███[color=#9798a5]█[color=#3b2e3f]███[color=#9e293c]███[color=#3b2e3f]███████[color=#9e293c]█[color=#d67284]█[color=#9e293c]█[color=#d67284]█[color=#9e293c]███[color=#eeb6ab]█[color=#c4cdd9]████[color=#9798a5]██[color=#7b7080]█
-
- [color=#9798a5]███[color=#c4cdd9]█████[color=#eeb6ab]█[color=#edeceb]███[color=#eeb6ab]█[color=#d67284]█[color=#9e293c]███[color=#eeb6ab]██[color=#d67284]█[color=#3b2e3f]███████[color=#9e293c]█[color=#d67284]█[color=#7b7080]█[color=#9e293c]████[color=#c4cdd9]█████[color=#9798a5]██[color=#7b7080]█
-
- [color=#7b7080]████████[color=#eeb6ab]██████[color=#9e293c]█████████[color=#3b2e3f]███████████[color=#7b7080]████████
-
- [color=#7b7080]█████[color=#9798a5]███[color=#d67284]█████[color=#edeceb]█[color=#d67284]█[color=#9e293c]██████████[color=#3b2e3f]██████[color=#7b7080]█[color=#d67284]██[color=#9798a5]████[color=#7b7080]████
-
- [color=#7b7080]██████[color=#9798a5]█[color=#eeb6ab]███[color=#d67284]███[color=#edeceb]█[color=#9e293c]█████████████[color=#7b7080]██[color=#3b2e3f]█[color=#7b7080]█[color=#9798a5]██████[color=#7b7080]█████
-
- [color=#7b7080]██████[color=#9798a5]█[color=#eeb6ab]█[color=#edeceb]███[color=#eeb6ab]█[color=#7b7080]█[color=#d67284]█[color=#c4cdd9]█[color=#d67284]█[color=#9e293c]███████████[color=#7b7080]██[color=#3b2e3f]██[color=#7b7080]█[color=#9798a5]███[color=#7b7080]███████
-
- [color=#7b7080]███████[color=#9798a5]█[color=#d67284]█[color=#eeb6ab]█[color=#edeceb]███[color=#9798a5]█[color=#7b7080]█[color=#edeceb]█[color=#9e293c]██████[color=#3b2e3f]█████[color=#7b7080]█[color=#3b2e3f]███[color=#7b7080]█[color=#9798a5]██[color=#7b7080]████████
-
- [color=#7b7080]█████████[color=#3b2e3f]█[color=#eeb6ab]█████[color=#d67284]█[color=#9798a5]█[color=#eeb6ab]█[color=#d67284]█[color=#3b2e3f]█████[color=#7b7080]██████████████████
-
- [color=#9e293c]█████████[color=#3b2e3f]██[color=#9e293c]█[color=#eeb6ab]█████[color=#9e293c]████[color=#7b7080]██[color=#3b2e3f]█[color=#9e293c]██████████████████
-
- [color=#9e293c]█████████[color=#3b2e3f]███[color=#7b7080]█[color=#d67284]██[color=#eeb6ab]███[color=#d67284]█[color=#9e293c]██[color=#7b7080]████[color=#9e293c]█████████████████
-
- [color=#7b7080]██████████[color=#3b2e3f]███[color=#7b7080]█[color=#9798a5]█[color=#d67284]████[color=#3b2e3f]█[color=#7b7080]████[color=#3b2e3f]██[color=#9798a5]███[color=#7b7080]█████████████
-
- [color=#9798a5]█████████[color=#7b7080]█[color=#3b2e3f]████[color=#9798a5]███[color=#3b2e3f]█████[color=#7b7080]███[color=#9798a5]█████████████████
-
- [color=#9798a5]█████████[color=#3b2e3f]██████[color=#9798a5]█[color=#7b7080]███[color=#3b2e3f]███████[color=#7b7080]█[color=#9798a5]███████████[color=#7b7080]█[color=#9798a5]███
-
- [color=#9798a5]████████[color=#7b7080]█[color=#3b2e3f]██████[color=#9798a5]██████[color=#3b2e3f]████[color=#7b7080]█[color=#9798a5]██[color=#7b7080]███[color=#9798a5]███████[color=#7b7080]█[color=#9798a5]███
-
- [color=#9798a5]█████████[color=#3b2e3f]██[color=#7b7080]██[color=#3b2e3f]██[color=#7b7080]█[color=#9798a5]██████[color=#7b7080]█[color=#3b2e3f]████[color=#7b7080]██[color=#3b2e3f]███[color=#9798a5]███[color=#7b7080]███████
-
- [color=#9798a5]███████████████████████[color=#3b2e3f]█████[color=#9798a5]█████████[color=#7b7080]██[color=#9798a5]███
-
- [color=#9798a5]████████████████████████[color=#7b7080]█[color=#3b2e3f]███[color=#9798a5]████████[color=#7b7080]███[color=#9798a5]███
- - type: SolutionContainerManager
- solutions: null
- containers:
- - food
- - type: Fixtures
- fixtures:
- fix1:
- shape: !type:PolygonShape
- radius: 0.01
- vertices:
- - -0.25,-0.25
- - 0.25,-0.25
- - 0.25,0.25
- - -0.25,0.25
- mask:
- - Impassable
- - HighImpassable
- layer: []
- density: 20
- hard: True
- restitution: 0.3
- friction: 0.2
- flammable:
- shape: !type:PhysShapeCircle
- radius: 0.35
- position: 0,0
- mask:
- - TableLayer
- - HighImpassable
- - LowImpassable
- - BulletImpassable
- - InteractImpassable
- - Opaque
- layer: []
- density: 1
- hard: False
- restitution: 0
- friction: 0.4
- - type: ContainerContainer
- containers:
- solution@food: !type:ContainerSlot
- ent: 10
- - uid: 1707
- components:
- - type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1708
- components:
- - type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1709
- components:
- - type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1710
- components:
- - type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1711
- components:
- - type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1712
- components:
- - type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1713
- components:
- - type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1714
- components:
- - type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1715
- components:
- - type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 1716
+ - uid: 14231
components:
- type: Transform
- parent: 1702
- - type: Physics
- canCollide: False
- - uid: 14768
+ pos: 26.5,16.5
+ parent: 2
+ - uid: 14232
components:
- type: Transform
- parent: 14763
- - type: Paper
- content: "Станция погрязла в грязи преступности.. \r\nСлишком много смертей невинных, но ничего. \r\nМой револьвер - путь к очищению. "
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15550
+ pos: 63.481087,-20.497055
+ parent: 2
+ - uid: 14233
components:
- type: Transform
- parent: 15548
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15551
+ pos: 63.65296,-20.13768
+ parent: 2
+- proto: ClothingBeltJanitorFilled
+ entities:
+ - uid: 1789
components:
- type: Transform
- parent: 15548
+ parent: 1787
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 15552
+ - uid: 1790
components:
- type: Transform
- parent: 15548
+ parent: 1787
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 15553
+- proto: ClothingBeltMedical
+ entities:
+ - uid: 14218
components:
- type: Transform
- parent: 15548
+ parent: 14214
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 15554
+- proto: ClothingBeltPlantFilled
+ entities:
+ - uid: 14234
components:
- type: Transform
- parent: 15548
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15555
+ pos: -34.420864,52.3301
+ parent: 2
+ - uid: 14235
components:
- type: Transform
- parent: 15548
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15556
+ pos: -34.610645,52.66603
+ parent: 2
+- proto: ClothingBeltSecurityFilled
+ entities:
+ - uid: 1516
components:
- type: Transform
- parent: 15548
+ parent: 1511
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 25363
->>>>>>> master
+- proto: ClothingBeltSecurityWebbing
+ entities:
+ - uid: 14236
components:
- type: Transform
-<<<<<<< HEAD
- pos: 71.5,6.5
- parent: 2
- - uid: 26066
-=======
- rot: 1.0182609457842773E-06 rad
- pos: -58.601784,-43.373722
+ pos: 63.5,7.5
parent: 2
- - uid: 25364
->>>>>>> master
+ - uid: 14237
components:
- type: Transform
-<<<<<<< HEAD
- pos: 62.5,10.5
+ pos: 63.5,7.5
parent: 2
- - uid: 26067
+ - uid: 14238
components:
- type: Transform
- pos: 56.5,5.5
+ pos: 63.5,7.5
parent: 2
- - uid: 26068
+ - uid: 14239
components:
- type: Transform
- pos: 56.5,4.5
+ pos: 63.5,7.5
parent: 2
-- proto: HighSecCommandLocked
+- proto: ClothingBeltStorageWaistbag
entities:
- - uid: 26069
+ - uid: 14240
components:
- type: Transform
- pos: 19.5,18.5
+ pos: 38.466946,-9.531493
parent: 2
- - uid: 26070
+- proto: ClothingBeltUtility
+ entities:
+ - uid: 14241
components:
- type: Transform
- pos: 21.5,18.5
+ pos: -15.544889,-14.405305
parent: 2
- - uid: 26071
+ - uid: 14242
components:
- type: Transform
- pos: -119.5,44.5
+ pos: 9.527449,86.09863
parent: 2
- - uid: 26072
+- proto: ClothingBeltUtilityFilled
+ entities:
+ - uid: 14182
components:
- type: Transform
- pos: -117.5,44.5
+ parent: 14181
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14243
+ components:
+ - type: Transform
+ pos: 15.5,39.5
parent: 2
- - uid: 26073
+ - uid: 14244
components:
- type: Transform
- pos: -117.5,27.5
+ pos: -33.5,60.5
parent: 2
- - uid: 26074
+ - uid: 14245
components:
- type: Transform
- pos: -116.5,23.5
+ pos: -57.47635,27.662151
parent: 2
- - uid: 26075
+ - type: Physics
+ canCollide: False
+ - uid: 14246
components:
- type: Transform
- pos: -119.5,27.5
+ pos: 6.513186,-15.495517
parent: 2
-- proto: HolofanProjector
- entities:
- - uid: 26076
+ - type: Physics
+ canCollide: False
+ - uid: 14247
components:
- type: Transform
- pos: -58.49864,23.441113
+ pos: -49.5,-16.5
parent: 2
- type: Physics
canCollide: False
-- proto: HospitalCurtains
- entities:
- - uid: 26077
+ - uid: 14248
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-38.5
+ pos: -57.515335,-43.273537
parent: 2
- - uid: 26078
+- proto: ClothingEyesBinoclardLenses
+ entities:
+ - uid: 14249
components:
- type: Transform
- pos: 34.5,-40.5
+ pos: -21.485056,-7.1794715
parent: 2
- - uid: 26079
+- proto: ClothingEyesBlindfold
+ entities:
+ - uid: 14250
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,3.5
+ pos: 73.36917,23.696793
parent: 2
- - uid: 26080
+- proto: ClothingEyesEyepatch
+ entities:
+ - uid: 14251
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,5.5
+ pos: 83.62367,-0.42007774
parent: 2
- - uid: 26081
+- proto: ClothingEyesGlasses
+ entities:
+ - uid: 14252
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-37.5
+ pos: -36.412228,63.676514
parent: 2
- - uid: 26082
+ - uid: 14253
components:
- type: Transform
- pos: 14.5,5.5
+ pos: 28.440517,-26.436743
parent: 2
- - uid: 26083
+ - uid: 14254
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-78.5
+ pos: 28.378017,-26.327368
parent: 2
- - uid: 26084
+ - uid: 14255
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-38.5
+ pos: 29.542643,-1.1786702
parent: 2
- - uid: 26085
+- proto: ClothingEyesGlassesCheapSunglasses
+ entities:
+ - uid: 14256
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-41.5
+ pos: 20.8171,62.763203
parent: 2
- - uid: 26086
+- proto: ClothingEyesGlassesMercenary
+ entities:
+ - uid: 14001
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-37.5
+ parent: 14000
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14257
+ components:
+ - type: Transform
+ pos: -36.385307,-54.463394
parent: 2
- - uid: 26087
+- proto: ClothingEyesGlassesMeson
+ entities:
+ - uid: 14258
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-37.5
+ pos: 90.24979,10.735543
parent: 2
- - uid: 26088
+ - uid: 14259
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-39.5
+ pos: -49.5,-12.5
parent: 2
- - uid: 26089
+ - type: Physics
+ canCollide: False
+- proto: ClothingEyesGlassesSunglasses
+ entities:
+ - uid: 1517
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-39.5
+ parent: 1511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14260
+ components:
+ - type: Transform
+ pos: -78.5,1.5
parent: 2
- - uid: 26090
+ - uid: 14261
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-39.5
+ pos: 34.431522,0.096880555
parent: 2
- - uid: 26091
+- proto: ClothingEyesHudDiagnostic
+ entities:
+ - uid: 14262
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-39.5
+ pos: -75.5,9.5
parent: 2
- - uid: 26092
+ - uid: 14263
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-39.5
+ pos: 15.542948,77.507545
parent: 2
- - uid: 26093
+ - uid: 14264
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-42.5
+ pos: -54.45722,-9.789352
parent: 2
- - uid: 26094
+ - uid: 14265
components:
- type: Transform
- pos: 38.5,-72.5
+ pos: -54.45722,-9.789352
parent: 2
- - uid: 26095
+ - uid: 14266
components:
- type: Transform
- pos: 42.5,-72.5
+ pos: -54.45722,-9.789352
parent: 2
-- proto: HospitalCurtainsOpen
- entities:
- - uid: 26096
+ - uid: 14267
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,2.5
+ pos: -54.45722,-9.789352
parent: 2
- - uid: 26097
+- proto: ClothingEyesHudMedical
+ entities:
+ - uid: 14268
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,4.5
+ pos: 30.585972,-26.50681
parent: 2
- - uid: 26098
+ - uid: 14269
components:
- type: Transform
- pos: 8.5,-37.5
+ pos: 22.578123,-46.395374
parent: 2
- - uid: 26099
+ - uid: 14270
components:
- type: Transform
- pos: 10.5,-37.5
+ pos: 30.710972,-26.428684
parent: 2
- - uid: 26100
+ - uid: 14271
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,6.5
+ pos: 30.804722,-26.334932
parent: 2
-- proto: hydroponicsSoil
+- proto: ClothingEyesSalesman
entities:
- - uid: 26101
+ - uid: 14272
components:
- type: Transform
- pos: 88.5,-1.5
+ pos: 34.52355,-29.358326
parent: 2
- - uid: 26102
+- proto: ClothingHandsGlovesAerostatic
+ entities:
+ - uid: 14274
components:
- type: Transform
- pos: 88.5,-2.5
- parent: 2
- - uid: 26103
+ parent: 14273
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHandsGlovesBoxingBlue
+ entities:
+ - uid: 14280
components:
- type: Transform
- pos: 88.5,-3.5
+ pos: 55.321033,-16.213081
parent: 2
- - uid: 26104
+ - uid: 14281
components:
- type: Transform
- pos: 79.5,-3.5
+ pos: 55.696033,-16.134956
parent: 2
- - uid: 26105
+- proto: ClothingHandsGlovesBoxingGreen
+ entities:
+ - uid: 14282
components:
- type: Transform
- pos: -38.5,35.5
+ pos: 55.33666,-15.541207
parent: 2
- - uid: 26106
+ - uid: 14283
components:
- type: Transform
- pos: -38.5,32.5
+ pos: 55.727283,-15.384956
parent: 2
- - uid: 26107
+- proto: ClothingHandsGlovesBoxingRed
+ entities:
+ - uid: 14284
components:
- type: Transform
- pos: -39.5,31.5
+ pos: 55.27416,-16.588081
parent: 2
- - uid: 26108
+ - uid: 14285
components:
- type: Transform
- pos: -37.5,34.5
+ pos: 55.64916,-16.509956
parent: 2
- - uid: 26109
+- proto: ClothingHandsGlovesBoxingYellow
+ entities:
+ - uid: 14286
components:
- type: Transform
- pos: -40.5,33.5
+ pos: 55.30541,-15.884956
parent: 2
- - uid: 26110
+ - uid: 14287
components:
- type: Transform
- pos: 85.5,-3.5
+ pos: 55.77416,-15.759956
parent: 2
- - uid: 26111
+- proto: ClothingHandsGlovesColorBlack
+ entities:
+ - uid: 14288
components:
- type: Transform
- pos: 79.5,-1.5
+ pos: 14.491442,39.55459
parent: 2
- - uid: 26112
+ - type: Physics
+ canCollide: False
+ - uid: 14289
components:
- type: Transform
- pos: 84.5,-3.5
+ pos: 31.5,32.5
parent: 2
- - uid: 26113
+ - uid: 14290
components:
- type: Transform
- pos: 79.5,-2.5
+ pos: -28.464966,-75.180466
parent: 2
- - uid: 26114
+ - type: Physics
+ canCollide: False
+ - uid: 14291
components:
- type: Transform
- pos: 82.5,-3.5
+ pos: 33.5,32.5
parent: 2
- - uid: 26115
+ - uid: 14292
components:
- type: Transform
- pos: 83.5,-3.5
+ pos: 32.5,32.5
parent: 2
-- proto: HydroponicsToolClippers
- entities:
- - uid: 26116
+ - uid: 14293
components:
- type: Transform
- pos: -34.28948,51.89193
+ pos: 53.542866,-53.372818
parent: 2
-- proto: HydroponicsToolMiniHoe
- entities:
- - uid: 26117
+ - type: Physics
+ canCollide: False
+ - uid: 14294
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 82.71744,-2.761706
+ pos: 49.5,-37.5
parent: 2
- - uid: 26118
+ - type: Physics
+ canCollide: False
+ - uid: 14295
components:
- type: Transform
- pos: -29.390923,49.30703
+ pos: 14.491442,39.71084
parent: 2
- - uid: 26119
+ - type: Physics
+ canCollide: False
+ - uid: 14296
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 85.42056,-2.7773309
+ pos: -49.94571,-48.294197
parent: 2
- - uid: 26120
+ - uid: 14297
components:
- type: Transform
- pos: -37.601337,34.28246
+ pos: -22.50142,-44.5684
parent: 2
-- proto: HydroponicsToolScythe
+- proto: ClothingHandsGlovesColorBrown
entities:
- - uid: 26121
+ - uid: 14298
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.696175,52.585407
+ pos: 27.46601,36.112278
parent: 2
-- proto: HydroponicsToolSpade
+- proto: ClothingHandsGlovesColorOrange
entities:
- - uid: 26122
+ - uid: 14299
components:
- type: Transform
- pos: -40.182777,33.220512
+ pos: 0.6084916,50.72592
parent: 2
- - uid: 26123
+ - uid: 14300
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.33061,52.655056
+ pos: -77.531624,-30.35354
parent: 2
- - uid: 26124
+ - type: Physics
+ canCollide: False
+- proto: ClothingHandsGlovesColorPurple
+ entities:
+ - uid: 14301
components:
- type: Transform
- pos: 88.756256,-3.414676
+ pos: 0.55345386,50.3957
parent: 2
- - uid: 26125
+- proto: ClothingHandsGlovesColorWhite
+ entities:
+ - uid: 14302
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 80.51431,-3.6523309
+ pos: -33.5,-35.5
parent: 2
-- proto: hydroponicsTray
+- proto: ClothingHandsGlovesColorYellow
entities:
- - uid: 26126
+ - uid: 14183
components:
- type: Transform
- pos: -31.5,51.5
- parent: 2
- - uid: 26127
+ parent: 14181
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14303
components:
- type: Transform
- pos: -31.5,52.5
+ pos: 11.5,40.5
parent: 2
- - uid: 26128
+ - uid: 14304
components:
- type: Transform
- pos: -29.5,53.5
+ pos: -55.5,-1.5
parent: 2
- - uid: 26129
+ - uid: 14305
components:
- type: Transform
- pos: -31.5,47.5
+ pos: -45.44088,-13.045986
parent: 2
- - uid: 26130
+ - uid: 14306
components:
- type: Transform
- pos: -29.5,51.5
+ pos: -35.5,21.5
parent: 2
- - uid: 26131
+ - uid: 14307
components:
- type: Transform
- pos: -31.5,49.5
+ pos: -28.5,8.5
parent: 2
- - uid: 26132
+ - uid: 14308
components:
- type: Transform
- pos: -27.5,50.5
+ pos: -49.5,-12.5
parent: 2
- - uid: 26133
+ - uid: 14310
components:
- type: Transform
- pos: -29.5,50.5
- parent: 2
- - uid: 26134
+ parent: 14309
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14314
components:
- type: Transform
- pos: -29.5,47.5
- parent: 2
- - uid: 26135
+ parent: 14313
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14318
components:
- type: Transform
- pos: -27.5,47.5
- parent: 2
- - uid: 26136
+ parent: 14317
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14321
components:
- type: Transform
- pos: -29.5,48.5
+ pos: 54.5,-42.5
parent: 2
- - uid: 26137
+- proto: ClothingHandsGlovesColorYellowBudget
+ entities:
+ - uid: 14322
components:
- type: Transform
- pos: -29.5,49.5
+ pos: -41.49198,-55.389194
parent: 2
- - uid: 26138
+ - uid: 14323
components:
- type: Transform
- pos: -31.5,53.5
+ pos: -36.400394,-78.32921
parent: 2
- - uid: 26139
+ - uid: 14324
components:
- type: Transform
- pos: -31.5,50.5
+ pos: 20.524391,10.520571
parent: 2
- - uid: 26140
+- proto: ClothingHandsGlovesCombat
+ entities:
+ - uid: 1518
components:
- type: Transform
- pos: -29.5,52.5
- parent: 2
- - uid: 26141
+ parent: 1511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14325
components:
- type: Transform
- pos: -31.5,48.5
+ pos: 70.5,8.5
parent: 2
- - uid: 26142
+ - uid: 14326
components:
- type: Transform
- pos: -27.5,48.5
+ pos: -67.44785,-22.699738
parent: 2
- - uid: 26143
+- proto: ClothingHandsGlovesFingerlessInsulated
+ entities:
+ - uid: 14327
components:
- type: Transform
- pos: -27.5,49.5
+ pos: 29.53348,59.58545
parent: 2
-- proto: IDComputerCircuitboard
+- proto: ClothingHandsGlovesHop
entities:
- - uid: 26144
+ - uid: 14328
components:
- type: Transform
- pos: -36.5,19.5
+ pos: -41.5,61.5
parent: 2
-- proto: InflatableDoor
+- proto: ClothingHandsGlovesLatex
entities:
- - uid: 26145
+ - uid: 14329
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-71.5
+ pos: 3.3556955,-52.53906
parent: 2
- - uid: 26146
+ - uid: 14330
components:
- type: Transform
- pos: 33.5,-60.5
+ pos: 33.512875,-52.369106
parent: 2
-- proto: InflatableWall
- entities:
- - uid: 26147
+ - type: Physics
+ canCollide: False
+ - uid: 14331
components:
- type: Transform
- pos: 30.5,-69.5
+ pos: 26.501759,9.535522
parent: 2
- - uid: 26148
+ - uid: 14332
components:
- type: Transform
- pos: 38.5,-62.5
+ pos: -25.48231,-31.481985
parent: 2
- - uid: 26149
+ - type: Physics
+ canCollide: False
+ - uid: 14333
components:
- type: Transform
- pos: 37.5,-61.5
+ pos: 6.5106626,-42.76824
parent: 2
- - uid: 26150
+ - uid: 14334
components:
- type: Transform
- pos: -40.5,-36.5
+ pos: 45.5,-35.5
parent: 2
- - uid: 26151
+ - type: Physics
+ canCollide: False
+ - uid: 14335
components:
- type: Transform
- pos: 38.5,-61.5
+ pos: 27.495026,67.60358
parent: 2
- - uid: 26152
+ - type: Physics
+ canCollide: False
+ - uid: 14336
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-60.5
+ pos: -3.4906864,-22.43212
parent: 2
- - uid: 26153
+ - type: Physics
+ canCollide: False
+ - uid: 14337
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-69.5
+ pos: 3.8132644,-52.53906
parent: 2
- - uid: 26154
+ - uid: 14338
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-66.5
+ pos: 3.666549,-13.525673
parent: 2
- - uid: 26155
+- proto: ClothingHandsGlovesLeather
+ entities:
+ - uid: 14339
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,59.5
+ pos: -25.485296,54.53175
parent: 2
- - uid: 26156
+- proto: ClothingHandsGlovesNitrile
+ entities:
+ - uid: 14340
components:
- type: Transform
- pos: 31.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 41.60349,-72.92771
parent: 2
-- proto: IngotGold
+- proto: ClothingHandsMercGlovesCombat
entities:
- - uid: 26157
+ - uid: 14002
components:
- type: Transform
- pos: 26.5,20.5
- parent: 2
-- proto: IngotSilver
+ parent: 14000
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14342
+ components:
+ - type: Transform
+ parent: 14341
+ - type: Physics
+ canCollide: False
+- proto: ClothingHeadBandBlack
entities:
- - uid: 26158
+ - uid: 14343
components:
- type: Transform
- pos: 22.576387,16.722483
+ pos: -50.609512,-48.24995
parent: 2
-- proto: IntercomAll
+- proto: ClothingHeadBandMerc
entities:
- - uid: 26159
+ - uid: 14071
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,11.5
- parent: 2
- - uid: 26160
+ parent: 14070
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadBandSkull
+ entities:
+ - uid: 14203
components:
- type: Transform
- pos: -6.5,17.5
+ parent: 14202
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14209
+ components:
+ - type: Transform
+ parent: 14208
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14344
+ components:
+ - type: Transform
+ pos: -57.5,-42.5
parent: 2
-- proto: IntercomCommand
+- proto: ClothingHeadHatAnimalCatBlack
entities:
- - uid: 26161
+ - uid: 14345
components:
- type: Transform
- pos: 5.5,17.5
+ pos: 39.473694,-49.477642
parent: 2
-- proto: IntercomEngineering
+ - type: Physics
+ canCollide: False
+- proto: ClothingHeadHatAnimalHeadslime
entities:
- - uid: 26162
+ - uid: 14346
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,16.5
+ pos: -51.484074,-22.45441
parent: 2
- - uid: 26163
+ - type: Physics
+ canCollide: False
+- proto: ClothingHeadHatBeaverHat
+ entities:
+ - uid: 14347
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,31.5
+ pos: 11.610336,68.17239
parent: 2
- - uid: 26164
+- proto: ClothingHeadHatBeret
+ entities:
+ - uid: 1519
components:
+ - type: MetaData
+ desc: 'Этот берет принадлежал когда-то первому пилоту Стервятника. Леонарду Уварову. '
+ name: Берет Первого Пилота
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-4.5
+ parent: 1511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatBeretBrigmedic
+ entities:
+ - uid: 14349
+ components:
+ - type: Transform
+ parent: 14348
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14350
+ components:
+ - type: Transform
+ parent: 14348
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14352
+ components:
+ - type: Transform
+ parent: 14351
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14353
+ components:
+ - type: Transform
+ pos: 26.16902,-24.54952
parent: 2
- - uid: 26165
+ - uid: 14354
components:
- type: Transform
- pos: -44.5,14.5
+ pos: 25.512768,-24.26827
parent: 2
-- proto: IntercomMedical
+- proto: ClothingHeadHatBeretEngineering
entities:
- - uid: 26166
+ - uid: 14355
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-39.5
+ pos: -54.4179,-9.596214
parent: 2
- - uid: 26167
-=======
- rot: -1.5707953085339508 rad
- pos: 81.326546,5.56637
+ - uid: 14356
+ components:
+ - type: Transform
+ pos: -56.24604,-13.244306
parent: 2
- - uid: 25365
+- proto: ClothingHeadHatBeretMerc
+ entities:
+ - uid: 14357
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 88.51772,7.6123247
+ pos: -30.357168,-65.595474
parent: 2
- - uid: 25366
+- proto: ClothingHeadHatBeretRND
+ entities:
+ - uid: 14358
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.809055,-35.313763
+ pos: -20.530878,-38.289
parent: 2
- - uid: 25367
+- proto: ClothingHeadHatBeretSecurityMedic
+ entities:
+ - uid: 14219
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.725723,-37.42834
+ parent: 14214
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatBeretWarden
+ entities:
+ - uid: 14360
+ components:
+ - type: Transform
+ parent: 14359
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatBowlerHat
+ entities:
+ - uid: 14368
+ components:
+ - type: Transform
+ parent: 14367
+ - type: Physics
+ canCollide: False
+ - uid: 14374
+ components:
+ - type: Transform
+ pos: -23.507126,23.627884
parent: 2
- - uid: 25368
+ - uid: 14375
components:
- type: Transform
- pos: 54.559055,-38.40751
+ pos: 43.480366,-50.404068
parent: 2
- - uid: 25369
+ - type: Physics
+ canCollide: False
+ - uid: 14376
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.600723,-34.45959
+ pos: 20.17384,62.727947
parent: 2
- - uid: 25370
+- proto: ClothingHeadHatBunny
+ entities:
+ - uid: 14377
components:
- type: Transform
- pos: -17.473228,-41.420036
+ pos: 43.54777,15.417131
parent: 2
- - uid: 25372
+- proto: ClothingHeadHatCapWardenAlt
+ entities:
+ - uid: 14361
components:
- type: Transform
- parent: 25371
+ parent: 14359
- type: Physics
canCollide: False
- - uid: 25373
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatCardborg
+ entities:
+ - uid: 14051
components:
- type: Transform
- parent: 25371
+ parent: 14050
- type: Physics
canCollide: False
- - uid: 25374
+ - type: InsideEntityStorage
+ - uid: 14378
components:
- type: Transform
- parent: 25371
+ pos: 47.511616,-54.529068
+ parent: 2
- type: Physics
canCollide: False
- - uid: 25375
+- proto: ClothingHeadHatCasa
+ entities:
+ - uid: 14379
components:
- type: Transform
- parent: 25371
- - type: Physics
- canCollide: False
- - uid: 25376
+ pos: -50.54699,-44.048893
+ parent: 2
+ - uid: 14380
components:
- type: Transform
- parent: 25371
- - type: Physics
- canCollide: False
- - uid: 25377
+ pos: -52.47938,-45.096096
+ parent: 2
+- proto: ClothingHeadHatChef
+ entities:
+ - uid: 14381
components:
- type: Transform
- parent: 25371
+ pos: 22.545242,65.61058
+ parent: 2
- type: Physics
canCollide: False
- - uid: 25378
+ - uid: 14382
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.579336,-40.439713
+ pos: -28.69005,32.65273
parent: 2
- - uid: 25379
+- proto: ClothingHeadHatCone
+ entities:
+ - uid: 14383
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.422057,-49.2071
+ pos: -59.5,-27.5
parent: 2
- - uid: 25380
+ - uid: 14384
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.607666,-16.196762
+ pos: -63.5,-23.5
parent: 2
- - uid: 25381
+ - uid: 14385
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.538372,9.353551
+ pos: -59.5,-26.5
parent: 2
- - uid: 25382
+ - uid: 14386
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.59338,0.41316766
+ pos: -56.52692,-17.587082
parent: 2
- - uid: 25383
+ - type: Physics
+ canCollide: False
+- proto: ClothingHeadHatCowboyBountyHunter
+ entities:
+ - uid: 14387
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.298086,-40.689713
+ pos: -71.5,-39.5
parent: 2
- - uid: 25384
+- proto: ClothingHeadHatFedoraBrown
+ entities:
+ - uid: 1761
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.332867,-7.728602
+ parent: 1759
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatFedoraGrey
+ entities:
+ - uid: 14369
+ components:
+ - type: Transform
+ parent: 14367
+ - type: Physics
+ canCollide: False
+ - uid: 14388
+ components:
+ - type: Transform
+ pos: -21.532356,19.607018
parent: 2
- - uid: 25385
+- proto: ClothingHeadHatFlowerWreath
+ entities:
+ - uid: 14389
components:
- type: Transform
- pos: -20.435146,-43.307297
+ pos: 71.87246,-17.56805
parent: 2
- - uid: 25386
+ - uid: 14390
components:
- type: Transform
- pos: -20.528896,-43.192635
+ pos: 71.65119,-17.641798
parent: 2
- - uid: 25387
+- proto: ClothingHeadHatHardhatBlue
+ entities:
+ - uid: 14391
components:
- type: Transform
- pos: -20.622646,-43.119667
+ pos: -67.37956,-23.102869
parent: 2
- - uid: 25388
+- proto: ClothingHeadHatHardhatRed
+ entities:
+ - uid: 14392
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -26.349644,-29.25216
+ pos: -64.42626,-28.486387
parent: 2
- - type: Paper
- content: >
- ОНО...
- - uid: 25389
+- proto: ClothingHeadHatHardhatYellow
+ entities:
+ - uid: 14393
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -27.475012,-29.241735
+ pos: -64.64753,-28.294647
parent: 2
- - type: Paper
- content: >
- оно на свободе!
- - uid: 25390
+- proto: ClothingHeadHatPaper
+ entities:
+ - uid: 14394
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -27.013458,-30.155209
+ pos: -52.608284,-42.366573
parent: 2
- - type: Paper
- content: >
- Экмперемент в̵͉̘̅Ь̸̨̖̈̈́о̸͉͆|̶̨̫̿̊ #655
- - uid: 25391
+ - uid: 14395
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.467596,-3.3337493
+ pos: -52.40177,-42.51407
parent: 2
- - uid: 25392
+- proto: ClothingHeadHatPartyWaterCup
+ entities:
+ - uid: 14396
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5412,-7.8952684
+ pos: -26.689962,43.860317
parent: 2
- - uid: 25393
+ - uid: 14397
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.496994,1.136191
+ pos: -26.314962,43.797817
parent: 2
- - uid: 25394
+ - uid: 14398
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.560791,-16.040512
+ pos: -26.846212,43.641567
parent: 2
- - uid: 25395
+ - uid: 14399
components:
- type: Transform
- pos: 3.4307036,-60.35931
+ pos: -26.518087,43.547817
parent: 2
- - uid: 25396
+- proto: ClothingHeadHatPurplesoft
+ entities:
+ - uid: 1791
components:
- type: Transform
- pos: 3.4932036,-60.406185
+ parent: 1787
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatPurplesoftFlipped
+ entities:
+ - uid: 1792
+ components:
+ - type: Transform
+ parent: 1787
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatRedwizard
+ entities:
+ - uid: 14400
+ components:
+ - type: Transform
+ pos: -69.5,-36.5
parent: 2
- - uid: 25397
+- proto: ClothingHeadHatRichard
+ entities:
+ - uid: 1205
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.44807,-0.6344657
+ parent: 1203
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatSurgcapBlue
+ entities:
+ - uid: 14401
+ components:
+ - type: Transform
+ pos: 4.0855947,-52.240982
parent: 2
- - uid: 25398
+- proto: ClothingHeadHatUshanka
+ entities:
+ - uid: 14402
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.640255,0.35066766
+ pos: 70.485535,-41.48498
parent: 2
- - uid: 25399
+- proto: ClothingHeadHatVioletwizard
+ entities:
+ - uid: 14403
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.466052,-52.343544
+ pos: -67.5,-36.5
parent: 2
- - uid: 25400
+- proto: ClothingHeadHatWarden
+ entities:
+ - uid: 14362
components:
- type: Transform
- pos: 3.3682036,-60.26556
+ parent: 14359
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatWelding
+ entities:
+ - uid: 14404
+ components:
+ - type: Transform
+ pos: -10.523207,-43.260536
parent: 2
- - uid: 25401
+ - uid: 14405
+ components:
+ - type: Transform
+ pos: -49.5,-16.5
+ parent: 2
+ - type: Physics
+ canCollide: False
+ - uid: 14406
components:
- type: Transform
- pos: -51.534542,12.58557
+ pos: -22.5,15.499999
parent: 2
- type: Physics
canCollide: False
- - uid: 25402
+- proto: ClothingHeadHatWeldingMaskFlame
+ entities:
+ - uid: 14407
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.514471,-3.3962493
+ pos: -10.742213,-43.474052
parent: 2
- - uid: 25403
+- proto: ClothingHeadHatWeldingMaskFlameBlue
+ entities:
+ - uid: 14408
components:
- type: Transform
- pos: -51.409542,12.58557
+ pos: -59.520313,42.482796
parent: 2
- type: Physics
canCollide: False
- - uid: 25404
+ - uid: 14409
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.344963,-40.299088
+ pos: 55.630886,-47.44692
parent: 2
- - uid: 25405
+- proto: ClothingHeadHatWeldingMaskPainted
+ entities:
+ - uid: 14410
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.598495,-1.6193767
+ pos: -79.500916,13.625097
parent: 2
- - uid: 25406
+ - uid: 14411
components:
- type: Transform
- pos: -51.690792,12.58557
+ pos: 11.554202,-3.2498593
parent: 2
+- proto: ClothingHeadHatWizard
+ entities:
+ - uid: 14412
+ components:
+ - type: Transform
+ pos: -68.5,-36.5
+ parent: 2
+- proto: ClothingHeadHelmetERTJanitor
+ entities:
+ - uid: 1793
+ components:
+ - type: Transform
+ parent: 1787
- type: Physics
canCollide: False
- - uid: 25407
+ - type: InsideEntityStorage
+- proto: ClothingHeadHelmetEVA
+ entities:
+ - uid: 14413
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.329336,-40.455338
+ pos: 92.29311,3.5736334
parent: 2
- - uid: 25408
+ - uid: 14414
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.548086,-40.595963
+ pos: 91.27749,3.6048834
parent: 2
- - uid: 25409
+- proto: ClothingHeadHelmetEVALarge
+ entities:
+ - uid: 14415
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.394325,-37.419067
+ pos: 70.5,-49.5
parent: 2
- - uid: 25410
+- proto: ClothingHeadHelmetFire
+ entities:
+ - uid: 14416
components:
- type: Transform
- pos: -26.638914,-7.6800103
+ pos: -29.5,-44.5
parent: 2
- - uid: 25411
+- proto: ClothingHeadHelmetPodWars
+ entities:
+ - uid: 14417
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.513914,-7.8466763
+ pos: -21.007933,-81.30595
parent: 2
- - uid: 25412
+- proto: ClothingHeadHelmetRiot
+ entities:
+ - uid: 14418
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.458359,-7.9577875
+ pos: 57.5,7.5
parent: 2
- - uid: 25413
+ - uid: 14419
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.428997,9.384801
+ pos: 57.5,8.5
parent: 2
- - uid: 25414
+ - uid: 14420
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.491495,9.306676
+ pos: 57.5,7.5
parent: 2
- - uid: 25415
+ - uid: 14421
components:
- type: Transform
- pos: -4.7436075,45.570145
+ pos: 57.5,8.5
parent: 2
- - uid: 25416
+- proto: ClothingHeadHelmetSecurityMedic
+ entities:
+ - uid: 14220
components:
- type: Transform
- pos: -4.6186075,45.71077
- parent: 2
- - uid: 25417
+ parent: 14214
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHelmetSwat
+ entities:
+ - uid: 14422
components:
- type: Transform
- pos: -4.3998575,45.67952
+ pos: 70.5,10.5
parent: 2
- - uid: 25418
+- proto: ClothingHeadNurseHat
+ entities:
+ - uid: 14423
components:
+ - type: MetaData
+ name: шапочка горничной
- type: Transform
- pos: -4.4779825,45.507645
+ pos: 0.027392589,50.83607
parent: 2
- - uid: 25419
+ - uid: 14424
components:
+ - type: MetaData
+ desc: Для настоящих мужчин
+ name: шапочка горничной
- type: Transform
- pos: -4.6029825,45.445145
+ pos: -0.3395255,50.83607
parent: 2
- - uid: 25420
+- proto: ClothingHeadPyjamaSyndicateRed
+ entities:
+ - uid: 14425
components:
+ - type: MetaData
+ desc: Чтобы держать твою милую голову в тепле.
+ name: красная пижамная шапочка
- type: Transform
- pos: -4.6186075,45.42952
+ pos: 45.5,-13.5
parent: 2
- - uid: 25421
+- proto: ClothingHeadsetBrigmedic
+ entities:
+ - uid: 14221
components:
- type: Transform
- pos: 19.616335,-27.48899
+ parent: 14214
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadsetMining
+ entities:
+ - uid: 14426
+ components:
+ - type: Transform
+ pos: 33.407036,38.515415
parent: 2
- - uid: 25422
+ - uid: 14427
components:
- type: Transform
- pos: 19.616335,-27.48899
+ rot: 1.5707963267948966 rad
+ pos: 35.94246,38.563385
parent: 2
- - uid: 25423
+- proto: ClothingMaskBandBlack
+ entities:
+ - uid: 14428
components:
- type: Transform
- pos: 19.616335,-27.48899
+ pos: -50.521004,-48.42694
parent: 2
- - uid: 25424
+- proto: ClothingMaskBat
+ entities:
+ - uid: 14429
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.340981,-58.260864
+ pos: 10.709117,67.608955
parent: 2
- - uid: 25425
+- proto: ClothingMaskBear
+ entities:
+ - uid: 14430
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.512856,-58.15149
+ pos: -3.1418045,0.1992526
parent: 2
- - uid: 25426
+- proto: ClothingMaskBee
+ entities:
+ - uid: 14431
components:
- type: Transform
- pos: -17.632225,-41.50565
+ pos: 48.406803,-25.420956
parent: 2
- - uid: 25427
+- proto: ClothingMaskBreath
+ entities:
+ - uid: 14432
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.63197,-35.449177
+ pos: -40.586826,-13.385798
parent: 2
- - uid: 25428
+ - type: Physics
+ canCollide: False
+ - uid: 14433
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.236137,-35.720013
+ pos: 29.476248,60.442265
parent: 2
- - uid: 25429
+ - uid: 14434
components:
- type: Transform
- pos: 53.309055,-37.011677
+ pos: -49.53151,20.5579
parent: 2
- - uid: 25430
+ - type: Physics
+ canCollide: False
+ - uid: 14435
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.66322,-36.35543
+ pos: -32.5,-77.5
parent: 2
- - uid: 25431
+ - type: Physics
+ canCollide: False
+ - uid: 14436
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.381973,-37.209595
+ pos: -28.464966,-75.305466
parent: 2
- - uid: 25432
+ - type: Physics
+ canCollide: False
+ - uid: 14437
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: 89.48647,4.7216983
+ pos: -32.5,-76.5
parent: 2
- - uid: 25433
+ - type: Physics
+ canCollide: False
+- proto: ClothingMaskClown
+ entities:
+ - uid: 14438
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: 88.5646,7.5654497
+ rot: -1.5707963267948966 rad
+ pos: -36.179256,2.4163718
parent: 2
- - uid: 25434
+- proto: ClothingMaskFox
+ entities:
+ - uid: 14439
components:
- type: Transform
- rot: 1.5707973450558423 rad
- pos: -62.548584,-36.53318
+ pos: 10.886129,67.41721
parent: 2
- - uid: 25435
+ - uid: 14440
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: -67.861084,-34.439426
+ pos: -4.823427,1.9396657
parent: 2
- - uid: 25436
+- proto: ClothingMaskGas
+ entities:
+ - uid: 14441
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 82.451546,5.6132445
+ pos: -29.5,-44.5
parent: 2
- - uid: 25437
+ - uid: 14442
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: -27.556807,0.63810754
+ pos: 92.35561,1.6986334
parent: 2
- - uid: 25438
+ - uid: 14443
components:
- type: Transform
- rot: 1.5707973450558423 rad
- pos: -27.291182,0.60685766
+ pos: -18.498352,-32.40024
parent: 2
- - uid: 25439
+ - uid: 14444
components:
- type: Transform
- rot: 3.141593671850739 rad
- pos: 95.86081,12.546649
+ pos: 92.73061,1.6830084
parent: 2
- - uid: 25440
+ - uid: 14445
components:
- type: Transform
- rot: 3.141593671850739 rad
- pos: 96.563934,12.671649
+ rot: 6.283185307179586 rad
+ pos: -30.528467,-31.360748
parent: 2
- - uid: 25441
+ - uid: 14446
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 79.7637,-1.3353615
+ rot: 6.283185307179586 rad
+ pos: -29.768051,-31.44414
parent: 2
- - uid: 25442
+ - uid: 14447
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 80.0137,-1.3978615
+ pos: -44.506374,-30.442978
parent: 2
- - uid: 25443
+ - type: Physics
+ canCollide: False
+ - uid: 14448
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 83.8262,-1.3041124
+ pos: 49.5,-37.5
parent: 2
- - uid: 25444
+ - type: Physics
+ canCollide: False
+ - uid: 14449
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 84.10745,-1.4603624
+ pos: -40.5,3.5
parent: 2
- - uid: 25445
+ - type: Physics
+ canCollide: False
+ - uid: 14450
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 87.87308,-1.2884884
+ pos: -39.517647,-50.443714
parent: 2
- - uid: 25446
+ - type: Physics
+ canCollide: False
+ - uid: 14451
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 88.18558,-1.4603636
+ pos: -35.451183,-35.34068
parent: 2
- - uid: 25447
+ - uid: 14452
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 100.55931,-2.4523969
+ pos: 92.69936,1.4330084
parent: 2
- - type: Paper
- content: >-
- [head=3]Журнал отчётности диверсионного агента[/head]
-
-
- Я - Агент Синдиката КейБи800, позывной - Безумный Джимми. Отправлен на данную точку для организации безопасной возможности побега для Агентов из Пермабрига станции Дельта. Отчётность для дальнейшего рассмотрения руководством.
-
-
- [italic]12.04.3024[/italic]
-
- Внедрён в ряды инженерного отдела станции под подставным именем. Изучаю планировку станции и конкретно всего брига.
-
-
- [italic]18.04.3024[/italic]
-
- Повторный прилёт, та же станция, та же должность, более халатное руководство. Смог спокойно выйти в космос и изучить пермабриг. Конструкция огорожена электрическим забором. Придётся разобраться с проводкой. Окна также находятся под напряжением.
-
-
- [italic]25.04.3024[/italic]
-
- Удалось обезвредить сотрудника СБ станции и забрать его личность. Для устранения оригинала использовал Миксер ДНК. Появилась возможность изучить конструкцию изнутри. Есть несколько слабых мест в опорных стенах, их разрушение - вопрос времени и инструментария. Примерно подготовил удобное место для расположения тайника.
-
-
- [italic]15.05.3024[/italic]
-
- Пришлось поработать над другой операцией, только появилась возможность вернуться к этой. Сделал брешь в электрозаборе, оказалось что есть ещё и минное поле. Пришлось аккуратно обходить его. Подготовил будущую конструкцию под тайник.
-
-
- [italic]22.05.3024[/italic]
-
- Сама комната готова, осталось натаскать сюда всё что нужно и сделать проход через пермабриг. Далее дело за малым. Проработка примерного плана почти закончена.
-
-
- [italic]28.05.3024[/italic]
-
- Кажется меня начинают в чём-то подозревать.. Их смущает что я постоянно трусь у пермы. Оставлю свои вещи здесь. Блин, кажется глава зовёт.. потом допишу отчёт.
- - uid: 25448
+ - uid: 14453
components:
- type: Transform
- rot: 3.141593671850739 rad
- pos: -70.4392,-36.70505
+ pos: 92.32436,1.4330084
parent: 2
- - uid: 25449
+- proto: ClothingMaskGasAtmos
+ entities:
+ - uid: 14454
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -51.228695,-35.401863
+ pos: -67.59537,-22.390003
parent: 2
- - uid: 25450
+ - uid: 14455
components:
- type: Transform
- pos: -51.01004,-35.338703
+ pos: -58.610283,22.760155
parent: 2
- - uid: 25451
+ - uid: 14456
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -58.30491,-43.498722
+ pos: -58.329033,22.978905
parent: 2
- - uid: 25452
+ - uid: 14457
components:
- type: Transform
- pos: 56.37655,25.567564
+ pos: -62.433693,8.033986
parent: 2
- - uid: 25453
+- proto: ClothingMaskGasMerc
+ entities:
+ - uid: 14458
components:
- type: Transform
- pos: 56.5953,25.614439
+ pos: -34.478718,-2.3417118
parent: 2
- - uid: 39276
+- proto: ClothingMaskGasSwat
+ entities:
+ - uid: 14459
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.413131,-3.0951538
- parent: 38344
- - uid: 39277
+ pos: 68.5,10.5
+ parent: 2
+- proto: ClothingMaskJackal
+ entities:
+ - uid: 14460
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.288131,-3.0795288
- parent: 38344
- - uid: 39278
+ pos: 11.299159,67.653206
+ parent: 2
+- proto: ClothingMaskMuzzle
+ entities:
+ - uid: 14163
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.607052,33.54294
- parent: 38344
- - uid: 39279
->>>>>>> master
+ parent: 14162
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14461
components:
- - type: MetaData
- name: предсмертная записка
- type: Transform
-<<<<<<< HEAD
- rot: -1.5707963267948966 rad
- pos: 37.5,-65.5
+ pos: 42.5,-66.5
parent: 2
- - uid: 26168
+ - uid: 14462
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-42.5
+ pos: 73.37959,23.53001
parent: 2
- - uid: 26169
+ - uid: 14463
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-26.5
+ pos: 69.77919,26.857225
parent: 2
- - uid: 26170
+ - uid: 14464
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 19.5,-37.5
+ pos: 69.8122,19.013836
parent: 2
-- proto: IntercomScience
+- proto: ClothingMaskSexyClown
entities:
- - uid: 26171
+ - uid: 1420
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-28.5
- parent: 2
- - uid: 26172
+ parent: 1418
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14465
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-41.5
+ pos: 47.621845,-53.26381
parent: 2
-- proto: IntercomSecurity
+- proto: ClothingMaskSexyMime
entities:
- - uid: 26173
+ - uid: 14467
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,5.5
- parent: 2
- - uid: 26174
+ parent: 14466
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14470
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,7.5
+ pos: -5.5252013,26.629133
parent: 2
- - uid: 26175
+- proto: ClothingMaskSterile
+ entities:
+ - uid: 14471
components:
- type: Transform
- pos: 74.5,4.5
+ pos: 6.504747,-13.464267
parent: 2
- - uid: 26176
+ - type: Physics
+ canCollide: False
+ - uid: 14472
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,25.5
+ pos: 6.4998994,-42.29039
parent: 2
-- proto: IntercomService
- entities:
- - uid: 26177
+ - uid: 14473
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -31.5,32.5
+ pos: 13.401516,-44.661903
parent: 2
- - uid: 26178
+ - uid: 14474
components:
- type: Transform
- pos: -10.5,34.5
+ pos: 45.5,-35.5
parent: 2
- - uid: 26179
+ - type: Physics
+ canCollide: False
+ - uid: 14475
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,44.5
+ pos: 4.0884237,-13.635049
parent: 2
-- proto: IntercomSupply
- entities:
- - uid: 26180
+ - uid: 14476
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,39.5
+ pos: 3.5965211,-52.177906
parent: 2
- - uid: 26181
+- proto: ClothingNeckBling
+ entities:
+ - uid: 13974
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,27.5
+ parent: 13972
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14477
+ components:
+ - type: Transform
+ pos: 25.452574,16.509296
parent: 2
-- proto: JanitorialTrolley
- entities:
- - uid: 26182
+ - uid: 14478
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,54.5
+ pos: 25.667227,16.59669
parent: 2
- - uid: 26183
+ - uid: 14479
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,54.5
+ pos: 25.311596,16.614462
parent: 2
-- proto: JanitorServiceLight
+- proto: ClothingNeckCloakGoliathCloak
entities:
- - uid: 26184
+ - uid: 14480
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,5.5
+ pos: 43.456936,-24.711899
parent: 2
- - type: DeviceLinkSink
- links:
- - 30719
- - uid: 26185
+- proto: ClothingNeckCloakHerald
+ entities:
+ - uid: 14481
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,27.5
+ pos: 43.496037,-54.385834
parent: 2
- - type: DeviceLinkSink
- links:
- - 30720
- - uid: 26186
+- proto: ClothingNeckCloakMiner
+ entities:
+ - uid: 14482
components:
- type: Transform
- pos: -44.5,13.5
+ pos: -55.51422,-50.568737
parent: 2
- - type: DeviceLinkSink
- links:
- - 30721
- - uid: 26187
+ - uid: 14483
components:
- type: Transform
- pos: 8.5,-22.5
+ pos: -102.4832,-18.476238
parent: 2
- - type: DeviceLinkSink
- links:
- - 30716
- - uid: 26188
+- proto: ClothingNeckCloakTrans
+ entities:
+ - uid: 14484
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-27.5
+ pos: -41.501427,-71.51004
parent: 2
- - type: DeviceLinkSink
- links:
- - 30726
-- proto: JetpackBlackFilled
+- proto: ClothingNeckClownmedal
entities:
- - uid: 26189
+ - uid: 14485
components:
- type: Transform
- pos: -15.465417,-12.474837
+ pos: 40.95823,23.521482
parent: 2
-- proto: JetpackBlue
+- proto: ClothingNeckHeadphones
entities:
- - uid: 26190
+ - uid: 14486
components:
- type: Transform
- pos: -45.5,-15.5
+ pos: 56.742912,15.760529
parent: 2
-- proto: JetpackBlueFilled
- entities:
- - uid: 26191
+ - uid: 14487
components:
- type: Transform
- pos: -64.5,4.5
+ pos: 56.733246,15.393333
parent: 2
- - uid: 26192
+ - uid: 14488
components:
- type: Transform
- pos: -52.5,32.5
+ pos: 56.733246,15.393333
parent: 2
-- proto: JetpackSecurityFilled
- entities:
- - uid: 26193
+ - uid: 14489
components:
- type: Transform
- pos: 63.5,8.5
+ pos: 56.733246,15.393333
parent: 2
- - uid: 26194
+ - uid: 14490
components:
- type: Transform
- pos: 63.5,9.5
+ pos: 56.727287,15.588654
parent: 2
- - uid: 26195
+ - uid: 14491
components:
- type: Transform
- pos: 63.5,8.5
+ pos: 56.733246,15.393333
parent: 2
- - uid: 26196
+ - uid: 14492
components:
- type: Transform
- pos: 63.5,9.5
+ pos: 56.733246,15.377708
parent: 2
-- proto: Jukebox
- entities:
- - uid: 26197
+ - uid: 14493
components:
- type: Transform
- pos: -18.5,-37.5
+ pos: -58.5,-49.5
parent: 2
-- proto: Katana
+- proto: ClothingNeckHorrific
entities:
- - uid: 26198
-=======
- rot: 3.141592653589793 rad
- pos: 13.269722,19.279083
- parent: 38344
- - type: Paper
- content: >2-
-
-
-
-
-
- [italic]Кто-бы мог подумать, что листок бумаги и ручка будет последним, что мои руки будут держать прежде, чем я умру. К сожалению, воздух практически закончился, и описать всё, что произошло со мной, я не смогу.
-
-
- Моё имя - Йонас Андор. Я командир 17-го разведывательного звена, выполняющий особое задание по проникновению в тыл врага. К сожалению, моя группа вступила в неравный бой с теми, кого мы должны были обойти. До последних сил надеялся, что моё подбитое корыто сможет дотянуть до ближайшей базы, но у проклятого астероида, видимо, были свои планы на меня.
-
-
- Воздуха в моём баллоне вот вот не станет, по крайней мере, карп, который не позволяет мне даже выйти в космос, позаботится о моих останках.
-
- Я прожил достойную жизнь. Слава Синдикату![/italic]
- - uid: 39280
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.460006,-3.3764038
- parent: 38344
- - uid: 39281
+ - uid: 14370
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.538131,-2.7982788
- parent: 38344
-- proto: PaperBin10
+ parent: 14367
+ - type: Physics
+ canCollide: False
+- proto: ClothingNeckMantleCap
entities:
- - uid: 25371
- components:
- - type: Transform
- pos: -12.5,-1.5
- parent: 2
- - type: Bin
- items:
- - 25372
- - 25373
- - 25374
- - 25375
- - 25376
- - 25377
- - type: ContainerContainer
- containers:
- bin-container: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 25372
- - 25373
- - 25374
- - 25375
- - 25376
- - 25377
- - uid: 25454
+ - uid: 14494
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,29.5
+ pos: 13.52143,0.6648903
parent: 2
- - uid: 25455
+- proto: ClothingNeckMantleCE
+ entities:
+ - uid: 14495
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,62.5
+ pos: -58.490314,5.5715113
parent: 2
- - uid: 25456
+- proto: ClothingNeckMantleCMO
+ entities:
+ - uid: 14496
components:
- type: Transform
- pos: 34.5,0.5
+ pos: 24.487383,-50.378414
parent: 2
- - uid: 25457
+- proto: ClothingNeckMantleHOP
+ entities:
+ - uid: 14497
components:
- type: Transform
- pos: -16.5,-40.5
+ pos: -15.52096,-3.4409883
parent: 2
- - uid: 25458
+- proto: ClothingNeckMantleHOS
+ entities:
+ - uid: 14498
components:
- type: Transform
- pos: 55.29164,-2.3179092
+ pos: 36.564354,22.725296
parent: 2
- - uid: 25459
+- proto: ClothingNeckMantleRD
+ entities:
+ - uid: 14499
components:
- type: Transform
- pos: 30.5,-0.5
+ pos: -16.468708,-45.430428
parent: 2
- - uid: 25460
+- proto: ClothingNeckNanoTrasenPin
+ entities:
+ - uid: 14500
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,23.5
+ pos: 71.252914,-17.538551
parent: 2
- - uid: 25461
+- proto: ClothingNeckScarfStripedZebra
+ entities:
+ - uid: 14468
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,19.5
- parent: 2
- - uid: 25462
+ parent: 14466
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingNeckStethoscope
+ entities:
+ - uid: 14501
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-47.5
+ pos: 14.568494,-58.43179
parent: 2
- - uid: 25463
+ - uid: 14502
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-51.5
+ pos: 32.043938,-26.529804
parent: 2
- - uid: 25464
+ - uid: 14503
components:
- type: Transform
- pos: 21.5,-28.5
+ pos: 31.84081,-26.48293
parent: 2
- - uid: 25465
+ - uid: 14504
components:
- type: Transform
- pos: 9.5,7.5
+ pos: 21.703972,-42.332386
parent: 2
- - uid: 25466
+ - uid: 14505
components:
- type: Transform
- pos: 29.5,38.5
+ pos: 47.5,-35.5
parent: 2
- - uid: 25467
+ - type: Physics
+ canCollide: False
+- proto: ClothingNeckStoleChaplain
+ entities:
+ - uid: 14506
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,28.5
+ pos: -21.513214,-79.44685
parent: 2
-- proto: PaperBin5
+- proto: ClothingNeckTieDet
entities:
- - uid: 25468
+ - uid: 14371
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -57.500004,-43.5
- parent: 2
- - uid: 25469
+ parent: 14367
+ - type: Physics
+ canCollide: False
+ - uid: 14507
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,39.5
+ pos: 36.449116,-50.524494
parent: 2
-- proto: PaperCaptainsThoughts
+ - type: Physics
+ canCollide: False
+- proto: ClothingNeckTieRed
entities:
- - uid: 25470
+ - uid: 14372
components:
- type: Transform
- pos: 7.420329,1.4533973
- parent: 2
-- proto: PaperDoor
+ parent: 14367
+ - type: Physics
+ canCollide: False
+- proto: ClothingNeckTieSci
entities:
- - uid: 25471
+ - uid: 14373
components:
- type: Transform
- pos: -46.5,-45.5
- parent: 2
-- proto: PaperOffice
+ parent: 14367
+ - type: Physics
+ canCollide: False
+- proto: ClothingOuterAerostaticBomberJacket
entities:
- - uid: 14749
+ - uid: 14275
components:
- type: Transform
- parent: 14738
- - type: Paper
- stampState: paper_stamp-centcom
- stampedBy:
- - stampedColor: '#006600FF'
- stampedName: stamp-component-stamped-name-centcom
- content: >-
- [color=#1b487e]███░███░░░░██░░░░[/color]
-
- [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head]
-
- [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head]
-
- [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Delta Station ЦК-КОМ[/bold]
-
- [color=#1b487e]░░░░██░░░████░███[/color]
-
- =============================================
- ОБРАЩЕНИЕ
- =============================================
-
- [bold]Время от начала смены и дата:[/bold] 00:22:01
-
- 31.05.3024
-
- [bold]Составитель документа:[/bold]
-
- Артемий Травин
-
- [bold]Должность составителя:[/bold] Руководитель бух.учёта ЦК
-
-
- Я, Артемий Травин, в должности Руководителя Бухгалтерского учёта Центрального Командования обращаюсь к Капитану станции Дельта на момент написания документа.
-
- [bold]Содержание обращения:[/bold]
-
- Капитан, уведомляю вас, что ваша подписка на КосмоХаб в категории Горячие Вульпакинши была успешно продлена с вашего основного счёта. Нехватка средств на счету была компенсирована вычетом с баланса отдела Снабжения вашей станции. Операция окончательна и не может быть оспорена в соответствии с пользовательским соглашением от 11.09.2984.
-
- В случае возникновения вопросов - обратитесь непосредственно в бухгалтерию по коду RT1337.
-
-
- =============================================
- [italic]Место для печатей[/italic]
+ parent: 14273
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 15041
+- proto: ClothingOuterApronChef
+ entities:
+ - uid: 14508
components:
- type: Transform
- parent: 15039
- - type: Paper
- stampState: paper_stamp-syndicate
- stampedBy:
- - stampedColor: '#850000FF'
- stampedName: stamp-component-stamped-name-syndicate
- content: >-
- [color=#B50F1D] ███░██████░███[/color]
-
- [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head]
-
- [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head]
-
- [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Delta Station ПД-СИН[/bold]
-
- [color=#B50F1D] ███░██████░███[/color]
-
- =============================================
- ОТЧЁТ О ВЫПОЛНЕНИИ ЦЕЛЕЙ
- =============================================
-
- Время от начала смены и дата:
-
- 01:21:46 31.05.3024
-
- Позывной агента: Агент
-
- Карп
-
-
- Я, Агент Карп, успешно выполнил поставленные передо мной руководством Синдиката цели. Прошу принять отчёт о выполнении.
-
- Отчёт:
-
- Цель успешно устранена, необходимая вещь заложена в тайнике под бригом. Все свои улики оставляю на условленной точке. Слава Синдикату!
-
-
- =============================================
- [italic]Место для печатей[/italic]
+ pos: 22.545242,65.64183
+ parent: 2
- type: Physics
canCollide: False
- - type: InsideEntityStorage
- - uid: 25472
+ - uid: 14509
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.425858,31.376373
+ pos: -28.37068,32.64315
parent: 2
- - uid: 25473
+- proto: ClothingOuterArmorBasic
+ entities:
+ - uid: 14510
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.535233,31.501373
+ pos: 61.5,9.5
parent: 2
- - uid: 25475
+ - uid: 14511
components:
- type: Transform
- parent: 25474
- - type: Paper
- stampState: paper_stamp-cmo
- stampedBy:
- - stampedColor: '#33CCFFFF'
- stampedName: stamp-component-stamped-name-cmo
- content: >-
- Илья, Кор, Ян, Отто, Вета, Анастасия, Ростик и Елена работали в одной больнице. Они все были очень опытными и профессиональными врачами, каждый со своей специализацией.
-
-
- Илья был профессиональным парамедиком. Он был одним из лучших специалистов и его пациенты всегда оставались довольны его работой.
-
-
- Кор был лучшим вирусологом и занимался исследованиями различных вирусов. Он был на столько увлечен своей работой, что проводил эксперименты в свободное от работы время вместе с Ильей.
-
-
- Ян и Ростик были прекрасными химиками. Они занимались созданием новых лекарств и формулировок лекарственных препаратов. Говорят, что они создали "Бикардин".
-
-
- Отто, был известен своей веселой натурой, прекрасный врач.
-
-
- Анастасия была замечательным главным врачом и всегда была готова помочь в любой ситуации. Она была очень организованной и дисциплинированной.
-
-
- Веточка начинала свой путь врача как интерн и быстро стремительно дослужилась до звания врача-терапевта. Она была умной и трудолюбивой и всегда старалась находить лучшее решение для каждого своего пациента.
-
-
- Елена замечатильный генетик. Сколько трупов прошло через ее руки?
-
-
- Все эти врачи работали вместе и помогали друг другу в трудные моменты. Они были настоящей командой профессионалов и всегда старались делать все, чтобы помочь своим пациентам. Благодаря этому, братья по врачебному делу справлялись со своим нелегким трудом на высшем уровне.
- - type: Physics
- canCollide: False
- - uid: 25476
->>>>>>> master
+ pos: 61.5,9.5
+ parent: 2
+ - uid: 14512
components:
- type: Transform
-<<<<<<< HEAD
- pos: -55.5,-48.5
+ pos: 61.5,9.5
parent: 2
-- proto: KitchenElectricGrill
- entities:
- - uid: 26199
+ - uid: 14513
components:
- type: Transform
- pos: -30.5,36.5
+ pos: 61.5,9.5
parent: 2
- - type: ItemPlacer
- placedEntities:
- - 17665
-- proto: KitchenKnife
+- proto: ClothingOuterArmorBulletproof
entities:
- - uid: 26200
+ - uid: 14514
components:
- type: Transform
- pos: 27.5,65.5
+ pos: 61.5,7.5
parent: 2
- - uid: 26201
+ - uid: 14515
components:
- type: Transform
- pos: -29.729101,34.53911
+ pos: 61.5,7.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: KitchenMicrowave
- entities:
- - uid: 26202
+ - uid: 14516
components:
- type: Transform
- pos: 82.5,7.5
+ pos: 61.5,7.5
parent: 2
- - uid: 26203
+ - uid: 14517
components:
- type: Transform
- pos: 61.5,30.5
+ pos: 61.5,7.5
parent: 2
- - uid: 26204
+- proto: ClothingOuterArmorHeavy
+ entities:
+ - uid: 14518
components:
- type: Transform
- pos: 41.5,-63.5
+ pos: 69.5,10.5
parent: 2
- - uid: 26205
+ - type: GroupExamine
+ group:
+ - hoverMessage: ""
+ contextText: verb-examine-group-other
+ icon: /Textures/Interface/examine-star.png
+ components:
+ - Armor
+ - ClothingSpeedModifier
+ entries:
+ - message: Понижает вашу скорость на [color=yellow]10%[/color].
+ priority: 0
+ component: ClothingSpeedModifier
+ - message: >-
+ Обеспечивает следующую защиту:
+
+ - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]80%[/color].
+
+ - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]80%[/color].
+
+ - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]80%[/color].
+
+ - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color].
+
+ - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]100%[/color].
+
+ - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]25%[/color].
+ priority: 0
+ component: Armor
+ title: null
+- proto: ClothingOuterArmorReflective
+ entities:
+ - uid: 14519
components:
- type: Transform
- pos: -25.5,-40.5
+ pos: 61.5,8.5
parent: 2
- - uid: 26206
+ - uid: 14520
components:
- type: Transform
- pos: -33.5,34.5
+ pos: 61.5,8.5
parent: 2
- - uid: 26207
+ - uid: 14521
components:
- type: Transform
- pos: 20.5,1.5
+ pos: 61.5,8.5
parent: 2
- - uid: 26208
+- proto: ClothingOuterArmorRiot
+ entities:
+ - uid: 14522
components:
- type: Transform
- pos: 74.5,-51.5
- parent: 2
- - uid: 26209
-=======
- pos: -36.374428,60.761806
+ pos: 57.5,8.5
parent: 2
- - uid: 25477
+ - uid: 14523
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.950905,59.658222
+ pos: 57.5,8.5
parent: 2
- - uid: 25478
+ - uid: 14524
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.54007,61.959106
+ pos: 57.5,7.5
parent: 2
- - uid: 25479
+ - uid: 14525
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.381355,63.286507
+ pos: 57.5,7.5
parent: 2
- - uid: 25480
+- proto: ClothingOuterCardborg
+ entities:
+ - uid: 14526
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.522644,38.518795
+ pos: 47.511616,-54.497818
parent: 2
- - uid: 25481
+ - type: Physics
+ canCollide: False
+- proto: ClothingOuterCoatAMG
+ entities:
+ - uid: 14527
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.417274,61.98857
+ pos: 38.485973,-72.53411
parent: 2
- - uid: 25482
+- proto: ClothingOuterCoatBomber
+ entities:
+ - uid: 1520
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.098415,62.947308
- parent: 2
- - uid: 25483
+ parent: 1511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterCoatExpensive
+ entities:
+ - uid: 14528
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.48461,63.153763
+ pos: 20.5,63.5
parent: 2
- - uid: 25484
+- proto: ClothingOuterCoatJensen
+ entities:
+ - uid: 14529
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -33.686966,61.560875
+ pos: -24.450886,-10.224105
parent: 2
- - uid: 25485
+- proto: ClothingOuterCoatLabSecurityMedic
+ entities:
+ - uid: 14222
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.535282,61.885326
+ parent: 14214
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterCoatRobo
+ entities:
+ - uid: 14204
+ components:
+ - type: Transform
+ parent: 14202
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14210
+ components:
+ - type: Transform
+ parent: 14208
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterCoatSpaceAsshole
+ entities:
+ - uid: 14530
+ components:
+ - type: Transform
+ pos: -71.5,-36.5
parent: 2
- - uid: 25486
+- proto: ClothingOuterCoatWardenAlt
+ entities:
+ - uid: 14363
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.628983,31.516998
+ parent: 14359
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterDogi
+ entities:
+ - uid: 14531
+ components:
+ - type: Transform
+ pos: -55.5,-44.5
parent: 2
-- proto: PaperRolling1
+- proto: ClothingOuterHardsuitBrigmedic
entities:
- - uid: 25487
->>>>>>> master
+ - uid: 14223
+ components:
+ - type: Transform
+ parent: 14214
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterHardsuitEVAPrisoner
+ entities:
+ - uid: 14532
components:
- - type: MetaData
- desc: Тонкий лист бумаги, который кто-то уже использовал.
- name: использованная бумага
- type: Transform
-<<<<<<< HEAD
- pos: -65.5,18.5
+ pos: 92.35561,3.7298834
parent: 2
- - uid: 26210
+ - uid: 14533
components:
- type: Transform
- pos: 26.5,32.5
+ pos: 91.30874,3.6517584
parent: 2
- - uid: 26211
+- proto: ClothingOuterHoodieBlack
+ entities:
+ - uid: 14534
components:
- type: Transform
- pos: -33.5,35.5
+ pos: -50.255486,-48.44169
parent: 2
- - uid: 26212
+- proto: ClothingOuterStraightjacket
+ entities:
+ - uid: 14164
components:
- type: Transform
- pos: 34.5,-27.5
- parent: 2
- - uid: 26213
+ parent: 14162
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14535
components:
- type: Transform
- pos: 22.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 41.45677,-66.6926
parent: 2
- - uid: 26214
+ - uid: 14536
components:
- type: Transform
- pos: 23.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: -36.470066,2.4219537
parent: 2
- - uid: 26215
+ - uid: 14537
components:
- type: Transform
- pos: -25.5,-17.5
+ pos: 70.371666,18.826336
parent: 2
-- proto: KitchenReagentGrinder
+- proto: ClothingOuterSuitCarp
entities:
- - uid: 26216
+ - uid: 14539
components:
- type: Transform
- pos: -24.5,-14.5
- parent: 2
- - uid: 26217
+ parent: 14538
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterSuitEmergency
+ entities:
+ - uid: 14540
components:
- type: Transform
- pos: 84.5,7.5
+ pos: 69.5,-49.5
parent: 2
- - uid: 26218
+- proto: ClothingOuterSuitFire
+ entities:
+ - uid: 14541
components:
- type: Transform
- pos: -25.5,-25.5
+ pos: -29.5,-44.5
parent: 2
- - uid: 26219
+- proto: ClothingOuterVestArmorMedSec
+ entities:
+ - uid: 14224
components:
- type: Transform
- pos: 8.5,-31.5
- parent: 2
- - uid: 26220
+ parent: 14214
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterVestHazard
+ entities:
+ - uid: 14542
components:
- type: Transform
- pos: -33.5,36.5
+ pos: -28.464966,-75.180466
parent: 2
- - uid: 26221
+ - type: Physics
+ canCollide: False
+ - uid: 14543
components:
- type: Transform
- pos: 26.5,-65.5
+ pos: 20.535162,10.5619135
parent: 2
- - uid: 26222
+ - type: Physics
+ canCollide: False
+ - uid: 14544
components:
- type: Transform
- pos: -5.5,41.5
+ pos: 49.5,-37.5
parent: 2
- - uid: 26223
+ - type: Physics
+ canCollide: False
+ - uid: 14545
components:
- type: Transform
- pos: -39.5,52.5
+ pos: -53.815666,28.52803
parent: 2
-- proto: KitchenSpike
+- proto: ClothingOuterVestSecurityMedic
entities:
- - uid: 26224
+ - uid: 14225
components:
- type: Transform
- pos: -33.5,30.5
- parent: 2
- - uid: 26225
+ parent: 14214
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterWinterCoat
+ entities:
+ - uid: 14546
components:
- type: Transform
- pos: -32.5,30.5
+ pos: -30.328856,28.425974
parent: 2
- - uid: 26226
+- proto: ClothingOuterWizard
+ entities:
+ - uid: 14547
components:
- type: Transform
- pos: 26.5,67.5
+ pos: -68.5,-36.5
parent: 2
-- proto: KnifePlastic
+- proto: ClothingOuterWizardRed
entities:
- - uid: 26227
+ - uid: 14548
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.508652,-17.53014
+ pos: -69.5,-36.5
parent: 2
- - uid: 26228
+- proto: ClothingOuterWizardViolet
+ entities:
+ - uid: 14549
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.524275,-17.37389
+ pos: -67.5,-36.5
parent: 2
-- proto: Lamp
+- proto: ClothingRandomSpawner
entities:
- - uid: 26229
+ - uid: 14550
components:
- type: Transform
- pos: -34.413235,-15.25878
+ pos: 11.345603,70.69221
parent: 2
- - uid: 26230
+ - uid: 14551
components:
- type: Transform
- pos: 72.53723,21.71029
+ pos: 11.6524935,70.487724
parent: 2
- - uid: 26231
+- proto: ClothingShoesAerostatic
+ entities:
+ - uid: 14276
components:
- type: Transform
- pos: 27.5,28.5
- parent: 2
- - uid: 26232
+ parent: 14273
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14552
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.355682,-16.29442
+ pos: -61.5,-39.5
parent: 2
- - uid: 26233
+- proto: ClothingShoesBootsCombatFilled
+ entities:
+ - uid: 14553
components:
- type: Transform
- pos: 24.575024,-52.379463
+ pos: 36.193935,21.963104
parent: 2
- - uid: 26234
+- proto: ClothingShoesBootsJack
+ entities:
+ - uid: 1521
components:
- type: Transform
- pos: -15.40152,11.692742
- parent: 2
- - uid: 26235
+ parent: 1511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesBootsLaceup
+ entities:
+ - uid: 14554
components:
- type: Transform
- pos: -18.584768,-41.095764
+ pos: -49.50318,-48.500687
parent: 2
- - uid: 26236
+ - uid: 14555
components:
- type: Transform
- pos: 41.55369,21.383957
+ pos: 55.5,-35.5
parent: 2
- - uid: 26237
+- proto: ClothingShoesBootsMag
+ entities:
+ - uid: 14311
components:
- type: Transform
- pos: 27.459814,37.60866
- parent: 2
- - uid: 26238
+ parent: 14309
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14315
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,28.5
- parent: 2
- - uid: 26239
+ parent: 14313
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14319
components:
- type: Transform
- pos: 33.652378,-1.3068556
- parent: 2
- - uid: 26240
+ parent: 14317
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14556
components:
- type: Transform
- pos: -14.380997,-79.49119
+ pos: -45.534843,-13.538627
parent: 2
- - uid: 26241
+ - type: Physics
+ canCollide: False
+ - uid: 14557
components:
- type: Transform
- pos: -46.37526,17.5579
+ pos: -15.668542,-13.459213
parent: 2
- - uid: 26242
+ - uid: 14558
components:
- type: Transform
- pos: 49.699116,-53.372818
+ pos: -15.449792,-13.459212
parent: 2
- - uid: 26243
+- proto: ClothingShoesBootsPerformer
+ entities:
+ - uid: 14559
components:
- type: Transform
- pos: 1.5,14.5
+ rot: 6.283185307179586 rad
+ pos: -6.253917,54.752438
parent: 2
- - uid: 26244
+- proto: ClothingShoesChef
+ entities:
+ - uid: 14560
components:
- type: Transform
- pos: -24.41836,23.55868
+ pos: -32.67555,29.368694
parent: 2
- - uid: 26245
+- proto: ClothingShoesColorOrange
+ entities:
+ - uid: 14195
components:
- type: Transform
- pos: 48.730324,-44.432247
- parent: 2
- - uid: 26246
+ parent: 14194
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14199
components:
- type: Transform
- pos: -16.443285,-47.389317
- parent: 2
- - uid: 26247
+ parent: 14198
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14205
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.536855,46.736298
- parent: 2
- - uid: 26248
+ parent: 14202
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14211
components:
- type: Transform
- pos: -57.398136,7.639348
- parent: 2
- - uid: 26249
+ parent: 14208
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesGaloshes
+ entities:
+ - uid: 1794
components:
- type: Transform
- pos: -23.431923,-79.45605
- parent: 2
- - uid: 26250
+ parent: 1787
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1795
components:
- type: Transform
- pos: 29.563286,44.666252
- parent: 2
- - uid: 26251
+ parent: 1787
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesSchoolBlack
+ entities:
+ - uid: 14173
components:
- type: Transform
- pos: 34.59761,22.545893
- parent: 2
- - uid: 26252
+ parent: 14172
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesSchoolWhite
+ entities:
+ - uid: 14174
components:
- type: Transform
- pos: -27.460869,19.624147
- parent: 2
- - uid: 26253
+ parent: 14172
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesSlippers
+ entities:
+ - uid: 14561
components:
- type: Transform
- pos: 31.585245,8.603551
+ pos: 49.5,-16.5
parent: 2
- - uid: 26254
+- proto: ClothingShoesSwat
+ entities:
+ - uid: 14562
components:
- type: Transform
- pos: -62.437016,6.65032
+ pos: 68.5,8.5
parent: 2
- - uid: 26255
+- proto: ClothingShoesWizard
+ entities:
+ - uid: 14563
components:
- type: Transform
- pos: 43.548054,-60.36112
+ pos: -68.51795,-37.045822
parent: 2
- - uid: 26256
+ - uid: 14564
components:
- type: Transform
- pos: -40.36525,-69.40065
+ pos: -69.535774,-37.060574
parent: 2
- - uid: 26257
+ - uid: 14565
components:
+ - type: MetaData
+ desc: Японские деревянные сандалии.
+ name: гэта
- type: Transform
- pos: 43.588223,-25.339705
+ pos: -45.41999,-48.686264
parent: 2
- - uid: 26258
+ - uid: 14566
components:
+ - type: MetaData
+ desc: Японские деревянные сандалии.
+ name: гэта
- type: Transform
- pos: 53.588223,-22.402205
+ pos: -46.688583,-48.627266
parent: 2
- - uid: 26259
+ - uid: 14567
components:
- type: Transform
- pos: 47.632286,-25.284323
+ pos: -67.51488,-37.060574
parent: 2
- - uid: 26260
+- proto: ClothingUnderSocksCoder
+ entities:
+ - uid: 14568
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.463715,59.64344
+ pos: -58.5,-49.5
parent: 2
- - uid: 26261
+- proto: ClothingUniformJumpskirtBrigmedic
+ entities:
+ - uid: 14226
components:
- type: Transform
- pos: 53.772453,27.785496
- parent: 2
-- proto: LampBanana
+ parent: 14214
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpskirtDetectiveGrey
entities:
- - uid: 26262
+ - uid: 14569
components:
- type: Transform
- pos: -4.5296516,34.793674
+ pos: -36.5,59.5
parent: 2
- - uid: 26263
+- proto: ClothingUniformJumpskirtElegantMaid
+ entities:
+ - uid: 14570
components:
- type: Transform
- pos: -36.5,0.5
+ pos: 0.036769398,50.45079
parent: 2
- - uid: 26264
+ - uid: 14571
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.519005,62.7927
+ pos: -0.33014846,50.450794
parent: 2
-- proto: LampGold
+- proto: ClothingUniformJumpskirtHoSParadeMale
entities:
- - uid: 5
+ - uid: 14573
components:
- type: Transform
- pos: 74.52993,-39.28385
- parent: 2
- - type: HandheldLight
- toggleActionEntity: 6
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- actions: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 6
+ parent: 14572
- type: Physics
- canCollide: True
- - type: ActionsContainer
- - uid: 26265
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpskirtJanimaidmini
+ entities:
+ - uid: 14575
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.628714,-1.2583096
+ pos: 53.54969,-25.345713
parent: 2
- - uid: 26266
+ - uid: 14576
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.296064,-7.270985
+ pos: -0.29345667,50.450794
parent: 2
- - uid: 26267
+- proto: ClothingUniformJumpskirtJanitor
+ entities:
+ - uid: 1796
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.666464,-7.2709846
- parent: 2
- - uid: 26268
+ parent: 1787
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1797
components:
- type: Transform
- pos: 15.555076,-51.159237
- parent: 2
- - uid: 26269
+ parent: 1787
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpskirtPerformer
+ entities:
+ - uid: 14577
components:
- type: Transform
- pos: -15.505793,-5.327181
+ rot: 6.283185307179586 rad
+ pos: -6.6330657,54.752438
parent: 2
- - uid: 26270
+- proto: ClothingUniformJumpskirtPrisoner
+ entities:
+ - uid: 14196
components:
- type: Transform
- rot: 3.2845950045157224E-05 rad
- pos: 7.4999056,7.534997
- parent: 2
- - uid: 26271
+ parent: 14194
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14200
components:
- type: Transform
- pos: 12.52658,2.690349
- parent: 2
- - uid: 26272
+ parent: 14198
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14206
components:
- type: Transform
- pos: 51.53175,-15.470508
- parent: 2
- - uid: 26273
+ parent: 14202
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14212
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.608383,2.7133226
- parent: 2
- - uid: 26274
+ parent: 14208
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14579
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.54723,-1.366355
- parent: 2
- - uid: 26275
+ parent: 14578
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14580
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.441383,-12.320116
- parent: 2
-- proto: LampInterrogator
- entities:
- - uid: 26276
-=======
- pos: 27.428896,-17.37698
- parent: 2
-- proto: PaperScrap
- entities:
- - uid: 25488
+ parent: 14578
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14584
components:
- type: Transform
- pos: 53.283215,-37.653236
- parent: 2
- - uid: 25489
+ parent: 14583
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14585
components:
- type: Transform
- pos: 55.545273,23.560537
- parent: 2
- - uid: 25490
+ parent: 14583
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14588
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.89638,23.55645
+ pos: 86.514824,6.4461493
parent: 2
- - uid: 39282
+- proto: ClothingUniformJumpskirtSchool
+ entities:
+ - uid: 14175
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.53682,4.657074
- parent: 38344
- - uid: 39283
+ parent: 14172
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14176
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.458695,4.938324
- parent: 38344
-- proto: ParticleAcceleratorControlBoxUnfinished
+ parent: 14172
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitAerostatic
entities:
- - uid: 25491
+ - uid: 14277
components:
- type: Transform
- pos: 8.5,-1.5
- parent: 2
- - uid: 25492
+ parent: 14273
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitBrigmedic
+ entities:
+ - uid: 14227
components:
- type: Transform
- pos: -75.5,-5.5
- parent: 2
-- proto: ParticleAcceleratorEmitterForeUnfinished
+ parent: 14214
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitColorBlack
entities:
- - uid: 25493
+ - uid: 14589
components:
- type: Transform
- pos: 7.5,-1.5
+ pos: -49.827705,-48.589184
parent: 2
- - uid: 25494
+- proto: ClothingUniformJumpsuitDetective
+ entities:
+ - uid: 1762
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-7.5
- parent: 2
-- proto: ParticleAcceleratorEmitterPortUnfinished
+ parent: 1759
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitDetectiveGrey
entities:
- - uid: 25495
+ - uid: 14590
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-5.5
+ pos: -36.5,59.5
parent: 2
-- proto: ParticleAcceleratorEmitterStarboardUnfinished
+- proto: ClothingUniformJumpsuitHoSParadeMale
entities:
- - uid: 25496
+ - uid: 14574
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-6.5
- parent: 2
-- proto: ParticleAcceleratorEndCapUnfinished
+ parent: 14572
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitKimono
entities:
- - uid: 25497
+ - uid: 14591
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-5.5
+ pos: -46.6148,-48.380947
parent: 2
- - uid: 25498
+ - uid: 14592
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-5.5
+ pos: -45.355076,-48.42951
parent: 2
-- proto: ParticleAcceleratorFuelChamberUnfinished
+- proto: ClothingUniformJumpsuitLoungewear
entities:
- - uid: 25499
+ - uid: 14593
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-7.5
+ pos: -55.444347,-45.36158
parent: 2
-- proto: ParticleAcceleratorPowerBoxUnfinished
+- proto: ClothingUniformJumpsuitNanotrasen
entities:
- - uid: 25500
+ - uid: 14594
components:
- type: Transform
- pos: 14.5,-5.5
+ pos: 6.542385,-83.541824
parent: 2
- - uid: 25501
+- proto: ClothingUniformJumpsuitPrisoner
+ entities:
+ - uid: 14197
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-7.5
- parent: 2
-- proto: PartRodMetal
- entities:
- - uid: 25502
+ parent: 14194
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14201
components:
- type: Transform
- pos: -28.5,15.5
- parent: 2
- - uid: 25503
+ parent: 14198
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14207
components:
- type: Transform
- pos: 12.5,81.5
- parent: 2
- - uid: 25504
+ parent: 14202
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14213
components:
- type: Transform
- pos: 30.5,30.5
- parent: 2
- - uid: 25505
+ parent: 14208
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14581
components:
- type: Transform
- pos: 21.5,8.5
+ parent: 14578
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14582
+ components:
+ - type: Transform
+ parent: 14578
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14586
+ components:
+ - type: Transform
+ parent: 14583
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14587
+ components:
+ - type: Transform
+ parent: 14583
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14595
+ components:
+ - type: Transform
+ pos: 86.546074,4.475347
parent: 2
-- proto: PartRodMetal1
+- proto: ClothingUniformJumpsuitRepairmanSyndie
entities:
- - uid: 25506
+ - uid: 14596
components:
- type: Transform
- rot: 3.141593671850739 rad
- pos: 59.33862,-40.570953
+ pos: -34.717594,-33.68413
parent: 2
- - uid: 25507
+- proto: ClothingUniformJumpsuitSecBlue
+ entities:
+ - uid: 1522
components:
- type: Transform
- pos: -25.351421,-29.692646
+ parent: 1511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClownRecorder
+ entities:
+ - uid: 14597
+ components:
+ - type: Transform
+ pos: -8.497296,31.748924
parent: 2
- - uid: 25508
+- proto: Cobweb1
+ entities:
+ - uid: 14598
components:
- type: Transform
- pos: -40.326496,-30.266003
+ rot: 3.141592653589793 rad
+ pos: -38.5,-17.5
parent: 2
- - uid: 25509
+ - uid: 14599
components:
- type: Transform
- pos: -37.768337,-25.146555
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-17.5
parent: 2
- - uid: 25510
+ - uid: 14600
components:
- type: Transform
- pos: -51.80867,-29.275694
+ pos: -41.5,-13.5
parent: 2
- - uid: 25511
+- proto: Cobweb2
+ entities:
+ - uid: 14601
components:
- type: Transform
- pos: -25.45559,-29.265266
+ pos: 56.5,-34.5
parent: 2
- - uid: 25512
+ - uid: 14602
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.51996,-66.81522
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-71.5
parent: 2
- - uid: 25513
+ - uid: 14603
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.572918,-62.433575
+ pos: -38.5,-13.5
parent: 2
- - uid: 25514
+- proto: CombatKnife
+ entities:
+ - uid: 14604
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: 61.572994,-40.555332
+ pos: -20.695433,-81.44657
parent: 2
- - uid: 39284
+- proto: ComfyChair
+ entities:
+ - uid: 14605
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.028293,19.568909
- parent: 38344
- - uid: 39285
+ pos: 60.5,-9.5
+ parent: 2
+ - uid: 14606
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.95761,19.583649
- parent: 38344
-- proto: Pen
- entities:
- - uid: 1234
+ rot: 1.5707963267948966 rad
+ pos: -76.5,16.5
+ parent: 2
+ - uid: 14607
components:
- type: Transform
- parent: 1231
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 25515
+ rot: 1.5707963267948966 rad
+ pos: -71.5,16.5
+ parent: 2
+ - uid: 14608
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.097733,30.704498
+ rot: 3.141592653589793 rad
+ pos: -34.5,-8.5
parent: 2
- - uid: 25516
+ - uid: 14609
components:
- type: Transform
- pos: -17.069618,-41.371113
+ rot: -1.5707963267948966 rad
+ pos: -73.5,16.5
parent: 2
- - uid: 25517
+ - uid: 14610
components:
- type: Transform
- pos: 9.351555,32.663494
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-52.5
parent: 2
- - uid: 25518
+ - uid: 14611
components:
- type: Transform
- pos: 15.707917,-49.4478
+ pos: -68.5,-34.5
parent: 2
- - uid: 25519
+ - uid: 14612
components:
- type: Transform
- pos: -24.506498,22.68696
+ pos: 51.5,29.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25520
+ - uid: 14613
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -40.579536,61.501842
+ pos: 8.5,6.5
parent: 2
- - uid: 25521
+ - uid: 14614
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -26.690697,-29.727829
+ pos: 8.5,8.5
parent: 2
- - uid: 25522
+ - uid: 14615
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 53.439426,15.789871
+ pos: 13.5,9.5
parent: 2
- - uid: 25523
+ - uid: 14616
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 53.626926,15.805496
+ pos: 13.5,10.5
parent: 2
- - uid: 25524
+ - uid: 14617
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 3.0607932,-16.36893
+ pos: 11.5,9.5
parent: 2
- - uid: 25525
+ - uid: 14618
components:
- type: Transform
- pos: 26.2638,-3.5469248
+ rot: 1.5707963267948966 rad
+ pos: 11.5,10.5
parent: 2
- - uid: 25526
+ - uid: 14619
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 48.420795,18.954248
+ pos: -10.5,8.5
parent: 2
- - uid: 25527
+ - uid: 14620
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 48.639545,18.985498
+ pos: -11.5,8.5
parent: 2
- - uid: 25528
+ - uid: 14621
components:
- type: Transform
- pos: 23.450024,-46.379463
+ rot: 3.141592653589793 rad
+ pos: -12.5,8.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25529
+ - uid: 14622
components:
- type: Transform
- pos: -20.383062,-42.942463
+ rot: 1.5707963267948966 rad
+ pos: -13.5,9.5
parent: 2
- - uid: 25530
+ - uid: 14623
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -26.28472,-27.577341
+ pos: -12.5,10.5
parent: 2
- - uid: 25531
+ - uid: 14624
components:
- type: Transform
- pos: 37.470917,-10.411614
+ pos: -11.5,10.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25532
+ - uid: 14625
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.655098,-3.739999
+ pos: -10.5,10.5
parent: 2
- - uid: 25533
+ - uid: 14626
components:
- type: Transform
- pos: -19.216114,-49.46148
+ rot: -1.5707963267948966 rad
+ pos: -68.5,16.5
parent: 2
- - uid: 25534
+ - uid: 14627
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -36.316475,63.006268
+ pos: -41.5,61.5
parent: 2
- - uid: 25535
+ - uid: 14628
components:
- type: Transform
- pos: -31.636566,-37.46047
+ pos: -23.5,-11.5
parent: 2
- - uid: 25536
+ - uid: 14629
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.440341,-60.388588
+ pos: 54.5,28.5
parent: 2
- - uid: 25537
+ - uid: 14630
components:
- type: Transform
- pos: 11.677389,-52.41908
+ rot: 3.141592653589793 rad
+ pos: -36.5,47.5
parent: 2
- - uid: 25538
+ - uid: 14631
components:
- type: Transform
- pos: 36.533417,-13.349114
+ rot: 3.141592653589793 rad
+ pos: 72.5,-38.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25539
+ - uid: 14632
components:
- type: Transform
- pos: -51.472042,12.58557
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-77.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25540
+ - uid: 14633
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.613075,-37.497192
+ rot: 3.141592653589793 rad
+ pos: -0.5,13.5
parent: 2
- - uid: 25541
+ - uid: 14634
components:
- type: Transform
- pos: -12.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,46.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25542
+ - uid: 14635
components:
- type: Transform
- pos: -13.537247,-79.39744
+ rot: 1.5707963267948966 rad
+ pos: 40.5,20.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25543
+ - uid: 14636
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.421505,0.58504266
+ pos: -20.5,-77.5
parent: 2
- - uid: 25544
+ - uid: 14637
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.701292,0.63588446
+ rot: -1.5707963267948966 rad
+ pos: 8.5,1.5
parent: 2
- - uid: 25545
+ - uid: 14638
components:
- type: Transform
- pos: 51.494473,-22.433455
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-44.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25546
+ - uid: 14639
components:
- type: Transform
- pos: 30.719963,-40.205338
+ rot: 1.5707963267948966 rad
+ pos: -34.5,47.5
parent: 2
- - uid: 25547
+ - uid: 14640
components:
- type: Transform
- pos: 38.53962,22.54246
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-10.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25548
+ - uid: 14641
components:
- type: Transform
- pos: -34.399147,-0.24586654
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-10.5
parent: 2
- - uid: 25549
+ - uid: 14642
components:
- type: Transform
- pos: 35.53883,-18.364212
+ rot: 1.5707963267948966 rad
+ pos: 58.5,-30.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25550
+ - uid: 14643
components:
- type: Transform
- pos: 51.46925,-14.439258
+ rot: 1.5707963267948966 rad
+ pos: 58.5,-9.5
+ parent: 2
+ - uid: 14644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-30.5
+ parent: 2
+- proto: CommsComputerCircuitboard
+ entities:
+ - uid: 14645
+ components:
+ - type: Transform
+ pos: -35.485302,19.5736
parent: 2
- type: Physics
canCollide: False
- - uid: 25551
+- proto: ComputerAlert
+ entities:
+ - uid: 14646
components:
- type: Transform
- pos: 55.71717,-2.1902497
+ pos: -8.5,16.5
parent: 2
- - uid: 25552
+ - uid: 14647
components:
- type: Transform
- pos: 55.695896,-2.445569
+ rot: 1.5707963267948966 rad
+ pos: -49.5,18.5
parent: 2
- - uid: 25553
+ - uid: 14648
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -34.264614,1.0505768
+ pos: -65.5,6.5
parent: 2
- - uid: 25554
->>>>>>> master
+ - uid: 14649
components:
- - type: MetaData
- desc: надпись "взрывчатка"
- name: подозрительная ручка
- type: Transform
-<<<<<<< HEAD
- pos: 51.33898,-3.2151833
+ pos: -59.5,20.5
parent: 2
-- proto: LandMineExplosive
+ - uid: 14650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -52.5,34.5
+ parent: 2
+- proto: ComputerAnalysisConsole
entities:
- - uid: 26277
+ - uid: 14651
components:
- type: Transform
- pos: 10.635908,-81.58474
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-46.5
parent: 2
-- proto: LandMineModular
+ - uid: 14652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-41.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26401:
+ - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
+- proto: computerBodyScanner
entities:
- - uid: 26278
+ - uid: 14653
components:
- type: Transform
- pos: 10.348714,-79.62576
+ pos: -1.5,-13.5
parent: 2
- - uid: 26279
+ - uid: 14654
+ components:
+ - type: Transform
+ pos: 47.5,-13.5
+ parent: 2
+ - uid: 14655
components:
- type: Transform
- pos: 9.364339,-80.29764
+ pos: 36.5,-43.5
parent: 2
- - uid: 26280
+ - uid: 14656
components:
- type: Transform
- pos: 9.708088,-82.43826
+ pos: 45.5,-37.5
parent: 2
-- proto: LanternFlash
+- proto: ComputerBroken
entities:
- - uid: 26281
+ - uid: 14657
components:
- type: Transform
- pos: -14.489479,-74.273415
+ rot: 3.141592653589793 rad
+ pos: -38.5,-76.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26282
+ - uid: 14658
components:
- type: Transform
- pos: -18.52073,-74.304665
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-29.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: LargeBeaker
- entities:
- - uid: 26283
+ - uid: 14659
components:
- type: Transform
- pos: 83.87348,7.7252655
+ rot: 1.5707963267948966 rad
+ pos: -34.5,62.5
parent: 2
- - uid: 26284
+ - uid: 14660
components:
- type: Transform
- pos: -10.623464,-52.304737
+ pos: -40.5,-35.5
parent: 2
- - uid: 26285
+ - uid: 14661
components:
- type: Transform
- pos: -25.45797,-27.47972
+ rot: 1.5707963267948966 rad
+ pos: -52.5,-40.5
parent: 2
- - uid: 26286
+ - uid: 14662
components:
- type: Transform
- pos: 8.488844,-31.37006
+ rot: 3.141592653589793 rad
+ pos: -42.5,-38.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26287
+ - uid: 14663
components:
- type: Transform
- pos: 83.26411,7.7096405
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-19.5
parent: 2
- - uid: 26288
+ - uid: 14664
components:
- type: Transform
- pos: -26.653925,45.56316
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-19.5
parent: 2
- - uid: 26289
+ - uid: 14665
components:
- type: Transform
- pos: -33.420307,37.262516
+ rot: 1.5707963267948966 rad
+ pos: 47.5,-37.5
parent: 2
-- proto: LauncherCreamPie
+ - uid: 14666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,-44.5
+ parent: 2
+- proto: ComputerCargoBounty
entities:
- - uid: 26290
+ - uid: 14667
components:
- type: Transform
- pos: -5.626899,32.597004
+ pos: 16.5,39.5
parent: 2
-- proto: LedLightTube
+- proto: ComputerCargoOrders
entities:
- - uid: 26291
+ - uid: 14668
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -42.033535,-26.28035
+ pos: -3.5,18.5
parent: 2
- - type: LightBulb
- startingState: Broken
- - type: Destructible
- thresholds:
- - trigger: !type:DamageTrigger
- damage: 100
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:DoActsBehavior
- acts: Destruction
- - trigger: !type:DamageTrigger
- damage: 5
- triggersOnce: False
- triggered: True
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:DoActsBehavior
- acts: Breakage
- - trigger: !type:DamageTrigger
- damage: 10
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:SpawnEntitiesBehavior
- offset: 0.5
- spawn:
- ShardGlass:
- max: 1
- min: 1
- spawnInContainer: False
- transferForensics: False
- - !type:DoActsBehavior
- acts: Destruction
- - uid: 26292
+ - uid: 14669
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -34.84071,-28.088034
+ rot: -1.5707963267948966 rad
+ pos: 38.5,50.5
parent: 2
- - type: LightBulb
- startingState: Broken
- - type: Destructible
- thresholds:
- - trigger: !type:DamageTrigger
- damage: 100
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:DoActsBehavior
- acts: Destruction
- - trigger: !type:DamageTrigger
- damage: 5
- triggersOnce: False
- triggered: True
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:DoActsBehavior
- acts: Breakage
- - trigger: !type:DamageTrigger
- damage: 10
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:SpawnEntitiesBehavior
- offset: 0.5
- spawn:
- ShardGlass:
- max: 1
- min: 1
- spawnInContainer: False
- transferForensics: False
- - !type:DoActsBehavior
- acts: Destruction
- - uid: 26293
+ - uid: 14670
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -25.762438,-26.582762
+ rot: -1.5707963267948966 rad
+ pos: 10.5,31.5
parent: 2
- - type: LightBulb
- startingState: Broken
- - type: Destructible
- thresholds:
- - trigger: !type:DamageTrigger
- damage: 100
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:DoActsBehavior
- acts: Destruction
- - trigger: !type:DamageTrigger
- damage: 5
- triggersOnce: False
- triggered: True
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:DoActsBehavior
- acts: Breakage
- - trigger: !type:DamageTrigger
- damage: 10
- triggersOnce: False
- triggered: False
- behaviors:
- - !type:PlaySoundBehavior
- sound: !type:SoundCollectionSpecifier
- params:
- variation: null
- playOffsetSeconds: 0
- loop: False
- referenceDistance: 1
- rolloffFactor: 1
- maxDistance: 20
- pitch: 1
- volume: 0
- collection: GlassBreak
- - !type:SpawnEntitiesBehavior
- offset: 0.5
- spawn:
- ShardGlass:
- max: 1
- min: 1
- spawnInContainer: False
- transferForensics: False
- - !type:DoActsBehavior
- acts: Destruction
-- proto: LeftArmBorg
- entities:
- - uid: 26294
+ - uid: 14671
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.0990267,-39.179794
+ rot: 1.5707963267948966 rad
+ pos: 8.5,33.5
parent: 2
-- proto: LightBulbBroken
- entities:
- - uid: 26295
+ - uid: 14672
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.984306,-73.144775
+ pos: 18.5,39.5
parent: 2
- - uid: 26296
+ - uid: 14673
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.981056,-60.351532
+ pos: 29.5,35.5
parent: 2
- - uid: 26297
+ - uid: 14674
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 39.968693,-61.888454
+ pos: -31.5,42.5
parent: 2
-- proto: Lighter
+- proto: ComputerCargoShuttle
entities:
- - uid: 26298
+ - uid: 14675
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.60087,10.400426
+ rot: -1.5707963267948966 rad
+ pos: 29.5,37.5
parent: 2
- - uid: 26299
+- proto: ComputerComms
+ entities:
+ - uid: 14676
components:
- type: Transform
- pos: -62.635532,18.450417
+ rot: 1.5707963267948966 rad
+ pos: 7.5,5.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26300
+ - uid: 14677
components:
- type: Transform
- pos: -11.5,9.5
+ pos: -0.5,14.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26301
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 14678
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 53.75683,28.285496
- parent: 2
- - uid: 26302
- components:
- - type: Transform
- pos: -62.479282,18.606667
+ pos: 20.5,-28.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: LightReplacer
- entities:
- - uid: 26303
+ - uid: 14679
components:
- type: Transform
- pos: -55.503292,12.67932
+ pos: 50.5,9.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26304
+ - uid: 14680
components:
- type: Transform
- pos: -53.50574,38.601086
+ rot: 1.5707963267948966 rad
+ pos: 34.5,20.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: LightTubeBroken
- entities:
- - uid: 26305
+ - uid: 14681
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.112137,-69.765274
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-31.5
parent: 2
- - uid: 26306
+ - uid: 14682
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.457588,-68.454704
+ pos: 24.5,-48.5
parent: 2
-- proto: LiquidCarbonDioxideCanister
- entities:
- - uid: 26307
+ - uid: 14683
components:
- type: Transform
- pos: -49.5,25.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,62.5
parent: 2
-- proto: LiquidNitrogenCanister
- entities:
- - uid: 26308
+ - uid: 14684
components:
- type: Transform
- pos: -47.5,24.5
+ pos: -4.5,18.5
parent: 2
- - uid: 26309
+ - uid: 14685
components:
- type: Transform
- pos: -47.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-60.5
parent: 2
-- proto: LiquidOxygenCanister
+- proto: ComputerCriminalRecords
entities:
- - uid: 26310
+ - uid: 14686
components:
- type: Transform
- pos: -46.5,24.5
+ pos: 51.5,9.5
parent: 2
- - uid: 26311
+ - uid: 14687
components:
- type: Transform
- pos: -46.5,25.5
- parent: 2
-- proto: LockableButtonArmory
- entities:
- - uid: 26312
-=======
- pos: 49.443283,-42.569252
+ rot: -1.5707963267948966 rad
+ pos: -21.5,1.5
parent: 2
- - uid: 25555
+ - uid: 14688
components:
- type: Transform
- pos: -4.5355453,-60.37103
+ pos: -1.5,18.5
parent: 2
- - uid: 25556
+ - uid: 14689
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.783176,15.774246
+ pos: 6.5,-57.5
parent: 2
- - uid: 25557
+ - uid: 14690
components:
- type: Transform
- pos: 1.5124657,13.635027
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-55.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25558
+ - uid: 14691
components:
- type: Transform
- pos: -22.454296,-81.41032
+ rot: 1.5707963267948966 rad
+ pos: 34.5,21.5
parent: 2
- - uid: 25559
+ - uid: 14692
components:
- type: Transform
- pos: -46.678894,38.893795
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-29.5
parent: 2
- - uid: 25560
+ - uid: 14693
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -34.20707,60.17441
+ pos: 20.5,-4.5
parent: 2
- - uid: 25561
+ - uid: 14694
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -39.69104,27.481401
+ pos: 55.5,21.5
parent: 2
- - uid: 25562
+ - uid: 14695
components:
- type: Transform
- pos: 38.632412,-59.93169
+ rot: -1.5707963267948966 rad
+ pos: 33.5,9.5
parent: 2
- - uid: 25563
+ - uid: 14696
components:
- type: Transform
- pos: 19.428835,-27.442116
+ rot: 1.5707963267948966 rad
+ pos: 35.5,9.5
parent: 2
- - uid: 25564
+ - uid: 14697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-24.5
+ parent: 2
+ - uid: 14698
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.528481,-58.354614
+ pos: 0.5,60.5
parent: 2
- - uid: 25565
+- proto: ComputerFrame
+ entities:
+ - uid: 14699
components:
- type: Transform
- pos: 72.66701,-44.147068
+ rot: 3.141592653589793 rad
+ pos: -122.5,45.5
parent: 2
- - uid: 25566
+ - uid: 14700
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: 89.44131,4.9716973
+ pos: 47.5,-33.5
parent: 2
- - uid: 25567
+ - uid: 14701
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: 88.70693,7.581073
+ rot: 3.141592653589793 rad
+ pos: -114.5,45.5
parent: 2
- - uid: 25568
+- proto: ComputerId
+ entities:
+ - uid: 14702
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -30.61369,-7.7008057
+ rot: 1.5707963267948966 rad
+ pos: 7.5,6.5
parent: 2
- - uid: 25569
+ - uid: 14703
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: -26.699986,-7.2377434
+ rot: 3.141592653589793 rad
+ pos: -13.5,3.5
parent: 2
- - uid: 25570
+- proto: ComputerMassMedia
+ entities:
+ - uid: 14704
components:
- type: Transform
- rot: 3.141593671850739 rad
- pos: -27.52549,0.4504242
+ rot: -1.5707963267948966 rad
+ pos: -22.5,21.5
parent: 2
- - uid: 25571
+- proto: ComputerMedicalRecords
+ entities:
+ - uid: 14705
components:
- type: Transform
- rot: -1.5707953085339508 rad
- pos: 96.251434,12.531024
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-47.5
parent: 2
- - uid: 25572
+ - uid: 14706
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 80.2637,-1.4916117
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-58.5
parent: 2
- - uid: 25573
+ - uid: 14707
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 88.3887,-1.4916136
+ rot: 3.141592653589793 rad
+ pos: 6.5,62.5
parent: 2
- - uid: 25574
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 14708
components:
- type: Transform
- pos: 56.04083,25.61718
+ rot: -1.5707963267948966 rad
+ pos: -57.5,63.5
parent: 2
- - uid: 25575
+ - uid: 14709
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 57.21884,29.658722
+ pos: -46.5,-0.5
parent: 2
- - uid: 25576
+ - uid: 14710
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.203777,23.580559
+ pos: 3.5,18.5
parent: 2
- - uid: 39286
+ - uid: 14711
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.475631,-2.3764038
- parent: 38344
- - uid: 39287
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.290835,-3.7772217
- parent: 38344
-- proto: PersonalAI
- entities:
- - uid: 25577
+ pos: 9.5,-5.5
+ parent: 2
+ - uid: 14712
components:
- type: Transform
- pos: -7.4952707,11.598992
+ rot: 3.141592653589793 rad
+ pos: 3.5,-40.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25578
+ - uid: 14713
components:
- type: Transform
- pos: 44.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-9.5
parent: 2
- - uid: 25579
+ - uid: 14714
components:
- type: Transform
- pos: -20.469707,-37.495167
+ rot: 1.5707963267948966 rad
+ pos: 5.5,88.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25580
+ - uid: 14715
components:
- type: Transform
- pos: -32.382526,-12.516092
+ rot: 1.5707963267948966 rad
+ pos: -65.5,8.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25581
+ - uid: 14716
components:
- type: Transform
- pos: 37.533417,-13.286614
+ pos: -19.5,-29.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25582
+ - uid: 14717
components:
- type: Transform
- pos: -10.475416,-22.421984
+ rot: 1.5707963267948966 rad
+ pos: -50.5,38.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25583
+- proto: ComputerRadar
+ entities:
+ - uid: 14718
components:
- type: Transform
- pos: -32.48197,16.390942
+ rot: 1.5707963267948966 rad
+ pos: 5.5,89.5
parent: 2
- - uid: 25584
+ - uid: 14719
components:
- type: Transform
- pos: -31.460695,-43.416817
+ pos: 0.5,18.5
parent: 2
- - uid: 25585
+ - uid: 14720
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.194735,-43.42964
+ pos: 93.5,9.5
parent: 2
- - uid: 25586
+ - uid: 14721
components:
- type: Transform
- pos: -24.465235,21.68368
+ rot: 3.141592653589793 rad
+ pos: 5.5,-81.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: PetCarrier
- entities:
- - uid: 25587
+ - uid: 14722
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -28.5,-59.5
+ pos: 36.5,40.5
parent: 2
- - uid: 25588
+- proto: ComputerResearchAndDevelopment
+ entities:
+ - uid: 14723
components:
- type: Transform
- pos: -0.5,-16.5
+ pos: 7.5,16.5
parent: 2
- - uid: 25589
+ - uid: 14724
components:
- type: Transform
- pos: -1.5,-16.5
+ pos: -7.5,-29.5
parent: 2
-- proto: PhoneInstrument
- entities:
- - uid: 25590
+ - uid: 14725
components:
- type: Transform
- pos: 41.402508,19.727028
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-37.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25591
+ - uid: 14726
components:
- type: Transform
- pos: -63.606014,6.5975237
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-42.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25592
->>>>>>> master
+ - uid: 14727
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 67.5,3.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1431:
- - Pressed: Toggle
- - uid: 26313
-=======
- pos: -9.435662,10.440056
+ pos: -20.5,-49.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 25593
->>>>>>> master
+ - uid: 14728
components:
- - type: MetaData
- desc: Ало, это булошная?
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 63.5,3.5
+ pos: -13.5,-55.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1432:
- - Pressed: Toggle
- - uid: 26314
-=======
- pos: 72.45427,0.6379792
+ - uid: 14729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-52.5
parent: 2
-- proto: Pickaxe
+- proto: ComputerRoboticsControl
entities:
- - uid: 25594
->>>>>>> master
+ - uid: 14730
components:
- type: Transform
-<<<<<<< HEAD
- rot: 3.141592653589793 rad
- pos: 59.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-42.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1430:
- - Pressed: Toggle
- - uid: 26315
+- proto: ComputerSalvageExpedition
+ entities:
+ - uid: 14731
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,35.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1433:
- - Pressed: Toggle
-- proto: LockableButtonAtmospherics
+- proto: ComputerShuttle
entities:
- - uid: 26316
+ - uid: 38751
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,17.5
+ pos: 1.5,4.5
+ parent: 38714
+- proto: ComputerShuttleCargo
+ entities:
+ - uid: 14732
+ components:
+ - type: Transform
+ pos: 17.5,39.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1464:
- - Pressed: Toggle
- 1463:
- - Pressed: Toggle
- 1462:
- - Pressed: Toggle
- 1465:
- - Pressed: Toggle
-- proto: LockableButtonHeadOfSecurity
+- proto: ComputerShuttleSalvage
entities:
- - uid: 26317
+ - uid: 14733
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 41.5,21.5
+ pos: 36.5,36.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 30486:
- - Pressed: Toggle
- 30575:
- - Pressed: Toggle
- 30559:
- - Pressed: Toggle
- 30542:
- - Pressed: Toggle
- 30583:
- - Pressed: Toggle
- 30577:
- - Pressed: Toggle
- 30545:
- - Pressed: Toggle
- 30574:
- - Pressed: Toggle
- 30571:
- - Pressed: Toggle
- 30576:
- - Pressed: Toggle
- 30543:
- - Pressed: Toggle
- 30558:
- - Pressed: Toggle
- 30556:
- - Pressed: Toggle
- 30557:
- - Pressed: Toggle
- 30541:
- - Pressed: Toggle
-- proto: LockerAtmosphericsFilled
+- proto: ComputerSolarControl
entities:
- - uid: 14309
+ - uid: 14734
components:
- type: Transform
- pos: -56.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,63.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14310
- - 14311
- - 14312
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14313
+ - uid: 14735
components:
- type: Transform
- pos: -56.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-75.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14315
- - 14314
- - 14316
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14317
+ - uid: 14736
components:
- type: Transform
- pos: -56.5,32.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14320
- - 14318
- - 14319
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerBooze
- entities:
- - uid: 1759
-=======
- rot: 1.0182609457842773E-06 rad
- pos: 55.4228,-49.467365
+ rot: -1.5707963267948966 rad
+ pos: 15.5,86.5
parent: 2
- - uid: 25595
+ - uid: 14737
components:
- type: Transform
- pos: -55.42047,-50.5453
+ rot: -1.5707963267948966 rad
+ pos: 78.5,-46.5
parent: 2
- - uid: 25596
+- proto: ComputerStationRecords
+ entities:
+ - uid: 14738
components:
- type: Transform
- pos: 30.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,2.5
parent: 2
- - uid: 25597
+ - uid: 14739
components:
- type: Transform
- rot: -4.71238898038469 rad
- pos: 100.49681,-3.3690634
+ rot: -1.5707963267948966 rad
+ pos: 55.5,7.5
parent: 2
- - uid: 39288
+ - uid: 14740
components:
- type: Transform
- pos: -5.5,14.5
- parent: 38344
- - uid: 39289
+ rot: 3.141592653589793 rad
+ pos: 54.5,21.5
+ parent: 2
+ - uid: 14741
components:
- type: Transform
- pos: -21.18938,17.355896
- parent: 38344
- - uid: 39290
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-4.5
+ parent: 2
+ - uid: 14742
components:
- type: Transform
- pos: 1.5094376,8.475464
- parent: 38344
- - uid: 39291
->>>>>>> master
+ pos: 2.5,18.5
+ parent: 2
+ - uid: 14743
components:
- type: Transform
-<<<<<<< HEAD
- pos: -38.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-25.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: Lock
- locked: False
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1760
- - 1761
- - 1762
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerBoozeFilled
- entities:
- - uid: 26318
+ - uid: 14744
components:
- type: Transform
- pos: -3.5,40.5
+ pos: 5.5,-57.5
parent: 2
-- proto: LockerBotanistFilled
- entities:
- - uid: 26319
+ - uid: 14745
components:
- type: Transform
- pos: -38.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-54.5
parent: 2
- - uid: 26320
+ - uid: 14746
components:
- type: Transform
- pos: -38.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-29.5
parent: 2
- - uid: 26321
+ - uid: 14747
components:
- type: Transform
- pos: -38.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,10.5
parent: 2
-- proto: LockerBrigmedic
+- proto: ComputerSurveillanceCameraMonitor
entities:
- - uid: 14214
+ - uid: 14748
components:
- type: Transform
- pos: 66.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,62.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14223
- - 14222
- - 14224
- - 14227
- - 14216
- - 14226
- - 14219
- - 14215
- - 14220
- - 14225
- - 14217
- - 14218
- - 14221
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerCaptainFilled
- entities:
- - uid: 26322
+ - uid: 14749
components:
- type: Transform
- pos: 11.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 55.5,8.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerChemistryFilled
- entities:
- - uid: 26323
+ - uid: 14750
components:
- type: Transform
- pos: 8.5,-29.481438
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-59.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerChiefEngineerFilledHardsuit
- entities:
- - uid: 26324
+ - uid: 14751
components:
- type: Transform
- pos: -55.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,19.5
+ parent: 2
+ - uid: 14752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,21.5
parent: 2
-- proto: LockerChiefMedicalOfficerFilled
- entities:
- - uid: 26325
+ - uid: 14753
components:
- type: Transform
- pos: 20.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,31.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerClown
- entities:
- - uid: 1418
+ - uid: 14754
components:
- type: Transform
- pos: -4.5,32.5
+ pos: 11.5,44.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 1421
- - 1420
- - 1419
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerDetective
- entities:
- - uid: 1588
-=======
- pos: 1.5563126,8.209839
- parent: 38344
- - uid: 39292
+ - uid: 14755
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.460182,3.7668457
- parent: 38344
-- proto: PillCanister
- entities:
- - uid: 25598
+ rot: 3.141592653589793 rad
+ pos: -46.5,8.5
+ parent: 2
+ - uid: 14756
components:
- type: Transform
- pos: 8.582031,-43.28059
+ pos: 4.5,-57.5
parent: 2
- - uid: 25599
+ - uid: 14757
components:
- type: Transform
- pos: 8.749899,-43.44664
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-30.5
parent: 2
- - uid: 25600
+ - uid: 14758
components:
- type: Transform
- pos: 8.410156,-43.40559
+ pos: -0.5,18.5
parent: 2
- - uid: 25601
+ - uid: 14759
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 12.785163,-44.64352
+ pos: 35.5,8.5
parent: 2
- - uid: 25602
+ - uid: 14760
components:
- type: Transform
- pos: 22.489054,-37.315258
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-26.5
parent: 2
-- proto: PillSpaceDrugs
+- proto: ComputerSurveillanceWirelessCameraMonitor
entities:
- - uid: 25603
+ - uid: 14761
components:
- type: Transform
- pos: -39.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,22.5
parent: 2
- - uid: 25604
+- proto: ComputerTelevision
+ entities:
+ - uid: 14762
components:
- type: Transform
- pos: -39.5,54.5
+ pos: 33.5,8.5
parent: 2
- - uid: 25605
+ - uid: 14763
components:
- type: Transform
- pos: -39.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,6.5
parent: 2
-- proto: PinpointerNuclear
+- proto: ContainmentFieldGenerator
entities:
- - uid: 25606
+ - uid: 14764
components:
- type: Transform
- pos: 7.824789,0.54907286
+ pos: 12.5,-5.5
parent: 2
-- proto: PinpointerSyndicateNuclear
- entities:
- - uid: 25608
+ - uid: 14765
components:
- type: Transform
- parent: 25607
- - type: Physics
- canCollide: False
-- proto: PlantBag
- entities:
- - uid: 25609
->>>>>>> master
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-9.5
+ parent: 2
+ - uid: 14766
components:
- type: Transform
-<<<<<<< HEAD
- pos: -23.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,-10.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8979843
- - 7.1400356
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Lock
- locked: False
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1591
- - 1590
- - 1589
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 14273
+ - uid: 14767
components:
- type: Transform
- pos: 72.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: -67.5,-9.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1495
- moles:
- - 1.8642148
- - 7.0129986
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14276
- - 14274
- - 14275
- - 14277
- - 14278
- - 14279
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerDetectiveFilled
- entities:
- - uid: 26326
+ - uid: 14768
components:
- type: Transform
- pos: 29.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-10.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.9456291
- - 7.319271
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 26328
- - 26327
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerElectricalSuppliesFilled
+- proto: ConvertAltarSpawner
entities:
- - uid: 26329
+ - uid: 14769
components:
- type: Transform
- pos: -57.5,-28.5
+ pos: -16.5,-73.5
parent: 2
- - uid: 26330
+- proto: ConveyorBelt
+ entities:
+ - uid: 14770
components:
- type: Transform
- pos: -58.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,48.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26331
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14771
components:
- type: Transform
- pos: -38.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,48.5
parent: 2
- - uid: 26332
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14772
components:
- type: Transform
- pos: -77.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,48.5
parent: 2
-- proto: LockerEngineerFilled
- entities:
- - uid: 26333
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14773
components:
- type: Transform
- pos: -81.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,48.5
parent: 2
- - uid: 26334
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14774
components:
- type: Transform
- pos: -60.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,48.5
parent: 2
- - uid: 26335
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14775
components:
- type: Transform
- pos: -60.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,48.5
parent: 2
- - uid: 26336
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14776
components:
- type: Transform
- pos: -60.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,57.5
parent: 2
- - uid: 26337
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14777
components:
- type: Transform
- pos: -60.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,48.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26338
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14778
components:
- type: Transform
- pos: -60.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,48.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26339
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14779
components:
- type: Transform
- pos: -55.5,3.5000002
+ rot: 1.5707963267948966 rad
+ pos: 26.5,48.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26340
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14780
components:
- type: Transform
- pos: -48.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,47.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26341
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14781
components:
- type: Transform
- pos: -56.5,3.5000002
+ rot: -1.5707963267948966 rad
+ pos: 38.5,52.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26342
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14782
components:
- type: Transform
- pos: -60.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,52.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26343
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14783
components:
- type: Transform
- pos: -49.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,52.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerEvidence
- entities:
- - uid: 1609
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14784
components:
- type: Transform
- pos: 31.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,52.5
parent: 2
- - type: Lock
- locked: False
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1610
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 26344
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14785
components:
- type: Transform
- pos: 46.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,52.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26345
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14786
components:
- type: Transform
- pos: 65.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,52.5
parent: 2
- - uid: 26346
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14787
components:
- type: Transform
- pos: 6.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,52.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26347
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14788
components:
- type: Transform
- pos: 6.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,52.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26348
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14789
components:
- type: Transform
- pos: 39.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,52.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26349
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14790
components:
- type: Transform
- pos: 35.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,52.5
parent: 2
- - uid: 26350
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14791
components:
- type: Transform
- pos: 35.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,52.5
parent: 2
- - uid: 26351
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14792
components:
- type: Transform
- pos: 46.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,42.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26352
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14793
components:
- type: Transform
- pos: 39.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,52.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26353
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14794
components:
- type: Transform
- pos: 46.5,13.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,59.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerFreezer
- entities:
- - uid: 26354
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14795
components:
- type: Transform
- pos: 18.5,65.5
- parent: 2
- - type: Lock
- locked: False
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 2.4954846
- - 9.387775
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26355
-=======
- rot: 1.0182609457842773E-06 rad
- pos: 97.32841,6.43131
+ rot: 1.5707963267948966 rad
+ pos: 30.5,61.5
parent: 2
- - uid: 25610
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14796
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 97.60966,6.603186
+ rot: 1.5707963267948966 rad
+ pos: 31.5,61.5
parent: 2
- - uid: 39293
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14797
components:
- type: Transform
- pos: -21.59623,-2.532013
- parent: 38344
-- proto: PlasmaCanister
- entities:
- - uid: 25611
+ rot: 3.141592653589793 rad
+ pos: 25.5,46.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14798
components:
- type: Transform
- pos: -49.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,58.5
parent: 2
- - uid: 25612
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14799
components:
- type: Transform
- pos: -59.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,57.5
parent: 2
- - uid: 25613
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14800
components:
- type: Transform
- pos: -27.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,48.5
parent: 2
- - uid: 25614
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14801
components:
- type: Transform
- pos: -70.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,52.5
parent: 2
-- proto: PlasmaReinforcedWindowDirectional
- entities:
- - uid: 25615
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14802
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -119.5,46.5
+ pos: 25.5,53.5
parent: 2
- - uid: 25616
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14803
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -118.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,48.5
parent: 2
- - uid: 25617
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14804
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,58.5
parent: 2
- - uid: 25618
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14805
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,-48.5
+ pos: 25.5,42.5
parent: 2
- - uid: 25619
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14806
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -117.5,46.5
+ pos: 25.5,43.5
parent: 2
- - uid: 25620
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14807
components:
- type: Transform
- pos: -118.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,58.5
parent: 2
- - uid: 25621
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14808
components:
- type: Transform
- pos: -117.5,49.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,60.5
parent: 2
- - uid: 25622
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14809
components:
- type: Transform
- pos: -119.5,49.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,45.5
parent: 2
- - uid: 25623
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,52.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14811
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -119.5,47.5
+ pos: 39.5,52.5
parent: 2
- - uid: 25624
+ - type: DeviceLinkSink
+ links:
+ - 33054
+ - uid: 14812
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -117.5,47.5
+ pos: 27.5,61.5
parent: 2
-- proto: PlasmaTankFilled
- entities:
- - uid: 25625
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14813
components:
- type: Transform
- pos: -54.62513,-9.336228
+ rot: 3.141592653589793 rad
+ pos: 25.5,44.5
parent: 2
-- proto: PlasticFlapsAirtightClear
- entities:
- - uid: 25626
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14814
components:
- type: Transform
- pos: 39.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,48.5
parent: 2
- - uid: 25627
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14815
components:
- type: Transform
- pos: 39.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,48.5
parent: 2
- - uid: 25628
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14816
components:
- type: Transform
- pos: 30.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,48.5
parent: 2
- - uid: 25629
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14817
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,48.5
parent: 2
- - uid: 25630
+ - type: DeviceLinkSink
+ links:
+ - 33055
+ - uid: 14818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,57.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14819
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 33.5,52.5
+ pos: 30.5,57.5
parent: 2
- - uid: 25631
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14820
components:
- type: Transform
- pos: 27.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,57.5
parent: 2
- - uid: 25632
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14821
components:
- type: Transform
- pos: 46.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,61.5
parent: 2
-- proto: PlasticFlapsOpaque
- entities:
- - uid: 25633
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14822
components:
- type: Transform
- pos: -55.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,58.5
parent: 2
- - uid: 25634
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14823
components:
- type: Transform
- pos: -43.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,61.5
parent: 2
-- proto: PlastitaniumWindow
- entities:
- - uid: 39294
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14824
components:
- type: Transform
- pos: -18.5,33.5
- parent: 38344
- - uid: 39295
+ rot: 1.5707963267948966 rad
+ pos: 29.5,61.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 33059
+ - uid: 14825
components:
- type: Transform
- pos: -16.5,33.5
- parent: 38344
-- proto: Plunger
+ rot: 3.141592653589793 rad
+ pos: 26.5,58.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 33059
+- proto: CounterWoodFrame
entities:
- - uid: 25635
+ - uid: 14826
components:
- type: Transform
- pos: -76.535095,-30.484901
+ rot: 3.141592653589793 rad
+ pos: -42.5,-35.5
parent: 2
-- proto: PlushieArachind
+- proto: CowToolboxFilled
entities:
- - uid: 25636
+ - uid: 14827
components:
- type: Transform
- pos: -54.48039,-19.462519
+ pos: -45.2872,-42.39937
parent: 2
- - uid: 25637
+ - uid: 14828
components:
- type: Transform
- pos: 15.5,59.5
+ rot: 3.141592653589793 rad
+ pos: -65.51572,-31.41529
parent: 2
-- proto: PlushieAtmosian
+ - type: Physics
+ canCollide: False
+- proto: CrateArtifactContainer
entities:
- - uid: 25638
+ - uid: 14829
components:
- type: Transform
- pos: -43.53502,-44.42827
+ pos: -32.5,-46.5
parent: 2
- - uid: 25639
->>>>>>> master
+- proto: CrateChemistrySupplies
+ entities:
+ - uid: 14830
components:
- - type: MetaData
- name: Rombzes
- type: Transform
-<<<<<<< HEAD
- pos: -30.5,25.5
+ pos: 22.5,-30.5
parent: 2
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 234.99968
+ temperature: 293.1496
moles:
- 2.4954846
- 9.387775
@@ -379361,16 +107765,22 @@ entities:
- 0
- 0
- 0
- - uid: 26356
+- proto: CrateEmergencyInternals
+ entities:
+ - uid: 14831
components:
- type: Transform
- pos: -31.5,25.5
+ pos: -24.5,15.5
parent: 2
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 234.99968
+ temperature: 293.1496
moles:
- 2.4954846
- 9.387775
@@ -379384,23 +107794,23 @@ entities:
- 0
- 0
- 0
-- proto: LockerFreezerBase
- entities:
- - uid: 16520
+ - uid: 14832
components:
- type: Transform
- pos: 80.5,7.5
+ pos: 21.5,-30.5
parent: 2
- - type: Lock
- locked: False
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
- type: EntityStorage
air:
volume: 200
immutable: False
temperature: 293.1496
moles:
- - 1.8968438
- - 7.1357465
+ - 2.4954846
+ - 9.387775
- 0
- 0
- 0
@@ -379411,48 +107821,23 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 16530
- - 16531
- - 16532
- - 16533
- - 16534
- - 16535
- - 16524
- - 16523
- - 16522
- - 16536
- - 16537
- - 16525
- - 16526
- - 16527
- - 16528
- - 16538
- - 16529
- - 16539
- - 16521
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 17663
+ - uid: 14833
components:
- type: Transform
- pos: -25.5,-14.5
+ pos: -28.5,-77.5
parent: 2
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.14673
+ temperature: 293.1496
moles:
- - 1.7459903
- - 6.568249
+ - 2.4954846
+ - 9.387775
- 0
- 0
- 0
@@ -379463,28 +107848,10 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 17664
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 26357
- components:
- - type: Transform
- pos: -5.5,38.5
- parent: 2
-- proto: LockerHeadOfPersonnelFilled
- entities:
- - uid: 26358
+ - uid: 14834
components:
- type: Transform
- pos: -14.5,-5.5
+ pos: 12.5,80.5
parent: 2
- type: EntityStorage
air:
@@ -379492,8 +107859,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -379504,118 +107871,48 @@ entities:
- 0
- 0
- 0
-- proto: LockerHeadOfSecurityFilled
- entities:
- - uid: 14572
-=======
- pos: -47.508274,38.60326
- parent: 2
- - uid: 25640
- components:
- - type: Transform
- pos: -68.5,-23.5
- parent: 2
-- proto: PlushieBee
- entities:
- - uid: 25641
- components:
- - type: MetaData
- desc: Милая игрушка, напоминающая ещё более милого "программиста" и маппера. Пожалуйста, не давайте ему энергетики...
- name: плюшевый Dezzzix
- - type: Transform
- pos: -64.06701,-44.41243
- parent: 2
- - uid: 39296
- components:
- - type: Transform
- pos: 6.435026,-5.5044556
- parent: 38344
-- proto: PlushieCarp
+- proto: CrateEmptySpawner
entities:
- - uid: 25642
- components:
- - type: Transform
- pos: -51.5,-42.5
- parent: 2
- - uid: 25643
+ - uid: 14835
components:
- type: Transform
- pos: 92.5,-23.5
+ pos: 48.5,-8.5
parent: 2
- - uid: 25644
+ - uid: 14836
components:
- type: Transform
- pos: -39.5,-8.5
+ pos: 22.5,41.5
parent: 2
- - uid: 25645
+ - uid: 14837
components:
- type: Transform
- pos: -40.5,-10.5
+ pos: 26.5,-20.5
parent: 2
-- proto: PlushieDiona
- entities:
- - uid: 25646
+ - uid: 14838
components:
- type: Transform
- pos: -3.4434888,1.7209707
+ pos: 9.5,58.5
parent: 2
-- proto: PlushieHampter
- entities:
- - uid: 25647
->>>>>>> master
+ - uid: 14839
components:
- - type: MetaData
- desc: Этот хомяк правит целой китайской партией, в отличии от тебя. Слава КНПРМК!
- name: плюшевый M0ta
- type: Transform
-<<<<<<< HEAD
- pos: 34.5,18.5
+ pos: 36.5,-52.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 14574
- - 14573
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerMedicalFilled
+- proto: CrateEngineeringSecure
entities:
- - uid: 14348
+ - uid: 1057
components:
- type: Transform
- pos: 29.5,-21.5
+ pos: 16.5,77.5
parent: 2
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.1496
+ temperature: 293.14957
moles:
- - 1.7459903
- - 6.568249
+ - 1.885598
+ - 7.0934405
- 0
- 0
- 0
@@ -379632,22 +107929,28 @@ entities:
showEnts: False
occludes: True
ents:
- - 14349
- - 14350
+ - 1063
+ - 1060
+ - 1062
+ - 1058
+ - 1059
+ - 1061
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- - uid: 14351
+ - uid: 14840
components:
+ - type: MetaData
+ name: ящик топлива для генераторов
- type: Transform
- pos: 30.5,-21.5
+ pos: -48.5,-5.5
parent: 2
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.1496
+ temperature: 293.14673
moles:
- 1.7459903
- 6.568249
@@ -379667,142 +107970,80 @@ entities:
showEnts: False
occludes: True
ents:
- - 14352
+ - 14844
+ - 14843
+ - 14842
+ - 14841
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- - uid: 26359
- components:
- - type: Transform
- pos: 32.5,-28.5
- parent: 2
- - uid: 26360
- components:
- - type: Transform
- pos: 22.5,-24.5
- parent: 2
- - uid: 26361
- components:
- - type: Transform
- pos: 69.5,16.5
- parent: 2
- - uid: 26362
-=======
- pos: -50.5,-44.5
- parent: 2
- - uid: 25648
- components:
- - type: Transform
- pos: 88.424194,-43.53203
- parent: 2
- - uid: 25649
- components:
- - type: MetaData
- name: SayroN
- - type: Transform
- pos: -10.535128,-57.3854
- parent: 2
- - uid: 25650
- components:
- - type: Transform
- pos: -80.54381,2.7824435
- parent: 2
-- proto: PlushieHuman
+- proto: CrateFilledSpawner
entities:
- - uid: 25651
+ - uid: 14845
components:
- type: Transform
- pos: -55.544044,-33.47897
+ pos: 25.5,40.5
parent: 2
-- proto: PlushieLamp
- entities:
- - uid: 25652
+ - uid: 14846
components:
- type: Transform
- pos: -30.68368,-67.59529
+ pos: 33.5,35.5
parent: 2
- - uid: 25653
+ - uid: 14847
components:
- type: Transform
- pos: -12.554631,54.68616
+ pos: 25.5,40.5
parent: 2
- - uid: 25654
+ - uid: 14848
components:
- - type: MetaData
- desc: Думает...
- name: Mersen
- type: Transform
- pos: -122.46826,32.54152
+ pos: 10.5,50.5
parent: 2
- - uid: 25655
+ - uid: 14849
components:
- type: Transform
- pos: -34.448166,0.61967087
+ pos: 40.5,-2.5
parent: 2
- - uid: 25656
+ - uid: 14850
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 89.522804,7.6839256
+ pos: 16.5,41.5
parent: 2
- - uid: 25657
+ - uid: 14851
components:
- type: Transform
- pos: 68.51416,27.711338
+ pos: 10.5,51.5
parent: 2
-- proto: PlushieLizard
- entities:
- - uid: 25658
+ - uid: 14852
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -111.65515,32.620216
+ pos: 9.5,59.5
parent: 2
- - uid: 25659
->>>>>>> master
+ - uid: 14853
components:
- - type: MetaData
- name: плюшевый Asfgdh
- type: Transform
-<<<<<<< HEAD
- pos: 6.5,-46.5
+ pos: 12.5,50.5
parent: 2
-- proto: LockerMedicineFilled
+- proto: CrateFreezer
entities:
- - uid: 26363
- components:
- - type: Transform
- pos: 6.5,-11.5
- parent: 2
- - uid: 26364
- components:
- - type: Transform
- pos: -4.5,-61.5
- parent: 2
- - uid: 26365
- components:
- - type: Transform
- pos: 5.5,65.5
- parent: 2
- - uid: 26366
- components:
- - type: Transform
- pos: 5.5,-46.5
- parent: 2
- - uid: 26367
+ - uid: 14538
components:
- type: Transform
- pos: 32.5,-69.5
+ pos: 25.5,67.5
parent: 2
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
- type: EntityStorage
air:
volume: 200
immutable: False
temperature: 293.1496
moles:
- - 2.4954846
- - 9.387775
+ - 1.9279782
+ - 7.252871
- 0
- 0
- 0
@@ -379813,83 +108054,70 @@ entities:
- 0
- 0
- 0
- - uid: 26368
-=======
- pos: 56.500633,-3.563501
- parent: 2
-- proto: PlushieLizardMirrored
- entities:
- - uid: 25660
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 80.42313,-4.4171724
- parent: 2
- - uid: 25661
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -114.42078,32.588966
- parent: 2
-- proto: PlushieMagicarp
- entities:
- - uid: 25662
- components:
- - type: Transform
- pos: 93.5,-17.5
- parent: 2
- - uid: 25663
- components:
- - type: Transform
- pos: -38.429466,-9.485341
- parent: 2
-- proto: PlushieMoth
- entities:
- - uid: 25664
- components:
- - type: Transform
- pos: 79.53357,-36.610157
- parent: 2
-- proto: PlushieNar
- entities:
- - uid: 25665
->>>>>>> master
- components:
- - type: MetaData
- name: плюшевый FUNSET
- - type: Transform
-<<<<<<< HEAD
- pos: 9.5,-54.5
- parent: 2
- - uid: 26369
-=======
- rot: 1.0182609457842773E-06 rad
- pos: -32.484226,-17.53919
- parent: 2
-- proto: PlushieNuke
- entities:
- - uid: 25666
->>>>>>> master
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14539
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14854
components:
- - type: MetaData
- name: плюшевая коммандер Триннк
- type: Transform
-<<<<<<< HEAD
- pos: 8.5,-46.5
+ pos: 54.5,-34.5
parent: 2
- - uid: 26370
+ - 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:
+ - 14855
+ - 14857
+ - 14856
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14858
components:
- type: Transform
- pos: 44.5,-30.5
+ pos: 32.5,-65.5
parent: 2
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
- type: EntityStorage
air:
volume: 200
immutable: False
temperature: 293.1496
moles:
- - 1.7459903
- - 6.568249
+ - 1.9456291
+ - 7.319271
- 0
- 0
- 0
@@ -379900,18 +108128,16 @@ entities:
- 0
- 0
- 0
-- proto: LockerMime
- entities:
- - uid: 14466
+ - uid: 14859
components:
- type: Transform
- pos: -6.5,28.5
+ pos: 44.5,-37.5
parent: 2
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.14673
+ temperature: 293.1496
moles:
- 1.7459903
- 6.568249
@@ -379931,24 +108157,41 @@ entities:
showEnts: False
occludes: True
ents:
- - 14468
- - 14469
- - 14467
+ - 14861
+ - 14860
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- - uid: 26371
+- proto: CrateFunBoardGames
+ entities:
+ - uid: 14862
components:
- type: Transform
- pos: -2.5,46.5
+ pos: 81.5,-0.5
parent: 2
-- proto: LockerParamedicFilled
- entities:
- - uid: 26372
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14863
components:
- type: Transform
- pos: 12.5,-42.5
+ pos: 3.5,-55.5
parent: 2
- type: EntityStorage
air:
@@ -379968,73 +108211,23 @@ entities:
- 0
- 0
- 0
-- proto: LockerQuarterMasterFilled
- entities:
- - uid: 26373
-=======
- pos: 14.60019,-27.428131
- parent: 2
- - uid: 39297
- components:
- - type: Transform
- pos: -16.5,30.5
- parent: 38344
-- proto: PlushiePenguin
- entities:
- - uid: 25667
- components:
- - type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 101.39216,6.406085
- parent: 2
-- proto: PlushieRainbowCarp
- entities:
- - uid: 25668
- components:
- - type: Transform
- pos: -57.52734,-31.52434
- parent: 2
-- proto: PlushieRGBee
- entities:
- - uid: 25669
- components:
- - type: Transform
- pos: 47.448463,-24.545958
- parent: 2
-- proto: PlushieRouny
+- proto: CrateFunParty
entities:
- - uid: 25670
->>>>>>> master
+ - uid: 14864
components:
- - type: MetaData
- desc: Милаха
- name: Gesaser
- type: Transform
-<<<<<<< HEAD
- pos: 29.5,40.5
- parent: 2
-- proto: LockerResearchDirectorFilled
- entities:
- - uid: 26374
-=======
- pos: -122.45825,31.49667
+ pos: -1.5,39.5
parent: 2
-- proto: PlushieSharkBlue
- entities:
- - uid: 25671
->>>>>>> master
+ - uid: 14865
components:
- - type: MetaData
- name: Nagano
- type: Transform
-<<<<<<< HEAD
- pos: -20.5,-45.5
+ pos: -65.5,-47.5
parent: 2
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.1496
+ temperature: 293.14673
moles:
- 1.7459903
- 6.568249
@@ -380048,104 +108241,17 @@ entities:
- 0
- 0
- 0
-- proto: LockerSalvageSpecialistFilled
- entities:
- - uid: 26375
-=======
- pos: -31.47719,-65.66022
- parent: 2
- - uid: 25672
- components:
- - type: Transform
- pos: -22.533066,-12.404669
- parent: 2
-- proto: PlushieSharkGrey
- entities:
- - uid: 25673
- components:
- - type: MetaData
- desc: Спонсор счастья.
- name: кминькула
- - type: Transform
- pos: -76.48532,-1.5587418
- parent: 2
-- proto: PlushieSharkPink
- entities:
- - uid: 25674
->>>>>>> master
- components:
- - type: MetaData
- name: Imera
- - type: Transform
-<<<<<<< HEAD
- pos: 24.5,32.5
- parent: 2
- - uid: 26376
- components:
- - type: Transform
- pos: 23.5,32.5
- parent: 2
- - uid: 26377
-=======
- pos: -31.465832,-67.69834
- parent: 2
- - uid: 25675
- components:
- - type: Transform
- rot: -1.5707953085339508 rad
- pos: -71.47898,-39.88145
- parent: 2
-- proto: PlushieSlime
- entities:
- - uid: 25676
->>>>>>> master
- components:
- - type: MetaData
- name: плюшевая meowstushka
- - type: Transform
-<<<<<<< HEAD
- pos: 22.5,32.5
- parent: 2
- - uid: 26378
- components:
- - type: Transform
- pos: 11.5,86.5
- parent: 2
-- proto: LockerSecurity
- entities:
- - uid: 1511
-=======
- pos: -52.5,-45.5
- parent: 2
- - uid: 25677
- components:
- - type: Transform
- pos: 36.49726,-4.6241965
- parent: 2
-- proto: PlushieSnake
- entities:
- - uid: 25678
+ - uid: 14866
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 76.48295,6.4801736
+ pos: -1.5,38.5
parent: 2
-- proto: PlushieSpaceLizard
+- proto: CrateFunToyBox
entities:
- - uid: 25679
- components:
- - type: Transform
- pos: -3.5128639,42.268387
- parent: 2
- - uid: 25680
->>>>>>> master
+ - uid: 14867
components:
- - type: MetaData
- desc: Какой же он позитивный!
- name: Ewerall
- type: Transform
-<<<<<<< HEAD
- pos: 93.5,10.5
+ pos: 89.5,5.5
parent: 2
- type: EntityStorage
air:
@@ -380171,29 +108277,17 @@ entities:
showEnts: False
occludes: True
ents:
- - 1512
- - 1519
- - 1516
- - 1517
- - 1520
- - 1521
- - 1522
- - 1513
- - 1518
- - 1523
- - 1514
- - 1524
- - 1515
+ - 14868
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
-- proto: LockerSecurityFilled
+- proto: CrateGenericSteel
entities:
- - uid: 26379
+ - uid: 14869
components:
- type: Transform
- pos: 55.5,13.5
+ pos: -24.5,-21.5
parent: 2
- type: EntityStorage
air:
@@ -380213,10 +108307,14 @@ entities:
- 0
- 0
- 0
- - uid: 26380
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
+ - uid: 14870
components:
- type: Transform
- pos: 59.5,11.5
+ pos: -67.5,-19.5
parent: 2
- type: EntityStorage
air:
@@ -380236,10 +108334,14 @@ entities:
- 0
- 0
- 0
- - uid: 26381
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
+ - uid: 14871
components:
- type: Transform
- pos: 59.5,13.5
+ pos: 13.5,-54.5
parent: 2
- type: EntityStorage
air:
@@ -380247,8 +108349,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 2.4954846
+ - 9.387775
- 0
- 0
- 0
@@ -380259,10 +108361,14 @@ entities:
- 0
- 0
- 0
- - uid: 26382
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
+ - uid: 14872
components:
- type: Transform
- pos: 60.5,13.5
+ pos: -56.5,-17.5
parent: 2
- type: EntityStorage
air:
@@ -380282,10 +108388,14 @@ entities:
- 0
- 0
- 0
- - uid: 26383
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
+ - uid: 14873
components:
- type: Transform
- pos: 14.5,-29.5
+ pos: -26.5,-75.5
parent: 2
- type: EntityStorage
air:
@@ -380293,8 +108403,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 1.9456291
+ - 7.319271
- 0
- 0
- 0
@@ -380305,10 +108415,25 @@ entities:
- 0
- 0
- 0
- - uid: 26384
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14874
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
+ - uid: 14875
components:
- type: Transform
- pos: 53.5,13.5
+ pos: 52.5,3.5
parent: 2
- type: EntityStorage
air:
@@ -380316,8 +108441,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 1.8968438
+ - 7.1357465
- 0
- 0
- 0
@@ -380328,10 +108453,23 @@ entities:
- 0
- 0
- 0
- - uid: 26385
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14876
+ - 14878
+ - 14877
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 14879
components:
- type: Transform
- pos: 60.5,11.5
+ pos: -58.5,-20.5
parent: 2
- type: EntityStorage
air:
@@ -380339,8 +108477,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 2.4954846
+ - 9.387775
- 0
- 0
- 0
@@ -380351,10 +108489,14 @@ entities:
- 0
- 0
- 0
- - uid: 26386
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
+ - uid: 14880
components:
- type: Transform
- pos: 8.5,-57.5
+ pos: 24.5,54.5
parent: 2
- type: EntityStorage
air:
@@ -380362,8 +108504,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 2.4954846
+ - 9.387775
- 0
- 0
- 0
@@ -380374,10 +108516,14 @@ entities:
- 0
- 0
- 0
- - uid: 26387
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
+ - uid: 14881
components:
- type: Transform
- pos: -23.5,2.5
+ pos: 25.5,54.5
parent: 2
- type: EntityStorage
air:
@@ -380397,10 +108543,14 @@ entities:
- 0
- 0
- 0
- - uid: 26388
+ - type: Construction
+ containers:
+ - EntityStorageComponent
+ - entity_storage
+ - uid: 14882
components:
- type: Transform
- pos: -19.5,-27.5
+ pos: -49.5,36.5
parent: 2
- type: EntityStorage
air:
@@ -380408,8 +108558,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -380420,10 +108570,10 @@ entities:
- 0
- 0
- 0
- - uid: 26389
+ - uid: 14883
components:
- type: Transform
- pos: 58.5,11.5
+ pos: -48.5,36.5
parent: 2
- type: EntityStorage
air:
@@ -380431,8 +108581,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -380443,10 +108593,10 @@ entities:
- 0
- 0
- 0
- - uid: 26390
+ - uid: 14884
components:
- type: Transform
- pos: 3.5,65.5
+ pos: -47.5,36.5
parent: 2
- type: EntityStorage
air:
@@ -380454,8 +108604,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -380466,23 +108616,77 @@ entities:
- 0
- 0
- 0
-- proto: LockerSyndicatePersonal
+- proto: CrateHydroponics
entities:
- - uid: 1203
+ - uid: 14885
components:
- type: Transform
- pos: -36.5,-55.5
+ pos: -24.5,53.5
+ parent: 2
+- proto: CrateHydroponicsSeeds
+ entities:
+ - uid: 14886
+ components:
+ - type: Transform
+ pos: -36.5,45.5
+ parent: 2
+ - uid: 14887
+ components:
+ - type: Transform
+ pos: -59.5,-44.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: CrateHydroSecure
+ entities:
+ - uid: 14888
+ components:
+ - type: Transform
+ pos: -26.5,55.5
+ parent: 2
+ - uid: 14889
+ components:
+ - type: Transform
+ pos: -36.5,46.5
+ parent: 2
+- proto: CrateInternals
+ entities:
+ - uid: 14890
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 2
+- proto: CrateMedical
+ entities:
+ - uid: 880
+ components:
+ - type: Transform
+ pos: 60.5,-3.5
parent: 2
- - type: Lock
- locked: False
- type: EntityStorage
air:
volume: 200
immutable: False
temperature: 293.1496
moles:
- - 1.8977377
- - 7.139109
+ - 1.8968438
+ - 7.1357465
- 0
- 0
- 0
@@ -380499,20 +108703,23 @@ entities:
showEnts: False
occludes: True
ents:
- - 1205
- - 1206
- - 1204
+ - 881
+ - 885
+ - 882
+ - 887
+ - 886
+ - 883
+ - 884
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
-- proto: LockerWallMedical
+- proto: CrateMedicalScrubs
entities:
- - uid: 26391
+ - uid: 14891
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-51.5
+ pos: 11.5,-40.5
parent: 2
- type: EntityStorage
air:
@@ -380520,8 +108727,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 1.8856695
- - 7.0937095
+ - 2.4954846
+ - 9.387775
- 0
- 0
- 0
@@ -380532,12 +108739,35 @@ entities:
- 0
- 0
- 0
-- proto: LockerWardenFilled
+ - uid: 14892
+ components:
+ - type: Transform
+ pos: 20.5,-37.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 2.4954846
+ - 9.387775
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: CrateMedicalSecure
entities:
- - uid: 14359
+ - uid: 1499
components:
- type: Transform
- pos: 55.5,6.5
+ pos: -50.5,-40.5
parent: 2
- type: EntityStorage
air:
@@ -380545,8 +108775,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 1.9016405
- - 7.1537914
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -380563,32 +108793,131 @@ entities:
showEnts: False
occludes: True
ents:
- - 14366
- - 14363
- - 14360
- - 14361
- - 14362
- - 14365
- - 14364
+ - 1506
+ - 1502
+ - 1503
+ - 1505
+ - 1501
+ - 1504
+ - 1500
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
-- proto: LockerWeldingSuppliesFilled
+- proto: CrateMedicalSurgery
entities:
- - uid: 26392
+ - uid: 14893
+ components:
+ - type: Transform
+ pos: 31.5,-46.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: CrateNPCCow
+ entities:
+ - uid: 14894
+ components:
+ - type: Transform
+ pos: -33.5,43.5
+ parent: 2
+- proto: CrateNPCHamlet
+ entities:
+ - uid: 14895
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 2
+- proto: CratePlastic
+ entities:
+ - uid: 14896
+ components:
+ - type: Transform
+ pos: 27.5,59.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 14897
+ components:
+ - type: Transform
+ pos: 27.5,60.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: CrateServiceBureaucracy
+ entities:
+ - uid: 14898
+ components:
+ - type: Transform
+ pos: -37.5,63.5
+ parent: 2
+- proto: CrateServiceJanitorialSupplies
+ entities:
+ - uid: 14899
+ components:
+ - type: Transform
+ pos: 21.5,49.5
+ parent: 2
+ - uid: 14900
components:
- type: Transform
- pos: -58.5,-3.5
+ pos: -59.5,-40.5
parent: 2
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.1496
+ temperature: 293.14673
moles:
- - 9.368679
- - 35.24408
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -380599,10 +108928,12 @@ entities:
- 0
- 0
- 0
- - uid: 26393
+- proto: CrateServiceReplacementLights
+ entities:
+ - uid: 14901
components:
- type: Transform
- pos: 10.5,-13.5
+ pos: 16.5,45.5
parent: 2
- type: EntityStorage
air:
@@ -380610,8 +108941,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 2.4954846
+ - 9.387775
- 0
- 0
- 0
@@ -380622,142886 +108953,148538 @@ entities:
- 0
- 0
- 0
-- proto: MachineAnomalyGenerator
+- proto: CrateToyBox
entities:
- - uid: 26394
-=======
- pos: -122.43088,33.380764
- parent: 2
- - uid: 25681
- components:
- - type: MetaData
- desc: Очаровательная мягкая игрушка, напоминающая унатха в EVA костюме. "Приветствуйте своих новых коллег как вы приветствуете эту игрушку, с распростертыми объятиями!".
- name: плюшевый TiFeRi
- - type: Transform
- pos: -36.5417,-50.486084
- parent: 2
- - uid: 25682
- components:
- - type: MetaData
- desc: Он смотрит в космос, а космос смотрит в него... Глубоко...
- name: Задумчивый Унатх
- - type: Transform
- pos: 28.562729,105.623215
- parent: 2
- - uid: 25683
+ - uid: 14902
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -112.9989,32.62022
+ pos: 11.5,66.5
parent: 2
-- proto: PlushieXeno
+- proto: CrateTrashCart
entities:
- - uid: 25684
+ - uid: 14903
components:
- type: Transform
- pos: 61.567173,22.575863
+ pos: -45.5,-46.5
parent: 2
-- proto: PonderingOrb
- entities:
- - uid: 25685
+ - 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: 14904
components:
- type: Transform
- pos: -74.52181,-11.459025
+ pos: -59.5,-33.5
parent: 2
-- proto: PortableFlasher
- entities:
- - uid: 25686
+ - uid: 14905
components:
- type: Transform
- pos: 70.5,3.5
+ pos: -27.5,39.5
parent: 2
- - uid: 25687
+ - uid: 14906
components:
- type: Transform
- pos: 69.5,3.5
+ pos: 31.5,56.5
parent: 2
- - uid: 25688
+ - uid: 14907
components:
- type: Transform
- pos: 68.5,3.5
+ pos: 31.5,57.5
parent: 2
-- proto: PortableGeneratorJrPacman
+- proto: CrateTrashCartFilled
entities:
- - uid: 25689
- components:
- - type: Transform
- pos: -57.5,-22.5
- parent: 2
- - uid: 25690
- components:
- - type: Transform
- pos: -27.5,-56.5
- parent: 2
- - uid: 25691
- components:
- - type: Transform
- pos: -73.5,-24.5
- parent: 2
- - uid: 25692
- components:
- - type: Transform
- pos: 9.5,62.5
- parent: 2
- - uid: 25693
- components:
- - type: Transform
- pos: 2.5,-39.5
- parent: 2
- - uid: 25694
- components:
- - type: Transform
- pos: 52.5,-41.5
- parent: 2
- - uid: 25695
- components:
- - type: Transform
- pos: -32.5,-48.5
- parent: 2
- - uid: 25696
- components:
- - type: Transform
- pos: 7.5,-3.5
- parent: 2
- - uid: 25697
+ - uid: 14908
components:
- type: Transform
- pos: -31.5,64.5
+ pos: -37.5,-54.5
parent: 2
- - uid: 25698
+ - uid: 14909
components:
- type: Transform
- pos: -38.5,-17.5
+ pos: 0.5,56.5
parent: 2
-- proto: PortableGeneratorPacman
+- proto: CrateTrashCartJani
entities:
- - uid: 25699
- components:
- - type: Transform
- pos: 16.5,-54.5
- parent: 2
- - uid: 25700
+ - uid: 14910
components:
- type: Transform
- pos: -70.5,12.5
+ pos: 4.5,50.5
parent: 2
-- proto: PortableGeneratorSuperPacman
- entities:
- - uid: 25701
+ - uid: 14911
components:
- type: Transform
- pos: -46.5,-5.5
+ pos: -1.5,56.5
parent: 2
- - uid: 25702
+ - uid: 14912
components:
- type: Transform
- pos: -44.5,-5.5
+ pos: 4.5,51.5
parent: 2
-- proto: PortableScrubber
+- proto: CrayonBox
entities:
- - uid: 25703
- components:
- - type: Transform
- pos: -45.5,22.5
- parent: 2
- - uid: 25704
- components:
- - type: Transform
- pos: -51.5,23.5
- parent: 2
- - uid: 25705
- components:
- - type: Transform
- pos: -51.5,22.5
- parent: 2
- - uid: 25706
+ - uid: 14913
components:
- type: Transform
- pos: -45.5,21.5
+ pos: -4.504109,26.61277
parent: 2
-- proto: PosterBroken
- entities:
- - uid: 25707
+ - uid: 14914
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 79.49999,3.5
+ pos: 36.502167,-10.380364
parent: 2
-- proto: PosterContrabandAtmosiaDeclarationIndependence
- entities:
- - uid: 25708
+ - type: Physics
+ canCollide: False
+ - uid: 14915
components:
- type: Transform
- pos: -66.5,-26.5
+ pos: -12.505997,-81.42869
parent: 2
- - uid: 25709
+ - type: Physics
+ canCollide: False
+ - uid: 14916
components:
- type: Transform
- pos: -56.5,31.5
+ pos: -34.169643,-10.397047
parent: 2
-- proto: PosterContrabandBeachStarYamamoto
+- proto: CrayonMime
entities:
- - uid: 25710
->>>>>>> master
+ - uid: 14917
components:
- - type: MetaData
- name: Пляжная звезда Триннк!
- type: Transform
-<<<<<<< HEAD
- pos: -22.5,-56.5
+ rot: 1.5707963267948966 rad
+ pos: -4.591542,46.22136
parent: 2
-- proto: MachineAnomalyVessel
+- proto: CrayonRed
entities:
- - uid: 26395
- components:
- - type: Transform
- pos: -13.5,-59.5
- parent: 2
- - uid: 26396
- components:
- - type: Transform
- pos: -12.5,-59.5
- parent: 2
- - uid: 26397
+ - uid: 14918
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-59.5
+ pos: 73.56891,-45.23019
parent: 2
-- proto: MachineAPE
- entities:
- - uid: 26398
+ - uid: 14919
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-59.5
+ pos: 73.64703,-45.245815
parent: 2
- - uid: 26399
+ - uid: 14920
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-59.5
+ pos: 73.78766,-45.38644
parent: 2
- - uid: 26400
+ - uid: 14921
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-59.5
+ pos: 73.72516,-45.339565
parent: 2
-- proto: MachineArtifactAnalyzer
+- proto: Crematorium
entities:
- - uid: 26401
+ - uid: 14922
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -37.5,-40.5
+ pos: -23.5,-71.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 14652
-- proto: MachineCentrifuge
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 9.368679
+ - 35.24408
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: CrewMonitoringComputerCircuitboard
entities:
- - uid: 26402
+ - uid: 14923
components:
- type: Transform
- pos: 2.5,-30.5
+ pos: -34.459133,19.569752
parent: 2
-- proto: MachineElectrolysisUnit
+- proto: CrewMonitoringServer
entities:
- - uid: 26403
+ - uid: 14924
components:
- type: Transform
- pos: 3.5,-29.5
+ pos: -124.5,36.5
parent: 2
-- proto: MachineFrame
+ - type: SingletonDeviceNetServer
+ active: False
+ available: False
+- proto: Crowbar
entities:
- - uid: 26404
- components:
- - type: Transform
- pos: -7.5,-41.5
- parent: 2
- - uid: 26405
- components:
- - type: Transform
- pos: -6.5,-41.5
- parent: 2
- - uid: 26406
- components:
- - type: Transform
- pos: -44.5,-8.5
- parent: 2
- - uid: 26407
+ - uid: 14925
components:
- type: Transform
- pos: -44.5,-9.5
+ pos: -33.5,8.5
parent: 2
- - uid: 26408
+ - uid: 14926
components:
- type: Transform
- pos: -45.5,-8.5
+ pos: -22.5,-45.5
parent: 2
- - uid: 26409
+ - uid: 14927
components:
- type: Transform
- pos: -45.5,-9.5
+ pos: -35.52931,-35.24693
parent: 2
- - uid: 26410
+ - uid: 14928
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,58.5
- parent: 2
- - uid: 26411
- components:
- - type: Transform
- pos: -7.5,-52.5
- parent: 2
- - uid: 26412
- components:
- - type: Transform
- pos: -112.5,39.5
+ pos: 7.506043,-48.954784
parent: 2
- - uid: 26413
+ - uid: 14929
components:
- type: Transform
- pos: -37.5,-43.5
+ pos: -44.506374,-30.442978
parent: 2
- - uid: 26414
+ - type: Physics
+ canCollide: False
+ - uid: 14930
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-35.5
+ pos: -69.46426,12.496543
parent: 2
- - uid: 26415
+ - type: Physics
+ canCollide: False
+ - uid: 14931
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,52.5
+ pos: -45.5,-11.5
parent: 2
- - uid: 26416
+ - type: Physics
+ canCollide: False
+ - uid: 14932
components:
- type: Transform
- pos: -112.5,37.5
+ pos: -7.3657737,-61.45761
parent: 2
- - uid: 26417
+ - type: Physics
+ canCollide: False
+ - uid: 14933
components:
- type: Transform
- pos: -114.5,41.5
+ pos: 2.544464,65.46228
parent: 2
- - uid: 26418
+ - type: Physics
+ canCollide: False
+ - uid: 14934
components:
- type: Transform
- pos: -112.5,41.5
+ pos: 78.44689,8.815404
parent: 2
- - uid: 26419
+ - uid: 14936
components:
+ - type: MetaData
+ desc: Многофункциональный инструмент для открывания дверей и борьбы с межпространственными захватчиками. Посыпаный алмазной струшкой.
+ name: лом с алмазным напылением
- type: Transform
- pos: -114.5,39.5
- parent: 2
- - uid: 26420
+ parent: 14935
+ - type: Physics
+ canCollide: False
+ - uid: 14937
components:
- type: Transform
- pos: -114.5,37.5
+ pos: -39.486397,-50.506275
parent: 2
-- proto: MachineFrameDestroyed
- entities:
- - uid: 26421
+ - type: Physics
+ canCollide: False
+ - uid: 14938
components:
- type: Transform
- pos: -40.5,-55.5
+ pos: -57.502308,-13.465677
parent: 2
- - uid: 26422
+ - type: Physics
+ canCollide: False
+ - uid: 14939
components:
- type: Transform
- pos: 28.5,-65.5
+ pos: -24.473108,-66.50455
parent: 2
- - uid: 26423
+ - type: Physics
+ canCollide: False
+ - uid: 14940
components:
- type: Transform
- pos: -61.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 36.367867,-68.083046
parent: 2
- - uid: 26424
+ - uid: 14941
components:
- type: Transform
- pos: -38.5,-35.5
+ pos: -58.47548,22.521378
parent: 2
-- proto: MagazineBoxMagnum
- entities:
- - uid: 26327
- components:
- - type: Transform
- parent: 26326
- type: Physics
canCollide: False
- - type: InsideEntityStorage
-- proto: MagazineBoxMagnumPractice
- entities:
- - uid: 26328
+ - uid: 14942
components:
- type: Transform
- parent: 26326
+ pos: -21.5,14.5
+ parent: 2
- type: Physics
canCollide: False
- - type: InsideEntityStorage
-- proto: MagazineBoxPistolPractice
- entities:
- - uid: 26425
- components:
- - type: Transform
- pos: 56.684937,19.51429
- parent: 2
-- proto: MagazineLightRifle
- entities:
- - uid: 26426
- components:
- - type: Transform
- pos: 40.69412,17.532423
- parent: 2
- - uid: 26427
+ - uid: 14943
components:
- type: Transform
- pos: 40.4283,17.514713
+ pos: -56.635643,-1.4630084
parent: 2
-- proto: MagazineLightRiflePractice
- entities:
- - uid: 26428
+ - type: Physics
+ canCollide: False
+ - uid: 14944
components:
- type: Transform
- pos: 41.438423,17.514713
+ pos: -18.545227,-32.384617
parent: 2
-- proto: MagazinePistol
+- proto: CrowbarRed
entities:
- - uid: 26429
+ - uid: 14945
components:
- type: Transform
- pos: 59.5,7.5
+ pos: 74.5,-4.5
parent: 2
- - uid: 26430
+ - uid: 14946
components:
- type: Transform
- pos: 59.5,8.5
+ pos: 9.521271,64.44338
parent: 2
- - uid: 26431
+ - type: Physics
+ canCollide: False
+ - uid: 14947
components:
- type: Transform
- pos: 59.5,7.5
+ pos: 43.5,-38.5
parent: 2
- - uid: 26432
+ - type: Physics
+ canCollide: False
+ - uid: 14948
components:
- type: Transform
- pos: 59.5,7.5
+ pos: 15.5,-54.5
parent: 2
- - uid: 26433
+ - type: Physics
+ canCollide: False
+ - uid: 14949
components:
- type: Transform
- pos: 59.5,7.5
+ pos: 9.598661,84.47283
parent: 2
- - uid: 26434
+ - type: Physics
+ canCollide: False
+ - uid: 14950
components:
- type: Transform
- pos: 59.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 23.250557,57.466568
parent: 2
- - uid: 26435
+ - uid: 14951
components:
- type: Transform
- pos: 59.5,8.5
+ pos: -36.496216,-78.649216
parent: 2
- - uid: 26436
+ - type: Physics
+ canCollide: False
+ - uid: 14952
components:
- type: Transform
- pos: 59.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -25.54941,-31.15223
parent: 2
- - uid: 26437
+- proto: CryogenicSleepUnit
+ entities:
+ - uid: 14953
components:
- type: Transform
- pos: 59.5,9.5
+ pos: 49.5,-13.5
parent: 2
- - uid: 26438
+ - uid: 14954
components:
- type: Transform
- pos: 59.5,9.5
+ pos: 38.5,-44.5
parent: 2
- - uid: 26439
+ - uid: 14955
components:
- type: Transform
- pos: 59.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 44.5,-15.5
parent: 2
- - uid: 26440
+ - uid: 14956
components:
- type: Transform
- pos: 59.5,9.5
+ pos: 38.5,-43.5
parent: 2
-- proto: MagicDiceBag
+- proto: CryogenicSleepUnitSpawner
entities:
- - uid: 26441
- components:
- - type: Transform
- pos: -69.484474,-34.565617
- parent: 2
- - uid: 26442
+ - uid: 14957
components:
- type: Transform
- pos: 84.13359,-0.45258796
+ pos: 49.5,-15.5
parent: 2
-- proto: MaintenanceFluffSpawner
+- proto: CryogenicSleepUnitSpawnerLateJoin
entities:
- - uid: 26443
- components:
- - type: Transform
- pos: -29.5,58.5
- parent: 2
- - uid: 26444
- components:
- - type: Transform
- pos: 7.5,48.5
- parent: 2
- - uid: 26445
- components:
- - type: Transform
- pos: -37.5,-69.5
- parent: 2
- - uid: 26446
+ - uid: 14958
components:
- type: Transform
- pos: -46.5,-48.5
+ rot: 3.141592653589793 rad
+ pos: 44.5,-13.5
parent: 2
- - uid: 26447
+- proto: CryoPod
+ entities:
+ - uid: 14959
components:
- type: Transform
- pos: -37.5,25.5
+ pos: 21.5,-37.5
parent: 2
- - uid: 26448
+ - uid: 14960
components:
- type: Transform
- pos: 36.5,-50.5
+ pos: 23.5,-37.5
parent: 2
- - uid: 26449
+- proto: CurtainsBlackOpen
+ entities:
+ - uid: 14961
components:
- type: Transform
- pos: 36.5,-51.5
+ pos: -1.5,42.5
parent: 2
- - uid: 26450
+- proto: CurtainsOrangeOpen
+ entities:
+ - uid: 14962
components:
- type: Transform
- pos: 20.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,52.5
parent: 2
- - uid: 26451
+- proto: CurtainsPinkOpen
+ entities:
+ - uid: 14963
components:
- type: Transform
- pos: 42.5,-2.5
+ pos: -58.5,-50.5
parent: 2
- - uid: 26452
+ - uid: 14964
components:
- type: Transform
- pos: 22.5,68.5
+ pos: -57.5,-50.5
parent: 2
- - uid: 26453
+ - uid: 14965
components:
- type: Transform
- pos: 50.5,-53.5
+ pos: -59.5,-50.5
parent: 2
- - uid: 26454
+- proto: CurtainsPurple
+ entities:
+ - uid: 14966
components:
- type: Transform
- pos: -34.5,-56.5
+ pos: -10.5,29.5
parent: 2
- - uid: 26455
+ - uid: 14967
components:
- type: Transform
- pos: -36.5,59.5
+ pos: -10.5,28.5
parent: 2
- - uid: 26456
+ - uid: 14968
components:
- type: Transform
- pos: -45.5,-43.5
+ pos: -10.5,32.5
parent: 2
- - uid: 26457
+ - uid: 14969
components:
- type: Transform
- pos: -45.5,-42.5
+ pos: -10.5,33.5
parent: 2
- - uid: 26458
+ - uid: 14970
components:
- type: Transform
- pos: 13.5,61.5
+ pos: -10.5,31.5
parent: 2
- - uid: 26459
+ - uid: 14971
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -115.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,27.5
parent: 2
- - uid: 26460
+ - uid: 14972
components:
- type: Transform
- pos: -40.5,48.5
+ pos: -10.5,30.5
parent: 2
-- proto: MaintenanceToolSpawner
+- proto: CurtainsPurpleOpen
entities:
- - uid: 26461
- components:
- - type: Transform
- pos: 20.5,41.5
- parent: 2
- - uid: 26462
- components:
- - type: Transform
- pos: 9.5,64.5
- parent: 2
- - uid: 26463
- components:
- - type: Transform
- pos: 22.5,-20.5
- parent: 2
- - uid: 26464
- components:
- - type: Transform
- pos: 5.5,87.5
- parent: 2
- - uid: 26465
- components:
- - type: Transform
- pos: 19.5,41.5
- parent: 2
- - uid: 26466
+ - uid: 14973
components:
- type: Transform
- pos: -113.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,54.5
parent: 2
-- proto: MaintenanceWeaponSpawner
+- proto: Cutlass
entities:
- - uid: 26467
- components:
- - type: Transform
- pos: 46.5,-8.5
- parent: 2
- - uid: 26468
+ - uid: 13985
components:
- type: Transform
- pos: 20.5,-18.5
- parent: 2
-- proto: Matchbox
+ parent: 13984
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: d20Dice
entities:
- - uid: 26469
+ - uid: 14974
components:
- type: Transform
- pos: -62.510532,18.544167
+ pos: -34.49025,-59.369396
parent: 2
- type: Physics
canCollide: False
- - uid: 26470
- components:
- - type: Transform
- pos: 72.99635,-45.369106
- parent: 2
-- proto: MaterialCloth
+- proto: DawInstrument
entities:
- - uid: 26471
- components:
- - type: Transform
- pos: -13.644094,1.6663073
- parent: 2
- - type: Stack
- count: 29
- - uid: 26472
+ - uid: 14975
components:
- type: Transform
- pos: 30.5,-46.5
+ pos: -5.5,54.5
parent: 2
-- proto: MaterialDurathread
+- proto: DefaultStationBeaconAISatellite
entities:
- - uid: 26473
+ - uid: 14976
components:
- type: Transform
- pos: -13.332681,1.5413071
+ pos: -118.5,33.5
parent: 2
-- proto: MaterialHideBear
+ - type: NavMapBeacon
+ text: Спутник ИИ
+ - type: WarpPoint
+ location: Спутник ИИ
+- proto: DefaultStationBeaconAME
entities:
- - uid: 26474
+ - uid: 14977
components:
- type: Transform
- pos: -77.5,-3.5
+ pos: -69.5,-0.5
parent: 2
-- proto: MaterialReclaimer
+ - type: NavMapBeacon
+ text: Генераторная
+ - type: WarpPoint
+ location: Инженерный - Генераторная
+- proto: DefaultStationBeaconAnomalyGenerator
entities:
- - uid: 26475
+ - uid: 14978
components:
- type: Transform
- pos: 11.5,37.5
+ pos: -17.5,-57.5
parent: 2
-- proto: MaterialWoodPlank
+ - type: NavMapBeacon
+ text: Аномалистика
+ - type: WarpPoint
+ location: РнД - Аномалии
+- proto: DefaultStationBeaconArmory
entities:
- - uid: 26476
+ - uid: 14979
components:
- type: Transform
- pos: -68.5,-44.5
+ pos: 62.5,6.5
parent: 2
-- proto: MatterBinStockPart
+ - type: NavMapBeacon
+ text: Оружейная
+ - type: WarpPoint
+ location: Сб - оружиейная
+- proto: DefaultStationBeaconArrivals
entities:
- - uid: 26477
- components:
- - type: Transform
- pos: -32.5,13.5
- parent: 2
- - uid: 26478
+ - uid: 14980
components:
- type: Transform
- pos: -9.5,-30.5
+ pos: -11.5,69.5
parent: 2
-- proto: Mattress
+ - type: NavMapBeacon
+ text: Прибытие
+ - type: WarpPoint
+ location: Прибытие
+- proto: DefaultStationBeaconArtifactLab
entities:
- - uid: 26479
- components:
- - type: Transform
- pos: 86.5,6.5
- parent: 2
- - uid: 26480
- components:
- - type: Transform
- pos: 69.5,19.5
- parent: 2
- - uid: 26481
- components:
- - type: Transform
- pos: 86.5,5.5
- parent: 2
- - uid: 26482
- components:
- - type: Transform
- pos: 86.5,2.5
- parent: 2
- - uid: 26483
- components:
- - type: Transform
- pos: 62.5,21.5
- parent: 2
- - uid: 26484
- components:
- - type: Transform
- pos: 86.5,4.5
- parent: 2
- - uid: 26485
+ - uid: 14981
components:
- type: Transform
- pos: 86.5,3.5
+ pos: -28.5,-41.5
parent: 2
-- proto: MedicalBed
+ - type: NavMapBeacon
+ text: Артефакты
+ - type: WarpPoint
+ location: Научный - Артефакты
+- proto: DefaultStationBeaconAtmospherics
entities:
- - uid: 26486
- components:
- - type: Transform
- pos: 32.5,-37.5
- parent: 2
- - uid: 26487
- components:
- - type: Transform
- pos: 70.5,16.5
- parent: 2
- - uid: 26488
- components:
- - type: Transform
- pos: 68.5,16.5
- parent: 2
- - uid: 26489
- components:
- - type: Transform
- pos: 38.5,-67.5
- parent: 2
- - uid: 26490
- components:
- - type: Transform
- pos: 42.5,-67.5
- parent: 2
- - uid: 26491
- components:
- - type: Transform
- pos: 63.5,-4.5
- parent: 2
- - uid: 26492
- components:
- - type: Transform
- pos: 36.5,-41.5
- parent: 2
- - uid: 26493
- components:
- - type: Transform
- pos: 34.5,-37.5
- parent: 2
- - uid: 26494
- components:
- - type: Transform
- pos: 38.5,-38.5
- parent: 2
- - uid: 26495
- components:
- - type: Transform
- pos: 38.5,-37.5
- parent: 2
- - uid: 26496
+ - uid: 14982
components:
- type: Transform
- pos: 30.5,-52.5
+ pos: -59.5,28.5
parent: 2
-- proto: MedicalScanner
+ - type: NavMapBeacon
+ text: Атмосферный отсек
+ - type: WarpPoint
+ location: Атмос - Юг
+- proto: DefaultStationBeaconBar
entities:
- - uid: 26497
+ - uid: 14983
components:
- type: Transform
- pos: 10.5,-37.5
+ pos: -10.5,41.5
parent: 2
-- proto: MedicalTechFab
+ - type: NavMapBeacon
+ text: Бар
+ - type: WarpPoint
+ location: Сервис - Бар
+- proto: DefaultStationBeaconBotany
entities:
- - uid: 26498
+ - uid: 14984
components:
- type: Transform
- pos: 28.5,-23.5
+ pos: -29.5,50.5
parent: 2
-- proto: MedkitBruteFilled
+ - type: NavMapBeacon
+ text: Гидропоника
+ - type: WarpPoint
+ location: Сервис - Гидропоника
+- proto: DefaultStationBeaconBridge
entities:
- - uid: 26499
- components:
- - type: Transform
- pos: 28.497252,-25.883469
- parent: 2
- - uid: 26500
- components:
- - type: Transform
- pos: 28.497252,-25.688663
- parent: 2
- - uid: 26501
+ - uid: 14985
components:
- type: Transform
- pos: 60.678944,-5.763924
+ pos: -0.5,16.5
parent: 2
- - uid: 26502
+ - type: NavMapBeacon
+ text: Мостик
+ - type: WarpPoint
+ location: Мостик
+- proto: DefaultStationBeaconBrig
+ entities:
+ - uid: 14986
components:
- type: Transform
- pos: 28.492884,-26.049799
+ pos: 47.5,7.5
parent: 2
-- proto: MedkitBurnFilled
+ - type: NavMapBeacon
+ text: Бриг
+ - type: WarpPoint
+ location: Бриг
+- proto: DefaultStationBeaconCaptainsQuarters
entities:
- - uid: 26503
+ - uid: 14987
components:
- type: Transform
- pos: 61.667484,-5.7213755
+ pos: 9.5,3.5
parent: 2
- - uid: 26504
+ - type: NavMapBeacon
+ text: Каюта капитана
+ - type: WarpPoint
+ location: Мостик - Комната капитана
+- proto: DefaultStationBeaconCargoBay
+ entities:
+ - uid: 14988
components:
- type: Transform
- pos: -63.478207,4.565693
+ pos: 37.5,50.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26505
+ - type: NavMapBeacon
+ text: Карго док
+ - type: WarpPoint
+ location: Карго - доки
+- proto: DefaultStationBeaconCERoom
+ entities:
+ - uid: 14989
components:
- type: Transform
- pos: 28.492886,-24.471674
+ pos: -63.5,7.5
parent: 2
- - uid: 26506
+ - type: NavMapBeacon
+ text: СИ
+ - type: WarpPoint
+ location: Инженерный - Офис старшего инженера
+- proto: DefaultStationBeaconChapel
+ entities:
+ - uid: 14990
components:
- type: Transform
- pos: 28.479532,-24.696926
+ pos: -16.5,-70.5
parent: 2
- - uid: 26507
+ - type: NavMapBeacon
+ text: Церковь
+ - type: WarpPoint
+ location: Сервис - Церковь
+- proto: DefaultStationBeaconChemistry
+ entities:
+ - uid: 14991
components:
- type: Transform
- pos: 28.479532,-25.0157
+ pos: 5.5,-32.5
parent: 2
- - uid: 26508
+ - type: NavMapBeacon
+ text: Химия
+ - type: WarpPoint
+ location: Медотсек - Химия
+- proto: DefaultStationBeaconCMORoom
+ entities:
+ - uid: 14992
components:
- type: Transform
- pos: 69.40965,12.287214
+ pos: 22.5,-45.5
parent: 2
- - uid: 26509
+ - type: NavMapBeacon
+ text: ГВ
+ - type: WarpPoint
+ location: Медотсек - Кабинет главрача
+- proto: DefaultStationBeaconCourtroom
+ entities:
+ - uid: 14993
components:
- type: Transform
- pos: -58.513634,3.5297406
+ pos: 26.5,-1.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: MedkitCombatFilled
+ - type: NavMapBeacon
+ text: Суд
+ - type: WarpPoint
+ location: Зал суда
+- proto: DefaultStationBeaconCryonics
entities:
- - uid: 26510
+ - uid: 14994
components:
- type: Transform
- pos: 60.215004,-4.3548026
+ pos: 22.5,-39.5
parent: 2
-- proto: MedkitFilled
+ - type: NavMapBeacon
+ text: Крио
+ - type: WarpPoint
+ location: Медотсек - криогеника
+- proto: DefaultStationBeaconDetectiveRoom
entities:
- - uid: 26511
+ - uid: 14995
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 33.53191,26.566101
+ pos: 30.5,10.5
parent: 2
- - uid: 26512
+ - type: NavMapBeacon
+ text: Детектив
+ - type: WarpPoint
+ location: СБ - Офис детектива
+- proto: DefaultStationBeaconDisposals
+ entities:
+ - uid: 14996
components:
- type: Transform
- pos: 60.215675,-4.7851834
+ pos: 28.5,59.5
parent: 2
- - uid: 26513
+ - type: NavMapBeacon
+ text: Мусорка
+ - type: WarpPoint
+ location: Мусоросброс
+- proto: DefaultStationBeaconDorms
+ entities:
+ - uid: 14997
components:
- type: Transform
- pos: 68.3671,12.308491
+ pos: 48.5,-19.5
parent: 2
- - uid: 26514
+ - type: NavMapBeacon
+ text: Дормы
+ - type: WarpPoint
+ location: Дормы - Дормы
+- proto: DefaultStationBeaconEngineering
+ entities:
+ - uid: 14998
components:
- type: Transform
- pos: 7.5,37.5
+ pos: -53.5,11.5
parent: 2
- - uid: 26515
+ - type: NavMapBeacon
+ text: Инженерный отдел
+ - type: WarpPoint
+ location: Инженерный отдел
+- proto: DefaultStationBeaconEvac
+ entities:
+ - uid: 14999
components:
- type: Transform
- pos: 14.52385,-22.462849
+ pos: -4.5,-72.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26516
+ - type: NavMapBeacon
+ text: Отбытие
+ - type: WarpPoint
+ location: Отбытие
+- proto: DefaultStationBeaconEVAStorage
+ entities:
+ - uid: 15000
components:
- type: Transform
- pos: -5.50263,18.494661
+ pos: -11.5,-13.5
parent: 2
- - uid: 26517
+ - type: NavMapBeacon
+ text: Хранилище EVA
+ - type: WarpPoint
+ location: Командование - Хранение EVA
+- proto: DefaultStationBeaconGravGen
+ entities:
+ - uid: 15001
components:
- type: Transform
- pos: 23.182888,-42.310036
+ pos: -71.5,7.5
parent: 2
- - uid: 26518
+ - type: NavMapBeacon
+ text: Генератор гравитации
+ - type: WarpPoint
+ location: Инженерный - Гравитационный генератор
+- proto: DefaultStationBeaconHOPOffice
+ entities:
+ - uid: 15002
components:
- type: Transform
- pos: 81.5,-20.5
+ pos: -10.5,1.5
parent: 2
- - uid: 26519
+ - type: NavMapBeacon
+ text: ГП
+ - type: WarpPoint
+ location: Мостик - Глава персонала
+- proto: DefaultStationBeaconHOSRoom
+ entities:
+ - uid: 15003
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.354641,-44.521282
+ pos: 40.5,20.5
parent: 2
- - uid: 26520
+ - type: NavMapBeacon
+ text: ГСБ
+ - type: WarpPoint
+ location: Сб - кабинет ГСБ
+- proto: DefaultStationBeaconJanitorsCloset
+ entities:
+ - uid: 15004
components:
- type: Transform
- pos: 33.505825,42.528225
+ pos: 1.5,52.5
parent: 2
- - uid: 26521
+- proto: DefaultStationBeaconKitchen
+ entities:
+ - uid: 15005
components:
- type: Transform
- pos: 36.50758,-18.520462
+ pos: -30.5,35.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26522
+ - type: NavMapBeacon
+ text: Кухня
+ - type: WarpPoint
+ location: Сервис - Кухня
+- proto: DefaultStationBeaconLawOffice
+ entities:
+ - uid: 15006
components:
- type: Transform
- pos: 3.5583289,-13.353186
+ pos: 35.5,0.5
parent: 2
-- proto: MedkitOxygenFilled
+ - type: NavMapBeacon
+ text: АВД
+ - type: WarpPoint
+ location: Офис агента внутренних дел
+- proto: DefaultStationBeaconLibrary
entities:
- - uid: 26523
+ - uid: 15007
components:
- type: Transform
- pos: 60.21086,-5.763924
+ pos: -28.5,-3.5
parent: 2
- - uid: 26524
+ - type: NavMapBeacon
+ text: Библиотека
+ - type: WarpPoint
+ location: Библиотека - Центральный зал
+- proto: DefaultStationBeaconMedbay
+ entities:
+ - uid: 15008
components:
- type: Transform
- pos: 68.90039,12.308502
+ pos: 8.5,-25.5
parent: 2
- - uid: 26525
+ - type: NavMapBeacon
+ text: Медбей
+ - type: WarpPoint
+ location: Медотсек - Лобби
+- proto: DefaultStationBeaconMorgue
+ entities:
+ - uid: 15009
components:
- type: Transform
- pos: 32.55548,-26.078274
+ pos: 7.5,-50.5
parent: 2
- - uid: 26526
+ - type: NavMapBeacon
+ text: Морг
+ - type: WarpPoint
+ location: Медотсек - Морг
+- proto: DefaultStationBeaconPermaBrig
+ entities:
+ - uid: 15010
components:
- type: Transform
- pos: 32.55548,-25.79492
+ pos: 82.5,0.5
parent: 2
- - uid: 26527
+ - type: NavMapBeacon
+ text: Пермабриг
+ - type: WarpPoint
+ location: СБ - перманентная тюрьма
+- proto: DefaultStationBeaconQMRoom
+ entities:
+ - uid: 15011
components:
- type: Transform
- pos: 32.570004,-26.357931
+ pos: 26.5,36.5
parent: 2
- - uid: 26528
+ - type: NavMapBeacon
+ text: КМ
+ - type: WarpPoint
+ location: Снабжение - Офис квартирмейстер
+- proto: DefaultStationBeaconRDRoom
+ entities:
+ - uid: 15012
components:
- type: Transform
- pos: 4.558329,-13.337561
+ pos: -18.5,-40.5
parent: 2
-- proto: MedkitRadiationFilled
+ - type: NavMapBeacon
+ text: НР
+ - type: WarpPoint
+ location: Научный - Офис научного руководителя
+- proto: DefaultStationBeaconSalvage
entities:
- - uid: 26529
+ - uid: 15013
components:
- type: Transform
- pos: -63.5,0.5
+ pos: 23.5,29.5
parent: 2
- - uid: 26530
+ - type: NavMapBeacon
+ text: Утилизаторная
+ - type: WarpPoint
+ location: Карго - утилизаторная
+- proto: DefaultStationBeaconScience
+ entities:
+ - uid: 15014
components:
- type: Transform
- pos: 68.5,-4.5
+ pos: -6.5,-32.5
parent: 2
-- proto: MedkitToxinFilled
+ - type: NavMapBeacon
+ text: Научный
+ - type: WarpPoint
+ location: Научный - РНД
+- proto: DefaultStationBeaconSecurityCheckpoint
entities:
- - uid: 26531
+ - uid: 15015
components:
- type: Transform
- pos: 68.5,-2.5
+ pos: 6.5,-59.5
parent: 2
- - uid: 26532
+ - type: NavMapBeacon
+ text: КПП
+ - type: WarpPoint
+ location: Отбытие - КПП
+ - uid: 15016
components:
- type: Transform
- pos: 32.55548,-24.92715
+ pos: 2.5,63.5
parent: 2
- - uid: 26533
+ - type: NavMapBeacon
+ text: КПП
+ - type: WarpPoint
+ location: Прибытие - Контрольно-пропускной пункт
+- proto: DefaultStationBeaconServerRoom
+ entities:
+ - uid: 15017
components:
- type: Transform
- pos: 32.55548,-25.175085
+ pos: -19.5,-52.5
parent: 2
- - uid: 26534
+ - type: NavMapBeacon
+ text: Серверная
+ - type: WarpPoint
+ location: Научный - серверная
+- proto: DefaultStationBeaconSolars
+ entities:
+ - uid: 15018
components:
- type: Transform
- pos: 61.13557,-5.7852044
+ pos: 28.5,95.5
parent: 2
- - uid: 26535
+ - type: NavMapBeacon
+ text: Соляры
+ - type: WarpPoint
+ location: Соляры - Северо-восток
+ - uid: 15019
components:
- type: Transform
- pos: 32.57,-24.607931
+ pos: -75.5,73.5
parent: 2
- - uid: 26536
+ - type: NavMapBeacon
+ text: Соляры
+ - type: WarpPoint
+ location: Соляры - Северо-Запад
+ - uid: 15020
components:
- type: Transform
- pos: -24.596327,-43.40592
- parent: 2
-- proto: Memorial
- entities:
- - uid: 26537
-=======
- pos: -29.5,21.5
+ pos: -51.5,-85.5
parent: 2
-- proto: PosterContrabandBustyBackdoorExoBabes6
+ - type: NavMapBeacon
+ text: Соляры
+ - type: WarpPoint
+ location: Соляры - Юго-западные
+- proto: DefaultStationBeaconSupply
entities:
- - uid: 25711
+ - uid: 15021
components:
- type: Transform
- rot: 3.141593671850739 rad
- pos: -66.5,-44.5
+ pos: 6.5,30.5
parent: 2
-- proto: PosterContrabandClown
+ - type: NavMapBeacon
+ text: Снабжение
+ - type: WarpPoint
+ location: Снабжение - Холл
+- proto: DefaultStationBeaconSurgery
entities:
- - uid: 25712
+ - uid: 15022
components:
- type: Transform
- pos: -10.5,25.5
+ pos: 32.5,-48.5
parent: 2
-- proto: PosterContrabandCybersun600
+ - type: NavMapBeacon
+ text: Хирургия
+ - type: WarpPoint
+ location: Медбей - операционная
+- proto: DefaultStationBeaconTEG
entities:
- - uid: 25713
+ - uid: 15023
components:
- type: Transform
- pos: -47.5,-45.5
+ pos: -51.5,50.5
parent: 2
-- proto: PosterContrabandEAT
+ - type: NavMapBeacon
+ text: ТЭГ
+ - type: WarpPoint
+ location: Атмос ТЭГ
+- proto: DefaultStationBeaconTheater
entities:
- - uid: 25714
+ - uid: 15024
components:
- type: Transform
- pos: -23.5,29.5
+ pos: -12.5,30.5
parent: 2
-- proto: PosterContrabandFreeSyndicateEncryptionKey
+- proto: DefaultStationBeaconToolRoom
entities:
- - uid: 25715
+ - uid: 15025
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -112.5,45.5
+ pos: -26.5,12.5
parent: 2
- - uid: 39298
+ - type: NavMapBeacon
+ text: Инструменты
+ - type: WarpPoint
+ location: Инженерный - Основное хранилище инструментов
+- proto: DefaultStationBeaconWardensOffice
+ entities:
+ - uid: 15026
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,33.5
- parent: 38344
-- proto: PosterContrabandFunPolice
+ pos: 53.5,6.5
+ parent: 2
+ - type: NavMapBeacon
+ text: Смотритель
+ - type: WarpPoint
+ location: СБ - смотритель
+- proto: DefibrillatorCabinetFilled
entities:
- - uid: 25716
+ - uid: 15027
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,29.5
+ pos: 27.5,-27.5
parent: 2
-- proto: PosterContrabandGreyTide
- entities:
- - uid: 25717
+ - uid: 15028
components:
- type: Transform
- pos: -22.5,24.5
+ pos: 62.5,-1.5
parent: 2
-- proto: PosterContrabandKudzu
- entities:
- - uid: 25718
+ - uid: 15029
components:
- type: Transform
- pos: -38.5,30.5
+ pos: 37.5,-36.5
parent: 2
-- proto: PosterContrabandLamarr
- entities:
- - uid: 25719
+ - uid: 15030
components:
- type: Transform
- pos: -53.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-63.5
parent: 2
-- proto: PosterContrabandLustyExomorph
- entities:
- - uid: 25720
+ - uid: 15031
components:
- type: Transform
- pos: -29.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-53.5
parent: 2
- - uid: 25721
+ - uid: 15032
components:
- type: Transform
- pos: -67.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,64.5
parent: 2
-- proto: PosterContrabandMissingGloves
- entities:
- - uid: 25722
+ - uid: 15033
components:
- type: Transform
- pos: -30.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-15.5
parent: 2
-- proto: PosterContrabandMoth
- entities:
- - uid: 25723
+ - uid: 15034
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 44.499996,-2.5
+ pos: -4.5,-56.5
parent: 2
- - uid: 25724
+ - uid: 15035
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -48.5,-36.5
+ pos: 13.5,-41.5
parent: 2
-- proto: PosterContrabandRebelsUnite
+- proto: DeployableBarrier
entities:
- - uid: 25725
+ - uid: 15036
components:
- type: Transform
- pos: 13.5,-2.5
+ pos: 67.5,6.5
parent: 2
-- proto: PosterContrabandRevolver
- entities:
- - uid: 25726
+ - uid: 15037
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,10.5
+ pos: 68.5,7.5
parent: 2
-- proto: PosterContrabandShamblersJuice
- entities:
- - uid: 25727
+ - uid: 15038
components:
- type: Transform
- pos: -53.5,-41.5
+ pos: 70.5,7.5
parent: 2
-- proto: PosterContrabandSpaceCola
- entities:
- - uid: 25728
+ - uid: 15039
components:
- type: Transform
- pos: -40.5,-60.5
+ pos: 8.5,-65.5
parent: 2
-- proto: PosterContrabandSpaceUp
- entities:
- - uid: 25729
+ - uid: 15040
components:
- type: Transform
- pos: -64.5,-48.5
+ pos: 9.5,-65.5
parent: 2
-- proto: PosterContrabandSunkist
- entities:
- - uid: 25730
+ - uid: 15041
components:
- type: Transform
- pos: -62.5,-48.5
+ pos: 65.5,6.5
parent: 2
-- proto: PosterContrabandVoteWeh
- entities:
- - uid: 25731
+ - uid: 15042
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -115.50001,33.5
+ pos: 9.5,-64.5
parent: 2
- - uid: 25732
+ - uid: 15043
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -115.5,31.5
+ pos: 8.5,-63.5
parent: 2
-- proto: PosterContrabandWehWatches
- entities:
- - uid: 25733
+ - uid: 15044
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: -115.5,32.5
+ pos: 9.5,-63.5
parent: 2
-- proto: PosterLegit12Gauge
+- proto: DeskBell
entities:
- - uid: 25734
+ - uid: 15045
components:
- type: Transform
- pos: -36.5,-69.5
+ pos: -14.452139,4.661233
parent: 2
- - uid: 25735
+ - uid: 15046
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,10.5
+ pos: -27.526104,38.624985
parent: 2
- - uid: 25736
+ - uid: 15047
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-37.5
+ pos: -23.478344,51.650402
parent: 2
- - uid: 25737
+ - uid: 15048
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,2.5
+ pos: -5.5,-28.5
parent: 2
-- proto: PosterLegit50thAnniversaryVintageReprint
- entities:
- - uid: 25738
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 15049
components:
- type: Transform
- pos: 7.5,-39.5
+ pos: 9.476555,32.663494
parent: 2
-- proto: PosterLegitBlessThisSpess
+- proto: DiceBag
entities:
- - uid: 25739
+ - uid: 15050
components:
- type: Transform
- pos: 7.5,-53.5
+ pos: -67.522575,-35.303078
parent: 2
-- proto: PosterLegitBuild
- entities:
- - uid: 25740
+ - uid: 15051
components:
- type: Transform
- pos: -57.5,43.5
+ pos: 34.408886,-31.340927
parent: 2
-- proto: PosterLegitCarbonDioxide
- entities:
- - uid: 25741
+ - type: Physics
+ canCollide: False
+ - uid: 15052
components:
- type: Transform
- pos: -51.5,31.5
+ pos: -31.629272,-60.51786
parent: 2
-- proto: PosterLegitCarpMount
+ - type: Physics
+ canCollide: False
+ - uid: 15053
+ components:
+ - type: Transform
+ pos: 84.805466,-0.436963
+ parent: 2
+- proto: DiseaseDiagnoser
entities:
- - uid: 25742
+ - uid: 15054
components:
- type: Transform
- pos: -66.5,-29.5
+ pos: 29.5,-65.5
parent: 2
-- proto: PosterLegitCleanliness
+- proto: DisposalBend
entities:
- - uid: 25743
+ - uid: 15055
components:
- type: Transform
- pos: 42.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,12.5
parent: 2
- - uid: 25744
+ - uid: 15056
components:
- type: Transform
- pos: -21.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,14.5
parent: 2
- - uid: 25745
+ - uid: 15057
components:
- type: Transform
- pos: 33.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,22.5
parent: 2
- - uid: 25746
+ - uid: 15058
components:
- type: Transform
- pos: -31.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,20.5
parent: 2
-- proto: PosterLegitDoNotQuestion
- entities:
- - uid: 25747
+ - uid: 15059
components:
- type: Transform
- pos: -11.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: 50.5,22.5
parent: 2
- - uid: 25748
+ - uid: 15060
components:
- type: Transform
- pos: -7.5,-62.5
+ pos: 50.5,4.5
parent: 2
- - uid: 25749
+ - uid: 15061
components:
- type: Transform
- pos: 54.5,-52.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,20.5
parent: 2
- - uid: 25750
+ - uid: 15062
components:
- type: Transform
- pos: 71.5,3.5
+ pos: -8.5,14.5
parent: 2
-- proto: PosterLegitEnlist
- entities:
- - uid: 25751
+ - uid: 15063
components:
- type: Transform
- pos: 39.5,-1.5
+ pos: 61.5,25.5
parent: 2
-- proto: PosterLegitGetYourLEGS
- entities:
- - uid: 25752
+ - uid: 15064
components:
- type: Transform
- pos: -26.5,-15.5
+ pos: -17.5,-20.5
parent: 2
-- proto: PosterLegitHelpOthers
- entities:
- - uid: 25753
+ - uid: 15065
components:
- type: Transform
- pos: 29.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-46.5
parent: 2
- - uid: 25754
+ - uid: 15066
components:
- type: Transform
- pos: 33.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,25.5
parent: 2
- - uid: 25755
+ - uid: 15067
components:
- type: Transform
- pos: 23.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-3.5
parent: 2
- - uid: 25756
+ - uid: 15068
components:
- type: Transform
- pos: 38.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,42.5
parent: 2
- - uid: 25757
+ - uid: 15069
components:
- type: Transform
- pos: 2.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,47.5
parent: 2
- - uid: 25758
+ - uid: 15070
components:
- type: Transform
- pos: 32.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-36.5
parent: 2
-- proto: PosterLegitHereForYourSafety
- entities:
- - uid: 25759
+ - uid: 15071
components:
- type: Transform
- pos: 60.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,23.5
parent: 2
-- proto: PosterLegitIan
- entities:
- - uid: 25760
+ - uid: 15072
components:
- type: Transform
- pos: -24.5,-70.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,27.5
parent: 2
- - uid: 25761
+ - uid: 15073
components:
- type: Transform
- pos: -15.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-47.5
parent: 2
-- proto: PosterLegitIonRifle
- entities:
- - uid: 25762
+ - uid: 15074
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,55.5
parent: 2
-- proto: PosterLegitLoveIan
- entities:
- - uid: 25763
+ - uid: 15075
components:
- type: Transform
- pos: -39.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,38.5
parent: 2
- - uid: 25764
+ - uid: 15076
components:
- type: Transform
- pos: -40.5,-59.5
+ pos: -2.5,30.5
parent: 2
- - uid: 25765
+ - uid: 15077
components:
- type: Transform
- pos: -32.5,-63.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,30.5
parent: 2
- - uid: 25766
+ - uid: 15078
components:
- type: Transform
- pos: -14.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-20.5
parent: 2
-- proto: PosterLegitMime
- entities:
- - uid: 25767
+ - uid: 15079
components:
- type: Transform
- pos: -4.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,26.5
parent: 2
-- proto: PosterLegitNanomichiAd
- entities:
- - uid: 25768
+ - uid: 15080
components:
- type: Transform
- pos: -34.5,64.5
+ pos: -24.5,33.5
parent: 2
-- proto: PosterLegitNanotrasenLogo
- entities:
- - uid: 25769
+ - uid: 15081
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,42.5
parent: 2
- - uid: 25770
+ - uid: 15082
components:
- type: Transform
- pos: 49.5,10.5
+ pos: 1.5,-58.5
parent: 2
- - uid: 25771
+ - uid: 15083
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-80.5
parent: 2
- - uid: 25772
+ - uid: 15084
components:
- type: Transform
- pos: -82.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,42.5
parent: 2
- - uid: 25773
+ - uid: 15085
components:
- type: Transform
- pos: -82.5,12.5
+ pos: 0.5,48.5
parent: 2
- - uid: 25774
+ - uid: 15086
components:
- type: Transform
- pos: -14.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-31.5
parent: 2
- - uid: 25775
+ - uid: 15087
components:
- type: Transform
- pos: -21.5,59.5
+ pos: 0.5,26.5
parent: 2
- - uid: 25776
+ - uid: 15088
components:
- type: Transform
- pos: 54.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 37.5,-27.5
parent: 2
- - uid: 25777
+ - uid: 15089
components:
- type: Transform
- pos: -20.5,-32.5
+ pos: 17.5,-25.5
parent: 2
- - uid: 25778
+ - uid: 15090
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 47.5,-12.5
+ pos: 33.5,-3.5
parent: 2
- - uid: 25779
+ - uid: 15091
components:
- type: Transform
- pos: -15.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,34.5
parent: 2
- - uid: 25780
+ - uid: 15092
components:
- type: Transform
- pos: -21.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,47.5
parent: 2
- - uid: 25781
+ - uid: 15093
components:
- type: Transform
- pos: -16.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-26.5
parent: 2
- - uid: 25782
+ - uid: 15094
components:
- type: Transform
- pos: 32.5,-1.5
+ pos: 25.5,61.5
parent: 2
- - uid: 25783
+ - uid: 15095
components:
- type: Transform
- pos: 1.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,57.5
parent: 2
- - uid: 25784
+ - uid: 15096
components:
- type: Transform
- pos: 42.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,41.5
parent: 2
- - uid: 25785
+ - uid: 15097
components:
- type: Transform
- pos: 34.5,-72.5
+ pos: -6.5,-26.5
parent: 2
- - uid: 25786
+ - uid: 15098
components:
- type: Transform
- pos: -7.5,25.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,57.5
parent: 2
- - uid: 25787
+ - uid: 15099
components:
- type: Transform
- pos: -16.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,52.5
parent: 2
- - uid: 25788
+ - uid: 15100
components:
- type: Transform
- pos: -2.5,-28.5
+ pos: -23.5,57.5
parent: 2
- - uid: 25789
+ - uid: 15101
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-32.5
+ pos: -53.5,26.5
parent: 2
- - uid: 25790
+ - uid: 15102
components:
- type: Transform
- pos: -31.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,26.5
parent: 2
- - uid: 25791
+ - uid: 15103
components:
- type: Transform
- pos: 25.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-19.5
parent: 2
- - uid: 25792
+ - uid: 15104
components:
- type: Transform
- pos: 66.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-39.5
parent: 2
- - uid: 25793
+ - uid: 15105
components:
- type: Transform
- pos: -16.5,-28.5
+ pos: -25.5,17.5
parent: 2
- - uid: 25794
+ - uid: 15106
components:
- type: Transform
- pos: 42.5,-58.5
+ pos: 36.5,-73.5
parent: 2
- - uid: 25795
+ - uid: 15107
components:
- type: Transform
- pos: -21.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,29.5
parent: 2
- - uid: 25796
+ - uid: 15108
components:
- type: Transform
- pos: 38.5,16.5
+ pos: 35.5,-19.5
parent: 2
- - uid: 25797
+ - uid: 15109
components:
- type: Transform
- pos: 40.5,-72.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-68.5
parent: 2
- - uid: 25798
+ - uid: 15110
components:
- type: Transform
- pos: 46.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,5.5
parent: 2
- - uid: 25799
+ - uid: 15111
components:
- type: Transform
- pos: 11.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-11.5
parent: 2
- - uid: 25800
+ - uid: 15112
components:
- type: Transform
- pos: -4.5,-62.5
+ pos: -22.5,-68.5
parent: 2
- - uid: 25801
+ - uid: 15113
components:
- type: Transform
- pos: 13.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-68.5
parent: 2
- - uid: 25802
+ - uid: 15114
components:
- type: Transform
- pos: -39.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,45.5
parent: 2
- - uid: 25803
+ - uid: 15115
components:
- type: Transform
- pos: 40.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,18.5
parent: 2
- - uid: 25804
+ - uid: 15116
components:
- type: Transform
- pos: 15.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -34.5,-13.5
parent: 2
- - uid: 25805
+ - uid: 15117
components:
- type: Transform
- pos: -14.5,12.5
+ pos: -57.5,18.5
parent: 2
- - uid: 25806
+ - uid: 15118
components:
- type: Transform
- pos: 19.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-13.5
parent: 2
- - uid: 25807
+ - uid: 15119
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-32.5
+ pos: -55.5,37.5
parent: 2
- - uid: 25808
+ - uid: 15120
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-10.5
parent: 2
- - uid: 25809
+ - uid: 15121
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,66.5
+ pos: -18.5,-1.5
parent: 2
-- proto: PosterLegitNoERP
- entities:
- - uid: 25810
+ - uid: 15122
components:
- type: Transform
- rot: 1.0182609457842773E-06 rad
- pos: 50.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-33.5
parent: 2
- - uid: 25811
+ - uid: 15123
components:
- type: Transform
- rot: 1.5707973450558423 rad
- pos: 87.50001,-25.5
+ rot: 3.141592653589793 rad
+ pos: 32.5,-23.5
parent: 2
- - uid: 25812
+ - uid: 15124
components:
- type: Transform
- pos: -54.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,39.5
parent: 2
-- proto: PosterLegitNTTGC
- entities:
- - uid: 25813
+ - uid: 15125
components:
- type: Transform
- pos: 64.5,-16.5
+ pos: -29.5,42.5
parent: 2
-- proto: PosterLegitObey
- entities:
- - uid: 25814
+ - uid: 15126
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 58.5,10.5
+ pos: -64.5,14.5
parent: 2
- - uid: 25815
+ - uid: 15127
components:
- type: Transform
- pos: 73.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-61.5
parent: 2
-- proto: PosterLegitPDAAd
- entities:
- - uid: 25816
+ - uid: 15128
components:
- type: Transform
- pos: -38.5,64.5
+ rot: 3.141592653589793 rad
+ pos: -57.5,17.5
parent: 2
-- proto: PosterLegitPeriodicTable
- entities:
- - uid: 25817
+ - uid: 15129
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 9.5,-32.5
+ pos: -20.5,-40.5
parent: 2
-- proto: PosterLegitReportCrimes
- entities:
- - uid: 25818
+ - uid: 15130
components:
- type: Transform
- pos: 52.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,38.5
parent: 2
- - uid: 25819
+ - uid: 15131
components:
- type: Transform
- pos: 52.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-7.5
parent: 2
- - uid: 25820
+ - uid: 15132
components:
- type: Transform
- pos: 34.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,61.5
parent: 2
- - uid: 25821
+ - uid: 15133
components:
- type: Transform
- pos: -27.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-23.5
parent: 2
- - uid: 25822
+ - uid: 15134
components:
- type: Transform
- pos: 10.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-31.5
parent: 2
- - uid: 25823
+ - uid: 15135
components:
- type: Transform
- pos: 35.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,-28.5
parent: 2
-- proto: PosterLegitSafetyInternals
- entities:
- - uid: 25824
+ - uid: 15136
components:
- type: Transform
- pos: -48.5,35.5
+ rot: 3.141592653589793 rad
+ pos: 35.5,-73.5
parent: 2
- - uid: 25825
+ - uid: 15137
components:
- type: Transform
- pos: 21.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-40.5
parent: 2
-- proto: PosterLegitSafetyMothPiping
- entities:
- - uid: 25826
+ - uid: 15138
components:
- type: Transform
- pos: -19.5,-60.5
+ pos: -30.5,23.5
parent: 2
-- proto: PosterLegitScience
- entities:
- - uid: 25827
+ - uid: 15139
components:
- type: Transform
- pos: -24.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,27.5
parent: 2
- - uid: 25828
+ - uid: 15140
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,-48.5
+ pos: -64.5,10.5
parent: 2
- - uid: 25829
+ - uid: 15141
components:
- type: Transform
- pos: -16.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,57.5
parent: 2
- - uid: 25830
+ - uid: 15142
components:
- type: Transform
- pos: -41.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -54.5,41.5
parent: 2
-- proto: PosterLegitSoftCapPopArt
- entities:
- - uid: 25831
+ - uid: 15143
components:
- type: Transform
- pos: -25.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 20.5,30.5
parent: 2
-- proto: PosterLegitWorkForAFuture
- entities:
- - uid: 25832
+ - uid: 15144
components:
- type: Transform
- pos: 19.5,-7.5
+ pos: 43.5,30.5
parent: 2
- - uid: 25833
+ - uid: 15145
components:
- type: Transform
- pos: -27.5,18.5
+ pos: 40.5,-22.5
parent: 2
-- proto: PosterMapDelta
- entities:
- - uid: 25834
+ - uid: 15146
components:
- type: Transform
- pos: -15.5,55.5
+ pos: 35.5,-68.5
parent: 2
- - uid: 25835
+ - uid: 15147
components:
- type: Transform
- pos: -3.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-11.5
parent: 2
- - uid: 25836
+ - uid: 15148
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.5,70.5
- parent: 2
-- proto: PottedPlant1
- entities:
- - uid: 25607
- components:
- - type: Transform
- pos: -49.5,-35.5
+ pos: 4.5,-19.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 25608
-- proto: PottedPlant10
- entities:
- - uid: 25837
+ - uid: 15149
components:
- type: Transform
- pos: -55.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,5.5
parent: 2
- - uid: 25838
+ - uid: 15150
components:
- type: Transform
- pos: -49.5,-42.5
+ pos: -29.5,-10.5
parent: 2
- - uid: 25839
+ - uid: 15151
components:
- type: Transform
- pos: -48.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-1.5
parent: 2
- - uid: 25840
+ - uid: 15152
components:
- type: Transform
- pos: -55.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,36.5
parent: 2
-- proto: PottedPlant15
- entities:
- - uid: 25841
+ - uid: 15153
components:
- type: Transform
- pos: -15.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,23.5
parent: 2
- - uid: 25842
+ - uid: 15154
components:
- type: Transform
- pos: -15.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-61.5
parent: 2
- - uid: 25843
+ - uid: 15155
components:
- type: Transform
- pos: 24.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-17.5
parent: 2
- - uid: 25844
+ - uid: 15156
components:
- type: Transform
- pos: 18.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,57.5
parent: 2
- - uid: 25845
+ - uid: 15157
components:
- type: Transform
- pos: 46.5,2.5
+ pos: -35.5,42.5
parent: 2
- - uid: 25846
+ - uid: 15158
components:
- type: Transform
- pos: 20.5,-5.5
+ pos: 55.5,-28.5
parent: 2
- - uid: 25847
+ - uid: 15159
components:
- type: Transform
- pos: 6.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-80.5
parent: 2
- - uid: 25848
+ - uid: 15160
components:
- type: Transform
- pos: 11.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-55.5
parent: 2
- - uid: 25849
+ - uid: 15161
components:
- type: Transform
- pos: 14.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-1.5
parent: 2
- - uid: 25850
+ - uid: 15162
components:
- type: Transform
- pos: 7.5,-48.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,-14.5
parent: 2
- - uid: 25851
+ - uid: 15163
components:
- type: Transform
- pos: 10.5,3.5
+ pos: -22.5,-19.5
parent: 2
- - uid: 25852
+ - uid: 15164
components:
- type: Transform
- pos: 13.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-17.5
parent: 2
- - uid: 25853
+ - uid: 15165
components:
- type: Transform
- pos: 21.5,-52.5
+ pos: -27.5,-14.5
parent: 2
-- proto: PottedPlant21
- entities:
- - uid: 25854
+ - uid: 15166
components:
- type: Transform
- pos: 71.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,55.5
parent: 2
-- proto: PottedPlant22
- entities:
- - uid: 25855
+ - uid: 15167
components:
- type: Transform
- pos: 91.50001,5.5000005
+ pos: -18.5,22.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 25856
-- proto: PottedPlantAlt2
- entities:
- - uid: 25857
+ - uid: 15168
components:
- type: Transform
- pos: 81.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-81.5
parent: 2
-- proto: PottedPlantAlt4
- entities:
- - uid: 25858
+ - uid: 15169
components:
- type: Transform
- pos: 81.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-80.5
parent: 2
-- proto: PottedPlantBioluminscent
- entities:
- - uid: 25474
+ - uid: 15170
components:
- type: Transform
- pos: 8.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-80.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 25475
-- proto: PottedPlantRandom
- entities:
- - uid: 25859
+ - uid: 15171
components:
- type: Transform
- pos: 50.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,39.5
parent: 2
- - uid: 25860
+ - uid: 15172
components:
- type: Transform
- pos: 64.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,45.5
parent: 2
- - uid: 25861
+ - uid: 15173
components:
- type: Transform
- pos: -59.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,14.5
parent: 2
- - uid: 25862
+ - uid: 15174
components:
- type: Transform
- pos: 97.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,2.5
parent: 2
- - uid: 25863
+ - uid: 15175
components:
- type: Transform
- pos: -33.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -57.5,2.5
parent: 2
- - uid: 25864
+ - uid: 15176
components:
- type: Transform
- pos: -54.5,20.5
+ pos: 17.5,23.5
parent: 2
- - uid: 25865
+ - uid: 15177
components:
- type: Transform
- pos: 55.5,-27.5
+ pos: 0.5,-63.5
parent: 2
- - uid: 25866
+ - uid: 15178
components:
- type: Transform
- pos: -16.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-57.5
parent: 2
- - uid: 25867
+ - uid: 15179
components:
- type: Transform
- pos: 56.5,-30.5
+ pos: 2.5,-50.5
parent: 2
- - uid: 25868
+ - uid: 15180
components:
- type: Transform
- pos: -8.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-50.5
parent: 2
- - uid: 25869
+ - uid: 15181
components:
- type: Transform
- pos: -34.5,50.5
+ pos: -31.5,53.5
parent: 2
- - uid: 25870
+ - uid: 15182
components:
- type: Transform
- pos: -5.5,34.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-64.5
parent: 2
- - uid: 25871
+ - uid: 15183
components:
- type: Transform
- pos: -28.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-63.5
parent: 2
- - uid: 25872
+ - uid: 15184
components:
- type: Transform
- pos: -4.5,28.5
+ pos: -52.5,10.5
parent: 2
- - uid: 25873
+- proto: DisposalJunction
+ entities:
+ - uid: 15185
components:
- type: Transform
- pos: -36.5,50.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-7.5
parent: 2
- - uid: 25874
+ - uid: 15186
components:
- type: Transform
- pos: 63.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,37.5
parent: 2
- - uid: 25875
+ - uid: 15187
components:
- type: Transform
- pos: -12.5,96.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-19.5
parent: 2
- - uid: 25876
+ - uid: 15188
components:
- type: Transform
- pos: 63.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,20.5
parent: 2
- - uid: 25877
+ - uid: 15189
components:
- type: Transform
- pos: -12.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-3.5
parent: 2
- - uid: 25878
+ - uid: 15190
components:
- type: Transform
- pos: -7.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,20.5
parent: 2
- - uid: 25879
+ - uid: 15191
components:
- type: Transform
- pos: -7.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,61.5
parent: 2
- - uid: 25880
+ - uid: 15192
components:
- type: Transform
- pos: -7.5,-81.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-25.5
parent: 2
- - uid: 25881
+ - uid: 15193
components:
- type: Transform
- pos: -29.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-33.5
parent: 2
- - uid: 25882
+ - uid: 15194
components:
- type: Transform
- pos: -10.5,96.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-49.5
parent: 2
- - uid: 25883
+ - uid: 15195
components:
- type: Transform
- pos: -30.5,96.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,57.5
parent: 2
- - uid: 25884
+ - uid: 15196
components:
- type: Transform
- pos: -10.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-58.5
parent: 2
- - uid: 25885
+ - uid: 15197
components:
- type: Transform
- pos: -22.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,14.5
parent: 2
- - uid: 25886
+ - uid: 15198
components:
- type: Transform
- pos: -75.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-53.5
parent: 2
- - uid: 25887
+ - uid: 15199
components:
- type: Transform
- pos: 16.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,57.5
parent: 2
- - uid: 25888
+ - uid: 15200
components:
- type: Transform
- pos: 2.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 35.5,-22.5
parent: 2
- - uid: 25889
+ - uid: 15201
components:
- type: Transform
- pos: -14.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,47.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25890
+ - uid: 15202
components:
- type: Transform
- pos: -10.5,-70.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,17.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25891
+ - uid: 15203
components:
- type: Transform
- pos: -21.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,5.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25892
+ - uid: 15204
components:
- type: Transform
- pos: 55.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,33.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25893
+ - uid: 15205
components:
- type: Transform
- pos: 10.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,36.5
parent: 2
- - uid: 25894
+ - uid: 15206
components:
- type: Transform
- pos: -1.5,41.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-1.5
parent: 2
- - uid: 25895
+ - uid: 15207
components:
- type: Transform
- pos: -27.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,57.5
parent: 2
- - uid: 25896
+ - uid: 15208
components:
- type: Transform
- pos: 31.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-10.5
parent: 2
- - uid: 25897
+ - uid: 15209
components:
- type: Transform
- pos: -15.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-10.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25898
->>>>>>> master
+ - uid: 15210
components:
- type: Transform
-<<<<<<< HEAD
- pos: 71.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,10.5
parent: 2
-- proto: MinimoogInstrument
- entities:
- - uid: 26538
+ - uid: 15211
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 44.5,-55.5
+ pos: 36.5,-3.5
parent: 2
- - uid: 26539
+ - uid: 15212
components:
- type: Transform
- pos: 70.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-10.5
parent: 2
-- proto: Mirror
- entities:
- - uid: 26540
+ - uid: 15213
components:
- type: Transform
- pos: -50.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,5.5
parent: 2
- - uid: 26541
+ - uid: 15214
components:
- type: Transform
- pos: -11.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,57.5
parent: 2
- - uid: 26542
+ - uid: 15215
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 25.5,-60.5
+ pos: -22.5,-33.5
parent: 2
- - uid: 26543
+- proto: DisposalJunctionFlipped
+ entities:
+ - uid: 15216
components:
- type: Transform
- pos: 7.5,-38.5
+ pos: 47.5,12.5
parent: 2
- - uid: 26544
+ - uid: 15217
components:
- type: Transform
- pos: -5.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-36.5
parent: 2
- - uid: 26545
+ - uid: 15218
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-15.5
+ pos: 47.5,4.5
parent: 2
- - uid: 26546
+ - uid: 15219
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,36.5
parent: 2
- - uid: 26547
+ - uid: 15220
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,45.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,42.5
parent: 2
- - uid: 26548
+ - uid: 15221
components:
- type: Transform
- pos: 39.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-44.5
parent: 2
- - uid: 26549
+ - uid: 15222
components:
- type: Transform
- pos: -5.5,35.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,14.5
parent: 2
- - uid: 26550
+ - uid: 15223
components:
- type: Transform
- pos: 25.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-33.5
parent: 2
- - uid: 26551
+ - uid: 15224
components:
- type: Transform
- pos: -5.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,36.5
parent: 2
- - uid: 26552
+ - uid: 15225
components:
- type: Transform
- pos: -51.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-25.5
parent: 2
- - uid: 26553
+ - uid: 15226
components:
- type: Transform
- pos: 30.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-39.5
parent: 2
- - uid: 26554
+ - uid: 15227
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-51.5
+ pos: -27.5,57.5
parent: 2
- - uid: 26555
+ - uid: 15228
components:
- type: Transform
- pos: 13.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,34.5
parent: 2
-- proto: ModularGrenade
- entities:
- - uid: 26556
+ - uid: 15229
components:
- type: Transform
- pos: 2.4978142,-31.385086
+ rot: -1.5707963267948966 rad
+ pos: 24.5,30.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26557
+ - uid: 15230
components:
- type: Transform
- pos: 2.4978142,-31.385086
+ rot: 3.141592653589793 rad
+ pos: -53.5,17.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26558
+ - uid: 15231
components:
- type: Transform
- pos: 2.4978142,-31.385086
+ rot: 3.141592653589793 rad
+ pos: -53.5,14.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26559
+ - uid: 15232
components:
- type: Transform
- pos: 2.4978142,-31.385086
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-22.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26560
+ - uid: 15233
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.621467,-47.40556
+ rot: 3.141592653589793 rad
+ pos: -54.5,37.5
parent: 2
- - uid: 26561
+ - uid: 15234
components:
- type: Transform
- pos: 2.4978142,-31.385086
+ rot: 3.141592653589793 rad
+ pos: 0.5,-64.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: MopBucket
+- proto: DisposalPipe
entities:
- - uid: 26562
+ - uid: 15235
components:
- type: Transform
- pos: 22.477804,-17.365536
+ pos: 47.5,14.5
parent: 2
- - uid: 26563
+ - uid: 15236
components:
- type: Transform
- pos: -52.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-10.5
parent: 2
-- proto: MopBucketFull
- entities:
- - uid: 26564
+ - uid: 15237
components:
- type: Transform
- pos: -7.5,46.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-11.5
parent: 2
- - uid: 26565
+ - uid: 15238
components:
- type: Transform
- pos: -77.5,-29.5
+ pos: 47.5,1.5
parent: 2
- - uid: 26566
+ - uid: 15239
components:
- type: Transform
- pos: 79.47369,5.572139
+ rot: 1.5707963267948966 rad
+ pos: -17.5,14.5
parent: 2
-- proto: MopItem
- entities:
- - uid: 26567
+ - uid: 15240
components:
- type: Transform
- pos: -7.4661264,46.474117
+ pos: 47.5,7.5
parent: 2
- - uid: 26568
+ - uid: 15241
components:
- type: Transform
- pos: 3.517602,-48.53627
+ pos: 43.5,19.5
parent: 2
- - uid: 26569
+ - uid: 15242
components:
- type: Transform
- pos: 0.16766292,54.493546
+ rot: -1.5707963267948966 rad
+ pos: 57.5,22.5
parent: 2
- - uid: 26570
+ - uid: 15243
components:
- type: Transform
- pos: 0.53458077,54.493546
+ rot: 3.141592653589793 rad
+ pos: -18.5,-14.5
parent: 2
- - uid: 26571
+ - uid: 15244
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.41119,5.3846393
+ rot: 3.141592653589793 rad
+ pos: -18.5,-9.5
parent: 2
- - uid: 26572
+ - uid: 15245
components:
- type: Transform
- pos: -77.562874,-29.50979
+ rot: 3.141592653589793 rad
+ pos: -30.5,42.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26573
+ - uid: 15246
components:
- type: Transform
- pos: -52.5,-37.5
+ pos: 47.5,8.5
parent: 2
- - uid: 26574
+ - uid: 15247
components:
- type: Transform
- pos: 22.477804,-17.490536
+ pos: 47.5,11.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: Morgue
- entities:
- - uid: 26575
+ - uid: 15248
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-51.5
+ pos: 47.5,13.5
parent: 2
- - uid: 26576
+ - uid: 15249
components:
- type: Transform
- pos: 9.5,-48.5
+ pos: 47.5,5.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14673
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26577
+ - uid: 15250
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,-61.5
+ pos: -30.5,43.5
parent: 2
- - uid: 26578
+ - uid: 15251
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,44.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26579
+ - uid: 15252
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.5,-65.5
+ pos: -30.5,37.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26580
+ - uid: 15253
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-63.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-8.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26581
+ - uid: 15254
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-61.5
+ pos: 47.5,9.5
parent: 2
- - uid: 26582
+ - uid: 15255
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,12.5
parent: 2
- - uid: 26583
+ - uid: 15256
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -23.5,-73.5
+ pos: -32.5,37.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26584
+ - uid: 15257
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,22.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26585
+ - uid: 15258
components:
- type: Transform
- pos: 8.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 55.5,22.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26586
+ - uid: 15259
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,22.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26587
+ - uid: 15260
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-61.5
+ pos: -9.5,29.5
parent: 2
- - uid: 26588
+ - uid: 15261
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,22.5
parent: 2
- - uid: 26589
+ - uid: 15262
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,40.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26590
+ - uid: 15263
components:
- type: Transform
- pos: 10.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,37.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26591
+ - uid: 15264
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,5.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26592
+ - uid: 15265
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-49.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26593
+ - uid: 15266
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,5.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26594
+ - uid: 15267
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,36.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 26595
+ - uid: 15268
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-52.5
+ pos: -31.5,46.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 9.368679
- - 35.24408
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: MousetrapArmed
- entities:
- - uid: 26596
+ - uid: 15269
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -48.561108,47.6237
+ pos: -34.5,37.5
parent: 2
- - uid: 26597
+ - uid: 15270
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5169544,33.6237
+ rot: -1.5707963267948966 rad
+ pos: 38.5,5.5
parent: 2
- - type: StepTriggerActive
- - uid: 26598
+ - uid: 15271
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.482983,47.6237
+ pos: 47.5,10.5
parent: 2
-- proto: Multitool
- entities:
- - uid: 26599
+ - uid: 15272
components:
- type: Transform
- pos: 50.207417,5.437244
+ rot: 3.141592653589793 rad
+ pos: -5.5,37.5
parent: 2
- - uid: 26600
+ - uid: 15273
components:
- type: Transform
- pos: -44.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-49.5
parent: 2
- - uid: 26601
+ - uid: 15274
components:
- type: Transform
- pos: -9.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-49.5
parent: 2
- - uid: 26602
+ - uid: 15275
components:
- type: Transform
- pos: -5.53388,17.811007
+ rot: -1.5707963267948966 rad
+ pos: 41.5,5.5
parent: 2
- - uid: 26603
+ - uid: 15276
components:
- type: Transform
- pos: -56.627308,-13.403177
+ rot: -1.5707963267948966 rad
+ pos: 37.5,5.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26604
+ - uid: 15277
components:
- type: Transform
- pos: -26.474976,-47.36569
+ rot: -1.5707963267948966 rad
+ pos: 35.5,5.5
parent: 2
- - uid: 26605
+ - uid: 15278
components:
- type: Transform
- pos: -74.57158,-8.273829
+ rot: -1.5707963267948966 rad
+ pos: 33.5,5.5
parent: 2
- - uid: 26606
+ - uid: 15279
components:
- type: Transform
- pos: -36.5,-75.5
+ pos: 47.5,17.5
parent: 2
- - uid: 26607
+ - uid: 15280
components:
- type: Transform
- pos: -37.6697,8.6269455
+ rot: 3.141592653589793 rad
+ pos: -18.5,-17.5
parent: 2
- - uid: 26608
+ - uid: 15281
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.467197,-41.43791
+ pos: 46.5,20.5
parent: 2
- - uid: 26609
+ - uid: 15282
components:
- type: Transform
- pos: -61.506416,13.606666
+ rot: 3.141592653589793 rad
+ pos: -18.5,-19.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26610
+ - uid: 15283
components:
- type: Transform
- pos: 20.465109,21.47138
+ rot: 3.141592653589793 rad
+ pos: -18.5,-18.5
parent: 2
-- proto: MusicalLungInstrument
- entities:
- - uid: 26611
+ - uid: 15284
components:
- type: Transform
- pos: -6.5073404,53.184387
+ rot: -1.5707963267948966 rad
+ pos: 48.5,12.5
parent: 2
-- proto: NetworkConfigurator
- entities:
- - uid: 26612
+ - uid: 15285
components:
- type: Transform
- pos: -25.317003,-43.32779
+ rot: -1.5707963267948966 rad
+ pos: 44.5,20.5
parent: 2
-- proto: NitrogenCanister
- entities:
- - uid: 26613
+ - uid: 15286
components:
- type: Transform
- pos: 63.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,37.5
parent: 2
- - uid: 26614
+ - uid: 15287
components:
- type: Transform
- pos: -28.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,43.5
parent: 2
- - uid: 26615
+ - uid: 15288
components:
- type: Transform
- pos: -70.5,45.5
+ rot: 3.141592653589793 rad
+ pos: 45.5,17.5
parent: 2
- - uid: 26616
+ - uid: 15289
components:
- type: Transform
- pos: -28.5,-49.5
+ rot: 3.141592653589793 rad
+ pos: 45.5,16.5
parent: 2
- - uid: 26617
+ - uid: 15290
components:
- type: Transform
- pos: -7.5,-10.5
+ pos: 47.5,18.5
parent: 2
- - uid: 26618
+ - uid: 15291
components:
- type: Transform
- pos: 19.5,28.5
+ pos: 47.5,0.5
parent: 2
- - uid: 26619
+ - uid: 15292
components:
- type: Transform
- pos: 36.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-15.5
parent: 2
- - uid: 26620
+ - uid: 15293
components:
- type: Transform
- pos: -120.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 47.5,-0.5
parent: 2
- - uid: 26621
+ - uid: 15294
components:
- type: Transform
- pos: 91.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-12.5
parent: 2
- - uid: 26622
+ - uid: 15295
components:
- type: Transform
- pos: -36.5,-51.5
+ pos: 47.5,19.5
parent: 2
-- proto: NitrogenTankFilled
- entities:
- - uid: 26623
+ - uid: 15296
components:
- type: Transform
- pos: -77.649734,-18.332254
+ rot: -1.5707963267948966 rad
+ pos: 40.5,5.5
parent: 2
- - uid: 26624
+ - uid: 15297
components:
- type: Transform
- pos: -67.52232,-27.640682
+ rot: 3.141592653589793 rad
+ pos: 16.5,-20.5
parent: 2
- - uid: 26625
+ - uid: 15298
components:
- type: Transform
- pos: -67.65508,-27.434193
+ pos: 47.5,15.5
parent: 2
- - uid: 26626
+ - uid: 15299
components:
- type: Transform
- pos: -77.516975,-18.553493
+ pos: 47.5,6.5
parent: 2
- - uid: 26627
+ - uid: 15300
components:
- type: Transform
- pos: -59.63059,-45.406506
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-49.5
parent: 2
- - uid: 26628
+ - uid: 15301
components:
- type: Transform
- pos: -59.51258,-45.583496
+ rot: 3.141592653589793 rad
+ pos: 45.5,19.5
parent: 2
-- proto: NitrousOxideCanister
- entities:
- - uid: 26629
+ - uid: 15302
components:
- type: Transform
- pos: -48.5,25.5
+ pos: -31.5,44.5
parent: 2
- - uid: 26630
+ - uid: 15303
components:
- type: Transform
- pos: 78.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,41.5
parent: 2
- - uid: 26631
+ - uid: 15304
components:
- type: Transform
- pos: -48.5,24.5
+ pos: -31.5,45.5
parent: 2
-- proto: NitrousOxideTankFilled
- entities:
- - uid: 26632
+ - uid: 15305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,4.5
+ parent: 2
+ - uid: 15306
components:
- type: Transform
- pos: 33.549213,-46.450466
+ rot: 1.5707963267948966 rad
+ pos: -11.5,14.5
parent: 2
-- proto: NodeScanner
- entities:
- - uid: 26633
+ - uid: 15307
components:
- type: Transform
- pos: -9.606294,-31.675497
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-49.5
parent: 2
- - uid: 26634
+ - uid: 15308
components:
- type: Transform
- pos: -25.606216,-28.370153
+ pos: 47.5,3.5
parent: 2
-- proto: NoticeBoard
- entities:
- - uid: 26635
+ - uid: 15309
components:
- type: Transform
- pos: -65.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-13.5
parent: 2
- - uid: 26636
+ - uid: 15310
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-16.5
parent: 2
- - uid: 26637
+ - uid: 15311
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,2.5
+ pos: -31.5,47.5
parent: 2
- - uid: 26638
+ - uid: 15312
components:
- type: Transform
- pos: 44.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,14.5
parent: 2
- - uid: 26639
+ - uid: 15313
components:
- type: Transform
- pos: 10.5,-32.5
+ pos: -24.5,-43.5
parent: 2
- - uid: 26640
+ - uid: 15314
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-16.5
+ pos: 59.5,24.5
parent: 2
- - uid: 26641
+ - uid: 15315
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -30.5,-39.5
+ pos: -45.5,41.5
parent: 2
-- proto: NTFlag
- entities:
- - uid: 26642
+ - uid: 15316
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 47.5,-1.5
parent: 2
-- proto: NuclearBomb
- entities:
- - uid: 26643
+ - uid: 15317
components:
- type: Transform
- pos: 24.5,18.5
- parent: 2
-- proto: NuclearBombKeg
- entities:
- - uid: 26644
-=======
- pos: -11.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 47.5,-2.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25899
+ - uid: 15318
components:
- type: Transform
- pos: 10.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,4.5
parent: 2
- - uid: 25900
+ - uid: 15319
components:
- type: Transform
- pos: -6.5,8.5
+ pos: 47.5,16.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25901
+ - uid: 15320
components:
- type: Transform
- pos: -13.5,7.5
+ pos: 43.5,18.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25902
+ - uid: 15321
components:
- type: Transform
- pos: -13.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,30.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25903
+ - uid: 15322
components:
- type: Transform
- pos: 14.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 45.5,18.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25904
+ - uid: 15323
components:
- type: Transform
- pos: 2.5,37.5
+ pos: 47.5,2.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25905
+ - uid: 15324
components:
- type: Transform
- pos: 31.5,-10.5
+ pos: -31.5,48.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25906
+ - uid: 15325
components:
- type: Transform
- pos: 31.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-34.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25907
+ - uid: 15326
components:
- type: Transform
- pos: 28.5,-31.5
+ pos: 59.5,23.5
parent: 2
- - uid: 25908
+ - uid: 15327
components:
- type: Transform
- pos: 18.5,-48.5
+ pos: -41.5,45.5
parent: 2
- - uid: 25909
+ - uid: 15328
components:
- type: Transform
- pos: 16.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-22.5
parent: 2
- - uid: 25910
+ - uid: 15329
components:
- type: Transform
- pos: 4.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,23.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25911
+ - uid: 15330
components:
- type: Transform
- pos: -10.5,-63.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-55.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25912
+ - uid: 15331
components:
- type: Transform
- pos: 44.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-28.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25913
+ - uid: 15332
components:
- type: Transform
- pos: -20.5,-67.5
+ pos: -30.5,16.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25914
+ - uid: 15333
components:
- type: Transform
- pos: -8.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,53.5
parent: 2
- - uid: 25915
+ - uid: 15334
components:
- type: Transform
- pos: -7.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,54.5
parent: 2
- - uid: 25916
+ - uid: 15335
components:
- type: Transform
- pos: -54.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,1.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25917
+ - uid: 15336
components:
- type: Transform
- pos: -22.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-3.5
parent: 2
- - uid: 25918
+ - uid: 15337
components:
- type: Transform
- pos: 34.5,-71.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,38.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25919
+ - uid: 15338
components:
- type: Transform
- pos: 30.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,48.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25920
+ - uid: 15339
components:
- type: Transform
- pos: 29.5,-69.5
+ pos: 9.5,58.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25921
+ - uid: 15340
components:
- type: Transform
- pos: -35.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-69.5
parent: 2
- - uid: 25922
+ - uid: 15341
components:
- type: Transform
- pos: 34.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,61.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25923
+ - uid: 15342
components:
- type: Transform
- pos: 6.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-51.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25924
+ - uid: 15343
components:
- type: Transform
- pos: -1.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-51.5
parent: 2
- - uid: 25925
+ - uid: 15344
components:
- type: Transform
- pos: -10.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-35.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25926
+ - uid: 15345
components:
- type: Transform
- pos: -20.5,39.5
+ pos: -27.5,60.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25927
+ - uid: 15346
components:
- type: Transform
- pos: -34.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,10.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25928
+ - uid: 15347
components:
- type: Transform
- pos: -10.5,-75.5
+ pos: -8.5,-30.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25929
+ - uid: 15348
components:
- type: Transform
- pos: 11.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,22.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25930
+ - uid: 15349
components:
- type: Transform
- pos: 20.5,-44.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,23.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25931
+ - uid: 15350
components:
- type: Transform
- pos: 24.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,14.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25932
+ - uid: 15351
components:
- type: Transform
- pos: -9.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-68.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25933
+ - uid: 15352
components:
- type: Transform
- pos: 8.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -54.5,14.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25934
+ - uid: 15353
components:
- type: Transform
- pos: 14.5,2.5
+ pos: -8.5,-29.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25935
+ - uid: 15354
components:
- type: Transform
- pos: -20.5,43.5
+ pos: -45.5,22.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25936
+ - uid: 15355
components:
- type: Transform
- pos: 8.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,42.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25937
+ - uid: 15356
components:
- type: Transform
- pos: 2.5,-42.5
+ pos: -30.5,13.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25938
+ - uid: 15357
components:
- type: Transform
- pos: -38.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-28.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25939
+ - uid: 15358
components:
- type: Transform
- pos: -75.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-10.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25940
+ - uid: 15359
components:
- type: Transform
- pos: -12.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,40.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25941
+ - uid: 15360
components:
- type: Transform
- pos: -58.5,-17.5
+ pos: -41.5,47.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25942
+ - uid: 15361
components:
- type: Transform
- pos: -31.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,22.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25943
+ - uid: 15362
components:
- type: Transform
- pos: -34.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,57.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25944
+ - uid: 15363
components:
- type: Transform
- pos: 26.5,-57.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,35.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25945
+ - uid: 15364
components:
- type: Transform
- pos: 9.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,23.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25946
+ - uid: 15365
components:
- type: Transform
- pos: 11.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-40.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25947
+ - uid: 15366
components:
- type: Transform
- pos: 11.5,34.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-60.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25948
+ - uid: 15367
components:
- type: Transform
- pos: -60.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-59.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25949
+ - uid: 15368
components:
- type: Transform
- pos: 24.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-39.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25950
+ - uid: 15369
components:
- type: Transform
- pos: 43.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,23.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25951
+ - uid: 15370
components:
- type: Transform
- pos: -12.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,56.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25952
+ - uid: 15371
components:
- type: Transform
- pos: 28.5,-54.5
+ pos: -9.5,-31.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25953
+ - uid: 15372
components:
- type: Transform
- pos: 26.5,-52.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,42.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25954
+ - uid: 15373
components:
- type: Transform
- pos: -58.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,55.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25955
+ - uid: 15374
components:
- type: Transform
- pos: 43.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-55.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25956
+ - uid: 15375
components:
- type: Transform
- pos: 19.5,72.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-7.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25957
+ - uid: 15376
components:
- type: Transform
- pos: -65.5,16.5
+ pos: -9.5,28.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25958
+ - uid: 15377
components:
- type: Transform
- pos: -62.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,14.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25959
+ - uid: 15378
components:
- type: Transform
- pos: -22.5,-63.5
+ pos: -9.5,27.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25960
+ - uid: 15379
components:
- type: Transform
- pos: 3.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,57.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25961
+ - uid: 15380
components:
- type: Transform
- pos: -49.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,30.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25962
+ - uid: 15381
components:
- type: Transform
- pos: -25.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,30.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25963
+ - uid: 15382
components:
- type: Transform
- pos: -49.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,30.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25964
+ - uid: 15383
components:
- type: Transform
- pos: -45.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,14.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25965
+ - uid: 15384
components:
- type: Transform
- pos: -15.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,56.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25966
+ - uid: 15385
components:
- type: Transform
- pos: -15.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-55.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25967
+ - uid: 15386
components:
- type: Transform
- pos: -44.5,-29.5
+ pos: 50.5,21.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25968
+ - uid: 15387
components:
- type: Transform
- pos: 41.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-36.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25969
+ - uid: 15388
components:
- type: Transform
- pos: -4.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,5.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25970
+ - uid: 15389
components:
- type: Transform
- pos: -39.5,63.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-48.5
parent: 2
- - uid: 25971
+ - uid: 15390
components:
- type: Transform
- pos: 23.5,72.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-49.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25972
+ - uid: 15391
components:
- type: Transform
- pos: 40.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-49.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25973
+ - uid: 15392
components:
- type: Transform
- pos: -59.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-28.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25974
+ - uid: 15393
components:
- type: Transform
- pos: -45.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-50.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25975
+ - uid: 15394
components:
- type: Transform
- pos: -51.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,33.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25976
+ - uid: 15395
components:
- type: Transform
- pos: -58.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-1.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25977
+ - uid: 15396
components:
- type: Transform
- pos: 44.5,-54.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-55.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25978
+ - uid: 15397
components:
- type: Transform
- pos: 41.5,-55.5
+ pos: 37.5,-0.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25979
+ - uid: 15398
components:
- type: Transform
- pos: 53.5,-52.5
+ pos: -30.5,12.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25980
+ - uid: 15399
components:
- type: Transform
- pos: -22.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-28.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25981
+ - uid: 15400
components:
- type: Transform
- pos: 2.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,23.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25982
+ - uid: 15401
components:
- type: Transform
- pos: 29.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,23.5
parent: 2
- - uid: 25983
+ - uid: 15402
components:
- type: Transform
- pos: 7.5,2.5
+ pos: -11.5,-6.5
parent: 2
- - uid: 25984
+ - uid: 15403
components:
- type: Transform
- pos: 39.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,49.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25985
+ - uid: 15404
components:
- type: Transform
- pos: 91.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-1.5
parent: 2
- - uid: 25986
+ - uid: 15405
components:
- type: Transform
- pos: -38.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,29.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25987
+ - uid: 15406
components:
- type: Transform
- pos: -36.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,23.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25988
+ - uid: 15407
components:
- type: Transform
- pos: -32.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,41.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25989
+ - uid: 15408
components:
- type: Transform
- pos: -16.5,53.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,31.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25990
+ - uid: 15409
components:
- type: Transform
- pos: -6.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,33.5
parent: 2
- - uid: 25991
+ - uid: 15410
components:
- type: Transform
- pos: -2.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,33.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25992
+ - uid: 15411
components:
- type: Transform
- pos: 27.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-49.5
parent: 2
- - uid: 25993
+ - uid: 15412
components:
- type: Transform
- pos: -2.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,23.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25994
+ - uid: 15413
components:
- type: Transform
- pos: -32.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,41.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25995
+ - uid: 15414
components:
- type: Transform
- pos: 47.5,-23.5
+ pos: -30.5,10.5
parent: 2
- - uid: 25996
+ - uid: 15415
components:
- type: Transform
- pos: 59.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-28.5
parent: 2
- - uid: 25997
+ - uid: 15416
components:
- type: Transform
- pos: 74.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-30.5
parent: 2
- - uid: 25998
+ - uid: 15417
components:
- type: Transform
- pos: 35.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-8.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 25999
+ - uid: 15418
components:
- type: Transform
- pos: -49.5,-17.5
+ pos: -24.5,-46.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26000
+ - uid: 15419
components:
- type: Transform
- pos: 36.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,41.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26001
+ - uid: 15420
components:
- type: Transform
- pos: 45.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-33.5
parent: 2
- - uid: 26002
+ - uid: 15421
components:
- type: Transform
- pos: 22.5,-5.5
+ pos: -24.5,-45.5
parent: 2
- - uid: 26003
+ - uid: 15422
components:
- type: Transform
- pos: -36.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-49.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26004
+ - uid: 15423
components:
- type: Transform
- pos: 26.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,36.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26005
+ - uid: 15424
components:
- type: Transform
- pos: -25.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,54.5
parent: 2
- - uid: 26006
+ - uid: 15425
components:
- type: Transform
- pos: -20.5,53.5
+ pos: -42.5,-30.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26007
+ - uid: 15426
components:
- type: Transform
- pos: 26.5,2.5
+ pos: -38.5,-30.5
parent: 2
- - uid: 26008
+ - uid: 15427
components:
- type: Transform
- pos: -2.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,32.5
parent: 2
- - uid: 26009
+ - uid: 15428
components:
- type: Transform
- pos: 27.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,30.5
parent: 2
- - uid: 26010
+ - uid: 15429
components:
- type: Transform
- pos: 45.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,20.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26011
+ - uid: 15430
components:
- type: Transform
- pos: 5.5,31.5
+ pos: -27.5,-16.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26012
+ - uid: 15431
components:
- type: Transform
- pos: 49.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-0.5
parent: 2
- - uid: 26013
+ - uid: 15432
components:
- type: Transform
- pos: 38.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,14.5
parent: 2
- - uid: 26014
->>>>>>> master
+ - uid: 15433
components:
- type: Transform
-<<<<<<< HEAD
- pos: -1.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,22.5
parent: 2
-- proto: OcarinaInstrument
- entities:
- - uid: 26645
+ - uid: 15434
components:
- type: Transform
- pos: -6.4073434,52.61495
+ rot: -1.5707963267948966 rad
+ pos: 53.5,22.5
parent: 2
-- proto: Ointment
- entities:
- - uid: 26646
+ - uid: 15435
components:
- type: Transform
- pos: -31.3629,-42.28948
+ rot: 3.141592653589793 rad
+ pos: -31.5,50.5
parent: 2
- - uid: 26647
+ - uid: 15436
components:
- type: Transform
- pos: 26.607332,-24.483286
+ rot: 3.141592653589793 rad
+ pos: 8.5,-28.5
parent: 2
- - uid: 26648
+ - uid: 15437
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.684036,-5.195931
+ rot: 3.141592653589793 rad
+ pos: 17.5,-44.5
parent: 2
-- proto: OperatingTable
- entities:
- - uid: 26649
+ - uid: 15438
components:
- type: Transform
- pos: -0.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-1.5
parent: 2
- - uid: 26650
+ - uid: 15439
components:
- type: Transform
- pos: 6.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,23.5
parent: 2
- - uid: 26651
+ - uid: 15440
components:
- type: Transform
- pos: 33.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,42.5
parent: 2
- - uid: 26652
+ - uid: 15441
components:
- type: Transform
- pos: 33.5,-47.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,57.5
parent: 2
- - uid: 26653
+ - uid: 15442
components:
- type: Transform
- pos: 46.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,36.5
parent: 2
-- proto: OreBag
- entities:
- - uid: 26654
+ - uid: 15443
components:
- type: Transform
- pos: 30.5,32.5
+ pos: 21.5,8.5
parent: 2
-- proto: OreProcessor
- entities:
- - uid: 26655
+ - uid: 15444
components:
- type: Transform
- pos: 34.5,32.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,4.5
parent: 2
-- proto: OrganDionaStomach
- entities:
- - uid: 26656
+ - uid: 15445
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 43.42473,-42.512604
+ pos: 35.5,-3.5
parent: 2
-- proto: OrganHumanKidneys
- entities:
- - uid: 14860
+ - uid: 15446
components:
- type: Transform
- parent: 14859
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: OxygenCanister
- entities:
- - uid: 26657
+ rot: 1.5707963267948966 rad
+ pos: -62.5,14.5
+ parent: 2
+ - uid: 15447
components:
- type: Transform
- pos: 62.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,48.5
parent: 2
- - uid: 26658
+ - uid: 15448
components:
- type: Transform
- pos: 32.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,61.5
parent: 2
- - uid: 26659
+ - uid: 15449
components:
- type: Transform
- pos: -29.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-27.5
parent: 2
- - uid: 26660
+ - uid: 15450
components:
- type: Transform
- pos: -76.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-43.5
parent: 2
- - uid: 26661
+ - uid: 15451
components:
- type: Transform
- pos: -41.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,23.5
parent: 2
- - uid: 26662
+ - uid: 15452
components:
- type: Transform
- pos: 56.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,57.5
parent: 2
- - uid: 26663
+ - uid: 15453
components:
- type: Transform
- pos: -47.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,36.5
parent: 2
- - uid: 26664
+ - uid: 15454
components:
- type: Transform
- pos: 19.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,23.5
parent: 2
- - uid: 26665
+ - uid: 15455
components:
- type: Transform
- pos: -31.5,63.500004
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-19.5
parent: 2
- - uid: 26666
+ - uid: 15456
components:
- type: Transform
- pos: -45.5,-21.5
+ pos: -9.5,-60.5
parent: 2
- - uid: 26667
+ - uid: 15457
components:
- type: Transform
- pos: -7.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-1.5
parent: 2
- - uid: 26668
+ - uid: 15458
components:
- type: Transform
- pos: 11.5,88.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-1.5
parent: 2
- - uid: 26669
+ - uid: 15459
components:
- type: Transform
- pos: 36.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,5.5
parent: 2
- - uid: 26670
+ - uid: 15460
components:
- type: Transform
- pos: -71.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 37.5,-26.5
parent: 2
- - uid: 26671
+ - uid: 15461
components:
- type: Transform
- pos: -70.5,49.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,16.5
parent: 2
- - uid: 26672
+ - uid: 15462
components:
- type: Transform
- pos: -29.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,57.5
parent: 2
- - uid: 26673
+ - uid: 15463
components:
- type: Transform
- pos: -122.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,58.5
parent: 2
- - uid: 26674
+ - uid: 15464
components:
- type: Transform
- pos: 91.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-25.5
parent: 2
- - uid: 26675
+ - uid: 15465
components:
- type: Transform
- pos: -38.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-22.5
parent: 2
-- proto: OxygenTankFilled
- entities:
- - uid: 26676
+ - uid: 15466
components:
- type: Transform
- pos: -32.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,26.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26677
+ - uid: 15467
components:
- type: Transform
- pos: -32.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-19.5
parent: 2
- - type: Physics
- canCollide: False
-- proto: PaintingRedBlueYellow
- entities:
- - uid: 26678
+ - uid: 15468
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-55.5
parent: 2
-- proto: PaintingSkeletonCigarette
- entities:
- - uid: 26679
+ - uid: 15469
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 58.5,30.5
+ pos: -7.5,-55.5
parent: 2
-- proto: PaintingTheGreatWave
- entities:
- - uid: 26680
+ - uid: 15470
components:
- type: Transform
- pos: -54.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-1.5
parent: 2
-- proto: PaintingTheKiss
- entities:
- - uid: 26681
+ - uid: 15471
components:
- type: Transform
- pos: 14.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-19.5
parent: 2
-- proto: Paper
- entities:
- - uid: 1672
+ - uid: 15472
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1673
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-25.5
+ parent: 2
+ - uid: 15473
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1674
+ rot: -1.5707963267948966 rad
+ pos: 22.5,5.5
+ parent: 2
+ - uid: 15474
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1675
+ rot: 3.141592653589793 rad
+ pos: 17.5,-15.5
+ parent: 2
+ - uid: 15475
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1676
+ rot: -1.5707963267948966 rad
+ pos: 20.5,5.5
+ parent: 2
+ - uid: 15476
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1677
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-61.5
+ parent: 2
+ - uid: 15477
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1678
+ rot: 3.141592653589793 rad
+ pos: 37.5,-23.5
+ parent: 2
+ - uid: 15478
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1679
+ rot: -1.5707963267948966 rad
+ pos: 25.5,5.5
+ parent: 2
+ - uid: 15479
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1680
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-10.5
+ parent: 2
+ - uid: 15480
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 1681
+ rot: 3.141592653589793 rad
+ pos: 17.5,-36.5
+ parent: 2
+ - uid: 15481
components:
- type: Transform
- parent: 1667
- - type: Physics
- canCollide: False
- - uid: 14278
+ rot: 3.141592653589793 rad
+ pos: 32.5,-22.5
+ parent: 2
+ - uid: 15482
components:
- type: Transform
- parent: 14273
- - type: Paper
- content: "Станция погрязла в грязи преступности.. \r\nСлишком много смертей невинных, но ничего. \r\nМой револьвер - путь к очищению. "
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 26682
+ pos: -9.5,-59.5
+ parent: 2
+ - uid: 15483
components:
- type: Transform
- pos: -17.473228,-41.420036
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-19.5
parent: 2
- - uid: 26684
+ - uid: 15484
components:
- type: Transform
- parent: 26683
- - type: Physics
- canCollide: False
- - uid: 26685
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-7.5
+ parent: 2
+ - uid: 15485
components:
- type: Transform
- parent: 26683
- - type: Physics
- canCollide: False
- - uid: 26686
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-10.5
+ parent: 2
+ - uid: 15486
components:
- type: Transform
- parent: 26683
- - type: Physics
- canCollide: False
- - uid: 26687
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-55.5
+ parent: 2
+ - uid: 15487
components:
- type: Transform
- parent: 26683
- - type: Physics
- canCollide: False
- - uid: 26688
+ rot: 3.141592653589793 rad
+ pos: 17.5,-13.5
+ parent: 2
+ - uid: 15488
components:
- type: Transform
- parent: 26683
- - type: Physics
- canCollide: False
- - uid: 26689
+ rot: 3.141592653589793 rad
+ pos: 17.5,-34.5
+ parent: 2
+ - uid: 15489
components:
- type: Transform
- parent: 26683
- - type: Physics
- canCollide: False
- - uid: 26690
+ rot: 3.141592653589793 rad
+ pos: -0.5,-57.5
+ parent: 2
+ - uid: 15490
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.559364,7.3606176
+ pos: -27.5,-15.5
parent: 2
- - uid: 26691
+ - uid: 15491
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.579336,-40.439713
+ rot: 3.141592653589793 rad
+ pos: -35.5,36.5
parent: 2
- - uid: 26692
+ - uid: 15492
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.278114,7.6887417
+ rot: 3.141592653589793 rad
+ pos: 33.5,10.5
parent: 2
- - uid: 26693
+ - uid: 15493
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.29374,7.0324926
+ rot: 3.141592653589793 rad
+ pos: -0.5,-56.5
parent: 2
- - uid: 26694
+ - uid: 15494
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 88.60624,7.6262426
+ pos: -7.5,-26.5
parent: 2
- - uid: 26695
+ - uid: 15495
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 88.29374,7.2824917
+ pos: 30.5,-19.5
parent: 2
- - uid: 26696
+ - uid: 15496
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.76249,7.0793676
+ rot: 1.5707963267948966 rad
+ pos: -11.5,57.5
parent: 2
- - uid: 26697
+ - uid: 15497
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 88.809364,7.4856176
+ pos: -31.5,5.5
parent: 2
- - uid: 26698
+ - uid: 15498
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 15.422057,-49.2071
+ pos: -28.5,-17.5
parent: 2
- - uid: 26699
+ - uid: 15499
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.684364,6.9699926
+ rot: 3.141592653589793 rad
+ pos: -35.5,35.5
parent: 2
- - uid: 26700
+ - uid: 15500
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.607666,-16.196762
+ rot: 3.141592653589793 rad
+ pos: -25.5,16.5
parent: 2
- - uid: 26701
+ - uid: 15501
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.538372,9.353551
+ rot: 3.141592653589793 rad
+ pos: -22.5,-74.5
parent: 2
- - uid: 26702
+ - uid: 15502
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.59338,0.41316766
+ pos: -45.5,21.5
parent: 2
- - uid: 26703
+ - uid: 15503
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 30.298086,-40.689713
+ pos: -21.5,55.5
parent: 2
- - uid: 26704
+ - uid: 15504
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.332867,-7.728602
+ rot: 3.141592653589793 rad
+ pos: -29.5,-12.5
parent: 2
- - uid: 26705
+ - uid: 15505
components:
- type: Transform
- pos: -20.435146,-43.307297
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-19.5
parent: 2
- - uid: 26706
+ - uid: 15506
components:
- type: Transform
- pos: -20.528896,-43.192635
+ rot: 3.141592653589793 rad
+ pos: 33.5,6.5
parent: 2
- - uid: 26707
+ - uid: 15507
components:
- type: Transform
- pos: -20.622646,-43.119667
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-19.5
parent: 2
- - uid: 26708
+ - uid: 15508
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -26.349644,-29.25216
+ rot: 3.141592653589793 rad
+ pos: -18.5,-5.5
parent: 2
- - type: Paper
- content: >
- ОНО...
- - uid: 26709
+ - uid: 15509
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -27.475012,-29.241735
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-61.5
parent: 2
- - type: Paper
- content: >
- оно на свободе!
- - uid: 26710
+ - uid: 15510
components:
- type: Transform
- rot: 6.283185307179586 rad
- pos: -27.013458,-30.155209
+ rot: 3.141592653589793 rad
+ pos: 37.5,-25.5
parent: 2
- - type: Paper
- content: >
- Экмперемент в̵͉̘̅Ь̸̨̖̈̈́о̸͉͆|̶̨̫̿̊ #655
- - uid: 26711
+ - uid: 15511
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.467596,-3.3337493
+ rot: -1.5707963267948966 rad
+ pos: -1.5,26.5
parent: 2
- - uid: 26712
+ - uid: 15512
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5412,-7.8952684
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-10.5
parent: 2
- - uid: 26713
+ - uid: 15513
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.496994,1.136191
+ pos: -41.5,50.5
parent: 2
- - uid: 26714
+ - uid: 15514
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.560791,-16.040512
+ pos: 5.5,34.5
parent: 2
- - uid: 26715
+ - uid: 15515
components:
- type: Transform
- pos: 3.4307036,-60.35931
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-28.5
parent: 2
- - uid: 26716
+ - uid: 15516
components:
- type: Transform
- pos: 3.4932036,-60.406185
+ pos: -30.5,22.5
parent: 2
- - uid: 26717
+ - uid: 15517
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.44807,-0.6344657
+ rot: 3.141592653589793 rad
+ pos: -22.5,-32.5
parent: 2
- - uid: 26718
+ - uid: 15518
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.640255,0.35066766
+ rot: -1.5707963267948966 rad
+ pos: -40.5,42.5
parent: 2
- - uid: 26719
+ - uid: 15519
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 11.466052,-52.343544
+ pos: 17.5,58.5
parent: 2
- - uid: 26720
+ - uid: 15520
components:
- type: Transform
- pos: 3.3682036,-60.26556
+ rot: 3.141592653589793 rad
+ pos: 33.5,11.5
parent: 2
- - uid: 26721
+ - uid: 15521
components:
- type: Transform
- pos: -51.534542,12.58557
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-1.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26722
+ - uid: 15522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-31.5
+ parent: 2
+ - uid: 15523
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.514471,-3.3962493
+ pos: -14.5,57.5
parent: 2
- - uid: 26723
+ - uid: 15524
components:
- type: Transform
- pos: -51.409542,12.58557
+ rot: 3.141592653589793 rad
+ pos: -13.5,-34.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26724
+ - uid: 15525
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.344963,-40.299088
+ rot: -1.5707963267948966 rad
+ pos: 22.5,36.5
parent: 2
- - uid: 26725
+ - uid: 15526
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.598495,-1.6193767
+ pos: -15.5,57.5
parent: 2
- - uid: 26726
+ - uid: 15527
components:
- type: Transform
- pos: -51.690792,12.58557
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-1.5
parent: 2
- - type: Physics
- canCollide: False
- - uid: 26727
+ - uid: 15528
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.329336,-40.455338
+ rot: 3.141592653589793 rad
+ pos: 8.5,-30.5
parent: 2
- - uid: 26728
+ - uid: 15529
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.548086,-40.595963
+ rot: 3.141592653589793 rad
+ pos: -29.5,39.5
parent: 2
- - uid: 26729
+ - uid: 15530
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 36.394325,-37.419067
+ pos: -31.5,-10.5
parent: 2
- - uid: 26730
+ - uid: 15531
components:
- type: Transform
- pos: -26.638914,-7.6800103
+ rot: 3.141592653589793 rad
+ pos: -29.5,36.5
parent: 2
- - uid: 26731
+ - uid: 15532
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -26.513914,-7.8466763
+ pos: -29.5,-17.5
parent: 2
- - uid: 26732
+ - uid: 15533
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.458359,-7.9577875
+ rot: 1.5707963267948966 rad
+ pos: 3.5,57.5
parent: 2
- - uid: 26733
+ - uid: 15534
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.428997,9.384801
+ pos: -30.5,20.5
parent: 2
- - uid: 26734
+ - uid: 15535
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.491495,9.306676
+ pos: -30.5,7.5
parent: 2
- - uid: 26735
+ - uid: 15536
components:
- type: Transform
- pos: -4.7436075,45.570145
+ pos: -8.5,-27.5
parent: 2
- - uid: 26736
+ - uid: 15537
components:
- type: Transform
- pos: -4.6186075,45.71077
+ rot: 3.141592653589793 rad
+ pos: 33.5,9.5
parent: 2
- - uid: 26737
+ - uid: 15538
components:
- type: Transform
- pos: -4.3998575,45.67952
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-28.5
parent: 2
- - uid: 26738
+ - uid: 15539
components:
- type: Transform
- pos: -4.4779825,45.507645
+ rot: 3.141592653589793 rad
+ pos: 33.5,8.5
parent: 2
- - uid: 26739
+ - uid: 15540
components:
- type: Transform
- pos: -4.6029825,45.445145
+ rot: 3.141592653589793 rad
+ pos: 10.5,38.5
parent: 2
- - uid: 26740
+ - uid: 15541
components:
- type: Transform
- pos: -4.6186075,45.42952
- parent: 2
- - uid: 26741
-=======
- pos: 16.5,-23.5
+ pos: -30.5,18.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26015
+ - uid: 15542
components:
- type: Transform
- pos: 34.5,-59.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,18.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26016
+ - uid: 15543
components:
- type: Transform
- pos: 11.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-37.5
parent: 2
- - uid: 26017
+ - uid: 15544
components:
- type: Transform
- pos: -21.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-25.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26018
+ - uid: 15545
components:
- type: Transform
- pos: -28.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,53.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26019
+ - uid: 15546
components:
- type: Transform
- pos: 50.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -55.5,10.5
parent: 2
- - uid: 26020
+ - uid: 15547
components:
- type: Transform
- pos: -4.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,36.5
parent: 2
- - uid: 26021
+ - uid: 15548
components:
- type: Transform
- pos: -11.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,59.5
parent: 2
- - uid: 26022
+ - uid: 15549
components:
- type: Transform
- pos: -12.5,-74.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,57.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26023
+ - uid: 15550
components:
- type: Transform
- pos: -16.5,39.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,12.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26024
+ - uid: 15551
components:
- type: Transform
- pos: 26.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,57.5
parent: 2
- - uid: 26025
+ - uid: 15552
components:
- type: Transform
- pos: -21.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,57.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26026
+ - uid: 15553
components:
- type: Transform
- pos: 35.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,45.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26027
+ - uid: 15554
components:
- type: Transform
- pos: -16.5,43.5
+ pos: -27.5,58.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26028
+ - uid: 15555
components:
- type: Transform
- pos: -7.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,48.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26029
+ - uid: 15556
components:
- type: Transform
- pos: -28.5,96.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,48.5
parent: 2
- - uid: 26030
+ - uid: 15557
components:
- type: Transform
- pos: -20.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-19.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26031
+ - uid: 15558
components:
- type: Transform
- pos: -34.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,61.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26032
+ - uid: 15559
components:
- type: Transform
- pos: -58.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,57.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26033
+ - uid: 15560
components:
- type: Transform
- pos: 18.5,-51.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-23.5
parent: 2
- - uid: 26034
+ - uid: 15561
components:
- type: Transform
- pos: 53.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-71.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26035
+ - uid: 15562
components:
- type: Transform
- pos: -65.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,57.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26036
+ - uid: 15563
components:
- type: Transform
- pos: 7.5,62.5
+ pos: -41.5,43.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26037
+ - uid: 15564
components:
- type: Transform
- pos: -12.5,-78.5
+ pos: -30.5,15.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26038
+ - uid: 15565
components:
- type: Transform
- pos: -44.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,19.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26039
+ - uid: 15566
components:
- type: Transform
- pos: 30.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,57.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26040
+ - uid: 15567
components:
- type: Transform
- pos: -12.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-26.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26041
+ - uid: 15568
components:
- type: Transform
- pos: -2.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,60.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26042
+ - uid: 15569
components:
- type: Transform
- pos: -25.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-21.5
parent: 2
- - uid: 26043
+ - uid: 15570
components:
- type: Transform
- pos: 10.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,61.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26044
+ - uid: 15571
components:
- type: Transform
- pos: -38.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-31.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26045
+ - uid: 15572
components:
- type: Transform
- pos: -23.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-25.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26046
+ - uid: 15573
components:
- type: Transform
- pos: 49.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,10.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26047
+ - uid: 15574
components:
- type: Transform
- pos: 2.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,10.5
parent: 2
- - uid: 26048
+ - uid: 15575
components:
- type: Transform
- pos: -42.5,4.5
+ pos: -35.5,41.5
parent: 2
- - uid: 26049
+ - uid: 15576
components:
- type: Transform
- pos: -21.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,15.5
parent: 2
- - uid: 26050
+ - uid: 15577
components:
- type: Transform
- pos: -26.5,8.5
+ pos: -8.5,-32.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26051
+ - uid: 15578
components:
- type: Transform
- pos: -17.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,38.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26052
+ - uid: 15579
components:
- type: Transform
- pos: -27.5,-13.5
+ pos: 10.5,32.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26053
+ - uid: 15580
components:
- type: Transform
- pos: -67.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,34.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26054
+ - uid: 15581
components:
- type: Transform
- pos: 28.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,47.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26055
+ - uid: 15582
components:
- type: Transform
- pos: -38.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,47.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26056
+ - uid: 15583
components:
- type: Transform
- pos: -4.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,36.5
parent: 2
- - uid: 26057
+ - uid: 15584
components:
- type: Transform
- pos: 40.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-73.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26058
+ - uid: 15585
components:
- type: Transform
- pos: 53.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-61.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26059
+ - uid: 15586
components:
- type: Transform
- pos: 20.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,48.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26060
+ - uid: 15587
components:
- type: Transform
- pos: 49.5,-31.5
+ pos: 10.5,29.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26061
+ - uid: 15588
components:
- type: Transform
- pos: -56.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,41.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26062
+ - uid: 15589
components:
- type: Transform
- pos: -77.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,57.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26063
+ - uid: 15590
components:
- type: Transform
- pos: -72.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,15.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26064
+ - uid: 15591
components:
- type: Transform
- pos: -15.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,57.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26065
+ - uid: 15592
components:
- type: Transform
- pos: 1.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,34.5
parent: 2
- - uid: 26066
+ - uid: 15593
components:
- type: Transform
- pos: -29.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,57.5
parent: 2
- - uid: 26067
+ - uid: 15594
components:
- type: Transform
- pos: 42.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,16.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26068
+ - uid: 15595
components:
- type: Transform
- pos: 1.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-27.5
parent: 2
- - uid: 26069
+ - uid: 15596
components:
- type: Transform
- pos: -15.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-63.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26070
+ - uid: 15597
components:
- type: Transform
- pos: -60.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,57.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 26071
+ - uid: 15598
components:
- type: Transform
- pos: 9.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,18.5
parent: 2
- - uid: 26072
+ - uid: 15599
components:
- type: Transform
- pos: 74.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,57.5
parent: 2
- - uid: 26073
+ - uid: 15600
components:
- type: Transform
- pos: 9.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,38.5
parent: 2
- - uid: 26074
+ - uid: 15601
components:
- type: Transform
- pos: 5.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,57.5
parent: 2
- - uid: 26075
+ - uid: 15602
components:
- type: Transform
- pos: 43.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-22.5
parent: 2
- - uid: 26076
+ - uid: 15603
components:
- type: Transform
- pos: 51.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-29.5
parent: 2
- - uid: 26077
+ - uid: 15604
components:
- type: Transform
- pos: 53.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,23.5
parent: 2
- - uid: 26078
+ - uid: 15605
components:
- type: Transform
- pos: 38.5,-41.5
+ pos: 21.5,7.5
parent: 2
- - uid: 26079
+ - uid: 15606
components:
- type: Transform
- pos: -75.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-3.5
parent: 2
- - uid: 26080
+ - uid: 15607
components:
- type: Transform
- pos: 91.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -61.5,14.5
parent: 2
- - uid: 26081
+ - uid: 15608
components:
- type: Transform
- pos: 93.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,61.5
parent: 2
- - uid: 26082
+ - uid: 15609
components:
- type: Transform
- pos: 59.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-7.5
parent: 2
- - uid: 26083
+ - uid: 15610
components:
- type: Transform
- pos: 53.5,-49.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,51.5
parent: 2
- - uid: 26084
+ - uid: 15611
components:
- type: Transform
- pos: 49.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-25.5
parent: 2
- - uid: 26085
+ - uid: 15612
components:
- type: Transform
- pos: 56.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-27.5
parent: 2
- - uid: 26086
+ - uid: 15613
components:
- type: Transform
- pos: -15.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-19.5
parent: 2
- - uid: 26087
+ - uid: 15614
components:
- type: Transform
- pos: 55.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,24.5
parent: 2
- - uid: 26088
+ - uid: 15615
components:
- type: Transform
- pos: 55.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,57.5
parent: 2
- - uid: 26089
+ - uid: 15616
components:
- type: Transform
- pos: 55.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,57.5
parent: 2
- - uid: 26090
+ - uid: 15617
components:
- type: Transform
- pos: -27.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,28.5
parent: 2
- - uid: 26091
+ - uid: 15618
components:
- type: Transform
- pos: -46.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,53.5
parent: 2
- - uid: 26092
+ - uid: 15619
components:
- type: Transform
- pos: 98.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-19.5
parent: 2
- - uid: 26093
+ - uid: 15620
components:
- type: Transform
- pos: 76.5,2.5
+ pos: 6.5,49.5
parent: 2
- - uid: 26094
+ - uid: 15621
components:
- type: Transform
- pos: 76.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -59.5,14.5
parent: 2
- - uid: 26095
+ - uid: 15622
components:
- type: Transform
- pos: -71.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-80.5
parent: 2
- - uid: 26096
+ - uid: 15623
components:
- type: Transform
- pos: 41.5,-6.5
+ pos: 33.5,-5.5
parent: 2
- - uid: 26097
+ - uid: 15624
components:
- type: Transform
- pos: 9.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,6.5
parent: 2
- - uid: 26098
+ - uid: 15625
components:
- type: Transform
- pos: -2.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-10.5
parent: 2
- - uid: 26099
+ - uid: 15626
components:
- type: Transform
- pos: 1.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,53.5
parent: 2
- - uid: 26100
+ - uid: 15627
components:
- type: Transform
- pos: 10.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,1.5
parent: 2
- - uid: 26101
+ - uid: 15628
components:
- type: Transform
- pos: 61.5,27.5
+ pos: 35.5,-72.5
parent: 2
- - uid: 26102
+ - uid: 15629
components:
- type: Transform
- pos: 58.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-19.5
parent: 2
- - uid: 26103
+ - uid: 15630
components:
- type: Transform
- pos: 2.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-19.5
parent: 2
- - uid: 26104
+ - uid: 15631
components:
- type: Transform
- pos: 12.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,31.5
parent: 2
- - uid: 26105
+ - uid: 15632
components:
- type: Transform
- pos: 17.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: -63.5,10.5
parent: 2
- - uid: 39299
+ - uid: 15633
components:
- type: Transform
- pos: -19.5,32.5
- parent: 38344
- - uid: 39300
+ rot: 1.5707963267948966 rad
+ pos: 10.5,61.5
+ parent: 2
+ - uid: 15634
components:
- type: Transform
- pos: -10.5,-1.5
- parent: 38344
- - uid: 39301
+ rot: 3.141592653589793 rad
+ pos: 10.5,44.5
+ parent: 2
+ - uid: 15635
components:
- type: Transform
- pos: -14.5,-1.5
- parent: 38344
- - uid: 39302
+ rot: 3.141592653589793 rad
+ pos: 0.5,32.5
+ parent: 2
+ - uid: 15636
components:
- type: Transform
- pos: -17.5,-7.5
- parent: 38344
- - uid: 39303
+ rot: 1.5707963267948966 rad
+ pos: -62.5,10.5
+ parent: 2
+ - uid: 15637
components:
- type: Transform
- pos: 3.5,-1.5
- parent: 38344
- - uid: 39304
+ rot: 3.141592653589793 rad
+ pos: -41.5,55.5
+ parent: 2
+ - uid: 15638
components:
- type: Transform
- pos: -22.5,4.5
- parent: 38344
- - uid: 39305
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-19.5
+ parent: 2
+ - uid: 15639
components:
- type: Transform
- pos: -22.5,6.5
- parent: 38344
- - uid: 39306
+ pos: -13.5,-41.5
+ parent: 2
+ - uid: 15640
components:
- type: Transform
- pos: -13.5,10.5
- parent: 38344
- - uid: 39307
+ rot: 1.5707963267948966 rad
+ pos: -57.5,14.5
+ parent: 2
+ - uid: 15641
components:
- type: Transform
- pos: -11.5,10.5
- parent: 38344
- - uid: 39308
+ rot: 3.141592653589793 rad
+ pos: 0.5,35.5
+ parent: 2
+ - uid: 15642
components:
- type: Transform
- pos: -2.5,-5.5
- parent: 38344
- - uid: 39309
+ rot: -1.5707963267948966 rad
+ pos: -26.5,17.5
+ parent: 2
+ - uid: 15643
components:
- type: Transform
- pos: -6.5,-3.5
- parent: 38344
- - uid: 39310
+ rot: 3.141592653589793 rad
+ pos: -32.5,-0.5
+ parent: 2
+ - uid: 15644
components:
- type: Transform
- pos: -7.5,0.5
- parent: 38344
- - uid: 39311
+ rot: 3.141592653589793 rad
+ pos: -32.5,-4.5
+ parent: 2
+ - uid: 15645
components:
- type: Transform
- pos: 5.5,0.5
- parent: 38344
-- proto: PottedPlantRandomPlastic
- entities:
- - uid: 26106
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-19.5
+ parent: 2
+ - uid: 15646
components:
- type: Transform
- pos: 53.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,33.5
parent: 2
- - uid: 26107
+ - uid: 15647
components:
- type: Transform
- pos: 58.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-10.5
parent: 2
- - uid: 26108
+ - uid: 15648
components:
- type: Transform
- pos: 53.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,5.5
parent: 2
- - uid: 26109
+ - uid: 15649
components:
- type: Transform
- pos: -4.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-10.5
parent: 2
- - uid: 26110
+ - uid: 15650
components:
- type: Transform
- pos: -3.5,-69.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,-24.5
parent: 2
- - uid: 26111
+ - uid: 15651
components:
- type: Transform
- pos: -41.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-40.5
parent: 2
-- proto: PottedPlantRD
- entities:
- - uid: 26112
+ - uid: 15652
components:
- type: Transform
- pos: -20.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-19.5
parent: 2
- - uid: 26113
->>>>>>> master
+ - uid: 15653
components:
- - type: MetaData
- desc: Выглядит не очень здоровым...
- name: засохшее растение
- type: Transform
-<<<<<<< HEAD
- pos: 19.616335,-27.48899
+ rot: 3.141592653589793 rad
+ pos: -32.5,-8.5
parent: 2
- - uid: 26742
+ - uid: 15654
components:
- type: Transform
- pos: 19.616335,-27.48899
+ rot: 1.5707963267948966 rad
+ pos: -55.5,17.5
parent: 2
- - uid: 26743
+ - uid: 15655
components:
- type: Transform
- pos: 19.616335,-27.48899
+ rot: 1.5707963267948966 rad
+ pos: 8.5,27.5
parent: 2
- - uid: 26744
+ - uid: 15656
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.340981,-58.260864
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-61.5
parent: 2
- - uid: 26745
+ - uid: 15657
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.512856,-58.15149
+ rot: 3.141592653589793 rad
+ pos: -32.5,-6.5
parent: 2
- - uid: 26746
+ - uid: 15658
components:
- type: Transform
- pos: -17.632225,-41.50565
+ pos: 6.5,51.5
parent: 2
-- proto: PaperBin10
- entities:
- - uid: 26683
+ - uid: 15659
components:
- type: Transform
- pos: -12.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,57.5
parent: 2
- - type: Bin
- items:
- - 26684
- - 26685
- - 26686
- - 26687
- - 26688
- - 26689
- - type: ContainerContainer
- containers:
- bin-container: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 26684
- - 26685
- - 26686
- - 26687
- - 26688
- - 26689
- - uid: 26747
+ - uid: 15660
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -40.5,62.5
+ pos: 19.5,61.5
parent: 2
- - uid: 26748
+ - uid: 15661
components:
- type: Transform
- pos: 34.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,61.5
parent: 2
- - uid: 26749
+ - uid: 15662
components:
- type: Transform
- pos: -16.5,-40.5
+ pos: 6.5,56.5
parent: 2
- - uid: 26750
+ - uid: 15663
components:
- type: Transform
- pos: 55.29164,-2.3179092
+ rot: -1.5707963267948966 rad
+ pos: -34.5,57.5
parent: 2
- - uid: 26751
+ - uid: 15664
components:
- type: Transform
- pos: 30.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-10.5
parent: 2
- - uid: 26752
+ - uid: 15665
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 41.5,23.5
+ pos: 50.5,-28.5
parent: 2
- - uid: 26753
+ - uid: 15666
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,19.5
+ pos: -13.5,-42.5
parent: 2
- - uid: 26754
+ - uid: 15667
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,-47.5
+ pos: 49.5,-28.5
parent: 2
- - uid: 26755
+ - uid: 15668
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-51.5
+ pos: -13.5,-43.5
parent: 2
- - uid: 26756
+ - uid: 15669
components:
- type: Transform
- pos: 21.5,-28.5
+ pos: -13.5,-44.5
parent: 2
- - uid: 26757
+ - uid: 15670
components:
- type: Transform
- pos: 9.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,15.5
parent: 2
- - uid: 26758
+ - uid: 15671
components:
- type: Transform
- pos: 29.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-61.5
parent: 2
- - uid: 26759
+ - uid: 15672
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 58.5,27.5
+ pos: 48.5,-28.5
parent: 2
-- proto: PaperBin5
- entities:
- - uid: 26760
+ - uid: 15673
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,23.5
parent: 2
-- proto: PaperCaptainsThoughts
- entities:
- - uid: 26761
+ - uid: 15674
components:
- type: Transform
- pos: 7.420329,1.4533973
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-39.5
parent: 2
-- proto: PaperCNCSheet
- entities:
- - uid: 26762
+ - uid: 15675
components:
- type: Transform
- pos: -69.41071,-35.553818
+ rot: -1.5707963267948966 rad
+ pos: -28.5,17.5
parent: 2
- - uid: 26763
+ - uid: 15676
components:
- type: Transform
- pos: -67.53733,-35.598064
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-10.5
parent: 2
- - uid: 26764
+ - uid: 15677
components:
- type: Transform
- pos: -68.43714,-35.553814
+ rot: 3.141592653589793 rad
+ pos: 17.5,48.5
parent: 2
-- proto: PaperDoor
- entities:
- - uid: 26765
+ - uid: 15678
components:
- type: Transform
- pos: -46.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-19.5
parent: 2
-- proto: PaperOffice
- entities:
- - uid: 26767
- components:
- - type: Transform
- parent: 26766
- - type: Paper
- stampState: paper_stamp-cmo
- stampedBy:
- - stampedColor: '#33CCFFFF'
- stampedName: stamp-component-stamped-name-cmo
- content: >-
- Илья, Кор, Ян, Отто, Вета, Анастасия, Ростик и Елена работали в одной больнице. Они все были очень опытными и профессиональными врачами, каждый со своей специализацией.
-
-
- Илья был профессиональным парамедиком. Он был одним из лучших специалистов и его пациенты всегда оставались довольны его работой.
-
-
- Кор был лучшим вирусологом и занимался исследованиями различных вирусов. Он был на столько увлечен своей работой, что проводил эксперименты в свободное от работы время вместе с Ильей.
-
-
- Ян и Ростик были прекрасными химиками. Они занимались созданием новых лекарств и формулировок лекарственных препаратов. Говорят, что они создали "Бикардин".
-
-
- Отто, был известен своей веселой натурой, прекрасный врач.
-
-
- Анастасия была замечательным главным врачом и всегда была готова помочь в любой ситуации. Она была очень организованной и дисциплинированной.
-
-
- Веточка начинала свой путь врача как интерн и быстро стремительно дослужилась до звания врача-терапевта. Она была умной и трудолюбивой и всегда старалась находить лучшее решение для каждого своего пациента.
-
-
- Елена замечатильный генетик. Сколько трупов прошло через ее руки?
-
-
- Все эти врачи работали вместе и помогали друг другу в трудные моменты. Они были настоящей командой профессионалов и всегда старались делать все, чтобы помочь своим пациентам. Благодаря этому, братья по врачебному делу справлялись со своим нелегким трудом на высшем уровне.
- - type: Physics
- canCollide: False
- - uid: 26768
+ - uid: 15679
components:
- type: Transform
- pos: -36.374428,60.761806
+ rot: 3.141592653589793 rad
+ pos: -30.5,39.5
parent: 2
- - uid: 26769
+ - uid: 15680
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -38.950905,59.658222
+ pos: 32.5,-10.5
parent: 2
- - uid: 26770
+ - uid: 15681
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -38.54007,61.959106
+ pos: 32.5,-68.5
parent: 2
- - uid: 26771
+ - uid: 15682
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -36.381355,63.286507
+ pos: -22.5,-61.5
parent: 2
- - uid: 26772
+ - uid: 15683
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.522644,38.518795
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-68.5
parent: 2
- - uid: 26773
+ - uid: 15684
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -40.417274,61.98857
+ pos: 34.5,-19.5
parent: 2
- - uid: 26774
+ - uid: 15685
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -39.098415,62.947308
+ pos: -29.5,17.5
parent: 2
- - uid: 26775
+ - uid: 15686
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.48461,63.153763
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-19.5
parent: 2
- - uid: 26776
+ - uid: 15687
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -33.686966,61.560875
+ pos: 46.5,-28.5
parent: 2
- - uid: 26777
+ - uid: 15688
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.535282,61.885326
+ rot: 1.5707963267948966 rad
+ pos: -54.5,10.5
parent: 2
- - uid: 26778
+ - uid: 15689
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.45242,28.5026
+ pos: -23.5,56.5
parent: 2
- - uid: 26779
+ - uid: 15690
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 55.468044,28.47135
+ pos: 17.5,50.5
parent: 2
- - uid: 26780
+ - uid: 15691
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 55.593044,28.549475
- parent: 2
-- proto: PaperRolling1
- entities:
- - uid: 26781
-=======
- pos: -36.5,-72.5
+ pos: 17.5,52.5
parent: 2
-- proto: PowerCageHighEmpty
- entities:
- - uid: 39312
- components:
- - type: Transform
- pos: 10.0045595,21.720764
- parent: 38344
- - uid: 39313
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.64746,22.502472
- parent: 38344
-- proto: PowerCellHigh
- entities:
- - uid: 26114
+ - uid: 15692
components:
- type: Transform
- pos: -48.422817,29.613514
+ rot: -1.5707963267948966 rad
+ pos: -24.5,57.5
parent: 2
- - uid: 26115
+ - uid: 15693
components:
- type: Transform
- pos: 27.5,-69.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,46.5
parent: 2
-- proto: PowerCellRecharger
- entities:
- - uid: 26116
+ - uid: 15694
components:
- type: Transform
- pos: -10.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-7.5
parent: 2
- - type: ContainerContainer
- containers:
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: Physics
- canCollide: False
- - uid: 26117
+ - uid: 15695
components:
- type: Transform
- pos: 45.5,24.5
+ pos: 21.5,6.5
parent: 2
- - uid: 26118
+ - uid: 15696
components:
- type: Transform
- pos: 8.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-25.5
parent: 2
- - uid: 26119
+ - uid: 15697
components:
- type: Transform
- pos: -45.5,-12.5
+ pos: 35.5,-69.5
parent: 2
- - type: ContainerContainer
- containers:
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: Physics
- canCollide: False
- - uid: 26120
+ - uid: 15698
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,-40.5
+ pos: -18.5,-40.5
parent: 2
- - uid: 26121
+ - uid: 15699
components:
- type: Transform
- pos: -47.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-65.5
parent: 2
- - type: ContainerContainer
- containers:
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: Physics
- canCollide: False
- - uid: 26122
+ - uid: 15700
components:
- type: Transform
- pos: -60.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-19.5
parent: 2
- - type: ContainerContainer
- containers:
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: Physics
- canCollide: False
- - uid: 26123
+ - uid: 15701
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 37.5,9.5
+ pos: 28.5,5.5
parent: 2
- - uid: 26124
+ - uid: 15702
components:
- type: Transform
- pos: 11.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-19.5
parent: 2
- - type: ContainerContainer
- containers:
- PowerCellCharger-powerCellContainer: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: ApcPowerReceiver
- powerLoad: 0
- - type: Physics
- canCollide: False
- - uid: 26125
+ - uid: 15703
components:
- type: Transform
- pos: -50.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-38.5
parent: 2
- - type: ContainerContainer
- containers:
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: Physics
- canCollide: False
- - uid: 26126
+ - uid: 15704
components:
- type: Transform
- pos: 38.5,-63.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-2.5
parent: 2
- - uid: 26127
+ - uid: 15705
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,-27.5
parent: 2
- - uid: 26128
+ - uid: 15706
components:
- type: Transform
- pos: -22.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-10.5
parent: 2
- - type: ContainerContainer
- containers:
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: ApcPowerReceiver
- powerLoad: 0
- - type: Physics
- canCollide: False
- - uid: 26129
+ - uid: 15707
components:
- type: Transform
- pos: 10.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-80.5
parent: 2
- - type: ContainerContainer
- containers:
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: Physics
- canCollide: False
- - uid: 26130
+ - uid: 15708
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,27.5
parent: 2
- - uid: 26131
+ - uid: 15709
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,27.5
parent: 2
- - uid: 26132
+ - uid: 15710
components:
- type: Transform
- pos: -55.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-80.5
parent: 2
- - type: ContainerContainer
- containers:
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: Physics
- canCollide: False
- - uid: 26133
+ - uid: 15711
components:
- type: Transform
- pos: 7.5,-16.5
+ pos: -16.5,56.5
parent: 2
- - type: ContainerContainer
- containers:
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: Physics
- canCollide: False
- - uid: 26134
+ - uid: 15712
components:
- type: Transform
- pos: -4.5,12.5
+ pos: -13.5,-47.5
parent: 2
- - type: ContainerContainer
- containers:
- PowerCellCharger-powerCellContainer: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: ApcPowerReceiver
- powerLoad: 0
- - type: Physics
- canCollide: False
- - uid: 26135
+ - uid: 15713
components:
- type: Transform
- pos: -53.5,35.5
+ pos: 33.5,-6.5
parent: 2
- - type: ContainerContainer
- containers:
- charger-slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- charger_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - type: ApcPowerReceiver
- powerLoad: 0
- - type: Physics
- canCollide: False
- - uid: 26136
+ - uid: 15714
components:
- type: Transform
- pos: -38.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,27.5
parent: 2
- - type: ContainerContainer
- containers:
-